# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*- # # This file is part of the LibreOffice project. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # # This file incorporates work covered by the following license notice: # # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed # with this work for additional information regarding copyright # ownership. The ASF licenses this file to you under the Apache # License, Version 2.0 (the "License"); you may not use this file # except in compliance with the License. You may obtain a copy of # the License at http://www.apache.org/licenses/LICENSE-2.0 . # # bootstrap uno component context import uno import unohelper from com.sun.star.lang import IllegalArgumentException # a UNO struct later needed to create a document from com.sun.star.text.ControlCharacter import PARAGRAPH_BREAK from com.sun.star.text.TextContentAnchorType import AS_CHARACTER from com.sun.star.awt import Size def insertTextIntoCell( table, cellName, text, color ): tableText = table.getCellByName( cellName ) cursor = tableText.createTextCursor() cursor.setPropertyValue( "CharColor", color ) tableText.setString( text ) localContext = uno.getComponentContext() resolver = localContext.ServiceManager.createInstanceWithContext( "com.sun.star.bridge.UnoUrlResolver", localContext ) smgr = resolver.resolve( "uno:socket,host=localhost,port=2002;urp;StarOffice.ServiceManager" ) remoteContext = smgr.getPropertyValue( "DefaultContext" ) #remoteContext = resolver.resolve( "uno:socket,host=localhost,port=2002;urp;StarOffice.ComponentContext" ) #smgr = remoteContext.ServiceManager desktop = smgr.createInstanceWithContext( "com.sun.star.frame.Desktop",remoteContext) # open a writer document doc = desktop.loadComponentFromURL( "private:factory/swriter","_blank", 0, () ) text = doc.Text cursor = text.createTextCursor() text.insertString( cursor, "The first line in the newly created text document.\n", 0 ) text.insertString( cursor, "Now we are in the second line\n" , 0 ) # create a text table table = doc.createInstance( "com.sun.star.text.TextTable" ) # with 4 rows and 4 columns table.initialize(4, 4) text.insertTextContent( cursor, table, 0 ) rows = table.Rows table.setPropertyValue( "BackTransparent", False ) table.setPropertyValue( "BackColor", 13421823 ) row = rows[0] row.setPropertyValue( "BackTransparent", False ) row.setPropertyValue( "BackColor", 6710932 ) textColor = 16777215 insertTextIntoCell( table, "A1", "FirstColumn", textColor ) insertTextIntoCell( table, "B1", "SecondColumn", textColor ) insertTextIntoCell( table, "C1", "ThirdColumn", textColor ) insertTextIntoCell( table, "D1", "SUM", textColor ) table.getCellByName("A2").setValue(22.5) table.getCellByName("B2").setValue(5615.3) table.getCellByName("C2").setValue(-2315.7) table.getCellByName("D2").setFormula("sum ") table.getCellByName("A3").setValue(21.5) table.getCellByName("B3").setValue(615.3) table.getCellByName("C3").setValue(-315.7) table.getCellByName("D3").setFormula("sum ") table.getCellByName("A4").setValue(121.5) table.getCellByName("B4").setValue(-615.3) table.getCellByName("C4").setValue(415.7) table.getCellByName("D4").setFormula("sum ") cursor.setPropertyValue( "CharColor", 255 ) cursor.setPropertyValue( "CharShadowed", True ) text.insertControlCharacter( cursor, PARAGRAPH_BREAK, 0 ) text.insertString( cursor, " This is a colored Text - blue with shadow\n" , 0 ) text.insertControlCharacter( cursor, PARAGRAPH_BREAK, 0 ) textFrame = doc.createInstance( "com.sun.star.text.TextFrame" ) textFrame.setSize( Size(15000,400)) textFrame.setPropertyValue( "AnchorType" , AS_CHARACTER ) text.insertTextContent( cursor, textFrame, 0 ) textInTextFrame = textFrame.getText() cursorInTextFrame = textInTextFrame.createTextCursor() textInTextFrame.insertString( cursorInTextFrame, "The first line in the newly created text frame.", 0 ) textInTextFrame.insertString( cursorInTextFrame, "\nWith this second line the height of the rame raises.",0) text.insertControlCharacter( cursor, PARAGRAPH_BREAK, 0 ) cursor.setPropertyValue( "CharColor", 65536 ) cursor.setPropertyValue( "CharShadowed", False ) text.insertString( cursor, " That's all for now!" , 0 ) # vim: set shiftwidth=4 softtabstop=4 expandtab: 1c LibreOffice 界面翻译代码仓库文档基金会
aboutsummaryrefslogtreecommitdiff
path: root/source/om
diff options
context:
space:
mode:
authorAndras Timar <atimar@suse.com>2013-06-03 20:51:16 +0200
committerAndras Timar <atimar@suse.com>2013-06-05 10:16:45 +0200
commit47af5d9707cf34a8f7f9507a62c2dd03e56dbfa9 (patch)
tree098208ba8efa0d691342fc7056da2060e8d3f464 /source/om
parent499065e9cda8911ef6193d32ab39aa9249325ca6 (diff)
update translations for LibreOffice 4.1 beta2
Change-Id: I5dafc5dcce605da8d6831a775ff1d416180b22d0
Diffstat (limited to 'source/om')
-rw-r--r--source/om/android/sdremote/res/values.po10
-rw-r--r--source/om/connectivity/registry/mork/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/om/cui/source/options.po6
-rw-r--r--source/om/cui/uiconfig/ui.po41
-rw-r--r--source/om/dbaccess/uiconfig/ui.po29
-rw-r--r--source/om/dictionaries/is.po23
-rw-r--r--source/om/dictionaries/no.po6
-rw-r--r--source/om/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po4
-rw-r--r--source/om/editeng/source/items.po6
-rw-r--r--source/om/editeng/source/outliner.po6
-rw-r--r--source/om/helpcontent2/source/auxiliary.po788
-rw-r--r--source/om/helpcontent2/source/text/sbasic/guide.po176
-rw-r--r--source/om/helpcontent2/source/text/sbasic/shared.po45903
-rw-r--r--source/om/helpcontent2/source/text/sbasic/shared/01.po394
-rw-r--r--source/om/helpcontent2/source/text/sbasic/shared/02.po1260
-rw-r--r--source/om/helpcontent2/source/text/scalc.po1654
-rw-r--r--source/om/helpcontent2/source/text/scalc/00.po1774
-rw-r--r--source/om/helpcontent2/source/text/scalc/01.po65125
-rw-r--r--source/om/helpcontent2/source/text/scalc/02.po1072
-rw-r--r--source/om/helpcontent2/source/text/scalc/04.po18
-rw-r--r--source/om/helpcontent2/source/text/scalc/05.po11
-rw-r--r--source/om/helpcontent2/source/text/scalc/guide.po14814
-rw-r--r--source/om/helpcontent2/source/text/schart.po464
-rw-r--r--source/om/helpcontent2/source/text/schart/00.po17
-rw-r--r--source/om/helpcontent2/source/text/schart/01.po8667
-rw-r--r--source/om/helpcontent2/source/text/schart/02.po104
-rw-r--r--source/om/helpcontent2/source/text/schart/04.po2
-rw-r--r--source/om/helpcontent2/source/text/sdraw.po1047
-rw-r--r--source/om/helpcontent2/source/text/sdraw/00.po2
-rw-r--r--source/om/helpcontent2/source/text/sdraw/01.po2
-rw-r--r--source/om/helpcontent2/source/text/sdraw/04.po5
-rw-r--r--source/om/helpcontent2/source/text/sdraw/guide.po2195
-rw-r--r--source/om/helpcontent2/source/text/shared.po1550
-rw-r--r--source/om/helpcontent2/source/text/shared/00.po14758
-rw-r--r--source/om/helpcontent2/source/text/shared/01.po58520
-rw-r--r--source/om/helpcontent2/source/text/shared/02.po22291
-rw-r--r--source/om/helpcontent2/source/text/shared/04.po34
-rw-r--r--source/om/helpcontent2/source/text/shared/05.po1276
-rw-r--r--source/om/helpcontent2/source/text/shared/07.po2
-rw-r--r--source/om/helpcontent2/source/text/shared/autokorr.po312
-rw-r--r--source/om/helpcontent2/source/text/shared/autopi.po11687
-rw-r--r--source/om/helpcontent2/source/text/shared/explorer/database.po19223
-rw-r--r--source/om/helpcontent2/source/text/shared/guide.po24849
-rw-r--r--source/om/helpcontent2/source/text/shared/optionen.po20011
-rw-r--r--source/om/helpcontent2/source/text/simpress.po1593
-rw-r--r--source/om/helpcontent2/source/text/simpress/00.po997
-rw-r--r--source/om/helpcontent2/source/text/simpress/01.po10948
-rw-r--r--source/om/helpcontent2/source/text/simpress/02.po6235
-rw-r--r--source/om/helpcontent2/source/text/simpress/04.po144
-rw-r--r--source/om/helpcontent2/source/text/simpress/guide.po6500
-rw-r--r--source/om/helpcontent2/source/text/smath.po656
-rw-r--r--source/om/helpcontent2/source/text/smath/00.po28
-rw-r--r--source/om/helpcontent2/source/text/smath/01.po15289
-rw-r--r--source/om/helpcontent2/source/text/smath/02.po3
-rw-r--r--source/om/helpcontent2/source/text/smath/04.po3
-rw-r--r--source/om/helpcontent2/source/text/smath/guide.po544
-rw-r--r--source/om/helpcontent2/source/text/swriter.po2392
-rw-r--r--source/om/helpcontent2/source/text/swriter/00.po2519
-rw-r--r--source/om/helpcontent2/source/text/swriter/01.po36617
-rw-r--r--source/om/helpcontent2/source/text/swriter/02.po3263
-rw-r--r--source/om/helpcontent2/source/text/swriter/04.po96
-rw-r--r--source/om/helpcontent2/source/text/swriter/guide.po22971
-rw-r--r--source/om/helpcontent2/source/text/swriter/librelogo.po87
-rw-r--r--source/om/officecfg/registry/data/org/openoffice/Office.po128
-rw-r--r--source/om/officecfg/registry/data/org/openoffice/Office/UI.po17
-rw-r--r--source/om/reportdesign/source/core/resource.po6
-rw-r--r--source/om/sc/source/ui/src.po6
-rw-r--r--source/om/sc/uiconfig/scalc/ui.po4
-rw-r--r--source/om/scp2/source/accessories.po6
-rw-r--r--source/om/scp2/source/extensions.po6
-rw-r--r--source/om/scp2/source/ooo.po6
-rw-r--r--source/om/sd/source/ui/app.po6
-rw-r--r--source/om/sd/source/ui/view.po6
-rw-r--r--source/om/sd/uiconfig/simpress/ui.po4
-rw-r--r--source/om/sfx2/source/appl.po6
-rw-r--r--source/om/sfx2/source/dialog.po6
-rw-r--r--source/om/sfx2/source/doc.po6
-rw-r--r--source/om/svtools/source/control.po6
-rw-r--r--source/om/svtools/source/misc.po6
-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
@@ -1,205 +1,19 @@
-#
+#. extracted from helpcontent2/source/text/scalc/01
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"
-"PO-Revision-Date: 2012-07-04 18:25+0200\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
+"PO-Revision-Date: 2012-09-04 22:09+0000\n"
+"Last-Translator: Diriba Kuma <diribakw@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"
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Link to External Data"
-msgstr "Deetaa Alaatti Walqunnamsiisi"
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"par_id3153192\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_LINKAREA_BTN_BROWSE\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_LINKAREA_BTN_BROWSE\" visibility=\"hidden\">Galmee deetaa saaguu barbaaddee qabatee kaa'i.</ahelp>"
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"hd_id3145785\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\">Link to External Data</link>"
-msgstr "<link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\">Deetaa Alaatti Walqunnamsiisi</link>"
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"par_id3149262\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\".uno:InsertExternalDataSourc\">Inserts data from an HTML, Calc, or Excel file into the current sheet as a link. The data must be located within a named range.</ahelp>"
-msgstr "<ahelp hid=\".uno:InsertExternalDataSourc\">HTML, Calc ykn galmee eekseelii irraa deetaa saaga, ykn .</ahelp>"
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"hd_id3146984\n"
-"5\n"
-"help.text"
-msgid "URL of external data source."
-msgstr "URL madda deetaa alaantoo"
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"par_id3145366\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SCDLG_LINKAREAURL\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp>"
-msgstr "<ahelp hid=\"HID_SCDLG_LINKAREAURL\">URL ykn maqaa fayila deetaa saaguu barbaadde qabu galchi,sana booda <item type=\"keycode\">Enter</item>dhiibi.</ahelp>"
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"hd_id3145251\n"
-"7\n"
-"help.text"
-msgid "Available tables/ranges"
-msgstr "Gabateewwan/hangiiwwan jiran"
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"par_id3147397\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC_MULTILISTBOX_RID_SCDLG_LINKAREA_LB_RANGES\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"SC_MULTILISTBOX_RID_SCDLG_LINKAREA_LB_RANGES\">Gabatee ykn hangii deetaa saaguu barbaaddu galchi.</ahelp>"
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"hd_id3154492\n"
-"9\n"
-"help.text"
-msgid "Update every"
-msgstr "Tokko tokko isaa haaroomsi"
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"par_id3154017\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SC_NUMERICFIELD_RID_SCDLG_LINKAREA_NF_DELAY\">Enter the number of seconds to wait before the external data are reloaded into the current document.</ahelp>"
-msgstr "<ahelp hid=\"SC_NUMERICFIELD_RID_SCDLG_LINKAREA_NF_DELAY\"> osoo deetaan alaa irra deebi'uun galmee ammeetti hin fedhamin lakkoofsa seekondiiwwani eeguu qabu galchi.</ahelp>"
-
-#: func_minute.xhp
-#, fuzzy
-msgctxt ""
-"func_minute.xhp\n"
-"tit\n"
-"help.text"
-msgid "MINUTE"
-msgstr "MINUTE"
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"bm_id3149803\n"
-"help.text"
-msgid "<bookmark_value>MINUTE function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii MINUTE</bookmark_value>"
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"hd_id3149803\n"
-"66\n"
-"help.text"
-msgid "<variable id=\"minute\"><link href=\"text/scalc/01/func_minute.xhp\">MINUTE</link></variable>"
-msgstr "<variable id=\"minute\"><link href=\"text/scalc/01/func_minute.xhp\">MINUTE</link></variable>"
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"par_id3148988\n"
-"67\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MINUTE\">Calculates the minute for an internal time value.</ahelp> The minute is returned as a number between 0 and 59."
-msgstr "<ahelp hid=\"HID_FUNC_MINUTE\">Gatii yeroo kessatif daqiiqaa shallaga</ahelp>Daqiiqaan lakkoofsa 0 fi 59 gidduu jiruun kennama."
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"hd_id3154343\n"
-"68\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"par_id3148660\n"
-"69\n"
-"help.text"
-msgid "MINUTE(Number)"
-msgstr "MINUTE(Lakkoofsa)"
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"par_id3154611\n"
-"70\n"
-"help.text"
-msgid "<emph>Number</emph>, as a time value, is a decimal number where the number of the minute is to be returned."
-msgstr "<emph>Lakkoofsa</emph>, akka gati yerootti, kurnyee dha,kan daqiiqaan ittin kennamu."
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"hd_id3145374\n"
-"71\n"
-"help.text"
-msgid "Examples"
-msgstr "Fakkeenyawwan"
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"par_id3148463\n"
-"72\n"
-"help.text"
-msgid "<item type=\"input\">=MINUTE(8.999)</item> returns 58"
-msgstr "<item type=\"input\">=MINUTE(8.999)</item> 58 kenna"
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"par_id3149419\n"
-"73\n"
-"help.text"
-msgid "<item type=\"input\">=MINUTE(8.9999)</item> returns 59"
-msgstr "<item type=\"input\">=MINUTE(8.9999)</item> 59 kenna"
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"par_id3144755\n"
-"74\n"
-"help.text"
-msgid "<item type=\"input\">=MINUTE(NOW())</item> returns the current minute value."
-msgstr "<item type=\"input\">=MINUTE(NOW())</item> gatii daqiiqaa ammaa kenna."
+"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1346796588.0\n"
#: 01120000.xhp
msgctxt ""
@@ -265,6153 +79,1911 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Page View Object Bar\">Page View Object Bar</link>"
msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"Page View Object Bar\">Kabala Wantaa Mul'annoo Fuulaa</link>"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
+"02110000.xhp\n"
"tit\n"
"help.text"
-msgid "Options"
-msgstr "Dirqalaalee"
+msgid "Navigator"
+msgstr "Naannessaa"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"bm_id3147228\n"
+"02110000.xhp\n"
+"bm_id3150791\n"
"help.text"
-msgid "<bookmark_value>sorting; options for database ranges</bookmark_value><bookmark_value>sorting;Asian languages</bookmark_value><bookmark_value>Asian languages;sorting</bookmark_value><bookmark_value>phonebook sorting rules</bookmark_value><bookmark_value>natural sort algorithm</bookmark_value>"
-msgstr "<bookmark_value>foo'iinsa;dirqalaalee Hammanga Kuusa Deetaatiif</bookmark_value><bookmark_value>foo'iinsa; Afaanota Eeshiyaa</bookmark_value><bookmark_value>Afaanota Eeshiyaa; foo'iinsa</bookmark_value><bookmark_value>seerota foo'iinsa Baafata bilbilaa</bookmark_value><bookmark_value>seermurtoo foo'iinsa uumamaa</bookmark_value>"
+msgid "<bookmark_value>Navigator;for sheets</bookmark_value><bookmark_value>navigating;in spreadsheets</bookmark_value><bookmark_value>displaying; scenario names</bookmark_value><bookmark_value>scenarios;displaying names</bookmark_value>"
+msgstr "<bookmark_value>naannessaa;wardiif</bookmark_value><bookmark_value>wardii keessa;naanna'uu</bookmark_value><bookmark_value>maqaa mul'inaa;mul'isuu</bookmark_value><bookmark_value>mul'inoota;maqaa mul'isuu</bookmark_value>"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3147228\n"
+"02110000.xhp\n"
+"hd_id3150791\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12030200.xhp\" name=\"Options\"> Options</link>"
-msgstr "<link href=\"text/scalc/01/12030200.xhp\" name=\"Options\">Dirqalaalee</link>"
+msgid "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>"
+msgstr "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Naannessaa</link>"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3153770\n"
+"02110000.xhp\n"
+"par_id3156422\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/SortOptionsPage\"> Sets additional sorting options.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/SortOptionsPage\"> Dirqalaalee foo'iinsaa dabalataa qindeessa.</ahelp>"
+msgid "<ahelp hid=\".uno:Navigator\">Activates and deactivates the Navigator.</ahelp> The Navigator is a <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>."
+msgstr "<ahelp hid=\".uno:Navigator\">Naannessaa Kakaasas hadoochas</ahelp> Naannessaan <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">foddaa galmaa'udha</link>."
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3146976\n"
-"3\n"
+"02110000.xhp\n"
+"par_id3145271\n"
+"40\n"
"help.text"
-msgid "Case Sensitivity"
-msgstr "Qub-suukanaawiina"
+msgid "Choose <emph>View - Navigator</emph> to display the Navigator."
+msgstr "Naanna'aa mul'isuuf <emph>Mul'annoo - Naanna'aa</emph> filadhu."
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3153091\n"
+"02110000.xhp\n"
+"hd_id3159155\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/case\"> Sorts first by uppercase letters and then by lowercase letters. For Asian languages, special handling applies.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/case\">Jalqaba quboota xixiqqoodhaan ittaansee quboota guguddoodhaan foo'a. Afaanota Eeshiyaatif qabannoo addaatu tajaajila.</ahelp>"
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"par_idN10637\n"
-"help.text"
-msgid "Note for Asian languages: Check <emph>Case Sensitivity</emph> to apply multi-level collation. With multi-level collation, entries are first compared in their primitive forms with their cases and diacritics ignored. If they evaluate as the same, their diacritics are taken into account for the second-level comparison. If they still evaluate as the same, their cases, character widths, and Japanese Kana difference are considered for the third-level comparison."
-msgstr "Yaadannoo afaanota Eeshiyaatif: Foyyadeenya sadarkaa hedduu fayyadamuuf <emph>Qub-suukanaawiina</emph> mirkaneessi.Foyyadeenya sadarkaa hedduutin, haalota fii gubjaltoo tuffachuudhan galchiwwan jalqaba dakoo isaani waliin madaalamu.Yoo wal fakkatan, foyyadeenyi isaani wal madaallii sadarkaa lammaffaatif ni fayyada.Ammas yoo wal fakkaatan, akkaatan qubeewwan isaani, yabbinii arfiilee, fii kanan jaapaanii wal madaallii sadarkaa sadaffaatif ni tajaajiluu."
+msgid "Column"
+msgstr "Tarjaa"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3155856\n"
+"02110000.xhp\n"
+"par_id3146984\n"
"5\n"
"help.text"
-msgid "Range contains column/row labels"
-msgstr "Hammangaan moggaasa tarjaa/tarree qaba"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_COL\">Enter the column letter. Press Enter to reposition the cell cursor to the specified column in the same row.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_COL\">Qubee garee galchi.Qaree man'ee tarjaa beekame tarree walfakkaataa keessa jirutti deebisuuf 'Enter' dhiibi.</ahelp>"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3154014\n"
+"02110000.xhp\n"
+"hd_id3147126\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/header\"> Omits the first row or the first column in the selection from the sort.</ahelp> The <emph>Direction</emph> setting at the bottom of the dialog defines the name and function of this check box."
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/header\"> Fooyinsa kessaa tarree tokkoffaa ykn tarjaa tokkoffaa filataman dhiisa.</ahelp> Qindeessaan <emph>Kallattii</emph> jala qaaqatti argamu maqaa fii fankishinii sanduuqa mirkaneessituu hiika."
+msgid "Row"
+msgstr "Tarree"
-#: 12030200.xhp
-#, fuzzy
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3147436\n"
+"02110000.xhp\n"
+"par_id3149958\n"
"7\n"
"help.text"
-msgid "Include formats"
-msgstr "Dhangiiwwan dabali"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ROW\">Enter a row number. Press Enter to reposition the cell cursor to the specified row in the same column.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_ROW\">Lakkoofsa tarree galchi.Qaree man'ee tarree beekame tarjaa walfakkaataa keessa jirutti deebisuuf 'Enter' dhiibi.</ahelp>"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3149377\n"
+"02110000.xhp\n"
+"hd_id3150717\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/formats\"> Preserves the current cell formatting.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/formats\">Dhanga'ina man'ee olkaawa.</ahelp>"
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"hd_id3147438\n"
-"help.text"
-msgid "Enable natural sort"
-msgstr ""
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"par_id3149378\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/naturalsort\">Natural sort is a sort algorithm that sorts string-prefixed numbers based on the value of the numerical element in each sorted number, instead of the traditional way of sorting them as ordinary strings.</ahelp> For instance, let's assume you have a series of values such as, A1, A2, A3, A4, A5, A6, ..., A19, A20, A21. When you put these values into a range of cells and run the sort, it will become A1, A11, A12, A13, ..., A19, A2, A20, A21, A3, A4, A5, ..., A9. While this sorting behavior may make sense to those who understand the underlying sorting mechanism, to the rest of the population it seems completely bizarre, if not outright inconvenient. With the natural sort feature enabled, values such as the ones in the above example get sorted \"properly\", which improves the convenience of sorting operations in general."
-msgstr ""
+msgid "Data Range"
+msgstr "Hammanga Deetaa"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3153878\n"
+"02110000.xhp\n"
+"par_id3150752\n"
"10\n"
"help.text"
-msgid "Copy sort results to:"
-msgstr "Firiiwwan fooyinsaa garagalchi gara:"
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"par_id3156286\n"
-"11\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/copyresult\"> Copies the sorted list to the cell range that you specify.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/copyresult\">Tarreewwan fooyaman hammangaa man'ee ifteessiteetti garagalcha.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_DATA\">Specifies the current data range denoted by the position of the cell cursor.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_DATA\">Hammanga deetaa ammee iddoo qaree man'eetiin bakka bu'e adda baasa.</ahelp>"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3153418\n"
-"12\n"
+"02110000.xhp\n"
+"par_id3159264\n"
"help.text"
-msgid "Sort results"
-msgstr "Firiiwwan fooi"
+msgid "<image id=\"img_id3147338\" src=\"cmd/sc_grid.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147338\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147338\" src=\"cmd/sc_grid.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147338\">sajoo</alt></image>"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3155602\n"
-"13\n"
+"02110000.xhp\n"
+"par_id3146919\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outarealb\"> Select a named <link href=\"text/scalc/01/12010000.xhp\" name=\"cell range\"> cell range</link> where you want to display the sorted list, or enter a cell range in the input box.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outarealb\"> Moggafamaa fili<link href=\"text/scalc/01/12010000.xhp\" name=\"cell range\"> hammngaa man'ee</link> iddoo tarreewwwan fooyaman itti agarsiisuu barbaaddu ykn sanduuqa naqaatti hammangaa man'ee galchi.</ahelp>"
+msgid "Data Range"
+msgstr "Hammanga Deetaa"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3153707\n"
+"02110000.xhp\n"
+"hd_id3148488\n"
"14\n"
"help.text"
-msgid "Sort results"
-msgstr "Firiiwwan fooyi"
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"par_id3145642\n"
-"15\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outareaed\"> Enter the cell range where you want to display the sorted list, or select a named range from the list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outareaed\"> Iddoo tarree fooyame itti agarsiisuu barbaaddutti hammangaa man'ee galchi ykn hammangaa moggafaame tarree kessaa fili.</ahelp>"
+msgid "Start"
+msgstr "Eegala"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3155445\n"
+"02110000.xhp\n"
+"par_id3150086\n"
"16\n"
"help.text"
-msgid "Custom sort order"
-msgstr "Tartiiba fooyi mammiloo"
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"par_id3156385\n"
-"17\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuser\"> Click here and then select the custom sort order that you want.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuser\"> Iddoo kana cuqaasi irraan Tartiiba fooyi mammiloo barbaaddu fili.</ahelp>"
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"hd_id3154704\n"
-"18\n"
-"help.text"
-msgid "Custom sort order"
-msgstr "Tartiiba fooyi mammiloo"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_UP\">Moves to the cell at the beginning of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_UP\">Man'ee jalqaba<emph> Hammanga Deetaa</emph> ammee irra jirutti hiiqsa,kanas qabduu hammanga deetaa fayyadamuun shooluu ni dandeessa.</ahelp>"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3155962\n"
-"19\n"
+"02110000.xhp\n"
+"par_id3152994\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuserlb\"> Select the custom sort order that you want to apply. To define a custom sort order, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060400.xhp\" name=\"%PRODUCTNAME Calc - Sort Lists\">%PRODUCTNAME Calc - Sort Lists</link> .</ahelp>"
-msgstr ""
+msgid "<image id=\"img_id3150515\" src=\"sw/imglst/sc20186.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150515\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150515\" src=\"sw/imglst/sc20186.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150515\">Sajoo</alt></image>"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3149257\n"
-"28\n"
+"02110000.xhp\n"
+"par_id3154372\n"
+"15\n"
"help.text"
-msgid "Language"
-msgstr "Afaan"
+msgid "Start"
+msgstr "Eegala"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3147004\n"
-"29\n"
+"02110000.xhp\n"
+"hd_id3146982\n"
+"17\n"
"help.text"
-msgid "Language"
-msgstr "Afaan"
+msgid "End"
+msgstr "Xumura"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3150787\n"
-"32\n"
+"02110000.xhp\n"
+"par_id3152985\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/language\"> Select the language for the sorting rules.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/language\"> Seerota fooyinsaaf afaan fili.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_DOWN\">Moves to the cell at the end of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_DOWN\">Man'ee dhuma hammanga deetaa ammee irra jirutti hiiqsa,kanas qabduu <emph>Hammanga Deetaa</emph> fayyadamuudhaan shooluu ni dandeessa.</ahelp>"
-#: 12030200.xhp
-#, fuzzy
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3150344\n"
-"30\n"
+"02110000.xhp\n"
+"par_id3159170\n"
"help.text"
-msgid "Options"
-msgstr "Dirqalaalee"
+msgid "<image id=\"img_id3148871\" src=\"sw/imglst/sc20175.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148871\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148871\" src=\"sw/imglst/sc20175.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148871\">Sajoo</alt></image>"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3155113\n"
-"33\n"
+"02110000.xhp\n"
+"par_id3147072\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/algorithmlb\"> Select a sorting option for the language.</ahelp> For example, select the \"phonebook\" option for German to include the umlaut special character in the sorting."
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/algorithmlb\"> Afaani filachuuf filannoo fooyinsaa fili.</ahelp> Fakkenyaaf, afaan Jarmaniitiif arfii addaa fooyinsa keessaa unmault dabaluuf filannoo \"baafatabilbilaa\" fili."
+msgid "End"
+msgstr "Xumura"
-#: 12030200.xhp
-#, fuzzy
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3152580\n"
+"02110000.xhp\n"
+"hd_id3150107\n"
"20\n"
"help.text"
-msgid "Direction"
-msgstr "Kallattii"
+msgid "Toggle"
+msgstr "Ceesistuu"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3154201\n"
+"02110000.xhp\n"
+"par_id3159098\n"
"22\n"
"help.text"
-msgid "Top to Bottom (Sort Rows)"
-msgstr "Gubbaa gara Jalaattii(Tarreewwan Fooyi)"
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"par_id3166430\n"
-"23\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/topdown\"> Sorts rows by the values in the active columns of the selected range.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/topdown\">Tarreewwan gatii tarjaawwan ka'aa keessaa hammangaa filatameen fooya.</ahelp>"
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"hd_id3145588\n"
-"24\n"
-"help.text"
-msgid "Left to Right (Sort Columns)"
-msgstr "Bitaa gara Mirgaatti(Tarjaawwan Fooyi)"
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"par_id3154370\n"
-"25\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/leftright\"> Sorts columns by the values in the active rows of the selected range.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/leftright\">Tarjaawwan gatii tarreewwan ka'aa keessaa hammangaa filatameen fooya.</ahelp>"
-
-#: 12030200.xhp
-#, fuzzy
-msgctxt ""
-"12030200.xhp\n"
-"hd_id3156290\n"
-"26\n"
-"help.text"
-msgid "Data area"
-msgstr "Iddoo deetaa"
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"par_id3156446\n"
-"27\n"
-"help.text"
-msgid "Displays the cell range that you want to sort."
-msgstr "Hammangaa man'ee fooyu barbaaddee agarsiisa."
-
-#: 12100000.xhp
-msgctxt ""
-"12100000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Refresh Range"
-msgstr "Hangii haroomsi"
-
-#: 12100000.xhp
-msgctxt ""
-"12100000.xhp\n"
-"bm_id3153662\n"
-"help.text"
-msgid "<bookmark_value>database ranges; refreshing</bookmark_value>"
-msgstr "<bookmark_value>hangiiwwan kuusaa deetaa; haroomsu</bookmark_value>"
-
-#: 12100000.xhp
-msgctxt ""
-"12100000.xhp\n"
-"hd_id3153662\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
-msgstr "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Hangii Haroomsi</link>"
-
-#: 12100000.xhp
-msgctxt ""
-"12100000.xhp\n"
-"par_id3153088\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"aktualisieren\"><ahelp hid=\".uno:DataAreaRefresh\" visibility=\"visible\">Updates a data range that was inserted from an external database. The data in the sheet is updated to match the data in the external database.</ahelp></variable>"
-msgstr "<variable id=\"aktualisieren\"><ahelp hid=\".uno:DataAreaRefresh\" visibility=\"visible\">Hangii deetaa kan kuusaa deetaa alaa galee sana haroomsi.Deetaa Kuusaa deetaa alaa galee waliin wal simsiisuuf deetaa wordii irra turee haroomsa.</ahelp></variable>Hangii"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ROOT\">Toggles the content view. Only the selected Navigator element and its subelements are displayed.</ahelp> Click the icon again to restore all elements for viewing."
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_ROOT\">Mul'annoo qabentaa ceesisa.Maalima naannessaa filatameefi citni maalimootaa isaa qofti ni mul'atu.</ahelp> Maalimoota agarsiisaaf oolan hunda bakkatdeebisuuf sajoo irra deebi'iiti cuqaasi."
-#: 12040500.xhp
+#: 02110000.xhp
msgctxt ""
-"12040500.xhp\n"
-"tit\n"
+"02110000.xhp\n"
+"par_id3152869\n"
"help.text"
-msgid "Hide AutoFilter"
-msgstr "OfGingilchaa Dhoksi"
+msgid "<image id=\"img_id3149126\" src=\"sw/imglst/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149126\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149126\" src=\"sw/imglst/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149126\">Sajoo</alt></image>"
-#: 12040500.xhp
+#: 02110000.xhp
msgctxt ""
-"12040500.xhp\n"
-"bm_id3150276\n"
+"02110000.xhp\n"
+"par_id3159229\n"
+"21\n"
"help.text"
-msgid "<bookmark_value>database ranges; hiding AutoFilter</bookmark_value>"
-msgstr "<bookmark_value>hammangawwaan kuusaa deetaa; ofgingilchaa dhoksuu</bookmark_value>"
+msgid "Toggle"
+msgstr "Ceesistuu"
-#: 12040500.xhp
+#: 02110000.xhp
msgctxt ""
-"12040500.xhp\n"
-"hd_id3150276\n"
-"1\n"
+"02110000.xhp\n"
+"hd_id3149381\n"
+"11\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040500.xhp\" name=\"Hide AutoFilter\">Hide AutoFilter</link>"
-msgstr "<link href=\"text/scalc/01/12040500.xhp\" name=\"Hide AutoFilter\">OfGingilchaa dhoksi</link>"
+msgid "Contents"
+msgstr "Qabeentoota"
-#: 12040500.xhp
+#: 02110000.xhp
msgctxt ""
-"12040500.xhp\n"
-"par_id3156326\n"
-"2\n"
+"02110000.xhp\n"
+"par_id3150051\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\".uno:DataFilterHideAutoFilter\" visibility=\"visible\">Hides the AutoFilter buttons in the selected cell range.</ahelp>"
-msgstr "<ahelp hid=\".uno:DataFilterHideAutoFilter\" visibility=\"visible\">hammanga man'ee keessaa qabdoota ofgingilchaa dhoksa.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ZOOM\">Allows you to hide/show the contents.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_ZOOM\">Qabeentoota akka dhoksitu yookiin agarsiiftu si dandeessisa.</ahelp>"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"tit\n"
+"02110000.xhp\n"
+"par_id3155597\n"
"help.text"
-msgid "Insert Sheet"
-msgstr "Wardii Saagi"
+msgid "<image id=\"img_id3154738\" src=\"sw/imglst/sc20233.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154738\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154738\" src=\"sw/imglst/sc20233.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154738\">Sajoo</alt></image>"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"bm_id4522232\n"
+"02110000.xhp\n"
+"par_id3150955\n"
+"12\n"
"help.text"
-msgid "<bookmark_value>sheets;creating</bookmark_value>"
-msgstr "<bookmark_value>wardiiwwan;uumuu</bookmark_value>"
+msgid "Contents"
+msgstr "Qabeentoota"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3155629\n"
-"1\n"
+"02110000.xhp\n"
+"hd_id3147244\n"
+"23\n"
"help.text"
-msgid "Insert Sheet"
-msgstr "Wardii Saagi"
+msgid "Scenarios"
+msgstr "Mul'inoota"
-#: 04050000.xhp
-#, fuzzy
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3147264\n"
-"2\n"
+"02110000.xhp\n"
+"par_id3153955\n"
+"25\n"
"help.text"
-msgid "<variable id=\"tabelleeinfuegentext\"><ahelp hid=\".uno:Insert\">Defines the options to be used to insert a new sheet.</ahelp> You can create a new sheet, or insert an existing sheet from a file.</variable>"
-msgstr "<variable id=\"tabelleeinfuegentext\"><ahelp hid=\".uno:Insert\">Wardii haaraa saaguuf filannoowwan fayyadamamuu qaban ibsa.</ahelp> Wardii haaraa uumuu, yookiin wardii faayilii keessa jiru saaguu ni dandeessa. </variable>"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_SCEN\">Displays all available scenarios. Double-click a name to apply that scenario.</ahelp> The result is shown in the sheet. For more information, choose <link href=\"text/scalc/01/06050000.xhp\" name=\"Tools - Scenarios\"><emph>Tools - Scenarios</emph></link>."
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_SCEN\">Mul'inoota jiran hunda mul'isa.Mul'inicha fayyadamuuf maqaa lama cuqaasi.</ahelp> Firiin isaa wardii keessatti mul'ata.Odeeffannoo dabalataaf <link href=\"text/scalc/01/06050000.xhp\" name=\"Tools - Scenarios\"><emph>Meeshaalee - Mul'inoota</emph></link> filadhu."
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3154684\n"
-"19\n"
+"02110000.xhp\n"
+"par_id3148745\n"
"help.text"
-msgid "Position"
-msgstr "Qubannoo"
+msgid "<image id=\"img_id3159256\" src=\"sc/imglst/na07.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159256\">Icon</alt></image>"
+msgstr ""
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3156281\n"
-"20\n"
+"02110000.xhp\n"
+"par_id3166466\n"
+"24\n"
"help.text"
-msgid "Specifies where the new sheet is to be inserted into your document."
-msgstr "Wardii haaraan galmee ke keessa bakka kamitti akka saagamuu qabu adda baasa."
+msgid "Scenarios"
+msgstr "Mul'inoota"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3154123\n"
-"21\n"
+"02110000.xhp\n"
+"par_idN10A6C\n"
"help.text"
-msgid "Before current sheet"
-msgstr "Wardii ammee dura"
+msgid "If the Navigator displays scenarios, you can access the following commands when you right-click a scenario entry:"
+msgstr "Yoo Naannessaan mul'inoota mul'ise,galiinsa mul'inaa mirga cuqaasuun ajajoota itti aanan argachuu ni dandeessa."
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3145787\n"
-"22\n"
+"02110000.xhp\n"
+"par_idN10A77\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSERT_TABLE:RB_BEFORE\">Inserts a new sheet directly before the current sheet.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSERT_TABLE:RB_BEFORE\">Wardii haaraa kallattiidhaan wardii ammee duratti saaga.Inserts a new sheet directly before the current sheet.</ahelp>"
+msgid "Delete"
+msgstr "Haqi"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3155414\n"
-"23\n"
+"02110000.xhp\n"
+"par_idN10A7B\n"
"help.text"
-msgid "After current sheet"
-msgstr "Wardii ammee booda"
+msgid "<ahelp hid=\"HID_SC_SCENARIO_DELETE\">Deletes the selected scenario.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_SCENARIO_DELETE\">Mul'ina filatame haqa.</ahelp>"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3145271\n"
-"24\n"
+"02110000.xhp\n"
+"par_idN10A92\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSERT_TABLE:RB_BEHIND\">Inserts a new sheet directly after the current sheet.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSERT_TABLE:RB_BEHIND\">Wardii haaraa kallattidhaan wardii ammee boodatti saaga.</ahelp>"
+msgid "Properties"
+msgstr "Amaloota"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3147428\n"
-"25\n"
+"02110000.xhp\n"
+"par_idN10A96\n"
"help.text"
-msgid "Sheet"
-msgstr "Uumi"
+msgid "<ahelp hid=\"HID_SC_SCENARIO_EDIT\">Opens the <link href=\"text/scalc/01/06050000.xhp\">Edit scenario</link> dialog, where you can edit the scenario properties.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_SCENARIO_EDIT\">Qaaqa <link href=\"text/scalc/01/06050000.xhp\">Mul'ina gulaali</link>, bakkatti amaloota mul'inaa gulaalu dandeessu bana.</ahelp>"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3154012\n"
+"02110000.xhp\n"
+"hd_id3150037\n"
"26\n"
"help.text"
-msgid "Specifies whether a new sheet or an existing sheet is inserted into the document."
-msgstr "Wardii haaraa yookiin wardii duraan ture, kamtu akka galmeetti saagame adda baasa."
+msgid "Drag Mode"
+msgstr "Haalata Harkisaa"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3147350\n"
-"3\n"
+"02110000.xhp\n"
+"par_id3157876\n"
+"28\n"
"help.text"
-msgid "New sheet"
-msgstr "Uumi"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_DROP\">Opens a submenu for selecting the drag mode. You decide which action is performed when dragging and dropping an object from the Navigator into a document. Depending on the mode you select, the icon indicates whether a hyperlink, link or a copy is created.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_DROP\">Cita baafataa haalata harkisaa filachuuf gargaaru bana.Yeroo wanta naannessaa irraa galmeetti harkistuu fi keessu ta'ii kamtu akka raawwatame ni murteessita.Haalata ati filatte irratti hundaa'uun, sajoon geessituu,kornyoo yookiin garagalcha kamtu akka uumame agarsiisa.</ahelp>"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3149262\n"
-"4\n"
+"02110000.xhp\n"
+"par_id3149947\n"
"help.text"
-msgid "<ahelp hid=\"SC_RADIOBUTTON_RID_SCDLG_INSERT_TABLE_RB_NEW\">Creates a new sheet. Enter a sheet name in the <emph>Name</emph> field. Allowed characters are letters, numbers, spaces, and the underline character.</ahelp>"
-msgstr "<ahelp hid=\"SC_RADIOBUTTON_RID_SCDLG_INSERT_TABLE_RB_NEW\">Wardii haaraa uuma.Maqaa wardii dirree <emph>Maqaa</emph> keessa galchi.Arfiiwwan eeyyamaman qubeewwan,lakkoofsota,iddoowwanii fi jalmurii arfiidha.</ahelp>"
+msgid "<image id=\"img_id3159119\" src=\"cmd/sc_chainframes.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159119\">Icon</alt></image>"
+msgstr "<image id=\"img_id3159119\" src=\"cmd/sc_chainframes.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159119\">Sajoo</alt></image>"
-#: 04050000.xhp
-#, fuzzy
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3155418\n"
+"02110000.xhp\n"
+"par_id3150656\n"
"27\n"
"help.text"
-msgid "No. of sheets"
-msgstr "Lakkofsa Wardiiwwanii"
+msgid "Drag Mode"
+msgstr "Haalata Harkisaa"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3148457\n"
-"28\n"
+"02110000.xhp\n"
+"hd_id3149009\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\"SC:NUMERICFIELD:RID_SCDLG_INSERT_TABLE:NF_COUNT\">Specifies the number of sheets to be created.</ahelp>"
-msgstr "<ahelp hid=\"SC:NUMERICFIELD:RID_SCDLG_INSERT_TABLE:NF_COUNT\">Lakkoofsa wardiiwwan uumamuu qaqbanii adda baasa.</ahelp>"
+msgid "Insert as Hyperlink"
+msgstr "Akka Geessituu Barbaachisaatti Saagaa"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3149379\n"
-"7\n"
+"02110000.xhp\n"
+"par_id3146938\n"
+"30\n"
"help.text"
-msgid "Name"
-msgstr "Maqaa"
+msgid "<ahelp hid=\"HID_SC_DROPMODE_URL\">Inserts a hyperlink when you drag-and-drop an object from the Navigator into a document.</ahelp> You can later click the created hyperlink to set the cursor and the view to the respective object."
+msgstr "<ahelp hid=\"HID_SC_DROPMODE_URL\">Yeroo wanta naannessaa irraa gara galmeetti harkistuufi keessu geessituu barbaachisaa saaga.</ahelp> You can later click the created hyperlink to set the cursor and the view to the respective object."
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3150718\n"
-"8\n"
+"02110000.xhp\n"
+"par_id3880733\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_INSERT_TABLE:ED_TABNAME\">Specifies the name of the new sheet.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_INSERT_TABLE:ED_TABNAME\">Maqaa wardii haaraa adda baasa.</ahelp>"
+msgid "If you insert a hyperlink that links to an open document, you need to save the document before you can use the hyperlink."
+msgstr "Yoo geessituu barbaachisaa galmee banaatti qabsiisu saagde, geessituu barbaachisaa fayyadamuu keetiin dura galmicha olkaa'uutu sirraa eegama."
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3155066\n"
-"9\n"
+"02110000.xhp\n"
+"hd_id3154682\n"
+"31\n"
"help.text"
-msgid "From File"
-msgstr "Faayilii irraa"
+msgid "Insert as Link"
+msgstr "Akka Geessituutti Saagaa"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3153714\n"
-"10\n"
+"02110000.xhp\n"
+"par_id3150746\n"
+"32\n"
"help.text"
-msgid "<ahelp hid=\"SC_RADIOBUTTON_RID_SCDLG_INSERT_TABLE_RB_FROMFILE\">Inserts a sheet from an existing file into the current document.</ahelp>"
-msgstr "<ahelp hid=\"SC_RADIOBUTTON_RID_SCDLG_INSERT_TABLE_RB_FROMFILE\">Faayilii duraan ture irraa wardii gara galmee ammeetti saaga.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_DROPMODE_LINK\">Creates a link when you drag-and-drop an object from the Navigator into a document.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_DROPMODE_LINK\">Yeroo wanta naannessaa irraa gara galmeetti harkistuufi keessu quunnamtii uuma.</ahelp>"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3149020\n"
-"15\n"
+"02110000.xhp\n"
+"hd_id3145824\n"
+"33\n"
"help.text"
-msgid "Browse"
-msgstr "Sakatta'i"
+msgid "Insert as Copy"
+msgstr "Akka Garagalchaatti Saagaa"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3159267\n"
-"16\n"
+"02110000.xhp\n"
+"par_id3147471\n"
+"34\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_INSERT_TABLE:BTN_BROWSE\">Opens a dialog for selecting a file.</ahelp>"
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_INSERT_TABLE:BTN_BROWSE\">Faayilii filachuuf qaaqa bana.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_DROPMODE_COPY\">Generates a copy when you drag-and-drop an object from the Navigator into a document.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_DROPMODE_COPY\">Yeroo wanta naannessaa irraa gara galmeetti harkistuufi keessu garagalcha maddisiisa.</ahelp>"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3149255\n"
-"29\n"
+"02110000.xhp\n"
+"hd_id3147423\n"
+"38\n"
"help.text"
-msgid "Available Sheets"
-msgstr "Wardiiwwan jireessa"
+msgid "Objects"
+msgstr "Wantoota"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3155336\n"
-"30\n"
+"02110000.xhp\n"
+"par_id3150700\n"
+"39\n"
"help.text"
-msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_INSERT_TABLE:LB_TABLES\">If you selected a file by using the <emph>Browse</emph> button, the sheets contained in it are displayed in the list box. The file path is displayed below this box. Select the sheet to be inserted from the list box.</ahelp>"
-msgstr "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_INSERT_TABLE:LB_TABLES\">Yoo qabduu <emph>Sakatta'i</emph>dhaan faayilii filatte,wardiiwwan isa keessa jiran sanduuqa tarree keessatti mul'atu.Wardii saagamuuf jiru sanduuqa tarree keessaa filadhu.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ENTRIES\">Displays all objects in your document.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_ENTRIES\">Wantoota galmee ke keessa jiran hunda mul'isa.</ahelp>"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3145791\n"
-"17\n"
+"02110000.xhp\n"
+"hd_id3150860\n"
+"35\n"
"help.text"
-msgid "Link"
-msgstr "Walqabsiisi"
+msgid "Documents"
+msgstr "Galmeewwan"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3152580\n"
-"18\n"
+"02110000.xhp\n"
+"par_id3153929\n"
+"36\n"
"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_INSERT_TABLE_CB_LINK\">Select to insert the sheet as a link instead as a copy. The links can be updated to show the current contents.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_INSERT_TABLE_CB_LINK\">Wardii akka garagalchaatti osoo hin taane akka quunnamsiistuutti saaguuf filadhu.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_DOC\">Displays the names of all open documents.</ahelp> To switch to another open document in the Navigator, click the document name. The status (active, inactive) of the document is shown in brackets after the name. You can switch the active document in the <emph>Window</emph> menu."
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_DOC\">Maqaa galmeewwan banaa ta'anii hunda mul'isa.</ahelp> Galmee gara biraa Naannessaa keessa jirutti jijjiiruuf maqaa galmee cuqaasi. Haalojiin galmichaa(si'aayaa,hadoodaa) maqichaa booda agarsiifama.Galmee si'aayaa baafata foddaa keessa jiru jijjiiruu ni dandeessa.Baafata <emph>Foddaa</emph>."
-#: 06060100.xhp
+#: 02120000.xhp
msgctxt ""
-"06060100.xhp\n"
+"02120000.xhp\n"
"tit\n"
"help.text"
-msgid "Protecting Sheet"
-msgstr "Wardii Eegaa"
+msgid "Headers & Footers"
+msgstr "Irraantotaa fi Jalaantota"
-#: 06060100.xhp
+#: 02120000.xhp
msgctxt ""
-"06060100.xhp\n"
-"hd_id3153087\n"
+"02120000.xhp\n"
+"hd_id3145251\n"
"1\n"
"help.text"
-msgid "Protecting Sheet"
-msgstr "Wardii Eegaa"
+msgid "Headers & Footers"
+msgstr "Irraantotaa fi Jalaantota"
-#: 06060100.xhp
+#: 02120000.xhp
msgctxt ""
-"06060100.xhp\n"
-"par_id3148664\n"
+"02120000.xhp\n"
+"par_id3151073\n"
"2\n"
"help.text"
-msgid "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">Protects the cells in the current sheet from being modified.</ahelp></variable> Choose <emph>Tools - Protect Document - Sheet</emph> to open the <emph>Protect Sheet</emph> dialog in which you then specify sheet protection with or without a password."
-msgstr "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">man'eewwan wardii ammaa keessatti akka hin jijjiramneef eega.</ahelp></variable> Qaaqa<emph>Wardii Eegaa</emph> kan ittiin ittigaa qabachuu ykn dhiisuu isaa itti ifteessitu banuuf<emph>Meeshaalee - Galmee Eegaa - Wardii</emph> fili."
-
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3149664\n"
-"5\n"
-"help.text"
-msgid "To protect cells from further editing, the <emph>Protected</emph> check box must be checked on the <link href=\"text/scalc/01/05020600.xhp\" name=\"Format - Cells - Cell Protection\"><emph>Format - Cells - Cell Protection</emph></link> tab page or on the <emph>Format Cells</emph> context menu."
-msgstr "Man'eewwan gulaaltu dabalataa irraa ittisuuf,sanduuqni mirkaneessaa <emph>Kan Eegamee</emph>fuula caancalaa <link href=\"text/scalc/01/05020600.xhp\" name=\"Format - Cells - Cell Protection\"><emph>Dhangii - Man'eewwwan - Eeginsa Man'ee</emph></link> ykn baafata halqara irraa <emph>Dhangii Man'eewwan</emph> mirkaneessuun dirqi dha."
-
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3154490\n"
-"8\n"
-"help.text"
-msgid "Unprotected cells or cell ranges can be set up on a protected sheet by using the <emph>Tools - Protect Document - Sheet</emph> and <emph>Format - Cells - Cell Protection</emph> menus:"
-msgstr "Bafatoota <emph>Meeshaalee - Galmee Eega - Barruu</emph> fi <emph>Dhangii - Man'eewwan - Hayyisa Man'ee </emph> fayyadamuun man'ewwan ykn hangiiwwan man'ee hin eegamnee barruu eegamee irratti qindeessu danda'a."
-
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3149123\n"
-"16\n"
-"help.text"
-msgid "Select the cells that will be unprotected"
-msgstr "Man'eewwan hin eegamin fili"
-
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3150329\n"
-"17\n"
-"help.text"
-msgid "Select <emph>Format - Cells - Cell Protection</emph>. Unmark the <emph>Protected</emph> box and click <emph>OK</emph>."
-msgstr "<emph>Dhangii - Man'eewwan - Hayyisa Man'ee</emph>fili.Sanduuqa <emph>Kan Eegame</emph> hin mallatteessin itti ansuun <emph>Eeyyee</emph>cuqaasi."
-
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3156384\n"
-"18\n"
-"help.text"
-msgid "On the <emph>Tools - Protect Document - Sheet</emph> menu, activate protection for the sheet. Effective immediately, only the cell range you selected in step 1 can be edited."
-msgstr "Barrruu <emph>Meeshaalee - Galmee Eegaa - Barruu</emph>tti,barruuf eeginsa kakaasi.Ful'aa hatataman, hangii man'ee isa sadarkaa 1ffaatti filattee qofa gulaalamuu danda'a."
-
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3149566\n"
-"9\n"
-"help.text"
-msgid "To later change an unprotected area to a protected area, select the range. Next, on the <emph>Format - Cells - Cell Protection</emph> tab page, check the <emph>Protected</emph> box. Finally, choose the <emph>Tools - Protect Document - Sheet </emph>menu. The previously editable range is now protected."
-msgstr "Boodaa bakka hin eegamnee gara bakka eegameetti jijjiruuf,hangii fili.Itti ansuun fuula caancala<emph>Dhangii - Man'eewwan - Hayyisa Man'ee</emph> irraa sanduuqa<emph>Kan Eegame</emph> mirkaneessi.Dhumarratti barruu<emph>Meeshaalee - Galmee Eegaa - Barruu </emph> fili.Hangiin duraan gulaalamee amma hin xuqaman."
-
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3153964\n"
-"10\n"
-"help.text"
-msgid "Sheet protection also affects the context menu of the sheet tabs at the bottom of the screen. The <emph>Delete</emph> and <emph>Rename</emph> commands cannot be selected."
-msgstr "Ittisni wardii baafata halqara caancaloota wardii kan argii gadiitti argamaniis ni dhiibbeesssu.Ajaajni <emph>Haqii</emph> fi <emph>Siiqsi/Garagalchi</emph> filamuu hin danda'aan."
-
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3150301\n"
-"19\n"
-"help.text"
-msgid "If a sheet is protected, you will not be able to modify or delete any Cell Styles."
-msgstr "Yoo wardiin ittifamee,akkaataalee man'ee haroomsuu ykn haquun hin dandeessu."
+msgid "<variable id=\"kopfundfusszeilentext\"><ahelp hid=\".uno:EditHeaderAndFooter\">Allows you to define and format headers and footers.</ahelp></variable>"
+msgstr "<variable id=\"kopfundfusszeilentext\"><ahelp hid=\".uno:EditHeaderAndFooter\">Irraantotaa fi jalaantota ibsuufi dhangi'uu si dandeessisa.</ahelp></variable>"
-#: 06060100.xhp
+#: 02120000.xhp
msgctxt ""
-"06060100.xhp\n"
-"par_id3154656\n"
+"02120000.xhp\n"
+"par_id3153415\n"
"3\n"
"help.text"
-msgid "A protected sheet or cell range can no longer be modified until this protection is disabled. To disable the protection, choose the <emph>Tools - Protect Document - Sheet</emph> command. If no password was set, the sheet protection is immediately disabled. If the sheet was password protected, the <emph>Remove Protection</emph> dialog opens, where you must enter the password."
-msgstr "Hangaa ittisinni kun hojii dhiisuutti barruu ykn hangii man'ee ittisamee lammata hin haaromfamuu.Ittisa kana hojii dhaabsiisuuf ajaja<emph>Meeshaalee - Galmee eegame - Wardii</emph> fili.Yoo ittigaa hin qindeessine,barruun ittisaa hatattamaan agarsiifama.yoo barruun ittigaan eegamadha ta'ee,qaaqni <emph>Ittisni Haqii</emph> bakka iitti ittigaa galchitu ni banama."
-
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3149815\n"
-"11\n"
-"help.text"
-msgid "Once saved, protected sheets can only be saved again by using the <emph>File - Save As</emph> command."
-msgstr "Takka ol keenyaan,barruuwwan ittisaman ajaja<emph>Faayilii - Akkaa olkaa'i</emph>qoofa lammata olka'aamu."
-
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"hd_id3150206\n"
-"4\n"
-"help.text"
-msgid "Password (optional)"
-msgstr "Ittigaa (Dirqaala)"
-
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3152990\n"
-"7\n"
-"help.text"
-msgid "<ahelp hid=\".uno:Protect\">Allows you to enter a password to protect the sheet from unauthorized changes.</ahelp>"
-msgstr "<ahelp hid=\".uno:Protect\">barruu jijjiraamoota heyyaman alaa irraa ittisuuf ittigaa akka galchituuf si heeyyama.</ahelp>"
-
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3148700\n"
-"12\n"
-"help.text"
-msgid "Complete protection of your work can be achieved by combining both options on the <emph>Tools - Protect Document</emph> menu, including password protection. To prohibit opening the document altogether, in the <emph>Save</emph> dialog mark the <emph>Save with password</emph> box before you click the <emph>Save</emph> button."
-msgstr "Gutummaa ittisa hojiikee kan argamu dirqalaalee laman ittisa ittigaa dabalachuun, baafata<emph>Meeshaalee -Galmee Eega</emph> irratti walitti makuun.Galmeewwan altokkoon wal faana banuu irraa dhorkuuf,qaaqa<emph>Olka'ii</emph>keessatti osoo qabdoo<emph>Olka'ii</emph>hin cuqaasin,sanduuqa<emph>Ittigaa waliin olkaa'ii</emph> mallatteessi."
+msgid "The<emph> Headers/Footers </emph>dialog contains the tabs for defining headers and footers. There will be separate tabs for the left and right page headers and footers if the <emph>Same content left/right</emph> option was not marked in the <link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\">Page Style</link> dialog."
+msgstr "Qaaqni<emph> Irraantotaa fi Jalaantotaa </emph>irraantotaafi jalaantota ibsuuf caancala qaba. Yoo filannoon <emph>Qabentaa bitaa/mirgaa walfakkaatu</emph> qaaqa <link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\"> Akkaataa Fuulaa </link> keessatti milkataa'e irraantotaa fi jalaantota fuula bitaa fi mirgaaf caancalli garaagaraa jiraachuu ni danda'a."
-#: 06030300.xhp
+#: 02120100.xhp
msgctxt ""
-"06030300.xhp\n"
+"02120100.xhp\n"
"tit\n"
"help.text"
-msgid "Trace Dependents"
-msgstr "Hirkattoota sakkatta'i"
+msgid "Header/Footer"
+msgstr "Irraantoo/Jalaantoo"
-#: 06030300.xhp
+#: 02120100.xhp
msgctxt ""
-"06030300.xhp\n"
-"bm_id3153252\n"
+"02120100.xhp\n"
+"bm_id3153360\n"
"help.text"
-msgid "<bookmark_value>cells; tracing dependents</bookmark_value>"
-msgstr "<bookmark_value>man'eewwan; hirkatoota sakkatta'uu</bookmark_value>"
+msgid "<bookmark_value>page styles; headers</bookmark_value> <bookmark_value>page styles; footers</bookmark_value> <bookmark_value>headers; defining</bookmark_value> <bookmark_value>footers; defining</bookmark_value> <bookmark_value>file names in headers/footers</bookmark_value> <bookmark_value>changing;dates, automatically</bookmark_value> <bookmark_value>dates;updating automatically</bookmark_value> <bookmark_value>automatic date updates</bookmark_value>"
+msgstr "<bookmark_value>akkaataawwan fuulaa; irraantota</bookmark_value> <bookmark_value>akkaataawwan fuulaa; jalaantota footers</bookmark_value> <bookmark_value>irraantota; ibsuu</bookmark_value> <bookmark_value>jalaantota; ibsuu</bookmark_value> <bookmark_value>maqaa faayilii irraantota/jalaantota keessaa</bookmark_value> <bookmark_value>guyyaa,ofumaan; jijjiiruu</bookmark_value> <bookmark_value>guyyaa; ofumaan haaromsuu</bookmark_value> <bookmark_value>guyyaa ofumaan haaromsa</bookmark_value>"
-#: 06030300.xhp
+#: 02120100.xhp
msgctxt ""
-"06030300.xhp\n"
-"hd_id3153252\n"
+"02120100.xhp\n"
+"hd_id3153360\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030300.xhp\" name=\"Trace Dependents\">Trace Dependents</link>"
-msgstr "<link href=\"text/scalc/01/06030300.xhp\" name=\"Trace Dependents\">hirkatoota sakkatta'i</link>"
+msgid "<link href=\"text/scalc/01/02120100.xhp\" name=\"Header/Footer\">Header/Footer</link>"
+msgstr "<link href=\"text/scalc/01/02120100.xhp\" name=\"Header/Footer\">Irraantoo/Jalaantoo</link>"
-#: 06030300.xhp
+#: 02120100.xhp
msgctxt ""
-"06030300.xhp\n"
-"par_id3156024\n"
+"02120100.xhp\n"
+"par_id3150768\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:ShowDependents\" visibility=\"visible\">Draws tracer arrows to the active cell from formulas that depend on values in the active cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:ShowDependents\" visibility=\"visible\">n man'ee kaka'aan kan gatiiwwan man'ee kaka'aa irrati hundaa'u xiyyaalee hordoffii ni kaasa.</ahelp>"
-
-#: 06030300.xhp
-msgctxt ""
-"06030300.xhp\n"
-"par_id3148948\n"
-"4\n"
-"help.text"
-msgid "The area of all cells that are used together with the active cell in a formula is highlighted by a blue frame."
-msgstr "Iddoon man'eewwanii hundii man'ee kaka'aa foormulaa keessaa waliin godayyaa cuquleen shoolama."
+msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/HeaderFooterContent\">Defines or formats a header or footer for a Page Style.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/HeaderFooterContent\">Irraantoo yookiin jalaantoo akkaataa fuulaaf ibsa yookiin dhangi'a.</ahelp>"
-#: 06030300.xhp
+#: 02120100.xhp
msgctxt ""
-"06030300.xhp\n"
-"par_id3151112\n"
+"02120100.xhp\n"
+"hd_id3145748\n"
"3\n"
"help.text"
-msgid "This function works per level. For instance, if one level of traces has already been activated to show the precedents (or dependents), then you would see the next dependency level by activating the <emph>Trace</emph> function again."
-msgstr "Fankishiniin kun akka sadarkaati hojjeta. Fakkeenyaaf,yoo hordoffiin sadarkaa tokkoon dursiitoota mul'isuuf dursee kaka'ee(ykn hirkattoota), kanati aansuudhaan fankishiniin <emph>Hordofii</emph> kakasuun sadarkaa hirkatina illaali."
-
-#: 12060000.xhp
-msgctxt ""
-"12060000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Multiple Operations"
-msgstr "Qooyyaboota Hedduu"
-
-#: 12060000.xhp
-msgctxt ""
-"12060000.xhp\n"
-"hd_id3153381\n"
-"1\n"
-"help.text"
-msgid "Multiple Operations"
-msgstr "Qooyyaboota Hedduu"
+msgid "Left Area"
+msgstr "Naannoo Bitaa"
-#: 12060000.xhp
+#: 02120100.xhp
msgctxt ""
-"12060000.xhp\n"
-"par_id3154140\n"
-"2\n"
+"02120100.xhp\n"
+"par_id3147434\n"
+"4\n"
"help.text"
-msgid "<variable id=\"mehrfachoperationen\"><ahelp hid=\".uno:TableOperationDialog\">Applies the same formula to different cells, but with different parameter values.</ahelp></variable>"
-msgstr "<variable id=\"mehrfachoperationen\"><ahelp hid=\".uno:TableOperationDialog\">Formulaa wal fakkaataa man'eewwan garagaraaif fayyadama, garuu ulaagaa gatiiwwan garagaraatin.</ahelp></variable>"
+msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/textviewWND_LEFT\">Enter the text to be displayed at the left side of the header or footer.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/textviewWND_LEFT\">Barruu mul'achuu qabu harka bitaa irraantoo yookiin jalaantootti galhi.</ahelp>"
-#: 12060000.xhp
+#: 02120100.xhp
msgctxt ""
-"12060000.xhp\n"
-"par_id3152598\n"
+"02120100.xhp\n"
+"hd_id3148648\n"
"5\n"
"help.text"
-msgid "The <emph>Row</emph> or <emph>Column</emph> box must contain a reference to the first cell of the selected range."
-msgstr "Sanduuqqni<emph>Tarree</emph> ykn <emph>Tarjaa</emph>wabii hammanga man'ee tokkoffaa filatamee qabaachuu qaba."
-
-#: 12060000.xhp
-msgctxt ""
-"12060000.xhp\n"
-"par_id3154011\n"
-"16\n"
-"help.text"
-msgid "If you export a spreadsheet containing multiple operations to Microsoft Excel, the location of the cells containing the formula must be fully defined relative to the data range."
-msgstr "Yoo wardii Qooyyaboota Hedduu Ekseelii Maykiroosooftiitti aleergite, bakki man'ee formulaa of kessaa qabu gutumaan gutuutti sadhaatawaa hamanga deetaatti hiikuu qabda."
-
-#: 12060000.xhp
-msgctxt ""
-"12060000.xhp\n"
-"hd_id3156441\n"
-"3\n"
-"help.text"
-msgid "Defaults"
-msgstr "Durtiiwwan"
+msgid "Center Area"
+msgstr "Naannoo gidduugaleessaa"
-#: 12060000.xhp
+#: 02120100.xhp
msgctxt ""
-"12060000.xhp\n"
-"hd_id3154492\n"
+"02120100.xhp\n"
+"par_id3163710\n"
"6\n"
"help.text"
-msgid "Formulas"
-msgstr "Foormulaawwan"
+msgid "<ahelp hid=\".\">Enter the text to be displayed at the center of the header or footer.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_HF_FLL\">Barruu mul'achuu qabu harka bitaa irraantoo yookiin jalaantootti galhi.</ahelp>"
-#: 12060000.xhp
+#: 02120100.xhp
msgctxt ""
-"12060000.xhp\n"
-"par_id3151073\n"
+"02120100.xhp\n"
+"hd_id3154942\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_FORMULARANGE\">Enter the cell references for the cells containing the formulas that you want to use in the multiple operation.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_FORMULARANGE\">Man'eewwan foormulaa qoyyaba baay'ee of keessaa qabaniif wabii man'ee galchi.</ahelp>"
+msgid "Right Area"
+msgstr "Naannoo Mirgaa"
-#: 12060000.xhp
+#: 02120100.xhp
msgctxt ""
-"12060000.xhp\n"
-"hd_id3154729\n"
+"02120100.xhp\n"
+"par_id3147126\n"
"8\n"
"help.text"
-msgid "Row"
-msgstr "Tarree"
-
-#: 12060000.xhp
-msgctxt ""
-"12060000.xhp\n"
-"par_id3148456\n"
-"9\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_ROWCELL\">Enter the input cell reference that you want to use as a variable for the rows in the data table.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_ROWCELL\">Gabatee deetaa keessa naqaa wabii man'ee akka jijjiramaa tarreewwanitti fayyadamuu barbaadde galchi.</ahelp>"
-
-#: 12060000.xhp
-msgctxt ""
-"12060000.xhp\n"
-"hd_id3150718\n"
-"14\n"
-"help.text"
-msgid "Column"
-msgstr "Tarjaa"
-
-#: 12060000.xhp
-msgctxt ""
-"12060000.xhp\n"
-"par_id3150327\n"
-"15\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_COLCELL\">Enter the input cell reference that you want to use as a variable for the columns in the data table.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_COLCELL\">Gabatee deetaa keessa naqaa wabii man'ee akka jijjiramaa tarjaawwaniitti fayyadamuu barbaadde galchi.</ahelp>"
-
-#: func_today.xhp
-msgctxt ""
-"func_today.xhp\n"
-"tit\n"
-"help.text"
-msgid "TODAY"
-msgstr "TODAY"
-
-#: func_today.xhp
-msgctxt ""
-"func_today.xhp\n"
-"bm_id3145659\n"
-"help.text"
-msgid "<bookmark_value>TODAY function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii TODAY</bookmark_value>"
+msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/textviewWND_RIGHT\">Enter the text to be displayed at the right side of the header or footer.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/textviewWND_RIGHT\">Barruu mul'achuu qabu mirga irraantoo yookiin jalaantooti galchi.</ahelp>"
-#: func_today.xhp
-msgctxt ""
-"func_today.xhp\n"
-"hd_id3145659\n"
-"29\n"
-"help.text"
-msgid "<variable id=\"today\"><link href=\"text/scalc/01/func_today.xhp\">TODAY</link></variable>"
-msgstr "<variable id=\"today\"><link href=\"text/scalc/01/func_today.xhp\">TODAY</link></variable>"
-
-#: func_today.xhp
-msgctxt ""
-"func_today.xhp\n"
-"par_id3153759\n"
-"30\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_HEUTE\">Returns the current computer system date.</ahelp> The value is updated when you reopen the document or modify the values of the document."
-msgstr "<ahelp hid=\"HID_FUNC_HEUTE\">Sirna konpiteraa guyyaa ammaa kenna.</ahelp> Yeroo galmee irra deebi'uun bannu ykn gatii galmee jijjiirru, gatiinsaa ni haaromfamaa."
-
-#: func_today.xhp
-msgctxt ""
-"func_today.xhp\n"
-"hd_id3154051\n"
-"31\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: func_today.xhp
+#: 02120100.xhp
msgctxt ""
-"func_today.xhp\n"
-"par_id3153154\n"
-"32\n"
+"02120100.xhp\n"
+"par_idN10811\n"
"help.text"
-msgid "TODAY()"
-msgstr "TODAY"
+msgid "Header/Footer"
+msgstr "Irraantoo/Jalaantoo"
-#: func_today.xhp
+#: 02120100.xhp
msgctxt ""
-"func_today.xhp\n"
-"par_id3154741\n"
-"33\n"
+"02120100.xhp\n"
+"par_idN10815\n"
"help.text"
-msgid "TODAY is a function without arguments."
-msgstr "TODAY'n fankishinii qajeelfamaan alaati."
+msgid "<ahelp hid=\".\">Select a predefined header or footer from the list.</ahelp>"
+msgstr "<ahelp hid=\".\">Irraantoo yookiin jalaantoo durmurtaawe tarree keessaa filadhu.</ahelp>"
-#: func_today.xhp
+#: 02120100.xhp
msgctxt ""
-"func_today.xhp\n"
-"hd_id3153627\n"
-"34\n"
+"02120100.xhp\n"
+"hd_id3154729\n"
+"9\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Text attributes"
+msgstr "Amaloota Barruu"
-#: func_today.xhp
+#: 02120100.xhp
msgctxt ""
-"func_today.xhp\n"
-"par_id3156106\n"
-"35\n"
+"02120100.xhp\n"
+"par_id3150717\n"
+"10\n"
"help.text"
-msgid "<item type=\"input\">TODAY()</item> returns the current computer system date."
-msgstr "<item type=\"input\">TODAY()</item> guyyaa sirna kompiteraa ammaa kenna."
+msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TEXT\">Opens a dialog to assign formats to new or selected text.</ahelp> The <emph>Text Attributes </emph>dialog contains the tab pages <link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>, <link href=\"text/shared/01/05020200.xhp\" name=\"Font Effects\">Font Effects</link> and <link href=\"text/shared/01/05020500.xhp\" name=\"Font Position\">Font Position</link>."
+msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TEXT\">Dhangiiwwan barruu haraa yookiin filatametti moggaasuuf qaaqa bana.</ahelp> Qaaqni <emph>Amaloota Barruu </emph>fuulota caancalaa <link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Bocquu</link>, <link href=\"text/shared/01/05020200.xhp\" name=\"Font Effects\">Galteewwan Bocquu</link> and <link href=\"text/shared/01/05020500.xhp\" name=\"Font Position\">Qubannoo Bocquu</link>of keessatti qaba."
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"tit\n"
+"02120100.xhp\n"
+"par_id3159266\n"
"help.text"
-msgid "Financial Functions Part One"
-msgstr "Galii faankishiniin qaama tokko"
+msgid "<image id=\"img_id3156386\" src=\"sc/res/text.png\" width=\"0.1874in\" height=\"0.1665in\"><alt id=\"alt_id3156386\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156386\" src=\"sc/res/text.png\" width=\"0.1874in\" height=\"0.1665in\"><alt id=\"alt_id3156386\">Sajoo</alt></image>"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3143284\n"
+"02120100.xhp\n"
+"par_id3155336\n"
+"25\n"
"help.text"
-msgid "<bookmark_value>financial functions</bookmark_value> <bookmark_value>functions; financial functions</bookmark_value> <bookmark_value>Function Wizard; financial</bookmark_value> <bookmark_value>amortizations, see also depreciations</bookmark_value>"
-msgstr "<bookmark_value>galii faankishinootaa</bookmark_value> <bookmark_value>faankishinootaa; galii faankishinootaa</bookmark_value> <bookmark_value>Faankishii masakaa; galii</bookmark_value> <bookmark_value>amortizeetinii, dipireeshii ilaali</bookmark_value>"
+msgid "Text Attributes"
+msgstr "Amaloota Barruu"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3143284\n"
-"1\n"
+"02120100.xhp\n"
+"hd_id3145792\n"
+"11\n"
"help.text"
-msgid "Financial Functions Part One"
-msgstr "Galii faankishiniin qaama tokko"
+msgid "File Name"
+msgstr "Maqaa Faayilii"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149095\n"
-"2\n"
+"02120100.xhp\n"
+"par_id3150206\n"
+"12\n"
"help.text"
-msgid "<variable id=\"finanztext\">This category contains the mathematical finance functions of <item type=\"productname\">%PRODUCTNAME</item> Calc. </variable>"
-msgstr "<variable id=\"finanztext\">Toorri kun galii faankishinii herreegaa<item type=\"productname\">%PRODUCTNAME</item> Calc. </variable>of keessaa qaba."
+msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_FILE\">Inserts a file name placeholder in the selected area.</ahelp> Click to insert the title. Long-click to select either title, file name or path/file name from the submenu. If a title has not be assigned (see <emph>File - Properties</emph>), the file name will be inserted instead."
+msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_FILE\">Iddooqa maqaa faayilii bakka filatametti galcha.</ahelp> Mata duree galchuuf hantuutee cuqaasi.Cita baafataa keesaa mata duree, maqaa faayilii yookiin maqaa xurree/faayilii filachuuf cuqaasa dheeraa taasisi.Yoo mata dureen hin moggaafamne ta'e (<emph>Faayilii - Amalootsa</emph> ilaali), bakka isaa maqaan faayilii ni seena."
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3153366\n"
+"02120100.xhp\n"
+"par_id3150369\n"
"help.text"
-msgid "<bookmark_value>AMORDEGRC function</bookmark_value> <bookmark_value>depreciations;degressive amortizations</bookmark_value>"
-msgstr "<bookmark_value>faankishinii AMORDEGRC</bookmark_value> <bookmark_value>dippirisheeshinii;appoortayizeeshinii degreesivii</bookmark_value>"
+msgid "<image id=\"img_id3150518\" src=\"res/folderop.png\" width=\"0.1665in\" height=\"0.1252in\"><alt id=\"alt_id3150518\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150518\" src=\"res/folderop.png\" width=\"0.1665in\" height=\"0.1252in\"><alt id=\"alt_id3150518\">Sajoo</alt></image>"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3153366\n"
-"359\n"
+"02120100.xhp\n"
+"par_id3154487\n"
+"26\n"
"help.text"
-msgid "AMORDEGRC"
-msgstr "AMORDEGRC"
+msgid "File Name"
+msgstr "Maqaa Faayilii"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3147434\n"
-"360\n"
+"02120100.xhp\n"
+"hd_id3155812\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_AMORDEGRC\">Calculates the amount of depreciation for a settlement period as degressive amortization.</ahelp> Unlike AMORLINC, a depreciation coefficient that is independent of the depreciable life is used here."
-msgstr "<ahelp hid=\"HID_AAI_FUNC_AMORDEGRC\">Yeroodhaaf depireeshinii akka appoortayizeeshinii degreesiviitti shallagi.</ahelp> AMORLINC malee, coffishantiin dipreeshinii asitti fayyada."
+msgid "Sheet Name"
+msgstr "Maqaa Wardii"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3155855\n"
-"361\n"
+"02120100.xhp\n"
+"par_id3148842\n"
+"14\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TABLE\">Inserts a placeholder in the selected header/footer area, which is replaced by the sheet name in the header/footer of the actual document.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TABLE\">Iddooqa maqaa wardii irraantoo/jalaantoo galmee sirrii keessa jiruun bakka bu'e irraantoo/jalaantoo filatame keessa galcha.</ahelp>"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3147427\n"
-"362\n"
+"02120100.xhp\n"
+"par_id3146870\n"
"help.text"
-msgid "AMORDEGRC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
-msgstr "AMORDEGRC(gatii; guyyaa gurgurame;yeroo duraa; kan balaarraa hafe; yeroo;maakkii;Bu'uura)"
+msgid "<image id=\"img_id3148870\" src=\"sc/res/table.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148870\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148870\" src=\"sc/res/table.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148870\">Sajoo</alt></image>"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3147125\n"
-"363\n"
+"02120100.xhp\n"
+"par_id3147071\n"
+"27\n"
"help.text"
-msgid "<emph>Cost</emph> is the acquisition costs."
-msgstr "<emph>Gatiin</emph> argamsa gatiiti."
+msgid "Sheet Name"
+msgstr "Maqaa Wardii"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3151074\n"
-"364\n"
+"02120100.xhp\n"
+"hd_id3144768\n"
+"15\n"
"help.text"
-msgid "<emph>DatePurchased</emph> is the date of acquisition."
-msgstr "<emph>Guyyaan gurgurtaa </emph> guyyaa barbaadamuudha."
+msgid "Page"
+msgstr "Fuula"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3144765\n"
-"365\n"
+"02120100.xhp\n"
+"par_id3154960\n"
+"16\n"
"help.text"
-msgid "<emph>FirstPeriod </emph>is the end date of the first settlement period."
-msgstr "<emph>Yeroon duraa </emph>dhuma guyyaa yeroo duraatti."
+msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_PAGE\">Inserts a placeholder in the selected header/footer area, which is replaced by page numbering. This allows continuous page numbering in a document.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_PAGE\">Iddooqa lakkaawwii fuulaan bakka bu'e naannoo irraantoo/jalaantoo filatame keessa galcha.</ahelp>"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3156286\n"
-"366\n"
+"02120100.xhp\n"
+"par_id3151304\n"
"help.text"
-msgid "<emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
-msgstr "<emph>Kan balaarraa hafe</emph> gatii kaapitaalaa isa balaarraa hafee ta'a."
+msgid "<image id=\"img_id3155386\" src=\"sc/res/page.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155386\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155386\" src=\"sc/res/page.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155386\">sajoo</alt></image>"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3153415\n"
-"367\n"
+"02120100.xhp\n"
+"par_id3150048\n"
+"28\n"
"help.text"
-msgid "<emph>Period</emph> is the settlement period to be considered."
-msgstr "<emph>Yeroon</emph> kuusama yeroo ti."
+msgid "Page"
+msgstr "Fuula"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3155064\n"
-"368\n"
+"02120100.xhp\n"
+"hd_id3146962\n"
+"17\n"
"help.text"
-msgid "<emph>Rate</emph> is the rate of depreciation."
-msgstr "<emph>Maakkiin</emph> dipireeshinii maakiti."
+msgid "Pages"
+msgstr "Fuulota"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3153765\n"
+"02120100.xhp\n"
+"par_id3153812\n"
+"18\n"
"help.text"
-msgid "<bookmark_value>AMORLINC function</bookmark_value> <bookmark_value>depreciations;linear amortizations</bookmark_value>"
-msgstr "<bookmark_value>Faankishiniin AMORLINC</bookmark_value> <bookmark_value>diprisheeshiins;appoortayizeeshinii sirrii </bookmark_value>"
+msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_PAGES\">Inserts a placeholder in the selected header/footer area, which is replaced by the total number of pages in the document.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_PAGES\">Iddooqa lakkoofsa fuulotaa galmee keessa jiran hundaan bakka bu'e naannoo irraantoo/jalaantoo filatame keessa galcha.</ahelp>"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3153765\n"
-"369\n"
+"02120100.xhp\n"
+"par_id3149315\n"
"help.text"
-msgid "AMORLINC"
-msgstr "AMORLINC"
+msgid "<image id=\"img_id3155757\" src=\"sc/res/pages.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155757\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155757\" src=\"sc/res/pages.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155757\">Sajoo</alt></image>"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3159264\n"
-"370\n"
+"02120100.xhp\n"
+"par_id3147499\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_AMORLINC\">Calculates the amount of depreciation for a settlement period as linear amortization. If the capital asset is purchased during the settlement period, the proportional amount of depreciation is considered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_AMORLINC\">Hamma dipireeshinii kuusama yerootiif akka ammoortizeeshiniitti shallaga.Yoo caapitaalli yeroo kuufamaatti bitame,hangi prooporshinii dipirisheeshinii ilaalcha keessa gala.</ahelp>"
+msgid "Pages"
+msgstr "Fuulota"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3150044\n"
-"371\n"
+"02120100.xhp\n"
+"hd_id3149050\n"
+"19\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Date"
+msgstr "Guyyaa"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3147363\n"
-"372\n"
+"02120100.xhp\n"
+"par_id3153960\n"
+"20\n"
"help.text"
-msgid "AMORLINC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
-msgstr "AMORDEGRC(gatii; guyyaa gurgurame;yeroo duraa; kan balaarraa hafe; yeroo;maakkii;Bu'uura)"
+msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_DATE\">Inserts a placeholder in the selected header/footer area, which is replaced by the current date which will be repeated in the header/footer on each page of the document.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_DATE\">Iddooqa guyyaa ammee irraantoo/jalaantoo tokko tokkoo fuula galmee irra jiru keessatti irra deebi'amu,naannoo irraantoo/jalaantoo filatame keessa galcha.</ahelp>"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3146920\n"
-"373\n"
+"02120100.xhp\n"
+"par_id3147299\n"
"help.text"
-msgid "<emph>Cost</emph> means the acquisition costs."
-msgstr "<emph>Gatiin</emph> argamsa gatiiti."
+msgid "<image id=\"img_id3150394\" src=\"sc/res/date.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150394\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150394\" src=\"sc/res/date.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150394\">Sajoo</alt></image>"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3163807\n"
-"374\n"
+"02120100.xhp\n"
+"par_id3150540\n"
+"30\n"
"help.text"
-msgid "<emph>DatePurchased</emph> is the date of acquisition."
-msgstr "<emph>Guyyaan gurgurtaa </emph> guyyaa barbaadamuudha."
+msgid "Date"
+msgstr "Guyyaa"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3148488\n"
-"375\n"
+"02120100.xhp\n"
+"hd_id3147610\n"
+"21\n"
"help.text"
-msgid "<emph>FirstPeriod </emph>is the end date of the first settlement period."
-msgstr "<emph>Yeroon duraa </emph>dhuma guyyaa yeroo duraatti."
+msgid "Time"
+msgstr "Yeroo"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149530\n"
-"376\n"
+"02120100.xhp\n"
+"par_id3145638\n"
+"22\n"
"help.text"
-msgid "<emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
-msgstr "<emph>Kan balaarraa hafe</emph> gatii kaapitaalaa isa balaarraa hafee ta'a."
+msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TIME\">Inserts a placeholder in the selected header/footer area, which is replaced by the current time in the header/footer on each page of the document.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TIME\">Iddooqa yeroo ammee irraantoo/jalaantoo tokko tokkoo fuula galmee irra jiru keessatti bakka bu'e,naannoo irraantoo/jalaantoo filkatame keessa galcha.</ahelp>"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3148633\n"
-"377\n"
+"02120100.xhp\n"
+"par_id3153122\n"
"help.text"
-msgid "<emph>Period</emph> is the settlement period to be considered."
-msgstr "<emph>Yeroon</emph> kuusama yeroo ti."
+msgid "<image id=\"img_id3146884\" src=\"sc/res/time.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146884\">Icon</alt></image>"
+msgstr "<image id=\"img_id3146884\" src=\"sc/res/time.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146884\">Sajoo</alt></image>"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150982\n"
-"378\n"
+"02120100.xhp\n"
+"par_id3157904\n"
+"31\n"
"help.text"
-msgid "<emph>Rate</emph> is the rate of depreciation."
-msgstr "<emph>Maakkiin</emph> dipireeshinii maakiti."
+msgid "Time"
+msgstr "Yeroo"
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3145257\n"
+"02140000.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>ACCRINT function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii ACCRINT </bookmark_value>"
+msgid "Fill"
+msgstr "Guutaa"
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3145257\n"
-"335\n"
+"02140000.xhp\n"
+"bm_id8473769\n"
"help.text"
-msgid "ACCRINT"
-msgstr "ACCRINT"
+msgid "<bookmark_value>filling;selection lists</bookmark_value> <bookmark_value>selection lists;filling cells</bookmark_value>"
+msgstr "<bookmark_value>guutuu;tarreewwan filannoo</bookmark_value> <bookmark_value>tarreewwan filannoo;man'eewwan guutuu</bookmark_value>"
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3151276\n"
+"02140000.xhp\n"
+"hd_id3153876\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>accrued interests;periodic payments</bookmark_value>"
-msgstr "<bookmark_value>Dhala akkuurdii;kaffaltii yeroo yeroon kanfalamu</bookmark_value>"
+msgid "<link href=\"text/scalc/01/02140000.xhp\" name=\"Fill\">Fill</link>"
+msgstr "<link href=\"text/scalc/01/02140000.xhp\" name=\"Fill\">Guuti</link>"
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3151276\n"
-"336\n"
+"02140000.xhp\n"
+"par_id3156285\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ACCRINT\">Calculates the accrued interest of a security in the case of periodic payments.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_ACCRINT\">Kanfaltii yeroo yeroon ta'u keessatti dhala kennaa ittisaa shallaga.</ahelp>"
+msgid "<ahelp hid=\".\">Automatically fills cells with content.</ahelp>"
+msgstr "<ahelp hid=\".\">Man'ee qabeentaadhaan ofumaa guuta</ahelp>"
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3152581\n"
-"337\n"
+"02140000.xhp\n"
+"par_id3147343\n"
+"9\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "The $[officename] Calc context menus have <link href=\"text/scalc/01/02140000.xhp\" name=\"other options\">additional options</link> for filling the cells."
+msgstr "Baafatni $[officename] halqara Calc <link href=\"text/scalc/01/02140000.xhp\" name=\"other options\">man'ee guutuuf</link> filannoo dabalataa qaba."
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3159092\n"
-"338\n"
+"02140000.xhp\n"
+"hd_id3149207\n"
+"7\n"
"help.text"
-msgid "ACCRINT(Issue; FirstInterest; Settlement; Rate; Par; Frequency; Basis)"
-msgstr "ACCRINT(Kennaa; Dhala jalqabaa; Kuufama; Makkii; paarii; firkuweensiin ;Bu'uura)"
+msgid "<link href=\"text/scalc/01/02140500.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr "<link href=\"text/scalc/01/02140500.xhp\" name=\"Sheet\">Wardii</link>"
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150519\n"
-"339\n"
+"02140000.xhp\n"
+"hd_id3155111\n"
+"8\n"
"help.text"
-msgid "<emph>Issue</emph> is the issue date of the security."
-msgstr "<emph>Kennaan </emph> guyyaa kennaa ittisaati."
+msgid "<link href=\"text/scalc/01/02140600.xhp\" name=\"Rows\">Series</link>"
+msgstr "<link href=\"text/scalc/01/02140600.xhp\" name=\"Rows\">Tarreewwan</link>"
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3155376\n"
-"340\n"
+"02140000.xhp\n"
+"par_id3152994\n"
+"3\n"
"help.text"
-msgid "<emph>FirstInterest</emph> is the first interest date of the security."
-msgstr "<emph>Dhalli jalqabaa</emph> guyyaa dhala jalqabaa ittisaati."
+msgid "<emph>Filling cells using context menus:</emph>"
+msgstr "<emph>Baafatoota halqaraa fayyadamuun man'ee guutuu:</emph>"
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3166431\n"
-"341\n"
+"02140000.xhp\n"
+"par_id3145384\n"
+"4\n"
"help.text"
-msgid "<emph>Settlement</emph> is the date at which the interest accrued up until then is to be calculated."
-msgstr "<emph>Kuufamni</emph> guyyaa dhalli kennaa haga yeroo sanaatti dabalu shallaga."
+msgid "Call the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> when positioned in a cell and choose <emph>Selection List</emph>."
+msgstr "Baafata halqaraa <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">man'ee keessa</link> yeroo qubatu waamiiti <emph> Tarree Filannoo</emph>filadhu."
-#: 04060103.xhp
-#, fuzzy
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3154486\n"
-"342\n"
+"02140000.xhp\n"
+"par_id3156450\n"
+"5\n"
"help.text"
-msgid "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)"
-msgstr "<emph>Saffisni</emph> dhala saffisa xiqqaa waggaati (boonoo saffisa dhalaa)"
+msgid "<ahelp hid=\".uno:DataSelect\">A list box containing all text found in the current column is displayed.</ahelp> The text is sorted alphabetically and multiple entries are listed only once."
+msgstr "<ahelp hid=\".uno:DataSelect\">Sanduuqni tarree barruu tarjaa ammee keessatti argaman hunda qabatu ni mul'ata.</ahelp> Barruun ABdhaan tartiiba qabata,galiinsi hedduun al takka qofa tartiibawu."
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3156445\n"
-"343\n"
+"02140000.xhp\n"
+"par_id3148699\n"
+"6\n"
"help.text"
-msgid "<emph>Par</emph> is the par value of the security."
-msgstr "<emph>Paarii</emph> gatii baarii ittisaati."
+msgid "Click one of the listed entries to copy it to the cell."
+msgstr "Man'ee irratti isa garagalchuuf galiinsa tarraa'e keessaa tokkoo isaa cuqaasi."
-#: 04060103.xhp
+#: 02140100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149406\n"
-"344\n"
+"02140100.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
-msgstr "<emph>Ammamtaa</emph>n lakkoofsa kanfaltiiwwan dhalaa waggaati (1, 2 ykn 4)."
+msgid "Down"
+msgstr "Gadee"
-#: 04060103.xhp
+#: 02140100.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3148699\n"
-"345\n"
+"02140100.xhp\n"
+"hd_id3150792\n"
+"1\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<link href=\"text/scalc/01/02140100.xhp\" name=\"Down\">Down</link>"
+msgstr "<link href=\"text/scalc/01/02140100.xhp\" name=\"Down\">Gadee</link>"
-#: 04060103.xhp
+#: 02140100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3148599\n"
-"346\n"
+"02140100.xhp\n"
+"par_id3153969\n"
+"2\n"
"help.text"
-msgid "A security is issued on 2001-02-28. First interest is set for 2001-08-31. The settlement date is 2001-05-01. The Rate is 0.1 or 10% and Par is 1000 currency units. Interest is paid half-yearly (frequency is 2). The basis is the US method (0). How much interest has accrued?"
-msgstr "Nageenyinnaa 2001-02-28 irratti kenname. Dhalli jalqabaa 2001-08-31 tiif qindaa'a. Gyyaan buufata 2001-05-01 dha. Saffisni 0.1 ykn 10% fi Pariin safartoota sirrii 1000 dha. Dhalli walakkaa waggaatti kanfalama (ammamtaan 2). Bu'uurri mala US ti(0). Dhala hagamtu kennama?"
+msgid "<ahelp hid=\".uno:FillDown\" visibility=\"visible\">Fills a selected range of at least two rows with the contents of the top cell of the range.</ahelp>"
+msgstr "<ahelp hid=\".uno:FillDown\" visibility=\"visible\">Yoo xinnaate hangii tarreewwan filataman lamaa qabeentota man'ee hangiitiin guuta.</ahelp>"
-#: 04060103.xhp
+#: 02140100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3148840\n"
-"347\n"
+"02140100.xhp\n"
+"par_id3145787\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">=ACCRINT(\"2001-02-28\";\"2001-08-31\";\"2001-05-01\";0.1;1000;2;0)</item> returns 16.94444."
-msgstr "<item type=\"input\">=ACCRINT(\"2001-02-28\";\"2001-08-31\";\"2001-05-01\";0.1;1000;2;0)</item> 16.94444 deebisa."
+msgid "If a selected range has only one column, the contents of the top cell are copied to all others. If several columns are selected, the contents of the corresponding top cell will be copied down."
+msgstr "Yoo hangiin filatame tarjaa tokko qofa qaba ta'e,qabeentotni man'ee gubbaa, man'eewwan biroo hundatti garagalu.Yoo tarjaawwan hedduun filataman qabeentotni man'ee gubbaa ni garagalu."
-#: 04060103.xhp
+#: 02140200.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3151240\n"
+"02140200.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>ACCRINTM function</bookmark_value> <bookmark_value>accrued interests;one-off payments</bookmark_value>"
-msgstr "<bookmark_value>Faankishiniin ACCRINTM </bookmark_value> <bookmark_value>dhala kennaa;kanfaltii tokko</bookmark_value>"
+msgid "Right"
+msgstr "Mirga"
-#: 04060103.xhp
+#: 02140200.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3151240\n"
-"348\n"
+"02140200.xhp\n"
+"hd_id3153896\n"
+"1\n"
"help.text"
-msgid "ACCRINTM"
-msgstr "ACCRINT"
+msgid "<link href=\"text/scalc/01/02140200.xhp\" name=\"Right\">Right</link>"
+msgstr "<link href=\"text/scalc/01/02140200.xhp\" name=\"Right\">Mirga</link>"
-#: 04060103.xhp
+#: 02140200.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3157981\n"
-"349\n"
+"02140200.xhp\n"
+"par_id3153361\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ACCRINTM\">Calculates the accrued interest of a security in the case of one-off payment at the settlement date.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_ACCRINTM\">Kanfaltii yeroo yeroon ta'u keessatti dhala kennaa ittisaa shallaga.</ahelp>"
+msgid "<ahelp hid=\".uno:FillRight\" visibility=\"visible\">Fills a selected range of at least two columns with the contents of the left most cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:FillRight\" visibility=\"visible\">Yoo xinnaate hangii tarreewwan filataman lamaa qabeentota man'ee dhuma harka bitaa irra jiraniin guuta.</ahelp>"
-#: 04060103.xhp
+#: 02140200.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3159097\n"
-"350\n"
+"02140200.xhp\n"
+"par_id3154684\n"
+"3\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "If a range of only one row is selected, the contents of the far left cell are copied to all the other selected cells. If you have selected several rows, each of the far left cells is copied into those cells to the right."
+msgstr "Yoo hangiin tarree tokkoo qofti filatame,qabeentotni Man'eewwan bitaa fagoo gara man'ee biroo filataman hundatti garagalu.Yoo tarree hedduu filatteetta ta'e,tokko tokkoon man'eewwan bitaa fagoo gara man'eewwan mirga jiraniitti garagalu."
-#: 04060103.xhp
+#: 02140300.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3147074\n"
-"351\n"
+"02140300.xhp\n"
+"tit\n"
"help.text"
-msgid "ACCRINTM(Issue; Settlement; Rate; Par; Basis)"
-msgstr "ACCRINTM(Kennaa;Kuufama;Makkii;Paarii;Bu'uura)"
+msgid "Up"
+msgstr "Olee"
-#: 04060103.xhp
+#: 02140300.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3144773\n"
-"352\n"
+"02140300.xhp\n"
+"hd_id3147264\n"
+"1\n"
"help.text"
-msgid "<emph>Issue</emph> is the issue date of the security."
-msgstr "<emph>Kennaan </emph> guyyaa kennaa ittisaati."
+msgid "<link href=\"text/scalc/01/02140300.xhp\" name=\"Up\">Up</link>"
+msgstr "<link href=\"text/scalc/01/02140300.xhp\" name=\"Up\">ol</link>"
-#: 04060103.xhp
+#: 02140300.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3154956\n"
-"353\n"
+"02140300.xhp\n"
+"par_id3150793\n"
+"2\n"
"help.text"
-msgid "<emph>Settlement</emph> is the date at which the interest accrued up until then is to be calculated."
-msgstr "<emph>Kuufamni</emph> guyyaa dhalli kennaa haga yeroo sanaatti dabalu shallaga."
+msgid "<ahelp hid=\".uno:FillUp\" visibility=\"visible\">Fills a selected range of at least two rows with the contents of the bottom most cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:FillUp\" visibility=\"visible\">Qabeentoota dhuma man'eera jiraniif yoo xiqqaate hammanga filatame guuta.</ahelp>"
-#: 04060103.xhp
+#: 02140300.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3153972\n"
-"354\n"
+"02140300.xhp\n"
+"par_id3150447\n"
+"3\n"
"help.text"
-msgid "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)."
-msgstr "<emph>Makkiin </emph> makkii noominaala waggaa dhalaati."
+msgid "If a selected range has only one column, the content of the bottom most cell is copied into the selected cells. If several columns are selected, the contents of the bottom most cells are copied into those selected above."
+msgstr "Yoo hangiin filamee tarjaa tokko qofa qabaate,qabiyyeen man'ee xiyyoo dhumaa gara gadii irraa jiru man'eewwan filamanitti garagalfama.Yoo tarjaawwan baay'een filamee,qabiyyeewwan man'eewwan xiyyoo dhumaa gara gadii irra jiru man'eewwan gubbaatti filamanittii garagalfama."
-#: 04060103.xhp
+#: 02140400.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3159204\n"
-"355\n"
+"02140400.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Par</emph> is the par value of the security."
-msgstr "<emph>Paarii</emph> gatii baarii ittisaati."
+msgid "Left"
+msgstr "Bitaa"
-#: 04060103.xhp
+#: 02140400.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3155384\n"
-"356\n"
+"02140400.xhp\n"
+"hd_id3153896\n"
+"1\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<link href=\"text/scalc/01/02140400.xhp\" name=\"Left\">Left</link>"
+msgstr "<link href=\"text/scalc/01/02140400.xhp\" name=\"Left\">Bitaa</link>"
-#: 04060103.xhp
+#: 02140400.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3154541\n"
-"357\n"
+"02140400.xhp\n"
+"par_id3150793\n"
+"2\n"
"help.text"
-msgid "A security is issued on 2001-04-01. The maturity date is set for 2001-06-15. The Rate is 0.1 or 10% and Par is 1000 currency units. The basis of the daily/annual calculation is the daily balance (3). How much interest has accrued?"
-msgstr "Ittisni 2001-04-01 irratti kenname. Guyyaan bilchinaa 2001-06-15 tiif qindaa'a. Saffisni 0.1 ykn 10% fi Paariin safartoota sirrii 1000 dha. Shallaggiin bu'uura guyyaa/waggaa baalaansii guyyaa (3) ta'a. Dhala hagamiitu argame?"
+msgid "<ahelp hid=\".uno:FillLeft\" visibility=\"visible\">Fills a selected range of at least two columns with the contents of the far right cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:FillLeft\" visibility=\"visible\">Yoo xiqaatee tarjaawwan lama qabeentoota man'ee mirgaa fagatanii argaman waliin hangii filamaneef guuta .</ahelp>"
-#: 04060103.xhp
+#: 02140400.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149128\n"
-"358\n"
+"02140400.xhp\n"
+"par_id3156280\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">=ACCRINTM(\"2001-04-01\";\"2001-06-15\";0.1;1000;3)</item> returns 20.54795."
-msgstr "<item type=\"input\">=ACCRINTM(\"2001-04-01\";\"2001-06-15\";0.1;1000;3)</item> 20.54795 deebisa."
+msgid "If a selected range has only one row, the content of the far right cell is copied into all other cells of the range. If several rows are selected, the far right cells are copied into the cells to the left."
+msgstr "Yoo hangiin filamee tarree tokko qofa qabaate,qabiyyeen man'ee mirgaa fageenyarra jiru gara man'eewwan gara biraa hangiitti garagalfama.Yoo tarreewan baay'ee filame,man'ee mirgaa fageenyarra gara man'eewwan bitaarra jiranitti garagalfama."
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3145753\n"
+"02140500.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>RECEIVED function</bookmark_value> <bookmark_value>amount received for fixed-interest securities</bookmark_value>"
-msgstr "<bookmark_value>faankishinii RECEIVED</bookmark_value> <bookmark_value>hanga ittisa dhala dhaabataa fudhatameeti</bookmark_value>"
+msgid "Fill Sheet"
+msgstr "Wardii Guuti"
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3145753\n"
-"390\n"
+"02140500.xhp\n"
+"hd_id3153897\n"
+"1\n"
"help.text"
-msgid "RECEIVED"
-msgstr "Fudhatame"
+msgid "Fill Sheet"
+msgstr "Wardii Guuti"
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150051\n"
-"391\n"
+"02140500.xhp\n"
+"par_id3150791\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_RECEIVED\">Calculates the amount received that is paid for a fixed-interest security at a given point in time.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_RECEIVED\">Hanga fudhatame kan dhala dhaabataa tiif kanfalame pooyintii kenname irratti shallaga.</ahelp>"
+msgid "<variable id=\"tabellenfuellentext\"><ahelp hid=\".uno:FillTable\" visibility=\"visible\">Specifies the options for transferring sheets or ranges of a certain sheet.</ahelp></variable>"
+msgstr "<variable id=\"tabellenfuellentext\"><ahelp hid=\".uno:FillTable\" visibility=\"visible\">Wardii ta'eef dirqalaalee hangii ykn wardii jijjiiruuf oolu ifteessa.</ahelp></variable>"
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3149385\n"
-"392\n"
+"02140500.xhp\n"
+"par_id3150767\n"
+"3\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "In contrast to copying an area to the clipboard, you can filter certain information and calculate values. This command is only visible if you have selected two sheets in the document. To select multiple sheets, click each sheet tab while pressing <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> or Shift."
+msgstr "Nannoowwan gabatee muraatti garagalchu irra,odeeffannoo murta'a ta'ee gingilchuun fi gatiiwwan isaa shallaguu dandeessa.Ajajni kunis kan mul'achuu danda'u yoo wardiiwwan lama galmee kee keessatti filatte dha.Wardiiwwan baay'ee filuuf, yeroo <switchinline select=\"sys\"> <caseinline select=\"MAC\">Ajaja</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> ykn shift dhiibdu tokko tokkoo cancaala wardii cuqaasi."
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3145362\n"
-"393\n"
+"02140500.xhp\n"
+"hd_id3155131\n"
+"4\n"
"help.text"
-msgid "RECEIVED(\"Settlement\"; \"Maturity\"; Investment; Discount; Basis)"
-msgstr "RECEIVED(\"Kuufama\"; \"Bilchina\";Inveestimentii; Gatii hir'ate;Bu'uura)"
+msgid "Filling a Sheet"
+msgstr ""
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3154654\n"
-"394\n"
+"02140500.xhp\n"
+"par_id3146119\n"
+"5\n"
"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
+msgid "Select the entire sheet by clicking the empty gray box in the upper left of the sheet. You can also select an area of the sheet to be copied."
+msgstr "Sanduuqa duwwaa fajajaa kan gubbaa harka bitaa warditti argamu cuqaasuun guutummaa wardii fili.Akkasumas naannoo wardii garagalfamuus filachuu dandeessa."
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3153011\n"
-"395\n"
+"02140500.xhp\n"
+"par_id3153726\n"
+"6\n"
"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
+msgid "Press <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and click the tab of the sheet where you want to insert the contents."
+msgstr "<switchinline select=\"sys\"> <caseinline select=\"MAC\">Ajaja</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> fi iddoo qabeentoota itti saaguu barbadduu cancaala wardii cuqaasi."
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3155525\n"
-"396\n"
+"02140500.xhp\n"
+"par_id3147436\n"
+"7\n"
"help.text"
-msgid "<emph>Investment</emph> is the purchase sum."
-msgstr "<emph>Inveestimeentiin </emph> ida'a bittaati."
+msgid "Select the command <emph>Edit - Fill - Sheet</emph>. In the dialog which appears, the check box <emph>Numbers</emph> must be selected (or <emph>Paste All</emph>) if you want to combine operations with the values. You can also choose the desired operation here."
+msgstr "Ajaja<emph>Gulaali - Guuti - Wardii</emph> fili.Yoo dalagoota gatiiwwan waliin walitti makuu barbaaddee, qaaqa mul'atuu keessatti,sanduuqni mirkaneessaa<emph>Lakkoofsota</emph> (ykn <emph>Hundaa Maxxansi</emph>) dirqiin filama.Akkasumas dalaga barbadamee asitti filachuu dandeessa."
-#: 04060103.xhp
-#, fuzzy
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3155760\n"
-"397\n"
+"02140500.xhp\n"
+"par_id3154942\n"
+"8\n"
"help.text"
-msgid "<emph>Discount</emph> is the percentage discount on acquisition of the security."
-msgstr "<emph>Hir'ina Gatii</emph> dhibbentaa hir'ina gatii kan ittisaati."
+msgid "Click <emph>OK</emph>."
+msgstr "<emph>Eyyee</emph> cuqaasi."
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3154710\n"
-"398\n"
+"02140500.xhp\n"
+"par_id3156283\n"
+"9\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "This dialog is similar to the <link href=\"text/shared/01/02070000.xhp\" name=\"Paste Contents\">Paste Contents</link> dialog, where you can find additional tips."
+msgstr "Qaaqni kun qaaqa<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Contents\">Qaaqa Maxxansi</link> waliin wal fakkaatu, qajeelcha dabalata bakka itti argachuu dandeessuudha."
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3154735\n"
-"399\n"
+"02140600.xhp\n"
+"tit\n"
"help.text"
-msgid "Settlement date: February 15 1999, maturity date: May 15 1999, investment sum: 1000 currency units, discount: 5.75 per cent, basis: Daily balance/360 = 2."
-msgstr "Guyyaa kuufamaa:Amajjii 15 1999, guyyaa bilchinaa:Caamsaa 15 1999,ada'ama inveestimentii: 1000 yuunitii maallaqaa, hir'ina gatii: 5.75 per saantima, bu'uura: Baalaansii guyyaa guyyaan/360 = 2."
+msgid "Fill Series"
+msgstr "Walfaannee Guuti"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3146108\n"
-"400\n"
+"02140600.xhp\n"
+"hd_id3148664\n"
+"1\n"
"help.text"
-msgid "The amount received on the maturity date is calculated as follows:"
-msgstr "Guyyaa bilchinaa irratti hanga fudhatame akka armaan gadiitti shallagama:"
+msgid "Fill Series"
+msgstr "Walfaannee Guuti"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3147246\n"
-"401\n"
+"02140600.xhp\n"
+"par_id3148797\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=RECEIVED(\"1999-02-15\";\"1999-05-15\";1000;0.0575;2)</item> returns 1014.420266."
-msgstr "<item type=\"input\">=RECEIVED(\"1999-02-15\";\"1999-05-15\";1000;0.0575;2)</item> 1014.420266 deebisa."
+msgid "<variable id=\"reihenfuellentext\"><ahelp hid=\".uno:FillSeries\">Automatically generate series with the options in this dialog. Determine direction, increment, time unit and series type.</ahelp></variable>"
+msgstr "<variable id=\"reihenfuellentext\"><ahelp hid=\".uno:FillSeries\">Qaaqa kan keessatti walfaannee dirqalaalee waliin ofumaan uuma. Kallatii,dabalata,safara yeroo fi akaakuu walfaannee murteessa .</ahelp></variable>"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3147556\n"
+"02140600.xhp\n"
+"par_id3146976\n"
+"41\n"
"help.text"
-msgid "<bookmark_value>PV function</bookmark_value> <bookmark_value>present values</bookmark_value> <bookmark_value>calculating; present values</bookmark_value>"
-msgstr "<bookmark_value>Faankishiniin PV</bookmark_value> <bookmark_value>gatii ammee</bookmark_value> <bookmark_value>shallaguu; gatii ammee</bookmark_value>"
+msgid "Before filling a series, first select the cell range."
+msgstr "Osoo walfaannee hin guutiin,jalqaba hangii man'ee fili."
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3147556\n"
+"02140600.xhp\n"
+"par_id3145748\n"
"3\n"
"help.text"
-msgid "PV"
-msgstr "PV"
+msgid "To automatically continue a series using the assumed completion rules, choose the <emph>AutoFill</emph> option after opening the <emph>Fill Series</emph> dialog."
+msgstr "Seeraa ittiin xumuraa ka'amee fayyadamun ofumaan walfaannee itti fufuuf,erga qaaqa <emph>Walfaannee Guuti</emph> bantee booda dirqaala<emph>Ofiinguutaa</emph> fili."
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3153301\n"
+"02140600.xhp\n"
+"hd_id3147435\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BW\">Returns the present value of an investment resulting from a series of regular payments.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_BW\">Gatii ammee inveestimeentii kan kanfaltii yeroo hundaa irraa argame deebisa.</ahelp>"
+msgid "Direction"
+msgstr "Kallattii"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3146099\n"
+"02140600.xhp\n"
+"par_id3154729\n"
"5\n"
"help.text"
-msgid "Use this function to calculate the amount of money needed to be invested at a fixed rate today, to receive a specific amount, an annuity, over a specified number of periods. You can also determine how much money is to remain after the elapse of the period. Specify as well if the amount is to be paid out at the beginning or at the end of each period."
-msgstr "Faankishinii kana hamma qarshii makkii dhaabataa har'a inveestiidhaaf barbaashisu shallaguuf fayyadamaa,hanga murtaa'e fudhachuuf,lakkoofsa yeroo murtaa'e irratti.Yeroo muraasaan booda qarshii hanga hafe murteessuu ni dandeessu.Yoo hangi kanfalame jalqaba irratti ykn dhuma irratti adda baasa."
+msgid "Determines the direction of series creation."
+msgstr "kallattii walfaannee uumame murteessa."
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3153334\n"
+"02140600.xhp\n"
+"hd_id3145253\n"
"6\n"
"help.text"
-msgid "Enter these values either as numbers, expressions or references. If, for example, interest is paid annually at 8%, but you want to use month as your period, enter 8%/12 under <emph>Rate</emph> and <item type=\"productname\">%PRODUCTNAME</item> Calc with automatically calculate the correct factor."
-msgstr "Gatii kana akka lakkoofsotaatti,ibsaatti ykn akka wabiitti galchaa.Yoo, fakkeenyaaf,dhalli waggaatti 8% kanfalame,garuu yoo ji'a akka yeroo keessaniitti fayyadamuu barbaaddan,8%/12 makkii jala <emph>galchuu</emph>fi<item type=\"productname\">%PRODUCTNAME</item>Calc batalumatti faaktarii sirrii shallaga."
+msgid "Down"
+msgstr "Gadee"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3147407\n"
+"02140600.xhp\n"
+"par_id3155418\n"
"7\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_BOTTOM\">Creates a downward series in the selected cell range for the column using the defined increment to the end value.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_BOTTOM\">Dabala i bsame fayyadamuudhaan hammanga man'ee targaa filatameef walfaannee gargadii uuma.</ahelp>"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150395\n"
+"02140600.xhp\n"
+"hd_id3155738\n"
"8\n"
"help.text"
-msgid "PV(Rate; NPer; Pmt; FV; Type)"
-msgstr "PV(Makkii; NPer; Pmt; FV; Gosa)"
+msgid "Right"
+msgstr "Mirga"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3151341\n"
+"02140600.xhp\n"
+"par_id3149402\n"
"9\n"
"help.text"
-msgid "<emph>Rate</emph> defines the interest rate per period."
-msgstr "<emph>Makkiin</emph> makkii dhalaa per yeroo ibsa."
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_RIGHT\">Creates a series running from left to right within the selected cell range using the defined increment to the end value.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_RIGHT\">Dabala ibsame fayyadamuudhaan hammanga man'ee wajjin bitaadhaa gara mirgaatti uuma.</ahelp>"
-#: 04060103.xhp
-#, fuzzy
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3153023\n"
+"02140600.xhp\n"
+"hd_id3146972\n"
"10\n"
"help.text"
-msgid "<emph>NPer</emph> is the total number of periods (payment period)."
-msgstr "<emph>NPer</emph>n lakkoofsa ida'ama yeroowwaniiti (yeroo kanfaltii)."
+msgid "Up"
+msgstr "Olee"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3146323\n"
+"02140600.xhp\n"
+"par_id3153711\n"
"11\n"
"help.text"
-msgid "<emph>Pmt</emph> is the regular payment made per period."
-msgstr "<emph>Pmt</emph>kanfaltii yeroo hundaa yeroo tokkotti hojjatamuudha."
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_TOP\">Creates an upward series in the cell range of the column using the defined increment to the end value.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_TOP\">Dabala ibsame fayyadamuudhaan hammanga man'ee targaa filatameef walfaannee garolii uuma.</ahelp>"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150536\n"
+"02140600.xhp\n"
+"hd_id3153764\n"
"12\n"
"help.text"
-msgid "<emph>FV</emph> (optional) defines the future value remaining after the final installment has been made."
-msgstr "<emph>FV</emph> (optional) defines the future value remaining after the final installment has been made."
+msgid "Left"
+msgstr "Bitaa"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3146883\n"
+"02140600.xhp\n"
+"par_id3156382\n"
"13\n"
"help.text"
-msgid "<emph>Type</emph> (optional) denotes due date for payments. Type = 1 means due at the beginning of a period and Type = 0 (default) means due at the end of the period."
-msgstr "<emph>Gosa</emph> (filannoo) kanfaltiidhaaf guyyaa dhumaa bakka bu'a.Gosa = 1 jechuun yeroo jalqabaa fi gosa= 0 (durtii) jechuun yeroo jalqabaa."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_idN10B13\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_LEFT\">Creates a series running from right to left in the selected cell range using the defined increment to the end value.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_LEFT\">Dabala ibsame fayyadamuudhaan hammanga man'ee wajjin mirgaa gara bitaatti uuma.</ahelp>"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3150037\n"
+"02140600.xhp\n"
+"hd_id3147344\n"
"14\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Series Type"
+msgstr "Gosa walfaannee"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3145225\n"
+"02140600.xhp\n"
+"par_id3149257\n"
"15\n"
"help.text"
-msgid "What is the present value of an investment, if 500 currency units are paid out monthly and the annual interest rate is 8%? The payment period is 48 months and 20,000 currency units are to remain at the end of the payment period."
-msgstr "Gatiin inveestimeentii ammaa hagam,yoo 500 yuunitii maallaqaa ji'aan kanfalame fi makkiin dhala waggaa 8%?Yeroon kanfaltii ji'a 48 fi 20'000 yuunitii maallaqaa dhuma yeroo kanfaltii irratti hafa."
+msgid "Defines the series type. Choose between <emph>Linear, Growth, Date </emph>and <emph>AutoFill</emph>."
+msgstr "Gosa walfaannee ibsa. Sararoo,guddina,guyyaa<emph>fi ofnaa </emph>gidduudhaa <emph>filata</emph>."
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3155907\n"
+"02140600.xhp\n"
+"hd_id3148488\n"
"16\n"
"help.text"
-msgid "<item type=\"input\">=PV(8%/12;48;500;20000)</item> = -35,019.37 currency units. Under the named conditions, you must deposit 35,019.37 currency units today, if you want to receive 500 currency units per month for 48 months and have 20,000 currency units left over at the end. Cross-checking shows that 48 x 500 currency units + 20,000 currency units = 44,000 currency units. The difference between this amount and the 35,000 currency units deposited represents the interest paid."
-msgstr "<item type=\"input\">=PV(8%/12;48;500;20000)</item> = -35,019.37 uunitii maallaqaa.Haala maqaa jalatti,dirqama har'a 35,019.37 uuniitii maallaqaa kuusuu qabdu,yoo 500 yuunitii maallaqaa per ji'aa ji'a 48 tiif fudhachuu barbaadan fi 20,000 uuniitii maallaqaa dhuma irratti lafatti hafa.Mirkaneessi qaxaamuraa kan agarsiisu 48 x 500 yuunitii maallaqaa + 20,000 uuniitii maallaqaa = 44,000 uuniitii maallaqaa. Garaagarummaan kana gidduu jiruu fi kuufamni 35,000 yuunitii maallaqaa dhala kanfalame bakka bu'a."
+msgid "Linear"
+msgstr "sararoo"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149150\n"
+"02140600.xhp\n"
+"par_id3159238\n"
"17\n"
"help.text"
-msgid "If you enter references instead of these values into the formula, you can calculate any number of \"If-then\" scenarios. Please note: references to constants must be defined as absolute references. Examples of this type of application are found under the depreciation functions."
-msgstr "Osoo wabii iddoo gatii kanaa foormulaa keessa galchinee,lakkoofsa barbaadde \"If-then\"mul'inoota shallaguu dandeessu.Maaloo hubadhaa:wabiin dhaabataaf akka wabii guutuutti dirqama ibsamuu qaba.Fakkeenyi akkanaa kun faankishinii diprisheeshinii jalatti argama."
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_ARITHMETIC\">Creates a linear number series using the defined increment and end value.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_ARITHMETIC\">Dabala ibsamee fi gatii dhumaa fayyadamuudhaan walfaannee lakkoofsa sararoo uuma.</ahelp>"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3152978\n"
+"02140600.xhp\n"
+"hd_id3149210\n"
+"18\n"
"help.text"
-msgid "<bookmark_value>calculating; depreciations</bookmark_value> <bookmark_value>SYD function</bookmark_value> <bookmark_value>depreciations; arithmetic declining</bookmark_value> <bookmark_value>arithmetic declining depreciations</bookmark_value>"
-msgstr "<bookmark_value>shallaguu;diprisheeshinii</bookmark_value> <bookmark_value>faankishinii SYD</bookmark_value> <bookmark_value>diprisheeshinii; lakkoofsa hir'ate</bookmark_value> <bookmark_value>diprisheeshinii lakkoofsa hir'atee</bookmark_value>"
+msgid "Growth"
+msgstr "Guddina"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3152978\n"
+"02140600.xhp\n"
+"par_id3150364\n"
"19\n"
"help.text"
-msgid "SYD"
-msgstr "SYD"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_GEOMETRIC\">Creates a growth series using the defined increment and end value.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_GEOMETRIC\">Dabala ibsamee fi gatii dhumaa fayyadamuudhaan walfaannee guddinaa uuma.</ahelp>"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3148732\n"
+"02140600.xhp\n"
+"hd_id3149528\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DIA\">Returns the arithmetic-declining depreciation rate.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DIA\">Makkii diprisheeshinii lakkoofsa hir'atee deebisa.</ahelp>"
+msgid "Date"
+msgstr "Guyyaa"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149886\n"
+"02140600.xhp\n"
+"par_id3150887\n"
"21\n"
"help.text"
-msgid "Use this function to calculate the depreciation amount for one period of the total depreciation span of an object. Arithmetic declining depreciation reduces the depreciation amount from period to period by a fixed sum."
-msgstr "Hanga diprisheeshinii yeroo tokkoo kan waliigala diprisheeshinii wantoo shallaguuf faankishinii kana fayyadamaa.Hir'ina lakkoofsaa diprisheeshinii hanga diprisheeshinii yeroodhaa yerootti ida'ama dhaabaaadhaan hir'isa."
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DATE\">Creates a date series using the defined increment and end date.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DATE\">Dabala ibsamee fi gatii dhumaa fayyadamuudhaan walfaannee guyyaa uuma.</ahelp>"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3149431\n"
+"02140600.xhp\n"
+"hd_id3150202\n"
"22\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "AutoFill"
+msgstr "Ofnaa guutuu"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150483\n"
+"02140600.xhp\n"
+"par_id3156288\n"
"23\n"
"help.text"
-msgid "SYD(Cost; Salvage; Life; Period)"
-msgstr "SYD(Gatii;saalveegii; Jireenya; yeroo)"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_AUTOFILL\">Forms a series directly in the sheet.</ahelp> The AutoFill function takes account of customized lists. For example, by entering <emph>January</emph> in the first cell, the series is completed using the list defined under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</emph>."
+msgstr ""
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3146879\n"
+"02140600.xhp\n"
+"par_id3155811\n"
"24\n"
"help.text"
-msgid "<emph>Cost</emph> is the initial cost of an asset."
-msgstr "<emph>Gatii</emph>n gatii jalqabaa bu'aati."
+msgid "AutoFill tries to complete a value series by using a defined pattern. The series 1,3,5 is automatically completed with 7,9,11,13, and so on. Date and time series are completed accordingly; for example, after 01.01.99 and 15.01.99, an interval of 14 days is used."
+msgstr "ofnaa guutuun sarxaa ibsame fayyadamuudhaan gatii walfannee xumura.Walfaanneen 1,3,5 battalumatti 7,9,11,13 fi kkf wajjin xumurama.Guyyaa fi yeroon haala jiruun xumurama.Fkf 01.01.99 fi 15.01.99,guyyaa 14 fayyadama."
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3147423\n"
+"02140600.xhp\n"
+"hd_id3148700\n"
"25\n"
"help.text"
-msgid "<emph>Salvage</emph> is the value of an asset after depreciation."
-msgstr "<emph>Balaarraa kan hafe</emph> jechuun gatii waan nafii qabuu dippirisheeshinii boodaati."
+msgid "Unit of Time"
+msgstr "Safartoo yeroo"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3151229\n"
+"02140600.xhp\n"
+"par_id3153308\n"
"26\n"
"help.text"
-msgid "<emph>Life</emph> is the period fixing the time span over which an asset is depreciated."
-msgstr "<emph>Jiruu</emph>n yeroo,yeroo turtii irratti qabeenyi dullatoomu murteessudha."
+msgid "In this area you can specify the desired unit of time. This area is only active if the <emph>Date</emph> option has been chosen in the <emph>Series type</emph> area."
+msgstr "Naannoo kanatti safartuu yeroo barbaanne adda baasuu dandeenya.Naannoon kun kan sinsinaa'u yoo<emph>Date</emph> gosa walfaannee<emph>filatamee</emph> dha."
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3147473\n"
+"02140600.xhp\n"
+"hd_id3148868\n"
"27\n"
"help.text"
-msgid "<emph>Period</emph> defines the period for which the depreciation is to be calculated."
-msgstr "<emph>Yeroon</emph> yeroo dullatoomni shallagamuu qabu ibsa."
+msgid "Day"
+msgstr "Guyyaa"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3148434\n"
+"02140600.xhp\n"
+"par_id3148605\n"
"28\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY\">Use the <emph>Date</emph> series type and this option to create a series using seven days.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY\">Guyyoota torban fayyadamuudhaan walfaannee uumuuf filannoo kanaa fi gosoota walfaannee <emph>Guyyaa</emph> fayyadami.</ahelp>"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149688\n"
+"02140600.xhp\n"
+"hd_id3144771\n"
"29\n"
"help.text"
-msgid "A video system initially costing 50,000 currency units is to be depreciated annually for the next 5 years. The salvage value is to be 10,000 currency units. You want to calculate depreciation for the first year."
-msgstr "Sirni viidiyoo duraan Maallaqa 50,000 ta'e waggoota dhufan 5f waggaa waggaadhaan dullatoomuu qaba.Gatiin wanta balaarraa hafee maallaqa 10,000 ta'uu qaba.Waggaa jalqabaaf dippirisheeshinii shallaguun si barbaachiisa."
+msgid "Weekday"
+msgstr "Guyyaa torbee"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150900\n"
+"02140600.xhp\n"
+"par_id3150108\n"
"30\n"
"help.text"
-msgid "<item type=\"input\">=SYD(50000;10000;5;1)</item>=13,333.33 currency units. The depreciation amount for the first year is 13,333.33 currency units."
-msgstr "<item type=\"input\">=SYD(50000;10000;5;1)</item>= maallaqa 13,333.33 Waggaa jalqabaaf ammi dippirisheeshiniia maallaqa 13,333.33 dha."
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY_OF_WEEK\">Use the <emph>Date</emph> series type and this option to create a series of five day sets.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY_OF_WEEK\">Qindeessa walfannee guyyaa<emph>shanii</emph> uumuuf filannoo kanaa fi gosa walfaannee fayyadama.</ahelp>"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3146142\n"
+"02140600.xhp\n"
+"hd_id3154957\n"
"31\n"
"help.text"
-msgid "To have an overview of depreciation rates per period, it is best to define a depreciation table. By entering the different depreciation formulas available in <item type=\"productname\">%PRODUCTNAME</item> Calc next to each other, you can see which depreciation form is the most appropriate. Enter the table as follows:"
-msgstr "Ilaalacha gubbaa reetii dippirisheeshiniia yeroo tokkoon qabaachuuf, gabatee dippirisheeshiniia qindeessuun gaariidha.Foormuloota dippirisheeshiniia garaagaraa jiran <item type=\"productname\">%PRODUCTNAME</item> keessa tokko isa tokkoon booda galchuun, unka dippirisheeshiniia isa kamtu hundarra filatamaa akka ta'e ilaaluu ni dandeessa. Gabatee akka armaan gadiitti galchi."
+msgid "Month"
+msgstr "Ji'a"
-#: 04060103.xhp
-#, fuzzy
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3155258\n"
+"02140600.xhp\n"
+"par_id3149126\n"
"32\n"
"help.text"
-msgid "<emph>A</emph>"
-msgstr "<emph>Haalata</emph>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_MONTH\">Use the <emph>Date</emph> series type and this option to form a series from the names or abbreviations of the months.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_MONTH\">Maqoota ykn <emph>kontoofanchiisa</emph> ji'ootaa irraa walfaanneewwan uumuuf filannoowwan kana fi gosa walfaannee guyyaa fayyadama.</ahelp>"
-#: 04060103.xhp
-#, fuzzy
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3154558\n"
+"02140600.xhp\n"
+"hd_id3152870\n"
"33\n"
"help.text"
-msgid "<emph>B</emph>"
-msgstr "<emph>Haalata</emph>"
+msgid "Year"
+msgstr "Waggaa"
-#: 04060103.xhp
-#, fuzzy
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3152372\n"
+"02140600.xhp\n"
+"par_id3151300\n"
"34\n"
"help.text"
-msgid "<emph>C</emph>"
-msgstr "<emph>Haalata</emph>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_YEAR\">Use the <emph>Date</emph> series type and this option to create a series of years.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_YEAR\">walfaannewwan waggaa<emph>uumuuf</emph>filannoo kanaa fi gosa filannoo walfaannee guyyaa fayyadama.</ahelp>"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149949\n"
+"02140600.xhp\n"
+"hd_id3154762\n"
"35\n"
"help.text"
-msgid "<emph>D</emph>"
-msgstr "<emph>Haalata</emph>"
+msgid "Start Value"
+msgstr "Gatii dhumaa"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3145123\n"
+"02140600.xhp\n"
+"par_id3149381\n"
"36\n"
"help.text"
-msgid "<emph>E</emph>"
-msgstr "<emph>Haalata</emph>"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_START_VALUES\">Determines the start value for the series.</ahelp> Use numbers, dates or times."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_START_VALUES\">Walfaanneedhaaf gatii jalqabaa murteessa.</ahelp> Lakkoofsota,guyyoota ykn yeroo fayyadama."
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149504\n"
+"02140600.xhp\n"
+"hd_id3153013\n"
"37\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "End Value"
+msgstr "Gatii dhumaa"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3153778\n"
+"02140600.xhp\n"
+"par_id3153487\n"
"38\n"
"help.text"
-msgid "<item type=\"input\">Initial Cost</item>"
-msgstr "<item type=\"input\">195</item>"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_END_VALUES\">Determines the end value for the series.</ahelp> Use numbers, dates or times."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_END_VALUES\">Walfaanneedhaaf gatii dhumaa murteessa.</ahelp> Lakkoofsota,guyyoota ykn yeroo fayyadama."
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3159083\n"
+"02140600.xhp\n"
+"hd_id3149312\n"
"39\n"
"help.text"
-msgid "<item type=\"input\">Salvage Value</item>"
-msgstr "<item type=\"input\">195</item>"
+msgid "Increment"
+msgstr "Dabala"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150002\n"
+"02140600.xhp\n"
+"par_id3154739\n"
"40\n"
"help.text"
-msgid "<item type=\"input\">Useful Life</item>"
-msgstr "<item type=\"input\">195</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153006\n"
-"41\n"
-"help.text"
-msgid "<item type=\"input\">Time Period</item>"
-msgstr "<item type=\"input\">195</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154505\n"
-"42\n"
-"help.text"
-msgid "<item type=\"input\">Deprec. SYD</item>"
-msgstr "<item type=\"input\">195</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3150336\n"
-"43\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155926\n"
-"44\n"
-"help.text"
-msgid "<item type=\"input\">50,000 currency units</item>"
-msgstr "<item type=\"input\">safartoota mahaalaqaa 10,666.67</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153736\n"
-"45\n"
-"help.text"
-msgid "<item type=\"input\">10,000 currency units</item>"
-msgstr "<item type=\"input\">safartoota mahaalaqaa 10,666.67</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3150131\n"
-"46\n"
-"help.text"
-msgid "<item type=\"input\">5</item>"
-msgstr "<item type=\"input\">195</item>"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148766\n"
-"47\n"
-"help.text"
-msgid "<item type=\"input\">1</item>"
-msgstr "<item type=\"input\">195</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3159136\n"
-"48\n"
-"help.text"
-msgid "<item type=\"input\">13,333.33 currency units</item>"
-msgstr "<item type=\"input\">safartoota mahaalaqaa 10,666.67</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3151018\n"
-"49\n"
-"help.text"
-msgid "3"
-msgstr "3"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148397\n"
-"50\n"
-"help.text"
-msgid "<item type=\"input\">2</item>"
-msgstr "<item type=\"input\">195</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3146907\n"
-"51\n"
-"help.text"
-msgid "<item type=\"input\">10,666.67 currency units</item>"
-msgstr "<item type=\"input\">safartoota mahaalaqaa 10,666.67</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3147356\n"
-"52\n"
-"help.text"
-msgid "4"
-msgstr "4"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3150267\n"
-"53\n"
-"help.text"
-msgid "<item type=\"input\">3</item>"
-msgstr "<item type=\"input\">183</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3145628\n"
-"54\n"
-"help.text"
-msgid "<item type=\"input\">8,000.00 currency units</item>"
-msgstr "<item type=\"input\">safartoota mahaalaqaa 10,666.67</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149004\n"
-"55\n"
-"help.text"
-msgid "5"
-msgstr "5"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153545\n"
-"56\n"
-"help.text"
-msgid "<item type=\"input\">4</item>"
-msgstr "<item type=\"input\">148</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154634\n"
-"57\n"
-"help.text"
-msgid "<item type=\"input\">5,333.33 currency units</item>"
-msgstr "<item type=\"input\">safartoota mahaalaqaa 10,666.67</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3147537\n"
-"58\n"
-"help.text"
-msgid "6"
-msgstr "6"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155085\n"
-"59\n"
-"help.text"
-msgid "<item type=\"input\">5</item>"
-msgstr "<item type=\"input\">195</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3158413\n"
-"60\n"
-"help.text"
-msgid "<item type=\"input\">2,666.67 currency units</item>"
-msgstr "<item type=\"input\">safartoota mahaalaqaa 10,666.67</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154866\n"
-"61\n"
-"help.text"
-msgid "7"
-msgstr "7"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155404\n"
-"62\n"
-"help.text"
-msgid "<item type=\"input\">6</item>"
-msgstr "<item type=\"input\">195</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148431\n"
-"63\n"
-"help.text"
-msgid "<item type=\"input\">0.00 currency units</item>"
-msgstr "<item type=\"input\">safartoota mahaalaqaa 10,666.67</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3156261\n"
-"64\n"
-"help.text"
-msgid "8"
-msgstr "8"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3083286\n"
-"65\n"
-"help.text"
-msgid "<item type=\"input\">7</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3083443\n"
-"67\n"
-"help.text"
-msgid "9"
-msgstr "9"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154815\n"
-"68\n"
-"help.text"
-msgid "<item type=\"input\">8</item>"
-msgstr "<item type=\"input\">148</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3145082\n"
-"70\n"
-"help.text"
-msgid "10"
-msgstr "10"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3156307\n"
-"71\n"
-"help.text"
-msgid "<item type=\"input\">9</item>"
-msgstr "<item type=\"input\">195</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3147564\n"
-"73\n"
-"help.text"
-msgid "11"
-msgstr "11"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3146856\n"
-"74\n"
-"help.text"
-msgid "<item type=\"input\">10</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3150880\n"
-"76\n"
-"help.text"
-msgid "12"
-msgstr "12"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3145208\n"
-"77\n"
-"help.text"
-msgid "13"
-msgstr "13"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3156113\n"
-"78\n"
-"help.text"
-msgid "<item type=\"input\">>0</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153625\n"
-"79\n"
-"help.text"
-msgid "<item type=\"input\">Total</item>"
-msgstr "<item type=\"input\">195</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3151297\n"
-"80\n"
-"help.text"
-msgid "<item type=\"input\">40,000.00 currency units</item>"
-msgstr "<item type=\"input\">safartoota mahaalaqaa 10,666.67</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149979\n"
-"81\n"
-"help.text"
-msgid "The formula in E2 is as follows:"
-msgstr "Foormulaan F2 keessaa akka armaan gadiiti."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155849\n"
-"82\n"
-"help.text"
-msgid "<item type=\"input\">=SYD($A$2;$B$2;$C$2;D2)</item>"
-msgstr "<item type=\"input\">=TDIST(12;5;1)</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3156124\n"
-"83\n"
-"help.text"
-msgid "This formula is duplicated in column E down to E11 (select E2, then drag down the lower right corner with the mouse)."
-msgstr "Foormulaan kun tarjaa E keessa gara gadiitti hanga E12 tti baay'ifama(E2 filadhu,sana booda xiyyoo mirgaa handaara gadii tuqaadhaan gad harkisi)."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3147270\n"
-"84\n"
-"help.text"
-msgid "Cell E13 contains the formula used to check the total of the depreciation amounts. It uses the SUMIF function as the negative values in E8:E11 must not be considered. The condition >0 is contained in cell A13. The formula in E13 is as follows:"
-msgstr "mandheen E13 foormulaa hamma dippirisheeshinii hunda mirkaneessuuf gargaaru of keessatti qabata.Akka gatiin negatiivii E8:E11 keessa jiru yaada keessa hin galleef faankishinii SUMIF fayyadama.Haalli >0 mandhee A13 keessatti hammatameera.Foormumlaan E13 keessaa akka armaan gadiiti."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3152811\n"
-"85\n"
-"help.text"
-msgid "<item type=\"input\">=SUMIF(E2:E11;A13)</item>"
-msgstr "<item type=\"input\">=TDIST(12;5;1)</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155998\n"
-"86\n"
-"help.text"
-msgid "Now view the depreciation for a 10 year period, or at a salvage value of 1 currency unit, or enter a different initial cost, and so on."
-msgstr "Amma dippirisheeshinii waggaa 10 agarsiisi,ykn gatii wanta balaarra hafee maallaqa 1 irratti, ykn gatii jalqabaa garaagaraa galchi, fi itti fufa."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"bm_id3155104\n"
-"help.text"
-msgid "<bookmark_value>DISC function</bookmark_value> <bookmark_value>allowances</bookmark_value> <bookmark_value>discounts</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii DISC </bookmark_value> <bookmark_value>hayyamoota</bookmark_value> <bookmark_value>hir'inoota gatii</bookmark_value>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3155104\n"
-"379\n"
-"help.text"
-msgid "DISC"
-msgstr "DISC"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153891\n"
-"380\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_DISC\">Calculates the allowance (discount) of a security as a percentage.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_DISC\">Hayyama (hir'ina gatii) ittisaa akka dhibbantaatti shallaga.</ahelp>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3153982\n"
-"381\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149756\n"
-"382\n"
-"help.text"
-msgid "DISC(\"Settlement\"; \"Maturity\"; Price; Redemption; Basis)"
-msgstr "DISC(\"Qubannoo\"; \"Bilchina\"; Gatii; Mugoota Kanfaluu; Hundee)"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3156014\n"
-"383\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154304\n"
-"384\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3159180\n"
-"385\n"
-"help.text"
-msgid "<emph>Price</emph> is the price of the security per 100 currency units of par value."
-msgstr "<emph>Gatiin</emph> gatii ittisaa safartuu maallaqaa 100 keessaa kan gatii pariidha."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3147253\n"
-"386\n"
-"help.text"
-msgid "<emph>Redemption</emph> is the redemption value of the security per 100 currency units of par value."
-msgstr "<emph>Mugoota Kanfaluun</emph> gatii mugoota kanfaluu ittisaa safartuu maallaqaa 100 keessaa kan gatii 'par'iidha."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3151174\n"
-"387\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155902\n"
-"388\n"
-"help.text"
-msgid "A security is purchased on 2001-01-25; the maturity date is 2001-11-15. The price (purchase price) is 97, the redemption value is 100. Using daily balance calculation (basis 3) how high is the settlement (discount)?"
-msgstr "Ittisni gaafa 2001-01-25 bitame; guyyaan bilchinaa 2001-11-15. Gatii (gatiin bittaa) 97 dha, gatiin mugoota kanfaluu 100 dha. Shallaga guyyaadhaan madaaluu (hundee 3) fayyadamuun qubannoon (hir'inni gatii) hammam guddataa?"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3152797\n"
-"389\n"
-"help.text"
-msgid "<item type=\"input\">=DISC(\"2001-01-25\";\"2001-11-15\";97;100;3)</item> returns about 0.0372 or 3.72 per cent."
-msgstr "<item type=\"input\">=DISC(\"2001-01-25\";\"2001-11-15\";97;100;3)</item> waa'ee parasantii 0.0372 ykn 3.72 deebisa."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"bm_id3154695\n"
-"help.text"
-msgid "<bookmark_value>DURATION_ADD function</bookmark_value> <bookmark_value>Microsoft Excel functions</bookmark_value> <bookmark_value>durations;fixed interest securities</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii DURATION_ADD </bookmark_value> <bookmark_value>Faankishinoota Ekseelii Maaykiroosooftii</bookmark_value> <bookmark_value>Turtiiwwan;ittisa dhalaa dhaabbataa</bookmark_value>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3154695\n"
-"402\n"
-"help.text"
-msgid "DURATION_ADD"
-msgstr "DURATION_ADD"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3145768\n"
-"403\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_DURATION\">Calculates the duration of a fixed interest security in years.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_DURATION\">Turmaata ittisa dhaalaa dhabbataa waggaa keessaa shhallaga.</ahelp>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3153904\n"
-"404\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153373\n"
-"405\n"
-"help.text"
-msgid "DURATION_ADD(\"Settlement\"; \"Maturity\"; Coupon; Yield; Frequency; Basis)"
-msgstr "DURATION_ADD(\"Qubannoo\"; \"Bilchina\"; Boonoo; Kenna; Ammamtaa; Hundee)"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155397\n"
-"406\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148558\n"
-"407\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153096\n"
-"408\n"
-"help.text"
-msgid "<emph>Coupon</emph> is the annual coupon interest rate (nominal rate of interest)"
-msgstr "<emph>Boonoon</emph> boonoo reetii dhalaa waggaa (reetii dhalaa xiqqaa) dha."
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154594\n"
-"409\n"
-"help.text"
-msgid "<emph>Yield</emph> is the annual yield of the security."
-msgstr "<emph>kennaa</emph> ittisa kenna waggaati."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149906\n"
-"410\n"
-"help.text"
-msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
-msgstr "<emph>Ammamtaa</emph>n lakkoofsa kanfaltiiwwan dhalaa waggaati (1, 2 ykn 4)."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3146995\n"
-"411\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148834\n"
-"412\n"
-"help.text"
-msgid "A security is purchased on 2001-01-01; the maturity date is 2006-01-01. The Coupon rate of interest is 8%. The yield is 9.0%. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how long is the duration?"
-msgstr "Ittisni gaafa 2001-01-01 bitame; guyyaan bilchinaa 2006-01-01. Boonoon reetii dhalaa 8% dha. Kennuun 9.0% dha. Dhalli walakkaa waggaadhaan kaffalama (ammamtaan 2 dha). Shallaga dhala guyyaadhaan walmadaaluu (hundee 3) fayyadamuudhaan turmaatni hammamii?"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154902\n"
-"413\n"
-"help.text"
-msgid "<item type=\"input\">=DURATION_ADD(\"2001-01-01\";\"2006-01-01\";0.08;0.09;2;3)</item>"
-msgstr "<item type=\"input\">=DURATION_ADD(\"2001-01-01\";\"2006-01-01\";0.08;0.09;2;3)</item>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"bm_id3159147\n"
-"help.text"
-msgid "<bookmark_value>annual net interest rates</bookmark_value> <bookmark_value>calculating; annual net interest rates</bookmark_value> <bookmark_value>net annual interest rates</bookmark_value> <bookmark_value>EFFECTIVE function</bookmark_value>"
-msgstr "<bookmark_value>reetii dhalaa culkee waggaa</bookmark_value> <bookmark_value>shallaguu; reetii dhalaa culkee waggaa</bookmark_value> <bookmark_value>reetii dhalaa culkee waggaa</bookmark_value> <bookmark_value>Faankishinii BU'AA QABEESSA</bookmark_value>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3159147\n"
-"88\n"
-"help.text"
-msgid "EFFECTIVE"
-msgstr "BU'AA QABEESSA"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154204\n"
-"89\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_EFFEKTIV\">Returns the net annual interest rate for a nominal interest rate.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_EFFEKTIV\">reetii dhalaa xiqqaadhaaf reetii dhalaa waggaa culkee keenna.</ahelp>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3145417\n"
-"90\n"
-"help.text"
-msgid "Nominal interest refers to the amount of interest due at the end of a calculation period. Effective interest increases with the number of payments made. In other words, interest is often paid in installments (for example, monthly or quarterly) before the end of the calculation period."
-msgstr "Dhalli xiqqaan hamma dhalaa sababa dhuma yeroo shallagaatiin argame ibsa.Dhalli bu'aa qabeessi lakkoofsa kaffaltii raawwatame waliin dabala.Karaa biraatiin, dhalli dhuma yeroo shallaggiin dura qabdiidhaan kaffalama (fakkeenyaaf, ji'a ji'aan ykn kurmaanaan)."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3150510\n"
-"91\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148805\n"
-"92\n"
-"help.text"
-msgid "EFFECTIVE(Nom; P)"
-msgstr "BU'AA QABEESSA(Nom; P)"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149768\n"
-"93\n"
-"help.text"
-msgid "<emph>Nom</emph> is the nominal interest."
-msgstr "<emph>Nom</emph> dhala xiqqaadha."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149334\n"
-"94\n"
-"help.text"
-msgid "<emph>P</emph> is the number of interest payment periods per year."
-msgstr "<emph>P</emph>n lakkoofsa yeroo kaffaltii dhalaa waggaa tokko keessaadha."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3154223\n"
-"95\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3144499\n"
-"96\n"
-"help.text"
-msgid "If the annual nominal interest rate is 9.75% and four interest calculation periods are defined, what is the actual interest rate (effective rate)?"
-msgstr "Osoo reetiin dhala xiqqaa waggaa 9.75% fi yeroon shallaga dhalaa afur ibsaman, reetii sirriin dhalaa (reetii bu'aa qabeessi) maalii?"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3150772\n"
-"97\n"
-"help.text"
-msgid "<item type=\"input\">=EFFECTIVE(9.75%;4)</item> = 10.11% The annual effective rate is therefore 10.11%."
-msgstr "<item type=\"input\">=EFFECTIVE(9.75%;4)</item> = 10.11% Kanaafuu reetiin dhalaa waggaa 10.11% dha."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"bm_id3147241\n"
-"help.text"
-msgid "<bookmark_value>effective interest rates</bookmark_value> <bookmark_value>EFFECT_ADD function</bookmark_value>"
-msgstr "<bookmark_value>Reetiiwwan dhalaa bu'aa qabeessa</bookmark_value> <bookmark_value>Faankishinii EFFECT_ADD </bookmark_value>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3147241\n"
-"414\n"
-"help.text"
-msgid "EFFECT_ADD"
-msgstr "EFFECT_ADD"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3147524\n"
-"415\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_EFFECT\">Calculates the effective annual rate of interest on the basis of the nominal interest rate and the number of interest payments per annum.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_EFFECT\">Reetii dhalaa xiqqaa fi lakkoofsa kaffaltiiwwan dhalaa 'annum' tokko keessaa irratti hundaa'uudhaan reetii dhalaa waggaa bu'aa qabeessa shallaga.</ahelp>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3155364\n"
-"416\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155118\n"
-"417\n"
-"help.text"
-msgid "EFFECT_ADD(NominalRate; NPerY)"
-msgstr "EFFECT_ADD(Reetii Xiqqaa; NPerY)"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148907\n"
-"418\n"
-"help.text"
-msgid "<emph>NominalRate</emph> is the annual nominal rate of interest."
-msgstr "<emph>Reetii Xiqqaan</emph> reetii dhalaa xiqqaa waggaati."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154274\n"
-"419\n"
-"help.text"
-msgid "<emph>NPerY </emph>is the number of interest payments per year."
-msgstr "<emph>NPerY </emph>iin lakkoofsa kaffaltii dhalaa waggaattii dha."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3149156\n"
-"420\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3158426\n"
-"421\n"
-"help.text"
-msgid "What is the effective annual rate of interest for a 5.25% nominal rate and quarterly payment."
-msgstr "Reetii xiqqaa 5.25% fi kaffaltii kurnaalaaf reetii dhalaa waggaa bu'aa qabeessaa maali."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148927\n"
-"422\n"
-"help.text"
-msgid "<item type=\"input\">=EFFECT_ADD(0.0525;4)</item> returns 0.053543 or 5.3543%."
-msgstr "<item type=\"input\">=EFFECT_ADD(0.0525;4)</item> 0.053543 ykn 5.3543% deebisa."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"bm_id3149998\n"
-"help.text"
-msgid "<bookmark_value>calculating; arithmetic-degressive depreciations</bookmark_value> <bookmark_value>arithmetic-degressive depreciations</bookmark_value> <bookmark_value>depreciations;arithmetic-degressive</bookmark_value> <bookmark_value>DDB function</bookmark_value>"
-msgstr "<bookmark_value>shallaguu; arithmetic-degressive depreciations</bookmark_value> <bookmark_value>arithmetic-degressive depreciations</bookmark_value> <bookmark_value>dippirisheeshinii;arithmetic-degressive</bookmark_value> <bookmark_value>Faankishinii DDB</bookmark_value>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3149998\n"
-"99\n"
-"help.text"
-msgid "DDB"
-msgstr "DDB"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3159190\n"
-"100\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GDA\">Returns the depreciation of an asset for a specified period using the arithmetic-declining method.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GDA\">mala artimeetikii-kuffiisuu fayyadamuudhaan yeroo adda ba'eef dippirisheeshinii qabeenyaa keenna.</ahelp>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3152361\n"
-"101\n"
-"help.text"
-msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
-msgstr "Gatii dippirisheeshinii jalqabaa olaanaa faallaa dippirisheeshinii liinarii ta'e yoo barbaadde unka kana fayyadami. Tokko tokkoo yerootti gatiin dippirisheeshinii hir'achaa deema dabalataanis bittaa booda qabeenyota kasaaraan gatii isaanii guddaa ta'eef (fakkeenyaaf, konkolaattota,kompiiyuutaroota) yeroo hunda fayyada.Maaloo gosa shallagii kana jalatti gatiin buukii gonkuma akka zeeroo hin taane hubadhu."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3156038\n"
-"102\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3166452\n"
-"103\n"
-"help.text"
-msgid "DDB(Cost; Salvage; Life; Period; Factor)"
-msgstr "DDB(Gatiis Salvage; Liriod; Hirmaataa)"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153237\n"
-"104\n"
-"help.text"
-msgid "<emph>Cost</emph> fixes the initial cost of an asset."
-msgstr "<emph>Gatii</emph>n gatii qabeenya jalqabaa murteessa."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149787\n"
-"105\n"
-"help.text"
-msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
-msgstr "<emph>Salveejiin</emph> gatii qabeenyaa dhuma jireenya isaa irrati murteessa."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3152945\n"
-"106\n"
-"help.text"
-msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
-msgstr "<emph>Jiruu</emph>n lakkoofsa yeroo qabeenyi yeroo hammamiif akka fayyadamamuu qabu ibsudha."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149736\n"
-"107\n"
-"help.text"
-msgid "<emph>Period</emph> states the period for which the value is to be calculated."
-msgstr "<emph>Yeroo</emph>n turtii yeroo kan gatiin shallagamuuf ibsa."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3150243\n"
-"108\n"
-"help.text"
-msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
-msgstr "<emph>Hirmaataa</emph>n (dirqalee) hirmaataa dippirisheeshiniin ittiin hir'atudha.Yoo gatiin hin seenne ta'e, durtiin hirmaataa 2 dha."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3159274\n"
-"109\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3152882\n"
-"110\n"
-"help.text"
-msgid "A computer system with an initial cost of 75,000 currency units is to be depreciated monthly over 5 years. The value at the end of the depreciation is to be 1 currency unit. The factor is 2."
-msgstr "Sirni kompiiyuutaraa gatiin isaa jalqabaa safartuu maallaqaa 75,000 ta'e ji'a ji'aan waggaa 5 oliif kuufamuu qaba."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154106\n"
-"111\n"
-"help.text"
-msgid "<item type=\"input\">=DDB(75000;1;60;12;2) </item>= 1,721.81 currency units. Therefore, the double-declining depreciation in the twelfth month after purchase is 1,721.81 currency units."
-msgstr "Safartuu maallaqaa<item type=\"input\">=DDB(75000;1;60;12;2) </item>= 1,721.81. Kanaafuu, dippirisheeshiniin lama-kuffiisuu bittaa booda ji'a jalqabaa keessa safartuu maallaqaa 1,721.81 dha."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"bm_id3149962\n"
-"help.text"
-msgid "<bookmark_value>calculating; geometric-degressive depreciations</bookmark_value> <bookmark_value>geometric-degressive depreciations</bookmark_value> <bookmark_value>depreciations;geometric-degressive</bookmark_value> <bookmark_value>DB function</bookmark_value>"
-msgstr "<bookmark_value>shallaguu; dippirisheeshinoota geometric-degressive depreciations</bookmark_value> <bookmark_value>geometric-degressive depreciations</bookmark_value> <bookmark_value>depreciations;geometric-degressive</bookmark_value> <bookmark_value>DB function</bookmark_value>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3149962\n"
-"113\n"
-"help.text"
-msgid "DB"
-msgstr "DB"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148989\n"
-"114\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GDA2\">Returns the depreciation of an asset for a specified period using the double-declining balance method.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GDA2\">iMala madaalli lama-kuffisuu fayyadamuudhaan yeroo murtaa'eef dippirisheeshinii qabeenyaa keenna.</ahelp>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3156213\n"
-"115\n"
-"help.text"
-msgid "This form of depreciation is used if you want to get a higher depreciation value at the beginning of the depreciation (as opposed to linear depreciation). The depreciation value is reduced with every depreciation period by the depreciation already deducted from the initial cost."
-msgstr "Yoo jalqaba dippirisheeshinii irratti(akka faallaa dippirisheeshinii sorooroo ta'etti) gatii dippiakkrisheeshii guddaa yoo barbaadde unki dippirisheeshinii kun ni fayyadamama.Gatiin dippirisheeshinii dippirisheeshinii gatii jalqabaa irraa xiinxalameetiin yeroo dippirisheeshinii hunda waliin hir'ata."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3149807\n"
-"116\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153349\n"
-"117\n"
-"help.text"
-msgid "DB(Cost; Salvage; Life; Period; Month)"
-msgstr "DB(Gatii; Salveejii; Jiruu; Yeroo; Ji'a)"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148462\n"
-"118\n"
-"help.text"
-msgid "<emph>Cost</emph> is the initial cost of an asset."
-msgstr "<emph>Gatii</emph>n gatii jalqabaa bu'aati."
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148658\n"
-"119\n"
-"help.text"
-msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
-msgstr "<emph>Balaarraa kan hafe</emph>Gatii mahaallaqa dhuma Dullatooma ti."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3145371\n"
-"120\n"
-"help.text"
-msgid "<emph>Life</emph> defines the period over which an asset is depreciated."
-msgstr "<emph>Jiruu</emph>n yerootti qabeenyi kuufamu ibsa."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154608\n"
-"121\n"
-"help.text"
-msgid "<emph>Period</emph> is the length of each period. The length must be entered in the same date unit as the depreciation period."
-msgstr "<emph>Yeroo</emph>n dheerina tokko tokkoo yeroo dha. is the length of each period. Turtiin akkuma yeroo dippirisheeshiniiti safartuu aduu walfakkatuun seenuu qaba."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3150829\n"
-"122\n"
-"help.text"
-msgid "<emph>Month</emph> (optional) denotes the number of months for the first year of depreciation. If an entry is not defined, 12 is used as the default."
-msgstr "<emph>Jiini</emph> (dirqalee) dippirisheeshinii waggaa jalqabaaf lakkoofsa ji'ootaa bakka bu'a. Yoo galiinsi hin ibsamne ta'e, 12 akka durtiitti fayyada."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3151130\n"
-"123\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3156147\n"
-"124\n"
-"help.text"
-msgid "A computer system with an initial cost of 25,000 currency units is to be depreciated over a three year period. The salvage value is to be 1,000 currency units. One period is 30 days."
-msgstr "Sirni kompiiyuutaraa gatii jalqabaa safartuu maallaqaa 25'000 ta'e waggaa sadii keessatti kuufammuu qaba.Gatiin salveejii safartuu maallaqaa 1,000 ta,uu qaba. Yeroon tokko guyyoota 30 dha."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149513\n"
-"125\n"
-"help.text"
-msgid "<item type=\"input\">=DB(25000;1000;36;1;6)</item> = 1,075.00 currency units"
-msgstr "<item type=\"input\">=DB(25000;1000;36;1;6)</item> = 1,075.00 safartuu maallaqaa"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3159242\n"
-"126\n"
-"help.text"
-msgid "The fixed-declining depreciation of the computer system is 1,075.00 currency units."
-msgstr "Dippirisheeshiniin kuffisuu-dhaabbataa sirna kompiiyuutaraa safartuu maallaqaa 1,075.00 dha."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"bm_id3153948\n"
-"help.text"
-msgid "<bookmark_value>IRR function</bookmark_value> <bookmark_value>calculating;internal rates of return, regular payments</bookmark_value> <bookmark_value>internal rates of return;regular payments</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii IRR</bookmark_value> <bookmark_value>shallaguu;reetiiwwan deebii keessoo, kaffaltiiwwan idilee</bookmark_value> <bookmark_value>reetiiwwan deebii keessoo;kaffaltiiwwan idilee</bookmark_value>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3153948\n"
-"128\n"
-"help.text"
-msgid "IRR"
-msgstr "IRR"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3143282\n"
-"129\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_IKV\">Calculates the internal rate of return for an investment.</ahelp> The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
-msgstr "<ahelp hid=\"HID_FUNC_IKV\">Kaawwatiidhaaf reetii deebii keessoo shallaga.</ahelp> Gatiiwwan gatii callaa giddu'uu idileedhaan bakka buusa, yoo xiqqaate gatiin tokko negetiiva ta'uu qaba (kaffaltiiwwan), fi yoo xiqqaate gatiin tokko pozatiiva ta'uu qaba (galii)."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3150599\n"
-"130\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155427\n"
-"131\n"
-"help.text"
-msgid "IRR(Values; Guess)"
-msgstr "IRR(Gatiiwwan; Tilmaama)"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3144758\n"
-"132\n"
-"help.text"
-msgid "<emph>Values</emph> represents an array containing the values."
-msgstr "<emph>Gatiiwwan</emph> waraantoo gatiiwwan qabatu bakka bu'a."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149233\n"
-"133\n"
-"help.text"
-msgid "<emph>Guess</emph> (optional) is the estimated value. An iterative method is used to calculate the internal rate of return. If you can provide only few values, you should provide an initial guess to enable the iteration."
-msgstr "<emph>Tilmaamni</emph> (dirqalee) gatii tilmaamamedha.Malli aytireetiivii reetii deebii keessoo shallaguuf fayyada.Yoo gatiiwwan xiqqoo qofa dhiheessuu dandeessa ta'e,aytireeshinii kakaasuuf tilmaama dursaa dhiheessi."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3151258\n"
-"134\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3150630\n"
-"135\n"
-"help.text"
-msgid "Under the assumption that cell contents are A1=<item type=\"input\">-10000</item>, A2=<item type=\"input\">3500</item>, A3=<item type=\"input\">7600</item> and A4=<item type=\"input\">1000</item>, the formula <item type=\"input\">=IRR(A1:A4)</item> gives a result of 11,33%."
-msgstr "Tilmaama qabeentoonni mandhee A1=<item type=\"input\">-10000</item>, A2=<item type=\"input\">3500</item>, A3=<item type=\"input\">7600</item> fi A4=<item type=\"input\">1000</item>, foormulaan <item type=\"input\">=IRR(A1:A4)</item> firii 80.24% kenna."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"bm_id3151012\n"
-"help.text"
-msgid "<bookmark_value>calculating; interests for unchanged amortization installments</bookmark_value> <bookmark_value>interests for unchanged amortization installments</bookmark_value> <bookmark_value>ISPMT function</bookmark_value>"
-msgstr "<bookmark_value>shallaguu; dhala qabdiiwwan baasii jala jalaa hin jijjiiramne.</bookmark_value> <bookmark_value>dhaloota qabdiiwwan baasii jala jalaa hin jijjiiramne.</bookmark_value> <bookmark_value>faankishinii ISPMT</bookmark_value>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3151012\n"
-"314\n"
-"help.text"
-msgid "ISPMT"
-msgstr "ISPMT"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148693\n"
-"315\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ISPMT\">Calculates the level of interest for unchanged amortization installments.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ISPMT\">Qadiiwwan baasii jala jalaa hin jijjiiramneef sadarkaa dhalaa shallaga.</ahelp>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3154661\n"
-"316\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3146070\n"
-"317\n"
-"help.text"
-msgid "ISPMT(Rate; Period; TotalPeriods; Invest)"
-msgstr "ISPMT(Reetii; Yeroo; YeroowwanDimshaashaa; Investii)"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148672\n"
-"318\n"
-"help.text"
-msgid "<emph>Rate</emph> sets the periodic interest rate."
-msgstr "<emph>Reetii</emph>n reetii dhala irra deddeebii qindeessa."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3145777\n"
-"319\n"
-"help.text"
-msgid "<emph>Period</emph> is the number of installments for calculation of interest."
-msgstr "<emph>Yeroo</emph>n lakkoofsa qabdiiwwanii dhala shallaguudhaaf gargaarudha."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153678\n"
-"320\n"
-"help.text"
-msgid "<emph>TotalPeriods</emph> is the total number of installment periods."
-msgstr "<emph>Irradeddeebbii Dimshaashaa</emph> lakkoofsa dimshaashaa yeroowwan qabdiiti."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3159390\n"
-"321\n"
-"help.text"
-msgid "<emph>Invest</emph> is the amount of the investment."
-msgstr "<emph>Investiin</emph> hamma invetimentiiti."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3156162\n"
-"322\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149558\n"
-"323\n"
-"help.text"
-msgid "For a credit amount of 120,000 currency units with a two-year term and monthly installments, at a yearly interest rate of 12% the level of interest after 1.5 years is required."
-msgstr "Hamma liqaa safartuu maallaqaa 120,000 termii waggaa lamaanii fi qabdiiwwan ji'a ji'aan, reetii dhalaa waggaa waggaadhaan 12% ta'eef sadarkaan dhalaa waggoota 1.5 booda ni barbaadama."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3150949\n"
-"324\n"
-"help.text"
-msgid "<item type=\"input\">=ISPMT(1%;18;24;120000)</item> = -300 currency units. The monthly interest after 1.5 years amounts to 300 currency units."
-msgstr "<item type=\"input\">=ISPMT(1%;18;24;120000)</item> safartuuwwan maallaqaa= -300 . Waggoota 1.5 booda dhalli ji'a ji'aanii safartuuwwan maallaqaa 300 ta'a."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3146812\n"
-"426\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060119.xhp\" name=\"Forward to Financial Functions Part Two\">Financial Functions Part Two</link>"
-msgstr "<link href=\"text/scalc/01/04060119.xhp\" name=\"Forward to Financial Functions Part Two\">Faankishinoota Maallaqaa Kutaa Lammaffaa</link>"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154411\n"
-"427\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Financial Functions Part Three</link>"
-msgstr "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Faankiishinoota Maallaqaa Kutaa Sadaffaa</link>"
+msgid "The term \"increment\" denotes the amount by which a given value increases.<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_INCREMENT\"> Determines the value by which the series of the selected type increases by each step.</ahelp> Entries can only be made if the linear, growth or date series types have been selected."
+msgstr "Jechi \"dabala\" jedhu amma gatiin kenname tokko ittiin dabalu bakka bu'a.<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_INCREMENT\">Gatii Walfaannee gosa filatamee adeemsa hunda keessatti dabalamu murteessa.</ahelp> Galiinsi kan ta'u yoo sararoon,guddinni ykn guyyaan filatameedha."
-#: 04060116.xhp
+#: 02150000.xhp
msgctxt ""
-"04060116.xhp\n"
+"02150000.xhp\n"
"tit\n"
"help.text"
-msgid "Add-in Functions, List of Analysis Functions Part Two"
-msgstr "Fankishiiniiwwan Idaatu,Kutaa Lammaffaa Tarree Xiinxala Fankishinii"
+msgid "Deleting Contents"
+msgstr "Qabeentota haquu"
-#: 04060116.xhp
+#: 02150000.xhp
msgctxt ""
-"04060116.xhp\n"
-"bm_id3145074\n"
+"02150000.xhp\n"
+"bm_id3143284\n"
"help.text"
-msgid "<bookmark_value>imaginary numbers in analysis functions</bookmark_value> <bookmark_value>complex numbers in analysis functions</bookmark_value>"
-msgstr "<bookmark_value>lakkoofsota immaajiineerii fankishinoota xiinxalaa keessaa </bookmark_value> <bookmark_value>lakkoofsota komphileeksii fankishinoota xiinxalaa keessaa</bookmark_value>"
+msgid "<bookmark_value>deleting; cell contents</bookmark_value><bookmark_value>cells; deleting contents</bookmark_value><bookmark_value>spreadsheets; deleting cell contents</bookmark_value><bookmark_value>cell contents; deleting</bookmark_value>"
+msgstr "<bookmark_value>haquu;qabeentota qabeewwanii</bookmark_value><bookmark_value>man'eewwan; qabeebtota haquu</bookmark_value><bookmark_value>wardiiwwan qajjoojjii; qabeentota man'ee haquu</bookmark_value><bookmark_value>qabeentota man'ee;haquu</bookmark_value>"
-#: 04060116.xhp
+#: 02150000.xhp
msgctxt ""
-"04060116.xhp\n"
-"hd_id3154659\n"
+"02150000.xhp\n"
+"hd_id3143284\n"
"1\n"
"help.text"
-msgid "Add-in Functions, List of Analysis Functions Part Two"
-msgstr "Fankishiiniiwwan Idaatu,Kutaa Lammaffaa Tarree Xiinxala Fankishinii"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3151242\n"
-"174\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060108.xhp\" name=\"Category Statistics\">Category Statistics</link>"
-msgstr "<link href=\"text/scalc/01/04060108.xhp\" name=\"Category Statistics\">Istaatiksii Akaakuu</link>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148869\n"
-"5\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060115.xhp\" name=\"Analysis Functions Part One\">Analysis Functions Part One</link>"
-msgstr "<link href=\"text/scalc/01/04060115.xhp\" name=\"Analysis Functions Part One\">Fankishinii Xiinxalaa Kutaa Tokko</link>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147072\n"
-"240\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Back to the Overview</link>"
-msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Ilaalcha gubbaatti Deebi'ii</link>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3154959\n"
-"help.text"
-msgid "<bookmark_value>IMABS function</bookmark_value>"
-msgstr "<bookmark_value>fankishiniiIMABS</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154959\n"
-"44\n"
-"help.text"
-msgid "IMABS"
-msgstr "IMABS"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149895\n"
-"45\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMABS\">The result is the absolute value of a complex number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMABS\">Firii isaa gatii sirrii lakkoofsa konphileeksii ta'a.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3155382\n"
-"46\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3151302\n"
-"47\n"
-"help.text"
-msgid "IMABS(\"ComplexNumber\")"
-msgstr "IMABS(\"lakkoofsa konphileeksii\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153974\n"
-"48\n"
-"help.text"
-msgid "<variable id=\"complex\"><emph>ComplexNumber</emph> is a complex number that is entered in the form \"x+yi\" or \"x+yj\".</variable>"
-msgstr "<variable id=\"complex\"><emph>lakkoofsa konphileeksii</emph>'n lakkoofsa konphileeksii bifa \"x+yi\" ykn \"x+yj\" kan galfame dha. </variable>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3149697\n"
-"49\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3143222\n"
-"50\n"
-"help.text"
-msgid "<item type=\"input\">=IMABS(\"5+12j\")</item> returns 13."
-msgstr "<item type=\"input\">=IMABS(\"5+12j\")</item>13 kenna."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3145357\n"
-"help.text"
-msgid "<bookmark_value>IMAGINARY function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii IMAGINARY</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3145357\n"
-"51\n"
-"help.text"
-msgid "IMAGINARY"
-msgstr "IMAGINARY"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3146965\n"
-"52\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\">The result is the imaginary coefficient of a complex number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\">Firii isaa koofisheentii immaajiineerii lakkoofsa komphileeksiti.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3153555\n"
-"53\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155522\n"
-"54\n"
-"help.text"
-msgid "IMAGINARY(\"ComplexNumber\")"
-msgstr "IMAGINARY(\"lakkoofsa kompileeksii\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3151193\n"
-"56\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155592\n"
-"57\n"
-"help.text"
-msgid "<item type=\"input\">=IMAGINARY(\"4+3j\")</item> returns 3."
-msgstr "<item type=\"input\">=IMAGINARY(\"4+3j\")</item> 3 kenna."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3146106\n"
-"help.text"
-msgid "<bookmark_value>IMPOWER function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii IMPOWER</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3146106\n"
-"58\n"
-"help.text"
-msgid "IMPOWER"
-msgstr "IMPOWER"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147245\n"
-"59\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMPOWER\">The result is the integer power of a complex number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMPOWER\">Firii isaa paawori intiijerii lakkoofsa kompileeksiti.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3150954\n"
-"60\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147501\n"
-"61\n"
-"help.text"
-msgid "IMPOWER(\"ComplexNumber\"; Number)"
-msgstr "IMPOWER(\"lakkoofsa kompileeksii\"; Lakkoofsa)"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155743\n"
-"63\n"
-"help.text"
-msgid "<emph>Number</emph> is the exponent."
-msgstr "<emph>Lakkoofsi</emph> eeksipooneentii dha."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3149048\n"
-"64\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3151393\n"
-"65\n"
-"help.text"
-msgid "<item type=\"input\">=IMPOWER(\"2+3i\";2)</item> returns -5+12i."
-msgstr "<item type=\"input\">=IMPOWER(\"2+3i\";2)</item> -5+12i kenna."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3148748\n"
-"help.text"
-msgid "<bookmark_value>IMARGUMENT function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii IMARGUMENT</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3148748\n"
-"66\n"
-"help.text"
-msgid "IMARGUMENT"
-msgstr "IMARGUMENT"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3151341\n"
-"67\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMARGUMENT\">The result is the argument (the phi angle) of a complex number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMARGUMENT\">Firii isaa qajeelfama(kofa paayii) lakkoofsa konphileeksiti.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3150533\n"
-"68\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3156402\n"
-"69\n"
-"help.text"
-msgid "IMARGUMENT(\"ComplexNumber\")"
-msgstr "IMREAL(\"lakkoofsa kompileeksi\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3153019\n"
-"71\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3159125\n"
-"72\n"
-"help.text"
-msgid "<item type=\"input\">=IMARGUMENT(\"3+4j\")</item> returns 0.927295."
-msgstr "<item type=\"input\">=IMARGUMENT(\"3+4j\")</item> 0.927295 kenna."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3149146\n"
-"help.text"
-msgid "<bookmark_value>IMCOS function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii IMCOS</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3149146\n"
-"73\n"
-"help.text"
-msgid "IMCOS"
-msgstr "IMCOS"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149725\n"
-"74\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMCOS\">The result is the cosine of a complex number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMCOS\">Firii isaa koosaayinii lakkoofsa konphileeksiti.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3159116\n"
-"75\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147415\n"
-"76\n"
-"help.text"
-msgid "IMCOS(\"ComplexNumber\")"
-msgstr "IMABS(\"lakkoofsa konmileeksii\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3152980\n"
-"78\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3157901\n"
-"79\n"
-"help.text"
-msgid "<item type=\"input\">=IMCOS(\"3+4j\") </item>returns -27.03-3.85i (rounded)."
-msgstr "<item type=\"input\">=IMCOS(\"3+4j\") </item> -27.03-3.85i (siksamuun) kenna."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3150024\n"
-"help.text"
-msgid "<bookmark_value>IMDIV function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii IMDIV</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3150024\n"
-"80\n"
-"help.text"
-msgid "IMDIV"
-msgstr "IMDIV"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3145825\n"
-"81\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMDIV\">The result is the division of two complex numbers.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMDIV\">Firii isaa hiramaa lakkoofsa konphileeksii lamaati.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3150465\n"
-"82\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3146942\n"
-"83\n"
-"help.text"
-msgid "IMDIV(\"Numerator\"; \"Denominator\")"
-msgstr "IMDIV(\"Gubbayyee\"; \"jaloo\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150741\n"
-"84\n"
-"help.text"
-msgid "<emph>Numerator</emph>, <emph>Denominator</emph> are complex numbers that are entered in the form \"x+yi\" or \"x+yj\"."
-msgstr "<emph>Gubbayyee</emph>'n, <emph>jaloo</emph>'n lakkoofsoota kampileeksii bifaa \"x+yi\" ykn \"x+yj\" galfamani dha."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3151229\n"
-"85\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148440\n"
-"86\n"
-"help.text"
-msgid "<item type=\"input\">=IMDIV(\"-238+240i\";\"10+24i\")</item> returns 5+12i."
-msgstr "<item type=\"input\">=IMDIV(\"-238+240i\";\"10+24i\")</item> 5+12i kenna."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3153039\n"
-"help.text"
-msgid "<bookmark_value>IMEXP function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii IMEXP</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3153039\n"
-"87\n"
-"help.text"
-msgid "IMEXP"
-msgstr "IMEXP"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3144741\n"
-"88\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMEXP\">The result is the power of e and the complex number.</ahelp> The constant e has a value of approximately 2.71828182845904."
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMEXP\">Firiin e paawoorii fi lakkoofsa kompileeksi dha.</ahelp> Tilmaamaan gatiin dhaabbataa e 2.71828182845904."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3145591\n"
-"89\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154810\n"
-"90\n"
-"help.text"
-msgid "IMEXP(\"ComplexNumber\")"
-msgstr "IMSIN(\"lakkoofsa kompileeksii\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3148581\n"
-"92\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149253\n"
-"93\n"
-"help.text"
-msgid "<item type=\"input\">=IMEXP(\"1+j\") </item>returns 1.47+2.29j (rounded)."
-msgstr "<item type=\"input\">=IMEXP(\"1+j\") </item>1.47+2.29j (siksamuun)kenna."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3149955\n"
-"help.text"
-msgid "<bookmark_value>IMCONJUGATE function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii IMCONJUGATE</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3149955\n"
-"94\n"
-"help.text"
-msgid "IMCONJUGATE"
-msgstr "IMCONJUGATE"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155263\n"
-"95\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMCONJUGATE\">The result is the conjugated complex complement to a complex number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMCONJUGATE\">Firiin isaa fallaa kompileeksii konjuugeetii lakkoofsa konphileeksi ta'a.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3148750\n"
-"96\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153082\n"
-"97\n"
-"help.text"
-msgid "IMCONJUGATE(\"ComplexNumber\")"
-msgstr "IMCONJUGATE(\"Lakkoofsa komphileeksii\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3153326\n"
-"99\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149688\n"
-"100\n"
-"help.text"
-msgid "<item type=\"input\">=IMCONJUGATE(\"1+j\")</item> returns 1-j."
-msgstr "<item type=\"input\">=IMCONJUGATE(\"1+j\")</item> 1-j kenna."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3150898\n"
-"help.text"
-msgid "<bookmark_value>IMLN function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii IMLN</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3150898\n"
-"101\n"
-"help.text"
-msgid "IMLN"
-msgstr "IMLN"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3146853\n"
-"102\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMLN\">The result is the natural logarithm (to the base e) of a complex number.</ahelp> The constant e has a value of approximately 2.71828182845904."
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLN\">Firiin loogariizimii uumamaa(beezii e'n)lakkoofsa kompileeksiiti.</ahelp> Tilmaamaan gatiin dhaabbataa e 2.71828182845904 ta'a."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3150008\n"
-"103\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155954\n"
-"104\n"
-"help.text"
-msgid "IMLN(\"ComplexNumber\")"
-msgstr "IMLN(\"lakkoofsa kompileeksii\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3153565\n"
-"106\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153736\n"
-"107\n"
-"help.text"
-msgid "<item type=\"input\">=IMLN(\"1+j\")</item> returns 0.35+0.79j (rounded)."
-msgstr "<item type=\"input\">=IMLN(\"1+j\")</item> 0.35+0.79j (siksamuun) kenna."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3155929\n"
-"help.text"
-msgid "<bookmark_value>IMLOG10 function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii IMLOG10</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3155929\n"
-"108\n"
-"help.text"
-msgid "IMLOG10"
-msgstr "IMLOG10"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149882\n"
-"109\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMLOG10\">The result is the common logarithm (to the base 10) of a complex number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLOG10\">Firiin isaa loogariizimii beekamaa(beezii 10'n) lakkoofsa koompileeksitier.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154327\n"
-"110\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150128\n"
-"111\n"
-"help.text"
-msgid "IMLOG10(\"ComplexNumber\")"
-msgstr "IMLOG10(\"Lakkoofsa komphileeksii\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3149003\n"
-"113\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3151021\n"
-"114\n"
-"help.text"
-msgid "<item type=\"input\">=IMLOG10(\"1+j\")</item> returns 0.15+0.34j (rounded)."
-msgstr "<item type=\"input\">=IMLOG10(\"1+j\")</item> 0.15+0.34j (siksamuun) kenna."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3155623\n"
-"help.text"
-msgid "<bookmark_value>IMLOG2 function</bookmark_value>"
-msgstr "<bookmark_value>faankishiniiIMLOG2</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3155623\n"
-"115\n"
-"help.text"
-msgid "IMLOG2"
-msgstr "IMLOG2"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150932\n"
-"116\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMLOG2\">The result is the binary logarithm of a complex number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLOG2\">Firiin loogariizimii lamee lakkoofsa konphileeksiti.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3153046\n"
-"117\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3145355\n"
-"118\n"
-"help.text"
-msgid "IMLOG2(\"ComplexNumber\")"
-msgstr "IMLOG2(\"Lakkoofsa komphileeksii\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3148768\n"
-"120\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149536\n"
-"121\n"
-"help.text"
-msgid "<item type=\"input\">=IMLOG2(\"1+j\")</item> returns 0.50+1.13j (rounded)."
-msgstr "<item type=\"input\">=IMLOG2(\"1+j\")</item> 0.50+1.13j (siksamuun) kenna."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3145626\n"
-"help.text"
-msgid "<bookmark_value>IMPRODUCT function</bookmark_value>"
-msgstr "<bookmark_value>fankishiinii IMPRODUCT</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3145626\n"
-"122\n"
-"help.text"
-msgid "IMPRODUCT"
-msgstr "IMPRODUCT"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153545\n"
-"123\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMPRODUCT\">The result is the product of up to 29 complex numbers.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMPRODUCT\">Firii isaa loogariizimii lamee lakkoofsa konphileeksiti.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3149388\n"
-"124\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149027\n"
-"125\n"
-"help.text"
-msgid "IMPRODUCT(\"ComplexNumber\"; \"ComplexNumber1\"; ...)"
-msgstr "IMPRODUCT(\"lakkoofsa konphileeksii\"; \"lakkoofsa konphileeksii1\"; ...)"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3153228\n"
-"127\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155815\n"
-"128\n"
-"help.text"
-msgid "<item type=\"input\">=IMPRODUCT(\"3+4j\";\"5-3j\")</item> returns 27+11j."
-msgstr "<item type=\"input\">=IMPRODUCT(\"3+4j\";\"5-3j\")</item> 27+11j kenna."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3147539\n"
-"help.text"
-msgid "<bookmark_value>IMREAL function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii IMREAL</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3147539\n"
-"129\n"
-"help.text"
-msgid "IMREAL"
-msgstr "IMREAL"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155372\n"
-"130\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMREAL\">The result is the real coefficient of a complex number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMREAL\">Firii isaa koofisheenti riyaalii lakkoofsa konphileeksiti.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154951\n"
-"131\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153927\n"
-"132\n"
-"help.text"
-msgid "IMREAL(\"ComplexNumber\")"
-msgstr "IMREAL(\"lakkoofsa konphileeksi\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3155409\n"
-"134\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155986\n"
-"135\n"
-"help.text"
-msgid "<item type=\"input\">=IMREAL(\"1+3j\")</item> returns 1."
-msgstr "<item type=\"input\">=IMREAL(\"1+3j\")</item> 1 kenna."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3148431\n"
-"help.text"
-msgid "<bookmark_value>IMSIN function</bookmark_value>"
-msgstr "<bookmark_value>fankishiniiIMSIN</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3148431\n"
-"136\n"
-"help.text"
-msgid "IMSIN"
-msgstr "IMSIN"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3152591\n"
-"137\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMSIN\">The result is the sine of a complex number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSIN\">Firii isaa saayinii lakkoofsa konphileeksiti.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3149822\n"
-"138\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150387\n"
-"139\n"
-"help.text"
-msgid "IMSIN(\"ComplexNumber\")"
-msgstr "IMSIN(\"lakkoofsa konphileeksii\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3150613\n"
-"141\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154310\n"
-"142\n"
-"help.text"
-msgid "<item type=\"input\">=IMSIN(\"3+4j\")</item> returns 3.85+27.02j (rounded)."
-msgstr "<item type=\"input\">=IMSIN(\"3+4j\")</item> 3.85+27.02j (siksamuun) kenna."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3163826\n"
-"help.text"
-msgid "<bookmark_value>IMSUB function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii IMSUB</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3163826\n"
-"143\n"
-"help.text"
-msgid "IMSUB"
-msgstr "IMSUB"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149277\n"
-"144\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMSUB\">The result is the subtraction of two complex numbers.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSUB\">Firii isaa hir'attoo lakkoofsa konphileeksiti.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3149264\n"
-"145\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149710\n"
-"146\n"
-"help.text"
-msgid "IMSUB(\"ComplexNumber1\"; \"ComplexNumber2\")"
-msgstr "IMSUB(\"lakkoofsa konphileeksii1\"; \"lakkoofsa konphileeksii2\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3155833\n"
-"148\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150963\n"
-"149\n"
-"help.text"
-msgid "<item type=\"input\">=IMSUB(\"13+4j\";\"5+3j\")</item> returns 8+j."
-msgstr "<item type=\"input\">=IMSUB(\"13+4j\";\"5+3j\")</item> 8+j kenna."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3156312\n"
-"help.text"
-msgid "<bookmark_value>IMSUM function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii IMSUM</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3156312\n"
-"150\n"
-"help.text"
-msgid "IMSUM"
-msgstr "IMSUM"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153215\n"
-"151\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMSUM\">The result is the sum of up to 29 complex numbers.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSUM\">Firii isaa ida'ama hanga 29 lakkoofsa konphileeksiti.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3156095\n"
-"152\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3152930\n"
-"153\n"
-"help.text"
-msgid "IMSUM(\"ComplexNumber1\"; \"ComplexNumber2\"; ...)"
-msgstr "IMSUM(\"lakkoofsa konphileeksii1\"; \"lakkoofsa konphileeksii2\"; ...)"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154640\n"
-"155\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147081\n"
-"156\n"
-"help.text"
-msgid "<item type=\"input\">=IMSUM(\"13+4j\";\"5+3j\")</item> returns 18+7j."
-msgstr "<item type=\"input\">=IMSUM(\"13+4j\";\"5+3j\")</item> 18+7j kenna."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3147570\n"
-"help.text"
-msgid "<bookmark_value>IMSQRT function</bookmark_value>"
-msgstr "<bookmark_value>fankishiniiIMSQRT</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3147570\n"
-"167\n"
-"help.text"
-msgid "IMSQRT"
-msgstr "IMSQRT"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3156131\n"
-"168\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMSQRT\">The result is the square root of a complex number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSQRT\">Firii isaa iskuuwerruutti lakkoofsa konphileeksiti.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3145202\n"
-"169\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150760\n"
-"170\n"
-"help.text"
-msgid "IMSQRT(\"ComplexNumber\")"
-msgstr "IMSQRT(\"lakkoofsa konphileeksii\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3147268\n"
-"172\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3152807\n"
-"173\n"
-"help.text"
-msgid "<item type=\"input\">=IMSQRT(\"3+4i\")</item> returns 2+1i."
-msgstr "<item type=\"input\">=IMSQRT(\"3+4i\")</item>2+1i kenna."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3154054\n"
-"help.text"
-msgid "<bookmark_value>COMPLEX function</bookmark_value>"
-msgstr "<bookmark_value>fankishiniiCOMPLEX</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154054\n"
-"157\n"
-"help.text"
-msgid "COMPLEX"
-msgstr "COMPLEX"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3156111\n"
-"158\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COMPLEX\">The result is a complex number which is returned from a real coefficient and an imaginary coefficient.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_COMPLEX\">Firiin isaa lakkoofsa konphileeksi kan kofisheentii riyaalii fi kofisheentii imaajiineerii irraa argame dha.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154744\n"
-"159\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155999\n"
-"160\n"
-"help.text"
-msgid "COMPLEX(RealNum; INum; Suffix)"
-msgstr "COMPLEX(RealNum; INum; Dursoo)"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153626\n"
-"161\n"
-"help.text"
-msgid "<emph>RealNum</emph> is the real coefficient of the complex number."
-msgstr "<emph>RealNum</emph>'n koofisheenti riyaalii lakkoofsa komphileeksiti."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149135\n"
-"162\n"
-"help.text"
-msgid "<emph>INum</emph> is the imaginary coefficient of the complex number."
-msgstr "<emph>INum</emph>'n koofisheenti imaajiineerii lakkoofsa konphileeksiti."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155849\n"
-"163\n"
-"help.text"
-msgid "<emph>Suffix</emph> is a list of options, \"i\" or \"j\"."
-msgstr "<emph>Dursoo</emph>'n tarree dirqalaalee , \"i\" ykn \"j\"."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3145659\n"
-"164\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3143229\n"
-"165\n"
-"help.text"
-msgid "<item type=\"input\">=COMPLEX(3;4;\"j\")</item> returns 3+4j."
-msgstr "<item type=\"input\">=COMPLEX(3;4;\"j\")</item> 3+4j kenna."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3155103\n"
-"help.text"
-msgid "<bookmark_value>OCT2BIN function</bookmark_value> <bookmark_value>converting;octal numbers, into binary numbers</bookmark_value>"
-msgstr "<bookmark_value>fankishinii OCT2BIN</bookmark_value> <bookmark_value>jijjiiruun;lakkoofsota ooktaalii, gara lakkoofsota baayineeritti</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3155103\n"
-"217\n"
-"help.text"
-msgid "OCT2BIN"
-msgstr "OCT2BIN"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3146898\n"
-"218\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2BIN\">The result is the binary number for the octal number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2BIN\">Firiin isaa lakkoofsota ooktaalii galfameef lakkoofsota baayineerii ta'a.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3146088\n"
-"219\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154303\n"
-"220\n"
-"help.text"
-msgid "OCT2BIN(Number; Places)"
-msgstr "OCT2BIN(Lakkoofsa; Bakkeewwan)"
-
-#: 04060116.xhp
-#, fuzzy
-msgctxt ""
-"04060116.xhp\n"
-"par_id3156013\n"
-"221\n"
-"help.text"
-msgid "<emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
-msgstr "<emph>Lakkoofsa</emph> lakkoofsa oktaalii dha.Gatii olaanaa bakkeewwan qadachuu danda'uu 10 dha.Biiin calqaba xiyyoo irra mallattoo biiti taati,biitiiwwan iti aanuun dhufaan gatii kennu.Lakkoofsootni neegaativii akkaa tuuskompiilimeentitti galfamu."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153984\n"
-"222\n"
-"help.text"
-msgid "<emph>Places</emph> is the number of places to be output."
-msgstr "<emph>Bakkootni</emph> lakkoofsa bakkoota baha ta'uuti."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3147493\n"
-"223\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147260\n"
-"224\n"
-"help.text"
-msgid "<item type=\"input\">=OCT2BIN(3;3)</item> returns 011."
-msgstr "<item type=\"input\">=OCT2BIN(3;3)</item> 011 kenna."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3152791\n"
-"help.text"
-msgid "<bookmark_value>OCT2DEC function</bookmark_value> <bookmark_value>converting;octal numbers, into decimal numbers</bookmark_value>"
-msgstr "<bookmark_value>fankishinii OCT2DEC</bookmark_value> <bookmark_value>jijjiiruun;lakkoofsota ooktaalii, gara lakkoofsota deesimaaliitti</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3152791\n"
-"225\n"
-"help.text"
-msgid "OCT2DEC"
-msgstr "OCT2DEC"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149199\n"
-"226\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2DEZ\">The result is the decimal number for the octal number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2DEZ\">Firiin isaa lakkoofsota oktaalii galfameef lakkoofsota deesiimaalii ta'a..</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3159337\n"
-"227\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153902\n"
-"228\n"
-"help.text"
-msgid "OCT2DEC(Number)"
-msgstr "OCT2DEC(Lakkoofsa)"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155326\n"
-"229\n"
-"help.text"
-msgid "<emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
-msgstr "<emph>Lakkoofsi</emph> lakkoofsa ooktaaliiti.Lakkoofsi kun yoo guddatee hanga bakka 10 of keessaa qaba.Biitin duraa akka mallattoo biiti agarsiistu taati,biitiwwan itti aanun dhufan gatii deebisu.Lakkoofsootni neegaativii akkaa tuuskompiilimeentitti galfamu."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154698\n"
-"230\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154930\n"
-"231\n"
-"help.text"
-msgid "<item type=\"input\">=OCT2DEC(144)</item> returns 100."
-msgstr "<item type=\"input\">=OCT2DEC(144)</item> 100 kenna."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3155391\n"
-"help.text"
-msgid "<bookmark_value>OCT2HEX function</bookmark_value> <bookmark_value>converting;octal numbers, into hexadecimal numbers</bookmark_value>"
-msgstr "<bookmark_value>fankishinii OCT2HEX</bookmark_value> <bookmark_value>jijjiiruun;lakkoofsota oktaalii, gara lakkoofsota heeksaadeesimaaliitti</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3155391\n"
-"232\n"
-"help.text"
-msgid "OCT2HEX"
-msgstr "OCT2HEX"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148831\n"
-"233\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2HEX\"> The result is the hexadecimal number for the octal number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2HEX\">Firiin isaa lakkoofsa oktaalii galfameef lakkoofsa heeksaadeesiimaalii ta'a..</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3146988\n"
-"234\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150523\n"
-"235\n"
-"help.text"
-msgid "OCT2HEX(Number; Places)"
-msgstr "OCT2HEX(Lakkoofsa; Bakkoota)"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3159162\n"
-"236\n"
-"help.text"
-msgid "<emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
-msgstr "<emph>Lakkoofsi</emph> lakkoofsa oktaaalii dha.Lakkoofsi kun yoo guddatee hanga bakka 10 of keessaa qaba.Biitin duraa akka mallattoo biiti agarsiistu taati,biitiwwan itti aanun dhufan gatii deebisu.Lakkoofsootni neegaativii akkaa tuuskompiilimeentitti galfamu."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3145420\n"
-"237\n"
-"help.text"
-msgid "<emph>Places</emph> is the number of places to be output."
-msgstr "<emph>Bakkeewwan</emph> lakkoofsa bakkeewwani gadii bafaman dha."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3150504\n"
-"238\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148802\n"
-"239\n"
-"help.text"
-msgid "<item type=\"input\">=OCT2HEX(144;4)</item> returns 0064."
-msgstr "<item type=\"input\">=OCT2HEX(144;4)</item> 0064 kenna."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3148446\n"
-"help.text"
-msgid "<bookmark_value>CONVERT_ADD function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii CONVERT_ADD</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3148446\n"
-"175\n"
-"help.text"
-msgid "CONVERT_ADD"
-msgstr "CONVERT_ADD"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154902\n"
-"176\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">Converts a value from one unit of measure to the corresponding value in another unit of measure.</ahelp> Enter the units of measures directly as text in quotation marks or as a reference. If you enter the units of measure in cells, they must correspond exactly with the following list which is case sensitive: For example, in order to enter a lower case l (for liter) in a cell, enter the apostrophe ' immediately followed by l."
-msgstr "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">n gatii safartuu madalii tokkoo irraa gara gatii madalii safartuu itti aanuu gara birooti jijjiira .</ahelp> Madaalliwwan safartuu akka barruu mallattoo waraabbiti ykn akka wabiiti qixa sirriin galchi. Yoo madallii safartuu man'ee keessaa galchiee, Fakkeenyaaf, gara xiqaa 1 (salphaa) man'ee galchuuf mallattoo hudhaa ' battaluma tokkootti (1) aansudhaan galchi."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153055\n"
-"177\n"
-"help.text"
-msgid "Property"
-msgstr "Amala"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147234\n"
-"178\n"
-"help.text"
-msgid "Units"
-msgstr "Safartuu"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147512\n"
-"179\n"
-"help.text"
-msgid "Weight"
-msgstr "Ulfaatina"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148476\n"
-"180\n"
-"help.text"
-msgid "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight, hweight, shweight, brton"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155361\n"
-"181\n"
-"help.text"
-msgid "Length"
-msgstr "Dheerina"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148925\n"
-"182\n"
-"help.text"
-msgid "<emph>m</emph>, mi, Nmi, in, ft, yd, ang, Pica, ell, <emph>parsec</emph>, <emph>lightyear</emph>, survey_mi"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3158429\n"
-"183\n"
-"help.text"
-msgid "Time"
-msgstr "Yeroo"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150707\n"
-"184\n"
-"help.text"
-msgid "yr, day, hr, mn, <emph>sec</emph>, <emph>s</emph>"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153238\n"
-"185\n"
-"help.text"
-msgid "Pressure"
-msgstr "Dhiibaa"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3166437\n"
-"186\n"
-"help.text"
-msgid "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3152944\n"
-"187\n"
-"help.text"
-msgid "Force"
-msgstr "Humna"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155582\n"
-"188\n"
-"help.text"
-msgid "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153686\n"
-"189\n"
-"help.text"
-msgid "Energy"
-msgstr "Aniisaa"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153386\n"
-"190\n"
-"help.text"
-msgid "<emph>J</emph>, <emph>e</emph>, <emph>c</emph>, <emph>cal</emph>, <emph>eV</emph>, <emph>ev</emph>, HPh, <emph>Wh</emph>, <emph>wh</emph>, flb, BTU, btu"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154100\n"
-"191\n"
-"help.text"
-msgid "Power"
-msgstr "Aangoo"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149915\n"
-"192\n"
-"help.text"
-msgid "<emph>W</emph>, <emph>w</emph>, HP, PS"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148988\n"
-"193\n"
-"help.text"
-msgid "Field strength"
-msgstr "Jabeenyaa dirree"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148616\n"
-"194\n"
-"help.text"
-msgid "<emph>T</emph>, <emph>ga</emph>"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3151120\n"
-"195\n"
-"help.text"
-msgid "Temperature"
-msgstr "Teempiirechara"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148659\n"
-"196\n"
-"help.text"
-msgid "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154610\n"
-"197\n"
-"help.text"
-msgid "Volume"
-msgstr "Qabee"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149423\n"
-"198\n"
-"help.text"
-msgid "<emph>l</emph>, <emph>L</emph>, <emph>lt</emph>, tsp, tbs, oz, cup, pt, us_pt, qt, gal, <emph>m3</emph>, mi3, Nmi3, in3, ft3, yd3, ang3, Pica3, barrel, bushel, regton, Schooner, Middy, Glass"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149244\n"
-"199\n"
-"help.text"
-msgid "Area"
-msgstr "Iddoo"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150425\n"
-"200\n"
-"help.text"
-msgid "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150629\n"
-"201\n"
-"help.text"
-msgid "Speed"
-msgstr "Saffisa"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3159246\n"
-"202\n"
-"help.text"
-msgid "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150789\n"
-"201\n"
-"help.text"
-msgid "Information"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3159899\n"
-"202\n"
-"help.text"
-msgid "<emph>bit</emph>, <emph>byte</emph>"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3143277\n"
-"203\n"
-"help.text"
-msgid "Units of measure in <emph>bold</emph> can be preceded by a prefix character from the following list:"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148422\n"
-"204\n"
-"help.text"
-msgid "Prefix"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148423\n"
-"help.text"
-msgid "Multiplier"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149490\n"
-"help.text"
-msgid "Y (yotta)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149931\n"
-"help.text"
-msgid "10^24"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149491\n"
-"help.text"
-msgid "Z (zetta)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149932\n"
-"help.text"
-msgid "10^21"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149492\n"
-"help.text"
-msgid "E (exa)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149933\n"
-"help.text"
-msgid "10^18"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149493\n"
-"help.text"
-msgid "P (peta)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149934\n"
-"help.text"
-msgid "10^15"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149494\n"
-"help.text"
-msgid "T (tera)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149935\n"
-"help.text"
-msgid "10^12"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149495\n"
-"help.text"
-msgid "G (giga)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149936\n"
-"help.text"
-msgid "10^9"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149496\n"
-"help.text"
-msgid "M (mega)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149937\n"
-"help.text"
-msgid "10^6"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149497\n"
-"help.text"
-msgid "k (kilo)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149938\n"
-"help.text"
-msgid "10^3"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149498\n"
-"help.text"
-msgid "h (hecto)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149939\n"
-"help.text"
-msgid "10^2"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149499\n"
-"help.text"
-msgid "e (deca)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149940\n"
-"help.text"
-msgid "10^1"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149500\n"
-"help.text"
-msgid "d (deci)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3143940\n"
-"help.text"
-msgid "10^-1"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149501\n"
-"help.text"
-msgid "c (centi)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149941\n"
-"help.text"
-msgid "10^-2"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149502\n"
-"help.text"
-msgid "m (milli)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149942\n"
-"help.text"
-msgid "10^-3"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149503\n"
-"help.text"
-msgid "u (micro)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149943\n"
-"help.text"
-msgid "10^-6"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149504\n"
-"help.text"
-msgid "n (nano)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149944\n"
-"help.text"
-msgid "10^-9"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149505\n"
-"help.text"
-msgid "p (pico)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149945\n"
-"help.text"
-msgid "10^-12"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149506\n"
-"help.text"
-msgid "f (femto)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149946\n"
-"help.text"
-msgid "10^-15"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149507\n"
-"help.text"
-msgid "a (atto)"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149947\n"
-"help.text"
-msgid "10^-18"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149508\n"
-"help.text"
-msgid "z (zepto)"
-msgstr ""
+msgid "Deleting Contents"
+msgstr "Qabeentota haquu"
-#: 04060116.xhp
+#: 02150000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149948\n"
+"02150000.xhp\n"
+"par_id3149456\n"
+"2\n"
"help.text"
-msgid "10^-21"
-msgstr ""
+msgid "<variable id=\"inhalteloeschentext\"><ahelp hid=\".uno:Delete\">Specifies the contents to be deleted from the active cell or from a selected cell range.</ahelp></variable> If several sheets are selected, all selected sheets will be affected."
+msgstr "<variable id=\"inhalteloeschentext\"><ahelp hid=\".uno:Delete\">Man'ee si'aa'aa ykn hammangaa man'ee filatame keessaa qabeentota haqamuu qaban adda baasa.</ahelp></variable> yoo wardiin baay'een filataman ,wardiiwwan filataman hunduu ni miidhamu."
-#: 04060116.xhp
+#: 02150000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149509\n"
+"02150000.xhp\n"
+"par_id3159154\n"
+"21\n"
"help.text"
-msgid "y (yocto)"
+msgid "This dialog is also called by pressing Backspace after the cell cursor has been activated on the sheet."
msgstr ""
-#: 04060116.xhp
+#: 02150000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149949\n"
+"02150000.xhp\n"
+"par_id3145367\n"
+"22\n"
"help.text"
-msgid "10^-24"
+msgid "Pressing Delete deletes content without calling the dialog or changing formats."
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903061174\n"
-"help.text"
-msgid "Information units \"bit\" and \"byte\" may also be prefixed by one of the following IEC 60027-2 / IEEE 1541 prefixes:"
-msgstr "Safartootni odeeffannoo \"biitii\" and \"baayitii\" kan armaan gadii keessaa tokkoon durfamu dursitoota IEC 60027-2 / IEEE 1541:"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090966\n"
-"help.text"
-msgid "ki kibi 1024"
-msgstr "ki kibi 1024"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090958\n"
-"help.text"
-msgid "Mi mebi 1048576"
-msgstr "Mi mebi 1048576"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090936\n"
-"help.text"
-msgid "Gi gibi 1073741824"
-msgstr "Gi gibi 1073741824"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090975\n"
-"help.text"
-msgid "Ti tebi 1099511627776"
-msgstr "Ti tebi 1099511627776"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090930\n"
-"help.text"
-msgid "Pi pebi 1125899906842620"
-msgstr "Pi pebi 1125899906842620"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091070\n"
-"help.text"
-msgid "Ei exbi 1152921504606850000"
-msgstr "Ei exbi 1152921504606850000"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091097\n"
-"help.text"
-msgid "Zi zebi 1180591620717410000000"
-msgstr "Zi zebi 1180591620717410000000"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091010\n"
-"help.text"
-msgid "Yi yobi 1208925819614630000000000"
-msgstr "Yi yobi 1208925819614630000000000"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3146125\n"
-"209\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153695\n"
-"210\n"
-"help.text"
-msgid "CONVERT_ADD(Number; \"FromUnit\"; \"ToUnit\")"
-msgstr "CONVERT_ADD(Lakkoofsa; \"SafartuuIrraa\"; \"GaraSafartuu\")"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147522\n"
-"211\n"
-"help.text"
-msgid "<emph>Number</emph> is the number to be converted."
-msgstr "<emph>lakkoofsi</emph> lakkoofsa jijjirame dha."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154472\n"
-"212\n"
-"help.text"
-msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
-msgstr "<emph>SafartuuIrraan</emph> safartuu jijjiramni irraati adeemsifamuudha."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153790\n"
-"213\n"
-"help.text"
-msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
-msgstr "<emph>GaraSafartuun</emph> safartuu jijjiramni irraati adeemsifamuudha."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3156270\n"
-"214\n"
-"help.text"
-msgid "Examples"
-msgstr "Fakkeenyawwan"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3156336\n"
-"215\n"
-"help.text"
-msgid "<item type=\"input\">=CONVERT_ADD(10;\"HP\";\"PS\") </item>returns, rounded to two decimal places, 10.14. 10 HP equal 10.14 PS."
-msgstr "<item type=\"input\">=kurnyeeCONVERT_ADD(10;\"HP\";\"PS\") </item>n, gara iddoo kurnyee lamati siksa, 10.14. 10 HP walqixa 10.14 PS kenna."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154834\n"
-"216\n"
-"help.text"
-msgid "<item type=\"input\">=CONVERT_ADD(10;\"km\";\"mi\") </item>returns, rounded to two decimal places, 6.21. 10 kilometers equal 6.21 miles. The k is the permitted prefix character for the factor 10^3."
-msgstr "<item type=\"input\">=CONVERT_ADD(10;\"km\";\"mi\") </item>n, gara iddoo kurnyee lamati siksa, Kiloomeetiin 6.21. 10 walqixaa 6.21 maayilii kenna. 'K'n hirmaata 10^3tiif arfiilee hundleesoo hayyamama dha."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3147096\n"
-"help.text"
-msgid "<bookmark_value>FACTDOUBLE function</bookmark_value> <bookmark_value>factorials;numbers with increments of two</bookmark_value>"
-msgstr "<bookmark_value>fankishinii FACTDOUBLE</bookmark_value> <bookmark_value>hirmaatota;lakkoofsota laman dabalan</bookmark_value>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3147096\n"
-"36\n"
-"help.text"
-msgid "FACTDOUBLE"
-msgstr "FACTDOUBLE"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3151309\n"
-"37\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">Returns the double factorial of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">n hirmaata lakkoofsa lama kenna.</ahelp>"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154666\n"
-"38\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155121\n"
-"39\n"
-"help.text"
-msgid "FACTDOUBLE(Number)"
-msgstr "FACTDOUBLE(Lakkoofsa)"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3158440\n"
-"40\n"
-"help.text"
-msgid "Returns <emph>Number</emph> <emph>!!</emph>, the double factorial of <emph>Number</emph>, where <emph>Number</emph> is an integer greater than or equal to zero."
-msgstr "<emph>Number</emph> <emph>!!</emph> kenna, hirmaata lakkoofsa <emph>lam</emph>, yemmuu <emph>lakkofsii</emph> intiijerii irra guddaa ykn walqixaa duwwaa ta'e."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id2480849\n"
-"help.text"
-msgid "For even numbers FACTDOUBLE(n) returns:"
-msgstr "Lakkoofsota guutuuf FACTDOUBLE(n) kenna:"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id4181951\n"
-"help.text"
-msgid "2*4*6*8* ... *n"
-msgstr "2*4*6*8* ... *n"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id2927335\n"
-"help.text"
-msgid "For odd numbers FACTDOUBLE(n) returns:"
-msgstr "Lakkoofsota qaraati FACTDOUBLE(n) kennameeti:"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id2107303\n"
-"help.text"
-msgid "1*3*5*7* ... *n"
-msgstr "1*3*5*7* ... *n"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id4071779\n"
-"help.text"
-msgid "FACTDOUBLE(0) returns 1 by definition."
-msgstr "Hikoodhaan FACTDOUBLE(0)n 1 kenna."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154622\n"
-"42\n"
-"help.text"
-msgid "Example"
-msgstr "fakkeenya"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id7844477\n"
-"help.text"
-msgid "<item type=\"input\">=FACTDOUBLE(5)</item> returns 15."
-msgstr "<item type=\"input\">=FACTDOUBLE(5)</item> 15 kenna."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154116\n"
-"43\n"
-"help.text"
-msgid "<item type=\"input\">=FACTDOUBLE(6)</item> returns 48."
-msgstr "<item type=\"input\">=FACTDOUBLE(6)</item> 48 kenna."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id6478469\n"
-"help.text"
-msgid "<item type=\"input\">=FACTDOUBLE(0)</item> returns 1."
-msgstr "<item type=\"input\">=FACTDOUBLE(0)</item> 1 kenna."
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"tit\n"
-"help.text"
-msgid "Options"
-msgstr "Dirqaaloota"
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"hd_id2794274\n"
-"help.text"
-msgid "Options"
-msgstr "Dirqaaloota"
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"par_id6776940\n"
-"help.text"
-msgid "The Options dialog for the <link href=\"text/scalc/01/solver.xhp\">Solver</link> is used to set some options."
-msgstr "Qaaqni dirqaaloota<link href=\"text/scalc/01/solver.xhp\">furaadhaaf</link>dirqaalota murta'a ta'ee tokko qindeessuuf oola."
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"par_id393993\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a solver engine. The listbox is disabled if only one solver engine is installed. Solver engines can be installed as extensions.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mala fura filadhu.sanduuqni tarree kan inni hojjii isaa dhaabu malli furaa tokko qofaa yoo ijaaramudha , mallootni fura kun akka dheeraattoowwaanitti ijaaramuu danda'u.</ahelp>"
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"par_id5871761\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Configure the current solver.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">furaa ammaa qindeessa.</ahelp>"
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"par_id6531266\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">If the current entry in the Settings listbox allows to edit a value, you can click the Edit button. A dialog opens where you can change the value.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Galumsi ammaa kan qindaa'iinoota tarree sanduqa keessatti argamuu akka gulaaluuf yoo si eeyyame,qabdu gulaalaa cuqaasu dandessa.Bakka gatii jijjiiruuf barbaaddutti qaaqa bani.</ahelp>"
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"par_id3912778\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter or change the value.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gati galchi ykn jijjiiri.</ahelp>"
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"par_id3163853\n"
-"help.text"
-msgid "Use the Options dialog to configure the current solver engine."
-msgstr "Mala furaa ammaa fayyadamuun qaaqa dirqalaa qindeessi."
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"par_id121158\n"
-"help.text"
-msgid "You can install more solver engines as extensions, if available. Open Tools - Extension Manager and browse to the Extensions web site to search for extensions."
-msgstr "Yoo jira ta'eef,maloota furaa baay'ee akka dheeraattoowwaanitti ijaaruu dandeessa.Dheeraattoowwaan barbaadduuf Meeshaalee bani-Taaliga Dheeratessii itti ansuun dheerattoowwaan saphaphuu sakkata'i."
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"par_id3806878\n"
-"help.text"
-msgid "Select the solver engine to use and to configure from the listbox. The listbox is disabled if onle one solver engine is installed."
-msgstr "Mala furaa itti fayyadamuuf ta'ee qindeessuuf sanduqa tarree keessa filadhu,sanduuqni tarree kan inni hojii isaa dhabu yoo furan tokko qofa ijaramedha."
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"par_id130619\n"
-"help.text"
-msgid "In the Settings box, check all settings that you want to use for the current goal seeking operation. If the current option offers different values, the Edit button is enabled. Click Edit to open a dialog where you can change the value."
-msgstr "Sanduuqa qindaa'inoota keessatti,qindaa'inoota dalaagaalee barbacha galchii ammaa siif ta'aan hundaa mirkanneessii yoo dirqalli ammmaa gatiiwwaan kan biraa qabaate,qabduu gulaaltu hojii eegala.Gulaltu cuqasun qaaqa banuun bakkaa itti gatii jijjiirtuu argatta."
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"par_id9999694\n"
-"help.text"
-msgid "Click OK to accept the changes and to go back to the <link href=\"text/scalc/01/solver.xhp\">Solver</link> dialog."
-msgstr "Wanta jijjiiramee fudhaachuuf ykn qaaqa <link href=\"text/scalc/01/solver.xhp\">Furaa</link> duubatti deebisuuf Tole cuqaasi."
-
-#: 05080400.xhp
-msgctxt ""
-"05080400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Add"
-msgstr "Ida'i"
-
-#: 05080400.xhp
-msgctxt ""
-"05080400.xhp\n"
-"hd_id3149457\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05080400.xhp\" name=\"Add\">Add</link>"
-msgstr "<link href=\"text/scalc/01/05080400.xhp\" name=\"Add\">Ida'i</link>"
-
-#: 05080400.xhp
-msgctxt ""
-"05080400.xhp\n"
-"par_id3156423\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:AddPrintArea\">Adds the current selection to the defined print areas.</ahelp>"
-msgstr "<ahelp hid=\".uno:AddPrintArea\">Filannoowwan ammaa bakkaa maxxansaa hiikametti dabali.</ahelp>"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Styles and Formatting"
-msgstr "Akkaataalee fi Dhangeessuu"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"bm_id3150447\n"
-"help.text"
-msgid "<bookmark_value>Stylist, see Styles and Formatting window</bookmark_value> <bookmark_value>Styles and Formatting window</bookmark_value> <bookmark_value>formats; Styles and Formatting window</bookmark_value> <bookmark_value>formatting; Styles and Formatting window</bookmark_value> <bookmark_value>paint can for applying styles</bookmark_value>"
-msgstr "<bookmark_value>Bashaadaa, bashaadaa ilaaluu fifoddaa dhangeessuu</bookmark_value> <bookmark_value>bashaadaa ilaaluu fi foddaa dhangeessu</bookmark_value> <bookmark_value>Dhangeessa; Foddaa Akkaatessuu fi Dhangeessuu</bookmark_value> <bookmark_value>dhangeessuu; Foddaa Akkaatessuu fi Dhangeessuu</bookmark_value> <bookmark_value>fakkaastuun akkaataalee agarsiisuuf </bookmark_value>"
-
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"hd_id3150447\n"
-"1\n"
+"02150000.xhp\n"
+"par_id3153951\n"
+"23\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05100000.xhp\" name=\"Styles and Formatting\">Styles and Formatting</link>"
-msgstr "<link href=\"text/scalc/01/05100000.xhp\" name=\"Styles and Formatting\">Akkaataa fi Dhangeessuu</link>"
+msgid "Use <emph>Cut</emph> on the Standard bar to delete contents and formats without the dialog."
+msgstr "Qabeentota fi dhangiiwwan <emph>qaaqiidhaan ala</emph>kabala waltawaa irratti balleessuuf muri fayyadamaa."
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3147434\n"
-"2\n"
+"02150000.xhp\n"
+"hd_id3148575\n"
+"3\n"
"help.text"
-msgid "Use the Styles and Formatting window to assign styles to objects and text sections. You can update Styles, modify existing Styles or create new Styles."
-msgstr "Akkaataa fi Dhangeessuu foddaa fayyadamuun akkaataalee wantoota fi kutaalee barruuf ramaduuf. Akkaataalee haaromsuu dandeessa, akkaataalee jiran fooyyessi ykn akkaataalee haaraa uumi."
+msgid "Selection"
+msgstr "Filannoo"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
+"02150000.xhp\n"
"par_id3149665\n"
-"30\n"
-"help.text"
-msgid "The Styles and Formatting <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link> can remain open while editing the document."
-msgstr "Akkaatalee fi dhangeessuu<link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>yemmuu galmeen gulaalamu banaa ta'uu danda'a."
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"hd_id3150012\n"
-"36\n"
-"help.text"
-msgid "How to apply a cell style:"
-msgstr "Akkaataa man'ee akkatalee itti fayyadamnuu:"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_id3159155\n"
-"37\n"
-"help.text"
-msgid "Select the cell or cell range."
-msgstr "Man'ee ykn hangii man'ee fili."
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_id3145749\n"
-"38\n"
-"help.text"
-msgid "Double-click the style in the Styles and Formatting window."
-msgstr "Akkaataa foddaa dhangeessuu fi akkaataalee keessaa lama cuqqaasi."
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"hd_id3153877\n"
"4\n"
"help.text"
-msgid "Cell Styles"
-msgstr "Akkaataalee Man'ee"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_id3145801\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ParaStyle\">Displays the list of the available Cell Styles for <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"indirect cell formatting\">indirect cell formatting</link>.</ahelp>"
-msgstr "<ahelp hid=\".uno:ParaStyle\">akkaataalee tarree man'ee jiru<link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"indirect cell formatting\">indirect cell formatting</link>kanaaf agarsiisi.</ahelp>"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_id3150751\n"
-"help.text"
-msgid "<image id=\"img_id3153714\" src=\"sc/res/sf01.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153714\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153714\" src=\"sc/res/sf01.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153714\">Sajoo</alt></image>"
+msgid "This area lists the options for deleting contents."
+msgstr "Naannoon kun qabeentota haqaman tarreessa."
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3154255\n"
+"02150000.xhp\n"
+"hd_id3146975\n"
"5\n"
"help.text"
-msgid "Cell Styles"
-msgstr "Akkaataalee Man'ee"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"hd_id3153963\n"
-"7\n"
-"help.text"
-msgid "Page Styles"
-msgstr "Akkaataalee Fuulaa"
+msgid "Delete All"
+msgstr "Hunduma haquu"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3147003\n"
-"9\n"
+"02150000.xhp\n"
+"par_id3154729\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".uno:PageStyle\">Displays the Page Styles available for indirect page formatting.</ahelp>"
-msgstr "<ahelp hid=\".uno:PageStyle\">Fuula akkaataalee jiran fuula dhangeessuu naannootiif agarsisii.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/deleteall\">Deletes all content from the selected cell range.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/deleteall\">Qabeentota hundaa hammanga man'ee filatame irraa haqa </ahelp>"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3159100\n"
+"02150000.xhp\n"
+"hd_id3156286\n"
+"7\n"
"help.text"
-msgid "<image id=\"img_id3149814\" src=\"sw/imglst/sf04.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149814\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149814\" src=\"sw/imglst/sf04.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149814\">Sajoo</alt></image>"
+msgid "Text"
+msgstr "Barruu"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3150361\n"
+"02150000.xhp\n"
+"par_id3154015\n"
"8\n"
"help.text"
-msgid "Page Styles"
-msgstr "Akkaataalee Fuulaa"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"hd_id3150202\n"
-"10\n"
-"help.text"
-msgid "Fill Format Mode"
-msgstr "Haalata Dhangii Guutii"
+msgid "<ahelp hid=\"/modules/scalc/ui/deletecontents/text\">Deletes text only. Formats, formulas, numbers and dates are not affected.</ahelp>"
+msgstr "<ahelp hid=\"/modules/scalc/ui/deletecontents/text\">barruu qofa haqa.Dhangoonni,formullaawwan,lakkoofsonni fi guyyoonni hin dhiibeffaman.</ahelp>"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3155531\n"
-"12\n"
+"02150000.xhp\n"
+"hd_id3153840\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLDLG_WATERCAN\">Turns the Fill Format mode on and off. Use the paint can to assign the Style selected in the Styles and Formatting window.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEMPLDLG_WATERCAN\">Haalata dhangii guutii banuu ykn dhaamsuun garagalchi. Foddaa Akkaataalee fi Dhangeessuu keessaatti filatame hundeessuuf gaanoo diba fayyadami .</ahelp>"
+msgid "Numbers"
+msgstr "Lakkoofsota"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3155087\n"
+"02150000.xhp\n"
+"par_id3148405\n"
+"10\n"
"help.text"
-msgid "<image id=\"img_id3153068\" src=\"cmd/sc_fillstyle.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153068\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153068\" src=\"cmd/sc_fillstyle.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153068\">Sajoo</alt></image>"
+msgid "<ahelp hid=\"/modules/scalc/ui/deletecontents/numbers\">Deletes numbers only. Formats and formulas remain unchanged.</ahelp>"
+msgstr "<ahelp hid=\"/modules/scalc/ui/deletecontents/numbers\">Lakkoofsa qofa haqa.Dhangoonni fi foormullaa hin jijjiiraman.</ahelp>"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3156198\n"
+"02150000.xhp\n"
+"hd_id3155764\n"
"11\n"
"help.text"
-msgid "Fill Format Mode"
-msgstr "Haalata Dhangii Guutii"
+msgid "Date & time"
+msgstr "Guyyaa fi yeroo"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"hd_id3148870\n"
-"13\n"
+"02150000.xhp\n"
+"par_id3149567\n"
+"12\n"
"help.text"
-msgid "How to apply a new style with the paint can:"
-msgstr "Gaanoo dibaan akkaataa haraa akkamiin fayyadama:"
+msgid "<ahelp hid=\"/modules/scalc/ui/deletecontents/datetime\">Deletes date and time values. Formats, text, numbers and formulas remain unchanged.</ahelp>"
+msgstr "<ahelp hid=\"/modules/scalc/ui/deletecontents/datetime\">Gatii guyyaa fi yeroo haqa.Dhangiiwwan,barruu,lakkoofsonni fi formullaawwan hin jijjiiraman.</ahelp>"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3145078\n"
-"27\n"
+"02150000.xhp\n"
+"hd_id3154703\n"
+"13\n"
"help.text"
-msgid "Select the desired style from the Styles and Formatting window."
-msgstr "Foddaa Akkaataalee Dhangeessuu keessaa akkaataa barbaadame fili."
+msgid "Formulas"
+msgstr "Foormulaawwan"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3159098\n"
-"28\n"
+"02150000.xhp\n"
+"par_id3148485\n"
+"14\n"
"help.text"
-msgid "Click the <emph>Fill Format Mode</emph> icon."
-msgstr "Sajoo<emph>Haalata Dhangii Guutii</emph> cuqqaasi."
+msgid "<ahelp hid=\"/modules/scalc/ui/deletecontents/formulas\">Deletes formulas. Text, numbers, formats, dates and times remain unchanged.</ahelp>"
+msgstr "<ahelp hid=\"/modules/scalc/ui/deletecontents/formulas\">Foormullaawwan haqa.Barruu,dhangiiwwan,guyyoota fi yeroon hin jijjiiraman.</ahelp>"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3148609\n"
+"02150000.xhp\n"
+"hd_id3150300\n"
"15\n"
"help.text"
-msgid "Click a cell to format it, or drag your mouse over a certain range to format the whole range. Repeat this action for other cells and ranges."
-msgstr "Kana dhangeessuuf man'ee cuqqaasi,ykn hantuutee kee gara hangii murta'eeti harkisuun hangii dimshaashaa dhangeessi.Man'eewwanii fi Hangiiwwan biraatif gocha kana irra deebi'i."
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_id3149438\n"
-"29\n"
-"help.text"
-msgid "Click the <emph>Fill Format Mode</emph> again to exit this mode."
-msgstr "Haalata Dhangii Guutii<emph>lamata haalata kana keessaa bahuuf</emph> cuqqaasi."
+msgid "Comments"
+msgstr "Yaadota"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"hd_id3153975\n"
+"02150000.xhp\n"
+"par_id3154658\n"
"16\n"
"help.text"
-msgid "New Style from Selection"
-msgstr "Akkaataa Haaraa Filannoorraa"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_id3149499\n"
-"18\n"
-"help.text"
-msgid "<ahelp hid=\"HID_TEMPLDLG_NEWBYEXAMPLE\">Creates a new style based on the formatting of a selected object.</ahelp> Assign a name for the style in the <link href=\"text/shared/01/05140100.xhp\" name=\"Create Style\">Create Style</link> dialog."
-msgstr "<ahelp hid=\"HID_TEMPLDLG_NEWBYEXAMPLE\">Dhangeessuu wantoo filatamee irratti hunda'uudhaan akkaataa haraa uumii.</ahelp> Akkaataa <link href=\"text/shared/01/05140100.xhp\" name=\"Create Style\">n maqaa moggaasi. Akkaataa Qaaqa</link> uumii."
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_id3150050\n"
-"help.text"
-msgid "<image id=\"img_id3154649\" src=\"cmd/sc_stylenewbyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154649\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154649\" src=\"cmd/sc_stylenewbyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154649\">Sajoo</alt></image>"
+msgid "<ahelp hid=\"/modules/scalc/ui/deletecontents/comments\">Deletes comments added to cells. All other elements remain unchanged.</ahelp>"
+msgstr "<ahelp hid=\"/modules/scalc/ui/deletecontents/comments\">Yaadota man'eewwanitti ida'aman haqa. Miseensonni biraa hunduu hin jijjiirraman.</ahelp>"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3146963\n"
+"02150000.xhp\n"
+"hd_id3155112\n"
"17\n"
"help.text"
-msgid "New Style from Selection"
-msgstr "Akkaataa Haaraa Filannoorraa"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"hd_id3153813\n"
-"19\n"
-"help.text"
-msgid "Update Style"
-msgstr "Akkaataa Haaromsi"
+msgid "Formats"
+msgstr "Dhangiiwwan"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3154707\n"
-"21\n"
+"02150000.xhp\n"
+"par_id3146134\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLDLG_UPDATEBYEXAMPLE\">Updates the Style selected in the Styles and Formatting window with the current formatting of the selected object.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEMPLDLG_UPDATEBYEXAMPLE\">Foddaa akkaataalee fi dhangeessuu keessaati wantoon filatame dhangeessuu ammee waliin akkaataan filamee haromfama.</ahelp>"
+msgid "<ahelp hid=\"/modules/scalc/ui/deletecontents/formats\">Deletes format attributes applied to cells. All cell content remains unchanged.</ahelp>"
+msgstr "<ahelp hid=\"/modules/scalc/ui/deletecontents/formats\">Dhangiiwwan man'ee fayyadamuuf ga'ee qaban haqa.Qabeentaan man'ee hunduu hin jijjiiraman.</ahelp>"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3145118\n"
+"02150000.xhp\n"
+"hd_id3150088\n"
+"19\n"
"help.text"
-msgid "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155754\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155754\">Sajoo</alt></image>"
+msgid "Objects"
+msgstr "Wantoota"
-#: 05100000.xhp
+#: 02150000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3147501\n"
+"02150000.xhp\n"
+"par_id3152990\n"
"20\n"
"help.text"
-msgid "Update Style"
-msgstr "Akkaataa Haaromsi"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_idN109BE\n"
-"help.text"
-msgid "Style List"
-msgstr "Tarree Akkaataa"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_idN109C2\n"
-"help.text"
-msgid "<ahelp hid=\"HID_TEMPLATE_FMT\">Displays the list of the styles from the selected style category.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEMPLATE_FMT\">Akakuu Akkaataa filame keessaa tarree akkaataalee agarsiisa .</ahelp>"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_idN109D1\n"
-"help.text"
-msgid "In the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> you can choose commands to create a new style, delete a user-defined style, or change the selected style."
-msgstr "<link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">Baafata halqara</link> keessaati akkaataa haaa uumuuf ajejja filuu dandeessa, akkaataa fayyadaman hikkamuu haqi, ykn akkaataa filatamee jijjijri."
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"hd_id3149053\n"
-"24\n"
-"help.text"
-msgid "Style Groups"
-msgstr "Gartuuwwan Akkaataa"
+msgid "<ahelp hid=\"/modules/scalc/ui/deletecontents/objects\">Deletes objects. All cell content remains unchanged.</ahelp>"
+msgstr "<ahelp hid=\"/modules/scalc/ui/deletecontents/objects\">Wantoota haqa.Qabantaan man'ee hunduu hin jijjiiraman.</ahelp>"
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_id3147299\n"
-"25\n"
-"help.text"
-msgid "<ahelp hid=\"HID_TEMPLATE_FILTER\">Lists the available style groups.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEMPLATE_FILTER\">Gartuuwwan jiran tarreessa.</ahelp>"
-
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
+"02160000.xhp\n"
"tit\n"
"help.text"
-msgid "Creating Names"
-msgstr "Maqoota Uuma"
+msgid "Delete Cells"
+msgstr "Man'eewwan haquu"
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"bm_id3147264\n"
+"02160000.xhp\n"
+"bm_id3153726\n"
"help.text"
-msgid "<bookmark_value>cell ranges;creating names automatically</bookmark_value><bookmark_value>names; for cell ranges</bookmark_value>"
-msgstr "<bookmark_value>hangiiwwan man'ee;Ofumaan maqoota uuma </bookmark_value><bookmark_value>maqoota; hangiiwwan man'eef</bookmark_value>"
+msgid "<bookmark_value>cells; deleting cells</bookmark_value><bookmark_value>columns; deleting</bookmark_value><bookmark_value>rows; deleting</bookmark_value><bookmark_value>spreadsheets; deleting cells</bookmark_value><bookmark_value>deleting;cells/rows/columns</bookmark_value>"
+msgstr "<bookmark_value>man'eewwan; man'eewwan haquu</bookmark_value><bookmark_value>tarjaawwan; haquu</bookmark_value><bookmark_value>tarreewwan;haquu</bookmark_value><bookmark_value>wardiiwwan; man'eewwan haquu</bookmark_value><bookmark_value>haquu; man'eewwan/tarreewwan/tarjaawwan</bookmark_value>"
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"hd_id3147264\n"
+"02160000.xhp\n"
+"hd_id3153726\n"
"1\n"
"help.text"
-msgid "Creating Names"
-msgstr "Maqoota Uuma"
+msgid "Delete Cells"
+msgstr "Man'eewwan haquu"
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"par_id3153969\n"
+"02160000.xhp\n"
+"par_id3154490\n"
"2\n"
"help.text"
-msgid "<variable id=\"namenuebernehmentext\"><ahelp hid=\".uno:CreateNames\">Allows you to automatically name multiple cell ranges.</ahelp></variable>"
-msgstr "<variable id=\"namenuebernehmentext\"><ahelp hid=\".uno:CreateNames\">Hangiiwwan man'ee baay'ee ofumaan akka moggastuu si eeyyama.</ahelp></variable>"
-
-#: 04070300.xhp
-msgctxt ""
-"04070300.xhp\n"
-"par_id3156280\n"
-"13\n"
-"help.text"
-msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
-msgstr "Nannoo hangiiwwan moggaasuu barbaaddu qabate hundaa fili. Itti aansuun <emph>Saagi - Maqoota - Uumi</emph>fili.Kunis qaaqa <emph>Maqoota Uumi</emph> kan dirqalaalee maqaa barbaadduu keessaa filattu bana"
+msgid "<variable id=\"zellenloeschentext\"><ahelp hid=\".uno:DeleteCell\">Completely deletes selected cells, columns or rows. The cells below or to the right of the deleted cells will fill the space.</ahelp></variable> Note that the selected delete option is stored and reloaded when the dialog is next called."
+msgstr "<variable id=\"zellenloeschentext\"><ahelp hid=\".uno:DeleteCell\">Man'eewwan, tarjaawwan ykn tarreewwan hundumaa haqa. Man'eewwan garjalaa ykn garmirgaa man'eewwan haqamaniin bakkaduwwaa guutu.</ahelp></variable> Hubadhu qaaqeen itti aanu yoo filatame filannoowwan haqaman ni kuufamu akkasumas deebi'anii fe'amu."
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"hd_id3151116\n"
+"02160000.xhp\n"
+"hd_id3149121\n"
"3\n"
"help.text"
-msgid "Create names from"
-msgstr "Maqaa Kana Irraa Uuma"
+msgid "Selection"
+msgstr "Filannoo"
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"par_id3152597\n"
+"02160000.xhp\n"
+"par_id3150751\n"
"4\n"
"help.text"
-msgid "Defines which part of the spreadsheet is to be used for creating the name."
-msgstr "Maqaa uumudhaaf kutaa wardii isa kamtuu akka fayyadamu hiika."
+msgid "This area contains options for specifying how sheets are displayed after deleting cells."
+msgstr "Naannoo kun filannoo wardiin tokko edda man'eewwan haqamaniin booda akkamitti akka mul'atan agarsiisa."
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"hd_id3153729\n"
+"02160000.xhp\n"
+"hd_id3155767\n"
"5\n"
"help.text"
-msgid "Top row"
-msgstr "Tarree gubbaa"
+msgid "Shift cells up"
+msgstr "Man'eewwan ol jijjiiruu"
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"par_id3149263\n"
+"02160000.xhp\n"
+"par_id3153714\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_TOP\">Creates the range names from the header row of the selected range.</ahelp> Each column receives a separated name and cell reference."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_TOP\">Tarree gubbaa hangii filamee irraa maqaawwan hangii uuma.</ahelp> Tokko tokkoo tarjaaf maqaa addaa fi wabii man'ee fudhata."
+msgid "<ahelp hid=\"modules/scalc/ui/deletecells/up\">Fills the space produced by the deleted cells with the cells underneath it.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/deletecells/up\">Bakka duuwwaa uumame man'eewwan haqamaniin guuta.</ahelp>"
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"hd_id3146984\n"
+"02160000.xhp\n"
+"hd_id3156382\n"
"7\n"
"help.text"
-msgid "Left Column"
-msgstr "Tarjaa Bitaa"
+msgid "Shift cells left"
+msgstr "Man'eewwan bitaa jijjiiruu"
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"par_id3153190\n"
+"02160000.xhp\n"
+"par_id3154702\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_LEFT\">Creates the range names from the entries in the first column of the selected sheet range.</ahelp> Each row receives a separated name and cell reference."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_LEFT\">Galiinsa tarjaa jalqabaa hangii wardii filamee irraa maqaawwan hangii uuma.</ahelp> Tokko tokkoon tarjaa maqaa addaa fi wabii man'ee fudhata."
+msgid "<ahelp hid=\"modules/scalc/ui/deletecells/left\">Fills the resulting space by the cells to the right of the deleted cells.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/deletecells/left\">Bakka duuwwaa argaman man'eewwan gara mirgaa,man'eewwan haqamaniitti argamaniin guuta.</ahelp>"
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"hd_id3156284\n"
+"02160000.xhp\n"
+"hd_id3146918\n"
"9\n"
"help.text"
-msgid "Bottom row"
-msgstr "Tarree gadii"
+msgid "Delete entire row(s)"
+msgstr "Tarree(wwan) hundaa haquu"
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"par_id3147124\n"
+"02160000.xhp\n"
+"par_id3148487\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_BOTTOM\">Creates the range names from the entries in the last row of the selected sheet range.</ahelp> Each column receives a separated name and cell reference."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_BOTTOM\">Galiinsa tarree dhumaa wardii filamee irraa maqaawwan hangii uuma.</ahelp> tokko tokkoon tarjaa maqaa addaa fi wabii man'ee fudhata."
+msgid "<ahelp hid=\".uno:DeleteRows\">After selecting at least one cell, deletes the entire row from the sheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteRows\">Man'een takkallee edda filatamee booda,tarreewwan hundaa wardiirraa haqa.</ahelp>"
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"hd_id3154731\n"
+"02160000.xhp\n"
+"hd_id3155114\n"
"11\n"
"help.text"
-msgid "Right Column"
-msgstr "Tarjaa mirgaa"
+msgid "Delete entire column(s)"
+msgstr "Tarjaa(wwan) hundaa haquu"
-#: 04070300.xhp
+#: 02160000.xhp
msgctxt ""
-"04070300.xhp\n"
-"par_id3153158\n"
+"02160000.xhp\n"
+"par_id3150086\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_RIGHT\">Creates the range names from the entries in the last column of the selected sheet range.</ahelp> Each row receives a separated name and cell reference."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_RIGHT\">Galinsa keessaa tarjaa xumuura hangii wardii filameef hangii maqoota uuma</ahelp> Tokko tokkoon tarree maqaa addaa fi wabii man'ee fudhata."
+msgid "<ahelp hid=\".uno:DeleteColumns\">After selecting at least one cell, deletes the entire column from the sheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteColumns\">Man'een takkallee edda filatamee booda,tajaa hundaa wardiirraa haqa.</ahelp>"
+
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"par_id3166424\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/02150000.xhp\" name=\"Deleting Contents\">Deleting Contents</link>"
+msgstr "<link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">Qabeentoota Haqi</link>"
#: 02170000.xhp
-#, fuzzy
msgctxt ""
"02170000.xhp\n"
"tit\n"
@@ -6428,7 +2000,6 @@ msgid "<bookmark_value>spreadsheets; deleting</bookmark_value><bookmark_value>sh
msgstr "<bookmark_value>wardii qajjoojjii; haquu</bookmark_value><bookmark_value>wardiiwwan; haquu</bookmark_value><bookmark_value>haquu; wardiiqajjoojjii</bookmark_value>"
#: 02170000.xhp
-#, fuzzy
msgctxt ""
"02170000.xhp\n"
"hd_id3156424\n"
@@ -6491,4659 +2062,3523 @@ msgctxt ""
msgid "Cancels the dialog. No delete is performed."
msgstr "Qaaqee balleessi.Haquun hin danda'amu."
-#: 12050200.xhp
+#: 02180000.xhp
msgctxt ""
-"12050200.xhp\n"
+"02180000.xhp\n"
"tit\n"
"help.text"
-msgid "Options"
-msgstr "Dirqalaalee"
+msgid "Move or Copy a Sheet"
+msgstr "Wardii sochoosuu ykn garagalchuu"
-#: 12050200.xhp
+#: 02180000.xhp
msgctxt ""
-"12050200.xhp\n"
-"bm_id3154758\n"
+"02180000.xhp\n"
+"bm_id3153360\n"
"help.text"
-msgid "<bookmark_value>subtotals; sorting options</bookmark_value>"
-msgstr "<bookmark_value>undamtaa xiqqaa; Dirqalaalee Fooyinsaa</bookmark_value>"
+msgid "<bookmark_value>spreadsheets; moving</bookmark_value><bookmark_value>spreadsheets; copying</bookmark_value><bookmark_value>moving; spreadsheets</bookmark_value><bookmark_value>copying; spreadsheets</bookmark_value>"
+msgstr "<bookmark_value>Wardii qajjoojjii; sochoosuu</bookmark_value><bookmark_value>Wardii qajjoojjii; garagalchuu</bookmark_value><bookmark_value>sochoosuu;Wardii qajjoojjii</bookmark_value><bookmark_value>garagalchuu; Wardii qajjoojjii</bookmark_value>"
-#: 12050200.xhp
+#: 02180000.xhp
msgctxt ""
-"12050200.xhp\n"
-"hd_id3154758\n"
+"02180000.xhp\n"
+"hd_id3153360\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12050200.xhp\" name=\"Options\">Options</link>"
-msgstr "<link href=\"text/scalc/01/12050200.xhp\" name=\"Options\">Dirqalaalee</link>"
+msgid "Move or Copy a Sheet"
+msgstr "Wardii sochoosuu ykn garagalchuu"
-#: 12050200.xhp
+#: 02180000.xhp
msgctxt ""
-"12050200.xhp\n"
-"par_id3154124\n"
+"02180000.xhp\n"
+"par_id3154686\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_SCPAGE_SUBT_OPTIONS\">Specify the settings for calculating and presenting subtotals.</ahelp>"
-msgstr "<ahelp hid=\"HID_SCPAGE_SUBT_OPTIONS\">Qindaa'inoota hundamtaa xiqqaa shallaguu fi dhiyyeessu ifteessi.</ahelp>"
+msgid "<variable id=\"tabelleverschiebenkopierentext\"><ahelp hid=\".uno:Move\">Moves or copies a sheet to a new location in the document or to a different document.</ahelp></variable>"
+msgstr "<variable id=\"tabelleverschiebenkopierentext\"><ahelp hid=\".uno:Move\">Wardii galmee keessa jiru gara iddoo haaraatti ykn galmee biraatti sochoosa ykn garagalcha.</ahelp></variable>"
-#: 12050200.xhp
+#: 02180000.xhp
msgctxt ""
-"12050200.xhp\n"
-"hd_id3156422\n"
+"02180000.xhp\n"
+"par_id2282479\n"
+"help.text"
+msgid "When you copy and paste cells containing <link href=\"text/scalc/01/04060102.xhp\">date values</link> between different spreadsheets, both spreadsheet documents must be set to the same date base. If date bases differ, the displayed date values will change!"
+msgstr "Yoo man'een <link href=\"text/scalc/01/04060102.xhp\">gatii guyyaa</link> qabu wardiiwwan qajjoojjii adda adda gidduutti garagalchituu fi maxxansitu galmeen wardii qajjoojjii qindaa'uu qaba.Yoo bu'uurri guyyaa adda ta'e guyyaan mul'atu ni jijjiirama!"
+
+#: 02180000.xhp
+msgctxt ""
+"02180000.xhp\n"
+"hd_id3163710\n"
"3\n"
"help.text"
-msgid "Page break between groups"
-msgstr "kutaa fuulaa gareewan gidduutti"
+msgid "To Document"
+msgstr "Gara galmee"
-#: 12050200.xhp
+#: 02180000.xhp
msgctxt ""
-"12050200.xhp\n"
-"par_id3147317\n"
+"02180000.xhp\n"
+"par_id3148645\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_PAGEBREAK\">Inserts a new page after each group of subtotaled data.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_PAGEBREAK\">Gurmii deetaa hundamtaa xiqqaan shallagameef hundaa dhumarratti fuula haaraa saaga.</ahelp>"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_DEST\">Indicates where the current sheet is to be moved or copied to.</ahelp> Select <emph>- new document -</emph> if you want to create a new location for the sheet to be moved or copied."
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_DEST\">Wardiin ammee garamitti akka socha'u ykn garagaru agarsiisa.</ahelp> Wardii garagaruuf <emph>ykn socho'uuf </emph> iddoo haaraa yoo uumuu barbaade galmee haaraa filadhu."
-#: 12050200.xhp
+#: 02180000.xhp
msgctxt ""
-"12050200.xhp\n"
-"hd_id3146985\n"
+"02180000.xhp\n"
+"hd_id3154012\n"
"5\n"
"help.text"
-msgid "Case sensitive"
-msgstr "Qub-suukanaawaa"
+msgid "Insert Before"
+msgstr "Dursa saaguu"
-#: 12050200.xhp
+#: 02180000.xhp
msgctxt ""
-"12050200.xhp\n"
-"par_id3153190\n"
+"02180000.xhp\n"
+"par_id3145366\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_CASE\">Recalculates subtotals when you change the case of a data label.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_CASE\">Yommuu haala qubee moggaasa deetaa jijjiirtu hundamtaa xiqqaa lamherreega.</ahelp>"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_INSERT\">The current sheet is moved or copied in front of the selected sheet.</ahelp> The <emph>- move to end position -</emph> option places the current sheet at the end."
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_INSERT\">Wardiin ammee gara fuldura wardii filatameetti socho'ama ykn garagara.</ahelp> Filannoon <emph> gara dhumaatti sochoosi </emph> jedhu dhumarratti wardii ammee qabata."
-#: 12050200.xhp
+#: 02180000.xhp
msgctxt ""
-"12050200.xhp\n"
-"hd_id3151119\n"
+"02180000.xhp\n"
+"hd_id3153726\n"
"7\n"
"help.text"
-msgid "Pre-sort area according to groups"
-msgstr "Akkaata gareewwaniitti iddoo dursa fooyinsaa"
+msgid "Copy"
+msgstr "Garagalchuu"
-#: 12050200.xhp
+#: 02180000.xhp
msgctxt ""
-"12050200.xhp\n"
-"par_id3149664\n"
+"02180000.xhp\n"
+"par_id3144764\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_SORT\">Sorts the area that you selected in the <emph>Group by</emph> box of the Group tabs according to the columns that you selected.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_SORT\">Iddoo garee cancaalotaa <emph>Ittiin Gurmeessi</emph> filatae akkataa tarjaawwan filteetti fooya.</ahelp>"
-
-#: 12050200.xhp
-msgctxt ""
-"12050200.xhp\n"
-"hd_id3153951\n"
-"9\n"
-"help.text"
-msgid "Sort"
-msgstr "Fooyi"
-
-#: 12050200.xhp
-#, fuzzy
-msgctxt ""
-"12050200.xhp\n"
-"hd_id3145252\n"
-"11\n"
-"help.text"
-msgid "Include formats"
-msgstr "Dhangiiwwan dabali"
-
-#: 12050200.xhp
-msgctxt ""
-"12050200.xhp\n"
-"par_id3147125\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_FORMATS\">Considers formatting attributes when sorting.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_FORMATS\">Yommuu fooyinsaa amaloota dhangii ni dabalata.</ahelp>"
-
-#: 12050200.xhp
-#, fuzzy
-msgctxt ""
-"12050200.xhp\n"
-"hd_id3155418\n"
-"13\n"
-"help.text"
-msgid "Custom sort order"
-msgstr "Tartiiba fooyi mammiloo"
-
-#: 12050200.xhp
-msgctxt ""
-"12050200.xhp\n"
-"par_id3149400\n"
-"14\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SUBT_OPTIONS:LB_USERDEF\">Uses a custom sorting order that you defined in the Options dialog box at <emph>%PRODUCTNAME Calc - Sort Lists</emph>.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SUBT_OPTIONS:LB_USERDEF\">Tartiiba fooyi maamiloo <emph>meshaalee - Dirqalaalee - %PRODUCTNAME Calc - Tarreewwan fooyi</emph> jalatti qindeessiteetti fayyadama.</ahelp>"
-
-#: 12050200.xhp
-#, fuzzy
-msgctxt ""
-"12050200.xhp\n"
-"hd_id3149121\n"
-"15\n"
-"help.text"
-msgid "Ascending"
-msgstr "#-#-#-#-# autopi.po (PACKAGE VERSION) #-#-#-#-#\\nDabaluu\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nOlee"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_MOVETAB:BTN_COPY\">Specifies that the sheet is to be copied. If the option is unmarked, the sheet is moved.</ahelp> Moving sheets is the default."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_MOVETAB:BTN_COPY\">Wardiin akka garagaru adda baasa.Yoo filannoon adda hin baane wardiin ni socho'a.</ahelp> Wardiiwwan sochoosuun durtiidha."
-#: 12050200.xhp
+#: 02190000.xhp
msgctxt ""
-"12050200.xhp\n"
-"par_id3155068\n"
-"16\n"
+"02190000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_ASCENDING\">Sorts beginning with the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on Tools - Options - Language settings - Languages."
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_ASCENDING\">Gatii xiqqaa irraa eegaluun fooya.Seerota fooyinsaa Deetaa - Fooyi - Dirqalaalee irraa qindessuu dandeessa.Durtii Meeshaalee - Dirqalaalee - Qindaa'inoota Afaanii - Afaanota irraa qindeessita.</ahelp>"
+msgid "Delete Manual Breaks"
+msgstr "Citoota Hujeekaa haqi"
-#: 12050200.xhp
+#: 02190000.xhp
msgctxt ""
-"12050200.xhp\n"
-"hd_id3155443\n"
-"17\n"
+"02190000.xhp\n"
+"hd_id3150541\n"
+"1\n"
"help.text"
-msgid "Descending"
-msgstr "Gadee"
+msgid "<link href=\"text/scalc/01/02190000.xhp\" name=\"Delete Manual Breaks\">Delete Manual Break</link>"
+msgstr "<link href=\"text/scalc/01/02190000.xhp\" name=\"Delete Manual Breaks\">Citoota Hujeekaa Haqi</link>"
-#: 12050200.xhp
+#: 02190000.xhp
msgctxt ""
-"12050200.xhp\n"
-"par_id3153766\n"
-"18\n"
+"02190000.xhp\n"
+"par_id3154365\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_DESCENDING\">Sorts beginning with the highest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on Tools - Options - Language settings - Languages."
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_DESCENDING\">Gatii guddaa irraa eegaluun fooya.Seerota fooyinsaa Deetaa - Fooyi - Dirqalaalee irraa qindessuu dandeessa.Durtii Meeshaalee - Dirqalaalee - Qindaa'inoota Afaanii - Afaanota irraa qindeessita.</ahelp>"
+msgid "<ahelp hid=\".\">Choose the type of manual break that you want to delete.</ahelp>"
+msgstr "<ahelp hid=\".\">Gosa cita hujeekaa haquu barbvaaddu filadhu.</ahelp>"
-#: 04060112.xhp
+#: 02190100.xhp
msgctxt ""
-"04060112.xhp\n"
+"02190100.xhp\n"
"tit\n"
"help.text"
-msgid "Add-in for Programming in $[officename] Calc"
-msgstr "Idaatuu Progiramingii $[officename] Calc keesaatif"
+msgid "Row Break"
+msgstr "Cita tarree"
-#: 04060112.xhp
+#: 02190100.xhp
msgctxt ""
-"04060112.xhp\n"
-"bm_id3151076\n"
+"02190100.xhp\n"
+"bm_id3156326\n"
"help.text"
-msgid "<bookmark_value>programming; add-ins</bookmark_value><bookmark_value>shared libraries; programming</bookmark_value><bookmark_value>external DLL functions</bookmark_value><bookmark_value>functions; $[officename] Calc add-in DLL</bookmark_value><bookmark_value>add-ins; for programming</bookmark_value>"
-msgstr "<bookmark_value>progiramingii; idaatuu</bookmark_value><bookmark_value>manneen kitaaba yagutoo; pirogiramingii</bookmark_value><bookmark_value>fankishinii DLL alaantoo</bookmark_value><bookmark_value>fankishinoota; $[officename] Calc idaatuu DLL</bookmark_value><bookmark_value>idaatuuwwan; pirogiramingiidhaf</bookmark_value>"
+msgid "<bookmark_value>spreadsheets; deleting row breaks</bookmark_value><bookmark_value>deleting;manual row breaks</bookmark_value><bookmark_value>row breaks; deleting</bookmark_value>"
+msgstr "<bookmark_value>wardiiwwan; citoota tarree</bookmark_value><bookmark_value>haquu;citoota hujeeka tarree</bookmark_value><bookmark_value>citoota tarree; haquu</bookmark_value>"
-#: 04060112.xhp
+#: 02190100.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3151076\n"
+"02190100.xhp\n"
+"hd_id3156326\n"
"1\n"
"help.text"
-msgid "Add-in for Programming in $[officename] Calc"
-msgstr "Idaatoo piroograamiinigii $[officename] Calc keessatti"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3147001\n"
-"220\n"
-"help.text"
-msgid "The method of extending Calc by Add-Ins that is described in the following is outdated. The interfaces are still valid and supported, to ensure compatibility with existing Add-Ins, but for programming new Add-Ins you should use the new <link href=\"text/shared/guide/integratinguno.xhp\" name=\"API functions\">API functions</link>."
-msgstr "Malli Idaatuuwwan Calc armaan gad keessatti ibsameetiin bal'isuu hojiin ala ta'eera. Idaatuuwwan dura jiran waliin akka walsiman mirkaneeffachuuf quunnamoonni ammas gataa'oo fi deeggaramoodha, garuu Idaatuuwwan haaraa saganteessuuf <link href=\"text/shared/guide/integratinguno.xhp\" name=\"API functions\">fankishinoota API</link> haaraa fayyadami."
+msgid "<link href=\"text/scalc/01/02190100.xhp\" name=\"Row Break\">Row Break</link>"
+msgstr "<link href=\"text/scalc/01/02190100.xhp\" name=\"Row Break\">Cita tarree</link>"
-#: 04060112.xhp
+#: 02190100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150361\n"
+"02190100.xhp\n"
+"par_id3154366\n"
"2\n"
"help.text"
-msgid "$[officename] Calc can be expanded by Add-Ins, which are external programming modules providing additional functions for working with spreadsheets. These are listed in the <emph>Function Wizard</emph> in the <emph>Add-In</emph> category. If you would like to program an Add-In yourself, you can learn here which functions must be exported by the <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>external DLL</defaultinline></switchinline> so that the Add-In can be successfully attached."
-msgstr "$[officename] Calc Idaatuuwwaniin, moojuulota saganteessuu alaa wardiiwwaniin hojjachuuf fankishinoota dabalataa kennaniin bal'achuu danda'a. Kanneen <emph>Masaka Fankishinii</emph> keessaa akaakuu <emph>Idaatuu</emph> keessatti tarreeffamaniiru. Idaatuu ofuma keetiin saganteessuu yoo barbaadde, Idaatuun milkaa'inaan akka miiltessamu fankishinoota kamtu <switchinline select=\"sys\"><caseinline select=\"UNIX\">manbarroo yagutootiin </caseinline><defaultinline>DLL alaatiin</defaultinline></switchinline> akka alergame baruu ni dandeessa."
+msgid "<ahelp hid=\".uno:DeleteRowbreak\">Removes the manual row break above the active cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteRowbreak\">Cita hujeeka tarree man'ee ka'aatii ol jiru haqa.</ahelp>"
-#: 04060112.xhp
+#: 02190100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149211\n"
+"02190100.xhp\n"
+"par_id3151041\n"
"3\n"
"help.text"
-msgid "$[officename] searches the Add-in folder defined in the configuration for a suitable <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>DLL</defaultinline></switchinline>. To be recognized by $[officename], the <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>DLL</defaultinline></switchinline> must have certain properties, as explained in the following. This information allows you to program your own Add-In for <emph>Function Wizard</emph> of $[officename] Calc."
-msgstr "$[officename] ukaankaa keessatti ida'ii qindaayina keessatti qindaa'e barbaada <switchinline select=\"sys\"><caseinline select=\"UNIX\">kuusaa sagantaa hiraa mijataa </caseinline><defaultinline>DLL</defaultinline></switchinline>. $[officename] dhaan fudhatama argachuuf, <switchinline select=\"sys\"><caseinline select=\"UNIX\">kuusaa sagantaa hiraa </caseinline><defaultinline>DLL</defaultinline></switchinline> amaloota addaa qabaachuu qaba, akka armaan gadii keessatti ibsametti. Odeeffannoon kun keessatti-ida'ii mataa kee akka saganteesitu si gargaara <emph>Faankishinii Masakaa</emph>$[officename] Calc."
+msgid "Position the cursor in a cell directly below the row break indicated by a horizontal line and choose <emph>Edit - Delete Manual Break - Row Break</emph>. The manual row break is removed."
+msgstr "Man'ee cita tarree sarara surdalaan mul'ifame gara gadii jiru keessa qaree qubachiisiiti <emph>Gulaaluu - Cita Hujeekaa Haqi - Cita Tarree</emph> filadhu.Citni hujeeka tarree haqameera."
-#: 04060112.xhp
+#: 02190200.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3146981\n"
-"4\n"
+"02190200.xhp\n"
+"tit\n"
"help.text"
-msgid "The Add-In Concept"
-msgstr "Yaada Keessatti-Ida'ii"
+msgid "Column Break"
+msgstr "Cita Tarjaa"
-#: 04060112.xhp
+#: 02190200.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3156292\n"
-"5\n"
+"02190200.xhp\n"
+"bm_id3151384\n"
"help.text"
-msgid "Each Add-In library provides several functions. Some functions are used for administrative purposes. You can choose almost any name for your own functions. However, they must also follow certain rules regarding parameter passing. The exact naming and calling conventions vary for different platforms."
-msgstr "Kuusaan sagantaa keessatti-ida'ii hundi faankishinoota ni kennu. Faankishinootni gariin dhimma bulchiinsaaf oolu. Faankishinoota keetiif maqaa barbaadde filachuu dandeessa. Haa ta'u malee, ulaagaa dabarsuu irratti seeroota barbaachisan hordofuu qaba. Waliigalteewwan maqaa kennuu fi waamuu sirrii hujeffannoowwan adda addaaf tokko miti."
+msgid "<bookmark_value>spreadsheets;deleting column breaks</bookmark_value><bookmark_value>deleting;manual column breaks</bookmark_value><bookmark_value>column breaks;deleting</bookmark_value>"
+msgstr "<bookmark_value>wardiiwwan;cita tarjaa haquu</bookmark_value><bookmark_value>haquu;citoota tarjaa hujeeka</bookmark_value><bookmark_value>citoota tarjaa;haquu</bookmark_value>"
-#: 04060112.xhp
+#: 02190200.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3152890\n"
-"6\n"
+"02190200.xhp\n"
+"hd_id3151384\n"
+"1\n"
"help.text"
-msgid "Functions of <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>AddIn DLL</defaultinline></switchinline>"
-msgstr "Faankishinootni <switchinline select=\"sys\"><caseinline select=\"UNIX\">Kuusaa Sagantaa Hiraa </caseinline><defaultinline>AddIn DLL</defaultinline></switchinline>"
+msgid "<link href=\"text/scalc/01/02190200.xhp\" name=\"Column Break\">Column Break</link>"
+msgstr "<link href=\"text/scalc/01/02190200.xhp\" name=\"Column Break\">Cita Tarjaa</link>"
-#: 04060112.xhp
+#: 02190200.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148837\n"
-"7\n"
+"02190200.xhp\n"
+"par_id3154124\n"
+"2\n"
"help.text"
-msgid "At a minimum, the administrative functions <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionCount\">GetFunctionCount</link> and <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> must exist. Using these, the functions as well as parameter types and return values can be determined. As return values, the Double and String types are supported. As parameters, additionally the cell areas <link href=\"text/scalc/01/04060112.xhp\" name=\"Double Array\">Double Array</link>, <link href=\"text/scalc/01/04060112.xhp\" name=\"String Array\">String Array</link>, and <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell Array\">Cell Array</link> are supported."
-msgstr "Gadaanaatin, faankishinootni bulchiinsaa <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionCount\">FaankishiniiLakkaawwiiArgadhu</link> fi <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">FaankishiniiDeetaaargadhuu</link> jiraachuu qaba. Kana fayyadamuun, faankishinootni akkasumas gosootni ulaagaa fi gatiiwwan deebii argamuu danda'u. Akka gatiiwwan deebiitti, gosootni dachaa fi diraa ni deeggaramu. Akka ulaagaaleetti, dabalataan naannoowwan mandhee <link href=\"text/scalc/01/04060112.xhp\" name=\"Double Array\">Waraantoo Dachaa</link>, <link href=\"text/scalc/01/04060112.xhp\" name=\"String Array\">Waraantoo Diraa</link>, fi <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell Array\">Waraantoo Mandhee</link> ni deeggaramu."
+msgid "<ahelp hid=\".uno:DeleteColumnbreak\">Removes a manual column break to the left of the active cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteColumnbreak\">Cita hujeeka tarjaa bita man'ee ka'aatti argamu haqa.</ahelp>"
-#: 04060112.xhp
+#: 02190200.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148604\n"
-"8\n"
+"02190200.xhp\n"
+"par_id3145173\n"
+"3\n"
"help.text"
-msgid "Parameters are passed using references. Therefore, a change of these values is basically possible. However, this is not supported in $[officename] Calc because it does not make sense within spreadsheets."
-msgstr "Ulaagaaleen wabii fayyadamuun ni dabarfamu. Kanaafuu, jijjiirraan gatiiwwan kanaa bu'uuraan ni danda'amu. Haa ta'u malee, kun $[officename] Calc dhaan hin deeggaramu sababni isaas wardii waliin hiikkaa hin kennu."
+msgid "Position the cursor in the cell to the right of the column break indicated by a vertical line and choose <emph>Edit - Delete Manual Break - Column Break</emph>. The manual column break is removed."
+msgstr "Man'ee gara mirgaa tarjaa sarara sarjaadhaan mul'ifame qubachiisiiti <emph>Gulaali - Cita Hujeekaa Haqi - Cita Tarree</emph>filadhu."
-#: 04060112.xhp
+#: 02200000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150112\n"
-"9\n"
+"02200000.xhp\n"
+"tit\n"
"help.text"
-msgid "Libraries can be reloaded during runtime and their contents can be analyzed by the administrative functions. For each function, information is available about count and type of parameters, internal and external function names and an administrative number."
-msgstr "Kuusaaleen sagantaa yeroo figsisaa irra deebi'anii fe'amuu danda'u akkasumas qabeentootni isaanii faankishinoota bulchiinsaan yaadamuu danda'u. Faankishinii tokkoon tokkoof, odeeffannoon lakkaawii fi gosawwan ulaagaalee, maqoolee faankishinoota keessaa fi alaa akkasumas lakkoofsootni bulchiinsaa ni jiraatu."
+msgid "Sheet"
+msgstr "Uumi"
-#: 04060112.xhp
+#: 02200000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3155269\n"
-"10\n"
+"02200000.xhp\n"
+"hd_id3146794\n"
+"1\n"
"help.text"
-msgid "The functions are called synchronously and return their results immediately. Real time functions (asynchronous functions) are also possible; however, they are not explained in detail because of their complexity."
-msgstr "Fankishiniin hala wal simeen wamuun bu'aawwan hatattaman kenna.Fankishinoota yeroo riyaalii(fankishiniiwwan wal hin simnee) akkasumaa ni dandanda'ama,haata'uu malee,sababa wal xaxoo ta'aaniif baal'inaan hin ibsaman."
+msgid "<link href=\"text/scalc/01/02200000.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr "<link href=\"text/scalc/01/02200000.xhp\" name=\"Sheet\">Wardii</link>"
-#: 04060112.xhp
+#: 02200000.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3145077\n"
-"11\n"
+"02200000.xhp\n"
+"par_id3149456\n"
+"2\n"
"help.text"
-msgid "General information about the interface"
-msgstr "Oddeeffannoo walii galaa wa'ee walqunnama"
+msgid "<ahelp hid=\".\">Edit commands for entire sheets.</ahelp>"
+msgstr "<ahelp hid=\".\">Wardiiwwan hundaaf ajajoota gulaali.</ahelp>"
-#: 04060112.xhp
+#: 02200000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3146776\n"
-"12\n"
+"02200000.xhp\n"
+"hd_id3150792\n"
+"3\n"
"help.text"
-msgid "The maximum number of parameters in an Add-In function attached to $[officename] Calc is 16: one return value and a maximum of 15 function input parameters."
-msgstr "Lakkoofsi olaantoo jijjiiramaa fankishinii idaatoo $[officename] Calc maxxanfame 16 dha:gatiin deebi'uu tokko fi jijjiiramoota fankishinii olaanoo hanga 15 naqa."
+msgid "<link href=\"text/scalc/01/02180000.xhp\" name=\"Move/Copy\">Move/Copy</link>"
+msgstr "<link href=\"text/scalc/01/02180000.xhp\" name=\"Move/Copy\">Hiiqsi/Garagalchi</link>"
-#: 04060112.xhp
+#: 02200000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149899\n"
-"13\n"
+"02200000.xhp\n"
+"hd_id3153968\n"
+"4\n"
"help.text"
-msgid "The data types are defined as follows:"
-msgstr "Akaakuuwwan deetaa akkaa armaan gaditti hiikamu:"
+msgid "<link href=\"text/scalc/01/02210000.xhp\" name=\"Select\">Select</link>"
+msgstr "<link href=\"text/scalc/01/02210000.xhp\" name=\"Select\">Filadhu</link>"
-#: 04060112.xhp
+#: 02200000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3151302\n"
-"14\n"
+"02200000.xhp\n"
+"hd_id3163708\n"
+"5\n"
"help.text"
-msgid "<emph>Data types</emph>"
-msgstr "<emph>Akaakuuwwan deetaa</emph>"
+msgid "<link href=\"text/scalc/01/02170000.xhp\" name=\"Delete\">Delete</link>"
+msgstr "<link href=\"text/scalc/01/02170000.xhp\" name=\"Delete\">Haqi</link>"
-#: 04060112.xhp
+#: 02200000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3143222\n"
-"15\n"
+"02200000.xhp\n"
+"hd_id3163733308\n"
"help.text"
-msgid "<emph>Definition</emph>"
-msgstr "<emph>Hiikkoo</emph>"
+msgid "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">Events</link>"
+msgstr "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">Mudatoota</link>"
-#: 04060112.xhp
+#: 02210000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149384\n"
-"16\n"
+"02210000.xhp\n"
+"tit\n"
"help.text"
-msgid "CALLTYPE"
-msgstr "CALLTYPE"
+msgid "Selecting Sheets"
+msgstr "Wardiiwwan Filachuu"
-#: 04060112.xhp
+#: 02210000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3146963\n"
-"17\n"
+"02210000.xhp\n"
+"hd_id3156023\n"
+"5\n"
"help.text"
-msgid "Under Windows: FAR PASCAL (_far _pascal)"
-msgstr "Foddaawwan: FAR PASCAL (_far _pascal) jala"
+msgid "Selecting Sheets"
+msgstr "Wardiiwwan Filachuu"
-#: 04060112.xhp
+#: 02210000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153809\n"
-"18\n"
+"02210000.xhp\n"
+"par_id3147265\n"
+"1\n"
"help.text"
-msgid "Other: default (operating system specific default)"
-msgstr "kan biraa: durtii(durtii gooree sirna dalagaa)"
+msgid "<variable id=\"tabellenauswaehlen\"><ahelp hid=\".uno:SelectTables\" visibility=\"visible\">Selects multiple sheets.</ahelp></variable>"
+msgstr "<variable id=\"tabellenauswaehlen\"><ahelp hid=\".uno:SelectTables\" visibility=\"visible\">Wardiiwwan hedduu filata.</ahelp></variable>"
-#: 04060112.xhp
+#: 02210000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154734\n"
-"19\n"
+"02210000.xhp\n"
+"hd_id3125863\n"
+"2\n"
"help.text"
-msgid "USHORT"
-msgstr "USHORT"
+msgid "Selected Sheets"
+msgstr "Wardiiwwan Filataman"
-#: 04060112.xhp
+#: 02210000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3155760\n"
-"20\n"
+"02210000.xhp\n"
+"par_id3153969\n"
+"3\n"
"help.text"
-msgid "2 Byte unsigned Integer"
-msgstr "Intijeerii bayitii 2 mallattoo hin qabne"
+msgid "<ahelp hid=\"HID_SELECTTABLES\" visibility=\"visible\">Lists the sheets in the current document. To select a sheet, press the up or down arrow keys to move to a sheet in the list. To add a sheet to the selection, hold down Ctrl (Mac: Command) while pressing the arrow keys and then press Spacebar. To select a range of sheets, hold down Shift and press the arrow keys. </ahelp>"
+msgstr "<ahelp hid=\"HID_SELECTTABLES\" visibility=\"visible\">Wardiiwwan galmee ammee keessa jiran tarreessa. Wardii filachuuf furtuuwwan xiyya olee yookiin gadee dhiibi.Wardii filannootti dabaluuf, yeroo furtuuwwan xiyyaa dhiibaa jirtu Ctrl gadqabiiti kabala iddoo dhiibi. Hangii wardii filachuuf Shift gadqabiiti furtuuwwan xiyyaa dhiibi. </ahelp>"
-#: 04060112.xhp
+#: 03070000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3145320\n"
-"21\n"
+"03070000.xhp\n"
+"tit\n"
"help.text"
-msgid "DOUBLE"
-msgstr "DOUBLE"
+msgid "Column & Row Headers"
+msgstr "Irraantoowwan Tarjaa fi Tarree"
-#: 04060112.xhp
+#: 03070000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150956\n"
-"22\n"
+"03070000.xhp\n"
+"bm_id3156024\n"
"help.text"
-msgid "8 byte platform-dependent format"
-msgstr "dhangii hujeffannoo-hirkataa bayitii 8"
+msgid "<bookmark_value>spreadsheets; displaying headers of columns/rows</bookmark_value><bookmark_value>displaying; headers of columns/rows</bookmark_value>"
+msgstr "<bookmark_value>wardiiwwan;irraantoowwan tarjaa mul'isuu/rows</bookmark_value><bookmark_value>mul'isuu;irraantoowwan tarjaa/rows</bookmark_value>"
-#: 04060112.xhp
+#: 03070000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3146097\n"
-"23\n"
+"03070000.xhp\n"
+"hd_id3156024\n"
+"1\n"
"help.text"
-msgid "Paramtype"
-msgstr "Paramtype"
+msgid "<link href=\"text/scalc/01/03070000.xhp\" name=\"Column & Row Headers\">Column & Row Headers</link>"
+msgstr "<link href=\"text/scalc/01/03070000.xhp\" name=\"Column & Row Headers\">Irraantoowwan Tarjaa fi Tarree</link>"
-#: 04060112.xhp
+#: 03070000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150432\n"
-"24\n"
+"03070000.xhp\n"
+"par_id3147230\n"
+"2\n"
"help.text"
-msgid "Platform-dependent like int"
-msgstr "hujeffannoo-hirkataa kan akka int"
+msgid "<ahelp hid=\".uno:ViewRowColumnHeaders\">Shows column headers and row headers.</ahelp>"
+msgstr "<ahelp hid=\".uno:ViewRowColumnHeaders\">Irraantoowwan Tarjaa fi irraantoowwan tarree agarsiisa.</ahelp>"
-#: 04060112.xhp
+#: 03070000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153955\n"
-"25\n"
+"03070000.xhp\n"
+"par_id3156280\n"
+"4\n"
"help.text"
-msgid "PTR_DOUBLE =0 pointer to a double"
-msgstr "PTR_DOUBLE =0 qaree gara dachaatti"
+msgid "To hide the column and row headers unmark this menu entry."
+msgstr "Irraantoowwan tarjaa fi tarree dhoksuuf galiinsa baafata kanaa hin mallatteessiin"
-#: 04060112.xhp
+#: 03070000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3159262\n"
-"26\n"
+"03070000.xhp\n"
+"par_id3156441\n"
+"3\n"
"help.text"
-msgid "PTR_STRING =1 pointer to a zero-terminated string"
-msgstr "PTR_STRING =1 qaree gara diraa zeroon dhaabbatutti"
+msgid "You can also set the view of the column and row headers in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link></emph>."
+msgstr ""
-#: 04060112.xhp
+#: 03080000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148747\n"
-"27\n"
+"03080000.xhp\n"
+"tit\n"
"help.text"
-msgid "PTR_DOUBLE_ARR =2 pointer to a double array"
-msgstr "PTR_DOUBLE_ARR =2 qaree gara waraantoo dachaatti"
+msgid "Value Highlighting"
+msgstr "Gatii Shooluu"
-#: 04060112.xhp
+#: 03080000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147406\n"
-"28\n"
+"03080000.xhp\n"
+"bm_id3151384\n"
"help.text"
-msgid "PTR_STRING_ARR =3 pointer to a string array"
-msgstr "PTR_STRING_ARR =3 qaree gara waraantoo diraatti"
+msgid "<bookmark_value>spreadsheets; value highlighting</bookmark_value><bookmark_value>values;highlighting</bookmark_value><bookmark_value>highlighting; values in sheets</bookmark_value><bookmark_value>colors;values</bookmark_value>"
+msgstr "<bookmark_value>wardiiwwan;gatii shooluu</bookmark_value><bookmark_value>gatiiwwan;shooluu</bookmark_value><bookmark_value>shooluu;gatiiwwan wardii keessaa</bookmark_value>"
-#: 04060112.xhp
+#: 03080000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3151392\n"
-"29\n"
+"03080000.xhp\n"
+"hd_id3151384\n"
"help.text"
-msgid "PTR_CELL_ARR =4 pointer to a cell array"
-msgstr "PTR_CELL_ARR =4 qaree gara waraantoo man'eetti"
+msgid "<link href=\"text/scalc/01/03080000.xhp\" name=\"Value Highlighting\">Value Highlighting</link>"
+msgstr "<link href=\"text/scalc/01/03080000.xhp\" name=\"Value Highlighting\">Gatiiwwan Shooluu</link>"
-#: 04060112.xhp
+#: 03080000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153028\n"
-"30\n"
+"03080000.xhp\n"
+"par_id3154366\n"
"help.text"
-msgid "NONE =5"
-msgstr "NONE =5"
+msgid "<ahelp hid=\".uno:ViewValueHighlighting\">Displays cell contents in different colors, depending on type.</ahelp>"
+msgstr ""
-#: 04060112.xhp
+#: 03080000.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3156396\n"
-"31\n"
+"03080000.xhp\n"
+"par_id3125863\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions"
-msgstr "Fankishiinota<switchinline select=\"sys\"><caseinline select=\"UNIX\">mana kitaaba yagutoo</caseinline><defaultinline>DLL</defaultinline></switchinline>"
+msgid "To remove the highlighting, unmark the menu entry."
+msgstr "Shoola haquuf, galiinsa baafataa hin mallatteessiin"
-#: 04060112.xhp
+#: 03080000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153019\n"
-"32\n"
+"03080000.xhp\n"
+"par_id3145785\n"
"help.text"
-msgid "Following you will find a description of those functions, which are called at the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>external DLL</defaultinline></switchinline>."
-msgstr "Itti aansuun ibsa fankishinoota kanneenii argachuu dandeessa, kan <switchinline select=\"sys\"><caseinline select=\"UNIX\">mana kitaaba yagutoo </caseinline><defaultinline>alaantoo DLL</defaultinline></switchinline> keessatti waamaman."
+msgid "Text cells are formatted in black, formulas in green, and number cells in blue, no matter how their display is formatted."
+msgstr ""
-#: 04060112.xhp
+#: 03080000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150038\n"
-"33\n"
+"03080000.xhp\n"
+"par_id3153188\n"
"help.text"
-msgid "For all <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions, the following applies:"
-msgstr "Fankishiinota<switchinline select=\"sys\"><caseinline select=\"UNIX\">mana kitaaba yagutoo</caseinline><defaultinline>DLL</defaultinline></switchinline> hundaaf, kan armaan gadii ni fayyada:"
+msgid "If this function is active, colors that you define in the document will not be displayed. When you deactivate the function, the user-defined colors are displayed again."
+msgstr "yoo dalagaan kun ka'aa ta'e,halluuwwan ati galmee keessatti qindeessitu hin mul'atan."
-#: 04060112.xhp
+#: 03090000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3157876\n"
-"34\n"
+"03090000.xhp\n"
+"tit\n"
"help.text"
-msgid "void CALLTYPE fn(out, in1, in2, ...)"
-msgstr "void CALLTYPE fn(bahaa, naqa1, naqa2, ...)"
+msgid "Formula Bar"
+msgstr "Kabalaa Foormulaa"
-#: 04060112.xhp
+#: 03090000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147616\n"
-"35\n"
+"03090000.xhp\n"
+"bm_id3147264\n"
"help.text"
-msgid "Output: Resulting value"
-msgstr "Bahaa: Gatii argame"
+msgid "<bookmark_value>formula bar;spreadsheets</bookmark_value><bookmark_value>spreadsheets; formula bar</bookmark_value>"
+msgstr "<bookmark_value>kabalaa foormulaa;wardiiwwan</bookmark_value><bookmark_value>wardiiwwan;kabalaa foormulaar</bookmark_value>"
-#: 04060112.xhp
+#: 03090000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3159119\n"
-"36\n"
+"03090000.xhp\n"
+"hd_id3147264\n"
+"1\n"
"help.text"
-msgid "Input: Any number of types (double&, char*, double*, char**, Cell area), where the <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell area\">Cell area</link> is an array of types double array, string array, or cell array."
-msgstr "Galchii: Lakkoofsa kamiyyuu kan akaakuun (double&, char*, double*, char**, Bal'ina man'ee), iddoo<link href=\"text/scalc/01/04060112.xhp\" name=\"Cell area\">Bal'inni man'ee</link> waraantoo akaakuu waraantoo dachaa, waraantoo diraa, ykn bal'ina man'ee ti."
+msgid "<link href=\"text/scalc/01/03090000.xhp\" name=\"Formula Bar\">Formula Bar</link>"
+msgstr "<link href=\"text/scalc/01/03090000.xhp\" name=\"Formula Bar\">Kabalaa Foormulaa</link>"
-#: 04060112.xhp
+#: 03090000.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3150653\n"
-"37\n"
+"03090000.xhp\n"
+"par_id3156423\n"
+"2\n"
"help.text"
-msgid "GetFunctionCount()"
-msgstr "GetFunctionCount()"
+msgid "<ahelp hid=\".uno:InputLineVisible\">Shows or hides the Formula Bar, which is used for entering and editing formulas.</ahelp> The Formula Bar is the most important tool when working with spreadsheets."
+msgstr "<ahelp hid=\".uno:InputLineVisible\">Kabalaa foormulaa,foormulaawwan galchuu fi gulaaluuf gargaaru agarsiisa yookiin dhoksa.</ahelp> Yeroo wardiiwwan waliin hojjettu kaballi foormulaa meeshaa baay'ee gaarii ta'edha."
-#: 04060112.xhp
+#: 03090000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3152981\n"
-"38\n"
+"03090000.xhp\n"
+"par_id3154686\n"
+"4\n"
"help.text"
-msgid "Returns the number of functions without the management functions of the reference parameter. Each function has a unique number between 0 and nCount-1. This number will be needed for the <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> and <link href=\"text/scalc/01/04060112.xhp\" name=\"GetParameterDescription\">GetParameterDescription</link> functions later."
-msgstr "Lakkoofsa fankishinoota taliiga fankishinii hin qabnee kan ulaagaa wabii kenna. Tokkoon tokkoo fankishinii gidduu 0 fi ncount-1 keessa jiran lakkoofsa qofa mataa issaanii qabu. lakkoofsi kun booda fankishinoota <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> fi <link href=\"text/scalc/01/04060112.xhp\" name=\"GetParameterDescription\">GetParameterDescription</link> dhaf ni barbaadama."
+msgid "To hide the Formula Bar, unmark the menu item."
+msgstr "Kabalaa foormulaa dhoksuuf, maalimaa baafataa hin mallatteessin."
-#: 04060112.xhp
+#: 03090000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150742\n"
-"39\n"
+"03090000.xhp\n"
+"par_id3145787\n"
+"3\n"
"help.text"
-msgid "<emph>Syntax</emph>"
-msgstr "<emph>Caasima</emph>"
+msgid "If the Formula Bar is hidden, you can still edit cells by activating the edit mode with F2. After editing cells, accept the changes by pressing Enter, or discard entries by pressing Esc. Esc is also used to exit the edit mode."
+msgstr "Yoo kaballi foormulaa dhokate,haalata gulaallii F2dhaan kakaastee ammallee man'ee gulaaluu ni dandeessa.Man'eewwan erga gulaaltee booda Enter dhiibuudhaan jijjiiramoota mul'atan fudhadhu yookiin Esc dhiibuudhaan galiinsa gati.Esc'n haalata gulaallii keessaa bahuufis ni gargaara."
-#: 04060112.xhp
+#: 03100000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148728\n"
-"40\n"
+"03100000.xhp\n"
+"tit\n"
"help.text"
-msgid "void CALLTYPE GetFunctionCount(USHORT& nCount)"
-msgstr "void CALLTYPE GetFunctionCount(USHORT& nCount)"
+msgid "Page Break Preview"
+msgstr "Cita Durargii Fuulaa"
-#: 04060112.xhp
+#: 03100000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154677\n"
-"41\n"
+"03100000.xhp\n"
+"hd_id3151384\n"
+"1\n"
"help.text"
-msgid "<emph>Parameter</emph>"
-msgstr "<emph>Ulaagaa</emph>"
+msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"Page Break Preview\">Page Break Preview</link>"
+msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"Page Break Preview\">Cita Durargii Fuulaa</link>"
-#: 04060112.xhp
+#: 03100000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3146940\n"
-"42\n"
+"03100000.xhp\n"
+"par_id3150792\n"
+"2\n"
"help.text"
-msgid "USHORT &nCount:"
-msgstr "USHORT &nCount:"
+msgid "<ahelp hid=\".uno:PagebreakMode\">Display the page breaks and print ranges in the sheet. Choose <emph>View - Normal</emph> to switch this mode off.</ahelp>"
+msgstr "<ahelp hid=\".uno:PagebreakMode\">Citoota fuulaa mul'isa, dabalataanis hangiiwwan wardii keessaa mul'isa. Haalata kana dhaamsuuf <emph>Mul'isi - Baratamaa</emph> filadhu.</ahelp>"
-#: 04060112.xhp
+#: 03100000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149893\n"
-"43\n"
+"03100000.xhp\n"
+"par_id3153877\n"
+"13\n"
"help.text"
-msgid "Output: Reference to a variable, which is supposed to contain the number of Add-In functions. For example: If the Add-In provides 5 functions for $[officename] Calc, then nCount=5."
-msgstr "Bahaa: Jijjiramaatti wabii ta'a, kan fankishinoota Add-In bay'ee akka qabuutti yaadame. Fakkeenyaf: Yoo Add-In fankishinoota 5 $[officename] Calc dhaf kenne, nCount=5 ta'a."
+msgid "The context menu of the page break preview contains functions for editing page breaks, including the following options:"
+msgstr "Halqarri baafata cita durargii fuulaa, citoota fuulaa gulaaluuf faankishinoota of keessatti qaba,filannoowwan armaan gadii of keessatti qabachuudhan:"
-#: 04060112.xhp
+#: 03100000.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3147476\n"
-"44\n"
+"03100000.xhp\n"
+"hd_id3154731\n"
+"14\n"
"help.text"
-msgid "GetFunctionData()"
-msgstr "GetFunctionData()"
+msgid "Delete All Manual Breaks"
+msgstr "Citoota Hujeekaa Hunda Haqi"
-#: 04060112.xhp
+#: 03100000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154841\n"
-"45\n"
+"03100000.xhp\n"
+"par_id3149400\n"
+"15\n"
"help.text"
-msgid "Determines all the important information about an Add-In function."
-msgstr "Infoormeeshiniiwwan babarchisaa wa'ee fankishinii Add-In hunda murteessa."
+msgid "<ahelp hid=\".uno:DeleteAllBreaks\">Deletes all manual breaks in the current sheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteAllBreaks\">Citoota hujeekaa hunda wardii ammee keessa jiran haqa.</ahelp>"
-#: 04060112.xhp
+#: 03100000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148888\n"
-"46\n"
+"03100000.xhp\n"
+"hd_id3155067\n"
+"18\n"
"help.text"
-msgid "<emph>Syntax</emph>"
-msgstr "<emph>Caasima</emph>"
+msgid "Add Print Range"
+msgstr "Hangii Maxxansaa Ida'i"
-#: 04060112.xhp
+#: 03100000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148434\n"
-"47\n"
+"03100000.xhp\n"
+"par_id3155764\n"
+"19\n"
"help.text"
-msgid "void CALLTYPE GetFunctionData(USHORT& nNo, char* pFuncName, USHORT& nParamCount, Paramtype* peType, char* pInternalName)"
-msgstr "void CALLTYPE GetFunctionData(USHORT& nNo, char* pFuncName, USHORT& nParamCount, Paramtype* peType, char* pInternalName)"
+msgid "Adds the selected cells to print ranges."
+msgstr "Man'eewwan filataman hangiiwwan maxxansaatti ida'a."
-#: 04060112.xhp
+#: 04010000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149253\n"
-"48\n"
+"04010000.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Parameter</emph>"
-msgstr "<emph>Ulaagaa</emph>"
+msgid "Manual Break"
+msgstr "Cita Hujeekaa"
-#: 04060112.xhp
+#: 04010000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149686\n"
-"49\n"
+"04010000.xhp\n"
+"bm_id3153192\n"
"help.text"
-msgid "USHORT& nNo:"
-msgstr "USHORT& nNo:"
+msgid "<bookmark_value>spreadsheets; inserting breaks in</bookmark_value><bookmark_value>inserting; breaks</bookmark_value><bookmark_value>page breaks; inserting in spreadsheets</bookmark_value>"
+msgstr "<bookmark_value>wardiiwwan;citoota saaguu</bookmark_value><bookmark_value>saaguu;citoota</bookmark_value><bookmark_value>citoota fuulaa;wardiiwwan keessa saaguu</bookmark_value>"
-#: 04060112.xhp
+#: 04010000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149949\n"
-"50\n"
+"04010000.xhp\n"
+"hd_id3153192\n"
+"1\n"
"help.text"
-msgid "Input: Function number between 0 and nCount-1, inclusively."
-msgstr "Galchii: Lakkoofsa fankishinii gidduu 0 fi nCount-1, hin hammatu."
+msgid "<link href=\"text/scalc/01/04010000.xhp\" name=\"Manual Break\">Manual Break</link>"
+msgstr "<link href=\"text/scalc/01/04010000.xhp\" name=\"Manual Break\">Cita hujeekaa</link>"
-#: 04060112.xhp
+#: 04010000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149546\n"
-"51\n"
+"04010000.xhp\n"
+"par_id3125864\n"
+"2\n"
"help.text"
-msgid "char* pFuncName:"
-msgstr "char* pFuncName:"
+msgid "<ahelp hid=\".\">This command inserts manual row or column breaks to ensure that your data prints properly. You can insert a horizontal page break above, or a vertical page break to the left of, the active cell.</ahelp>"
+msgstr "<ahelp hid=\".\">Ajajni kun akka galmeen ke sirnaan maxxansu sirriitti beekuuf citoota hujeeka tarjaa yookiin tarree saaga.</ahelp>"
-#: 04060112.xhp
+#: 04010000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148579\n"
-"52\n"
+"04010000.xhp\n"
+"par_id3155133\n"
+"3\n"
"help.text"
-msgid "Output: Function name as seen by the programmer, as it is named in the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline>. This name does not determine the name used in the <emph>Function Wizard</emph>."
-msgstr "Bahaa: Maqaa fankishinii akka progiraamariidhan hojjatameetti, akka <switchinline select=\"sys\"><caseinline select=\"UNIX\">mana kitaaba yagutoo </caseinline><defaultinline>DLL</defaultinline></switchinline> keessatti moggaafametti.Maqaan kun maqaa <emph>Dhullee</emph> keessatti fayyadu hin murteessu."
+msgid "Choose <link href=\"text/scalc/01/02190000.xhp\" name=\"Edit - Delete Manual Break\">Edit - Delete Manual Break</link> to remove breaks created manually."
+msgstr "citoota hujeekaan uumaman haquuf <link href=\"text/scalc/01/02190000.xhp\" name=\"Edit - Delete Manual Break\">Gulaali - Cita Hujeekaa Haqi</link> filadhu."
-#: 04060112.xhp
+#: 04010100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153935\n"
-"53\n"
+"04010100.xhp\n"
+"tit\n"
"help.text"
-msgid "USHORT& nParamCount:"
-msgstr "USHORT& nParamCount:"
+msgid "Row Break"
+msgstr "Cita tarree"
-#: 04060112.xhp
+#: 04010100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150142\n"
-"54\n"
+"04010100.xhp\n"
+"bm_id3153821\n"
"help.text"
-msgid "Output: Number of parameters in AddIn function. This number must be greater than 0, because there is always a result value; the maximum value is 16."
-msgstr "Bahaa: Lakkoofsa ulaagaalee fankishinii AddIn keessaati.Lakkoofsi kun irra gudda 0 ta'uu qaba, sababiin yeroo hundaa gatiin argame ni jira; gatii guddaan 16."
+msgid "<bookmark_value>sheets; inserting row breaks</bookmark_value><bookmark_value>row breaks; inserting</bookmark_value><bookmark_value>inserting; manual row breaks</bookmark_value><bookmark_value>manual row breaks</bookmark_value>"
+msgstr "<bookmark_value>wardiiwwan;citoota tarree saaguu</bookmark_value><bookmark_value>citoota tarree;saaguu</bookmark_value><bookmark_value>saaguu;citoota hujeeka tarree</bookmark_value><bookmark_value>citoota hujeeka tarree</bookmark_value>"
-#: 04060112.xhp
+#: 04010100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3145143\n"
-"55\n"
+"04010100.xhp\n"
+"hd_id3153821\n"
+"1\n"
"help.text"
-msgid "Paramtype* peType:"
-msgstr "Paramtype* peType:"
+msgid "<link href=\"text/scalc/01/04010100.xhp\" name=\"Row Break\">Row Break</link>"
+msgstr "<link href=\"text/scalc/01/04010100.xhp\" name=\"Row Break\">Cita Tarree</link>"
-#: 04060112.xhp
+#: 04010100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148750\n"
-"56\n"
+"04010100.xhp\n"
+"par_id3149656\n"
+"2\n"
"help.text"
-msgid "Output: Pointer to an array of exactly 16 variables of type Paramtype. The first nParamCount entries are filled with the suitable type of parameter."
-msgstr "Bahaa: Qaree gara waraantoo sirrumaan jijjiiramtoota 16 kan akaakuu paramtype.Galchiiwwan nParamCount jalqabaa akaakuuu ulaagaa mijawaatin gutama."
+msgid "<ahelp hid=\".uno:InsertRowBreak\">Inserts a row break (horizontal page break) above the selected cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertRowBreak\">Man'ee filatamee olitti cita tarree (cita fuulaa surdalaa) saaga.</ahelp>"
-#: 04060112.xhp
+#: 04010100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153078\n"
-"57\n"
+"04010100.xhp\n"
+"par_id3156422\n"
+"3\n"
"help.text"
-msgid "char* pInternalName:"
-msgstr "char* pInternalName:"
+msgid "The manual row break is indicated by a dark blue horizontal line."
+msgstr "Citni hujeeka tarree sarara surdalaa bifa cuquliisa dukkanaawaatiin mul'ata."
-#: 04060112.xhp
+#: 04010200.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3155261\n"
-"58\n"
+"04010200.xhp\n"
+"tit\n"
"help.text"
-msgid "Output: Function name as seen by the user, as it appears in the <emph>Function Wizard</emph>. May contain umlauts."
-msgstr "Bahaa: Maqaa fankishinii akka fayyadamaadhan hubatametti, akka <emph>Dhullee</emph> keessatti mul'ateetti. Umlauts qabaachuu danda'a."
+msgid "Column Break"
+msgstr "Cita Tarjaa"
-#: 04060112.xhp
+#: 04010200.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153327\n"
-"59\n"
+"04010200.xhp\n"
+"bm_id3155923\n"
"help.text"
-msgid "The pFuncName and pInternalName parameters are char arrays, which are implemented with size 256 in $[officename] Calc."
-msgstr "Ulaagaaleen pFuncName fi pInternalName waraantoowwan arfiiti, kan $[officename] Calc keessatti hammamtaa 256n hojjoome dha."
+msgid "<bookmark_value>spreadsheets; inserting column breaks</bookmark_value><bookmark_value>column breaks; inserting</bookmark_value><bookmark_value>inserting; manual column breaks</bookmark_value><bookmark_value>manual column breaks</bookmark_value>"
+msgstr "<bookmark_value>wardiiwwan;citoota tarjaa saaguu</bookmark_value><bookmark_value>citoota tarjaa; saguu</bookmark_value><bookmark_value>saaguu; cioota hujeeka tarjaa</bookmark_value><bookmark_value>citoota hujeeka tarjaa</bookmark_value>"
-#: 04060112.xhp
+#: 04010200.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3148567\n"
-"60\n"
+"04010200.xhp\n"
+"hd_id3155923\n"
+"1\n"
"help.text"
-msgid "GetParameterDescription()"
-msgstr "GetParameterDescription()"
+msgid "<link href=\"text/scalc/01/04010200.xhp\" name=\"Column Break\">Column Break</link>"
+msgstr "<link href=\"text/scalc/01/04010200.xhp\" name=\"Column Break\">Cita Tarjaa</link>"
-#: 04060112.xhp
+#: 04010200.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153000\n"
-"61\n"
+"04010200.xhp\n"
+"par_id3150447\n"
+"2\n"
"help.text"
-msgid "Provides a brief description of the Add-In function and its parameters. As an option, this function can be used to show a function and parameter description in the <emph>Function Wizard</emph>."
-msgstr "Fankishinii Add-In fi ulaagaalee isaatif ibsa gabaabduu kenna. Akka dirqaalatti, fankishiniin kun fankishinii fi ibsa ulaagaa <emph>Dhullee</emph> keessaa agarsisuu danda'a."
+msgid "<ahelp hid=\".uno:InsertColumnBreak\">Inserts a column break (vertical page break) to the left of the active cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertColumnBreak\">Cita tarjaa (cita fuulaa sarjaa)gara bita man'ee ka'aatt saaga.</ahelp>"
-#: 04060112.xhp
+#: 04010200.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154501\n"
-"62\n"
+"04010200.xhp\n"
+"par_id3145171\n"
+"3\n"
"help.text"
-msgid "<emph>Syntax</emph>"
-msgstr "<emph>Caasima</emph>"
+msgid "The manual column break is indicated by a dark blue vertical line."
+msgstr "Citni hujeeka tarjaa bifa cuquliisa dukkanaawaatiin agarsiifama."
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153564\n"
-"63\n"
+"04020000.xhp\n"
+"tit\n"
"help.text"
-msgid "void CALLTYPE GetParameterDescription(USHORT& nNo, USHORT& nParam, char* pName, char* pDesc)"
-msgstr "void CALLTYPE GetParameterDescription(USHORT& nNo, USHORT& nParam, char* pName, char* pDesc)"
+msgid "Insert Cells"
+msgstr "Man'eewwan Saagi"
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3157995\n"
-"64\n"
+"04020000.xhp\n"
+"bm_id3156023\n"
"help.text"
-msgid "<emph>Parameter</emph>"
-msgstr "<emph>Ulaagaa</emph>"
+msgid "<bookmark_value>spreadsheets; inserting cells</bookmark_value><bookmark_value>cells; inserting</bookmark_value><bookmark_value>inserting; cells</bookmark_value>"
+msgstr "<bookmark_value>wardiiwwan;man'eewwan saaguu</bookmark_value><bookmark_value>man'eewwan;saaguu</bookmark_value><bookmark_value>saaguu;man'eewwan</bookmark_value>"
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3155925\n"
-"65\n"
+"04020000.xhp\n"
+"hd_id3156023\n"
+"1\n"
"help.text"
-msgid "USHORT& nNo:"
-msgstr "USHORT& nNo:"
+msgid "Insert Cells"
+msgstr "Man'eewwan Saagi"
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149883\n"
-"66\n"
+"04020000.xhp\n"
+"par_id3150542\n"
+"2\n"
"help.text"
-msgid "Input: Number of the function in the library; between 0 and nCount-1."
-msgstr "Naqaa: Lakkoofsa fankishinii mana kitaabaa keessaa; giduu 0 fi nCount-1."
+msgid "<variable id=\"zelleneinfuegentext\"><ahelp hid=\".uno:InsertCell\">Opens the<emph> Insert Cells </emph>dialog, in which you can insert new cells according to the options that you specify.</ahelp></variable> You can delete cells by choosing <link href=\"text/scalc/01/02160000.xhp\" name=\"Edit - Delete Cells\"><emph>Edit - Delete Cells</emph></link>."
+msgstr "<variable id=\"zelleneinfuegentext\"><ahelp hid=\".uno:InsertCell\">qaaqan<emph> Man'eewwan saagu</emph> kan ati akkaataa man'eewwan haaraa gara filannoo kennameetti bani. </ahelp></variable> Gulaaluu-Man'eewwan haquu <link href=\"text/scalc/01/02160000.xhp\" name=\"Edit - Delete Cells\"><emph>filachuudhaan man'eewwan haquu dandeessa</emph></link>."
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154326\n"
-"67\n"
+"04020000.xhp\n"
+"hd_id3153768\n"
+"3\n"
"help.text"
-msgid "USHORT& nParam:"
-msgstr "USHORT& nParam:"
+msgid "Selection"
+msgstr "Filannoo"
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3159139\n"
-"68\n"
+"04020000.xhp\n"
+"par_id3149262\n"
+"4\n"
"help.text"
-msgid "Input: Indicates, for which parameter the description is provided; parameters start at 1. If nParam is 0, the description itself is supposed to be provided in pDesc; in this case, pName does not have any meaning."
-msgstr "Naqaa: Ibsi ulaagaa kamiif akka hojjome eera;ulaagaaleen 1 irraa ka'u. Yoo nParam 0 ta'e ibsi mata isaatin akka pDesc keessatti kennameetti yaadama; haala kanarratti, pName hiika homaatuu hin qabu."
+msgid "This area contains the options available for inserting cells into a sheet. The cell quantity and position is defined by selecting a cell range in the sheet beforehand."
+msgstr "Naannoon kun filannoowwan man'ee gara wardiitti saaguuf gargaaran of keessatti qabata."
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147374\n"
-"69\n"
+"04020000.xhp\n"
+"hd_id3146120\n"
+"5\n"
"help.text"
-msgid "char* pName:"
-msgstr "char* pName:"
+msgid "Shift cells down"
+msgstr "Man'eewwan gad jijjiiri"
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3145245\n"
-"70\n"
+"04020000.xhp\n"
+"par_id3152596\n"
+"6\n"
"help.text"
-msgid "Output: Takes up the parameter name or type, for example, the word \"Number\" or \"String\" or \"Date\", and so on. Implemented in $[officename] Calc as char[256]."
-msgstr "Bahaa: Maqaa ulaagaa ykn akaakuu fudhata, fakkeenyaf, jecha \"Lakkoofsa\" ykn \"Diraa\" ykn \"Aduu\", fi kkf. $[officename] Calc keessatti akka char[256]tti hojjama."
+msgid "<variable id=\"zellenuntentext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSDOWN\">Moves the contents of the selected range downward when cells are inserted.</ahelp></variable>"
+msgstr "<variable id=\"zellenuntentext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSDOWN\">Yeroo man'eewwan saagaman,qabeentota hangii filatamanii gara gadiitti hiiqsa.</ahelp></variable>"
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3151020\n"
-"71\n"
+"04020000.xhp\n"
+"hd_id3147434\n"
+"7\n"
"help.text"
-msgid "char* pDesc:"
-msgstr "char* pDesc:"
+msgid "Shift cells right"
+msgstr "Man'eewwan mirgatti jijjiiri"
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148389\n"
-"72\n"
+"04020000.xhp\n"
+"par_id3144764\n"
+"8\n"
"help.text"
-msgid "Output: Takes up the description of the parameter, for example, \"Value, at which the universe is to be calculated.\" Implemented in $[officename] Calc as char[256]."
-msgstr "Bahaa: ibsa ulaagaa fudhata, fakkeenyaf, \"gatii iddoo marlaaltoon itti shallagamu.\" $[officename] Calc keessatti akka char[256]tti hojjooma."
+msgid "<variable id=\"zellenrechtstext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSRIGHT\">Moves the contents of the selected range to the right when cells are inserted.</ahelp></variable>"
+msgstr "<variable id=\"zellenrechtstext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSRIGHT\">Yeroo man'eewwan saagaman,qabeentota hangii filatamanii gara mirgaatti hiiqsa.</ahelp></variable>"
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3145303\n"
-"73\n"
+"04020000.xhp\n"
+"hd_id3153877\n"
+"9\n"
"help.text"
-msgid "pName and pDesc are char arrays; implemented in $[officename] Calc with size 256. Please note that the space available in the <emph>Function Wizard</emph> is limited and that the 256 characters cannot be fully used."
-msgstr "pName fi pDesc waraantoowwan arfiiti. $[officename] Calc keessatti hammamtaa 256n hojjooma. Hubadhu iddoo duwwaan <emph>Dhullee</emph> keessatti argamu kan daanga'e fi kanaafuu arfiileen 256 gutuun gutuutti fayyadamuun hin danda'mu."
+msgid "Entire row"
+msgstr "Tarree Hunda"
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3148874\n"
-"76\n"
+"04020000.xhp\n"
+"par_id3155417\n"
+"10\n"
"help.text"
-msgid "Cell areas"
-msgstr "Bal'inoota man'ee"
+msgid "<variable id=\"zeilenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSROWS\">Inserts an entire row. The position of the row is determined by the selection on the sheet.</ahelp></variable> The number of rows inserted depends on how many rows are selected. The contents of the original rows are moved downward."
+msgstr "<variable id=\"zeilenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSROWS\">InsertsTarree hunda saaga.Bakki tarree filannoo wardii irratti taasifamuun murteeffama.</ahelp></variable> Lakkofsi tarreewwan saagamanii baay'ina tarreewwan filatamanii irratti hundaa'a.Qabeentootni tarreewwan xabboo gara gadiitti hiiqu."
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150265\n"
-"77\n"
+"04020000.xhp\n"
+"hd_id3146971\n"
+"11\n"
"help.text"
-msgid "The following tables contain information about which data structures must be provided by an external program module in order to pass cell areas. $[officename] Calc distinguishes between three different arrays, depending on the data type."
-msgstr "Gabateewwan armaan gadii odeeffannoo wa'ee caasawwan deetaa kan muraa pirogiraamii alaantootin naannoowwan man'ee murteessuf laatamee qaba. Akaakuu deetaa irratti hundaa'uun, $[officename] Calc'n waraantoo garagaraa sadi addaan baasa."
+msgid "Entire column"
+msgstr "Tarjaa Hunda"
-#: 04060112.xhp
+#: 04020000.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3156060\n"
-"78\n"
+"04020000.xhp\n"
+"par_id3155068\n"
+"12\n"
"help.text"
-msgid "Double Array"
-msgstr "Waraantoo Dachaa"
+msgid "<variable id=\"spaltenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSCOLS\">Inserts an entire column. The number of columns to be inserted is determined by the selected number of columns.</ahelp></variable> The contents of the original columns are shifted to the right."
+msgstr "<variable id=\"spaltenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSCOLS\">Tarjaa hunda saaga.Lakkoofsi tarjaawwan saagamuuf jiranii, lakkoofsa tarjaawwan filatamaniidhaan murtaa'a.</ahelp></variable> Qabeentootni tarjaawwan xabboo gara mirgaatti jijjiiramu."
-#: 04060112.xhp
+#: 04030000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149540\n"
-"79\n"
+"04030000.xhp\n"
+"tit\n"
"help.text"
-msgid "As a parameter, a cell area with values of the Number/Double type can be passed. A double array in $[officename] Calc is defined as follows:"
-msgstr "Akka ulaagaatti, naannoon man'ee gatiiwwan lakkoofsa/Akaakuu dachaa wajjinii hikamuu danda'u. Waraantoon dachaa $[officename] Calc keesssaa akka armaan gadiitti hiikama:"
+msgid "Rows"
+msgstr "Tarreewwaan"
-#: 04060112.xhp
-#, fuzzy
+#: 04030000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149388\n"
-"80\n"
+"04030000.xhp\n"
+"bm_id3150541\n"
"help.text"
-msgid "<emph>Offset</emph>"
-msgstr "<emph>Iddooda</emph>"
+msgid "<bookmark_value>spreadsheets; inserting rows</bookmark_value><bookmark_value>rows; inserting</bookmark_value><bookmark_value>inserting; rows</bookmark_value>"
+msgstr "<bookmark_value>wardiiwwan;tarreewwan saaguu</bookmark_value><bookmark_value>tarreewwan; saaguu</bookmark_value><bookmark_value>saaguu; tarreewwan</bookmark_value>"
-#: 04060112.xhp
+#: 04030000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154636\n"
-"81\n"
+"04030000.xhp\n"
+"hd_id3150541\n"
+"1\n"
"help.text"
-msgid "<emph>Name</emph>"
-msgstr "<emph>Maqaa</emph>"
+msgid "<link href=\"text/scalc/01/04030000.xhp\" name=\"Rows\">Rows</link>"
+msgstr "<link href=\"text/scalc/01/04030000.xhp\" name=\"Rows\">Tarreewwan</link>"
-#: 04060112.xhp
+#: 04030000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153228\n"
-"82\n"
+"04030000.xhp\n"
+"par_id3150767\n"
+"2\n"
"help.text"
-msgid "<emph>Description</emph>"
-msgstr "<emph>Ibsa</emph>"
+msgid "<ahelp hid=\".uno:InsertRows\" visibility=\"visible\">Inserts a new row above the active cell.</ahelp> The number of rows inserted correspond to the number of rows selected. The existing rows are moved downward."
+msgstr "<ahelp hid=\".uno:InsertRows\" visibility=\"visible\">Man'ee ka'aa olitti tarree haaraa saaga.</ahelp> Lakkoofsi tarreewwan saagamanii lakkoofsa tarreewwan filatamanii bakka bu'a.Tarreewwan duraan turan gara gadiitti hiiqu."
-#: 04060112.xhp
+#: 04040000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150685\n"
-"83\n"
+"04040000.xhp\n"
+"tit\n"
"help.text"
-msgid "0"
-msgstr "0"
+msgid "Columns"
+msgstr "Tarjaawwan"
-#: 04060112.xhp
+#: 04040000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154869\n"
-"84\n"
+"04040000.xhp\n"
+"bm_id3155628\n"
"help.text"
-msgid "Col1"
-msgstr "Col1"
+msgid "<bookmark_value>spreadsheets; inserting columns</bookmark_value><bookmark_value>inserting; columns</bookmark_value><bookmark_value>columns; inserting</bookmark_value>"
+msgstr "<bookmark_value>wardiiwwan; tarjaawwan saaguu</bookmark_value><bookmark_value>saaguu; tarjaawwan</bookmark_value><bookmark_value>tarjaawwan; saaguu</bookmark_value>"
-#: 04060112.xhp
+#: 04040000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147541\n"
-"85\n"
+"04040000.xhp\n"
+"hd_id3155628\n"
+"1\n"
"help.text"
-msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
-msgstr "Lakkoofsa tarjaa golee gubbaa-bitaa kan bal'ina man'ee keessaati. Lakkoofsa kennuun 0 irraa eegala."
+msgid "<link href=\"text/scalc/01/04040000.xhp\" name=\"Columns\">Columns</link>"
+msgstr "<link href=\"text/scalc/01/04040000.xhp\" name=\"Columns\">Sarjaawwan</link>"
-#: 04060112.xhp
+#: 04040000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149783\n"
-"86\n"
+"04040000.xhp\n"
+"par_id3150791\n"
+"2\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<ahelp hid=\".uno:InsertColumns\">Inserts a new column to the left of the active cell.</ahelp> The number of columns inserted corresponds to the number of columns selected. The existing columns are moved to the right."
+msgstr "<ahelp hid=\".uno:InsertColumns\">Bita man'ee ka'aatti tarjaa haaraa saaga.</ahelp> Lakkoofsi tarjaawwan saagamanii lakkoofsa tarjaawwan filatamanii bakka bu'a. Tarjaawwan duraan turan gara mirgaatti hiiqu."
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3155986\n"
-"87\n"
+"04050000.xhp\n"
+"tit\n"
"help.text"
-msgid "Row1"
-msgstr "Tarree1"
+msgid "Insert Sheet"
+msgstr "Wardii Saagi"
-#: 04060112.xhp
-#, fuzzy
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147483\n"
-"88\n"
+"04050000.xhp\n"
+"bm_id4522232\n"
"help.text"
-msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
-msgstr "Lakkoofsa tarree golee gubbaa-bitaa kan bal'ina man'ee keessaati. Lakkoofsa kennuun 0 irraa eegala."
+msgid "<bookmark_value>sheets;creating</bookmark_value>"
+msgstr "<bookmark_value>wardiiwwan;uumuu</bookmark_value>"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153721\n"
-"89\n"
+"04050000.xhp\n"
+"hd_id3155629\n"
+"1\n"
"help.text"
-msgid "4"
-msgstr "4"
+msgid "Insert Sheet"
+msgstr "Wardii Saagi"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154317\n"
-"90\n"
+"04050000.xhp\n"
+"par_id3147264\n"
+"2\n"
"help.text"
-msgid "Tab1"
-msgstr "caancala1"
+msgid "<variable id=\"tabelleeinfuegentext\"><ahelp hid=\".uno:Insert\">Defines the options to be used to insert a new sheet.</ahelp> You can create a new sheet, or insert an existing sheet from a file.</variable>"
+msgstr "<variable id=\"tabelleeinfuegentext\"><ahelp hid=\".uno:Insert\">Wardii haaraa saaguuf filannoowwan fayyadamamuu qaban ibsa.</ahelp> Wardii haaraa uumuu, yookiin wardii faayilii keessa jiru saaguu ni dandeessa. </variable>"
-#: 04060112.xhp
-#, fuzzy
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149820\n"
-"91\n"
+"04050000.xhp\n"
+"hd_id3154684\n"
+"19\n"
"help.text"
-msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
-msgstr "Lakkoofsa gabatee golee gubbaa-bitaa kan bal'ina man'ee keessaati; Lakkoofsa kennuun 0 irraa eegala."
+msgid "Position"
+msgstr "Qubannoo"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3163820\n"
-"92\n"
+"04050000.xhp\n"
+"par_id3156281\n"
+"20\n"
"help.text"
-msgid "6"
-msgstr "6"
+msgid "Specifies where the new sheet is to be inserted into your document."
+msgstr "Wardii haaraan galmee ke keessa bakka kamitti akka saagamuu qabu adda baasa."
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149710\n"
-"93\n"
+"04050000.xhp\n"
+"hd_id3154123\n"
+"21\n"
"help.text"
-msgid "Col2"
-msgstr "Col2"
+msgid "Before current sheet"
+msgstr "Wardii ammee dura"
-#: 04060112.xhp
-#, fuzzy
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154819\n"
-"94\n"
+"04050000.xhp\n"
+"par_id3145787\n"
+"22\n"
"help.text"
-msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
-msgstr "Lakkoofsa tarjaa golee jala-mirgaa kan bal'ina man'ee keessaati. Lakkoofsa kennuun 0 irraa eegala."
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/before\">Inserts a new sheet directly before the current sheet.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/before\">Wardii haaraa kallattiidhaan wardii ammee duratti saaga.Inserts a new sheet directly before the current sheet.</ahelp>"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3145083\n"
-"95\n"
+"04050000.xhp\n"
+"hd_id3155414\n"
+"23\n"
"help.text"
-msgid "8"
-msgstr "8"
+msgid "After current sheet"
+msgstr "Wardii ammee booda"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3156310\n"
-"96\n"
+"04050000.xhp\n"
+"par_id3145271\n"
+"24\n"
"help.text"
-msgid "Row2"
-msgstr "Tarree2"
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/after\">Inserts a new sheet directly after the current sheet.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/after\">Wardii haaraa kallattidhaan wardii ammee boodatti saaga.</ahelp>"
-#: 04060112.xhp
-#, fuzzy
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150968\n"
-"97\n"
+"04050000.xhp\n"
+"hd_id3147428\n"
+"25\n"
"help.text"
-msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
-msgstr "Lakkoofsa tarree golee jala-mirgaa kan bal'ina man'ee keessaati; Lakkoofsa kennuun 0 irraa eegala."
+msgid "Sheet"
+msgstr "Uumi"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3156133\n"
-"98\n"
+"04050000.xhp\n"
+"par_id3154012\n"
+"26\n"
"help.text"
-msgid "10"
-msgstr "10"
+msgid "Specifies whether a new sheet or an existing sheet is inserted into the document."
+msgstr "Wardii haaraa yookiin wardii duraan ture, kamtu akka galmeetti saagame adda baasa."
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153218\n"
-"99\n"
+"04050000.xhp\n"
+"hd_id3147350\n"
+"3\n"
"help.text"
-msgid "Tab2"
-msgstr "caancala2"
+msgid "New sheet"
+msgstr "Uumi"
-#: 04060112.xhp
-#, fuzzy
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147086\n"
-"100\n"
+"04050000.xhp\n"
+"par_id3149262\n"
+"4\n"
"help.text"
-msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
-msgstr "Lakkoofsa gabatee golee jala-mirgaa kan bal'ina man'ee keessaati; Lakkoofsa kennuun 0 irraa eegala."
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/new\">Creates a new sheet. Enter a sheet name in the <emph>Name</emph> field. Allowed characters are letters, numbers, spaces, and the underline character.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/new\">Wardii haaraa uuma.Maqaa wardii dirree <emph>Maqaa</emph> keessa galchi.Arfiiwwan eeyyamaman qubeewwan,lakkoofsota,iddoowwanii fi jalmurii arfiidha.</ahelp>"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3151270\n"
-"101\n"
+"04050000.xhp\n"
+"hd_id3155418\n"
+"27\n"
"help.text"
-msgid "12"
-msgstr "12"
+msgid "No. of sheets"
+msgstr "Lakkofsa Wardiiwwanii"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3152934\n"
-"102\n"
+"04050000.xhp\n"
+"par_id3148457\n"
+"28\n"
"help.text"
-msgid "Count"
-msgstr "Lakkaa'i"
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/countnf\">Specifies the number of sheets to be created.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/countnf\">Lakkoofsa wardiiwwan uumamuu qaqbanii adda baasa.</ahelp>"
-#: 04060112.xhp
-#, fuzzy
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3145202\n"
-"103\n"
+"04050000.xhp\n"
+"hd_id3149379\n"
+"7\n"
"help.text"
-msgid "Number of the following elements. Empty cells are not counted or passed."
-msgstr "Lakkoofsa misensota armaan gadii. Man'eewwan duwwaan hin lakkaawwaman ykn ni taramu."
+msgid "Name"
+msgstr "Maqaa"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150879\n"
-"104\n"
+"04050000.xhp\n"
+"par_id3150718\n"
+"8\n"
"help.text"
-msgid "14"
-msgstr "14"
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/nameed\">Specifies the name of the new sheet.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/nameed\">Maqaa wardii haaraa adda baasa.</ahelp>"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3156002\n"
-"105\n"
+"04050000.xhp\n"
+"hd_id3155066\n"
+"9\n"
"help.text"
-msgid "Col"
-msgstr "Col"
+msgid "From File"
+msgstr "Faayilii irraa"
-#: 04060112.xhp
-#, fuzzy
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147276\n"
-"106\n"
+"04050000.xhp\n"
+"par_id3153714\n"
+"10\n"
"help.text"
-msgid "Column number of the element. Numbering starts at 0."
-msgstr "Lakkoofsa tarjaa miseensaa. Lakkoofsa kennuun 0 irraa eegala."
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/fromfile\">Inserts a sheet from an existing file into the current document.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/fromfile\">Faayilii duraan ture irraa wardii gara galmee ammeetti saaga.</ahelp>"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3151295\n"
-"107\n"
+"04050000.xhp\n"
+"hd_id3149020\n"
+"15\n"
"help.text"
-msgid "16"
-msgstr "16"
+msgid "Browse"
+msgstr "Sakatta'i"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150261\n"
-"108\n"
+"04050000.xhp\n"
+"par_id3159267\n"
+"16\n"
"help.text"
-msgid "Row"
-msgstr "Tarree"
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/browse\">Opens a dialog for selecting a file.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/browse\">Faayilii filachuuf qaaqa bana.</ahelp>"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3155851\n"
-"109\n"
+"04050000.xhp\n"
+"hd_id3149255\n"
+"29\n"
"help.text"
-msgid "Row number of the element; numbering starts at 0."
-msgstr "Lakkoofsa tarree miseensaa; Lakkoofsa kennuun 0 irraa eegala."
+msgid "Available Sheets"
+msgstr "Wardiiwwan jireessa"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153150\n"
-"110\n"
+"04050000.xhp\n"
+"par_id3155336\n"
+"30\n"
"help.text"
-msgid "18"
-msgstr "18"
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/tables\">If you selected a file by using the <emph>Browse</emph> button, the sheets contained in it are displayed in the list box. The file path is displayed below this box. Select the sheet to be inserted from the list box.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/tables\">Yoo qabduu <emph>Sakatta'i</emph>dhaan faayilii filatte,wardiiwwan isa keessa jiran sanduuqa tarree keessatti mul'atu.Wardii saagamuuf jiru sanduuqa tarree keessaa filadhu.</ahelp>"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153758\n"
-"111\n"
+"04050000.xhp\n"
+"hd_id3145791\n"
+"17\n"
"help.text"
-msgid "Tab"
-msgstr "caancala"
+msgid "Link"
+msgstr "Walqabsiisi"
-#: 04060112.xhp
+#: 04050000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150154\n"
-"112\n"
+"04050000.xhp\n"
+"par_id3152580\n"
+"18\n"
"help.text"
-msgid "Table number of the element; numbering starts at 0."
-msgstr "Lakkoofsa gabatee miseensaa; Lakkoofsa kennuun 0 irraa eegala."
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/link\">Select to insert the sheet as a link instead as a copy. The links can be updated to show the current contents.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/link\">Wardii akka garagalchaatti osoo hin taane akka quunnamsiistuutti saaguuf filadhu.</ahelp>"
-#: 04060112.xhp
+#: 04050100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149289\n"
-"113\n"
+"04050100.xhp\n"
+"tit\n"
"help.text"
-msgid "20"
-msgstr "20"
+msgid "Sheet from file"
+msgstr "Faayilii irraa wardii"
-#: 04060112.xhp
+#: 04050100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3156010\n"
-"114\n"
+"04050100.xhp\n"
+"par_idN105C1\n"
"help.text"
-msgid "Error"
-msgstr "Dogongora"
+msgid "<link href=\"text/scalc/01/04050100.xhp\">Sheet from file</link>"
+msgstr "<link href=\"text/scalc/01/04050100.xhp\">Faayilii irraa wardii</link>"
-#: 04060112.xhp
-#, fuzzy
+#: 04050100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3159181\n"
-"115\n"
+"04050100.xhp\n"
+"par_idN105D1\n"
"help.text"
-msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
-msgstr "Lakkoofsa dogongoraa, gatiin 0 akka \"Dogongorri hin jiru\"tti hiikama. Yoo miseensi man'ee formulaa irraa dhufe gatiin dogongoraa formulaadhan murteeffama."
+msgid "<ahelp hid=\"26275\">Inserts a sheet from a different spreadsheet file.</ahelp>"
+msgstr "<ahelp hid=\"26275\">Faayilii wardii garaagaraa irraa wardii saaga.</ahelp>"
-#: 04060112.xhp
+#: 04050100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147493\n"
-"116\n"
+"04050100.xhp\n"
+"par_idN105F7\n"
"help.text"
-msgid "22"
-msgstr "22"
+msgid "Use the <link href=\"text/shared/01/01020000.xhp\">File - Open</link> dialog to locate the spreadsheet."
+msgstr "Wardii qubachiisuuf qaaqa <link href=\"text/shared/01/01020000.xhp\">Faayilii - Bani</link> fayyadami."
-#: 04060112.xhp
+#: 04050100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149200\n"
-"117\n"
+"04050100.xhp\n"
+"par_idN10609\n"
"help.text"
-msgid "Value"
-msgstr "Gatii"
+msgid "In the <link href=\"text/scalc/01/04050000.xhp\">Insert Sheet</link> dialog, select the sheet that you want to insert."
+msgstr "Wardii saaguu barbaaddu qaaqa <link href=\"text/scalc/01/04050000.xhp\">Wardii Saagi</link> keessaa filadhu."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3151174\n"
-"118\n"
+"04060000.xhp\n"
+"tit\n"
"help.text"
-msgid "8 byte IEEE variable of type double/floating point"
-msgstr "Jijjiramaa Iee baayitii 8 kan akaakuu dachaa/ xuqaa Bololi'uu"
+msgid "Function Wizard"
+msgstr "Masaka Faankishinii"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154688\n"
-"119\n"
+"04060000.xhp\n"
+"bm_id3147426\n"
"help.text"
-msgid "30"
-msgstr "30"
+msgid "<bookmark_value>inserting functions; Function Wizard</bookmark_value><bookmark_value>functions;Function Wizard</bookmark_value><bookmark_value>wizards; functions</bookmark_value>"
+msgstr "<bookmark_value>faankishinii saaguu; Massaka Faankishinii</bookmark_value><bookmark_value>faankishinoota;Masaka Faankishinii</bookmark_value><bookmark_value>masakoota; faankishinoota</bookmark_value>"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3159337\n"
-"120\n"
+"04060000.xhp\n"
+"hd_id3147426\n"
+"1\n"
"help.text"
-msgid "..."
-msgstr "..."
+msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Function Wizard</link>"
+msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Masaka Faankishinii</link>"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3155388\n"
-"121\n"
+"04060000.xhp\n"
+"par_id3145271\n"
+"2\n"
"help.text"
-msgid "Next element"
-msgstr "Miseensa itti aanu"
+msgid "<variable id=\"funktionsautopilottext\"><ahelp hid=\".uno:FunctionDialog\">Opens the <emph>Function Wizard</emph>, which helps you to interactively create formulas.</ahelp></variable> Before you start the Wizard, select a cell or a range of cells from the current sheet, in order to determine the position at which the formula will be inserted."
+msgstr "<variable id=\"funktionsautopilottext\"><ahelp hid=\".uno:FunctionDialog\"><emph>Masaka Faankishinii</emph>bana, foormulaawwan uumuf si gargaaru bana.</ahelp></variable> Bakkatti foormulaan saagamu murteessuuf masaka eegaluu keen dura man'ee yookiin hangii man'eewwanii wardii irraa filadhu."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3154935\n"
-"122\n"
+"04060000.xhp\n"
+"par_id8007446\n"
"help.text"
-msgid "String Array"
-msgstr "Waraantoo Diraa"
+msgid "You can download the complete ODFF (OpenDocument Format Formula) specification from the <link href=\"http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula\">OASIS</link> web site."
+msgstr "You can download the complete ODFF (OpenDocument Format Formula) specification from the <link href=\"http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula\">OASIS</link> web site irraa ODFF (OpenDocument Format Formula) hundaa naqachuu dandeessa."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153105\n"
-"123\n"
+"04060000.xhp\n"
+"par_id3159153\n"
+"60\n"
"help.text"
-msgid "A cell area, which contains values of data type Text and is passed as a string array. A string array in $[officename] Calc is defined as follows:"
-msgstr "Nannoo man'ee, kan gatiiwwan akaakuu deetaa barruu qabuu fi akka waraantoo diraatti hiikame. Waraantoon diraa $[officename] Calc keessaa akka armaan gadiitti hiikamu:"
+msgid "The <emph>Function Wizard</emph> has two tabs: <emph>Functions</emph> is used to create formulas, and <emph>Structure</emph> is used to check the formula build."
+msgstr "<emph>Masakni Faankishinii</emph> caancaloota lama qaba. <emph>Faankishinoonni</emph> foormulaa uumuuf gargaara, <emph>CaasaanStructure</emph> immoo foormulaa ijaarame mirkaneessuuf gargaara."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149908\n"
-"124\n"
+"04060000.xhp\n"
+"hd_id3154490\n"
+"3\n"
"help.text"
-msgid "<emph>Offset</emph>"
-msgstr "<emph>Iddoodaa</emph>"
+msgid "Functions Tab"
+msgstr "Caancala Faankishinootaa"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3159165\n"
-"125\n"
+"04060000.xhp\n"
+"par_id3149378\n"
+"5\n"
"help.text"
-msgid "<emph>Name</emph>"
-msgstr "<emph>Maqaa</emph>"
+msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
+msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">Tarree Akaakuuwwanii fi Faankishinootaa</link>"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3159150\n"
-"126\n"
+"04060000.xhp\n"
+"hd_id3154730\n"
+"36\n"
"help.text"
-msgid "<emph>Description</emph>"
-msgstr "<emph>Ibsa</emph>"
+msgid "Category"
+msgstr "Akaakuu"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149769\n"
-"127\n"
+"04060000.xhp\n"
+"par_id3153417\n"
+"37\n"
"help.text"
-msgid "0"
-msgstr "0"
+msgid "<variable id=\"kategorienliste\"><ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_CATEGORY\">Lists all the categories to which the different functions are assigned. Select a category to view the appropriate functions in the list field below.</ahelp> Select \"All\" to view all functions in alphabetical order, irrespective of category. \"Last Used\" lists the functions you have most recently used. </variable>"
+msgstr "<variable id=\"kategorienliste\"><ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_CATEGORY\">Akaakuuwwan Faankishinoonni garagaraa itti mogga'an hunda tarreessa.Faankishinii sirrii dirree tarree armaan gadii keessa jiru agarsiisuuf akaakuu filadhu.</ahelp> Faankishinoota hunda tartiiba ABtiin akaakuu malee agarsiisuuf \"Hunda\" filadhu.\"Maayii kan fayyadamame\" faankishinoota yeroo dhihootti fayyadamte tarreessa. </variable>"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150509\n"
-"128\n"
+"04060000.xhp\n"
+"hd_id3150749\n"
+"6\n"
"help.text"
-msgid "Col1"
-msgstr "Col1"
+msgid "Function"
+msgstr "Fankishinii"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148447\n"
-"129\n"
+"04060000.xhp\n"
+"par_id3155445\n"
+"7\n"
"help.text"
-msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
-msgstr "Lakkoofsa tarjaa golee gubbaa-bitaa kan bal'ina man'ee keessaati. Lakkoofsa kennuun 0 irraa eegala."
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_FUNCTION\">Displays the functions found under the selected category. Double-click to select a function.</ahelp> A single-click displays a short function description."
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_FUNCTION\">Faankishinoota akaakuu filatame jala jiran mul'isa.Faankkishinii filachuuf hantuutee lama-cuqaasi.</ahelp> Cuqaasni al tokkee ibsa gabaabaa faankishinii mul'isa."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3145418\n"
-"130\n"
+"04060000.xhp\n"
+"hd_id3159264\n"
+"8\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "Array"
+msgstr "Waraantoo"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147512\n"
-"131\n"
+"04060000.xhp\n"
+"par_id3149566\n"
+"9\n"
"help.text"
-msgid "Row1"
-msgstr "Tarree1"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FORMULA:BTN_MATRIX\">Specifies that the selected function is inserted into the selected cell range as an array formula. </ahelp> Array formulas operate on multiple cells. Each cell in the array contains the formula, not as a copy but as a common formula shared by all matrix cells."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FORMULA:BTN_MATRIX\">Faankishiniin filatame akka waraantoo foormulaatti hangii man'ee filatamee keessatti saagamuu isaa adda baasa. </ahelp> Foormuloonni waraantoo man'ee hedduu irratti hojjetu.Man'een hundi waraantoo keessa jiru foormulaa foormulaa akka garagalchaatti osoo hin taane akka foormulaa baratamaa man'eewwan tarreentaa hundaan hiramaniitti of keessatti qabata."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147235\n"
-"132\n"
+"04060000.xhp\n"
+"par_id3155959\n"
+"61\n"
"help.text"
-msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
-msgstr "Lakkoofsa tarree golee gubbaa-bitaa kan bal'ina man'ee keessaati; Lakkoofsa kennuun 0 irraa eegala."
+msgid "The <emph>Array</emph> option is identical to the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter command, which is used to enter and confirm formulas in the sheet. The formula is inserted as a matrix formula indicated by two braces { }."
+msgstr "Filannoon <emph>Waraantoo</emph> ajaja<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter foormuloota galchuufi dhugoomsuuf gargaaru wajjiin walfakkaata. Foormulaan akka foormulaa tarreentaa sadalga lamaan mul'ifametti saagama { }."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3155362\n"
-"133\n"
+"04060000.xhp\n"
+"par_id3152993\n"
+"40\n"
"help.text"
-msgid "4"
-msgstr "4"
+msgid "The maximum size of an array range is 128 by 128 cells."
+msgstr "Hammantaa guddaan hangii waraantoo man'eewwan 128 128tiini dha."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3151051\n"
-"134\n"
+"04060000.xhp\n"
+"hd_id3150367\n"
+"41\n"
"help.text"
-msgid "Tab1"
-msgstr "caancala1"
+msgid "Argument Input Fields"
+msgstr "Dirreewwan Qajeelfama Naqan"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148923\n"
-"135\n"
+"04060000.xhp\n"
+"par_id3145587\n"
+"15\n"
"help.text"
-msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
-msgstr "Lakkoofsa gabatee golee gubbaa-bitaa kan bal'ina man'ee keessaati. Lakkoofsa kennuun 0 irraa eegala."
+msgid "When you double-click a function, the argument input field(s) appear on the right side of the dialog. To select a cell reference as an argument, click directly into the cell, or drag across the required range on the sheet while holding down the mouse button. You can also enter numerical and other values or references directly into the corresponding fields in the dialog. When using <link href=\"text/scalc/01/04060102.xhp\" name=\"date entries\">date entries</link>, make sure you use the correct format. Click OK to insert the result into the spreadsheet."
+msgstr "Yeroo faankishinii lama-cuqaastu,dirree(wwan)qajeelfama galchan harka mirga qaaqaatti mul'atu.Wabii man'ee akka qajeelfamaatti filachuudhaaf,yerooqabduu hantuutee gaqqabdu kallattiidhaan man'ee keessa cuqaasi,ykn hangii barbaadame wardii irra jiru harkisi.Gatiiwwan lakkoofsaa fi biroo ykn wabiiwwan kallattiidhaan gita dirreewwanii qaaqa keessa jiranittis galchuu ni dandeessa.Yeroo <link href=\"text/scalc/01/04060102.xhp\" name=\"date entries\">galiinsa guyyaa</link>fayyadamtu,dhangii sirrii fayyadamuu ke mirkaneessi.Firii wardii keessatti saaguuf OK cuqaasi."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149158\n"
-"136\n"
+"04060000.xhp\n"
+"hd_id3149408\n"
+"18\n"
"help.text"
-msgid "6"
-msgstr "6"
+msgid "Function Result"
+msgstr "Firii Faankishinii"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3166437\n"
-"137\n"
+"04060000.xhp\n"
+"par_id3155809\n"
+"19\n"
"help.text"
-msgid "Col2"
-msgstr "Col2"
+msgid "As soon you enter arguments in the function, the result is calculated. This preview informs you if the calculation can be carried out with the arguments given. If the arguments result in an error, the corresponding <link href=\"text/scalc/05/02140000.xhp\" name=\"error code\">error code</link> is displayed."
+msgstr "Akkuma qajeelfamoota faankishinii keessa galchiteen, firiin ni shallagama.Durargiin kun qajeelfamoota kennamaniin hojjetamuu isaa sitti hima.yoo qajeelfamootni dogoggorri isaan mudate,gitni<link href=\"text/scalc/05/02140000.xhp\" name=\"error code\">lakkadaa dogoggoraae</link> ni mul'ata."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149788\n"
-"138\n"
+"04060000.xhp\n"
+"par_id3148700\n"
+"23\n"
"help.text"
-msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
-msgstr "Lakkoofsa tarjaa kan golee jala-mirgaa kan bal'ina man'ee keessaati; Lakkoofsa kennuun 0 irraa eegala."
+msgid "The required arguments are indicated by names in bold print."
+msgstr "Qajeelfamootni barbaadaman maqaa maxxansaa yabbuu keessa jiruun mul'ifamu."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3166450\n"
-"139\n"
+"04060000.xhp\n"
+"hd_id3153064\n"
+"22\n"
"help.text"
-msgid "8"
-msgstr "8"
+msgid "f(x) (depending on the selected function)"
+msgstr "f(X) (faankishinii filatame irratti hundaa'uun)"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3152877\n"
-"140\n"
+"04060000.xhp\n"
+"par_id3157980\n"
+"24\n"
"help.text"
-msgid "Row2"
-msgstr "Tarree2"
+msgid "<ahelp hid=\"HID_SC_FAP_BTN_FX4\">Allows you to access a subordinate level of the <emph>Function Wizard</emph> in order to nest another function within the function, instead of a value or reference.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_FAP_BTN_FX4\">Jalee <emph>Faankishinii wiizaardii</emph> faankishinii keessatti faankishinii biraa ijaaruuf akka argattu siif eeyyama, iddoo gatii ykn wabii.</ahelp>"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3152949\n"
-"141\n"
+"04060000.xhp\n"
+"hd_id3145076\n"
+"25\n"
"help.text"
-msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
-msgstr "Lakkoofsa tarree kan golee jala-mirgaa kan bal'ina man'ee keessaati; Lakkoofsa kennuun 0 irraa eegala."
+msgid "Argument/Parameter/Cell Reference (depending on the selected function)"
+msgstr "Qajeelfama/Ulaagaa/Wabii Man'ee (faankishinii filatame irratti hundaa'uun)"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3159270\n"
-"142\n"
+"04060000.xhp\n"
+"par_id3159097\n"
+"26\n"
"help.text"
-msgid "10"
-msgstr "10"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FORMULA:ED_REF\">The number of visible text fields depends on the function. Enter arguments either directly into the argument fields or by clicking a cell in the table.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_FORMULA:ED_REF\">Lakkoofsi dirreewwan barruu mul'atanii faankishinii irratti hundaa'a.Qajeelfama kallattiidhaan ykn man'ee gabatee keessa jiru cuqaasuudhaan dirreewwan qajeelfamaatti galchi.</ahelp>"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154107\n"
-"143\n"
+"04060000.xhp\n"
+"hd_id3154957\n"
+"51\n"
"help.text"
-msgid "Tab2"
-msgstr "caancala2"
+msgid "Result"
+msgstr "Bu'aa"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153747\n"
-"144\n"
+"04060000.xhp\n"
+"par_id3150211\n"
+"52\n"
"help.text"
-msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
-msgstr "Lakkoofsa gabatee kan golee jala-mirgaa kan bal'ina man'ee keessaati; Lakkoofsa kennuun 0 irraa eegala."
+msgid "Displays the calculation result or an error message."
+msgstr "Firii shallaggii ykn ergaa dogoggoraa mul'isa"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149924\n"
-"145\n"
+"04060000.xhp\n"
+"hd_id3151304\n"
+"43\n"
"help.text"
-msgid "12"
-msgstr "12"
+msgid "Formula"
+msgstr "Foormulaa"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154858\n"
-"146\n"
+"04060000.xhp\n"
+"par_id3149898\n"
+"44\n"
"help.text"
-msgid "Count"
-msgstr "Lakkaa'i"
+msgid "<ahelp hid=\"HID_SC_FAP_FORMULA\">Displays the created formula. Type your entries directly, or create the formula using the wizard.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_FAP_FORMULA\">Foormulaa uumame mul'isa.Galfata ke kallattiidhaan barreessi,ykn masaka fayyadamuudhaan foormmulaa uumi.</ahelp>"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148621\n"
-"147\n"
+"04060000.xhp\n"
+"hd_id3153249\n"
+"45\n"
"help.text"
-msgid "Number of the following elements. Empty cells are not counted or passed."
-msgstr "Lakkoofsa miseensota itti aananii; Man'eewwan duwwaan hin lakkaawwaman ykn ni taramu."
+msgid "Back"
+msgstr "Duuba"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148467\n"
-"148\n"
+"04060000.xhp\n"
+"par_id3152869\n"
+"53\n"
"help.text"
-msgid "14"
-msgstr "14"
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_BACKWARD\">Moves the focus back through the formula components, marking them as it does so.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_BACKWARD\">Xiyyeeffannoo,akka ofii hojjetetti isaan mallatteessuudhaan,qaamota foormulaa keessa gara duubaatti deemsisa.</ahelp>"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3151126\n"
-"149\n"
+"04060000.xhp\n"
+"par_id3146966\n"
+"56\n"
"help.text"
-msgid "Col"
-msgstr "Col"
+msgid "To select a single function from a complex formula consisting of several functions, double-click the function in the formula window."
+msgstr "Foormulaa wal-xaxaa faankishinii hedduu of keessatti qabu irra faankishinii tokko filachuuf,faankishinii foddaa foormulaa keessa jiru lama-cuqaasi."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154334\n"
-"150\n"
+"04060000.xhp\n"
+"hd_id3155762\n"
+"54\n"
"help.text"
-msgid "Column number of the element. Numbering starts at 0."
-msgstr "Lakkoofsa tarjaa miseensaa; Lakkoofsa kennuun 0 irraa eegala."
+msgid "Next"
+msgstr "Itti Aanee"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149416\n"
-"151\n"
+"04060000.xhp\n"
+"par_id3149316\n"
+"55\n"
"help.text"
-msgid "16"
-msgstr "16"
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_FORWARD\">Moves forward through the formula components in the formula window.</ahelp> This button can also be used to assign functions to the formula. If you select a function and click the <emph>Next </emph>button, the selection appears in the formula window."
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_FORWARD\">Qaamota foormulaa foddaa foormulaa keessa jiran keessa gara fulduraatti deema.</ahelp> Qabduun kun faankishinoota gara foormulaatti moggaasuufis ni gargaara. Yoo faankishinii filattee qabduu <emph>Ittaanee </emph>"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150631\n"
-"152\n"
+"04060000.xhp\n"
+"par_id3159262\n"
+"57\n"
"help.text"
-msgid "Row"
-msgstr "Tarree"
+msgid "Double-click a function in the selection window to transfer it to the formula window."
+msgstr "Faankishinii foddaa filannoo keessa jiru gara foddaa foormulaatti dabarsuuf ,faankishinii foddaa filannoo keessa jiru lama cuqaasi."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150424\n"
-"153\n"
+"04060000.xhp\n"
+"hd_id3148745\n"
+"58\n"
"help.text"
-msgid "Row number of the element; numbering starts at 0."
-msgstr "Lakkoofsa tarree miseensaa; Lakkoofsa kennuun 0 irraa eegala."
+msgid "Cancel"
+msgstr "Dhiisi"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154797\n"
-"154\n"
+"04060000.xhp\n"
+"par_id3147402\n"
+"59\n"
"help.text"
-msgid "18"
-msgstr "18"
+msgid "Closes the dialog without implementing the formula."
+msgstr "Foormulaa hojii irra osoo hin oolchiin qaaqa cufa."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3143274\n"
-"155\n"
+"04060000.xhp\n"
+"hd_id3150534\n"
+"32\n"
"help.text"
-msgid "Tab"
-msgstr "caancala"
+msgid "OK"
+msgstr "OK"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149513\n"
-"156\n"
+"04060000.xhp\n"
+"par_id3153029\n"
+"33\n"
"help.text"
-msgid "Table number of the element; numbering starts at 0."
-msgstr "Lakkoofsa gabatee miseensaa; Lakkoofsa kennuun 0 irraa eegala."
+msgid "Ends the <emph>Function Wizard</emph>, and transfers the formula to the selected cells."
+msgstr "<emph>Masaka faankishinii</emph>xumuree, foormulaa mandheewwan filatamanitti dabarsa."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3145306\n"
-"157\n"
+"04060000.xhp\n"
+"par_id3156400\n"
+"34\n"
"help.text"
-msgid "20"
-msgstr "20"
+msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
+msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">Tarree Akaakuuwwanii fi Faankishinootaa</link>"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153948\n"
-"158\n"
+"04060000.xhp\n"
+"hd_id3147610\n"
+"47\n"
"help.text"
-msgid "Error"
-msgstr "Dogongora"
+msgid "Structure tab"
+msgstr "Caancala Caasaa"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153534\n"
-"159\n"
+"04060000.xhp\n"
+"par_id3153122\n"
+"48\n"
"help.text"
-msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
-msgstr "Lakkoofsi dogoggora,iddoo gatiin 0 akka \"dogoggorri hin jiruu\" jedhutti hiikama.man'ee yoo miseensi formuulaa man'ee irraa argama ta'ee gatiin dogoggora formuuladhaan tilmaamama."
+msgid "On this page, you can view the structure of the function."
+msgstr "Fuula kanarratti,caasa faankishinii mul'isuu ni dandeessa"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153311\n"
-"160\n"
+"04060000.xhp\n"
+"par_id3149350\n"
+"4\n"
"help.text"
-msgid "22"
-msgstr "22"
+msgid "If you start the <emph>Function Wizard</emph> while the cell cursor is positioned in a cell that already contains a function, the <emph>Structure</emph> tab is opened and shows the composition of the current formula."
+msgstr "Osoo <emph>Masaka Faankishinii</emph> yeroo qareen mandhee,mandhee durumaan faankishinii of keessatti qabu keessa qubate eegalte,caancalli <emph>Caasaa</emph> ni banama,qabiyyee foormulaa ammees ni mul'isa."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148695\n"
-"161\n"
+"04060000.xhp\n"
+"hd_id3149014\n"
+"49\n"
"help.text"
-msgid "Len"
-msgstr "Len"
+msgid "Structure"
+msgstr "Caasaa"
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3152769\n"
-"162\n"
+"04060000.xhp\n"
+"par_id3150481\n"
+"50\n"
"help.text"
-msgid "Length of the following string, including closing zero byte. If the length including closing zero byte equals an odd value a second zero byte is added to the string so that an even value is achieved. Therefore, Len is calculated using ((StrLen+2)&~1)."
-msgstr "Dheerina dursaa armaan gadii, cufaa baayitii duwwaa dabalachuun.Yoo dheerinni cuufaa baayitii duwwaa gatii qaraa waliin wal qixa ta'ee baayiiinduwwaa lamata dursaatti ida'amuun gatiin guutuun argama.Kanaafuu,Len ((StrLen+2)&~1) fayyadamun shallagama."
+msgid "<ahelp hid=\"HID_SC_FAP_STRUCT\">Displays a hierarchical representation of the current function.</ahelp> You can hide or show the arguments by a click on the plus or minus sign in front."
+msgstr "<ahelp hid=\"HID_SC_FAP_STRUCT\">Sadarkaa Bakka bu'iinsa faankishinii ammee mul'isa.</ahelp> Mallattoo ida'uu ykn hir'isuu fuldura jiru cuqaasuun qajeelfamoota dhoksuu ykn agarsiisuu ni dandeessa."
-#: 04060112.xhp
+#: 04060000.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153772\n"
-"163\n"
+"04060000.xhp\n"
+"par_id3148886\n"
+"63\n"
"help.text"
-msgid "24"
-msgstr "24"
+msgid "Blue dots denote correctly entered arguments. Red dots indicate incorrect data types. For example: if the SUM function has one argument entered as text, this is highlighted in red as SUM only permits number entries."
+msgstr "Tuqaa cuquliisni qajeelfamoota sirnaan galan bakka bu'a.Tuqaa diimaan gosoota deetaa sirrii hin taan mul'isa.Fakkeenyaaf: osoo faankishiniin IDA'UU qajeelfama akka barruutti gale toko qabaate, kun akka IDA'UUn galiinsa lakkoofsaa qofa eeyyamutti diimaadhaan shoolama."
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153702\n"
-"164\n"
+"04060100.xhp\n"
+"tit\n"
"help.text"
-msgid "String"
-msgstr "Dursaa"
+msgid "Functions by Category"
+msgstr "Faankishinoota Akaakuudhaan"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154474\n"
-"165\n"
+"04060100.xhp\n"
+"bm_id3148575\n"
"help.text"
-msgid "String with closing zero byte"
-msgstr "Dursaa Cuufaa baayitii duwwaa waliin"
+msgid "<bookmark_value>functions;listed by category</bookmark_value> <bookmark_value>categories of functions</bookmark_value> <bookmark_value>list of functions</bookmark_value>"
+msgstr "<bookmark_value>faankishinoota;akaakuudhaan tarreeffaman</bookmark_value> <bookmark_value>akaakuuwwan faankishinootaa</bookmark_value> <bookmark_value>tarree faankishinootaa</bookmark_value>"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3156269\n"
-"166\n"
+"04060100.xhp\n"
+"hd_id3154944\n"
+"16\n"
"help.text"
-msgid "24+Len"
-msgstr "24+Len"
+msgid "Functions by Category"
+msgstr "Faankishinoota Akaakuudhaan"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154825\n"
-"167\n"
+"04060100.xhp\n"
+"par_id3149378\n"
+"2\n"
"help.text"
-msgid "..."
-msgstr "..."
+msgid "This section describes the functions of $[officename] Calc. The various functions are divided into categories in the Function Wizard."
+msgstr "Kutaan kun faayidaa $[officename] 'Calc'ii ibsa.Faankishinootni garaagaraa Masaka Faankishinii keessatti akaakuuwwanitti hiramaniiru."
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147097\n"
-"168\n"
+"04060100.xhp\n"
+"par_id0120200910234570\n"
"help.text"
-msgid "Next element"
-msgstr "Miseensa itti aanu"
+msgid "You can find detailed explanations, illustrations, and examples of Calc functions <link href=\"http://help.libreoffice.org/Calc/Functions_by_Category\">in the LibreOffice WikiHelp</link>."
+msgstr ""
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3159091\n"
-"169\n"
+"04060100.xhp\n"
+"hd_id3146972\n"
+"3\n"
"help.text"
-msgid "Cell Array"
-msgstr "Waraantoo man'ee"
+msgid "<link href=\"text/scalc/01/04060101.xhp\" name=\"Database\">Database</link>"
+msgstr "<link href=\"text/scalc/01/04060101.xhp\" name=\"Database\">Kuusdeetaa</link>"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3156140\n"
-"170\n"
+"04060100.xhp\n"
+"hd_id3155443\n"
+"4\n"
"help.text"
-msgid "Cell arrays are used to call cell areas containing text as well as numbers. A cell array in $[officename] Calc is defined as follows:"
-msgstr "Waraantoowwan man'ee nannoowwan man'ee barruu akkasumaas lakkoofsota qabate wamuuf fayyada.Waraantoo man'ee $[officename] Calc akka armaan gaditti hiikama:"
+msgid "<link href=\"text/scalc/01/04060102.xhp\" name=\"Date & Time\">Date & Time</link>"
+msgstr "<link href=\"text/scalc/01/04060102.xhp\" name=\"Date & Time\">Guyyaa fi Yeroo</link>"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154664\n"
-"171\n"
+"04060100.xhp\n"
+"hd_id3147339\n"
+"5\n"
"help.text"
-msgid "<emph>Offset</emph>"
-msgstr "<emph>Iddooda</emph>"
+msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Financial\">Financial</link>"
+msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Financial\">Financial</link>"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154566\n"
-"172\n"
+"04060100.xhp\n"
+"hd_id3153963\n"
+"6\n"
"help.text"
-msgid "<emph>Name</emph>"
-msgstr "<emph>Maqaa</emph>"
+msgid "<link href=\"text/scalc/01/04060104.xhp\" name=\"Information\">Information</link>"
+msgstr "<link href=\"text/scalc/01/04060104.xhp\" name=\"Information\">Odeeffannoo</link>"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3146073\n"
-"173\n"
+"04060100.xhp\n"
+"hd_id3146316\n"
+"7\n"
"help.text"
-msgid "<emph>Description</emph>"
-msgstr "<emph>Ibsaa</emph>"
+msgid "<link href=\"text/scalc/01/04060105.xhp\" name=\"Logical\">Logical</link>"
+msgstr "<link href=\"text/scalc/01/04060105.xhp\" name=\"Logical\">Yaayaa</link>"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154117\n"
-"174\n"
+"04060100.xhp\n"
+"hd_id3148485\n"
+"8\n"
"help.text"
-msgid "0"
-msgstr "0"
+msgid "<link href=\"text/scalc/01/04060106.xhp\" name=\"Mathematical\">Mathematical</link>"
+msgstr "<link href=\"text/scalc/01/04060106.xhp\" name=\"Mathematical\">Herrega</link>"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150988\n"
-"175\n"
+"04060100.xhp\n"
+"hd_id3150363\n"
+"9\n"
"help.text"
-msgid "Col1"
-msgstr "Tarjaa1"
+msgid "<link href=\"text/scalc/01/04060107.xhp\" name=\"Matrix\">Array</link>"
+msgstr "<link href=\"text/scalc/01/04060107.xhp\" name=\"Matrix\">Waraantoo</link>"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3146783\n"
-"176\n"
+"04060100.xhp\n"
+"hd_id3150208\n"
+"10\n"
"help.text"
-msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
-msgstr "Lakkoofsa tarjaa xiyyoo harkaa bitaa gara gubbaa nannoo man'eetti argamu;lakkaawwiin 0 irraa eegala."
+msgid "<link href=\"text/scalc/01/04060108.xhp\" name=\"Statistical\">Statistical</link>"
+msgstr "<link href=\"text/scalc/01/04060108.xhp\" name=\"Statistical\">Istaatikaalii</link>"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153666\n"
-"177\n"
+"04060100.xhp\n"
+"hd_id3166428\n"
+"11\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<link href=\"text/scalc/01/04060109.xhp\" name=\"Spreadsheet\">Spreadsheet</link>"
+msgstr "<link href=\"text/scalc/01/04060109.xhp\" name=\"Spreadsheet\">Wardii</link>"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149560\n"
-"178\n"
+"04060100.xhp\n"
+"hd_id3145585\n"
+"12\n"
"help.text"
-msgid "Row1"
-msgstr "Tarree1"
+msgid "<link href=\"text/scalc/01/04060110.xhp\" name=\"Text\">Text</link>"
+msgstr "<link href=\"text/scalc/01/04060110.xhp\" name=\"Text\">Barruu</link>"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3156156\n"
-"179\n"
+"04060100.xhp\n"
+"hd_id3156449\n"
+"13\n"
"help.text"
-msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
-msgstr "Lakkoofsa tarree xiyyoo harkaa bitaa gara gubbaa nannoo man'eetti argamu;lakkaawwiin 0 irraa eegala."
+msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Add-in\">Add-in</link>"
+msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Add-in\">Itti-Ida'i</link>"
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150408\n"
-"180\n"
+"04060100.xhp\n"
+"par_id3150715\n"
+"14\n"
"help.text"
-msgid "4"
-msgstr "4"
+msgid "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operators\">Operators</link> are also available."
+msgstr "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operators\">ogeejjota</link> are also available."
-#: 04060112.xhp
+#: 04060100.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150593\n"
-"181\n"
+"04060100.xhp\n"
+"par_id0902200809540918\n"
"help.text"
-msgid "Tab1"
-msgstr "Cancaala1"
+msgid "<variable id=\"drking\"><link href=\"http://help.libreoffice.org/Calc/Functions_by_Category\">Calc Functions By Category</link> in the LibreOffice WikiHelp</variable>"
+msgstr ""
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150357\n"
-"182\n"
+"04060101.xhp\n"
+"tit\n"
"help.text"
-msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
-msgstr "Lakkoofsa gabatee xiyyoo harkaa bitaa gara gubbaa nannoo man'eetti argamu;lakkaawwiin 0 irraa eegala."
+msgid "Database Functions"
+msgstr "Faankishinoota Kuusdeetaa"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3146912\n"
-"183\n"
+"04060101.xhp\n"
+"bm_id3148946\n"
"help.text"
-msgid "6"
-msgstr "6"
+msgid "<bookmark_value>Function Wizard; databases</bookmark_value> <bookmark_value>functions; database functions</bookmark_value> <bookmark_value>databases; functions in $[officename] Calc</bookmark_value>"
+msgstr "<bookmark_value>Masaka Faankishinii; kuusdeetaa</bookmark_value> <bookmark_value>faankishinoota; faankishinoota kuusdeetaa</bookmark_value> <bookmark_value>kuusdeetota; faankishinoota $[officename] Calc</bookmark_value> keessaa"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153352\n"
-"184\n"
+"04060101.xhp\n"
+"hd_id3148946\n"
+"1\n"
"help.text"
-msgid "Col2"
-msgstr "Tarjaa2"
+msgid "Database Functions"
+msgstr "Faankishinoota Kuusdeetaa"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3155893\n"
-"185\n"
+"04060101.xhp\n"
+"par_id3145173\n"
+"2\n"
"help.text"
-msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
-msgstr "Lakkoofsa tarjaa xiyyoo harkaa mirgaa gara gadii nannoo man'eetti argamu;lakkaawwiin 0 irraa eegala."
+msgid "<variable id=\"datenbanktext\">This section deals with functions used with data organized as one row of data for one record. </variable>"
+msgstr "<variable id=\"datenbanktext\">kutaan kun faankkishinoota deetaa akka deetaa tarree tokkotti galmee tokkoof gurmaa'e waliin fayyadamaman ibsa.</variable>"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150827\n"
+"04060101.xhp\n"
+"par_id3154016\n"
"186\n"
"help.text"
-msgid "8"
-msgstr "8"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3148406\n"
-"187\n"
-"help.text"
-msgid "Row2"
-msgstr "Tarree2"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3150673\n"
-"188\n"
-"help.text"
-msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
-msgstr "Lakkoofsa tarree xiyyoo harkaa mirgaa gara gadii nannoo man'eetti argamu;lakkaawwiin 0 irraa eegala."
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3155864\n"
-"189\n"
-"help.text"
-msgid "10"
-msgstr "10"
+msgid "The Database category may be confused with a database integrated in $[officename]. However, there is no connection between a database in $[officename] and the Database category in $[officename] Calc."
+msgstr "Akaakuun kuusdeetaa,kuusdeetaa$[officename] keessatti tokkummaa'eetiin jaanja'uu ni danda'a.Haata'u malee,kuusdeetaa $[officename] keessa jiruu fi akaakuu kuusdeetaa $[officename] Calc keessa jiru gidduu wal quunnamtiin hin jiru."
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153197\n"
+"04060101.xhp\n"
+"hd_id3150329\n"
"190\n"
"help.text"
-msgid "Tab2"
-msgstr "Cancaala2"
+msgid "Example Data:"
+msgstr "Fakkeenya Deetaa"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149329\n"
+"04060101.xhp\n"
+"par_id3153713\n"
"191\n"
"help.text"
-msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
-msgstr "Lakkoofsa gabatee xiyyoo harkaa mirgaa gara gadii nannoo man'eetti argamu;lakkaawwiin 0 irraa eegala."
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3147360\n"
-"192\n"
-"help.text"
-msgid "12"
-msgstr "12"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3154520\n"
-"193\n"
-"help.text"
-msgid "Count"
-msgstr "Lakkaa'i"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3150647\n"
-"194\n"
-"help.text"
-msgid "Number of the following elements. Empty cells are not counted or passed."
-msgstr "Lakkoofsa miseensota armaan gadii.Man'eewwan duwwaa hin lakkaa'aman ykn irra hin darbaman."
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149747\n"
-"195\n"
-"help.text"
-msgid "14"
-msgstr "14"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3147579\n"
-"196\n"
-"help.text"
-msgid "Col"
-msgstr "Tarjaa2"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3154188\n"
-"197\n"
-"help.text"
-msgid "Column number of the element. Numbering starts at 0."
-msgstr "Lakkoofsa tarjaa miseensaa.Lakkaawwiin 0 irraa eegala."
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3159209\n"
-"198\n"
-"help.text"
-msgid "16"
-msgstr "16"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3153265\n"
-"199\n"
-"help.text"
-msgid "Row"
-msgstr "Tarree"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3150095\n"
-"200\n"
-"help.text"
-msgid "Row number of the element; numbering starts at 0."
-msgstr "Lakkoofsa tarree miseensaa;lakkaawwiin 0 irraa eegala."
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3151276\n"
-"201\n"
-"help.text"
-msgid "18"
-msgstr "18"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149177\n"
-"202\n"
-"help.text"
-msgid "Tab"
-msgstr "Cancaala"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3146925\n"
-"203\n"
-"help.text"
-msgid "Table number of the element; numbering starts at 0."
-msgstr "Lakkoofsa gabatee miseensaa;lakkaawwiin 0 irraa eegala."
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3150488\n"
-"204\n"
-"help.text"
-msgid "20"
-msgstr "20"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149441\n"
-"205\n"
-"help.text"
-msgid "Error"
-msgstr "Dogoggora"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3156048\n"
-"206\n"
-"help.text"
-msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
-msgstr "Lakkoofsi dogoggora,iddoo gatiin 0 akka \"dogoggorri hin jiruu\" jedhutti hiikame dha.man'ee yoo miseensi formuulaa man'ee irraa argama ta'ee gatiin dogoggora formuuladhaan tilmaamama."
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3163813\n"
-"207\n"
-"help.text"
-msgid "22"
-msgstr "22"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3159102\n"
-"208\n"
-"help.text"
-msgid "Type"
-msgstr "Akaakuu"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149581\n"
-"209\n"
-"help.text"
-msgid "Type of cell content, 0 == Double, 1 == String"
-msgstr "Akaakuun qabeenya man'ee, == Dachaa, 1 == Diraa"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3155182\n"
-"210\n"
-"help.text"
-msgid "24"
-msgstr "24"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3153291\n"
-"211\n"
-"help.text"
-msgid "Value or Len"
-msgstr "Gatii ykn Dheerina"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3148560\n"
-"212\n"
-"help.text"
-msgid "If type == 0: 8 byte IEEE variable of type double/floating point"
-msgstr "Yoo akaakuun == 0:8 baayitii IEEE jijjirama akaakuu dachaa/tuqaa bololi'aa"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3148901\n"
-"213\n"
-"help.text"
-msgid "If type == 1: Length of the following string, including closing zero byte. If the length including closing zero byte equals an odd value a second zero byte is added to the string so that an even value is achieved. Therefore, Len is calculated using ((StrLen+2)&~1)."
-msgstr "Yoo akaakuun == 1: dheerinni dursaa armaan gadii,baayitii duwwaa cufaa dabalachuun.Yoo dheerinni baayitii duwwaa cufaa gatii qaraa waliin wal qixaa ta'ee baayitii duwwaa lammataa dursaatti ida'amuun kanaafuu gatii gutuu argamsiisa.Kanaafuu,dheerinni ((StrLen+2)&1) fayyadamuun shallagama."
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3145215\n"
-"214\n"
-"help.text"
-msgid "26 if type==1"
-msgstr "yoo akaakuun==1 26"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3155143\n"
-"215\n"
-"help.text"
-msgid "String"
-msgstr "Diraa"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149298\n"
-"216\n"
-"help.text"
-msgid "If type == 1: String with closing zero byte"
-msgstr "Yoo akaakuun == 1: dursaan baayitii cufaa duwwaa waliin"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3151322\n"
-"217\n"
-"help.text"
-msgid "32 or 26+Len"
-msgstr "32 ykn 26+Len"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3163722\n"
-"218\n"
-"help.text"
-msgid "..."
-msgstr "..."
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3151059\n"
-"219\n"
-"help.text"
-msgid "Next element"
-msgstr "Miseensa itti aanu"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"tit\n"
-"help.text"
-msgid "Statistical Functions Part Four"
-msgstr "Fankishinoota Istaatistiksii Kutaa Afur"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3153415\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"mq\"><link href=\"text/scalc/01/04060184.xhp\" name=\"Statistical Functions Part Four\">Statistical Functions Part Four</link></variable>"
-msgstr "<variable id=\"mq\"><link href=\"text/scalc/01/04060184.xhp\" name=\"Statistical Functions Part Four\">Fankishinoota Istaatistiksii Kutaa Afur</link></variable>"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"bm_id3154511\n"
-"help.text"
-msgid "<bookmark_value>MAX function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii MAX</bookmark_value>"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3154511\n"
-"2\n"
-"help.text"
-msgid "MAX"
-msgstr "MAX"
+msgid "The following data will be used in some of the function description examples:"
+msgstr "Deetaan armaan gadii fakkeenyota ibsa faankishinii muraasa keessatti fayyaduu ni danda'a."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153709\n"
+"04060101.xhp\n"
+"par_id3155766\n"
"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MAX\">Returns the maximum value in a list of arguments.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_MAX\">Tarreewwan qajeelfamootaa keesaa gatii guddaa kenna.</ahelp>"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id9282509\n"
-"help.text"
-msgid "Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN(\"string\"), still results in an error."
-msgstr "Hangii(wwan) man'ee akka wabii(wwan) man'eetti moggafaman keessa yoo gatiin lakkoofsaa hin jirree fi dogongorri hin qunnamne 0 kenna. Fankishiniin MINA() fi MAXA() yoo gatiin (lakkoofsa ykn barruu) hin jirree ykn dogongorri hin qunnamne 0 kenna.qajeelfama diraa jargifaa MIN()tti ykn MAX()tti dabarsa, fakkeenya MIN(\"diraa\"), ammayyuu dogongora keessatti argama."
+msgid "The range A1:E10 lists the children invited to Joe's birthday party. The following information is given for each entry: column A shows the name, B the grade, then age in years, distance to school in meters and weight in kilograms."
+msgstr "Hangiin A1:E10 daa'imman kabaja guyyaa dhaloota 'Joe'f afeeraman tarreessa.Odeeffannoon armaan gadii tokko tokkkoo galiinsaaf kennama:tarjaan A maqaa agarsiisa, Bn kutaa, sana booda ummurii waggaadhaan, fageenya mana barumsaattii meetiraan fi ulfaatina kiloogiraamaan."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3154256\n"
+"04060101.xhp\n"
+"par_id3145232\n"
"4\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "A"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3147340\n"
+"04060101.xhp\n"
+"par_id3146316\n"
"5\n"
"help.text"
-msgid "MAX(Number1; Number2; ...Number30)"
-msgstr "MAX(Lakkofsa1; Lakkoofsa2; ...Lakkoofsa30)"
+msgid "B"
+msgstr ""
-#: 04060184.xhp
-#, fuzzy
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3149568\n"
+"04060101.xhp\n"
+"par_id3150297\n"
"6\n"
"help.text"
-msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
-msgstr "<emph>Lakkoofsa1; Lakkoofsa2;...Lakkoofsa30</emph> gatiiwwan ykn hangiiwwan lakkoofsaati."
+msgid "C"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153963\n"
+"04060101.xhp\n"
+"par_id3150344\n"
"7\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "D"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3147343\n"
+"04060101.xhp\n"
+"par_id3150785\n"
"8\n"
"help.text"
-msgid "<item type=\"input\">=MAX(A1;A2;A3;50;100;200)</item> returns the largest value from the list."
-msgstr "<item type=\"input\">=MAX(A1;A2;A3;50;100;200)</item> gatii guddaa tarree keessaa kenna."
+msgid "E"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3148485\n"
+"04060101.xhp\n"
+"par_id3150090\n"
"9\n"
"help.text"
-msgid "<item type=\"input\">=MAX(A1:B100)</item> returns the largest value from the list."
-msgstr "<item type=\"input\">=MAX(A1:B100)</item> tarree kessaa gatii guddaa kenna."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"bm_id3166426\n"
-"help.text"
-msgid "<bookmark_value>MAXA function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii MAXA</bookmark_value>"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3166426\n"
-"139\n"
-"help.text"
-msgid "MAXA"
-msgstr "MAXA"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3150363\n"
-"140\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MAXA\">Returns the maximum value in a list of arguments. In opposite to MAX, here you can enter text. The value of the text is 0.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_MAXA\">Tarree qajeelfamoota keessaa gatii guddaa kenna. Fallaa MAX tin,asitti barruu galchuu dandeessa. Gatiin barruu 0 dha.</ahelp>"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id7689443\n"
-"help.text"
-msgid "The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered."
-msgstr "Yoo gatiin hin jiraane (barruu ykn lakkoofsa) fi dogongori itt hin dhufnee fankishinoonni MINA() fi MAXA() 0 kenna"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3150516\n"
-"141\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3166431\n"
-"142\n"
-"help.text"
-msgid "MAXA(Value1; Value2; ... Value30)"
-msgstr "MAXA(Gatii1; Gatii2; ... Gatii30)"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3150202\n"
-"143\n"
-"help.text"
-msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
-msgstr "<emph>Gatii1; Gatii2; ... Gatii30</emph>n gatiiwwanii fi hangiiwwan. Gatiin barruu duwwaa dha."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3156290\n"
-"144\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3156446\n"
-"145\n"
-"help.text"
-msgid "<item type=\"input\">=MAXA(A1;A2;A3;50;100;200;\"Text\")</item> returns the largest value from the list."
-msgstr "<item type=\"input\">=MAXA(A1;A2;A3;50;100;200;\"Barruu\")</item> gatii guddaa tarree keessaa kenna."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3149404\n"
-"146\n"
-"help.text"
-msgid "<item type=\"input\">=MAXA(A1:B100)</item> returns the largest value from the list."
-msgstr "<item type=\"input\">=MAXA(A1:B100)</item> tarree kessaa gatii guddaa kenna."
+msgid "1"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3153820\n"
+"04060101.xhp\n"
+"par_id3152992\n"
+"10\n"
"help.text"
-msgid "<bookmark_value>MEDIAN function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii MEDIAN</bookmark_value>"
+msgid "<item type=\"input\">Name</item>"
+msgstr "<item type=\"input\">Maqaa</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153820\n"
+"04060101.xhp\n"
+"par_id3155532\n"
"11\n"
"help.text"
-msgid "MEDIAN"
-msgstr "MEDIAN"
+msgid "<item type=\"input\">Grade</item>"
+msgstr "<item type=\"input\">Kutaa</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3151241\n"
+"04060101.xhp\n"
+"par_id3156448\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MEDIAN\">Returns the median of a set of numbers. In a set containing an uneven number of values, the median will be the number in the middle of the set and in a set containing an even number of values, it will be the mean of the two values in the middle of the set.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_MEDIAN\">Tuuta lakkoofsota midiyaanii kenna. Tuuta Gatiiwwan lakkoofsa guutuu hin ta'iin qabatan keessaatti, midiyaaniin lakkoofsa gidduugaleessa tuutati fi tuuta gatiiwwan lakkoofsa guutuu qabate keessaatti, aveerejii gatiiwwan lamaa gidduugalessa tuutaa keessatti argamanii ta'a.</ahelp>"
+msgid "<item type=\"input\">Age</item>"
+msgstr "<item type=\"input\">Umurii</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3148871\n"
+"04060101.xhp\n"
+"par_id3154486\n"
"13\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<item type=\"input\">Distance to School</item>"
+msgstr "<item type=\"input\">Fageenya Mana barumsaattii</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3155264\n"
+"04060101.xhp\n"
+"par_id3152899\n"
"14\n"
"help.text"
-msgid "MEDIAN(Number1; Number2; ...Number30)"
-msgstr "MEDIAN(Lakkofsa1; Lakkoofsa2; ...Lakkoofsa30)"
+msgid "<item type=\"input\">Weight</item>"
+msgstr "<item type=\"input\">Ulfaatina</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150109\n"
+"04060101.xhp\n"
+"par_id3153816\n"
"15\n"
"help.text"
-msgid "<emph>Number1; Number2;...Number30</emph> are values or ranges, which represent a sample. Each number can also be replaced by a reference."
-msgstr "<emph>Lakkoofsa1; Lakkoofsa2;...Lakkoofsa30</emph>n gatiiwwan ykn hangiiwwanii dha. Tokkoon tokkoon lakkoofsa wabiidhaan bakka bu'uu ni danda'a."
+msgid "2"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3144506\n"
+"04060101.xhp\n"
+"par_id3151240\n"
"16\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<item type=\"input\">Andy</item>"
+msgstr "<item type=\"input\">Andy</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3145078\n"
+"04060101.xhp\n"
+"par_id3156016\n"
"17\n"
"help.text"
-msgid "for an odd number: <item type=\"input\">=MEDIAN(1;5;9;20;21)</item> returns 9 as the median value."
-msgstr "lakkoofsa qaraatiif: <item type=\"input\">=MEDIAN(1;5;9;20;21)</item>n 9 akka gatii miidiyaaniiti kenna."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3149126\n"
-"165\n"
-"help.text"
-msgid "for an even number: <item type=\"input\">=MEDIAN(1;5;9;20)</item> returns the average of the two middle values 5 and 9, thus 7."
-msgstr "lakkoofsa guutuuf: <item type=\"input\">=MEDIAN(1;5;9;20)</item>n aveereji gatiiwwan gidduugaleessaa 5 fi 9 kenna, innis 7."
+msgid "<item type=\"input\">3</item>"
+msgstr "<item type=\"input\">183</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3154541\n"
+"04060101.xhp\n"
+"par_id3145073\n"
+"18\n"
"help.text"
-msgid "<bookmark_value>MIN function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii MIN</bookmark_value>"
+msgid "<item type=\"input\">9</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3154541\n"
+"04060101.xhp\n"
+"par_id3154956\n"
"19\n"
"help.text"
-msgid "MIN"
-msgstr "MIN"
+msgid "<item type=\"input\">150</item>"
+msgstr "<item type=\"input\">150</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3143222\n"
+"04060101.xhp\n"
+"par_id3153976\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MIN\">Returns the minimum value in a list of arguments.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_MIN\">Tarreewwan qajeelfamootaa keesaa gatii xiqqaa kenna.</ahelp>"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id2301400\n"
-"help.text"
-msgid "Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN(\"string\"), still results in an error."
-msgstr "Hangii(wwan) man'ee akka wabii(wwan) man'eetti moggafaman keessa yoo gatiin lakkoofsaa hin jirree fi dogongorri hin qunnamne 0 kenna. Fankishiniin MINA() fi MAXA() yoo gatiin (lakkoofsa ykn barruu) hin jirree ykn dogongorri hin qunnamne 0 kenna.qajeelfama diraa jargifaa MIN()tti ykn MAX()tti dabarsa, fakkeenya MIN(\"diraa\"), ammayyuu dogongora keessatti argama."
+msgid "<item type=\"input\">40</item>"
+msgstr "<item type=\"input\">40</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3154651\n"
+"04060101.xhp\n"
+"par_id3150894\n"
"21\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "3"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3146964\n"
+"04060101.xhp\n"
+"par_id3152870\n"
"22\n"
"help.text"
-msgid "MIN(Number1; Number2; ...Number30)"
-msgstr "MIN(Lakkofsa1; Lakkoofsa2; ...Lakkoofsa30)"
+msgid "<item type=\"input\">Betty</item>"
+msgstr "<item type=\"input\">Betty</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153486\n"
+"04060101.xhp\n"
+"par_id3149692\n"
"23\n"
"help.text"
-msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
-msgstr "<emph>Lakkoofsa1; Lakkoofsa2;...Lakkoofsa30</emph> gatiiwwan ykn hangiiwwan lakkoofsaati."
+msgid "<item type=\"input\">4</item>"
+msgstr "<item type=\"input\">148</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3155523\n"
+"04060101.xhp\n"
+"par_id3154652\n"
"24\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<item type=\"input\">10</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3154734\n"
+"04060101.xhp\n"
+"par_id3149381\n"
"25\n"
"help.text"
-msgid "<item type=\"input\">=MIN(A1:B100)</item> returns the smallest value in the list."
-msgstr "<item type=\"input\">=MIN(A1:B100)</item> tarree kessaa gatii xiqqaa kenna."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"bm_id3147504\n"
-"help.text"
-msgid "<bookmark_value>MINA function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii MINA</bookmark_value>"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3147504\n"
-"148\n"
-"help.text"
-msgid "MINA"
-msgstr "MINA"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3147249\n"
-"149\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MINA\">Returns the minimum value in a list of arguments. Here you can also enter text. The value of the text is 0.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_MINA\">Tarree qajeelfamoota keessaa gatii guddaa kenna. Asitti barruus galchuu dandeessa. Gatiin barruu 0 dha.</ahelp>"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id4294564\n"
-"help.text"
-msgid "The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered."
-msgstr "Yoo gatiin hin jiraane (barruu ykn lakkoofsa) fi dogongori itt hin dhufnee fankishinoonni MINA() fi MAXA() 0 kenna"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3150435\n"
-"150\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3153336\n"
-"151\n"
-"help.text"
-msgid "MINA(Value1; Value2; ... Value30)"
-msgstr "MINA(Gatii1; Gatii2; ... Gatii30)"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3146098\n"
-"152\n"
-"help.text"
-msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
-msgstr "<emph>Gatii1; Gatii2; ... Gatii30</emph>n gatiiwwanii fi hangiiwwan. Gatiin barruu duwwaa dha."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3148743\n"
-"153\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3147401\n"
-"154\n"
-"help.text"
-msgid "<item type=\"input\">=MINA(1;\"Text\";20)</item> returns 0."
-msgstr "<item type=\"input\">=MINA(1;\"Barruu\";20)</item> 0 kenna."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3147295\n"
-"155\n"
-"help.text"
-msgid "<item type=\"input\">=MINA(A1:B100)</item> returns the smallest value in the list."
-msgstr "<item type=\"input\">=MINA(A1:B100)</item> tarree kessaa gatii xiqqaa hundamtaa kenna."
+msgid "<item type=\"input\">1000</item>"
+msgstr "<item type=\"input\">1000</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3166465\n"
+"04060101.xhp\n"
+"par_id3153812\n"
+"26\n"
"help.text"
-msgid "<bookmark_value>AVEDEV function</bookmark_value><bookmark_value>averages;statistical functions</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii AVEDEV</bookmark_value><bookmark_value>aveerajiiwwan;fankishinii istaatiksii</bookmark_value>"
+msgid "<item type=\"input\">42</item>"
+msgstr "<item type=\"input\">42</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3166465\n"
+"04060101.xhp\n"
+"par_id3146965\n"
"27\n"
"help.text"
-msgid "AVEDEV"
-msgstr "AVEDEV"
+msgid "4"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150373\n"
+"04060101.xhp\n"
+"par_id3155596\n"
"28\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MITTELABW\">Returns the average of the absolute deviations of data points from their mean.</ahelp> Displays the diffusion in a data set."
-msgstr "<ahelp hid=\"HID_FUNC_MITTELABW\">Avereejii diviyeeshiniiwwan gonkaa kan xuqaawwan deetaa miinii isanii irraa kenna.</ahelp> faca'iinsa tuuta deetaa agarsiisa."
+msgid "<item type=\"input\">Charles</item>"
+msgstr "<item type=\"input\">Charles</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3150038\n"
+"04060101.xhp\n"
+"par_id3147244\n"
"29\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<item type=\"input\">3</item>"
+msgstr "<item type=\"input\">183</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3145636\n"
+"04060101.xhp\n"
+"par_id3149871\n"
"30\n"
"help.text"
-msgid "AVEDEV(Number1; Number2; ...Number30)"
-msgstr "AVEDEV(Lakkofsa1; Lakkoofsa2; ...Lakkoofsa30)"
+msgid "<item type=\"input\">10</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3157871\n"
+"04060101.xhp\n"
+"par_id3155752\n"
"31\n"
"help.text"
-msgid "<emph>Number1, Number2,...Number30</emph> are values or ranges that represent a sample. Each number can also be replaced by a reference."
-msgstr "<emph>Lakkoofsa1; Lakkoofsa2;...Lakkoofsa30</emph>n gatiiwwan ykn hangiiwwanii dha. Tokkoon tokkoon lakkoofsa wabiidhaan bakka bu'uu ni danda'a."
+msgid "<item type=\"input\">300</item>"
+msgstr "<item type=\"input\">300</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3149725\n"
+"04060101.xhp\n"
+"par_id3149052\n"
"32\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<item type=\"input\">51</item>"
+msgstr "<item type=\"input\">51</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153122\n"
+"04060101.xhp\n"
+"par_id3146097\n"
"33\n"
"help.text"
-msgid "<item type=\"input\">=AVEDEV(A1:A50)</item>"
-msgstr "<item type=\"input\">=AVEDEV(A1:A50)</item>"
+msgid "5"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3145824\n"
+"04060101.xhp\n"
+"par_id3147296\n"
+"34\n"
"help.text"
-msgid "<bookmark_value>AVERAGE function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii AVERAGE</bookmark_value>"
+msgid "<item type=\"input\">Daniel</item>"
+msgstr "<item type=\"input\">Daniel</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3145824\n"
+"04060101.xhp\n"
+"par_id3150393\n"
"35\n"
"help.text"
-msgid "AVERAGE"
-msgstr "AVERAGE"
+msgid "<item type=\"input\">5</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150482\n"
+"04060101.xhp\n"
+"par_id3145236\n"
"36\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MITTELWERT\">Returns the average of the arguments.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_MITTELWERT\">Avereejii qajeelfamootaa kenna.</ahelp>"
+msgid "<item type=\"input\">11</item>"
+msgstr "<item type=\"input\">11</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3146943\n"
+"04060101.xhp\n"
+"par_id3150534\n"
"37\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<item type=\"input\">1200</item>"
+msgstr "<item type=\"input\">1200</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3154679\n"
+"04060101.xhp\n"
+"par_id3150375\n"
"38\n"
"help.text"
-msgid "AVERAGE(Number1; Number2; ...Number30)"
-msgstr "AVERAGE(Lakkofsa1; Lakkoofsa2; ...Lakkoofsa30)"
+msgid "<item type=\"input\">48</item>"
+msgstr "<item type=\"input\">48</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150741\n"
+"04060101.xhp\n"
+"par_id3159121\n"
"39\n"
"help.text"
-msgid "<emph>Number1; Number2;...Number 0</emph> are numerical values or ranges."
-msgstr "<emph>Lakkoofsa1; Lakkoofsa2;...Lakkoofsa0</emph> gatiiwwan ykn hangiiwwan lakkoofsaati."
+msgid "6"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153039\n"
+"04060101.xhp\n"
+"par_id3150456\n"
"40\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<item type=\"input\">Eva</item>"
+msgstr "<item type=\"input\">Eva</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3151232\n"
+"04060101.xhp\n"
+"par_id3146886\n"
"41\n"
"help.text"
-msgid "<item type=\"input\">=AVERAGE(A1:A50)</item>"
-msgstr "<item type=\"input\">=AVERAGE(A1:A50)</item>"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"bm_id3148754\n"
-"help.text"
-msgid "<bookmark_value>AVERAGEA function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii AVERAGEA</bookmark_value>"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3148754\n"
-"157\n"
-"help.text"
-msgid "AVERAGEA"
-msgstr "AVERAGEA"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3145138\n"
-"158\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MITTELWERTA\">Returns the average of the arguments. The value of a text is 0.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_MITTELWERTA\">Avereejii qajeelfamootaa kenna. Gatiin barruu 0 dha.</ahelp>"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3153326\n"
-"159\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3149734\n"
-"160\n"
-"help.text"
-msgid "AVERAGEA(Value1; Value2; ... Value30)"
-msgstr "AVERAGEA(Gatii1; Gatii2; ... Gatii30)"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3155260\n"
-"161\n"
-"help.text"
-msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
-msgstr "<emph>Gatii1; Gatii2; ... Gatii30</emph>n gatiiwwan fi hangiiwwani. Barruun Gatii 0 qaba."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3149504\n"
-"162\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3150864\n"
-"163\n"
-"help.text"
-msgid "<item type=\"input\">=AVERAGEA(A1:A50)</item>"
-msgstr "<item type=\"input\">=AVERAGEA(A1:A50)</item>"
+msgid "<item type=\"input\">2</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3153933\n"
+"04060101.xhp\n"
+"par_id3149945\n"
+"42\n"
"help.text"
-msgid "<bookmark_value>MODE function</bookmark_value><bookmark_value>most common value</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii MODE</bookmark_value><bookmark_value>gatii baay'ee baratamoo</bookmark_value>"
+msgid "<item type=\"input\">8</item>"
+msgstr "<item type=\"input\">148</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153933\n"
+"04060101.xhp\n"
+"par_id3157904\n"
"43\n"
"help.text"
-msgid "MODE"
-msgstr "MODE"
+msgid "<item type=\"input\">650</item>"
+msgstr "<item type=\"input\">650</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153085\n"
+"04060101.xhp\n"
+"par_id3149352\n"
"44\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MODALWERT\">Returns the most common value in a data set.</ahelp> If there are several values with the same frequency, it returns the smallest value. An error occurs when a value doesn't appear twice."
-msgstr "<ahelp hid=\"HID_FUNC_MODALWERT\">Gatiiwwan bay'ee baratamoo tuuta deetaa keessaa kenna.</ahelp> Yoo gatiiwwan adda addaa hamamtaa walfakkaataa jiraatan, gatii xiqqaa kenna. Yoo gatiin yeroo lama hin mul'anne dogongorri ni mudata."
+msgid "<item type=\"input\">33</item>"
+msgstr "<item type=\"input\">33</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153003\n"
+"04060101.xhp\n"
+"par_id3150028\n"
"45\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "7"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3155950\n"
+"04060101.xhp\n"
+"par_id3145826\n"
"46\n"
"help.text"
-msgid "MODE(Number1; Number2; ...Number30)"
-msgstr "MODE(Lakkofsa1; Lakkoofsa2; ...Lakkoofsa30)"
+msgid "<item type=\"input\">F</item><item type=\"input\">rank</item>"
+msgstr "<item type=\"input\">F</item><item type=\"input\">sadarka</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150337\n"
+"04060101.xhp\n"
+"par_id3150743\n"
"47\n"
"help.text"
-msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
-msgstr "<emph>Lakkoofsa1; Lakkoofsa2;...Lakkoofsa0</emph> gatiiwwan ykn hangiiwwan lakkoofsaati."
+msgid "<item type=\"input\">2</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153571\n"
+"04060101.xhp\n"
+"par_id3154844\n"
"48\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<item type=\"input\">7</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153733\n"
+"04060101.xhp\n"
+"par_id3148435\n"
"49\n"
"help.text"
-msgid "<item type=\"input\">=MODE(A1:A50)</item>"
-msgstr "<item type=\"input\">=MODE(A1:A50)</item>"
+msgid "<item type=\"input\">3</item><item type=\"input\">00</item>"
+msgstr "<item type=\"input\">3</item><item type=\"input\">00</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3149879\n"
+"04060101.xhp\n"
+"par_id3148882\n"
+"50\n"
"help.text"
-msgid "<bookmark_value>NEGBINOMDIST function</bookmark_value><bookmark_value>negative binomial distribution</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii NEGBINOMDIST</bookmark_value><bookmark_value>raabsa baynomiyaalii negativii</bookmark_value>"
+msgid "<item type=\"input\">4</item><item type=\"input\">2</item>"
+msgstr "<item type=\"input\">4</item><item type=\"input\">2</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3149879\n"
+"04060101.xhp\n"
+"par_id3150140\n"
"51\n"
"help.text"
-msgid "NEGBINOMDIST"
-msgstr "NEGBINOMDIST"
+msgid "8"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3155437\n"
+"04060101.xhp\n"
+"par_id3146137\n"
"52\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Returns the negative binomial distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Raabsa baynomiyaalii negativii kenna.</ahelp>"
+msgid "<item type=\"input\">Greta</item>"
+msgstr "<item type=\"input\">Greta</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3145351\n"
+"04060101.xhp\n"
+"par_id3148739\n"
"53\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<item type=\"input\">1</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150935\n"
+"04060101.xhp\n"
+"par_id3148583\n"
"54\n"
"help.text"
-msgid "NEGBINOMDIST(X; R; SP)"
-msgstr "NEGBINOMDIST(X; R; SP)"
+msgid "<item type=\"input\">7</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153044\n"
+"04060101.xhp\n"
+"par_id3154556\n"
"55\n"
"help.text"
-msgid "<emph>X</emph> represents the value returned for unsuccessful tests."
-msgstr "<emph>X</emph>n gatii yaaliiwwan hin milkoofnee bakka bu'a."
+msgid "<item type=\"input\">200</item>"
+msgstr "<item type=\"input\">200</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3151018\n"
+"04060101.xhp\n"
+"par_id3155255\n"
"56\n"
"help.text"
-msgid "<emph>R</emph> represents the value returned for successful tests."
-msgstr "<emph>R</emph>n gatii yaaliiwwan hin milkoofnee bakka bu'a."
+msgid "<item type=\"input\">36</item>"
+msgstr "<item type=\"input\">36</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3148878\n"
+"04060101.xhp\n"
+"par_id3145141\n"
"57\n"
"help.text"
-msgid "<emph>SP</emph> is the probability of the success of an attempt."
-msgstr "<emph>SP</emph>n pirobaabilitiili milkaa'ina gochaati."
+msgid "9"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3149539\n"
+"04060101.xhp\n"
+"par_id3153078\n"
"58\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<item type=\"input\">Harry</item>"
+msgstr "<item type=\"input\">Harry</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3148770\n"
+"04060101.xhp\n"
+"par_id3149955\n"
"59\n"
"help.text"
-msgid "<item type=\"input\">=NEGBINOMDIST(1;1;0.5)</item> returns 0.25."
-msgstr "<item type=\"input\">=NEGBINOMDIST(1;1;0.5)</item> 0.25 kenna."
+msgid "<item type=\"input\">3</item>"
+msgstr "<item type=\"input\">183</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3155516\n"
+"04060101.xhp\n"
+"par_id3150005\n"
+"60\n"
"help.text"
-msgid "<bookmark_value>NORMINV function</bookmark_value><bookmark_value>normal distribution;inverse of</bookmark_value>"
-msgstr "<bookmark_value>Fankshinii NORMINV</bookmark_value><bookmark_value>raabsa baratamoo;garagaltoo</bookmark_value>"
+msgid "<item type=\"input\">9</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3155516\n"
+"04060101.xhp\n"
+"par_id3155951\n"
"61\n"
"help.text"
-msgid "NORMINV"
-msgstr "NORMINV"
+msgid "<item type=\"input\">1200</item>"
+msgstr "<item type=\"input\">1200</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3154634\n"
+"04060101.xhp\n"
+"par_id3145169\n"
"62\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_NORMINV\">Returns the inverse of the normal cumulative distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NORMINV\">garagaltoo raabsa dimshaashaa baratamoo kenna.</ahelp>"
+msgid "<item type=\"input\">44</item>"
+msgstr "<item type=\"input\">44</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153227\n"
+"04060101.xhp\n"
+"par_id3153571\n"
"63\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "10"
+msgstr "10"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3147534\n"
+"04060101.xhp\n"
+"par_id3148761\n"
"64\n"
"help.text"
-msgid "NORMINV(Number; Mean; StDev)"
-msgstr "NORMINV(Lakkofsa; Miinii; StDev)"
+msgid "<item type=\"input\">Irene</item>"
+msgstr "<item type=\"input\">Irene</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3154950\n"
+"04060101.xhp\n"
+"par_id3149877\n"
"65\n"
"help.text"
-msgid "<emph>Number</emph> represents the probability value used to determine the inverse normal distribution."
-msgstr "<emph>Lakkoofsi</emph> gatii pirobaabilitii kan garagaltoo raabsa baratamoo murteessuf fayyadu kenna."
+msgid "<item type=\"input\">2</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150690\n"
+"04060101.xhp\n"
+"par_id3154327\n"
"66\n"
"help.text"
-msgid "<emph>Mean</emph> represents the mean value in the normal distribution."
-msgstr "<emph>Miinii</emph>n gatii miinii kan raabsa baratamoo keessaa bakka bu'a."
+msgid "<item type=\"input\">8</item>"
+msgstr "<item type=\"input\">148</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3148594\n"
+"04060101.xhp\n"
+"par_id3155435\n"
"67\n"
"help.text"
-msgid "<emph>StDev</emph> represents the standard deviation of the normal distribution."
-msgstr "<emph>StDev</emph> diviyeeshinii waltawaa kan raabsa baratamoo kenna."
+msgid "<item type=\"input\">1000</item>"
+msgstr "<item type=\"input\">1000</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3155822\n"
+"04060101.xhp\n"
+"par_id3145353\n"
"68\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<item type=\"input\">42</item>"
+msgstr "<item type=\"input\">42</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153921\n"
+"04060101.xhp\n"
+"par_id3150662\n"
"69\n"
"help.text"
-msgid "<item type=\"input\">=NORMINV(0.9;63;5)</item> returns 69.41. If the average egg weighs 63 grams with a standard deviation of 5, then there will be 90% probability that the egg will not be heavier than 69.41g grams."
-msgstr "<item type=\"input\">=NORMINV(0.9;63;5)</item> 69.41 kenna. Yoo hanqaaquun giddugaleessaa diviyeeshinii waltawaa 5 qabu giramii 63 ulfaate, pirobaabilitiin hanqaaqun giraamii 69.41 caala hin ulfaannee 90% ta'uu danda'a."
+msgid "11"
+msgstr "11"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3153722\n"
+"04060101.xhp\n"
+"par_id3150568\n"
+"70\n"
"help.text"
-msgid "<bookmark_value>NORMDIST function</bookmark_value><bookmark_value>density function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii NORMDIST</bookmark_value><bookmark_value>fankishinii rukkinaa</bookmark_value>"
+msgid "12"
+msgstr "12"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153722\n"
+"04060101.xhp\n"
+"par_id3149393\n"
"71\n"
"help.text"
-msgid "NORMDIST"
-msgstr "NORMDIST"
+msgid "13"
+msgstr "13"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150386\n"
+"04060101.xhp\n"
+"par_id3153544\n"
"72\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_NORMVERT\">Returns the density function or the normal cumulative distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NORMVERT\">fankishinii rukkinaa ykn raabsa dimshaashaa baratamoo kenna.</ahelp>"
+msgid "<item type=\"input\">Name</item>"
+msgstr "<item type=\"input\">Maqaa</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3083282\n"
+"04060101.xhp\n"
+"par_id3158414\n"
"73\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<item type=\"input\">Grade</item>"
+msgstr "<item type=\"input\">Kutaa</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150613\n"
+"04060101.xhp\n"
+"par_id3152820\n"
"74\n"
"help.text"
-msgid "NORMDIST(Number; Mean; StDev; C)"
-msgstr "NORMDIST(Lakkofsa; Miinii; StDev; C)"
+msgid "<item type=\"input\">Age</item>"
+msgstr "<item type=\"input\">Umurii</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3149820\n"
+"04060101.xhp\n"
+"par_id3154866\n"
"75\n"
"help.text"
-msgid "<emph>Number</emph> is the value of the distribution based on which the normal distribution is to be calculated."
-msgstr "<emph>Lakkoofsi</emph> gatii raabsaa kan raabsi baratamoon irratti hundaa'udhan shallagamuu dha."
+msgid "<item type=\"input\">Distance to School</item>"
+msgstr "<item type=\"input\">Fageenya Mana barumsaattii</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3146063\n"
+"04060101.xhp\n"
+"par_id3150471\n"
"76\n"
"help.text"
-msgid "<emph>Mean</emph> is the mean value of the distribution."
-msgstr "<emph>Miinii</emph>n gatii miinii kan raabsati."
+msgid "<item type=\"input\">Weight</item>"
+msgstr "<item type=\"input\">Ulfaatina</item>"
-#: 04060184.xhp
-#, fuzzy
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3156295\n"
+"04060101.xhp\n"
+"par_id3153920\n"
"77\n"
"help.text"
-msgid "<emph>StDev</emph> is the standard deviation of the distribution."
-msgstr "<emph>StDev</emph> istandaard diviyeeshinii raabsati."
+msgid "14"
+msgstr "14"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3145080\n"
+"04060101.xhp\n"
+"par_id3148429\n"
"78\n"
"help.text"
-msgid "<emph>C</emph> is optional. <emph>C</emph> = 0 calculates the density function, <emph>C</emph> = 1 calculates the distribution."
-msgstr "<emph>C</emph>n dirqalee dha. <emph>C</emph> = 0 fankishinii rukkinaa shallaga, <emph>C</emph> = 1 raabsa shallaga."
+msgid "<item type=\"input\">>600</item>"
+msgstr "<item type=\"input\">>600</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3152972\n"
+"04060101.xhp\n"
+"par_id3152588\n"
"79\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "15"
+msgstr "15"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3149283\n"
+"04060101.xhp\n"
+"par_id3083286\n"
"80\n"
"help.text"
-msgid "<item type=\"input\">=NORMDIST(70;63;5;0)</item> returns 0.03."
-msgstr "<item type=\"input\">=NORMDIST(70;63;5;0)</item> 0.03 kenna."
+msgid "16"
+msgstr "16"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3149448\n"
+"04060101.xhp\n"
+"par_id3163823\n"
"81\n"
"help.text"
-msgid "<item type=\"input\">=NORMDIST(70;63;5;1)</item> returns 0.92."
-msgstr "<item type=\"input\">=NORMDIST(70;63;5;1)</item> 0.92 kenna."
+msgid "<item type=\"input\">DCOUNT</item>"
+msgstr "<item type=\"input\">DCOUNT</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3152934\n"
+"04060101.xhp\n"
+"par_id3145083\n"
+"82\n"
"help.text"
-msgid "<bookmark_value>PEARSON function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii PEARSON</bookmark_value>"
+msgid "<item type=\"input\">5</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3152934\n"
+"04060101.xhp\n"
+"par_id3149282\n"
"83\n"
"help.text"
-msgid "PEARSON"
-msgstr "PEARSON"
+msgid "The formula in cell B16 is =DCOUNT(A1:E10;0;A13:E14)"
+msgstr "Foormulaan mandhee B16 keessaa =DCOUNT(A1:E10;0;A13:E14)"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153216\n"
+"04060101.xhp\n"
+"hd_id3150962\n"
+"192\n"
+"help.text"
+msgid "Database Function Parameters:"
+msgstr "Ulaagaalee Kuusdeetaa Faankishinii"
+
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3155837\n"
"84\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_PEARSON\">Returns the Pearson product moment correlation coefficient r.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_PEARSON\">kofishantii korrileeshinii momantii bay'ataa piirsanii kenna.</ahelp>"
+msgid "The following items are the parameter definitions for all database functions:"
+msgstr "Wantootni armaan gadii faankishinoota kuusdeetaa hundaaf hiikota ulaagaati."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3147081\n"
+"04060101.xhp\n"
+"par_id3149453\n"
"85\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<emph>Database</emph> is the cell range defining the database."
+msgstr "<emph>Kuusdeetaan</emph> hammanga ma'ee kuusaa deetaa ibsa."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3156133\n"
+"04060101.xhp\n"
+"par_id3151272\n"
"86\n"
"help.text"
-msgid "PEARSON(Data1; Data2)"
-msgstr "PEARSON(Deetaa1; Deetaa2)"
+msgid "<emph>DatabaseField</emph> specifies the column where the function operates on after the search criteria of the first parameter is applied and the data rows are selected. It is not related to the search criteria itself. Use the number 0 to specify the whole data range. <variable id=\"quotes\">To reference a column by means of the column header name, place quotation marks around the header name. </variable>"
+msgstr "<emph>Dirreen kuusdeetaa</emph> tarjaa iddoo funkishiniin eda ulaagaan bani jedhu hojiira oole fi deetaa tarree filatame adda baasa.ulaagaa bani jedhu wajjin hidhata hin qabu.Deetaa hammangaa hundaa adda baasuu lakkooofsaa 0 fayyadamaa. <variable id=\"quotes\">Tarjaa mala matduree tarjaatiin wabii gochuuf,mallattoo waraabbii matduree irratti olkaa'i.</variable>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3151272\n"
+"04060101.xhp\n"
+"par_id3147083\n"
"87\n"
"help.text"
-msgid "<emph>Data1</emph> represents the array of the first data set."
-msgstr "<emph>Deetaa1</emph> waraantoo tuuta deetaa jalqabaa bakka bu'a."
+msgid "<emph>SearchCriteria</emph> is the cell range containing search criteria. If you write several criteria in one row they are connected by AND. If you write the criteria in different rows they are connected by OR. Empty cells in the search criteria range will be ignored."
+msgstr "<emph>Ulaagaa barbaadi</emph>jedhu hammanga man'ee ulaagaa barbaadi jedhu of keessaa qaba.Yoo ulaagaa baay'ee tarree tokko keessatti barreessitan AND walqabatu.Yoo ulaagaa tarree adda addaa keessatti barreessitan OR dhaan walqabata.Man'ee duuwwan ulaagaa barbaadi jedhu keessaa hin fayyadamnu."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153279\n"
+"04060101.xhp\n"
+"par_id3151188\n"
+"188\n"
+"help.text"
+msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\">%PRODUCTNAME Calc - Calculate</link> to define how $[officename] Calc acts when searching for identical entries."
+msgstr ""
+
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"par_id3882869\n"
+"help.text"
+msgid "See also the Wiki page about <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Conditional_Counting_and_Summation\">Conditional Counting and Summation</link>."
+msgstr ""
+
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"bm_id3150882\n"
+"help.text"
+msgid "<bookmark_value>DCOUNT function</bookmark_value> <bookmark_value>counting rows;with numeric values</bookmark_value>"
+msgstr "<bookmark_value>Funkishiniin DCOUNT</bookmark_value> <bookmark_value>tarreewwan lakkaa'uu;gatii lakkoofsaa wajjin</bookmark_value>"
+
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id3150882\n"
"88\n"
"help.text"
-msgid "<emph>Data2</emph> represents the array of the second data set."
-msgstr "<emph>Deetaa2</emph> waraantoo tuuta deetaa lammaffaa bakka bu'a."
+msgid "DCOUNT"
+msgstr "DCOUNT"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3147567\n"
+"04060101.xhp\n"
+"par_id3156133\n"
"89\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<ahelp hid=\"HID_FUNC_DBANZAHL\">DCOUNT counts the number of rows (records) in a database that match the specified search criteria and contain numerical values.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DBANZAHL\">DCOUNT tiin baay'ina tarreewwanii kan kuusdeetaa keessa jiru,kan ulaagaa barbaadi fi gatii lakkoofsaa of keessaa qabu lakkaa'a..</ahelp>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3151187\n"
+"04060101.xhp\n"
+"hd_id3156099\n"
"90\n"
"help.text"
-msgid "<item type=\"input\">=PEARSON(A1:A30;B1:B30)</item> returns the Pearson correlation coefficient of both data sets."
-msgstr "<item type=\"input\">=PEARSON(A1:A30;B1:B30)</item> kofishantii korrileshinii piirsanii kan tuutota deetaa lamaanuu kenna."
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3152806\n"
+"04060101.xhp\n"
+"par_id3153218\n"
+"91\n"
"help.text"
-msgid "<bookmark_value>PHI function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii PHI</bookmark_value>"
+msgid "DCOUNT(Database; DatabaseField; SearchCriteria)"
+msgstr "DCOUNT(Kuusdeetaa;Dirree kuusdeetaa;Ulaagaa sakata'aa)"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3152806\n"
+"04060101.xhp\n"
+"par_id3153273\n"
+"187\n"
+"help.text"
+msgid "For the DatabaseField parameter you can enter a cell to specify the column, or enter the number 0 for the entire database. The parameter cannot be empty. <embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
+msgstr "Ulaagaa dirree kuusdeetaatiif man'ee tarjaa ibsametti galchuuf ni dandeessu.Ykn kuusdeetaa hundaaf lakkoofsa 0 galchi.Jijjiiramaan duwwaa ta'uu hin danda'u.<embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
+
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id3154743\n"
"92\n"
"help.text"
-msgid "PHI"
-msgstr "PHI"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150254\n"
+"04060101.xhp\n"
+"par_id3153623\n"
"93\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_PHI\">Returns the values of the distribution function for a standard normal distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_PHI\">gatiiwwan fankishinii raabsa kan raabsa baratamoo waltawaa kenna.</ahelp>"
+msgid "In the example above (scroll up, please), we want to know how many children have to travel more than 600 meters to school. The result is to be stored in cell B16. Set the cursor in cell B16. Enter the formula <item type=\"input\">=DCOUNT(A1:E10;0;A13:E14)</item> in B16. The <emph>Function Wizard</emph> helps you to input ranges."
+msgstr "Fakkeenya armaan olii keessatti (olmari,maaloo),wanti beekuu barbaannu daa'imti tokko meetira 600 mana baruumsaa hammam deemu danda'a.Firiin argame man'ee B16 keessatti kuufama.Qaree man'ee B16 keessatti qindeessi.Foormullaa<item type=\"input\">=DCOUNT(A1:E10;0;A13:E14)</item> B16 keessatti galchi.Funkishiniin wizardii<emph>hammanga naquuf</emph>isin fayyada."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3154748\n"
+"04060101.xhp\n"
+"par_id3149142\n"
"94\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<emph>Database</emph> is the range of data to be evaluated, including its headers: in this case A1:E10. <emph>DatabaseField</emph> specifies the column for the search criteria: in this case, the whole database. <emph>SearchCriteria</emph> is the range where you can enter the search parameters: in this case, A13:E14."
+msgstr "<emph>Kuusdeetaan</emph> hammanga deetaa,matduree dabalatee as keessatti A1:E10 isa madaalamuudha. <emph>Dirreen kuusdeetaa</emph>tarjaa ulaagaa sakata'uu adda baasa.As keessatti,kuusdaata hunda.<emph>ulaagaan barbaachaa</emph> hammanga iddoo jijjiiramaa barbaadnu itti galchinuudha.As keessatti, A13:E14 dha."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3149976\n"
+"04060101.xhp\n"
+"par_id3145652\n"
"95\n"
"help.text"
-msgid "PHI(Number)"
-msgstr "PHI(lakkoofsa)"
+msgid "To learn how many children in second grade are over 7 years of age, delete the entry >600 in cell D14 and enter <item type=\"input\">2</item> in cell B14 under Grade, and enter <item type=\"input\">>7</item> in cell C14 to the right. The result is 2. Two children are in second grade and over 7 years of age. As both criteria are in the same row, they are connected by AND."
+msgstr "Daa'imman waggaa 7 olii meeqa akka ta'an baruuf man'ee D14 keessaa galfata >600 haquu fi man'ee <item type=\"input\"> B14</item> keessatti 2 galchuu fi man'ee <item type=\"input\">>gara</item> mirgaatti 7 galchuudha.Firiin 2 ta'a.Daa'imman waggaa 7 olii lama kutaa lammaffaadha.Ulaagaan lammeenuu waan tarree tokko keessa ta'aniif AND dhaan walqabatu."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3156108\n"
-"96\n"
+"04060101.xhp\n"
+"bm_id3156123\n"
"help.text"
-msgid "<emph>Number</emph> represents the value based on which the standard normal distribution is calculated."
-msgstr "<emph>Lakkoofsi</emph> gatii kan raabsi baratamoo waltawaa irratti hundaa'uudha shallagamu bakka bu'a."
+msgid "<bookmark_value>DCOUNTA function</bookmark_value> <bookmark_value>records;counting in Calc databases</bookmark_value> <bookmark_value>counting rows;with numeric or alphanumeric values</bookmark_value>"
+msgstr "<bookmark_value>Faankishiniin DCOUNTA </bookmark_value> <bookmark_value>galmeessuu;kuusdeetaa calc lakkaa'uu</bookmark_value> <bookmark_value>tarreewwan lakkaa'uu;gatii lakkoofsaa ykn qub-lakkoofsaa wajjin</bookmark_value>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153621\n"
+"04060101.xhp\n"
+"hd_id3156123\n"
"97\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "DCOUNTA"
+msgstr "DCOUNTA"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3155849\n"
+"04060101.xhp\n"
+"par_id3156110\n"
"98\n"
"help.text"
-msgid "<item type=\"input\">=PHI(2.25) </item>= 0.03"
-msgstr "<item type=\"input\">=PHI(2.25) </item>= 0.03"
+msgid "<ahelp hid=\"HID_FUNC_DBANZAHL2\">DCOUNTA counts the number of rows (records) in a database that match the specified search conditions, and contain numeric or alphanumeric values.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DBANZAHL2\">DCOUNTA tarreewwan (kuusaawwan)kuusdeetaa ulaagaalee barbaadi jedhu wajjin walgitu fi gatii lakkoofsa ykn kottoonfachiisa of keessaa qabu lakkaa'a.</ahelp>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3143236\n"
+"04060101.xhp\n"
+"hd_id3143228\n"
"99\n"
"help.text"
-msgid "<item type=\"input\">=PHI(-2.25)</item> = 0.03"
-msgstr "<item type=\"input\">=PHI(-2.25)</item> = 0.03"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3149286\n"
+"04060101.xhp\n"
+"par_id3146893\n"
"100\n"
"help.text"
-msgid "<item type=\"input\">=PHI(0)</item> = 0.4"
-msgstr "<item type=\"input\">=PHI(0)</item> = 0.4"
+msgid "DCOUNTA(Database; DatabaseField; SearchCriteria)"
+msgstr "DCOUNT(Kuusdeetaa;Dirree kuusdeetaa;Ulaagaa sakata'aa)"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3153985\n"
+"04060101.xhp\n"
+"hd_id3149751\n"
+"101\n"
"help.text"
-msgid "<bookmark_value>POISSON function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii POISSON</bookmark_value>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153985\n"
+"04060101.xhp\n"
+"par_id3153982\n"
"102\n"
"help.text"
-msgid "POISSON"
-msgstr "POISSON"
+msgid "In the example above (scroll up, please), you can search for the number of children whose name starts with an E or a subsequent letter. Edit the formula in B16 to read <item type=\"input\">=DCOUNTA(A1:E10;\"Name\";A13:E14)</item>. Delete the old search criteria and enter <item type=\"input\">>=E</item> under Name in field A14. The result is 5. If you now delete all number values for Greta in row 8, the result changes to 4. Row 8 is no longer included in the count because it does not contain any values. The name Greta is text, not a value. Note that the DatabaseField parameter must point to a column that can contain values."
+msgstr "Fakkeenya armaan olii keessatti (olmari,maaloo),ijjoollee maqaan isaanii E ykn qubee itti aanuun jalqabu baay'ina isaanii beekuu dandeenya.<item type=\"input\">=DCOUNTA(A1:E10;\"Age\";A13:E14)</item>dubbisuudhaaf foormullaa B16 keessa jiru gulaalaa. Ulaagaa barbaachaa duraa fi <item type=\"input\">>=E</item> maqaa dirree A14 jala jiru haqa.Firiin 5 ta'a. Yoo amma gatii lakkoofsa hundaa Greta tarree 8 keessa jiruuf, firiin isaa gara 4 tti jijjiirama. Tarreen 8 asitti hin dabalamu sababni isaas gatii hin qabu. Maqaan Greta jedhu barruudha,gatii miti. Hub dirreen kuusdeetaa tarjaa gatii qabu agarsiisuu qaba."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3154298\n"
-"103\n"
+"04060101.xhp\n"
+"bm_id3147256\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_POISSON\">Returns the Poisson distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_POISSON\">Raabsa poyzanii kenna.</ahelp>"
+msgid "<bookmark_value>DGET function</bookmark_value> <bookmark_value>cell contents;searching in Calc databases</bookmark_value> <bookmark_value>searching;cell contents in Calc databases</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii DGET </bookmark_value> <bookmark_value>qabeentota man'ee;kuusdeetaa calc keessa sakata'uu</bookmark_value> <bookmark_value>sakata'uu;qabeentota man'ee kuusdeetaa calc keessa</bookmark_value>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3159183\n"
+"04060101.xhp\n"
+"hd_id3147256\n"
"104\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "DGET"
+msgstr "DGET"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3146093\n"
+"04060101.xhp\n"
+"par_id3152801\n"
"105\n"
"help.text"
-msgid "POISSON(Number; Mean; C)"
-msgstr "POISSON(Lakkoofsa; Miinii; C)"
+msgid "<ahelp hid=\"HID_FUNC_DBAUSZUG\">DGET returns the contents of the referenced cell in a database which matches the specified search criteria.</ahelp> In case of an error, the function returns either #VALUE! for no row found, or Err502 for more than one cell found."
+msgstr "<ahelp hid=\"HID_FUNC_DBAUSZUG\">DGET man'ee qabeentootaa wabii ta'ee kuusdeeta keessa kan ulaagaa sakata'aa ibsaa.</ahelp> Yeroo dogoogoraa ,faankishiniin #VALUE!kan tarree hin qabneef ykn Err502 man'ee tokkoo oliif deebisa."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3147253\n"
+"04060101.xhp\n"
+"hd_id3159344\n"
"106\n"
"help.text"
-msgid "<emph>Number</emph> represents the value based on which the Poisson distribution is calculated."
-msgstr "<emph>Lakkoofsi</emph> gatii kan raabsi poyzanii urratti hundaa'uudhan shallagamu bakka bu'a."
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3151177\n"
+"04060101.xhp\n"
+"par_id3154696\n"
"107\n"
"help.text"
-msgid "<emph>Mean</emph> represents the middle value of the Poisson distribution."
-msgstr "<emph>Miinii</emph>n gatii walakkaa raabsa poyzanii bakka bu'a."
+msgid "DGET(Database; DatabaseField; SearchCriteria)"
+msgstr "DGET(Kuusdeetaa;Dirree kuusdeetaa;Ulaagaa sakata'aa)"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3149200\n"
+"04060101.xhp\n"
+"hd_id3153909\n"
"108\n"
"help.text"
-msgid "<emph>C</emph> (optional) = 0 or False calculates the density function; <emph>C</emph> = 1 or True calculates the distribution. When omitted, the default value True is inserted when you save the document, for best compatibility with other programs and older versions of %PRODUCTNAME."
-msgstr "<emph>C</emph> (dirqalee) = 0 ykn Sobni faankishinii rukkinaa shallaga; <emph>C</emph> = 1 ykn Dhugaan raabsa shallaga. Yeroo dhifamu, gatiin durtii Dhugaa yeroo galmee olkeessu ni saagama, walitti ta'eenya gaarii sagantaa biroo fi fooyya'ina durii %PRODUCTNAME tiif."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3159347\n"
+"04060101.xhp\n"
+"par_id3155388\n"
"109\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "In the above example (scroll up, please), we want to determine what grade a child is in, whose name was entered in cell A14. The formula is entered in cell B16 and differs slightly from the earlier examples because only one column (one database field) can be entered for <emph>DatabaseField</emph>. Enter the following formula:"
+msgstr "Fakkeenya armaa olii keessatti (olmari,maaloo)warreen maqaan isaanii man'ee A14 keessa galan kutaa isaanii murteessuu barbaanne.Foormullaan man'ee B16 keessa gala.Fakkeenya darberraa xiqqoo adda kunis sababa dirreen kuusdeetaatiif tarjaan tokko qofa galuufi.<emph>DatabaseField</emph>Foormullaa armaan gadii galchi:"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150113\n"
+"04060101.xhp\n"
+"par_id3153096\n"
"110\n"
"help.text"
-msgid "<item type=\"input\">=POISSON(60;50;1)</item> returns 0.93."
-msgstr "<item type=\"input\">=POISSON(60;50;1)</item> 0.93 kenna."
+msgid "<item type=\"input\">=DGET(A1:E10;\"Grade\";A13:E14)</item>"
+msgstr "<item type=\"input\">=DGET(A1:E10;\"Grade\";A13:E14)</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3153100\n"
+"04060101.xhp\n"
+"par_id3150524\n"
+"111\n"
"help.text"
-msgid "<bookmark_value>PERCENTILE function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii PERCENTILE</bookmark_value>"
+msgid "Enter the name <item type=\"input\">Frank</item> in A14, and you see the result 2. Frank is in second grade. Enter <item type=\"input\">\"Age\"</item> instead of \"Grade\" and you will get Frank's age."
+msgstr "Maqaa <item type=\"input\">Frank</item>A14 galchi,kanaafis firii 2 argata.Frank kutaa lammaffaadha.Iddoo <item type=\"input\">\"Kutaa\"</item> \"umurii\" yoo buufte umurii Frank argatta."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153100\n"
+"04060101.xhp\n"
+"par_id3148833\n"
"112\n"
"help.text"
-msgid "PERCENTILE"
-msgstr "PERCENTILE"
+msgid "Or enter the value <item type=\"input\">11</item> in cell C14 only, and delete the other entries in this row. Edit the formula in B16 as follows:"
+msgstr "Ykn gatii<item type=\"input\">11</item> man'ee C14 keessa qofa galchi.Achumaanis galfata tarree keessaa hunda haqi.Foormulaa B11 keessaa akka armaan gadiitti gulaalaa:"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3154940\n"
+"04060101.xhp\n"
+"par_id3149912\n"
"113\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_QUANTIL\">Returns the alpha-percentile of data values in an array.</ahelp> A percentile returns the scale value for a data series which goes from the smallest (Alpha=0) to the largest value (alpha=1) of a data series. For <item type=\"literal\">Alpha</item> = 25%, the percentile means the first quartile; <item type=\"literal\">Alpha</item> = 50% is the MEDIAN."
-msgstr "<ahelp hid=\"HID_FUNC_QUANTIL\">parsantayilii-alfaa gatiiwwwan deetaa warantoo keessaa kenna.</ahelp> Parsatayiliin gatii safaraa kan tarreewwan deetaa gatii xiqqaa (Alfaa=0) irraa gara gatii guddaa (alfaa=1)tti deemuu tarreewwandeetaa keessa kenna.<item type=\"literal\">Alpha</item> = 25% dhaf, parsantayilii jechuuun kuwartayilii jalqabaati; <item type=\"literal\">Alpha</item> = 50% midiyaanii dha."
+msgid "<item type=\"input\">=DGET(A1:E10;\"Name\";A13:E14)</item>"
+msgstr "<item type=\"input\">=DGET(A1:E10;\"Maqaa\";A13:E14)</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3150531\n"
+"04060101.xhp\n"
+"par_id3148813\n"
"114\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Instead of the grade, the name is queried. The answer appears at once: Daniel is the only child aged 11."
+msgstr "Iddoo kutaa ,maqaatu gaafatama.Deebiin altakka mul'ata:Daniel qofatu daa'ima umurii 11 ti."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3148813\n"
+"04060101.xhp\n"
+"bm_id3149766\n"
+"help.text"
+msgid "<bookmark_value>DMAX function</bookmark_value> <bookmark_value>maximum values in Calc databases</bookmark_value> <bookmark_value>searching;maximum values in columns</bookmark_value>"
+msgstr "<bookmark_value>Faankishiniin DMAX </bookmark_value> <bookmark_value>gatii guddaa kuusdeetaa calc keessaa</bookmark_value> <bookmark_value>sakata'uu;gatii guddaa tarjaawwan keessaa</bookmark_value>"
+
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id3149766\n"
"115\n"
"help.text"
-msgid "PERCENTILE(Data; Alpha)"
-msgstr "PERCENTILE(Deetaa; Alfaa)"
+msgid "DMAX"
+msgstr "DMAX"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153054\n"
+"04060101.xhp\n"
+"par_id3154903\n"
"116\n"
"help.text"
-msgid "<emph>Data</emph> represents the array of data."
-msgstr "<emph>Deetaa</emph> waraantoo deetaa bakka bu'a."
+msgid "<ahelp hid=\"HID_FUNC_DBMAX\">DMAX returns the maximum content of a cell (field) in a database (all records) that matches the specified search conditions.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DBMAX\">DMAX qabeentaa guddaa man'ee kuusdeetaa keessa jiru kan haala barbaachaa deebisa.</ahelp>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3154212\n"
+"04060101.xhp\n"
+"hd_id3150771\n"
"117\n"
"help.text"
-msgid "<emph>Alpha</emph> represents the percentage of the scale between 0 and 1."
-msgstr "<emph>Alfaa</emph>n dhibbeentaa safara gidduu 0 fi 1 jiru bakka bu'a."
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3154290\n"
+"04060101.xhp\n"
+"par_id3159157\n"
"118\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "DMAX(Database; DatabaseField; SearchCriteria)"
+msgstr "DMAX(Kuusdeetaa;Dirree kuusdeetaa;Ulaagaa sakata'aa)"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3159147\n"
+"04060101.xhp\n"
+"hd_id3145420\n"
"119\n"
"help.text"
-msgid "<item type=\"input\">=PERCENTILE(A1:A50;0.1)</item> represents the value in the data set, which equals 10% of the total data scale in A1:A50."
-msgstr "<item type=\"input\">=PERCENTILE(A1:A50;0.1)</item> gatii tuuta deetaa, kan walqixa 10% safara deetaa dimshaashaa A1:A50 keessaa bakka bu'a."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3148807\n"
+"04060101.xhp\n"
+"par_id3148442\n"
+"120\n"
"help.text"
-msgid "<bookmark_value>PERCENTRANK function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii PERCENTRANK</bookmark_value>"
+msgid "To find out how much the heaviest child in each grade weighed in the above example (scroll up, please), enter the following formula in B16:"
+msgstr "Fakkeenya armaa olii keessaa(maaloo,olmari) tokko tokkoo kutaa irraa ulfaatina daa'ima baay'ee ulfaatuu barbaaduuf,foormulaa armaan gadii B16 keessa galchaa."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3148807\n"
+"04060101.xhp\n"
+"par_id3148804\n"
"121\n"
"help.text"
-msgid "PERCENTRANK"
-msgstr "PERCENTRANK"
+msgid "<item type=\"input\">=DMAX(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr "<item type=\"input\">=DMAX(A1:E10;\"Ulfaatina\";A13:E14)</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153573\n"
+"04060101.xhp\n"
+"par_id3150510\n"
"122\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_QUANTILSRANG\">Returns the percentage rank of a value in a sample.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_QUANTILSRANG\">Sadrkaa dhibbeentaa kan gatii eddattoo keessaa kenna.</ahelp>"
+msgid "Under Grade, enter <item type=\"input\">1, 2, 3,</item> and so on, one after the other. After entering a grade number, the weight of the heaviest child in that grade appears."
+msgstr "Kutaa jallati, enter <item type=\"input\">1, 2, 3,</item> fi kkf,duraa dubaan galchi.Edda lakkoofsa kutaa galchitee booda, ulfaatina daa'ima kutaa sana keessatti hundarra ulfaatu argatta."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3147512\n"
+"04060101.xhp\n"
+"bm_id3159141\n"
+"help.text"
+msgid "<bookmark_value>DMIN function</bookmark_value> <bookmark_value>minimum values in Calc databases</bookmark_value> <bookmark_value>searching;minimum values in columns</bookmark_value>"
+msgstr "<bookmark_value>Faankishiniin DMAX </bookmark_value> <bookmark_value>gatii xiqqaa kuusdeetaa calc keessaa</bookmark_value> <bookmark_value>sakata'uu;gatii guddaa tarjaawwan keessaa</bookmark_value>"
+
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id3159141\n"
"123\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "DMIN"
+msgstr "DMIN"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3147238\n"
+"04060101.xhp\n"
+"par_id3154261\n"
"124\n"
"help.text"
-msgid "PERCENTRANK(Data; Value)"
-msgstr "PERCENTRANK(Deetaa; Gatii)"
+msgid "<ahelp hid=\"HID_FUNC_DBMIN\">DMIN returns the minimum content of a cell (field) in a database that matches the specified search criteria.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DBMIN\">DMAX qabeentaa xiqqaa man'ee(dirree) kuusdeetaa keessa jiru kan ulaagaa barbaachaan walgitu deebisa.</ahelp>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3154266\n"
+"04060101.xhp\n"
+"hd_id3147238\n"
"125\n"
"help.text"
-msgid "<emph>Data</emph> represents the array of data in the sample."
-msgstr "<emph>Deetaa</emph>n waraantoo deetaa eddattoo keessaa bakka bu'a."
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3148475\n"
+"04060101.xhp\n"
+"par_id3148479\n"
"126\n"
"help.text"
-msgid "<emph>Value</emph> represents the value whose percentile rank must be determined."
-msgstr "<emph>Gatii</emph>n gatii kan sadarkaan dhibbeentaa murteeffamuufi qabu bakka bu'a."
+msgid "DMIN(Database; DatabaseField; SearchCriteria)"
+msgstr "DMIN(Kuusdeetaa;Dirree kuusdeetaa;Ulaagaa sakata'aa)"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3155364\n"
+"04060101.xhp\n"
+"hd_id3151050\n"
"127\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3149163\n"
+"04060101.xhp\n"
+"par_id3148925\n"
"128\n"
"help.text"
-msgid "<item type=\"input\">=PERCENTRANK(A1:A50;50)</item> returns the percentage rank of the value 50 from the total range of all values found in A1:A50. If 50 falls outside the total range, an error message will appear."
-msgstr "<item type=\"input\">=PERCENTRANK(A1:A50;50)</item> gatiiwwan hunda kan ida'ama hangii A1:A50 keessaa jiran irraa sadarkaa dhibbeentaa gatii 50 kenna."
+msgid "To find the shortest distance to school for the children in each grade in the above example (scroll up, please), enter the following formula in B16:"
+msgstr "Fakkeenya armaan olii keessaa(maaloo,olmari) tokko tokkoon kutaa irraa daa'imman mana baruumsaatti baay'ee dhiyaatan barbaaduuf,foormulaa armaan gadii B16 keessa galchaa:"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3166442\n"
+"04060101.xhp\n"
+"par_id3149161\n"
+"129\n"
"help.text"
-msgid "<bookmark_value>QUARTILE function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii QUARTILE</bookmark_value>"
+msgid "<item type=\"input\">=DMIN(A1:E10;\"Distance to School\";A13:E14)</item>"
+msgstr "<item type=\"input\">=DMIN(A1:E10;\"Fageenya gara mana baruumsaa\";A13:E14)</item>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3166442\n"
+"04060101.xhp\n"
+"par_id3148917\n"
"130\n"
"help.text"
-msgid "QUARTILE"
-msgstr "QUARTILE"
+msgid "In row 14, under Grade, enter <item type=\"input\">1, 2, 3,</item> and so on, one after the other. The shortest distance to school for each grade appears."
+msgstr "Tarree 14, kutaa jalatti,<item type=\"input\">1, 2, 3,</item> fi kkf,walduraa duubaan galcha.Kutaa hundaa fageenyi baay'ee gabaabaa ta'e ni argama."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3146958\n"
+"04060101.xhp\n"
+"bm_id3154274\n"
+"help.text"
+msgid "<bookmark_value>DAVERAGE function</bookmark_value> <bookmark_value>averages; in Calc databases</bookmark_value> <bookmark_value>calculating;averages in Calc databases</bookmark_value>"
+msgstr "<bookmark_value>Faankishiniin DAVERAGE </bookmark_value> <bookmark_value>giddugala; kuusdeeta calc keessaa</bookmark_value> <bookmark_value>shallaguu;giddugala kuusdeetaa calc keessaa</bookmark_value>"
+
+#: 04060101.xhp
+msgctxt ""
+"04060101.xhp\n"
+"hd_id3154274\n"
"131\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_QUARTILE\">Returns the quartile of a data set.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_QUARTILE\">kuwaartayilii tuuta deetaa kenna.</ahelp>"
+msgid "DAVERAGE"
+msgstr "DAVERAGE"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3152942\n"
+"04060101.xhp\n"
+"par_id3166453\n"
"132\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\"HID_FUNC_DBMITTELWERT\">DAVERAGE returns the average of the values of all cells (fields) in all rows (database records) that match the specified search criteria.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DBMITTELWERT\">DAVERAGE giddugala gatii man'eewwan hundaa tarreewwan hundaa(galmee kuusdeetaa)kan ulaagaa barbaachaa murtaa'e waliin walgitan deebisa.</ahelp>"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153684\n"
+"04060101.xhp\n"
+"hd_id3146955\n"
"133\n"
"help.text"
-msgid "QUARTILE(Data; Type)"
-msgstr "QUARTILE(Deetaa; Akaakuu)"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153387\n"
+"04060101.xhp\n"
+"par_id3150710\n"
"134\n"
"help.text"
-msgid "<emph>Data</emph> represents the array of data in the sample."
-msgstr "<emph>Deetaa</emph>n waraantoo deetaa kan eddattoo keessaa bakka bu'a."
+msgid "DAVERAGE(Database; DatabaseField; SearchCriteria)"
+msgstr "DAVERAGE(Kuusdeetaa;Dirree kuusdeetaa;Ulaagaa sakata'aa)"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3155589\n"
+"04060101.xhp\n"
+"hd_id3152943\n"
"135\n"
"help.text"
-msgid "<emph>Type</emph> represents the type of quartile. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% and 4 = MAX.)"
-msgstr "<emph>Akaakuu</emph>n akaakuu kuwartaayilii bakka bu'a. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% and 4 = MAX.)"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3149103\n"
-"136\n"
-"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3159276\n"
-"137\n"
-"help.text"
-msgid "<item type=\"input\">=QUARTILE(A1:A50;2)</item> returns the value of which 50% of the scale corresponds to the lowest to highest values in the range A1:A50."
-msgstr "<item type=\"input\">=QUARTILE(A1:A50;2)</item> gatii kan 50% safaraa gatiiwwan xiqqaa gara guddaa hangii A1:A50 keessaa jiraniitti firoomuf kenna."
-
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"tit\n"
+"04060101.xhp\n"
+"par_id3149104\n"
+"136\n"
"help.text"
-msgid "Operators in $[officename] Calc"
-msgstr "Ogeejjiiwwan $[officename] Calc keessaa"
+msgid "To find the average weight of all children of the same age in the above example (scroll up, please), enter the following formula in B16:"
+msgstr "Fakkeenya armaan olii keessaa giddugala ulfaatina daa'imman waggaa walqixaa barbaaduuf foormulaa armaan gadii B16 keessa galchaa:"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"bm_id3156445\n"
+"04060101.xhp\n"
+"par_id3153688\n"
+"137\n"
"help.text"
-msgid "<bookmark_value>formulas; operators</bookmark_value><bookmark_value>operators; formula functions</bookmark_value><bookmark_value>division sign, see also operators</bookmark_value><bookmark_value>multiplication sign, see also operators</bookmark_value><bookmark_value>minus sign, see also operators</bookmark_value><bookmark_value>plus sign, see also operators</bookmark_value><bookmark_value>text operators</bookmark_value><bookmark_value>comparisons;operators in Calc</bookmark_value><bookmark_value>arithmetical operators</bookmark_value><bookmark_value>reference operators</bookmark_value>"
-msgstr "<bookmark_value>formulawwan; ogeejjiiwwan</bookmark_value><bookmark_value>ogeejjiiwwan; fankishiniiwwan formula</bookmark_value><bookmark_value>qoyyaba qoodiinsaa, ogeejjiiwwanis ilaali</bookmark_value><bookmark_value>qoyyaba baay'isuu, ogeejjiiwwanis ilaali</bookmark_value><bookmark_value>qoyyaba hir'isuu, ogeejjiiwwanis ilaali</bookmark_value><bookmark_value>qoyyaba ida'uu, ogeejjiiwwanis ilaali</bookmark_value><bookmark_value>ogeejjiiwwan barruu</bookmark_value><bookmark_value>madaalliiwwan;ogeejjiiwwan Calc keessaa</bookmark_value><bookmark_value>ogeejjii artimeetikii</bookmark_value><bookmark_value>ogeejjiiwwan wabii</bookmark_value>"
+msgid "<item type=\"input\">=DAVERAGE(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr "<item type=\"input\">=DAVERAGE(A1:E10;\"Ulfaatina\";A13:E14)</item>"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"hd_id3156445\n"
-"1\n"
+"04060101.xhp\n"
+"par_id3155587\n"
+"138\n"
"help.text"
-msgid "Operators in $[officename] Calc"
-msgstr "Ogeejjiiwwan $[officename] Calc keessaa"
+msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The average weight of all children of the same age appears."
+msgstr "Tarree 14 keessa, Umrii jalatti, <item type=\"input\">7, 8, 9,</item> kkf, walduubaa dura galchi. Umriin jiddugaleessaa daa'imman umrii walfakkaataa qaban maraa ni mul'ata."
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3155812\n"
-"2\n"
+"04060101.xhp\n"
+"bm_id3159269\n"
"help.text"
-msgid "You can use the following operators in $[officename] Calc:"
-msgstr "ogeejjiwwan armaan gadii $[officename] Calc keessatti fayyadamu dandeessa:"
+msgid "<bookmark_value>DPRODUCT function</bookmark_value> <bookmark_value>multiplying;cell contents in Calc databases</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii DPRODUCT</bookmark_value> <bookmark_value>qabeentaa man'ee kuusdeeta calc keessa jiru ;baay'isuu</bookmark_value>"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"hd_id3153066\n"
-"3\n"
+"04060101.xhp\n"
+"hd_id3159269\n"
+"139\n"
"help.text"
-msgid "Arithmetical Operators"
-msgstr "Ogeejjiwwan Herregaa"
+msgid "DPRODUCT"
+msgstr "DPRODUCT"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3148601\n"
-"4\n"
+"04060101.xhp\n"
+"par_id3152879\n"
+"140\n"
"help.text"
-msgid "These operators return numerical results."
-msgstr "Ogeejjiwwan kunnen firiiwwan lakkoofsa kennu."
+msgid "<ahelp hid=\"HID_FUNC_DBPRODUKT\">DPRODUCT multiplies all cells of a data range where the cell contents match the search criteria.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DBPRODUKT\">DPRODUCT man'eewwan hundaa kan hammanga deetaa qabeentoonni man'ee ulaagaa barbaachaan walgitan baay'isa.</ahelp>"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3144768\n"
-"5\n"
+"04060101.xhp\n"
+"hd_id3149966\n"
+"141\n"
"help.text"
-msgid "Operator"
-msgstr "Ogeejjii"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3157982\n"
-"6\n"
+"04060101.xhp\n"
+"par_id3154854\n"
+"142\n"
"help.text"
-msgid "Name"
-msgstr "Maqaa"
+msgid "DPRODUCT(Database; DatabaseField; SearchCriteria)"
+msgstr "DPRODUCT(Kuusaa;Dirree kuusdeetaa;Ulaagaa sakata'aa)"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3159096\n"
-"7\n"
+"04060101.xhp\n"
+"hd_id3149802\n"
+"143\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3149126\n"
-"8\n"
-"help.text"
-msgid "+ (Plus)"
-msgstr "+ (Ida'uu)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150892\n"
-"9\n"
-"help.text"
-msgid "Addition"
-msgstr "Ida'ama"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153247\n"
-"10\n"
-"help.text"
-msgid "1+1"
-msgstr "1+1"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3159204\n"
-"11\n"
-"help.text"
-msgid "- (Minus)"
-msgstr "- (Hir'isuu)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3145362\n"
-"12\n"
-"help.text"
-msgid "Subtraction"
-msgstr "Hir'isuu"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153554\n"
-"13\n"
-"help.text"
-msgid "2-1"
-msgstr "2-1"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153808\n"
-"14\n"
-"help.text"
-msgid "- (Minus)"
-msgstr "- (Hir'isuu)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3151193\n"
-"15\n"
-"help.text"
-msgid "Negation"
-msgstr "Fuggisoo"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3154712\n"
-"16\n"
-"help.text"
-msgid "-5"
-msgstr "-5"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3149873\n"
-"17\n"
-"help.text"
-msgid "* (asterisk)"
-msgstr "* (urjoo)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3147504\n"
-"18\n"
-"help.text"
-msgid "Multiplication"
-msgstr "Baay'isuu"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3149055\n"
-"19\n"
-"help.text"
-msgid "2*2"
-msgstr "2*2"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3151341\n"
-"20\n"
-"help.text"
-msgid "/ (Slash)"
-msgstr "/ (haxaaroo)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3159260\n"
-"21\n"
-"help.text"
-msgid "Division"
-msgstr "Hiruu"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153027\n"
-"22\n"
-"help.text"
-msgid "9/3"
-msgstr "9/3"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3156396\n"
-"23\n"
-"help.text"
-msgid "% (Percent)"
-msgstr "% (Parsantii)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150372\n"
-"24\n"
-"help.text"
-msgid "Percent"
-msgstr "Parsantii"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3145632\n"
-"25\n"
-"help.text"
-msgid "15%"
-msgstr "15%"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3149722\n"
-"26\n"
-"help.text"
-msgid "^ (Caret)"
-msgstr "^ (arfii hoxxee)"
-
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3159127\n"
-"27\n"
+"04060101.xhp\n"
+"par_id3148986\n"
+"144\n"
"help.text"
-msgid "Exponentiation"
-msgstr "Mul'iseessuu"
+msgid "With the birthday party example above (scroll up, please), there is no meaningful application of this function."
+msgstr "Fakkeenya armaan olii keessatti (maaloo,olmari)qophiin guyyaa dhalootaa ,fankishinii kanaaf faayidaa hin qabu."
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3157873\n"
-"28\n"
+"04060101.xhp\n"
+"bm_id3148462\n"
"help.text"
-msgid "3^2"
-msgstr "3^2"
+msgid "<bookmark_value>DSTDEV function</bookmark_value> <bookmark_value>standard deviations in databases;based on a sample</bookmark_value>"
+msgstr "<bookmark_value>Faankiniin DSTDEV </bookmark_value> <bookmark_value>Istaandaardii diveeshinii kan kuusdeetaa keessa jiru;fakkeenya kenname irratti hundaa'a</bookmark_value>"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"hd_id3152981\n"
-"29\n"
+"04060101.xhp\n"
+"hd_id3148462\n"
+"145\n"
"help.text"
-msgid "Comparative operators"
-msgstr "Ogeejjiiwwan dorgii"
+msgid "DSTDEV"
+msgstr "DSTDEV"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3157902\n"
-"30\n"
+"04060101.xhp\n"
+"par_id3154605\n"
+"146\n"
"help.text"
-msgid "These operators return either true or false."
-msgstr "Ogeejjiiwwan kunnen dhugaa ykn soba deebisuu."
+msgid "<ahelp hid=\"HID_FUNC_DBSTDABW\">DSTDEV calculates the standard deviation of a population based on a sample, using the numbers in a database column that match the given conditions.</ahelp> The records are treated as a sample of data. That means that the children in the example represent a cross section of all children. Note that a representative result can not be obtained from a sample of less than one thousand."
+msgstr "<ahelp hid=\"HID_FUNC_DBSTDABW\">DSTDEV Istaandaardii diveeshinii ummataa fakkeenya irratti hundaa'udhaan ,lakkoofsota,kuusdeetaa tarjaa keessaa fayyadamuudhaan haala walgituun shallaga.</ahelp> Kuusaan akka fakkeenya deetaatti eegama.kana jechuun daa'imman fakkeenya irratti fudhataman amala daa'imman hundaa qabu.Hub.firiin bakka bu'u fakkeenya 1000 gad ta'uu hin qabu."
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3149889\n"
-"31\n"
+"04060101.xhp\n"
+"hd_id3149427\n"
+"147\n"
"help.text"
-msgid "Operator"
-msgstr "Ogeejjii"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3150743\n"
-"32\n"
+"04060101.xhp\n"
+"par_id3148661\n"
+"148\n"
"help.text"
-msgid "Name"
-msgstr "Maqaa"
+msgid "DSTDEV(Database; DatabaseField; SearchCriteria)"
+msgstr "DSTDEV(Kuusdeetaa;Dirree kuusdeetaa;Ulaagaa sakata'aa)"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3146877\n"
-"33\n"
+"04060101.xhp\n"
+"hd_id3153945\n"
+"149\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3148888\n"
-"34\n"
-"help.text"
-msgid "= (equal sign)"
-msgstr "= (mallattoo wal qixaa)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3154845\n"
-"35\n"
-"help.text"
-msgid "Equal"
-msgstr "walqixa"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3154546\n"
-"36\n"
-"help.text"
-msgid "A1=B1"
-msgstr "A1=B1"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3154807\n"
-"37\n"
-"help.text"
-msgid "> (Greater than)"
-msgstr "> (Irra guddaa)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3148580\n"
-"38\n"
-"help.text"
-msgid "Greater than"
-msgstr "irra guddaa"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3145138\n"
-"39\n"
-"help.text"
-msgid "A1>B1"
-msgstr "A1=B1"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3149507\n"
-"40\n"
-"help.text"
-msgid "< (Less than)"
-msgstr "< (Irra xiqqaa)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150145\n"
-"41\n"
-"help.text"
-msgid "Less than"
-msgstr "Irra xiqqaa"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150901\n"
-"42\n"
-"help.text"
-msgid "A1<B1"
-msgstr "A1<B1"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153078\n"
-"43\n"
-"help.text"
-msgid ">= (Greater than or equal to)"
-msgstr ">= (Irra guddaa ykn walqixa)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150866\n"
-"44\n"
-"help.text"
-msgid "Greater than or equal to"
-msgstr "Irra guddaa ykn walqixa"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153111\n"
-"45\n"
-"help.text"
-msgid "A1>=B1"
-msgstr "A1>=B1"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153004\n"
-"46\n"
-"help.text"
-msgid "<= (Less than or equal to)"
-msgstr "<= (irra xiqqaa ykn walqixa)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150335\n"
-"47\n"
-"help.text"
-msgid "Less than or equal to"
-msgstr "Irra xiqqaa ykn walqixa"
-
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3148760\n"
-"48\n"
+"04060101.xhp\n"
+"par_id3149934\n"
+"150\n"
"help.text"
-msgid "A1<=B1"
-msgstr "A1<=B1"
+msgid "To find the standard deviation of the weight for all children of the same age in the example (scroll up, please), enter the following formula in B16:"
+msgstr "Fakkeenya armaan oliitiif(maaloo,olmari) istaandaardii diveeshinii ulfaatina daa'imman hundaa kan umuriin walqixaa barbaaduuf foormulaa armaan gadii B16 keessatti galchaa."
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3157994\n"
-"49\n"
+"04060101.xhp\n"
+"par_id3150630\n"
+"151\n"
"help.text"
-msgid "<> (Inequality)"
-msgstr "<> (Walcaalma))"
+msgid "<item type=\"input\">=DSTDEV(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr "<item type=\"input\">=DSTDEV(A1:E10;\"Ulfaatina\";A13:E14)</item>"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3150019\n"
-"50\n"
+"04060101.xhp\n"
+"par_id3153536\n"
+"152\n"
"help.text"
-msgid "Inequality"
-msgstr "Walcaalma"
+msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The result shown is the standard deviation of the weight of all children of this age."
+msgstr "Tarree 14, kutaa jalatti,<item type=\"input\">7, 8, 9,</item> fi kkf,walduraa duubaan galcha.Firiin argamu istaandaardii diveeshii ulfaatina daa'imman hundaa ta'a."
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3149878\n"
-"51\n"
+"04060101.xhp\n"
+"bm_id3150429\n"
"help.text"
-msgid "A1<>B1"
-msgstr "A1<>B1"
+msgid "<bookmark_value>DSTDEVP function</bookmark_value> <bookmark_value>standard deviations in databases;based on populations</bookmark_value>"
+msgstr "<bookmark_value>Faankishiniin DSTDEVP</bookmark_value> <bookmark_value>istaandaardii diveeshinii kuusootadeeta keessa;baay'ina ummataa irratti hundaa'udhaan</bookmark_value>"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"hd_id3145241\n"
-"52\n"
+"04060101.xhp\n"
+"hd_id3150429\n"
+"153\n"
"help.text"
-msgid "Text operators"
-msgstr "Ogeejjiiwwan barruu"
+msgid "DSTDEVP"
+msgstr "DSTDEVP"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3155438\n"
-"53\n"
+"04060101.xhp\n"
+"par_id3145598\n"
+"154\n"
"help.text"
-msgid "The operator combines separate texts into one text."
-msgstr "Ogeejjiin barruuwwan adda addaa gara barruu tokkootti maka."
+msgid "<ahelp hid=\"HID_FUNC_DBSTDABWN\">DSTDEVP calculates the standard deviation of a population based on all cells of a data range which match the search criteria.</ahelp> The records from the example are treated as the whole population."
+msgstr "<ahelp hid=\"HID_FUNC_DBSTDABWN\">DSTDEVP man'ee hammanga deetaa hunda irratti hundaa'uudhaan istaandaardii diveeshinii ulaagaa barbaachaa wajjin walgitu shallaga.</ahelp> Galmeen fakkeenya irraa argamu akka ummata walii galaatti tajaajila."
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3150566\n"
-"54\n"
+"04060101.xhp\n"
+"hd_id3145307\n"
+"155\n"
"help.text"
-msgid "Operator"
-msgstr "Ogeejjii"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3153048\n"
-"55\n"
+"04060101.xhp\n"
+"par_id3149484\n"
+"156\n"
"help.text"
-msgid "Name"
-msgstr "Maqaa"
+msgid "DSTDEVP(Database; DatabaseField; SearchCriteria)"
+msgstr "DSTDEVP(Kuusdeetaa;Dirree kuusdeetaa;Ulaagaa sakata'aa)"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3149001\n"
-"56\n"
+"04060101.xhp\n"
+"hd_id3153322\n"
+"157\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3148769\n"
-"57\n"
-"help.text"
-msgid "& (And)"
-msgstr "& (Fi)"
-
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"bm_id3157975\n"
+"04060101.xhp\n"
+"par_id3155431\n"
+"158\n"
"help.text"
-msgid "<bookmark_value>text concatenation AND</bookmark_value>"
-msgstr "<bookmark_value>walitti fidinsa barruu AND</bookmark_value>"
+msgid "To find the standard deviation of the weight for all children of the same age at Joe's birthday party (scroll up, please), enter the following formula in B16:"
+msgstr "Guyyaa dhaloota Joe irratti istaandaardii diveeshinii ulfaatina daa'imman hundaa umurii walqixa qabanii barbaaduuf (maaloo,olmari),foormulaa armaan gadii B16 keessa galchaa."
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3157975\n"
-"58\n"
+"04060101.xhp\n"
+"par_id3148411\n"
+"159\n"
"help.text"
-msgid "text concatenation AND"
-msgstr "walitti fidinsa barruu AND"
+msgid "<item type=\"input\">=DSTDEVP(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr "<item type=\"input\">=DSTDEV(A1:E10;\"Ulfaatina\";A13:E14)</item>"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3157993\n"
-"59\n"
+"04060101.xhp\n"
+"par_id3143271\n"
+"160\n"
"help.text"
-msgid "\"Sun\" & \"day\" is \"Sunday\""
-msgstr "\"Sun\" Fi \"day\"'n \"Sunday\" ta'a"
+msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The result is the standard deviation of the weight for all same-aged children whose weight was checked."
+msgstr "Tarree 14, kutaa jalatti,<item type=\"input\">7, 8, 9,</item> fi kkf,walduraa duubaan galchaa.Firiin argamu istaandaardii deveeshinii ulfaatina daa'imman hunda umurii walqixa qabanii ta'a."
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"hd_id3153550\n"
-"60\n"
+"04060101.xhp\n"
+"bm_id3154794\n"
"help.text"
-msgid "Reference operators"
-msgstr "Wabii ogeejjotaa"
+msgid "<bookmark_value>DSUM function</bookmark_value> <bookmark_value>calculating;sums in Calc databases</bookmark_value> <bookmark_value>sums;cells in Calc databases</bookmark_value>"
+msgstr "<bookmark_value>Faankishii DSUM </bookmark_value> <bookmark_value>shallaguu;ida'ama kuusdeetaa calc keessa</bookmark_value> <bookmark_value>ida'ama;man'eewwan kuusdeetaa keessa</bookmark_value>"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3149024\n"
-"61\n"
+"04060101.xhp\n"
+"hd_id3154794\n"
+"161\n"
"help.text"
-msgid "These operators return a cell range of zero, one or more cells."
-msgstr "Ogeejjootni kunneen hangii man'ee duwwaa,tokko ykn man'eewwan baay'ee kenna."
+msgid "DSUM"
+msgstr "DSUM"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id2324900\n"
+"04060101.xhp\n"
+"par_id3149591\n"
+"162\n"
"help.text"
-msgid "Range has the highest precedence, then intersection, and then finally union."
-msgstr "Hangiin dursaa olaantoo qaba,itti ansuun walkipha,fi xumura irratti walitti makuu qaba."
+msgid "<ahelp hid=\"HID_FUNC_DBSUMME\">DSUM returns the total of all cells in a database field in all rows (records) that match the specified search criteria.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DBSUMME\">DSUM man'eewwan walii galaa hunda kan dirree kuusdeetaa tarreewwan hundaa(galmee )keessaa ulaagaa barbaachaa murtaa'e waliin walgitan deebisa.</ahelp>"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3158416\n"
-"62\n"
+"04060101.xhp\n"
+"hd_id3146128\n"
+"163\n"
"help.text"
-msgid "Operator"
-msgstr "Ogeejjii"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3152822\n"
-"63\n"
+"04060101.xhp\n"
+"par_id3150989\n"
+"164\n"
"help.text"
-msgid "Name"
-msgstr "Maqaa"
+msgid "DSUM(Database; DatabaseField; SearchCriteria)"
+msgstr "DSUM(Kuusdeetaa;Dirree kuusdeetaa;Ulaagaa sakata'aa)"
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3154949\n"
-"64\n"
+"04060101.xhp\n"
+"hd_id3159079\n"
+"165\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3156257\n"
-"65\n"
-"help.text"
-msgid ": (Colon)"
-msgstr ": (Qabxilamee))"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153924\n"
-"66\n"
-"help.text"
-msgid "Range"
-msgstr "Hangii"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3148432\n"
-"67\n"
-"help.text"
-msgid "A1:C108"
-msgstr "A1:C108"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3152592\n"
-"68\n"
-"help.text"
-msgid "! (Exclamation point)"
-msgstr "! (Tuqaa raajefannoo)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"bm_id3150606\n"
-"help.text"
-msgid "<bookmark_value>intersection operator</bookmark_value>"
-msgstr "<bookmark_value>ogeejjii walkiphaa</bookmark_value>"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150606\n"
-"69\n"
-"help.text"
-msgid "Intersection"
-msgstr "Walkipha"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3083445\n"
-"70\n"
-"help.text"
-msgid "SUM(A1:B6!B5:C12)"
-msgstr "SUM(A1:B6!B5:C12)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150385\n"
-"71\n"
-"help.text"
-msgid "Calculates the sum of all cells in the intersection; in this example, the result yields the sum of cells B5 and B6."
-msgstr "Ida'amaa man'eewwan walkipha keessaa huundaa shallaga;fakkeenya kana keessatti,firiin ida'ama man'eewwan B5 fi B6 kenna."
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id4003723\n"
-"help.text"
-msgid "~ (Tilde)"
-msgstr "(Dalduufaa)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id838953\n"
-"help.text"
-msgid "Concatenation or union"
-msgstr "Walitti fidinsa ykn walitti makuu"
-
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id2511978\n"
+"04060101.xhp\n"
+"par_id3152766\n"
+"166\n"
"help.text"
-msgid "Takes two references and returns a reference list, which is a concatenation of the left reference followed by the right reference. Double entries are referenced twice. See note below this table."
-msgstr "Wabiiwwan lama fudhachuun tarree wabii kenna,kunis walitti fidinsa wabii bitaa kan wabii mirgaan hordofamee fudhata.Galinsii dabalata lama wabeeffama.Yadannoo gabatee armaan gadii jalatti argamu ilaali."
+msgid "To find the length of the combined distance to school of all children at Joe's birthday party (scroll up, please) who are in second grade, enter the following formula in B16:"
+msgstr "Guyyaa dhalootaa Joe irratti fageenya walii galaa daa'imman kutaa lammaffaa hundaa hanga mana baruumsaatti barbaaduuf (maaloo,olmari)foormulaa armaan gadi B16 keessatti galchaa."
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id181890\n"
+"04060101.xhp\n"
+"par_id3151312\n"
+"167\n"
"help.text"
-msgid "Reference concatenation using a tilde character was implemented lately. When a formula with the tilde operator exists in a document that is opened in old versions of the software, an error is returned. A reference list is not allowed inside an array expression."
-msgstr "Walitti fidinsi wabii arfii dalduufaa fayyadamun ogeejjii haraa,OpenOffice.org 3.0 and StarOffice 9 waliin eegaluun jiraata.Yommuu formuulaan ogeejjii dalduufaa galmee kan foyya'oota duraa sooftiweerii banee waliin jiraatee,dogoggorri ni deebisama.Warantoo himannoo keessatti tarreen wabii hin heeyyamamu."
+msgid "<item type=\"input\">=DSUM(A1:E10;\"Distance to School\";A13:E14)</item>"
+msgstr "<item type=\"input\">=DSUM(A1:E10;\"Fageenya gara mana baruumsatti\";A13:E14)</item>"
-#: func_weekday.xhp
+#: 04060101.xhp
msgctxt ""
-"func_weekday.xhp\n"
-"tit\n"
+"04060101.xhp\n"
+"par_id3150596\n"
+"168\n"
"help.text"
-msgid "WEEKDAY"
-msgstr "WEEKDAY"
+msgid "Enter <item type=\"input\">2</item> in row 14 under Grade. The sum (1950) of the distances to school of all the children who are in second grade is displayed."
+msgstr "Tarree 14 keessatti <item type=\"input\">2</item>kutaa jalatti galchaa.Ida'amni(1950)fageenya daa'imman hundaa kutaa lammaffaa ni mul'ata."
-#: func_weekday.xhp
+#: 04060101.xhp
msgctxt ""
-"func_weekday.xhp\n"
-"bm_id3154925\n"
+"04060101.xhp\n"
+"bm_id3155614\n"
"help.text"
-msgid "<bookmark_value>WEEKDAY function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii WEEKDAY</bookmark_value>"
+msgid "<bookmark_value>DVAR function</bookmark_value> <bookmark_value>variances;based on samples</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii DVAR </bookmark_value> <bookmark_value>vaariyaansii;eddattoo irratti hundaa'udhaan</bookmark_value>"
-#: func_weekday.xhp
+#: 04060101.xhp
msgctxt ""
-"func_weekday.xhp\n"
-"hd_id3154925\n"
-"136\n"
+"04060101.xhp\n"
+"hd_id3155614\n"
+"170\n"
"help.text"
-msgid "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">WEEKDAY</link></variable>"
-msgstr "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">WEEKDAY</link></variable>"
+msgid "DVAR"
+msgstr "DVAR"
-#: func_weekday.xhp
+#: 04060101.xhp
msgctxt ""
-"func_weekday.xhp\n"
-"par_id3154228\n"
-"137\n"
+"04060101.xhp\n"
+"par_id3154418\n"
+"171\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WOCHENTAG\">Returns the day of the week for the given date value.</ahelp> The day is returned as an integer between 1 (Sunday) and 7 (Saturday) if no type or type=1 is specified. If type=2, numbering begins at Monday=1; and if type=3 numbering begins at Monday=0."
-msgstr "<ahelp hid=\"HID_FUNC_WOCHENTAG\">Gatii aduu kennameef maqaa guyyaa torbaan keessaa deebisi.</ahelp> Yoo akaakuu hin qabnee ykn akaakuu=1 ta'een ibsame,guyyaan deebi'uu kun intiijera 1(Dilbata) fi 7(Sanbata) gidduutti argama.Yoo akaakuu'n=2 ta'ee lakkaawwiin Wixaata=1 irraa eegala;Yoo akaakuu'n=3 ta'ee,lakkaawwiin Wixaata=0 irraa eegala."
+msgid "<ahelp hid=\"HID_FUNC_DBVARIANZ\">DVAR returns the variance of all cells of a database field in all records that match the specified search criteria.</ahelp> The records from the example are treated as a sample of data. A representative result cannot be obtained from a sample population of less than one thousand."
+msgstr "<ahelp hid=\"HID_FUNC_DBVARIANZ\">DVAR vaaraansii man'ee hundaa kan dirree kuusdeetaa galmee hundaa keessa jiru kan ulaagaa barbaachisaan wal gitu deebisa.</ahelp> Galmeen fakkeenya irraa argame akka fakkeenyatti ilaalama.Firiin bakka bu'u fakkeenya ummataa 1000 gadi ta'uu hin qabu."
-#: func_weekday.xhp
+#: 04060101.xhp
msgctxt ""
-"func_weekday.xhp\n"
-"hd_id3147217\n"
-"138\n"
+"04060101.xhp\n"
+"hd_id3154825\n"
+"172\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: func_weekday.xhp
-msgctxt ""
-"func_weekday.xhp\n"
-"par_id3149033\n"
-"139\n"
-"help.text"
-msgid "WEEKDAY(Number; Type)"
-msgstr "WEEKDAY(Lakkoofsa;akaakuu)"
-
-#: func_weekday.xhp
-msgctxt ""
-"func_weekday.xhp\n"
-"par_id3149046\n"
-"140\n"
-"help.text"
-msgid "<emph>Number</emph>, as a date value, is a decimal for which the weekday is to be returned."
-msgstr "<emph>Lakkoofsa</emph>, akka gati aduutti, kurnyee dha,kan guyyaa itti argannu."
-
-#: func_weekday.xhp
-msgctxt ""
-"func_weekday.xhp\n"
-"par_id3154394\n"
-"141\n"
-"help.text"
-msgid "<emph>Type</emph> determines the type of calculation. For Type=1, the weekdays are counted starting from Sunday (this is the default even when the Type parameter is missing). For Type=2, the weekdays are counted starting from Monday=1. For Type=3, the weekdays are counted starting from Monday=0."
-msgstr "<emph>Akaakuu</emph> akaakuu shallaggii murteessa.akaakuu=1'f guyyaa torbanii dilbata irraa eegalun lakkaawwama(kunis yeroo akaakuun ulaagaalee dagatamuu akka durtitti taa'a). Akaakuu=2'f guyyaan torbanii wiixata=1 irraa jalqabuun lakkaawwuu eegala.Akaakuu=3'f guyyaan torbanii wiixata=0 irraa jalqabuun lakkaawwuu eegala."
-
-#: func_weekday.xhp
-msgctxt ""
-"func_weekday.xhp\n"
-"par_id3156188\n"
-"142\n"
-"help.text"
-msgid "These values apply only to the standard date format that you select under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate</emph>."
-msgstr ""
-
-#: func_weekday.xhp
-msgctxt ""
-"func_weekday.xhp\n"
-"hd_id3153836\n"
-"143\n"
-"help.text"
-msgid "Examples"
-msgstr "Fakkeenyawwan"
-
-#: func_weekday.xhp
-msgctxt ""
-"func_weekday.xhp\n"
-"par_id3150317\n"
-"144\n"
-"help.text"
-msgid "=WEEKDAY(\"2000-06-14\") returns 4 (the Type parameter is missing, therefore the standard count is used. The standard count starts with Sunday as day number 1. June 14, 2000 was a Wednesday and therefore day number 4)."
-msgstr "=WEEKDAY(\"2000-06-14\") 4 kenna(akkasumas akaakuu uulaagaaleen ni hafa kanaaf lakkaawwii waltaawwaatti gargaaramna.Lakkaawwiin waltaawwaa Dilbata lakkoofsa 1 irraa eegala.Caamsa 14,2000 Roobii ture kanaafu lakkoofsi guyyaa kanaas 4 dha)."
-
-#: func_weekday.xhp
-msgctxt ""
-"func_weekday.xhp\n"
-"par_id3153174\n"
-"145\n"
-"help.text"
-msgid "=WEEKDAY(\"1996-07-24\";2) returns 3 (the Type parameter is 2, therefore Monday is day number 1. July 24, 1996 was a Wednesday and therefore day number 3)."
-msgstr "=WEEKDAY(\"1996-07-24\";2) 3 kenna(akaakuun ulaagaalee lama dha kanaafuu wixaatni lakkoofsa guyyaa 1 ta'a.Adooleessa 24,1996 Roobii ture kanaafuu lakkoofsi guyyaa kana 3 ta'a)."
-
-#: func_weekday.xhp
-msgctxt ""
-"func_weekday.xhp\n"
-"par_id3153525\n"
-"146\n"
-"help.text"
-msgid "=WEEKDAY(\"1996-07-24\";1) returns 4 (the Type parameter is 1, therefore Sunday is day number 1. July 24, 1996 was a Wednesday and therefore day number 4)."
-msgstr "=WEEKDAY(\"1996-07-24\";1) 4 kenna(akaakuun ulaagaalee 2 dha kanaafuu Dilbata lakkoofsa guyyaa 1 ta'a.Adooleessa 24,1996 Roobii ture kanaafuu lakkoofsi guyyaa kana 4 ta'a)."
-
-#: func_weekday.xhp
-msgctxt ""
-"func_weekday.xhp\n"
-"par_id3150575\n"
-"147\n"
-"help.text"
-msgid "=WEEKDAY(NOW()) returns the number of the current day."
-msgstr "=WEEKDAY(NOW()) lakkoofsa yeroo ammaa kana kenna."
-
-#: func_weekday.xhp
-msgctxt ""
-"func_weekday.xhp\n"
-"par_id3150588\n"
-"171\n"
-"help.text"
-msgid "To obtain a function indicating whether a day in A1 is a business day, use the IF and WEEKDAY functions as follows: <br/>IF(WEEKDAY(A1;2)<6;\"Business day\";\"Weekend\")"
-msgstr "Fankishiniin guyyaan A1 kun akka guyyaa hojii ta'ee mul'isuu argachuuf,IF fi WEEKDAY jedhuu akka armaan gaditti fayyadami:<br/>IF(WEEKDAY(A1;2)<6;\"Business day\";\"Weekend\")"
-
-#: 12070100.xhp
-msgctxt ""
-"12070100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Consolidate by"
-msgstr "Gamtaa'i kanaan"
-
-#: 12070100.xhp
-msgctxt ""
-"12070100.xhp\n"
-"hd_id3151210\n"
-"1\n"
-"help.text"
-msgid "Consolidate by"
-msgstr "Gamtaa'i kanaan"
-
-#: 12070100.xhp
+#: 04060101.xhp
msgctxt ""
-"12070100.xhp\n"
-"hd_id3125864\n"
-"2\n"
+"04060101.xhp\n"
+"par_id3156138\n"
+"173\n"
"help.text"
-msgid "Consolidate by"
-msgstr "Gamtaa'i kanaan"
+msgid "DVAR(Database; DatabaseField; SearchCriteria)"
+msgstr "DVAR(Kuusdeetaa;Dirree kuusdeetaa;Ulaagaa sakata'aa)"
-#: 12070100.xhp
+#: 04060101.xhp
msgctxt ""
-"12070100.xhp\n"
-"par_id3154909\n"
-"3\n"
+"04060101.xhp\n"
+"hd_id3151257\n"
+"174\n"
"help.text"
-msgid "Use this section if the cell ranges that you want to consolidate contain labels. You only need to select these options if the consolidation ranges contain similar labels and the data arranged is arranged differently."
-msgstr "Hammangawwan man'ee gamteessuu barbaadde yoo moggasawwan qabaatan kkutaa kana fayyadami.Dirqalaalee kana kan filachuun si barbaachisu hammangaan gamtaa'inaa moggaasa wal fakkataa fi deetaan qindaa'e akka garagaraatin qindaa'e qofaa dha."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12070100.xhp
+#: 04060101.xhp
msgctxt ""
-"12070100.xhp\n"
-"hd_id3153968\n"
-"4\n"
+"04060101.xhp\n"
+"par_id3153701\n"
+"175\n"
"help.text"
-msgid "Row labels"
-msgstr "Asxaalee tarree"
+msgid "To find the variance of the weight of all children of the same age of the above example (scroll up, please), enter the following formula in B16:"
+msgstr "Fakkeenya armaan olii keessaa vaariyaansii ulfaatina daa'imman waggaa walqixaa barbaaduuf foormulaa armaan gadii B16 keessa galchaa:"
-#: 12070100.xhp
+#: 04060101.xhp
msgctxt ""
-"12070100.xhp\n"
-"par_id3150441\n"
-"5\n"
+"04060101.xhp\n"
+"par_id3153676\n"
+"176\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYROW\" visibility=\"visible\">Uses the row labels to arrange the consolidated data.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYROW\" visibility=\"visible\">Deetaawwan gamtaa'an qindeessuuf moggaasawwan tarree fayyadama.</ahelp>"
+msgid "<item type=\"input\">=DVAR(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr "<item type=\"input\">=DVAR(A1:E10;\"Ulfaatina\";A13:E14)</item>"
-#: 12070100.xhp
+#: 04060101.xhp
msgctxt ""
-"12070100.xhp\n"
-"hd_id3146976\n"
-"6\n"
+"04060101.xhp\n"
+"par_id3153798\n"
+"177\n"
"help.text"
-msgid "Column labels"
-msgstr "Moggaasa tarjaa"
+msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. You will see as a result the variance of the weight values for all children of this age."
+msgstr "Tarree 14, kutaa jalatti,<item type=\"input\">7, 8, 9,</item> fi kkf,walduraa duubaan galchaa.Firiin argamu vaariyaansii ulfaatina daa'imman hunda umurii walqixa qabanii ta'a."
-#: 12070100.xhp
+#: 04060101.xhp
msgctxt ""
-"12070100.xhp\n"
-"par_id3155411\n"
-"7\n"
+"04060101.xhp\n"
+"bm_id3153880\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYCOL\" visibility=\"visible\">Uses the column labels to arrange the consolidated data.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYCOL\" visibility=\"visible\">Deetaawwan gamtaa'an qindeessuuf moggaasawwan tarjaa fayyadama.</ahelp>"
+msgid "<bookmark_value>DVARP function</bookmark_value> <bookmark_value>variances;based on populations</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii DVAR </bookmark_value> <bookmark_value>vaariyaansii;fakkeenya ummataa irratti hundaa'udhaan</bookmark_value>"
-#: 12070100.xhp
+#: 04060101.xhp
msgctxt ""
-"12070100.xhp\n"
-"hd_id3153191\n"
-"12\n"
+"04060101.xhp\n"
+"hd_id3153880\n"
+"178\n"
"help.text"
-msgid "Options"
-msgstr "Dirqalaalee"
+msgid "DVARP"
+msgstr "DVARP"
-#: 12070100.xhp
+#: 04060101.xhp
msgctxt ""
-"12070100.xhp\n"
-"hd_id3159154\n"
-"8\n"
+"04060101.xhp\n"
+"par_id3155119\n"
+"179\n"
"help.text"
-msgid "Link to source data"
-msgstr "Deetaa maddaatti kornyeessi"
+msgid "<ahelp hid=\"HID_FUNC_DBVARIANZEN\">DVARP calculates the variance of all cell values in a database field in all records that match the specified search criteria.</ahelp> The records are from the example are treated as an entire population."
+msgstr "<ahelp hid=\"HID_FUNC_DBVARIANZEN\">DVAR vaaraansii man'ee hundaa kan dirree kuusdeetaa galmee hundaa keessa jiru kan ulaagaa barbaachisaan wal gitu deebisa.</ahelp> Galmeen fakkeenya irraa argame akka ummata walii galaatti tajaajila."
-#: 12070100.xhp
+#: 04060101.xhp
msgctxt ""
-"12070100.xhp\n"
-"par_id3146986\n"
-"9\n"
+"04060101.xhp\n"
+"hd_id3145774\n"
+"180\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_REFS\" visibility=\"visible\">Links the data in the consolidation range to the source data, and automatically updates the results of the consolidation when the source data is changed.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_REFS\" visibility=\"visible\">Deetaa hammanga gamtaa'inaa keessaa deetaa maddaatti kornyeessa, fi yommuu deetaan maddaa jijjiiramu ofumaan bu'aawwan gamtaa'inaa haaromsa.</ahelp>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 12070100.xhp
+#: 04060101.xhp
msgctxt ""
-"12070100.xhp\n"
-"hd_id3163708\n"
-"10\n"
+"04060101.xhp\n"
+"par_id3153776\n"
+"181\n"
"help.text"
-msgid "More <<"
-msgstr "Dabala>>"
+msgid "DVARP(Database; DatabaseField; SearchCriteria)"
+msgstr "DVARP(Kuusdeetaa;Dirree kuusdeetaa;Ulaagaa sakata'aa)"
-#: 12070100.xhp
+#: 04060101.xhp
msgctxt ""
-"12070100.xhp\n"
-"par_id3151118\n"
-"11\n"
+"04060101.xhp\n"
+"hd_id3151110\n"
+"182\n"
"help.text"
-msgid "Hides the additional options."
-msgstr "Dirqalaalee dabalataa dhoksa."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 05080100.xhp
+#: 04060101.xhp
msgctxt ""
-"05080100.xhp\n"
-"tit\n"
+"04060101.xhp\n"
+"par_id3147099\n"
+"183\n"
"help.text"
-msgid "Define"
-msgstr "Hiiki"
+msgid "To find the variance of the weight for all children of the same age at Joe's birthday party (scroll up, please), enter the following formula in B16:"
+msgstr "Guyyaa dhaloota Joe irratti vaariyaansii ulfaatina daa'imman hundaa umurii walqixa qabanii barbaaduuf (maaloo,olmari),foormulaa armaan gadii B16 keessa galchaa."
-#: 05080100.xhp
+#: 04060101.xhp
msgctxt ""
-"05080100.xhp\n"
-"hd_id3145673\n"
-"1\n"
+"04060101.xhp\n"
+"par_id3147322\n"
+"184\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05080100.xhp\" name=\"Define\">Define</link>"
-msgstr "<link href=\"text/scalc/01/05080100.xhp\" name=\"Define\">Hiiki</link>"
+msgid "<item type=\"input\">=DVARP(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr "<item type=\"input\">=DVARP(A1:E10;\"Ulfaatina\";A13:E14)</item>"
-#: 05080100.xhp
+#: 04060101.xhp
msgctxt ""
-"05080100.xhp\n"
-"par_id3153896\n"
-"2\n"
+"04060101.xhp\n"
+"par_id3146902\n"
+"185\n"
"help.text"
-msgid "<ahelp hid=\".uno:DefinePrintArea\">Defines an active cell or selected cell area as the print range.</ahelp>"
-msgstr "<ahelp hid=\".uno:DefinePrintArea\">Akka hangii maxxansaatti bakka man'ee ka'aa ykn man'ee filamaa ramada.</ahelp>"
+msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The variance of the weight values for all children of this age attending Joe's birthday party appears."
+msgstr "Tarree 14, kutaa jalatti,<item type=\"input\">7, 8, 9,</item> fi kkf,walduraa duubaan galchaa. vaariyaansii ulfaatina daa'imman hunda umurii walqixa qabanii kan qophii guyyaa dhaloota Joe irratti argamaniitu mul'ata."
#: 04060102.xhp
msgctxt ""
@@ -11351,7 +5786,6 @@ msgid "<embedvar href=\"text/scalc/01/func_date.xhp#date\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_date.xhp#date\"/>"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id6354457\n"
@@ -11519,6077 +5953,2200 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_timevalue.xhp#timevalue\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_timevalue.xhp#timevalue\"/>"
-#: 05030000.xhp
-msgctxt ""
-"05030000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Row"
-msgstr "Tarree"
-
-#: 05030000.xhp
-msgctxt ""
-"05030000.xhp\n"
-"hd_id3147228\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05030000.xhp\" name=\"Row\">Row</link>"
-msgstr "<link href=\"text/scalc/01/05030000.xhp\" name=\"Row\">Tarree</link>"
-
-#: 05030000.xhp
-msgctxt ""
-"05030000.xhp\n"
-"par_id3154685\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Sets the row height and hides or shows selected rows.</ahelp>"
-msgstr "<ahelp hid=\".\">Dheerina tarree qindeessa akkasumas tarrewwan filtaman dhoksa ykn agarsiisa.</ahelp>"
-
-#: 05030000.xhp
-msgctxt ""
-"05030000.xhp\n"
-"hd_id3155132\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Height\">Height</link>"
-msgstr "<link href=\"text/shared/01/05340100.xhp\" name=\"Height\">Dheerina</link>"
-
-#: 05030000.xhp
-msgctxt ""
-"05030000.xhp\n"
-"hd_id3155854\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal Height\">Optimal Height</link>"
-msgstr "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal Height\">Dheerina gutoolaa</link>"
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"tit\n"
-"help.text"
-msgid "DAYS"
-msgstr "DAYS"
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"bm_id3151328\n"
-"help.text"
-msgid "<bookmark_value>DAYS function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii DAYS</bookmark_value>"
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"hd_id3151328\n"
-"116\n"
-"help.text"
-msgid "<variable id=\"days\"><link href=\"text/scalc/01/func_days.xhp\">DAYS</link></variable>"
-msgstr "<variable id=\"days\"><link href=\"text/scalc/01/func_days.xhp\">DAYS</link></variable>"
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"par_id3155139\n"
-"117\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TAGE\">Calculates the difference between two date values.</ahelp> The result returns the number of days between the two days."
-msgstr "<ahelp hid=\"HID_FUNC_TAGE\">Garagarumma gati guyyaa lama gidduu jiru shallaga.</ahelp> Firiin isaas baay'ina guyyoota lama gidduu jiru kenna."
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"hd_id3155184\n"
-"118\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"par_id3149578\n"
-"119\n"
-"help.text"
-msgid "DAYS(Date2; Date1)"
-msgstr "DAYS(Aduu2;Aduu1)"
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"par_id3151376\n"
-"120\n"
-"help.text"
-msgid "<emph>Date1</emph> is the start date, <emph>Date2</emph> is the end date. If <emph>Date2</emph> is an earlier date than <emph>Date1</emph> the result is a negative number."
-msgstr "<emph>Aduu1</emph> guyyaa jalqabaati, <emph>Aduu2</emph>aduu xumuraati.yoo <emph>Aduu2</emph> n <emph>Aduu1</emph> durse firiin lakkofsa negaativii ta'a."
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"hd_id3151001\n"
-"121\n"
-"help.text"
-msgid "Examples"
-msgstr "Fakkeenyawwan"
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"par_id3159101\n"
-"123\n"
-"help.text"
-msgid "=DAYS(\"2010-01-01\"; NOW()) returns the number of days from today until January 1, 2010."
-msgstr "=DAYS(\"2010-01-01\"; NOW()) baay'ina guyyota har'aa hanga amajji 1,2010tti jiranii kenna."
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"par_id3163720\n"
-"172\n"
-"help.text"
-msgid "=DAYS(\"1990-10-10\";\"1980-10-10\") returns 3652 days."
-msgstr "=DAYS(\"1990-10-10\";\"1980-10-10\") guyyoota 3652 kenna."
-
-#: 07080000.xhp
-msgctxt ""
-"07080000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Split"
-msgstr "Addabaasi"
-
-#: 07080000.xhp
-msgctxt ""
-"07080000.xhp\n"
-"hd_id3163800\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"Split\">Split</link>"
-msgstr "<link href=\"text/scalc/01/07080000.xhp\" name=\"Split\">Addabaasi</link>"
-
-#: 07080000.xhp
-msgctxt ""
-"07080000.xhp\n"
-"par_id3150084\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:SplitWindow\" visibility=\"visible\">Divides the current window at the top left corner of the active cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:SplitWindow\" visibility=\"visible\">Foddaa ammaa kan xiyyoo harkaa bitaa gara gubbaa man'ee ka'aa hiraa.</ahelp>"
-
-#: 07080000.xhp
-msgctxt ""
-"07080000.xhp\n"
-"par_id3154910\n"
-"3\n"
-"help.text"
-msgid "You can also use the mouse to split the window horizontally or vertically. To do this, drag the thick black line located directly above the vertical scrollbar or directly to the right of the horizontal scrollbar into the window. A thick black line will show where the window is split."
-msgstr "Foddaa sardalaan ykn sarjinaan addabaasuuf Hantuutee fayyadamuu dandeessa.Kana dalaguuf,sarara furdaa gurraacha kan qixaan kabala maraa sarjinaa olitti argamuu ykn qixaa mirgaa kabala maraa sardinaala gara foddaati harkisi.Sararri furdaa gurraachii bakka foddaan itti addaba'uu mul'isa."
-
-#: 07080000.xhp
-msgctxt ""
-"07080000.xhp\n"
-"par_id3149263\n"
-"4\n"
-"help.text"
-msgid "A split window has its own scrollbars in each partial section; by contrast, <link href=\"text/scalc/01/07090000.xhp\" name=\"fixed window sections\">fixed window sections</link> are not scrollable."
-msgstr "Tokko tokkoon walakkaa kutaa keessatti foddaan addabaasa kabala maraa mataasa qaba;Addaadoodhaan,, <link href=\"text/scalc/01/07090000.xhp\" name=\"fixed window sections\">kutaalee foddaa murta'aa</link> hin marfaman."
-
-#: 12080500.xhp
+#: 04060103.xhp
msgctxt ""
-"12080500.xhp\n"
+"04060103.xhp\n"
"tit\n"
"help.text"
-msgid "AutoOutline"
-msgstr "TooriiUfmaa"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"hd_id3150275\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12080500.xhp\" name=\"AutoOutline\">AutoOutline</link>"
-msgstr "<link href=\"text/scalc/01/12080500.xhp\" name=\"AutoOutline\">TooriiUfmaa</link>"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3145069\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:AutoOutline\">If the selected cell range contains formulas or references, $[officename] automatically outlines the selection.</ahelp>"
-msgstr "<ahelp hid=\".uno:AutoOutline\">Yoo hammangan man'eewwan filatamee formulaawwan ykn wabiiwwan qabaate, $[officename]n filatamoowwan ofumaan tooressa.</ahelp>"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3148798\n"
-"10\n"
-"help.text"
-msgid "For example, consider the following table:"
-msgstr "Fakkenyaaf, gabatee armaan gadii hubadhu:"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3154123\n"
-"11\n"
-"help.text"
-msgid "January"
-msgstr "Amajjii"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3154011\n"
-"12\n"
-"help.text"
-msgid "February"
-msgstr "Guraandhala"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3152460\n"
-"13\n"
-"help.text"
-msgid "March"
-msgstr "Bitootessa"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3146119\n"
-"14\n"
-"help.text"
-msgid "1st Quarter"
-msgstr "Nuusa 1ffaa"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3155854\n"
-"15\n"
-"help.text"
-msgid "April"
-msgstr "Eebla"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3148575\n"
-"16\n"
-"help.text"
-msgid "May"
-msgstr "Caamsaa"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3145271\n"
-"17\n"
-"help.text"
-msgid "June"
-msgstr "waxabajjii"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3145648\n"
-"18\n"
-"help.text"
-msgid "2nd Quarter"
-msgstr "Nuusa 1ffaa"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3153876\n"
-"19\n"
-"help.text"
-msgid "100"
-msgstr "100"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3145251\n"
-"20\n"
-"help.text"
-msgid "120"
-msgstr "120"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3149400\n"
-"21\n"
-"help.text"
-msgid "130"
-msgstr "130"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3150328\n"
-"22\n"
-"help.text"
-msgid "350"
-msgstr "350"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3155443\n"
-"23\n"
-"help.text"
-msgid "100"
-msgstr "100"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3153713\n"
-"24\n"
-"help.text"
-msgid "100"
-msgstr "100"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3156385\n"
-"25\n"
-"help.text"
-msgid "200"
-msgstr "200"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3145230\n"
-"26\n"
-"help.text"
-msgid "400"
-msgstr "400"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3147363\n"
-"27\n"
-"help.text"
-msgid "The cells for the 1st and 2nd quarters each contain a sum formula for the three cells to their left. If you apply the <emph>AutoOutline</emph> command, the table is grouped into two quarters."
-msgstr "Man'eewwan nuusa tokkoffaa fi lammaffaa tokkoon tokkoo isaanii formulaa ida'ama man'eewwan sadii gara harka bitaa isaaniitti argamuu qabu.Yoo ajaja <emph>TooriiOfuman</emph> fayyadamte,gabateen nuusawwan lamatti gurmaa'a."
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3146918\n"
-"9\n"
-"help.text"
-msgid "To remove the outline, select the table, and then choose <link href=\"text/scalc/01/12080600.xhp\" name=\"Data - Group and Outline - Remove\">Data - Group and Outline - Remove</link>."
-msgstr "Toorii haquuf, gabatee fili,sana booda kanneen fili<link href=\"text/scalc/01/12080600.xhp\" name=\"Data - Group and Outline - Remove\">Deetaa - Gurmii fi Toorii - haqi</link>."
+msgid "Financial Functions Part One"
+msgstr "Galii faankishiniin qaama tokko"
-#: 05120000.xhp
+#: 04060103.xhp
msgctxt ""
-"05120000.xhp\n"
-"tit\n"
+"04060103.xhp\n"
+"bm_id3143284\n"
"help.text"
-msgid "Conditional Formatting"
-msgstr "Dhangeessa Otoola"
+msgid "<bookmark_value>financial functions</bookmark_value> <bookmark_value>functions; financial functions</bookmark_value> <bookmark_value>Function Wizard; financial</bookmark_value> <bookmark_value>amortizations, see also depreciations</bookmark_value>"
+msgstr "<bookmark_value>galii faankishinootaa</bookmark_value> <bookmark_value>faankishinootaa; galii faankishinootaa</bookmark_value> <bookmark_value>Faankishii masakaa; galii</bookmark_value> <bookmark_value>amortizeetinii, dipireeshii ilaali</bookmark_value>"
-#: 05120000.xhp
+#: 04060103.xhp
msgctxt ""
-"05120000.xhp\n"
-"hd_id3155132\n"
+"04060103.xhp\n"
+"hd_id3143284\n"
"1\n"
"help.text"
-msgid "Conditional Formatting"
-msgstr "Dhangeessa Otoola"
+msgid "Financial Functions Part One"
+msgstr "Galii faankishiniin qaama tokko"
-#: 05120000.xhp
+#: 04060103.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3163710\n"
+"04060103.xhp\n"
+"par_id3149095\n"
"2\n"
"help.text"
-msgid "<variable id=\"bedingtetext\"><ahelp hid=\".uno:ConditionalFormatDialog\">Choose <emph>Conditional Formatting</emph> to define format styles depending on certain conditions.</ahelp></variable> If a style was already assigned to a cell, it remains unchanged. The style entered here is then evaluated. You can enter three conditions that query the contents of cell values or formulas. The conditions are evaluated from 1 to 3. If the condition 1 matches the condition, the defined style will be used. Otherwise, condition 2 is evaluated, and its defined style used. If this style does not match, condition 3 is evaluated."
-msgstr "<variable id=\"bedingtetext\"><ahelp hid=\".uno:ConditionalFormatDialog\">Otoolee murta'an irrati hunda'udhaan <emph>Dhangeessa Otoola</emph> fili.</ahelp></variable> yoo akkaataan man'eedhaaf hundeefame, akkuma dura osoo hin jijjiramin ta'a. Akkaataan asiti galchamee itti aansun ni qormatama,. Otoolee sadii kan gatiiwwan man'ee ykn foormuulawwan gafata qabeentoota galchuu dandeessa. Otoolee 1 hanga 3tti ni qormaatama. Yoo otoola 1ffaan otoolatti firoomee, akkaataan hikakkamee fayyadamamee jira. Garaa biraatin, otooli 2ffaan ni qormaatama, akkasumas akkaataan isaa hikkamee fayyadamamee jira. Yoo akkaataan kun hin firoomnee, otooli 3ffaan ni qormaatama."
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id2414014\n"
-"help.text"
-msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose Tools - Cell Contents - AutoCalculate (you see a check mark next to the command when AutoCalculate is enabled)."
-msgstr "Otoola dhangeessuu fayyadamuuf,Ofiinshallagiin kakafamuu qaba. Meeshaalee-qabeentota man'ee-Ofiinshallagii fili.(Yommuu ofiin shallagiin kakaafamee ajejjatti aansuun malkata mirkannefame ilaalta)"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"bm_id3153189\n"
-"help.text"
-msgid "<bookmark_value>conditional formatting; conditions</bookmark_value>"
-msgstr "<bookmark_value>dhangeessuu otoola; otoolalee</bookmark_value>"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"hd_id3153189\n"
-"18\n"
-"help.text"
-msgid "Condition 1/2/3"
-msgstr "Otoola 1/2/3"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id3149413\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONDFORMAT:CBX_COND3\">Mark the boxes corresponding to each condition and enter the corresponding condition.</ahelp> To close the dialog, click <emph>OK</emph>."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONDFORMAT:CBX_COND3\">Tokkoon tokkoo sanduuqawwan otoolatiif malkata kennuun tokkoon tokkoo otoola galdhii.</ahelp> Qaqaa cufuf, <emph>EEYYE</emph>cuqaasi."
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"hd_id3147394\n"
-"5\n"
-"help.text"
-msgid "Cell Value / Formula"
-msgstr "Foormulaa/ Gatii Man,ee"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id3155602\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_1\">Specifies if conditional formatting is dependent on a cell value or a formula.</ahelp> If you select a formula as a reference, the <emph>Cell Value Condition</emph> box is displayed to the right of the <emph>Cell value/Formula</emph> field. If the condition is \"Formula is\", enter a cell reference. If the cell reference is a value other than zero, the condition matches."
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_1\">Yoo dhangeessuun otoola gatii man'ee ykn foormulaa irratti hunda'a ta'ee ifteessi.</ahelp> Yoo foormulaa akka wabiitti filtee, Otooli Gatii Man'ee <emph>sanduuqnii</emph> gara mirgaa dirree<emph>Foormulaa/ Gatii Man'ee</emph> mul'ata. Yoo otooli \"Foormula dha\" ta'e, man'ee akka wabiitti galchi. Yoo gatiin wabii man'ee zeeroodha alaa ta'ee, otooli ni firooma."
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"hd_id3153709\n"
-"7\n"
-"help.text"
-msgid "Cell Value Condition"
-msgstr "Otoola Gatii Man'ee"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id3153764\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_2\">Choose a condition for the format to be applied to the selected cells.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_2\">Dhangii man'eewwan filameef fayyadamuuf otoola fili.</ahelp>"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"hd_id3156384\n"
-"9\n"
-"help.text"
-msgid "Cell Style"
-msgstr "Haalataa Man'ee"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id3145228\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_TEMPLATE\">Choose the style to be applied if the specified condition matches.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_TEMPLATE\">Yoo otooli iftoome firoome akkaataa fayyadamamuu fili.</ahelp>"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"hd_id0509200913175331\n"
-"help.text"
-msgid "New Style"
-msgstr "Haalata Haaraa"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id0509200913175368\n"
-"help.text"
-msgid "<ahelp hid=\".\">If you haven't already defined a style to be used, you can click New Style to open the Organizer tab page of the Cell Style dialog. Define a new style there and click OK.</ahelp>"
-msgstr "<ahelp hid=\".\">Haalata fayyadamtu yoo hin qinddeessine ta'e, caanacala fuula qindeessaa mandhee qaaqa haalataa banuuf haalata haaraa cuqaasi. Haalata haaraa bakka kanatti qindeessi itti aansuun TOLEE cuqaasi.</ahelp>"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"hd_id3146316\n"
-"11\n"
-"help.text"
-msgid "Parameter field"
-msgstr "Dirree Ulaagaa"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id3155114\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONDFORMAT:EDT_COND3_2\" visibility=\"hidden\">Enter a reference, value or formula.</ahelp> Enter a reference, value or formula in the parameter field, or in both parameter fields if you have selected a condition that requires two parameters. You can also enter formulas containing relative references."
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONDFORMAT:EDT_COND3_2\" visibility=\"hidden\">gatii ykn foormulaa, Wabii galchii.</ahelp> Gatii ykn foormulaa keessaatti dirree ulaagaa, wabii galchi, ykn dirreewwan ulaagaa lamaan keessaatti yoo otooli filatamee ulaagaalee lama barbaadee. Akkaasumas foormulaawwan ulaagaa lama qaban filu dandeessa."
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id3145257\n"
-"13\n"
-"help.text"
-msgid "Once the parameters have been defined, the condition is complete. It may appear as:"
-msgstr "Al tokkoo yoo ulaagaaleen hikkamee, otooli ni xumurama. Innis akkanatti mul'achuu danda'a:"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id3150784\n"
-"14\n"
-"help.text"
-msgid "Cell value is equal 0: Cell style Null value (You must have already defined a cell style with this name before assigning it to a condition)."
-msgstr "Gatiin man'ee 0 dha: .Gatii duwwaa akkaataa man'ee (Akkaataan man'ee maqaa kana waliin osoo hin hundeesin hikuu qabda)"
+msgid "<variable id=\"finanztext\">This category contains the mathematical finance functions of <item type=\"productname\">%PRODUCTNAME</item> Calc. </variable>"
+msgstr "<variable id=\"finanztext\">Toorri kun galii faankishinii herreegaa<item type=\"productname\">%PRODUCTNAME</item> Calc. </variable>of keessaa qaba."
-#: 05120000.xhp
+#: 04060103.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3150365\n"
-"15\n"
+"04060103.xhp\n"
+"bm_id3153366\n"
"help.text"
-msgid "Cell value is between $B$20 and $B$21: Cell style Result (The corresponding value limits must already exist in cells B20 and B21)."
-msgstr "Gatiin man'ee $B$20 fi $B$21 jidduu dha: Gatii akkaataa Kenna(Gatiin itti aanuu man'ee B20 fi B21 kan durumaan jiraniin murtaa'a)"
+msgid "<bookmark_value>AMORDEGRC function</bookmark_value> <bookmark_value>depreciations;degressive amortizations</bookmark_value>"
+msgstr "<bookmark_value>faankishinii AMORDEGRC</bookmark_value> <bookmark_value>dippirisheeshinii;appoortayizeeshinii degreesivii</bookmark_value>"
-#: 05120000.xhp
+#: 04060103.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3152992\n"
-"16\n"
+"04060103.xhp\n"
+"hd_id3153366\n"
+"359\n"
"help.text"
-msgid "Formula is SUM($A$1:$A$5)=10: Cell style Result (The selected cells are formatted with the Result style if the sum of the contents in cells A1 to A5 is equal to 10)."
-msgstr "Foormulaan SUM($A$1:$A$5)=10 dha: Gatii akkaataa Kenna(Yoo ida'amni qabeentota man'eewwan A1 fi A5 walqixa 10 ta'e man'eewwan filataman ni dhanga'amu )"
+msgid "AMORDEGRC"
+msgstr "AMORDEGRC"
-#: 05120000.xhp
+#: 04060103.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_idN107E1\n"
+"04060103.xhp\n"
+"par_id3147434\n"
+"360\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/guide/cellstyle_conditional.xhp#cellstyle_conditional\"/>"
-msgstr "<embedvar href=\"text/scalc/guide/cellstyle_conditional.xhp#cellstyle_conditional\"/>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_AMORDEGRC\">Calculates the amount of depreciation for a settlement period as degressive amortization.</ahelp> Unlike AMORLINC, a depreciation coefficient that is independent of the depreciable life is used here."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_AMORDEGRC\">Yeroodhaaf depireeshinii akka appoortayizeeshinii degreesiviitti shallagi.</ahelp> AMORLINC malee, coffishantiin dipreeshinii asitti fayyada."
-#: 12080200.xhp
+#: 04060103.xhp
msgctxt ""
-"12080200.xhp\n"
-"tit\n"
+"04060103.xhp\n"
+"hd_id3155855\n"
+"361\n"
"help.text"
-msgid "Show Details"
-msgstr "Baldhintaa agarsiisi"
+msgid "Syntax"
+msgstr "Caasima"
-#: 12080200.xhp
+#: 04060103.xhp
msgctxt ""
-"12080200.xhp\n"
-"bm_id3153561\n"
+"04060103.xhp\n"
+"par_id3147427\n"
+"362\n"
"help.text"
-msgid "<bookmark_value>tables; showing details</bookmark_value>"
-msgstr "<bookmark_value>gabatee; baldhintaa agarsiisa</bookmark_value>"
+msgid "AMORDEGRC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
+msgstr "AMORDEGRC(gatii; guyyaa gurgurame;yeroo duraa; kan balaarraa hafe; yeroo;maakkii;Bu'uura)"
-#: 12080200.xhp
+#: 04060103.xhp
msgctxt ""
-"12080200.xhp\n"
-"hd_id3153561\n"
-"1\n"
+"04060103.xhp\n"
+"par_id3147125\n"
+"363\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\">Show Details</link>"
-msgstr "<link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\">Baldhintaa agarsiisa</link>"
+msgid "<emph>Cost</emph> is the acquisition costs."
+msgstr "<emph>Gatiin</emph> argamsa gatiiti."
-#: 12080200.xhp
+#: 04060103.xhp
msgctxt ""
-"12080200.xhp\n"
-"par_id3153822\n"
-"2\n"
+"04060103.xhp\n"
+"par_id3151074\n"
+"364\n"
"help.text"
-msgid "<ahelp hid=\".uno:ShowDetail\">Shows the details of the grouped row or column that contains the cursor. To show the details of all of the grouped rows or columns, select the outlined table, and then choose this command.</ahelp>"
-msgstr "<ahelp hid=\".uno:ShowDetail\">Baldhiintaa tarree gurmaa'ee ykn tarjaa qaree qabuu agarsiisa.Tarreewwan ykn tarjaawwan gurmaa'an hunda agarsiisuuf, gabatee toora'e fili,sana booda ajaja kana fili.</ahelp>"
+msgid "<emph>DatePurchased</emph> is the date of acquisition."
+msgstr "<emph>Guyyaan gurgurtaa </emph> guyyaa barbaadamuudha."
-#: 12080200.xhp
+#: 04060103.xhp
msgctxt ""
-"12080200.xhp\n"
-"par_id3155922\n"
-"3\n"
+"04060103.xhp\n"
+"par_id3144765\n"
+"365\n"
"help.text"
-msgid "To hide a selected group, choose <emph>Data -Outline – </emph><link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\"><emph>Hide Details</emph></link>."
-msgstr "Gareewwan filataman hunda agrsiisuuf, <emph>Deetaa - Toorii - </emph><link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\"><emph>Baldhintaa agarsiisi</emph></link> fili."
+msgid "<emph>FirstPeriod </emph>is the end date of the first settlement period."
+msgstr "<emph>Yeroon duraa </emph>dhuma guyyaa yeroo duraatti."
-#: 12080200.xhp
-#, fuzzy
+#: 04060103.xhp
msgctxt ""
-"12080200.xhp\n"
-"par_id6036561\n"
+"04060103.xhp\n"
+"par_id3156286\n"
+"366\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080700.xhp\">Show Details command in pivot tables</link>"
-msgstr "<link href=\"text/scalc/01/12080700.xhp\">Gabateewwan GabateeQinxaa keessatti iftoomina ajajaa agarsiisi</link>"
+msgid "<emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
+msgstr "<emph>Kan balaarraa hafe</emph> gatii kaapitaalaa isa balaarraa hafee ta'a."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"tit\n"
+"04060103.xhp\n"
+"par_id3153415\n"
+"367\n"
"help.text"
-msgid "Statistical Functions Part Three"
-msgstr "Fankishinoota Istaatistiksii Kutaa Sadi"
+msgid "<emph>Period</emph> is the settlement period to be considered."
+msgstr "<emph>Yeroon</emph> kuusama yeroo ti."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3166425\n"
-"1\n"
+"04060103.xhp\n"
+"par_id3155064\n"
+"368\n"
"help.text"
-msgid "<variable id=\"kl\"><link href=\"text/scalc/01/04060183.xhp\" name=\"Statistical Functions Part Three\">Statistical Functions Part Three</link></variable>"
-msgstr "<variable id=\"kl\"><link href=\"text/scalc/01/04060183.xhp\" name=\"Statistical Functions Part Three\">Fankishinoota Istaatistiksii Kutaa Sadi </link></variable>"
+msgid "<emph>Rate</emph> is the rate of depreciation."
+msgstr "<emph>Maakkiin</emph> dipireeshinii maakiti."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"bm_id3149530\n"
+"04060103.xhp\n"
+"bm_id3153765\n"
"help.text"
-msgid "<bookmark_value>LARGE function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii LARGE</bookmark_value>"
+msgid "<bookmark_value>AMORLINC function</bookmark_value> <bookmark_value>depreciations;linear amortizations</bookmark_value>"
+msgstr "<bookmark_value>Faankishiniin AMORLINC</bookmark_value> <bookmark_value>diprisheeshiins;appoortayizeeshinii sirrii </bookmark_value>"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3149530\n"
-"2\n"
+"04060103.xhp\n"
+"hd_id3153765\n"
+"369\n"
"help.text"
-msgid "LARGE"
-msgstr "LARGE"
+msgid "AMORLINC"
+msgstr "AMORLINC"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3150518\n"
-"3\n"
+"04060103.xhp\n"
+"par_id3159264\n"
+"370\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KGROESSTE\">Returns the Rank_c-th largest value in a data set.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KGROESSTE\">Sadarka_c gatii guddaa tuuta deetaa keessaa kenna.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_AMORLINC\">Calculates the amount of depreciation for a settlement period as linear amortization. If the capital asset is purchased during the settlement period, the proportional amount of depreciation is considered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_AMORLINC\">Hamma dipireeshinii kuusama yerootiif akka ammoortizeeshiniitti shallaga.Yoo caapitaalli yeroo kuufamaatti bitame,hangi prooporshinii dipirisheeshinii ilaalcha keessa gala.</ahelp>"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3152990\n"
-"4\n"
+"04060103.xhp\n"
+"hd_id3150044\n"
+"371\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3154372\n"
-"5\n"
-"help.text"
-msgid "LARGE(Data; RankC)"
-msgstr "LARGE(Deetaa; SadarkaaC)"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3152986\n"
-"6\n"
-"help.text"
-msgid "<emph>Data</emph> is the cell range of data."
-msgstr "<emph>Deetaa</emph>n hangii man'ee deetaati."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3156448\n"
-"7\n"
-"help.text"
-msgid "<emph>RankC</emph> is the ranking of the value."
-msgstr "<emph>SadarkaaC</emph> gatii sadarkaa qabsiisuu dha."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3152889\n"
-"8\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3148702\n"
-"9\n"
-"help.text"
-msgid "<item type=\"input\">=LARGE(A1:C50;2)</item> gives the second largest value in A1:C50."
-msgstr "<item type=\"input\">=LARGE(A1:C50;2)</item> gatii guddaa lammaffaa A1:C50 keessaa kanna."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"bm_id3154532\n"
-"help.text"
-msgid "<bookmark_value>SMALL function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii SMALL</bookmark_value>"
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3154532\n"
-"11\n"
+"04060103.xhp\n"
+"par_id3147363\n"
+"372\n"
"help.text"
-msgid "SMALL"
-msgstr "SMALL"
+msgid "AMORLINC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
+msgstr "AMORDEGRC(gatii; guyyaa gurgurame;yeroo duraa; kan balaarraa hafe; yeroo;maakkii;Bu'uura)"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3157981\n"
-"12\n"
+"04060103.xhp\n"
+"par_id3146920\n"
+"373\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KKLEINSTE\">Returns the Rank_c-th smallest value in a data set.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KKLEINSTE\">Tuuta deetaa keessaa gatii xiqqaa sadarkaa_c kenna.</ahelp>"
+msgid "<emph>Cost</emph> means the acquisition costs."
+msgstr "<emph>Gatiin</emph> argamsa gatiiti."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3154957\n"
-"13\n"
+"04060103.xhp\n"
+"par_id3163807\n"
+"374\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<emph>DatePurchased</emph> is the date of acquisition."
+msgstr "<emph>Guyyaan gurgurtaa </emph> guyyaa barbaadamuudha."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3153974\n"
-"14\n"
+"04060103.xhp\n"
+"par_id3148488\n"
+"375\n"
"help.text"
-msgid "SMALL(Data; RankC)"
-msgstr "SMALL(Deetaa; SadarkaaC)"
+msgid "<emph>FirstPeriod </emph>is the end date of the first settlement period."
+msgstr "<emph>Yeroon duraa </emph>dhuma guyyaa yeroo duraatti."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3154540\n"
-"15\n"
+"04060103.xhp\n"
+"par_id3149530\n"
+"376\n"
"help.text"
-msgid "<emph>Data</emph> is the cell range of data."
-msgstr "<emph>Deetaa</emph>n hangii man'ee deetaati."
+msgid "<emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
+msgstr "<emph>Kan balaarraa hafe</emph> gatii kaapitaalaa isa balaarraa hafee ta'a."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3155094\n"
-"16\n"
+"04060103.xhp\n"
+"par_id3148633\n"
+"377\n"
"help.text"
-msgid "<emph>RankC</emph> is the rank of the value."
-msgstr "<emph>SadarkaaC</emph> sadarkaa gatiiti."
+msgid "<emph>Period</emph> is the settlement period to be considered."
+msgstr "<emph>Yeroon</emph> kuusama yeroo ti."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3153247\n"
-"17\n"
+"04060103.xhp\n"
+"par_id3150982\n"
+"378\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<emph>Rate</emph> is the rate of depreciation."
+msgstr "<emph>Maakkiin</emph> dipireeshinii maakiti."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3149897\n"
-"18\n"
+"04060103.xhp\n"
+"bm_id3145257\n"
"help.text"
-msgid "<item type=\"input\">=SMALL(A1:C50;2)</item> gives the second smallest value in A1:C50."
-msgstr "<item type=\"input\">=SMALL(A1:C50;2)</item> A1:C50 keessaa gatii xiqqaa lammaffaa kanna."
+msgid "<bookmark_value>ACCRINT function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii ACCRINT </bookmark_value>"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"bm_id3153559\n"
+"04060103.xhp\n"
+"hd_id3145257\n"
+"335\n"
"help.text"
-msgid "<bookmark_value>CONFIDENCE function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii CONFIDENCE</bookmark_value>"
+msgid "ACCRINT"
+msgstr "ACCRINT"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3153559\n"
-"20\n"
+"04060103.xhp\n"
+"bm_id3151276\n"
"help.text"
-msgid "CONFIDENCE"
-msgstr "CONFIDENCE"
+msgid "<bookmark_value>accrued interests;periodic payments</bookmark_value>"
+msgstr "<bookmark_value>Dhala akkuurdii;kaffaltii yeroo yeroon kanfalamu</bookmark_value>"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3153814\n"
-"21\n"
+"04060103.xhp\n"
+"par_id3151276\n"
+"336\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KONFIDENZ\">Returns the (1-alpha) confidence interval for a normal distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KONFIDENZ\">Raabsa baratamoodhaf intarvaalii konfidansii (l-alfaa )kenna.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ACCRINT\">Calculates the accrued interest of a security in the case of periodic payments.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ACCRINT\">Kanfaltii yeroo yeroon ta'u keessatti dhala kennaa ittisaa shallaga.</ahelp>"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3149315\n"
-"22\n"
+"04060103.xhp\n"
+"hd_id3152581\n"
+"337\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3147501\n"
-"23\n"
-"help.text"
-msgid "CONFIDENCE(Alpha; StDev; Size)"
-msgstr "CONFIDENCE(Alfaa; StDev; Hamaamtaa)"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3149872\n"
-"24\n"
-"help.text"
-msgid "<emph>Alpha</emph> is the level of the confidence interval."
-msgstr "<emph>Alfaa</emph>n sadarkaa intarvaalii konfidansiiti."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3145324\n"
-"25\n"
-"help.text"
-msgid "<emph>StDev</emph> is the standard deviation for the total population."
-msgstr "<emph>StDev</emph> istandaard diviyeeshinii ida'ama poppuleeshiniiti."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3153075\n"
-"26\n"
-"help.text"
-msgid "<emph>Size</emph> is the size of the total population."
-msgstr "<emph>Hamaamtaa</emph>n hamamtaa ida'ama populeeshiniiti."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3150435\n"
-"27\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3153335\n"
-"28\n"
-"help.text"
-msgid "<item type=\"input\">=CONFIDENCE(0.05;1.5;100)</item> gives 0.29."
-msgstr "<item type=\"input\">=CONFIDENCE(0.05;1.5;100)</item> 0.29 kenna."
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"bm_id3148746\n"
+"04060103.xhp\n"
+"par_id3159092\n"
+"338\n"
"help.text"
-msgid "<bookmark_value>CORREL function</bookmark_value><bookmark_value>coefficient of correlation</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii CORREL</bookmark_value><bookmark_value>kofishantii korrileeshinii</bookmark_value>"
+msgid "ACCRINT(Issue; FirstInterest; Settlement; Rate; Par; Frequency; Basis)"
+msgstr "ACCRINT(Kennaa; Dhala jalqabaa; Kuufama; Makkii; paarii; firkuweensiin ;Bu'uura)"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3148746\n"
-"30\n"
+"04060103.xhp\n"
+"par_id3150519\n"
+"339\n"
"help.text"
-msgid "CORREL"
-msgstr "CORREL"
+msgid "<emph>Issue</emph> is the issue date of the security."
+msgstr "<emph>Kennaan </emph> guyyaa kennaa ittisaati."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3147299\n"
-"31\n"
+"04060103.xhp\n"
+"par_id3155376\n"
+"340\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KORREL\">Returns the correlation coefficient between two data sets.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KORREL\">kofishantii korrileeshinii tuutota deetaa lama gidduu jiru kenna.</ahelp>"
+msgid "<emph>FirstInterest</emph> is the first interest date of the security."
+msgstr "<emph>Dhalli jalqabaa</emph> guyyaa dhala jalqabaa ittisaati."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3156397\n"
-"32\n"
+"04060103.xhp\n"
+"par_id3166431\n"
+"341\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<emph>Settlement</emph> is the date at which the interest accrued up until then is to be calculated."
+msgstr "<emph>Kuufamni</emph> guyyaa dhalli kennaa haga yeroo sanaatti dabalu shallaga."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3153023\n"
-"33\n"
+"04060103.xhp\n"
+"par_id3154486\n"
+"342\n"
"help.text"
-msgid "CORREL(Data1; Data2)"
-msgstr "CORREL(Deetaa1; Deetaa2)"
+msgid "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)"
+msgstr "<emph>Saffisni</emph> dhala saffisa xiqqaa waggaati (boonoo saffisa dhalaa)"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3150036\n"
-"34\n"
+"04060103.xhp\n"
+"par_id3156445\n"
+"343\n"
"help.text"
-msgid "<emph>Data1</emph> is the first data set."
-msgstr "<emph>Deetaa1</emph> tuuta deetaa jalqabaati."
+msgid "<emph>Par</emph> is the par value of the security."
+msgstr "<emph>Paarii</emph> gatii baarii ittisaati."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3153021\n"
-"35\n"
+"04060103.xhp\n"
+"par_id3149406\n"
+"344\n"
"help.text"
-msgid "<emph>Data2</emph> is the second data set."
-msgstr "<emph>Deetaa2</emph> tuuta deetaa lammafaati."
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Ammamtaa</emph>n lakkoofsa kanfaltiiwwan dhalaa waggaati (1, 2 ykn 4)."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3149720\n"
-"36\n"
+"04060103.xhp\n"
+"hd_id3148699\n"
+"345\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3149941\n"
-"37\n"
-"help.text"
-msgid "<item type=\"input\">=CORREL(A1:A50;B1:B50)</item> calculates the correlation coefficient as a measure of the linear correlation of the two data sets."
-msgstr "<item type=\"input\">=CORREL(A1:A50;B1:B50)</item> kofishantii korrileeshinii akka safara korrileeshinii kaltokkee tuutota deetaa lamaatti shallaga."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"bm_id3150652\n"
-"help.text"
-msgid "<bookmark_value>COVAR function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii COVAR</bookmark_value>"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3150652\n"
-"39\n"
-"help.text"
-msgid "COVAR"
-msgstr "COVAR"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3146875\n"
-"40\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KOVAR\">Returns the covariance of the product of paired deviations.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KOVAR\">Kovaariyansii bay'ataa diviyeeshiniiwwan walqabatan lamaa kenna.</ahelp>"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3149013\n"
-"41\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3150740\n"
-"42\n"
-"help.text"
-msgid "COVAR(Data1; Data2)"
-msgstr "COVAR(Deetaa1; Deetaa2)"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3145827\n"
-"43\n"
-"help.text"
-msgid "<emph>Data1</emph> is the first data set."
-msgstr "<emph>Deetaa1</emph> tuuta deetaa jalqabaati."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3150465\n"
-"44\n"
-"help.text"
-msgid "<emph>Data2</emph> is the second data set."
-msgstr "<emph>Deetaa2</emph> tuuta deetaa lammaffaati."
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3154677\n"
-"45\n"
+"04060103.xhp\n"
+"par_id3148599\n"
+"346\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "A security is issued on 2001-02-28. First interest is set for 2001-08-31. The settlement date is 2001-05-01. The Rate is 0.1 or 10% and Par is 1000 currency units. Interest is paid half-yearly (frequency is 2). The basis is the US method (0). How much interest has accrued?"
+msgstr "Nageenyinnaa 2001-02-28 irratti kenname. Dhalli jalqabaa 2001-08-31 tiif qindaa'a. Gyyaan buufata 2001-05-01 dha. Saffisni 0.1 ykn 10% fi Pariin safartoota sirrii 1000 dha. Dhalli walakkaa waggaatti kanfalama (ammamtaan 2). Bu'uurri mala US ti(0). Dhala hagamtu kennama?"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3144748\n"
-"46\n"
+"04060103.xhp\n"
+"par_id3148840\n"
+"347\n"
"help.text"
-msgid "<item type=\"input\">=COVAR(A1:A30;B1:B30)</item>"
-msgstr "<item type=\"input\">=COVAR(A1:A30;B1:B30)</item>"
+msgid "<item type=\"input\">=ACCRINT(\"2001-02-28\";\"2001-08-31\";\"2001-05-01\";0.1;1000;2;0)</item> returns 16.94444."
+msgstr "<item type=\"input\">=ACCRINT(\"2001-02-28\";\"2001-08-31\";\"2001-05-01\";0.1;1000;2;0)</item> 16.94444 deebisa."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"bm_id3147472\n"
+"04060103.xhp\n"
+"bm_id3151240\n"
"help.text"
-msgid "<bookmark_value>CRITBINOM function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii CRITBINOM</bookmark_value>"
+msgid "<bookmark_value>ACCRINTM function</bookmark_value> <bookmark_value>accrued interests;one-off payments</bookmark_value>"
+msgstr "<bookmark_value>Faankishiniin ACCRINTM </bookmark_value> <bookmark_value>dhala kennaa;kanfaltii tokko</bookmark_value>"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3147472\n"
-"48\n"
+"04060103.xhp\n"
+"hd_id3151240\n"
+"348\n"
"help.text"
-msgid "CRITBINOM"
-msgstr "CRITBINOM"
+msgid "ACCRINTM"
+msgstr "ACCRINT"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3149254\n"
-"49\n"
+"04060103.xhp\n"
+"par_id3157981\n"
+"349\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KRITBINOM\">Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KRITBINOM\">Gatii xiqqaa kan raabsi baynoomiyaalii dimshaashaa irra xiqqa ykn irra gudda gatii ulaagaa ta'e kenna.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ACCRINTM\">Calculates the accrued interest of a security in the case of one-off payment at the settlement date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ACCRINTM\">Kanfaltii yeroo yeroon ta'u keessatti dhala kennaa ittisaa shallaga.</ahelp>"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3153930\n"
-"50\n"
+"04060103.xhp\n"
+"hd_id3159097\n"
+"350\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3148586\n"
-"51\n"
-"help.text"
-msgid "CRITBINOM(Trials; SP; Alpha)"
-msgstr "CRITBINOM(Yaaliiwwan; SP; Alfaa)"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3145593\n"
-"52\n"
-"help.text"
-msgid "<emph>Trials</emph> is the total number of trials."
-msgstr "<emph>Yaaliiwwan</emph> ida'ama lakkoofsaa kan yaaliiwwaniiti."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3153084\n"
-"53\n"
-"help.text"
-msgid "<emph>SP</emph> is the probability of success for one trial."
-msgstr "<emph>SP</emph> yaalii tokko irratti pirobaabiliitii argachuuti."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3149726\n"
-"54\n"
-"help.text"
-msgid "<emph>Alpha</emph> is the threshold probability to be reached or exceeded."
-msgstr "<emph>Alfaa</emph>n pirobaabilitii xiqqaa dhaqqabbamuu ykn taramu."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3148752\n"
-"55\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3148740\n"
-"56\n"
-"help.text"
-msgid "<item type=\"input\">=CRITBINOM(100;0.5;0.1)</item> yields 44."
-msgstr "<item type=\"input\">=CRITBINOM(100;0.5;0.1)</item> 44 kenna."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"bm_id3155956\n"
-"help.text"
-msgid "<bookmark_value>KURT function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii KURT</bookmark_value>"
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3155956\n"
-"58\n"
+"04060103.xhp\n"
+"par_id3147074\n"
+"351\n"
"help.text"
-msgid "KURT"
-msgstr "KURT"
+msgid "ACCRINTM(Issue; Settlement; Rate; Par; Basis)"
+msgstr "ACCRINTM(Kennaa;Kuufama;Makkii;Paarii;Bu'uura)"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3153108\n"
-"59\n"
+"04060103.xhp\n"
+"par_id3144773\n"
+"352\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KURT\">Returns the kurtosis of a data set (at least 4 values required).</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KURT\">Kurtoosisii tuuta deetaa kenna (yoo xiqqaate gatiiwwan 4 barbaachisa).</ahelp>"
+msgid "<emph>Issue</emph> is the issue date of the security."
+msgstr "<emph>Kennaan </emph> guyyaa kennaa ittisaati."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3150334\n"
-"60\n"
+"04060103.xhp\n"
+"par_id3154956\n"
+"353\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<emph>Settlement</emph> is the date at which the interest accrued up until then is to be calculated."
+msgstr "<emph>Kuufamni</emph> guyyaa dhalli kennaa haga yeroo sanaatti dabalu shallaga."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3154508\n"
-"61\n"
+"04060103.xhp\n"
+"par_id3153972\n"
+"354\n"
"help.text"
-msgid "KURT(Number1; Number2; ...Number30)"
-msgstr "KURT(Lakkofsa1; Lakkoofsa2; ...Lakkoofsa30)"
+msgid "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)."
+msgstr "<emph>Makkiin </emph> makkii noominaala waggaa dhalaati."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3145167\n"
-"62\n"
+"04060103.xhp\n"
+"par_id3159204\n"
+"355\n"
"help.text"
-msgid "<emph>Number1,Number2,...Number30</emph> are numeric arguments or ranges representing a random sample of distribution."
-msgstr "<emph>Lakkofsa1; Lakkoofsa2; ...Lakkoofsa30</emph> qajeelfama lakkoofsati ykn hangiiwwan eddattoo tasaa raabsaa kan bakka bu'uu dha."
+msgid "<emph>Par</emph> is the par value of the security."
+msgstr "<emph>Paarii</emph> gatii baarii ittisaati."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3158000\n"
-"63\n"
+"04060103.xhp\n"
+"hd_id3155384\n"
+"356\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3150016\n"
-"64\n"
-"help.text"
-msgid "<item type=\"input\">=KURT(A1;A2;A3;A4;A5;A6)</item>"
-msgstr "<item type=\"input\">=KURT(A1;A2;A3;A4;A5;A6)</item>"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"bm_id3150928\n"
-"help.text"
-msgid "<bookmark_value>LOGINV function</bookmark_value><bookmark_value>inverse of lognormal distribution</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii LOGINV</bookmark_value><bookmark_value>garagaltoo raabsa lognormaaliiti</bookmark_value>"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3150928\n"
-"66\n"
-"help.text"
-msgid "LOGINV"
-msgstr "LOGINV"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3145297\n"
-"67\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_LOGINV\">Returns the inverse of the lognormal distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_LOGINV\">garagaltoo raabsa lognormaalii kenna.</ahelp>"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3151016\n"
-"68\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3153049\n"
-"69\n"
-"help.text"
-msgid "LOGINV(Number; Mean; StDev)"
-msgstr "LOGINV(Lakkofsa; Miinii; StDev)"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3148390\n"
-"70\n"
-"help.text"
-msgid "<emph>Number</emph> is the probability value for which the inverse standard logarithmic distribution is to be calculated."
-msgstr "<emph>Lakkoofsi</emph> gatii pirobaabiliitii kan gargaltoon raabsa logarizimii baratamoo shallagamuufii dha."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3149538\n"
-"71\n"
-"help.text"
-msgid "<emph>Mean</emph> is the arithmetic mean of the standard logarithmic distribution."
-msgstr "<emph>Miinii</emph>n miinii artimeetikii kan raabsa logaarizimii baratamooti."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3145355\n"
-"72\n"
-"help.text"
-msgid "<emph>StDev</emph> is the standard deviation of the standard logarithmic distribution."
-msgstr "<emph>StDev</emph> diviyeeshinii baratamoo kan raabsa logarzimii baratamooti."
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3148768\n"
-"73\n"
+"04060103.xhp\n"
+"par_id3154541\n"
+"357\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "A security is issued on 2001-04-01. The maturity date is set for 2001-06-15. The Rate is 0.1 or 10% and Par is 1000 currency units. The basis of the daily/annual calculation is the daily balance (3). How much interest has accrued?"
+msgstr "Ittisni 2001-04-01 irratti kenname. Guyyaan bilchinaa 2001-06-15 tiif qindaa'a. Saffisni 0.1 ykn 10% fi Paariin safartoota sirrii 1000 dha. Shallaggiin bu'uura guyyaa/waggaa baalaansii guyyaa (3) ta'a. Dhala hagamiitu argame?"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3155623\n"
-"74\n"
+"04060103.xhp\n"
+"par_id3149128\n"
+"358\n"
"help.text"
-msgid "<item type=\"input\">=LOGINV(0.05;0;1)</item> returns 0.19."
-msgstr "<item type=\"input\">=LOGINV(0.05;0;1)</item> 0.19 kenna."
+msgid "<item type=\"input\">=ACCRINTM(\"2001-04-01\";\"2001-06-15\";0.1;1000;3)</item> returns 20.54795."
+msgstr "<item type=\"input\">=ACCRINTM(\"2001-04-01\";\"2001-06-15\";0.1;1000;3)</item> 20.54795 deebisa."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"bm_id3158417\n"
+"04060103.xhp\n"
+"bm_id3145753\n"
"help.text"
-msgid "<bookmark_value>LOGNORMDIST function</bookmark_value><bookmark_value>cumulative lognormal distribution</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii LOGNORMDIST</bookmark_value><bookmark_value>raabsa lognormaalii dimshaashaati</bookmark_value>"
+msgid "<bookmark_value>RECEIVED function</bookmark_value> <bookmark_value>amount received for fixed-interest securities</bookmark_value>"
+msgstr "<bookmark_value>faankishinii RECEIVED</bookmark_value> <bookmark_value>hanga ittisa dhala dhaabataa fudhatameeti</bookmark_value>"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3158417\n"
-"76\n"
+"04060103.xhp\n"
+"hd_id3145753\n"
+"390\n"
"help.text"
-msgid "LOGNORMDIST"
-msgstr "LOGNORMDIST"
+msgid "RECEIVED"
+msgstr "Fudhatame"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3154953\n"
-"77\n"
+"04060103.xhp\n"
+"par_id3150051\n"
+"391\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">Returns the cumulative lognormal distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">raabsa lognormaalii dimshaashaa kenna.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_RECEIVED\">Calculates the amount received that is paid for a fixed-interest security at a given point in time.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_RECEIVED\">Hanga fudhatame kan dhala dhaabataa tiif kanfalame pooyintii kenname irratti shallaga.</ahelp>"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3150474\n"
-"78\n"
+"04060103.xhp\n"
+"hd_id3149385\n"
+"392\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3150686\n"
-"79\n"
+"04060103.xhp\n"
+"par_id3145362\n"
+"393\n"
"help.text"
-msgid "LOGNORMDIST(Number; Mean; StDev; Cumulative)"
-msgstr "LOGNORMDIST(Lakkofsa; Miinii; StDev; Dimshaasha)"
+msgid "RECEIVED(\"Settlement\"; \"Maturity\"; Investment; Discount; Basis)"
+msgstr "RECEIVED(\"Kuufama\"; \"Bilchina\";Inveestimentii; Gatii hir'ate;Bu'uura)"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3154871\n"
-"80\n"
+"04060103.xhp\n"
+"par_id3154654\n"
+"394\n"
"help.text"
-msgid "<emph>Number</emph> is the probability value for which the standard logarithmic distribution is to be calculated."
-msgstr "<emph>Lakkoofsi</emph> gatii pirobaabiliitii kan raabsi logarizimii waltawaa shallagamuufii dha."
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3155820\n"
-"81\n"
+"04060103.xhp\n"
+"par_id3153011\n"
+"395\n"
"help.text"
-msgid "<emph>Mean</emph> (optional) is the mean value of the standard logarithmic distribution."
-msgstr "<emph>Miinii</emph>n (dirqalee) gatii miinii kan raabsa logaarizimii walawaati."
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3155991\n"
-"82\n"
+"04060103.xhp\n"
+"par_id3155525\n"
+"396\n"
"help.text"
-msgid "<emph>StDev</emph> (optional) is the standard deviation of the standard logarithmic distribution."
-msgstr "<emph>StDev</emph> (dirqalee) diviyeeshinii waltawaa kan raabsa logarizimii walawaati."
+msgid "<emph>Investment</emph> is the purchase sum."
+msgstr "<emph>Inveestimeentiin </emph> ida'a bittaati."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3155992\n"
+"04060103.xhp\n"
+"par_id3155760\n"
+"397\n"
"help.text"
-msgid "<emph>Cumulative</emph> (optional) = 0 calculates the density function, Cumulative = 1 calculates the distribution."
-msgstr "<emph>Walittiqaba</emph> (optional) = 0 faankishinii rukinaa herrega, Walitti qaba = 1 tamsaasa herrega."
+msgid "<emph>Discount</emph> is the percentage discount on acquisition of the security."
+msgstr "<emph>Hir'ina Gatii</emph> dhibbentaa hir'ina gatii kan ittisaati."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3153178\n"
-"83\n"
+"04060103.xhp\n"
+"hd_id3154710\n"
+"398\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3149778\n"
-"84\n"
-"help.text"
-msgid "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> returns 0.01."
-msgstr "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> 0.01 kenna."
-
-#: 04070000.xhp
-msgctxt ""
-"04070000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Names"
-msgstr "Maqoota"
-
-#: 04070000.xhp
-msgctxt ""
-"04070000.xhp\n"
-"hd_id3153951\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
-msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Maqoota</link>"
-
-#: 04070000.xhp
-msgctxt ""
-"04070000.xhp\n"
-"par_id3145801\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Allows you to name the different sections of your spreadsheet document.</ahelp> By naming the different sections, you can easily <link href=\"text/scalc/01/02110000.xhp\" name=\"navigate\">navigate</link> through the spreadsheet documents and find specific information."
-msgstr "<ahelp hid=\".\">Kutaa adda addaa galmee wardiikeef maqaa akka moggaastuu sif heeyyama.</ahelp> Kutaalee adda adda maqaa moggaasuun, haaala salphaan karaa galmeewwan wardii fi odeeffanno murta'aa barbaadi jedhu <link href=\"text/scalc/01/02110000.xhp\" name=\"navigate\">naanneessuu</link> dandeessa."
-
-#: 04070000.xhp
-msgctxt ""
-"04070000.xhp\n"
-"hd_id3153878\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Define\">Define</link>"
-msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Define\">Hiiki</link>"
-
-#: 04070000.xhp
-msgctxt ""
-"04070000.xhp\n"
-"hd_id3146969\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04070200.xhp\" name=\"Insert\">Insert</link>"
-msgstr "<link href=\"text/scalc/01/04070200.xhp\" name=\"Insert\">saagi</link>"
-
-#: 04070000.xhp
-msgctxt ""
-"04070000.xhp\n"
-"hd_id3155764\n"
-"5\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04070300.xhp\" name=\"Apply\">Apply</link>"
-msgstr "<link href=\"text/scalc/01/04070300.xhp\" name=\"Apply\">Fayyadami</link>"
-
-#: 04070000.xhp
-msgctxt ""
-"04070000.xhp\n"
-"hd_id3156382\n"
-"6\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04070400.xhp\" name=\"Labels\">Labels</link>"
-msgstr "<link href=\"text/scalc/01/04070400.xhp\" name=\"Labels\">Moggaasa</link>"
-
-#: 05050300.xhp
+#: 04060103.xhp
msgctxt ""
-"05050300.xhp\n"
-"tit\n"
+"04060103.xhp\n"
+"par_id3154735\n"
+"399\n"
"help.text"
-msgid "Show Sheet"
-msgstr "Wardii Agarsiisi"
+msgid "Settlement date: February 15 1999, maturity date: May 15 1999, investment sum: 1000 currency units, discount: 5.75 per cent, basis: Daily balance/360 = 2."
+msgstr "Guyyaa kuufamaa:Amajjii 15 1999, guyyaa bilchinaa:Caamsaa 15 1999,ada'ama inveestimentii: 1000 yuunitii maallaqaa, hir'ina gatii: 5.75 per saantima, bu'uura: Baalaansii guyyaa guyyaan/360 = 2."
-#: 05050300.xhp
+#: 04060103.xhp
msgctxt ""
-"05050300.xhp\n"
-"bm_id3148946\n"
+"04060103.xhp\n"
+"par_id3146108\n"
+"400\n"
"help.text"
-msgid "<bookmark_value>sheets; displaying</bookmark_value><bookmark_value>displaying; sheets</bookmark_value>"
-msgstr "<bookmark_value>barruuwwan; agarsiisun</bookmark_value><bookmark_value>agarsiisuun; barruuwwan</bookmark_value>"
+msgid "The amount received on the maturity date is calculated as follows:"
+msgstr "Guyyaa bilchinaa irratti hanga fudhatame akka armaan gadiitti shallagama:"
-#: 05050300.xhp
+#: 04060103.xhp
msgctxt ""
-"05050300.xhp\n"
-"hd_id3148946\n"
-"1\n"
+"04060103.xhp\n"
+"par_id3147246\n"
+"401\n"
"help.text"
-msgid "Show Sheet"
-msgstr "Wardii Agarsiisi"
+msgid "<item type=\"input\">=RECEIVED(\"1999-02-15\";\"1999-05-15\";1000;0.0575;2)</item> returns 1014.420266."
+msgstr "<item type=\"input\">=RECEIVED(\"1999-02-15\";\"1999-05-15\";1000;0.0575;2)</item> 1014.420266 deebisa."
-#: 05050300.xhp
+#: 04060103.xhp
msgctxt ""
-"05050300.xhp\n"
-"par_id3148799\n"
-"2\n"
+"04060103.xhp\n"
+"bm_id3147556\n"
"help.text"
-msgid "<variable id=\"tabeintext\"><ahelp visibility=\"visible\" hid=\".uno:Show\">Displays sheets that were previously hidden with the <emph>Hide</emph> command.</ahelp></variable> Select one sheet only to call the command. The current sheet is always selected. If a sheet other than the current sheet is selected, you can deselect it by pressing <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> while clicking the corresponding sheet tab at the bottom of the window."
-msgstr "<variable id=\"tabeintext\"><ahelp visibility=\"visible\" hid=\".uno:Show\">Barruuwwan duraa ajaja <emph>Dhoksi</emph> dhokatan agarsiisa.</ahelp></variable> Ajaja waamuuf wardii tokko qofa fili.Wardii ammee yeroo hundaa filama.yoo wardii ammeen ala filattee ta'ee,yommuu caancala wardii foddaa gadiitti argamu cuqaastu, <switchinline select=\"sys\"> <caseinline select=\"MAC\">Ajaja</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> dhiibuun filachuu gadhisisuu dandeessa."
+msgid "<bookmark_value>PV function</bookmark_value> <bookmark_value>present values</bookmark_value> <bookmark_value>calculating; present values</bookmark_value>"
+msgstr "<bookmark_value>Faankishiniin PV</bookmark_value> <bookmark_value>gatii ammee</bookmark_value> <bookmark_value>shallaguu; gatii ammee</bookmark_value>"
-#: 05050300.xhp
+#: 04060103.xhp
msgctxt ""
-"05050300.xhp\n"
-"hd_id3151112\n"
+"04060103.xhp\n"
+"hd_id3147556\n"
"3\n"
"help.text"
-msgid "Hidden sheets"
-msgstr "Wardiiwwan dhoktan"
+msgid "PV"
+msgstr "PV"
-#: 05050300.xhp
+#: 04060103.xhp
msgctxt ""
-"05050300.xhp\n"
-"par_id3145273\n"
+"04060103.xhp\n"
+"par_id3153301\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_SHOW_TAB:LB_ENTRYLIST\" visibility=\"visible\">Displays a list of all hidden sheets in your spreadsheet document.</ahelp> To show a certain sheet, click the corresponding entry on the list and confirm with OK."
-msgstr "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_SHOW_TAB:LB_ENTRYLIST\" visibility=\"visible\">Galmee wardii kee keessatti tarree wardiiwwan dhokatan hundaa agarsiisa.</ahelp> Barruu ta'ee agarsiisuuf,tarree irra galuumsa armaan gadii cuqaasun fi OK dhaan dhugoomsi."
-
-#: 06990000.xhp
-msgctxt ""
-"06990000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Cell Contents"
-msgstr "Qabeentoota Man'ee"
-
-#: 06990000.xhp
-msgctxt ""
-"06990000.xhp\n"
-"hd_id3153087\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06990000.xhp\" name=\"Cell Contents\">Cell Contents</link>"
-msgstr "<link href=\"text/scalc/01/06990000.xhp\" name=\"Cell Contents\">Qabeentoota Man'ee</link>"
-
-#: 06990000.xhp
-msgctxt ""
-"06990000.xhp\n"
-"par_id3145674\n"
-"2\n"
-"help.text"
-msgid "Opens a submenu with commands to calculate tables and activate AutoInput."
-msgstr "Baafata xiqqaa kan ajajjawwan gabateewwan shallaguuf ofiinaqaa kakaasu jedhaman bana."
-
-#: 12090100.xhp
-msgctxt ""
-"12090100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Select Source"
-msgstr "Madda Fili"
-
-#: 12090100.xhp
-msgctxt ""
-"12090100.xhp\n"
-"hd_id3153663\n"
-"1\n"
-"help.text"
-msgid "Select Source"
-msgstr "Madda Fili"
-
-#: 12090100.xhp
-#, fuzzy
-msgctxt ""
-"12090100.xhp\n"
-"par_id3145119\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:DataDataPilotRun\">Opens a dialog where you can select the source for your pivot table, and then create your table.</ahelp>"
-msgstr "<ahelp hid=\".uno:DataDataPilotRun\">Gabatee qinxaa bakkaa itti madda filtu qaaqa bana,itti aansuun gabatee kee uumi.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_BW\">Returns the present value of an investment resulting from a series of regular payments.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BW\">Gatii ammee inveestimeentii kan kanfaltii yeroo hundaa irraa argame deebisa.</ahelp>"
-#: 12090100.xhp
+#: 04060103.xhp
msgctxt ""
-"12090100.xhp\n"
-"hd_id3154760\n"
+"04060103.xhp\n"
+"par_id3146099\n"
"5\n"
"help.text"
-msgid "Selection"
-msgstr "Filannoo"
+msgid "Use this function to calculate the amount of money needed to be invested at a fixed rate today, to receive a specific amount, an annuity, over a specified number of periods. You can also determine how much money is to remain after the elapse of the period. Specify as well if the amount is to be paid out at the beginning or at the end of each period."
+msgstr "Faankishinii kana hamma qarshii makkii dhaabataa har'a inveestiidhaaf barbaashisu shallaguuf fayyadamaa,hanga murtaa'e fudhachuuf,lakkoofsa yeroo murtaa'e irratti.Yeroo muraasaan booda qarshii hanga hafe murteessuu ni dandeessu.Yoo hangi kanfalame jalqaba irratti ykn dhuma irratti adda baasa."
-#: 12090100.xhp
-#, fuzzy
+#: 04060103.xhp
msgctxt ""
-"12090100.xhp\n"
-"par_id3150543\n"
+"04060103.xhp\n"
+"par_id3153334\n"
"6\n"
"help.text"
-msgid "Select a data source for the pivot table."
-msgstr "Gabatee qinxaaf madda deetaa fili."
+msgid "Enter these values either as numbers, expressions or references. If, for example, interest is paid annually at 8%, but you want to use month as your period, enter 8%/12 under <emph>Rate</emph> and <item type=\"productname\">%PRODUCTNAME</item> Calc with automatically calculate the correct factor."
+msgstr "Gatii kana akka lakkoofsotaatti,ibsaatti ykn akka wabiitti galchaa.Yoo, fakkeenyaaf,dhalli waggaatti 8% kanfalame,garuu yoo ji'a akka yeroo keessaniitti fayyadamuu barbaaddan,8%/12 makkii jala <emph>galchuu</emph>fi<item type=\"productname\">%PRODUCTNAME</item>Calc batalumatti faaktarii sirrii shallaga."
-#: 12090100.xhp
+#: 04060103.xhp
msgctxt ""
-"12090100.xhp\n"
-"hd_id3148799\n"
+"04060103.xhp\n"
+"hd_id3147407\n"
"7\n"
"help.text"
-msgid "Current Selection"
-msgstr "Fillannoo ammee"
+msgid "Syntax"
+msgstr "Caasima"
-#: 12090100.xhp
-#, fuzzy
+#: 04060103.xhp
msgctxt ""
-"12090100.xhp\n"
-"par_id3125865\n"
+"04060103.xhp\n"
+"par_id3150395\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\".\">Uses the selected cells as the data source for the pivot table.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DAPITYPE:BTN_SELECTION\">Gabatee qinxaaf man'eewwan filamaan akka madda deetaatti fayyadama.</ahelp>"
-
-#: 12090100.xhp
-#, fuzzy
-msgctxt ""
-"12090100.xhp\n"
-"par_id3150011\n"
-"13\n"
-"help.text"
-msgid "The data columns in the pivot table use the same number format as the first data row in the current selection."
-msgstr "Fillannoo ammmee keessatti, tarjaawwan deetaa gabatee keessa akkuma tarree deetaa jalqabaa lakkoofsa dhangii wal fakkaata fayyadama."
+msgid "PV(Rate; NPer; Pmt; FV; Type)"
+msgstr "PV(Makkii; NPer; Pmt; FV; Gosa)"
-#: 12090100.xhp
+#: 04060103.xhp
msgctxt ""
-"12090100.xhp\n"
-"hd_id3147348\n"
+"04060103.xhp\n"
+"par_id3151341\n"
"9\n"
"help.text"
-msgid "Data source registered in $[officename]"
-msgstr "$[officename] madda deetaa galmaa'ee"
+msgid "<emph>Rate</emph> defines the interest rate per period."
+msgstr "<emph>Makkiin</emph> makkii dhalaa per yeroo ibsa."
-#: 12090100.xhp
-#, fuzzy
+#: 04060103.xhp
msgctxt ""
-"12090100.xhp\n"
-"par_id3145271\n"
+"04060103.xhp\n"
+"par_id3153023\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\".\">Uses a table or query in a database that is registered in $[officename] as the data source for the pivot table.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DAPITYPE:BTN_DATABASE\">Gabatee ykn gaffii kuusdeetaa $[officename] keessatti galmaa'ee akkaa madda deetaa gabatee qinxaatti fayyadama.</ahelp>"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr "<emph>NPer</emph>n lakkoofsa ida'ama yeroowwaniiti (yeroo kanfaltii)."
-#: 12090100.xhp
+#: 04060103.xhp
msgctxt ""
-"12090100.xhp\n"
-"hd_id3146119\n"
+"04060103.xhp\n"
+"par_id3146323\n"
"11\n"
"help.text"
-msgid "External source/interface"
-msgstr "Madda alaantoo/walqunnama"
+msgid "<emph>Pmt</emph> is the regular payment made per period."
+msgstr "<emph>Pmt</emph>kanfaltii yeroo hundaa yeroo tokkotti hojjatamuudha."
-#: 12090100.xhp
-#, fuzzy
+#: 04060103.xhp
msgctxt ""
-"12090100.xhp\n"
-"par_id3145647\n"
+"04060103.xhp\n"
+"par_id3150536\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <emph>External Source</emph> dialog where you can select the OLAP data source for the pivot table.</ahelp>"
-msgstr "<ahelp hid=\".uno:DiagramData\">Bani<emph> Gabatee Deetaa </emph>qaaqaq yeroo deetaa taattoo gulaalu dandeesuudha.</ahelp>"
-
-#: 12090100.xhp
-#, fuzzy
-msgctxt ""
-"12090100.xhp\n"
-"par_idN10670\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
-msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"DataPilot dialog\">Qaaqa qinxaa</link>"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"tit\n"
-"help.text"
-msgid "Pivot Table"
-msgstr "Gabatee Qiinxaa"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"bm_id2306894\n"
-"help.text"
-msgid "<bookmark_value>pivot table function;show details</bookmark_value><bookmark_value>pivot table function;drill down</bookmark_value>"
-msgstr "<bookmark_value>Fankaashinii qinxaa;Liixaa Mul'isi</bookmark_value> <bookmark_value>Fankaashinii qinxaa;gadi uraa</bookmark_value>"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3149165\n"
-"1\n"
-"help.text"
-msgid "Pivot Table"
-msgstr "Gabatee Qiinxaa"
+msgid "<emph>FV</emph> (optional) defines the future value remaining after the final installment has been made."
+msgstr "<emph>FV</emph> (optional) defines the future value remaining after the final installment has been made."
-#: 12090102.xhp
-#, fuzzy
+#: 04060103.xhp
msgctxt ""
-"12090102.xhp\n"
-"par_id3155922\n"
+"04060103.xhp\n"
+"par_id3146883\n"
"13\n"
"help.text"
-msgid "<ahelp hid=\".uno:DataPilotExec\">Specify the layout of the table that is generated by the pivot table.</ahelp>"
-msgstr "<ahelp hid=\".uno:DataPilotExec\">Teessuma gabatee qixaan uumamee ifteessi.</ahelp>"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"par_id3148798\n"
-"34\n"
-"help.text"
-msgid "The pivot table displays data fields as buttons which you can drag and drop to define the pivot table."
-msgstr "Qinxaan dirreewwan deetaa akka qabdoowwan harkisuu fi kawuu gabatee qinxaa qindeessuuf dandeesisan agarsiisa."
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3154908\n"
-"18\n"
-"help.text"
-msgid "Layout"
-msgstr "Teessuma"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"par_id3150768\n"
-"19\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_DPLAY_SELECT\">To define the layout of a pivot table, drag and drop data field buttons onto the <emph>Page Fields, Row Fields, Column Fields, </emph>and<emph> Data Fields </emph>areas.</ahelp> You can also use drag and drop to rearrange the data fields on a pivot table."
-msgstr "<ahelp hid=\"HID_SC_DPLAY_SELECT\">Teessuma gabatee qinxaa qindeessuuf, qabdoowwan dirree deetaa naannoowwan <emph>Dirreewwan Fuulaa, Dirreewwan Tarree, Dirreewwan Tarjaa, </emph>fi<emph> Dirreewwan Deetaa </emph> harkisuu fi kawuu dha.</ahelp> Akkasumas dirreewwan deetaa gabatee qinxaa irra jiru irra deebitee qindeessuf harkisuu fi kawuu filachuu dandeessa."
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3147229\n"
-"20\n"
-"help.text"
-msgid "$[officename] automatically adds a caption to buttons that are dragged into the <emph>Data Fields </emph>area. The caption contains the name of the data field as well as the formula that created the data."
-msgstr "$[officename]'n ofumaan qabdoowwan kan naannoo <emph>Dirreewwan Deetaa</emph>tti harkisamanitti goodayyaa dabala.Goodayyaan maqoota dirreewwan deetaa akkasumas formulaa deetaa uume qaba."
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3145749\n"
-"21\n"
-"help.text"
-msgid "To change the function that is used by a data field, double-click a button in the <emph>Data Fields</emph> area to open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\">Data Field</link> dialog. You can also double-click buttons in the <emph>Row Fields</emph> or <emph>Column Fields</emph> areas."
-msgstr "fankishiniiwwan Dirreewwan deetaa fayyadamee jijjiiruuf, qabduu nannoo <emph>Dirree Deetaa</emph> irratti lamcuqaasuudhaan qaaqa <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\">Dirree Deetaa</link> bani. Akkasumaas qabdoowwan nannnoo <emph>Dirreewwan Tarree</emph> ykn <emph>Dirreewwan Tarjaa</emph> keessa jiraan lacuqaasuu dandeessa."
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3149260\n"
-"28\n"
-"help.text"
-msgid "Remove"
-msgstr "Haqi"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3150010\n"
-"27\n"
-"help.text"
-msgid "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_REMOVE\">Removes the selected data field from the table layout.</ahelp>"
-msgstr "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_REMOVE\">Dirree deetaa filatamee teessuma gabatee irraa haqa.</ahelp>"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3145273\n"
-"26\n"
-"help.text"
-msgid "Options"
-msgstr "Dirqalaalee"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3146120\n"
-"25\n"
-"help.text"
-msgid "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_OPTIONS\">Opens the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog where you can change the function that is associated with the selected field.</ahelp>"
-msgstr "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_OPTIONS\">Qaaqa <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Dirree Deetaa</emph></link> iddoo itti fankishinii dirree filamaanin firooman itti jijjiruu dandeenyu bana.</ahelp>"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3154944\n"
-"22\n"
-"help.text"
-msgid "More"
-msgstr "Dabalaa"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"par_id3145647\n"
-"23\n"
-"help.text"
-msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_PIVOT_LAYOUT:BTN_MORE\">Displays or hides additional options for defining the pivot table.</ahelp>"
-msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_PIVOT_LAYOUT:BTN_MORE\">Dirqalaalee dabalata Gabatee qinxa qindessuuf fayyadu agarsiisa ykn dhoksa.</ahelp>"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3151073\n"
-"2\n"
-"help.text"
-msgid "Result"
-msgstr "Bu'aa"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"par_id3155417\n"
-"3\n"
-"help.text"
-msgid "Specify the settings for displaying the results of the pivot table."
-msgstr "Qindaa'inoota bu'aa gabatee qinxaa agarsiisu ifteessi."
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id0509200913025625\n"
-"help.text"
-msgid "Selection from"
-msgstr "Irraa filachuu"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"par_id0509200913025615\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select the area that contains the data for the current pivot table.</ahelp>"
-msgstr "<ahelp hid=\".\">Gabatee gabateeqinxaa ammeetiif naannoo deetaa qabate fili.</ahelp>"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3155603\n"
-"4\n"
-"help.text"
-msgid "Results to"
-msgstr "Gara bu'aawwanitti"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"par_id3153838\n"
-"5\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_PIVOT_LAYOUT:ED_OUTAREA\">Select the area where you want to display the results of the pivot table.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_PIVOT_LAYOUT:ED_OUTAREA\">Iddoo bu'aawwaan gabate qinxaa itti agarsiisuu barbaaddu fili.</ahelp>"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"par_id3155961\n"
-"6\n"
-"help.text"
-msgid "If the selected area contains data, the pivot table overwrites the data. To prevent the loss of existing data, let the pivot table automatically select the area to display the results."
-msgstr "Yoo iddoon filamee deetaa qabaate,qinxaan deetaa irratti barreessa.Kasaaraa deetaa jiraataa ittisuuf, Qinxaan ofuumaan bakkaa bu'aawwan itti agarsiisu filatu heyyami."
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3147364\n"
-"7\n"
-"help.text"
-msgid "Ignore empty rows"
-msgstr "Tarreewwan duwwaa haqi"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3154022\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_IGNEMPTYROWS\">Ignores empty fields in the data source.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_IGNEMPTYROWS\">Madda deetaa keessa dirreewwan duwwaa haqa.</ahelp>"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3155114\n"
-"9\n"
-"help.text"
-msgid "Identify categories"
-msgstr "Akaakuuwwan adda baasi"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3145257\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_DETECTCAT\">Automatically assigns rows without labels to the category of the row above.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_DETECTCAT\">Akka moggaasa tarreetiin ifteessametti tarreewwan moggaasa malee jiran gara akaakuu ol'aantootti ofuumaan ramada.</ahelp>"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3149207\n"
-"14\n"
-"help.text"
-msgid "Total columns"
-msgstr "Tarjaalee ida'amaa"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3166426\n"
-"15\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALCOL\">Calculates and displays the grand total of the column calculation.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALCOL\">Dabaltoo dunneetii shallaggii tarjaa shallaguun agarsiisa.</ahelp>"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3150364\n"
-"16\n"
-"help.text"
-msgid "Total rows"
-msgstr "Ida'aa tarreewwaani"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3152583\n"
-"17\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALROW\">Calculates and displays the grand total of the row calculation.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALROW\">Dabaltoo dunneetii shallaggii tarree shallaguun agarsiisa.</ahelp>"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN10897\n"
-"help.text"
-msgid "Add filter"
-msgstr "Gingilchaa dabali"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"par_idN1089B\n"
-"help.text"
-msgid "<ahelp hid=\".\">Adds a Filter button to pivot tables that are based on spreadsheet data.</ahelp>"
-msgstr "<ahelp hid=\".\">Gabateewwan qinxaa Wardii deetaa irratti hunda'aniif qabdu gingilchaa dabala.</ahelp>"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN108B2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Filter dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">Qaaqa gingilchaa bana.</ahelp>"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN108C9\n"
-"help.text"
-msgid "Enable drill to details"
-msgstr "Urtuu bal'inatti dandeessisi"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN108CD\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select this check box and double-click an item label in the table to show or hide details for the item. Clear this check box and double-click a cell in the table to edit the contents of the cell.</ahelp>"
-msgstr "<ahelp hid=\".\">Filqiiwwaan wanta keessa jiraan agarsiisuuf ykn dhoksuuf sanduuqa filannoo kana filuudhaan moggaasa wantaa gabatee keessaa lama cuqaasi.Qaabiyyeewwaan man'ee gulaaluuf sanduuqa filannoo haquun man'ee gabatee keessaa lama cuqaasi.</ahelp>"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"par_idN108DC\n"
-"help.text"
-msgid "To examine details inside a pivot table"
-msgstr "Filqiiwwan gabatee keessaa qoruudhaf"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN108E0\n"
-"help.text"
-msgid "Do one of the following:"
-msgstr "Kan armaan gadii keessaa tokko dalagi:"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN108E6\n"
-"help.text"
-msgid "Select a range of cells and choose <emph>Data - Group and Outline - Show Details</emph>."
-msgstr "Hangii man'eewwanii filuudhaan <emph>Deetaa - Gurmii fi Toorii - Fiqiiwwan Agarsiisi</emph>."
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN108EE\n"
-"help.text"
-msgid "Double-click a field in the table."
-msgstr "Dirree gabatee keessaa lama cuqaasi."
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN108F1\n"
-"help.text"
-msgid "If you double-click a field which has adjacent fields at the same level, the <emph>Show Detail</emph> dialog opens:"
-msgstr "Yoo dirree dirreewwan wal cinaa moggaasa wal fakkaata qabuu lama cuqaaste, qaaqa <emph>Filqii Agarsiisi</emph> bana:"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN10900\n"
-"help.text"
-msgid "Show Detail"
-msgstr "Filqii Agarsiisi"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN10904\n"
-"help.text"
-msgid "<ahelp hid=\".\">Choose the field that you want to view the details for.</ahelp>"
-msgstr "<ahelp hid=\".\">Filqiiwwan dirree ilaaluu barbaadduu fili.</ahelp>"
-
-#: 12090102.xhp
-#, fuzzy
-msgctxt ""
-"12090102.xhp\n"
-"par_id3149817\n"
-"35\n"
-"help.text"
-msgid "<link href=\"text/scalc/04/01020000.xhp\" name=\"Pivot table shortcut keys\">Pivot table shortcut keys</link>"
-msgstr "<link href=\"text/scalc/04/01020000.xhp\" name=\"DataPilot shortcut keys\">Furtuuwwan karaa gabaabduu qinxaa</link>"
-
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Column & Row Headers"
-msgstr "Irraantoowwan Tarjaa fi Tarree"
-
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"bm_id3156024\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets; displaying headers of columns/rows</bookmark_value><bookmark_value>displaying; headers of columns/rows</bookmark_value>"
-msgstr "<bookmark_value>wardiiwwan;irraantoowwan tarjaa mul'isuu/rows</bookmark_value><bookmark_value>mul'isuu;irraantoowwan tarjaa/rows</bookmark_value>"
-
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"hd_id3156024\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/03070000.xhp\" name=\"Column & Row Headers\">Column & Row Headers</link>"
-msgstr "<link href=\"text/scalc/01/03070000.xhp\" name=\"Column & Row Headers\">Irraantoowwan Tarjaa fi Tarree</link>"
-
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"par_id3147230\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ViewRowColumnHeaders\">Shows column headers and row headers.</ahelp>"
-msgstr "<ahelp hid=\".uno:ViewRowColumnHeaders\">Irraantoowwan Tarjaa fi irraantoowwan tarree agarsiisa.</ahelp>"
-
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"par_id3156280\n"
-"4\n"
-"help.text"
-msgid "To hide the column and row headers unmark this menu entry."
-msgstr "Irraantoowwan tarjaa fi tarree dhoksuuf galiinsa baafata kanaa hin mallatteessiin"
-
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"par_id3156441\n"
-"3\n"
-"help.text"
-msgid "You can also set the view of the column and row headers in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link></emph>."
-msgstr ""
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Define Label Range"
-msgstr "Moggaasa Hangii Hiiki"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"bm_id3150791\n"
-"help.text"
-msgid "<bookmark_value>sheets; defining label ranges</bookmark_value><bookmark_value>label ranges in sheets</bookmark_value>"
-msgstr "<bookmark_value>wardiiwwan; moggaasa hangiiwwani hiikun</bookmark_value><bookmark_value>hangiiwwan wardii keessaa moggaasa</bookmark_value>"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"hd_id3150791\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"define_label_range\"><link href=\"text/scalc/01/04070400.xhp\">Define Label Range</link></variable>"
-msgstr "<variable id=\"define_label_range\"><link href=\"text/scalc/01/04070400.xhp\">Moggaasa Hangii Hiiki</link></variable>"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"par_id3150868\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"beschtext\"><ahelp hid=\".uno:DefineLabelRange\">Opens a dialog in which you can define a label range.</ahelp></variable>"
-msgstr "<variable id=\"beschtext\"><ahelp hid=\".uno:DefineLabelRange\">Qaaqa itti moggaasa hangii itti hiikuu dandeessu bana.</ahelp></variable>"
+msgid "<emph>Type</emph> (optional) denotes due date for payments. Type = 1 means due at the beginning of a period and Type = 0 (default) means due at the end of the period."
+msgstr "<emph>Gosa</emph> (filannoo) kanfaltiidhaaf guyyaa dhumaa bakka bu'a.Gosa = 1 jechuun yeroo jalqabaa fi gosa= 0 (durtii) jechuun yeroo jalqabaa."
-#: 04070400.xhp
+#: 04060103.xhp
msgctxt ""
-"04070400.xhp\n"
-"par_id3155411\n"
-"13\n"
+"04060103.xhp\n"
+"par_idN10B13\n"
"help.text"
-msgid "The cell contents of a label range can be used like names in formulas - $[officename] recognizes these names in the same manner that it does the predefined names of the weekdays and months. These names are automatically completed when typed into a formula. In addition, the names defined by label ranges will have priority over names defined by automatically generated ranges."
-msgstr "Qabeentootni man'ee moggaasa hangii akka maqaawwan formuulaa- $[officename] fayyadamuu danda'a, maqoota kunneen halaa wal fakkaatuun maqaa guyyoota torbanii fi ji'oota duraa hiikameetti fudhata.Yommuu formuulaatti barreessinu, maqootni kun ofumaan xumuramu.Dabalata,maqaan hangii moggaasan hiikame maqaalee ofumaan hangii uumamee hiikamee irra maqaalee moggaasa hangiiwwanin hiikameetu carraa dursu qaba."
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-#: 04070400.xhp
+#: 04060103.xhp
msgctxt ""
-"04070400.xhp\n"
-"par_id3147435\n"
+"04060103.xhp\n"
+"hd_id3150037\n"
"14\n"
"help.text"
-msgid "You can set label ranges that contain the same labels on different sheets. $[officename] first searches the label ranges of the current sheet and, following a failed search, the ranges of other sheets."
-msgstr "Wardiiwwan garaa garaa irratti moggaassawwan wal fakkaata kan qabu moggaasa hangiiwwanii qindeessuu dandeessa.$[officename]'n jalqaba wardii ammeef moggaasa hangiiwwanii barbaada, fi barbaacha kufaa itti aansuun,hangiiwwan wardii gara biraaf."
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"hd_id3145801\n"
-"3\n"
-"help.text"
-msgid "Range"
-msgstr "Hangii"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"par_id3154731\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_AREA\">Displays the cell reference of each label range.</ahelp> In order to remove a label range from the list box, select it and then click <emph>Delete</emph>."
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_AREA\">Tokko tokkoo moggaasa hangiif wabii man'ee agarsiisa.</ahelp> Sanduqa tarree keessaa moggaasa hangii haquuf,isa filun fi itti aansuun<emph>Haqii</emph>cuqaasi."
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"hd_id3149121\n"
-"5\n"
-"help.text"
-msgid "Contains column labels"
-msgstr "Moggaasota tarjaa of keessatti qabata"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"par_id3150330\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_COLHEAD\">Includes column labels in the current label range.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_COLHEAD\">Moggaasa hangii ammee keessatti moggaasota tarjaa of keessatti qabata.</ahelp>"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"hd_id3149020\n"
-"7\n"
-"help.text"
-msgid "Contains row labels"
-msgstr "Moggaasota tarree of keessatti qabata"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"par_id3154754\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ROWHEAD\">Includes row labels in the current label range.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ROWHEAD\">Moggaasa hangii ammee keessatti moggaasota tarree of keessatti qabata.</ahelp>"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"hd_id3159264\n"
-"11\n"
-"help.text"
-msgid "For data range"
-msgstr "Hangii deetaaf"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"par_id3154703\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_DATA\">Sets the data range for which the selected label range is valid. To modify it, click in the sheet and select another range with the mouse.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_DATA\">Moggaasa hangii filamee gitaa'a ta'uu isaaf hangii deetaa qindeessa Kanuma haroomsuuf, wardii keessa cuqaasuunif hangii gara biraa hantuutaan fili.</ahelp>"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"hd_id3145789\n"
-"9\n"
-"help.text"
-msgid "Add"
-msgstr "Ida'ii"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"par_id3147005\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ADD\">Adds the current label range to the list.</ahelp>"
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ADD\">Tarreetti moggaasa hangii ammee dabali.</ahelp>"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"tit\n"
-"help.text"
-msgid "Statistical Functions Part Two"
-msgstr "Fankishinoota Istaatistiksii Kutaa Lama"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3154372\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"fh\"><link href=\"text/scalc/01/04060182.xhp\" name=\"Statistical Functions Part Two\">Statistical Functions Part Two</link></variable>"
-msgstr "<variable id=\"fh\"><link href=\"text/scalc/01/04060182.xhp\" name=\"Statistical Functions Part Two\">Fankishinoota Istaatistiksii Kutaa Lama</link></variable>"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"bm_id3145388\n"
-"help.text"
-msgid "<bookmark_value>FINV function</bookmark_value> <bookmark_value>inverse F probability distribution</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii FINV</bookmark_value> <bookmark_value>raabsa pirobaabilii F tiif garagaltoo barbaadi</bookmark_value>"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3145388\n"
-"2\n"
-"help.text"
-msgid "FINV"
-msgstr "FINV"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3155089\n"
-"3\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FINV\">Returns the inverse of the F probability distribution.</ahelp> The F distribution is used for F tests in order to set the relation between two differing data sets."
-msgstr "<ahelp hid=\"HID_FUNC_FINV\">Raabsa pirobaabiliitii F tif garagaltoo kenna.</ahelp> Raabsi F yaaliwwan F tif firummaa qindaa'inoota deetaa garagaraa lama gidduu jiru qindeessuuf fayyada."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3153816\n"
-"4\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3153068\n"
-"5\n"
-"help.text"
-msgid "FINV(Number; DegreesFreedom1; DegreesFreedom2)"
-msgstr "FINV(Lakkofsa; DigriisFiriidam1; DigriisFiridam2)"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3146866\n"
-"6\n"
-"help.text"
-msgid "<emph>Number</emph> is probability value for which the inverse F distribution is to be calculated."
-msgstr "<emph>Lakkoofsi</emph> gatii pirobaabiliitii kan gargaltoon raabsa F shallagamuufii dha."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3153914\n"
-"7\n"
-"help.text"
-msgid "<emph>DegreesFreedom1</emph> is the number of degrees of freedom in the numerator of the F distribution."
-msgstr "<emph>DigriisFiridam1</emph> lakkoofsa digrii firidamii waamamaa raabsa F ti."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3148607\n"
-"8\n"
-"help.text"
-msgid "<emph>DegreesFreedom2</emph> is the number of degrees of freedom in the denominator of the F distribution."
-msgstr "<emph>DigriisFiridam2</emph> lakkoofsa digrii firidamii waamsisaa raabsa F ti."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3156021\n"
-"9\n"
-"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3145073\n"
-"10\n"
-"help.text"
-msgid "<item type=\"input\">=FINV(0.5;5;10)</item> yields 0.93."
-msgstr "<item type=\"input\">=FINV(0.5;5;10)</item> 0.93 kenna."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"bm_id3150888\n"
-"help.text"
-msgid "<bookmark_value>FISHER function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii FISHER</bookmark_value>"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3150888\n"
-"12\n"
-"help.text"
-msgid "FISHER"
-msgstr "FISHER"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3155384\n"
-"13\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FISHER\">Returns the Fisher transformation for x and creates a function close to a normal distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FISHER\">jijjiirama fishraii x kenna fi fankishinii raabsa baramootti dhihaatu uuma.</ahelp>"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3149898\n"
-"14\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3143220\n"
+"04060103.xhp\n"
+"par_id3145225\n"
"15\n"
"help.text"
-msgid "FISHER(Number)"
-msgstr "FISHER(Lakkoofsa)"
+msgid "What is the present value of an investment, if 500 currency units are paid out monthly and the annual interest rate is 8%? The payment period is 48 months and 20,000 currency units are to remain at the end of the payment period."
+msgstr "Gatiin inveestimeentii ammaa hagam,yoo 500 yuunitii maallaqaa ji'aan kanfalame fi makkiin dhala waggaa 8%?Yeroon kanfaltii ji'a 48 fi 20'000 yuunitii maallaqaa dhuma yeroo kanfaltii irratti hafa."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3159228\n"
+"04060103.xhp\n"
+"par_id3155907\n"
"16\n"
"help.text"
-msgid "<emph>Number</emph> is the value to be transformed."
-msgstr "<emph>Lakkoofsi</emph> gatii jijjiiramuu dha."
+msgid "<item type=\"input\">=PV(8%/12;48;500;20000)</item> = -35,019.37 currency units. Under the named conditions, you must deposit 35,019.37 currency units today, if you want to receive 500 currency units per month for 48 months and have 20,000 currency units left over at the end. Cross-checking shows that 48 x 500 currency units + 20,000 currency units = 44,000 currency units. The difference between this amount and the 35,000 currency units deposited represents the interest paid."
+msgstr "<item type=\"input\">=PV(8%/12;48;500;20000)</item> = -35,019.37 uunitii maallaqaa.Haala maqaa jalatti,dirqama har'a 35,019.37 uuniitii maallaqaa kuusuu qabdu,yoo 500 yuunitii maallaqaa per ji'aa ji'a 48 tiif fudhachuu barbaadan fi 20,000 uuniitii maallaqaa dhuma irratti lafatti hafa.Mirkaneessi qaxaamuraa kan agarsiisu 48 x 500 yuunitii maallaqaa + 20,000 uuniitii maallaqaa = 44,000 uuniitii maallaqaa. Garaagarummaan kana gidduu jiruu fi kuufamni 35,000 yuunitii maallaqaa dhala kanfalame bakka bu'a."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3154763\n"
+"04060103.xhp\n"
+"par_id3149150\n"
"17\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "If you enter references instead of these values into the formula, you can calculate any number of \"If-then\" scenarios. Please note: references to constants must be defined as absolute references. Examples of this type of application are found under the depreciation functions."
+msgstr "Osoo wabii iddoo gatii kanaa foormulaa keessa galchinee,lakkoofsa barbaadde \"If-then\"mul'inoota shallaguu dandeessu.Maaloo hubadhaa:wabiin dhaabataaf akka wabii guutuutti dirqama ibsamuu qaba.Fakkeenyi akkanaa kun faankishinii diprisheeshinii jalatti argama."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3149383\n"
-"18\n"
+"04060103.xhp\n"
+"bm_id3152978\n"
"help.text"
-msgid "<item type=\"input\">=FISHER(0.5)</item> yields 0.55."
-msgstr "<item type=\"input\">=FISHER(0.5)</item> 0.55 kenna."
+msgid "<bookmark_value>calculating; depreciations</bookmark_value> <bookmark_value>SYD function</bookmark_value> <bookmark_value>depreciations; arithmetic declining</bookmark_value> <bookmark_value>arithmetic declining depreciations</bookmark_value>"
+msgstr "<bookmark_value>shallaguu;diprisheeshinii</bookmark_value> <bookmark_value>faankishinii SYD</bookmark_value> <bookmark_value>diprisheeshinii; lakkoofsa hir'ate</bookmark_value> <bookmark_value>diprisheeshinii lakkoofsa hir'atee</bookmark_value>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3155758\n"
+"04060103.xhp\n"
+"hd_id3152978\n"
+"19\n"
"help.text"
-msgid "<bookmark_value>FISHERINV function</bookmark_value> <bookmark_value>inverse of Fisher transformation</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii FISHERINV</bookmark_value> <bookmark_value>garagaltoo jijjiirama fiisharii</bookmark_value>"
+msgid "SYD"
+msgstr "SYD"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3155758\n"
+"04060103.xhp\n"
+"par_id3148732\n"
"20\n"
"help.text"
-msgid "FISHERINV"
-msgstr "FISHERINV"
+msgid "<ahelp hid=\"HID_FUNC_DIA\">Returns the arithmetic-declining depreciation rate.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DIA\">Makkii diprisheeshinii lakkoofsa hir'atee deebisa.</ahelp>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3154734\n"
+"04060103.xhp\n"
+"par_id3149886\n"
"21\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FISHERINV\">Returns the inverse of the Fisher transformation for x and creates a function close to a normal distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FISHERINV\">Garagaltoo jijjiirama fishraii x kenna fi fankishinii raabsa baramootti dhihaatu uuma.</ahelp>"
+msgid "Use this function to calculate the depreciation amount for one period of the total depreciation span of an object. Arithmetic declining depreciation reduces the depreciation amount from period to period by a fixed sum."
+msgstr "Hanga diprisheeshinii yeroo tokkoo kan waliigala diprisheeshinii wantoo shallaguuf faankishinii kana fayyadamaa.Hir'ina lakkoofsaa diprisheeshinii hanga diprisheeshinii yeroodhaa yerootti ida'ama dhaabaaadhaan hir'isa."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3155755\n"
+"04060103.xhp\n"
+"hd_id3149431\n"
"22\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3146108\n"
+"04060103.xhp\n"
+"par_id3150483\n"
"23\n"
"help.text"
-msgid "FISHERINV(Number)"
-msgstr "FISHERINV(Lakkoofsa)"
+msgid "SYD(Cost; Salvage; Life; Period)"
+msgstr "SYD(Gatii;saalveegii; Jireenya; yeroo)"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3145115\n"
+"04060103.xhp\n"
+"par_id3146879\n"
"24\n"
"help.text"
-msgid "<emph>Number</emph> is the value that is to undergo reverse-transformation."
-msgstr "<emph>Lakkofsi</emph> gatii jijjiiramni garagaltoo irratti raawwatamuu dha."
+msgid "<emph>Cost</emph> is the initial cost of an asset."
+msgstr "<emph>Gatii</emph>n gatii jalqabaa bu'aati."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3155744\n"
+"04060103.xhp\n"
+"par_id3147423\n"
"25\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<emph>Salvage</emph> is the value of an asset after depreciation."
+msgstr "<emph>Balaarraa kan hafe</emph> jechuun gatii waan nafii qabuu dippirisheeshinii boodaati."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3150432\n"
+"04060103.xhp\n"
+"par_id3151229\n"
"26\n"
"help.text"
-msgid "<item type=\"input\">=FISHERINV(0.5)</item> yields 0.46."
-msgstr "<item type=\"input\">=FISHERINV(0.5)</item> 0.46 kenna."
+msgid "<emph>Life</emph> is the period fixing the time span over which an asset is depreciated."
+msgstr "<emph>Jiruu</emph>n yeroo,yeroo turtii irratti qabeenyi dullatoomu murteessudha."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3151390\n"
+"04060103.xhp\n"
+"par_id3147473\n"
+"27\n"
"help.text"
-msgid "<bookmark_value>FTEST function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii FTEST</bookmark_value>"
+msgid "<emph>Period</emph> defines the period for which the depreciation is to be calculated."
+msgstr "<emph>Yeroon</emph> yeroo dullatoomni shallagamuu qabu ibsa."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3151390\n"
+"04060103.xhp\n"
+"hd_id3148434\n"
"28\n"
"help.text"
-msgid "FTEST"
-msgstr "FTEST"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3150534\n"
+"04060103.xhp\n"
+"par_id3149688\n"
"29\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FTEST\">Returns the result of an F test.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FTEST\">Bu'aa yaalii F kenna.</ahelp>"
+msgid "A video system initially costing 50,000 currency units is to be depreciated annually for the next 5 years. The salvage value is to be 10,000 currency units. You want to calculate depreciation for the first year."
+msgstr "Sirni viidiyoo duraan Maallaqa 50,000 ta'e waggoota dhufan 5f waggaa waggaadhaan dullatoomuu qaba.Gatiin wanta balaarraa hafee maallaqa 10,000 ta'uu qaba.Waggaa jalqabaaf dippirisheeshinii shallaguun si barbaachiisa."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3166466\n"
+"04060103.xhp\n"
+"par_id3150900\n"
"30\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<item type=\"input\">=SYD(50000;10000;5;1)</item>=13,333.33 currency units. The depreciation amount for the first year is 13,333.33 currency units."
+msgstr "<item type=\"input\">=SYD(50000;10000;5;1)</item>= maallaqa 13,333.33 Waggaa jalqabaaf ammi dippirisheeshiniia maallaqa 13,333.33 dha."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153024\n"
+"04060103.xhp\n"
+"par_id3146142\n"
"31\n"
"help.text"
-msgid "FTEST(Data1; Data2)"
-msgstr "FTEST(Deetaa1; Deetaa2)"
+msgid "To have an overview of depreciation rates per period, it is best to define a depreciation table. By entering the different depreciation formulas available in <item type=\"productname\">%PRODUCTNAME</item> Calc next to each other, you can see which depreciation form is the most appropriate. Enter the table as follows:"
+msgstr "Ilaalacha gubbaa reetii dippirisheeshiniia yeroo tokkoon qabaachuuf, gabatee dippirisheeshiniia qindeessuun gaariidha.Foormuloota dippirisheeshiniia garaagaraa jiran <item type=\"productname\">%PRODUCTNAME</item> keessa tokko isa tokkoon booda galchuun, unka dippirisheeshiniia isa kamtu hundarra filatamaa akka ta'e ilaaluu ni dandeessa. Gabatee akka armaan gadiitti galchi."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3150032\n"
+"04060103.xhp\n"
+"par_id3155258\n"
"32\n"
"help.text"
-msgid "<emph>Data1</emph> is the first record array."
-msgstr "<emph>Deetaa1</emph> waraantoo kuusaa tokkoffaati."
+msgid "<emph>A</emph>"
+msgstr "<emph>Haalata</emph>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153018\n"
+"04060103.xhp\n"
+"par_id3154558\n"
"33\n"
"help.text"
-msgid "<emph>Data2</emph> is the second record array."
-msgstr "<emph>Deetaa2</emph> waraantoo kuusaa lammaffaati."
+msgid "<emph>B</emph>"
+msgstr "<emph>Haalata</emph>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3153123\n"
+"04060103.xhp\n"
+"par_id3152372\n"
"34\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<emph>C</emph>"
+msgstr "<emph>Haalata</emph>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3159126\n"
+"04060103.xhp\n"
+"par_id3149949\n"
"35\n"
"help.text"
-msgid "<item type=\"input\">=FTEST(A1:A30;B1:B12)</item> calculates whether the two data sets are different in their variance and returns the probability that both sets could have come from the same total population."
-msgstr "<item type=\"input\">=FTEST(A1:A30;B1:B12)</item> tuutotni deetaa lama variyaansiidhan garagara ta'uu isaanii shallaguudhan pirobaabilitii tuutotni lamaanuu iada'ama populeeshinii walfakkaataa irraa dhufuu danda'uu isaanii kenna."
+msgid "<emph>D</emph>"
+msgstr "<emph>Haalata</emph>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3150372\n"
+"04060103.xhp\n"
+"par_id3145123\n"
+"36\n"
"help.text"
-msgid "<bookmark_value>FDIST function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii FDIST</bookmark_value>"
+msgid "<emph>E</emph>"
+msgstr "<emph>Haalata</emph>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3150372\n"
+"04060103.xhp\n"
+"par_id3149504\n"
"37\n"
"help.text"
-msgid "FDIST"
-msgstr "FDIST"
+msgid "1"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3152981\n"
+"04060103.xhp\n"
+"par_id3153778\n"
"38\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FVERT\">Calculates the values of an F distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FVERT\">Gatiiwwan raabsa F shallaga.</ahelp>"
+msgid "<item type=\"input\">Initial Cost</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3150484\n"
+"04060103.xhp\n"
+"par_id3159083\n"
"39\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<item type=\"input\">Salvage Value</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3145826\n"
+"04060103.xhp\n"
+"par_id3150002\n"
"40\n"
"help.text"
-msgid "FDIST(Number; DegreesFreedom1; DegreesFreedom2)"
-msgstr "FDIST(Lakkofsa; DigriisFiriidam1; DigriisFiridam2)"
+msgid "<item type=\"input\">Useful Life</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3150461\n"
+"04060103.xhp\n"
+"par_id3153006\n"
"41\n"
"help.text"
-msgid "<emph>Number</emph> is the value for which the F distribution is to be calculated."
-msgstr "<emph>Lakkoofsi</emph> gatii kan raabsi F shallagamuufii dha."
+msgid "<item type=\"input\">Time Period</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3150029\n"
+"04060103.xhp\n"
+"par_id3154505\n"
"42\n"
"help.text"
-msgid "<emph>degreesFreedom1</emph> is the degrees of freedom in the numerator in the F distribution."
-msgstr "<emph>DigriisFiridam1</emph> digrii firidamii waamamaa kan raabsa F keessaati."
+msgid "<item type=\"input\">Deprec. SYD</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3146877\n"
+"04060103.xhp\n"
+"par_id3150336\n"
"43\n"
"help.text"
-msgid "<emph>degreesFreedom2</emph> is the degrees of freedom in the denominator in the F distribution."
-msgstr "<emph>DigriisFiridam2</emph> digrii firidamii waamsisaa kan raabsa F keessaati."
+msgid "2"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3147423\n"
+"04060103.xhp\n"
+"par_id3155926\n"
"44\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<item type=\"input\">50,000 currency units</item>"
+msgstr "<item type=\"input\">safartoota mahaalaqaa 10,666.67</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3150696\n"
+"04060103.xhp\n"
+"par_id3153736\n"
"45\n"
"help.text"
-msgid "<item type=\"input\">=FDIST(0.8;8;12)</item> yields 0.61."
-msgstr "<item type=\"input\">=FDIST(0.8;8;12)</item> 0.61 kenna."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"bm_id0119200903223192\n"
-"help.text"
-msgid "<bookmark_value>GAMMA function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii GAMMA</bookmark_value>"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id0119200903205393\n"
-"help.text"
-msgid "GAMMA"
-msgstr "GAMMA"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id0119200903205379\n"
-"help.text"
-msgid "<ahelp hid=\".\">Returns the Gamma function value.</ahelp> Note that GAMMAINV is not the inverse of GAMMA, but of GAMMADIST."
-msgstr "<ahelp hid=\".\">Gatii faankishinii gaammaa deebisa.</ahelp> Note that GAMMAINV is not the inverse of GAMMA, but of GAMMADIST."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id0119200903271613\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id0119200903271614\n"
-"help.text"
-msgid "<emph>Number</emph> is the number for which the Gamma function value is to be calculated."
-msgstr "<emph>Lakkoofsa</emph> lakkoofa gatiin faankishinii gaammaa herreegamuufi dha."
+msgid "<item type=\"input\">10,000 currency units</item>"
+msgstr "<item type=\"input\">safartoota mahaalaqaa 10,666.67</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3154841\n"
+"04060103.xhp\n"
+"par_id3150131\n"
+"46\n"
"help.text"
-msgid "<bookmark_value>GAMMAINV function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii GAMMAINV</bookmark_value>"
+msgid "<item type=\"input\">5</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3154841\n"
+"04060103.xhp\n"
+"par_id3148766\n"
"47\n"
"help.text"
-msgid "GAMMAINV"
-msgstr "GAMMAINV"
+msgid "<item type=\"input\">1</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153932\n"
+"04060103.xhp\n"
+"par_id3159136\n"
"48\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GAMMAINV\">Returns the inverse of the Gamma cumulative distribution GAMMADIST.</ahelp> This function allows you to search for variables with different distribution."
-msgstr "<ahelp hid=\"HID_FUNC_GAMMAINV\">Garagaltoo GAMMADIST raabsa dimshaasha Gaamaa kenna.</ahelp> Fankishiniin kun jijjiiramaa raabsa garagaraa wajjinii akka barbaaddu sii eeyyama."
+msgid "<item type=\"input\">13,333.33 currency units</item>"
+msgstr "<item type=\"input\">safartoota mahaalaqaa 10,666.67</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3149949\n"
+"04060103.xhp\n"
+"par_id3151018\n"
"49\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "3"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3155828\n"
+"04060103.xhp\n"
+"par_id3148397\n"
"50\n"
"help.text"
-msgid "GAMMAINV(Number; Alpha; Beta)"
-msgstr "GAMMAINV(Lakkoofsa; Alfaa; Beettaa)"
+msgid "<item type=\"input\">2</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3145138\n"
+"04060103.xhp\n"
+"par_id3146907\n"
"51\n"
"help.text"
-msgid "<emph>Number</emph> is the probability value for which the inverse Gamma distribution is to be calculated."
-msgstr "<emph>Lakkoofsi</emph> gatii pirobaabiliitii kan gargaltoon raabsa Gaamaa shallagamuufii dha."
+msgid "<item type=\"input\">10,666.67 currency units</item>"
+msgstr "<item type=\"input\">safartoota mahaalaqaa 10,666.67</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3152785\n"
+"04060103.xhp\n"
+"par_id3147356\n"
"52\n"
"help.text"
-msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
-msgstr "<emph>Alfaa</emph>n ulaagaa Alfaa kan raabsa Gaamaati."
+msgid "4"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3154561\n"
+"04060103.xhp\n"
+"par_id3150267\n"
"53\n"
"help.text"
-msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution."
-msgstr "<emph>Beettaa</emph>n ulaagaa Beettaa kan raabsa Gaamaati."
+msgid "<item type=\"input\">3</item>"
+msgstr "<item type=\"input\">183</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3148734\n"
+"04060103.xhp\n"
+"par_id3145628\n"
"54\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<item type=\"input\">8,000.00 currency units</item>"
+msgstr "<item type=\"input\">safartoota mahaalaqaa 10,666.67</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153331\n"
+"04060103.xhp\n"
+"par_id3149004\n"
"55\n"
"help.text"
-msgid "<item type=\"input\">=GAMMAINV(0.8;1;1)</item> yields 1.61."
-msgstr "<item type=\"input\">=GAMMAINV(0.8;1;1)</item> 1.61 kenna."
+msgid "5"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3154806\n"
+"04060103.xhp\n"
+"par_id3153545\n"
+"56\n"
"help.text"
-msgid "<bookmark_value>GAMMALN function</bookmark_value> <bookmark_value>natural logarithm of Gamma function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii GAMMALN</bookmark_value> <bookmark_value>logarizimii uumamaa fankishinii gaamaa</bookmark_value>"
+msgid "<item type=\"input\">4</item>"
+msgstr "<item type=\"input\">148</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3154806\n"
+"04060103.xhp\n"
+"par_id3154634\n"
"57\n"
"help.text"
-msgid "GAMMALN"
-msgstr "GAMMALN"
+msgid "<item type=\"input\">5,333.33 currency units</item>"
+msgstr "<item type=\"input\">safartoota mahaalaqaa 10,666.67</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3148572\n"
+"04060103.xhp\n"
+"par_id3147537\n"
"58\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GAMMALN\">Returns the natural logarithm of the Gamma function: G(x).</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GAMMALN\">Logarizimii uumamaa fankishinii Gaamaa kenna: G(x).</ahelp>"
+msgid "6"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3152999\n"
+"04060103.xhp\n"
+"par_id3155085\n"
"59\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<item type=\"input\">5</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153112\n"
+"04060103.xhp\n"
+"par_id3158413\n"
"60\n"
"help.text"
-msgid "GAMMALN(Number)"
-msgstr "GAMMALN(Lakkofsa)"
+msgid "<item type=\"input\">2,666.67 currency units</item>"
+msgstr "<item type=\"input\">safartoota mahaalaqaa 10,666.67</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3154502\n"
+"04060103.xhp\n"
+"par_id3154866\n"
"61\n"
"help.text"
-msgid "<emph>Number</emph> is the value for which the natural logarithm of the Gamma function is to be calculated."
-msgstr "<emph>Lakkoofsi</emph> gatii kan logarizimiin uumamaa fankishinii Gaamaa shallagamuufii dha."
+msgid "7"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3153568\n"
+"04060103.xhp\n"
+"par_id3155404\n"
"62\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<item type=\"input\">6</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153730\n"
+"04060103.xhp\n"
+"par_id3148431\n"
"63\n"
"help.text"
-msgid "<item type=\"input\">=GAMMALN(2)</item> yields 0."
-msgstr "<item type=\"input\">=GAMMALN(2)</item> 0 kenna."
+msgid "<item type=\"input\">0.00 currency units</item>"
+msgstr "<item type=\"input\">safartoota mahaalaqaa 10,666.67</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3150132\n"
+"04060103.xhp\n"
+"par_id3156261\n"
+"64\n"
"help.text"
-msgid "<bookmark_value>GAMMADIST function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii GAMMADIST</bookmark_value>"
+msgid "8"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3150132\n"
+"04060103.xhp\n"
+"par_id3083286\n"
"65\n"
"help.text"
-msgid "GAMMADIST"
-msgstr "GAMMADIST"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3155931\n"
-"66\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Returns the values of a Gamma distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Gatiiwwan raabsa Gaamaa kenna.</ahelp>"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id0119200903333675\n"
-"help.text"
-msgid "The inverse function is GAMMAINV."
-msgstr "Faankishiniin faallaa GAMMAINV dha."
+msgid "<item type=\"input\">7</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3147373\n"
+"04060103.xhp\n"
+"par_id3083443\n"
"67\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "9"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3155436\n"
+"04060103.xhp\n"
+"par_id3154815\n"
"68\n"
"help.text"
-msgid "GAMMADIST(Number; Alpha; Beta; C)"
-msgstr "GAMMADIST(Lakkoofsa; Alfaa; Beettaa; C)"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3150571\n"
-"69\n"
-"help.text"
-msgid "<emph>Number</emph> is the value for which the Gamma distribution is to be calculated."
-msgstr "<emph>Lakkoofsi</emph> gatii kan raabsi Gaamaa shallagamuufii dha."
+msgid "<item type=\"input\">8</item>"
+msgstr "<item type=\"input\">148</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3145295\n"
+"04060103.xhp\n"
+"par_id3145082\n"
"70\n"
"help.text"
-msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
-msgstr "<emph>Alfaa</emph>n ulaagaa Alfaa kan raabsa Gaamaati."
+msgid "10"
+msgstr "10"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3151015\n"
+"04060103.xhp\n"
+"par_id3156307\n"
"71\n"
"help.text"
-msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution"
-msgstr "<emph>Beettaa</emph>n ulaagaa Beettaa kan raabsa Gaamaati."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3157972\n"
-"72\n"
-"help.text"
-msgid "<emph>C</emph> (optional) = 0 or False calculates the density function <emph>C</emph> = 1 or True calculates the distribution."
-msgstr "<emph>C</emph> = 0 fankishinii rukkinaa shallaga <emph>C</emph> = 1 raabsa shallaga."
+msgid "<item type=\"input\">9</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3149535\n"
+"04060103.xhp\n"
+"par_id3147564\n"
"73\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "11"
+msgstr "11"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3145354\n"
+"04060103.xhp\n"
+"par_id3146856\n"
"74\n"
"help.text"
-msgid "<item type=\"input\">=GAMMADIST(2;1;1;1)</item> yields 0.86."
-msgstr "<item type=\"input\">=GAMMADIST(2;1;1;1)</item> 0.86 kenna."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"bm_id3150272\n"
-"help.text"
-msgid "<bookmark_value>GAUSS function</bookmark_value> <bookmark_value>normal distribution; standard</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii GAUSS</bookmark_value> <bookmark_value>raabsa baratamoo;waltawaa</bookmark_value>"
+msgid "<item type=\"input\">10</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3150272\n"
+"04060103.xhp\n"
+"par_id3150880\n"
"76\n"
"help.text"
-msgid "GAUSS"
-msgstr "GAUSS"
+msgid "12"
+msgstr "12"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3149030\n"
+"04060103.xhp\n"
+"par_id3145208\n"
"77\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GAUSS\">Returns the standard normal cumulative distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GAUSS\">Raabsa dimshaashaa baratamoo waltawaa kenna.</ahelp>"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id2059694\n"
-"help.text"
-msgid "It is GAUSS(x)=NORMSDIST(x)-0.5"
-msgstr "Innis GAUSS(x)=NORMSDIST(x)-0.5 dha"
+msgid "13"
+msgstr "13"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3153551\n"
+"04060103.xhp\n"
+"par_id3156113\n"
"78\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<item type=\"input\">>0</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3155368\n"
+"04060103.xhp\n"
+"par_id3153625\n"
"79\n"
"help.text"
-msgid "GAUSS(Number)"
-msgstr "GAUSS(Lakkoofsa)"
+msgid "<item type=\"input\">Total</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153228\n"
+"04060103.xhp\n"
+"par_id3151297\n"
"80\n"
"help.text"
-msgid "<emph>Number</emph> is the value for which the value of the standard normal distribution is to be calculated."
-msgstr "<emph>Lakkoofsi</emph> gatii kan gatiin raabsa baratamoo waltawaa shallagamuufii dha."
+msgid "<item type=\"input\">40,000.00 currency units</item>"
+msgstr "<item type=\"input\">safartoota mahaalaqaa 10,666.67</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3150691\n"
+"04060103.xhp\n"
+"par_id3149979\n"
"81\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "The formula in E2 is as follows:"
+msgstr "Foormulaan F2 keessaa akka armaan gadiiti."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3154867\n"
+"04060103.xhp\n"
+"par_id3155849\n"
"82\n"
"help.text"
-msgid "<item type=\"input\">=GAUSS(0.19)</item> = 0.08"
-msgstr "<item type=\"input\">=GAUSS(0.19)</item> = 0.08"
+msgid "<item type=\"input\">=SYD($A$2;$B$2;$C$2;D2)</item>"
+msgstr "<item type=\"input\">=TDIST(12;5;1)</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3148594\n"
+"04060103.xhp\n"
+"par_id3156124\n"
"83\n"
"help.text"
-msgid "<item type=\"input\">=GAUSS(0.0375)</item> = 0.01"
-msgstr "<item type=\"input\">=GAUSS(0.0375)</item> = 0.01"
+msgid "This formula is duplicated in column E down to E11 (select E2, then drag down the lower right corner with the mouse)."
+msgstr "Foormulaan kun tarjaa E keessa gara gadiitti hanga E12 tti baay'ifama(E2 filadhu,sana booda xiyyoo mirgaa handaara gadii tuqaadhaan gad harkisi)."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3148425\n"
+"04060103.xhp\n"
+"par_id3147270\n"
+"84\n"
"help.text"
-msgid "<bookmark_value>GEOMEAN function</bookmark_value> <bookmark_value>means;geometric</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii GEOMEAN</bookmark_value> <bookmark_value>miins;ji'omeetiriikii</bookmark_value>"
+msgid "Cell E13 contains the formula used to check the total of the depreciation amounts. It uses the SUMIF function as the negative values in E8:E11 must not be considered. The condition >0 is contained in cell A13. The formula in E13 is as follows:"
+msgstr "mandheen E13 foormulaa hamma dippirisheeshinii hunda mirkaneessuuf gargaaru of keessatti qabata.Akka gatiin negatiivii E8:E11 keessa jiru yaada keessa hin galleef faankishinii SUMIF fayyadama.Haalli >0 mandhee A13 keessatti hammatameera.Foormumlaan E13 keessaa akka armaan gadiiti."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3148425\n"
+"04060103.xhp\n"
+"par_id3152811\n"
"85\n"
"help.text"
-msgid "GEOMEAN"
-msgstr "GEOMEAN"
+msgid "<item type=\"input\">=SUMIF(E2:E11;A13)</item>"
+msgstr "<item type=\"input\">=TDIST(12;5;1)</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3156257\n"
+"04060103.xhp\n"
+"par_id3155998\n"
"86\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GEOMITTEL\">Returns the geometric mean of a sample.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GEOMITTEL\">Miinii ji'omeetirikii eddattoo kenna.</ahelp>"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3147167\n"
-"87\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3153720\n"
-"88\n"
-"help.text"
-msgid "GEOMEAN(Number1; Number2; ...Number30)"
-msgstr "GEOMEAN(Lakkofsa1; Lakkoofsa2; ...Lakkoofsa30)"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3152585\n"
-"89\n"
-"help.text"
-msgid "<emph>Number1, Number2,...Number30</emph> are numeric arguments or ranges that represent a random sample."
-msgstr "<emph>Lakkofsa1; Lakkoofsa2; ...Lakkoofsa30</emph> qajeelfama lakkoofsati ykn hangii eddattoo tasaa bakka bu'uu dha."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3146146\n"
-"90\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3149819\n"
-"92\n"
-"help.text"
-msgid "<item type=\"input\">=GEOMEAN(23;46;69)</item> = 41.79. The geometric mean value of this random sample is therefore 41.79."
-msgstr "<item type=\"input\">=GEOMEAN(23;46;69)</item> = 41.79. Kanaafuu gatiin miinii ji'oomeetiriikii eddattoo tasaa 41.79 ta'a."
+msgid "Now view the depreciation for a 10 year period, or at a salvage value of 1 currency unit, or enter a different initial cost, and so on."
+msgstr "Amma dippirisheeshinii waggaa 10 agarsiisi,ykn gatii wanta balaarra hafee maallaqa 1 irratti, ykn gatii jalqabaa garaagaraa galchi, fi itti fufa."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3152966\n"
+"04060103.xhp\n"
+"bm_id3155104\n"
"help.text"
-msgid "<bookmark_value>TRIMMEAN function</bookmark_value> <bookmark_value>means;of data set without margin data</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii TRIMMEAN</bookmark_value> <bookmark_value>miiniwwan;kan tuuta deetaa deetaa mudana dhabeessaa</bookmark_value>"
+msgid "<bookmark_value>DISC function</bookmark_value> <bookmark_value>allowances</bookmark_value> <bookmark_value>discounts</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii DISC </bookmark_value> <bookmark_value>hayyamoota</bookmark_value> <bookmark_value>hir'inoota gatii</bookmark_value>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3152966\n"
-"94\n"
+"04060103.xhp\n"
+"hd_id3155104\n"
+"379\n"
"help.text"
-msgid "TRIMMEAN"
-msgstr "TRIMMEAN"
+msgid "DISC"
+msgstr "DISC"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3149716\n"
-"95\n"
+"04060103.xhp\n"
+"par_id3153891\n"
+"380\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GESTUTZTMITTEL\">Returns the mean of a data set without the Alpha percent of data at the margins.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GESTUTZTMITTEL\">Tuutota deetaa kan parsantii alfaa deetaa muudana hin qabneetif miinii kenna.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_DISC\">Calculates the allowance (discount) of a security as a percentage.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DISC\">Hayyama (hir'ina gatii) ittisaa akka dhibbantaatti shallaga.</ahelp>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3149281\n"
-"96\n"
+"04060103.xhp\n"
+"hd_id3153982\n"
+"381\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3154821\n"
-"97\n"
-"help.text"
-msgid "TRIMMEAN(Data; Alpha)"
-msgstr "TRIMMEAN(Deetaa; Alfaa)"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3155834\n"
-"98\n"
-"help.text"
-msgid "<emph>Data</emph> is the array of data in the sample."
-msgstr "<emph>Deetaa</emph>n waraantoo deetaa eddattoo keessaati."
-
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3156304\n"
-"99\n"
+"04060103.xhp\n"
+"par_id3149756\n"
+"382\n"
"help.text"
-msgid "<emph>Alpha</emph> is the percentage of the marginal data that will not be taken into consideration."
-msgstr "<emph>Alfaa</emph>n dhibbeentaa deetaa mudanaa hedanna keessaa galuu dhiisuu danda'uuti."
+msgid "DISC(\"Settlement\"; \"Maturity\"; Price; Redemption; Basis)"
+msgstr "DISC(\"Qubannoo\"; \"Bilchina\"; Gatii; Mugoota Kanfaluu; Hundee)"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3151180\n"
-"100\n"
+"04060103.xhp\n"
+"par_id3156014\n"
+"383\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3156130\n"
-"101\n"
+"04060103.xhp\n"
+"par_id3154304\n"
+"384\n"
"help.text"
-msgid "<item type=\"input\">=TRIMMEAN(A1:A50; 0.1)</item> calculates the mean value of numbers in A1:A50, without taking into consideration the 5 percent of the values representing the highest values and the 5 percent of the values representing the lowest ones. The percentage numbers refer to the amount of the untrimmed mean value, not to the number of summands."
-msgstr "<item type=\"input\">=TRIMMEAN(A1:A50; 0.1)</item> osoo parsantii 5 kan gatiiwwanii gatiiwwan olaantoo bakka bu'anii fi parsantii 5 kan gatiiwwanii gatiiwwan gadaantoo bakka bu'u hedannaa keessa hingalchiin, gatii miinii kan lakkoofsota A1:A50 keessa jiranii shallaga."
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3153216\n"
+"04060103.xhp\n"
+"par_id3159180\n"
+"385\n"
"help.text"
-msgid "<bookmark_value>ZTEST function</bookmark_value>"
-msgstr "<bookmark_value>Fankishnii ZTEST</bookmark_value>"
+msgid "<emph>Price</emph> is the price of the security per 100 currency units of par value."
+msgstr "<emph>Gatiin</emph> gatii ittisaa safartuu maallaqaa 100 keessaa kan gatii pariidha."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3153216\n"
-"103\n"
+"04060103.xhp\n"
+"par_id3147253\n"
+"386\n"
"help.text"
-msgid "ZTEST"
-msgstr "ZTEST"
+msgid "<emph>Redemption</emph> is the redemption value of the security per 100 currency units of par value."
+msgstr "<emph>Mugoota Kanfaluun</emph> gatii mugoota kanfaluu ittisaa safartuu maallaqaa 100 keessaa kan gatii 'par'iidha."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3150758\n"
-"104\n"
+"04060103.xhp\n"
+"hd_id3151174\n"
+"387\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GTEST\">Calculates the probability of observing a z-statistic greater than the one computed based on a sample.</ahelp>"
-msgstr ""
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3150872\n"
-"105\n"
+"04060103.xhp\n"
+"par_id3155902\n"
+"388\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "A security is purchased on 2001-01-25; the maturity date is 2001-11-15. The price (purchase price) is 97, the redemption value is 100. Using daily balance calculation (basis 3) how high is the settlement (discount)?"
+msgstr "Ittisni gaafa 2001-01-25 bitame; guyyaan bilchinaa 2001-11-15. Gatii (gatiin bittaa) 97 dha, gatiin mugoota kanfaluu 100 dha. Shallaga guyyaadhaan madaaluu (hundee 3) fayyadamuun qubannoon (hir'inni gatii) hammam guddataa?"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153274\n"
-"106\n"
+"04060103.xhp\n"
+"par_id3152797\n"
+"389\n"
"help.text"
-msgid "ZTEST(Data; mu; Sigma)"
-msgstr "ZTEST(Deetaa; Lakkofsa; Sigmaa)"
+msgid "<item type=\"input\">=DISC(\"2001-01-25\";\"2001-11-15\";97;100;3)</item> returns about 0.0372 or 3.72 per cent."
+msgstr "<item type=\"input\">=DISC(\"2001-01-25\";\"2001-11-15\";97;100;3)</item> waa'ee parasantii 0.0372 ykn 3.72 deebisa."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3156109\n"
-"107\n"
+"04060103.xhp\n"
+"bm_id3154695\n"
"help.text"
-msgid "<emph>Data</emph> is the given sample, drawn from a normally distributed population."
-msgstr ""
+msgid "<bookmark_value>DURATION_ADD function</bookmark_value> <bookmark_value>Microsoft Excel functions</bookmark_value> <bookmark_value>durations;fixed interest securities</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii DURATION_ADD </bookmark_value> <bookmark_value>Faankishinoota Ekseelii Maaykiroosooftii</bookmark_value> <bookmark_value>Turtiiwwan;ittisa dhalaa dhaabbataa</bookmark_value>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3149977\n"
-"108\n"
+"04060103.xhp\n"
+"hd_id3154695\n"
+"402\n"
"help.text"
-msgid "<emph>mu</emph> is the known mean of the population."
-msgstr ""
+msgid "DURATION_ADD"
+msgstr "DURATION_ADD"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3154740\n"
-"109\n"
+"04060103.xhp\n"
+"par_id3145768\n"
+"403\n"
"help.text"
-msgid "<emph>Sigma</emph> (optional) is the known standard deviation of the population. If omitted, the standard deviation of the given sample is used."
-msgstr ""
+msgid "<ahelp hid=\"HID_AAI_FUNC_DURATION\">Calculates the duration of a fixed interest security in years.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DURATION\">Turmaata ittisa dhaalaa dhabbataa waggaa keessaa shhallaga.</ahelp>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id0305200911372999\n"
+"04060103.xhp\n"
+"hd_id3153904\n"
+"404\n"
"help.text"
-msgid "See also the <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_ZTEST_function\">Wiki page</link>."
-msgstr ""
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3153623\n"
+"04060103.xhp\n"
+"par_id3153373\n"
+"405\n"
"help.text"
-msgid "<bookmark_value>HARMEAN function</bookmark_value> <bookmark_value>means;harmonic</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii HARMEAN</bookmark_value> <bookmark_value>miiniwwan;harmonikii</bookmark_value>"
+msgid "DURATION_ADD(\"Settlement\"; \"Maturity\"; Coupon; Yield; Frequency; Basis)"
+msgstr "DURATION_ADD(\"Qubannoo\"; \"Bilchina\"; Boonoo; Kenna; Ammamtaa; Hundee)"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3153623\n"
-"113\n"
+"04060103.xhp\n"
+"par_id3155397\n"
+"406\n"
"help.text"
-msgid "HARMEAN"
-msgstr "HARMEAN"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3155102\n"
-"114\n"
+"04060103.xhp\n"
+"par_id3148558\n"
+"407\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_HARMITTEL\">Returns the harmonic mean of a data set.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_HARMITTEL\">Miinii harmonikii tuuta deetaa kenna.</ahelp>"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3146900\n"
-"115\n"
+"04060103.xhp\n"
+"par_id3153096\n"
+"408\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<emph>Coupon</emph> is the annual coupon interest rate (nominal rate of interest)"
+msgstr "<emph>Boonoon</emph> boonoo reetii dhalaa waggaa (reetii dhalaa xiqqaa) dha."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3149287\n"
-"116\n"
+"04060103.xhp\n"
+"par_id3154594\n"
+"409\n"
"help.text"
-msgid "HARMEAN(Number1; Number2; ...Number30)"
-msgstr "HARMEAN(Lakkofsa1; Lakkoofsa2; ...Lakkoofsa30)"
+msgid "<emph>Yield</emph> is the annual yield of the security."
+msgstr "<emph>kennaa</emph> ittisa kenna waggaati."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3154303\n"
-"117\n"
+"04060103.xhp\n"
+"par_id3149906\n"
+"410\n"
"help.text"
-msgid "<emph>Number1,Number2,...Number30</emph> are up to 30 values or ranges, that can be used to calculate the harmonic mean."
-msgstr "<emph>Lakkofsa1; Lakkoofsa2; ...Lakkoofsa30</emph> gatiiwwan ykn hangiiwwan hanga 30ti, kan miinii harmonikii shallaguuf fayyaduu dha."
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Ammamtaa</emph>n lakkoofsa kanfaltiiwwan dhalaa waggaati (1, 2 ykn 4)."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3159179\n"
-"118\n"
+"04060103.xhp\n"
+"hd_id3146995\n"
+"411\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3146093\n"
-"120\n"
+"04060103.xhp\n"
+"par_id3148834\n"
+"412\n"
"help.text"
-msgid "<item type=\"input\">=HARMEAN(23;46;69)</item> = 37.64. The harmonic mean of this random sample is thus 37.64"
-msgstr "<item type=\"input\">=HARMEAN(23;46;69)</item> = 37.64. Miiniin harmonikii eddatto tasaa kana 37.64 ta'a."
+msgid "A security is purchased on 2001-01-01; the maturity date is 2006-01-01. The Coupon rate of interest is 8%. The yield is 9.0%. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how long is the duration?"
+msgstr "Ittisni gaafa 2001-01-01 bitame; guyyaan bilchinaa 2006-01-01. Boonoon reetii dhalaa 8% dha. Kennuun 9.0% dha. Dhalli walakkaa waggaadhaan kaffalama (ammamtaan 2 dha). Shallaga dhala guyyaadhaan walmadaaluu (hundee 3) fayyadamuudhaan turmaatni hammamii?"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3152801\n"
+"04060103.xhp\n"
+"par_id3154902\n"
+"413\n"
"help.text"
-msgid "<bookmark_value>HYPGEOMDIST function</bookmark_value> <bookmark_value>sampling without replacement</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii HYPGEOMDIST</bookmark_value> <bookmark_value>osoo bakka hin buusin eddateessuu</bookmark_value>"
+msgid "<item type=\"input\">=DURATION_ADD(\"2001-01-01\";\"2006-01-01\";0.08;0.09;2;3)</item>"
+msgstr "<item type=\"input\">=DURATION_ADD(\"2001-01-01\";\"2006-01-01\";0.08;0.09;2;3)</item>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3152801\n"
-"122\n"
+"04060103.xhp\n"
+"bm_id3159147\n"
"help.text"
-msgid "HYPGEOMDIST"
-msgstr "HYPGEOMDIST"
+msgid "<bookmark_value>annual net interest rates</bookmark_value> <bookmark_value>calculating; annual net interest rates</bookmark_value> <bookmark_value>net annual interest rates</bookmark_value> <bookmark_value>EFFECTIVE function</bookmark_value>"
+msgstr "<bookmark_value>reetii dhalaa culkee waggaa</bookmark_value> <bookmark_value>shallaguu; reetii dhalaa culkee waggaa</bookmark_value> <bookmark_value>reetii dhalaa culkee waggaa</bookmark_value> <bookmark_value>Faankishinii BU'AA QABEESSA</bookmark_value>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3159341\n"
-"123\n"
+"04060103.xhp\n"
+"hd_id3159147\n"
+"88\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Returns the hypergeometric distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Raabsa hayparji'omeetirikii kenna.</ahelp>"
+msgid "EFFECTIVE"
+msgstr "BU'AA QABEESSA"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3154697\n"
-"124\n"
+"04060103.xhp\n"
+"par_id3154204\n"
+"89\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\"HID_FUNC_EFFEKTIV\">Returns the net annual interest rate for a nominal interest rate.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_EFFEKTIV\">reetii dhalaa xiqqaadhaaf reetii dhalaa waggaa culkee keenna.</ahelp>"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3155388\n"
-"125\n"
+"04060103.xhp\n"
+"par_id3145417\n"
+"90\n"
"help.text"
-msgid "HYPGEOMDIST(X; NSample; Successes; NPopulation)"
-msgstr "HYPGEOMDIST(X; eddatooN; argamawwan; PopuleshiniiN)"
+msgid "Nominal interest refers to the amount of interest due at the end of a calculation period. Effective interest increases with the number of payments made. In other words, interest is often paid in installments (for example, monthly or quarterly) before the end of the calculation period."
+msgstr "Dhalli xiqqaan hamma dhalaa sababa dhuma yeroo shallagaatiin argame ibsa.Dhalli bu'aa qabeessi lakkoofsa kaffaltii raawwatame waliin dabala.Karaa biraatiin, dhalli dhuma yeroo shallaggiin dura qabdiidhaan kaffalama (fakkeenyaaf, ji'a ji'aan ykn kurmaanaan)."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3154933\n"
-"126\n"
+"04060103.xhp\n"
+"hd_id3150510\n"
+"91\n"
"help.text"
-msgid "<emph>X</emph> is the number of results achieved in the random sample."
-msgstr "<emph>X</emph>n eddattoo tasaa keessaa lakkoofsa bu'awwan argamaniiti."
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153106\n"
-"127\n"
+"04060103.xhp\n"
+"par_id3148805\n"
+"92\n"
"help.text"
-msgid "<emph>NSample</emph> is the size of the random sample."
-msgstr "<emph>eddattooN</emph> hamamtaa eddattoo tasaati."
+msgid "EFFECTIVE(Nom; P)"
+msgstr "BU'AA QABEESSA(Nom; P)"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3146992\n"
-"128\n"
+"04060103.xhp\n"
+"par_id3149768\n"
+"93\n"
"help.text"
-msgid "<emph>Successes</emph> is the number of possible results in the total population."
-msgstr "<emph>Milkiiwwan</emph> lakkoofsa bu'aawwan minaadama hunda keessatti danda'amuuti."
+msgid "<emph>Nom</emph> is the nominal interest."
+msgstr "<emph>Nom</emph> dhala xiqqaadha."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3148826\n"
-"129\n"
+"04060103.xhp\n"
+"par_id3149334\n"
+"94\n"
"help.text"
-msgid "<emph>NPopulation </emph>is the size of the total population."
-msgstr "<emph>MinaadamaN </emph>n hamamtaa ida'ama populeeshiniiti."
+msgid "<emph>P</emph> is the number of interest payment periods per year."
+msgstr "<emph>P</emph>n lakkoofsa yeroo kaffaltii dhalaa waggaa tokko keessaadha."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3150529\n"
-"130\n"
+"04060103.xhp\n"
+"hd_id3154223\n"
+"95\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3154904\n"
-"131\n"
-"help.text"
-msgid "<item type=\"input\">=HYPGEOMDIST(2;2;90;100)</item> yields 0.81. If 90 out of 100 pieces of buttered toast fall from the table and hit the floor with the buttered side first, then if 2 pieces of buttered toast are dropped from the table, the probability is 81%, that both will strike buttered side first."
-msgstr "<item type=\"input\">=HYPGEOMDIST(2;2;90;100)</item> 0.81 kenna. Yoo kutatawwan tostii dibame 100 keessaa 90 minjaala irraa kufani fi jalqaba gama dibameen yoo lafa rukutan, itti aansun kutatawwan 2 tostii dibamee mijaala irraa kufan,pirobaabilitiin 81% ta'a, kan lamaanuu jalqaba gama dibameen tuquu danda'an."
-
-#: 12010100.xhp
-msgctxt ""
-"12010100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Options"
-msgstr "Dirqalaalee"
-
-#: 12010100.xhp
-msgctxt ""
-"12010100.xhp\n"
-"hd_id3154760\n"
-"1\n"
-"help.text"
-msgid "Options"
-msgstr "Dirqalaalee"
-
-#: 12010100.xhp
+#: 04060103.xhp
msgctxt ""
-"12010100.xhp\n"
-"hd_id3153379\n"
-"3\n"
+"04060103.xhp\n"
+"par_id3144499\n"
+"96\n"
"help.text"
-msgid "Contains column labels"
-msgstr "Moggaasa tarjaa of keessatti qabata"
+msgid "If the annual nominal interest rate is 9.75% and four interest calculation periods are defined, what is the actual interest rate (effective rate)?"
+msgstr "Osoo reetiin dhala xiqqaa waggaa 9.75% fi yeroon shallaga dhalaa afur ibsaman, reetii sirriin dhalaa (reetii bu'aa qabeessi) maalii?"
-#: 12010100.xhp
+#: 04060103.xhp
msgctxt ""
-"12010100.xhp\n"
-"par_id3148798\n"
-"4\n"
+"04060103.xhp\n"
+"par_id3150772\n"
+"97\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_HEADER\" visibility=\"visible\">Selected cell ranges contains labels.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_HEADER\" visibility=\"visible\">Hangiiwwan man'ee filatamee moggaasa of keessa qaba.</ahelp>"
+msgid "<item type=\"input\">=EFFECTIVE(9.75%;4)</item> = 10.11% The annual effective rate is therefore 10.11%."
+msgstr "<item type=\"input\">=EFFECTIVE(9.75%;4)</item> = 10.11% Kanaafuu reetiin dhalaa waggaa 10.11% dha."
-#: 12010100.xhp
+#: 04060103.xhp
msgctxt ""
-"12010100.xhp\n"
-"hd_id3153970\n"
-"5\n"
+"04060103.xhp\n"
+"bm_id3147241\n"
"help.text"
-msgid "Insert or delete cells"
-msgstr "Man'eewwan haqi ykn galchi"
+msgid "<bookmark_value>effective interest rates</bookmark_value> <bookmark_value>EFFECT_ADD function</bookmark_value>"
+msgstr "<bookmark_value>Reetiiwwan dhalaa bu'aa qabeessa</bookmark_value> <bookmark_value>Faankishinii EFFECT_ADD </bookmark_value>"
-#: 12010100.xhp
+#: 04060103.xhp
msgctxt ""
-"12010100.xhp\n"
-"par_id3154684\n"
-"6\n"
+"04060103.xhp\n"
+"hd_id3147241\n"
+"414\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_SIZE\" visibility=\"visible\">Automatically inserts new rows and columns into the database range in your document when new records are added to the database.</ahelp> To manually update the database range, choose <emph>Data - Refresh</emph> <emph>Range</emph>."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_SIZE\" visibility=\"visible\">Yommuu galmeen haraan kuusaa deetaatti dabalamu,tarreewwaniifi tarjaawwan haraan ofuumaan hangii kuusaa deetaa kan galmee kee keessatti saagama.</ahelp>hujeekan hangi kuusaa deetaa haroomsuuf,<emph>Deetaa-Haroomsi</emph> <emph>Hangii</emph>fili."
+msgid "EFFECT_ADD"
+msgstr "EFFECT_ADD"
-#: 12010100.xhp
+#: 04060103.xhp
msgctxt ""
-"12010100.xhp\n"
-"hd_id3153768\n"
-"7\n"
+"04060103.xhp\n"
+"par_id3147524\n"
+"415\n"
"help.text"
-msgid "Keep formatting"
-msgstr "Dhangeessuu kaa'i"
+msgid "<ahelp hid=\"HID_AAI_FUNC_EFFECT\">Calculates the effective annual rate of interest on the basis of the nominal interest rate and the number of interest payments per annum.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_EFFECT\">Reetii dhalaa xiqqaa fi lakkoofsa kaffaltiiwwan dhalaa 'annum' tokko keessaa irratti hundaa'uudhaan reetii dhalaa waggaa bu'aa qabeessa shallaga.</ahelp>"
-#: 12010100.xhp
+#: 04060103.xhp
msgctxt ""
-"12010100.xhp\n"
-"par_id3147435\n"
-"8\n"
+"04060103.xhp\n"
+"hd_id3155364\n"
+"416\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_FORMAT\" visibility=\"visible\">Applies the existing cell format of headers and first data row to the whole database range.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_FORMAT\" visibility=\"visible\">Dhangii man'ee irraantoota kan duraan jiru fi tarree deetaa jalqabaa gara hangii hundee deetaa hundaa jirutti fayyadama.</ahelp>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 12010100.xhp
+#: 04060103.xhp
msgctxt ""
-"12010100.xhp\n"
-"hd_id3155856\n"
-"9\n"
+"04060103.xhp\n"
+"par_id3155118\n"
+"417\n"
"help.text"
-msgid "Don't save imported data"
-msgstr "Deetaa alaaguu ol hin ka'iin"
+msgid "EFFECT_ADD(NominalRate; NPerY)"
+msgstr "EFFECT_ADD(Reetii Xiqqaa; NPerY)"
-#: 12010100.xhp
+#: 04060103.xhp
msgctxt ""
-"12010100.xhp\n"
-"par_id3153363\n"
-"10\n"
+"04060103.xhp\n"
+"par_id3148907\n"
+"418\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_STRIPDATA\" visibility=\"visible\">Only saves a reference to the database, and not the contents of the cells.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_STRIPDATA\" visibility=\"visible\">Kuusaa deetaa qofa wabii ol kaa'a,qabeentota man'eewwanii hin dabalatu.</ahelp>"
+msgid "<emph>NominalRate</emph> is the annual nominal rate of interest."
+msgstr "<emph>Reetii Xiqqaan</emph> reetii dhalaa xiqqaa waggaati."
-#: 12010100.xhp
+#: 04060103.xhp
msgctxt ""
-"12010100.xhp\n"
-"hd_id3147428\n"
-"11\n"
+"04060103.xhp\n"
+"par_id3154274\n"
+"419\n"
"help.text"
-msgid "Source:"
-msgstr "Madda"
+msgid "<emph>NPerY </emph>is the number of interest payments per year."
+msgstr "<emph>NPerY </emph>iin lakkoofsa kaffaltii dhalaa waggaattii dha."
-#: 12010100.xhp
+#: 04060103.xhp
msgctxt ""
-"12010100.xhp\n"
-"par_id3148576\n"
-"12\n"
+"04060103.xhp\n"
+"hd_id3149156\n"
+"420\n"
"help.text"
-msgid "Displays information about the current database source and any existing operators."
-msgstr "Oddeeffanno madda kuusaa deetaa ammee fi oggeejjiiwwan jiran kamiyyu agarsisa."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12010100.xhp
+#: 04060103.xhp
msgctxt ""
-"12010100.xhp\n"
-"hd_id3146976\n"
-"13\n"
+"04060103.xhp\n"
+"par_id3158426\n"
+"421\n"
"help.text"
-msgid "More <<"
-msgstr "Dabala<<"
+msgid "What is the effective annual rate of interest for a 5.25% nominal rate and quarterly payment."
+msgstr "Reetii xiqqaa 5.25% fi kaffaltii kurnaalaaf reetii dhalaa waggaa bu'aa qabeessaa maali."
-#: 12010100.xhp
-#, fuzzy
+#: 04060103.xhp
msgctxt ""
-"12010100.xhp\n"
-"par_id3149664\n"
-"14\n"
+"04060103.xhp\n"
+"par_id3148927\n"
+"422\n"
"help.text"
-msgid "Hides the additional options."
-msgstr "Dirqalaalee dabalataa dhoksi."
+msgid "<item type=\"input\">=EFFECT_ADD(0.0525;4)</item> returns 0.053543 or 5.3543%."
+msgstr "<item type=\"input\">=EFFECT_ADD(0.0525;4)</item> 0.053543 ykn 5.3543% deebisa."
-#: func_hour.xhp
+#: 04060103.xhp
msgctxt ""
-"func_hour.xhp\n"
-"tit\n"
+"04060103.xhp\n"
+"bm_id3149998\n"
"help.text"
-msgid "HOUR"
-msgstr "sa'aa"
+msgid "<bookmark_value>calculating; arithmetic-degressive depreciations</bookmark_value> <bookmark_value>arithmetic-degressive depreciations</bookmark_value> <bookmark_value>depreciations;arithmetic-degressive</bookmark_value> <bookmark_value>DDB function</bookmark_value>"
+msgstr "<bookmark_value>shallaguu; arithmetic-degressive depreciations</bookmark_value> <bookmark_value>arithmetic-degressive depreciations</bookmark_value> <bookmark_value>dippirisheeshinii;arithmetic-degressive</bookmark_value> <bookmark_value>Faankishinii DDB</bookmark_value>"
-#: func_hour.xhp
+#: 04060103.xhp
msgctxt ""
-"func_hour.xhp\n"
-"bm_id3154725\n"
+"04060103.xhp\n"
+"hd_id3149998\n"
+"99\n"
"help.text"
-msgid "<bookmark_value>HOUR function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii HOUR</bookmark_value>"
+msgid "DDB"
+msgstr "DDB"
-#: func_hour.xhp
+#: 04060103.xhp
msgctxt ""
-"func_hour.xhp\n"
-"hd_id3154725\n"
-"96\n"
+"04060103.xhp\n"
+"par_id3159190\n"
+"100\n"
"help.text"
-msgid "<variable id=\"hour\"><link href=\"text/scalc/01/func_hour.xhp\">HOUR</link></variable>"
-msgstr "<variable id=\"hour\"><link href=\"text/scalc/01/func_hour.xhp\">HOUR</link></variable>"
+msgid "<ahelp hid=\"HID_FUNC_GDA\">Returns the depreciation of an asset for a specified period using the arithmetic-declining method.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GDA\">mala artimeetikii-kuffiisuu fayyadamuudhaan yeroo adda ba'eef dippirisheeshinii qabeenyaa keenna.</ahelp>"
-#: func_hour.xhp
+#: 04060103.xhp
msgctxt ""
-"func_hour.xhp\n"
-"par_id3149747\n"
-"97\n"
+"04060103.xhp\n"
+"par_id3152361\n"
+"101\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_STUNDE\">Returns the hour for a given time value.</ahelp> The hour is returned as an integer between 0 and 23."
-msgstr "<ahelp hid=\"HID_FUNC_STUNDE\">Gatii yerootif sa'aa kenna.</ahelp> Sa'aatiin intijeeri 0 fi 23 gidduu jiruun kennama."
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr "Gatii dippirisheeshinii jalqabaa olaanaa faallaa dippirisheeshinii liinarii ta'e yoo barbaadde unka kana fayyadami. Tokko tokkoo yerootti gatiin dippirisheeshinii hir'achaa deema dabalataanis bittaa booda qabeenyota kasaaraan gatii isaanii guddaa ta'eef (fakkeenyaaf, konkolaattota,kompiiyuutaroota) yeroo hunda fayyada.Maaloo gosa shallagii kana jalatti gatiin buukii gonkuma akka zeeroo hin taane hubadhu."
-#: func_hour.xhp
+#: 04060103.xhp
msgctxt ""
-"func_hour.xhp\n"
-"hd_id3149338\n"
-"98\n"
+"04060103.xhp\n"
+"hd_id3156038\n"
+"102\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: func_hour.xhp
-msgctxt ""
-"func_hour.xhp\n"
-"par_id3150637\n"
-"99\n"
-"help.text"
-msgid "HOUR(Number)"
-msgstr "HOUR(lakkoofsa)"
-
-#: func_hour.xhp
-msgctxt ""
-"func_hour.xhp\n"
-"par_id3147547\n"
-"100\n"
-"help.text"
-msgid "<emph>Number</emph>, as a time value, is a decimal, for which the hour is to be returned."
-msgstr "<emph>Lakkoofsa</emph>, akka gati yerootti, kurnyee dha,kan sa'aan itti kennamu."
-
-#: func_hour.xhp
-msgctxt ""
-"func_hour.xhp\n"
-"hd_id3153264\n"
-"101\n"
-"help.text"
-msgid "Examples"
-msgstr "Fakkeenyawwan"
-
-#: func_hour.xhp
+#: 04060103.xhp
msgctxt ""
-"func_hour.xhp\n"
-"par_id3159215\n"
+"04060103.xhp\n"
+"par_id3166452\n"
"103\n"
"help.text"
-msgid "<item type=\"input\">=HOUR(NOW())</item> returns the current hour"
-msgstr "<item type=\"input\">=HOUR(NOW())</item> sa'aa ammaa kenna."
+msgid "DDB(Cost; Salvage; Life; Period; Factor)"
+msgstr "DDB(Gatiis Salvage; Liriod; Hirmaataa)"
-#: func_hour.xhp
+#: 04060103.xhp
msgctxt ""
-"func_hour.xhp\n"
-"par_id3145152\n"
+"04060103.xhp\n"
+"par_id3153237\n"
"104\n"
"help.text"
-msgid "<item type=\"input\">=HOUR(C4)</item> returns 17 if the contents of C4 = <item type=\"input\">17:20:00</item>."
-msgstr "<item type=\"input\">=HOUR(C4)</item> yoo C4 =<item type=\"input\">17:20:00</item> ta'e 17 kenna."
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr "<emph>Gatii</emph>n gatii qabeenya jalqabaa murteessa."
-#: func_hour.xhp
+#: 04060103.xhp
msgctxt ""
-"func_hour.xhp\n"
-"par_id3154188\n"
+"04060103.xhp\n"
+"par_id3149787\n"
"105\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060102.xhp\" name=\"YEAR\">YEAR</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"NOW\">NOW</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MINUTE\">MINUTE</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MONTH\">MONTH</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"DAY\">DAY</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"WEEKDAY\">WEEKDAY</link>."
-msgstr "<link href=\"text/scalc/01/04060102.xhp\" name=\"YEAR\">YEAR</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"NOW\">NOW</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MINUTE\">MINUTE</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MONTH\">MONTH</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"DAY\">DAY</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"WEEKDAY\">WEEKDAY</link>."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"tit\n"
-"help.text"
-msgid "Add-in Functions, List of Analysis Functions Part One"
-msgstr "Fankishiiniiwwan Idaatu,Kutaa Lammaffaa Tarree Xiinxala Fankishinii"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3152871\n"
-"help.text"
-msgid "<bookmark_value>add-ins; analysis functions</bookmark_value><bookmark_value>analysis functions</bookmark_value>"
-msgstr "<bookmark_value>lakkoofsota immaajiineerii fankishinoota xiinxalaa keessaa </bookmark_value><bookmark_value>lakkoofsota komphileeksii fankishinoota xiinxalaa keessaa</bookmark_value>"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr "<emph>Salveejiin</emph> gatii qabeenyaa dhuma jireenya isaa irrati murteessa."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3152871\n"
-"1\n"
+"04060103.xhp\n"
+"par_id3152945\n"
+"106\n"
"help.text"
-msgid "Add-in Functions, List of Analysis Functions Part One"
-msgstr "Fankishiiniiwwan Idaatu,Kutaa Lammaffaa Tarree Xiinxala Fankishinii"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr "<emph>Jiruu</emph>n lakkoofsa yeroo qabeenyi yeroo hammamiif akka fayyadamamuu qabu ibsudha."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3149873\n"
-"102\n"
+"04060103.xhp\n"
+"par_id3149736\n"
+"107\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060110.xhp\" name=\"General conversion function BASIS\">General conversion function BASIS</link>"
-msgstr "<link href=\"text/scalc/01/04060110.xhp\" name=\"General conversion function BASIS\">fankishinii BASIS jijjirraa walii gala</link>"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr "<emph>Yeroo</emph>n turtii yeroo kan gatiin shallagamuuf ibsa."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3145324\n"
-"5\n"
+"04060103.xhp\n"
+"par_id3150243\n"
+"108\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060116.xhp\" name=\"Analysis functions Part Two\">Analysis functions Part Two</link>"
-msgstr "<link href=\"text/scalc/01/04060116.xhp\" name=\"Analysis functions Part Two\">Fankishinii Xiinxalaa Kutaa Lama</link>"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr "<emph>Hirmaataa</emph>n (dirqalee) hirmaataa dippirisheeshiniin ittiin hir'atudha.Yoo gatiin hin seenne ta'e, durtiin hirmaataa 2 dha."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3155751\n"
-"156\n"
+"04060103.xhp\n"
+"hd_id3159274\n"
+"109\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Back to the Overview</link>"
-msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Ilaalcha gubbaatti duuba deebi'i</link>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"bm_id3153074\n"
+"04060103.xhp\n"
+"par_id3152882\n"
+"110\n"
"help.text"
-msgid "<bookmark_value>Bessel functions</bookmark_value>"
-msgstr "<bookmark_value>fankishinii beezeeli</bookmark_value>"
+msgid "A computer system with an initial cost of 75,000 currency units is to be depreciated monthly over 5 years. The value at the end of the depreciation is to be 1 currency unit. The factor is 2."
+msgstr "Sirni kompiiyuutaraa gatiin isaa jalqabaa safartuu maallaqaa 75,000 ta'e ji'a ji'aan waggaa 5 oliif kuufamuu qaba."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3153334\n"
+"04060103.xhp\n"
+"par_id3154106\n"
"111\n"
"help.text"
-msgid "BESSELI"
-msgstr "BESSELI"
+msgid "<item type=\"input\">=DDB(75000;1;60;12;2) </item>= 1,721.81 currency units. Therefore, the double-declining depreciation in the twelfth month after purchase is 1,721.81 currency units."
+msgstr "Safartuu maallaqaa<item type=\"input\">=DDB(75000;1;60;12;2) </item>= 1,721.81. Kanaafuu, dippirisheeshiniin lama-kuffiisuu bittaa booda ji'a jalqabaa keessa safartuu maallaqaa 1,721.81 dha."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3153960\n"
-"112\n"
+"04060103.xhp\n"
+"bm_id3149962\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">Calculates the modified Bessel function.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">Beezeel fankishinii foyya'ee shallaga.</ahelp>"
+msgid "<bookmark_value>calculating; geometric-degressive depreciations</bookmark_value> <bookmark_value>geometric-degressive depreciations</bookmark_value> <bookmark_value>depreciations;geometric-degressive</bookmark_value> <bookmark_value>DB function</bookmark_value>"
+msgstr "<bookmark_value>shallaguu; dippirisheeshinoota geometric-degressive depreciations</bookmark_value> <bookmark_value>geometric-degressive depreciations</bookmark_value> <bookmark_value>depreciations;geometric-degressive</bookmark_value> <bookmark_value>DB function</bookmark_value>"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3150392\n"
+"04060103.xhp\n"
+"hd_id3149962\n"
"113\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "DB"
+msgstr "DB"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3147295\n"
+"04060103.xhp\n"
+"par_id3148989\n"
"114\n"
"help.text"
-msgid "BESSELI(X; N)"
-msgstr "BESSELI(X; N)"
+msgid "<ahelp hid=\"HID_FUNC_GDA2\">Returns the depreciation of an asset for a specified period using the fixed-declining balance method.</ahelp>"
+msgstr ""
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3151338\n"
+"04060103.xhp\n"
+"par_id3156213\n"
"115\n"
"help.text"
-msgid "<emph>X</emph> is the value on which the function will be calculated."
-msgstr "<emph>X</emph>'n gatii fankishiinin irratti shallagamu dha."
+msgid "This form of depreciation is used if you want to get a higher depreciation value at the beginning of the depreciation (as opposed to linear depreciation). The depreciation value is reduced with every depreciation period by the depreciation already deducted from the initial cost."
+msgstr "Yoo jalqaba dippirisheeshinii irratti(akka faallaa dippirisheeshinii sorooroo ta'etti) gatii dippiakkrisheeshii guddaa yoo barbaadde unki dippirisheeshinii kun ni fayyadamama.Gatiin dippirisheeshinii dippirisheeshinii gatii jalqabaa irraa xiinxalameetiin yeroo dippirisheeshinii hunda waliin hir'ata."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3151392\n"
+"04060103.xhp\n"
+"hd_id3149807\n"
"116\n"
"help.text"
-msgid "<emph>N</emph> is the order of the Bessel function"
-msgstr "<emph>N</emph>'n tartiiba beezeel fankishinii dha."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3153027\n"
-"103\n"
-"help.text"
-msgid "BESSELJ"
-msgstr "BESSELJ"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153015\n"
-"104\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">Calculates the Bessel function (cylinder function).</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">Beezeel fankishinii foyya'ee(fankishiinii siliinderaa) shallaga.</ahelp>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3146884\n"
-"105\n"
-"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150032\n"
-"106\n"
-"help.text"
-msgid "BESSELJ(X; N)"
-msgstr "BESSELJ(X; N)"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150378\n"
-"107\n"
-"help.text"
-msgid "<emph>X</emph> is the value on which the function will be calculated."
-msgstr "<emph>X</emph>'n gatii fankishiinin irratti shallagamu dha."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3145638\n"
-"108\n"
-"help.text"
-msgid "<emph>N</emph> is the order of the Bessel function"
-msgstr "<emph>N</emph>'n tartiiba beezeel fankishinii dha."
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3149946\n"
+"04060103.xhp\n"
+"par_id3153349\n"
"117\n"
"help.text"
-msgid "BESSELK"
-msgstr "BESSELK"
+msgid "DB(Cost; Salvage; Life; Period; Month)"
+msgstr "DB(Gatii; Salveejii; Jiruu; Yeroo; Ji'a)"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3159122\n"
+"04060103.xhp\n"
+"par_id3148462\n"
"118\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">Calculates the modified Bessel function.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">Faannkishinii Beezel haaromfame shallaga.</ahelp>"
+msgid "<emph>Cost</emph> is the initial cost of an asset."
+msgstr "<emph>Gatii</emph>n gatii jalqabaa bu'aati."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3150650\n"
+"04060103.xhp\n"
+"par_id3148658\n"
"119\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
+msgstr "<emph>Balaarraa kan hafe</emph>Gatii mahaallaqa dhuma Dullatooma ti."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3149354\n"
+"04060103.xhp\n"
+"par_id3145371\n"
"120\n"
"help.text"
-msgid "BESSELK(X; N)"
-msgstr "BESSELK(X; N)"
+msgid "<emph>Life</emph> defines the period over which an asset is depreciated."
+msgstr "<emph>Jiruu</emph>n yerootti qabeenyi kuufamu ibsa."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3150481\n"
+"04060103.xhp\n"
+"par_id3154608\n"
"121\n"
"help.text"
-msgid "<emph>X</emph> is the value on which the function will be calculated."
-msgstr "<emph>X</emph>'n gatii fankishiniin irratti shallagamu dha."
+msgid "<emph>Period</emph> is the length of each period. The length must be entered in the same date unit as the depreciation period."
+msgstr "<emph>Yeroo</emph>n dheerina tokko tokkoo yeroo dha. is the length of each period. Turtiin akkuma yeroo dippirisheeshiniiti safartuu aduu walfakkatuun seenuu qaba."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3150024\n"
+"04060103.xhp\n"
+"par_id3150829\n"
"122\n"
"help.text"
-msgid "<emph>N</emph> is the order of the Bessel function"
-msgstr "<emph>N</emph>'n tartiibaa beezeel fankishinii"
+msgid "<emph>Month</emph> (optional) denotes the number of months for the first year of depreciation. If an entry is not defined, 12 is used as the default."
+msgstr "<emph>Jiini</emph> (dirqalee) dippirisheeshinii waggaa jalqabaaf lakkoofsa ji'ootaa bakka bu'a. Yoo galiinsi hin ibsamne ta'e, 12 akka durtiitti fayyada."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3145828\n"
+"04060103.xhp\n"
+"hd_id3151130\n"
"123\n"
"help.text"
-msgid "BESSELY"
-msgstr "BESSELY"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3146877\n"
+"04060103.xhp\n"
+"par_id3156147\n"
"124\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Calculates the modified Bessel function.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Beezeel fankishinii foyya'ee shallaga.</ahelp>"
+msgid "A computer system with an initial cost of 25,000 currency units is to be depreciated over a three year period. The salvage value is to be 1,000 currency units. One period is 30 days."
+msgstr "Sirni kompiiyuutaraa gatii jalqabaa safartuu maallaqaa 25'000 ta'e waggaa sadii keessatti kuufammuu qaba.Gatiin salveejii safartuu maallaqaa 1,000 ta,uu qaba. Yeroon tokko guyyoota 30 dha."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3146941\n"
+"04060103.xhp\n"
+"par_id3149513\n"
"125\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<item type=\"input\">=DB(25000;1000;36;1;6)</item> = 1,075.00 currency units"
+msgstr "<item type=\"input\">=DB(25000;1000;36;1;6)</item> = 1,075.00 safartuu maallaqaa"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3148884\n"
+"04060103.xhp\n"
+"par_id3159242\n"
"126\n"
"help.text"
-msgid "BESSELY(X; N)"
-msgstr "BESSELY(X; N)"
+msgid "The fixed-declining depreciation of the computer system is 1,075.00 currency units."
+msgstr "Dippirisheeshiniin kuffisuu-dhaabbataa sirna kompiiyuutaraa safartuu maallaqaa 1,075.00 dha."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3147475\n"
-"127\n"
+"04060103.xhp\n"
+"bm_id3153948\n"
"help.text"
-msgid "<emph>X</emph> is the value on which the function will be calculated."
-msgstr "<emph>X</emph>'n gatii fankishinii irratti shallagamu."
+msgid "<bookmark_value>IRR function</bookmark_value> <bookmark_value>calculating;internal rates of return, regular payments</bookmark_value> <bookmark_value>internal rates of return;regular payments</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii IRR</bookmark_value> <bookmark_value>shallaguu;reetiiwwan deebii keessoo, kaffaltiiwwan idilee</bookmark_value> <bookmark_value>reetiiwwan deebii keessoo;kaffaltiiwwan idilee</bookmark_value>"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3147421\n"
+"04060103.xhp\n"
+"hd_id3153948\n"
"128\n"
"help.text"
-msgid "<emph>N</emph> is the order of the Bessel function"
-msgstr "<emph>N</emph>'n tartiibaa beezeel fankishinii is the order of the Bessel function"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3153034\n"
-"help.text"
-msgid "<bookmark_value>BIN2DEC function</bookmark_value><bookmark_value>converting;binary numbers, into decimal numbers</bookmark_value>"
-msgstr "<bookmark_value>fankishinii BIN2DEC </bookmark_value><bookmark_value>jijjiiruun;lakkoofsota baayineerii, gara lakkoofsota deesimaaliitti</bookmark_value>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3153034\n"
-"17\n"
-"help.text"
-msgid "BIN2DEC"
-msgstr "BIN2DEC"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3144744\n"
-"18\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">The result is the decimal number for the binary number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">Firiin isaa lakkoofsota baayineerii galfameef lakkoofsota deesiimaalii ta'a..</ahelp>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3145593\n"
-"19\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3149726\n"
-"20\n"
-"help.text"
-msgid "BIN2DEC(Number)"
-msgstr "BIN2DEC(Lakkoofsa)"
-
-#: 04060115.xhp
-#, fuzzy
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150142\n"
-"21\n"
-"help.text"
-msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
-msgstr "<emph>Lakkoofsi</emph> lakkoofsota baayineerii dha.Gatii olaanaa bakkeewwan(biitiwwan) qabachuu danda'uu 10 dha.Biitin calqaba xiyyoo irra mallattoo biiti taati,biitiiwwan iti aanuun dhufaan gatii kennu.Lakkoofsootni neegaativii akkaa tuuskompiilimeentitti galfamu."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3149250\n"
-"22\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3145138\n"
-"23\n"
-"help.text"
-msgid "<item type=\"input\">=BIN2DEC(1100100)</item> returns 100."
-msgstr "<item type=\"input\">=BIN2DEC(1100100)</item> 100 kenna."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3149954\n"
-"help.text"
-msgid "<bookmark_value>BIN2HEX function</bookmark_value><bookmark_value>converting;binary numbers, into hexadecimal numbers</bookmark_value>"
-msgstr "<bookmark_value>fankishinii BIN2HEX</bookmark_value><bookmark_value>jijjiiruun;lakkoofsota baayineerii, gara lakkoofsota heeksaadeesimaaliitti</bookmark_value>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3149954\n"
-"24\n"
-"help.text"
-msgid "BIN2HEX"
-msgstr "BIN2HEX"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3148585\n"
-"25\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2HEX\">The result is the hexadecimal number for the binary number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2HEX\">Firiin isaa lakkoofsota baayineerii galfameef lakkoofsota heeksaadeesiimaalii ta'a..</ahelp>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3153936\n"
-"26\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3148753\n"
-"27\n"
-"help.text"
-msgid "BIN2HEX(Number; Places)"
-msgstr "BIN2HEX(Lakkoofsa; Bakkeewwan)"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3155255\n"
-"28\n"
-"help.text"
-msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
-msgstr "<emph>Lakkoofsa</emph> lakkoofsota baayineerii dha.Gatii olaanaa bakkeewwan(biitiwwan) qabachuu danda'uu 10 dha.Biitin calqaba xiyyoo irra mallattoo biiti taati.Lakkoofsootni neegaativii akkaa tuuskompiilimeentitti galfamu."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150860\n"
-"29\n"
-"help.text"
-msgid "Places means the number of places to be output."
-msgstr "Bakkeewwan jechuun lakkoofsa bakkeewwani firii ta'anidha."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3155829\n"
-"30\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3149686\n"
-"31\n"
-"help.text"
-msgid "<item type=\"input\">=BIN2HEX(1100100;6)</item> returns 000064."
-msgstr "<item type=\"input\">=BIN2HEX(1100100;6)</item> 000064 kenna."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3153332\n"
-"help.text"
-msgid "<bookmark_value>BIN2OCT function</bookmark_value><bookmark_value>converting;binary numbers, into octal numbers</bookmark_value>"
-msgstr "<bookmark_value>fankishinii BIN2OCT </bookmark_value><bookmark_value>jijjiiruun;lakkoofsota baayineerii, gara lakkoofsota oktaaliitti</bookmark_value>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3153332\n"
-"9\n"
-"help.text"
-msgid "BIN2OCT"
-msgstr "BIN2OCT"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3155951\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\"> The result is the octal number for the binary number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\">Firiin isaa lakkoofsota baayineerii galfameef lakkoofsota oktaalii ta'a..</ahelp>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3153001\n"
-"11\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3154508\n"
-"12\n"
-"help.text"
-msgid "BIN2OCT(Number; Places)"
-msgstr "BIN2OCT(lakkoofsa; Bakkeewwan)"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153567\n"
-"13\n"
-"help.text"
-msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
-msgstr "<emph>Lakkoofsii</emph> lakkoofsa lamee dha. lakkoofsii yoo bayyatee iddoowwan (bitiiwwan) 10 qabaachuu danda'aa. Bitiin jalqabaa bitii mallatooti. Lakkoofsotni naagativii akka compilimeentii lamati galfama."
-
-#: 04060115.xhp
-#, fuzzy
-msgctxt ""
-"04060115.xhp\n"
-"par_id3155929\n"
-"14\n"
-"help.text"
-msgid "<emph>Places</emph> means the number of places to be output."
-msgstr "<emph>iddoowwan</emph> iddoowwan lakkoofsa bahaa jechuu dha."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3150128\n"
-"15\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153733\n"
-"16\n"
-"help.text"
-msgid "<item type=\"input\">=BIN2OCT(1100100;4)</item> returns 0144."
-msgstr "<item type=\"input\">=BIN2OCT(1100100;4)</item> 0144 kenna."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3150014\n"
-"help.text"
-msgid "<bookmark_value>DELTA function</bookmark_value><bookmark_value>recognizing;equal numbers</bookmark_value>"
-msgstr "<bookmark_value>fankishinii DELTA</bookmark_value><bookmark_value>addaabasaa;lakkoofsa walqixa</bookmark_value>"
+msgid "IRR"
+msgstr "IRR"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3150014\n"
+"04060103.xhp\n"
+"par_id3143282\n"
"129\n"
"help.text"
-msgid "DELTA"
-msgstr "DELTA"
+msgid "<ahelp hid=\"HID_FUNC_IKV\">Calculates the internal rate of return for an investment.</ahelp> The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr "<ahelp hid=\"HID_FUNC_IKV\">Kaawwatiidhaaf reetii deebii keessoo shallaga.</ahelp> Gatiiwwan gatii callaa giddu'uu idileedhaan bakka buusa, yoo xiqqaate gatiin tokko negetiiva ta'uu qaba (kaffaltiiwwan), fi yoo xiqqaate gatiin tokko pozatiiva ta'uu qaba (galii)."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3148760\n"
+"04060103.xhp\n"
+"hd_id3150599\n"
"130\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_DELTA\">The result is TRUE (1) if both numbers, which are delivered as an argument, are equal, otherwise it is FALSE (0).</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_DELTA\">firiin isaa TRUE (1) ta'a yoo lakkoofsi lamaanuu, kan akka qajeelfamati kennamu, walqixa, ykn FALSE (0) ta'a.</ahelp>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3155435\n"
+"04060103.xhp\n"
+"par_id3155427\n"
"131\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "IRR(Values; Guess)"
+msgstr "IRR(Gatiiwwan; Tilmaama)"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3145247\n"
+"04060103.xhp\n"
+"par_id3144758\n"
"132\n"
"help.text"
-msgid "DELTA(Number1; Number2)"
-msgstr "DELTA(Lakkoofsa1; Lakkoofsa2)"
+msgid "<emph>Values</emph> represents an array containing the values."
+msgstr "<emph>Gatiiwwan</emph> waraantoo gatiiwwan qabatu bakka bu'a."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3149002\n"
+"04060103.xhp\n"
+"par_id3149233\n"
"133\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<emph>Guess</emph> (optional) is the estimated value. An iterative method is used to calculate the internal rate of return. If you can provide only few values, you should provide an initial guess to enable the iteration."
+msgstr "<emph>Tilmaamni</emph> (dirqalee) gatii tilmaamamedha.Malli aytireetiivii reetii deebii keessoo shallaguuf fayyada.Yoo gatiiwwan xiqqoo qofa dhiheessuu dandeessa ta'e,aytireeshinii kakaasuuf tilmaama dursaa dhiheessi."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3151020\n"
+"04060103.xhp\n"
+"hd_id3151258\n"
"134\n"
"help.text"
-msgid "<item type=\"input\">=DELTA(1;2)</item> returns 0."
-msgstr "<item type=\"input\">=DELTA(1;2)</item> 0 kenna."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3157971\n"
-"help.text"
-msgid "<bookmark_value>DEC2BIN function</bookmark_value><bookmark_value>converting;decimal numbers, into binary numbers</bookmark_value>"
-msgstr "<bookmark_value>fankishinii DEC2BIN</bookmark_value><bookmark_value>jijjiiruu;kurnyee lakkoofsota, gara lakkoofsota lameeti</bookmark_value>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3157971\n"
-"55\n"
-"help.text"
-msgid "DEC2BIN"
-msgstr "DEC2BIN"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153043\n"
-"56\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2BIN\"> The result is the binary number for the decimal number entered between -512 and 511.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2BIN\"> Firiin lakkoofsa kurnyee -512 fi 511 galfamee lakkoofsa lamee ta'a.</ahelp>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3145349\n"
-"57\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150569\n"
-"58\n"
-"help.text"
-msgid "DEC2BIN(Number; Places)"
-msgstr "DEC2BIN(lakkoofsa; Bakkeewwan)"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3148768\n"
-"59\n"
-"help.text"
-msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns a binary number with 10 characters. The most significant bit is the sign bit, the other 9 bits return the value."
-msgstr "<emph>Lakkoofsii</emph> lakkoofsa kurnyee dha. Yoo lakkoofsii neegatiivii ta'ee; fankishinichi lakkoofsa lamee arfiilee 10 waliin kena. Bitiin jaqabaa bitii mallattooti, bitiin 9n hafan gatii kennu"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3149537\n"
-"60\n"
-"help.text"
-msgid "<emph>Places</emph> means the number of places to be output."
-msgstr "<emph>Bakkeewwan</emph> jechuun lakkoofsa bakkeewwan bahaati."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3150265\n"
-"61\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150662\n"
-"62\n"
-"help.text"
-msgid "<item type=\"input\">=DEC2BIN(100;8)</item> returns 01100100."
-msgstr "<item type=\"input\">=DEC2BIN(100;8)</item> 01100100 kenna."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3149388\n"
-"help.text"
-msgid "<bookmark_value>DEC2HEX function</bookmark_value><bookmark_value>converting;decimal numbers, into hexadecimal numbers</bookmark_value>"
-msgstr "<bookmark_value>fankishinii DEC2HEX</bookmark_value><bookmark_value>jijjiiruu;kurnyee lakkoofsota, gara lakkoofsota kurnyee kudhaja'ati</bookmark_value>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3149388\n"
-"71\n"
-"help.text"
-msgid "DEC2HEX"
-msgstr "DEC2HEX"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3149030\n"
-"72\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\">The result is the hexadecimal number for the decimal number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\">Firiin lakkoofsa kurnyee kudhaja'aa kurnyee lakkoofsatif galchii.</ahelp>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3150691\n"
-"73\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3147535\n"
-"74\n"
-"help.text"
-msgid "DEC2HEX(Number; Places)"
-msgstr "DEC2HEX(lakkoofsa; Bakkeewwan)"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3152820\n"
-"75\n"
-"help.text"
-msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns a hexadecimal number with 10 characters (40 bits). The most significant bit is the sign bit, the other 39 bits return the value."
-msgstr "<emph>Lakkoofsaii</emph> lakkoofsa kurnyee dha. Yoo lakkoofsii neegatiivii ta'ee; fankishinichi lakkoofsa kurnyee kudhaja'a arfiilee 10(bitiiwwan 40) kenna. Bitiin jaqabaa bitii mallattooti, bitiiwwan 39 hafan gatii kenna."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153221\n"
-"76\n"
-"help.text"
-msgid "<emph>Places</emph> means the number of places to be output."
-msgstr "<emph>Bakkeewwan</emph> jechuun lakkoofsa bakkeewwan bahaati."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3154869\n"
-"77\n"
-"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150476\n"
-"78\n"
-"help.text"
-msgid "<item type=\"input\">=DEC2HEX(100;4)</item> returns 0064."
-msgstr "<item type=\"input\">=DEC2HEX(100;4)</item> 0064 kenna."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3154948\n"
-"help.text"
-msgid "<bookmark_value>DEC2OCT function</bookmark_value><bookmark_value>converting;decimal numbers, into octal numbers</bookmark_value>"
-msgstr "<bookmark_value>fankishinii DEC2OCT</bookmark_value><bookmark_value>jijjiiruu;kurnyee lakkoofsotaa, gara lakkoofsota kurnyee saddeetotatti</bookmark_value>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3154948\n"
-"63\n"
-"help.text"
-msgid "DEC2OCT"
-msgstr "DEC2OCT"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153920\n"
-"64\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2OCT\">The result is the octal number for the decimal number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2OCT\">Firiin lakkoofsa kurnyee saddeetii kurnyee lakkofsatif galfama.</ahelp>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3153178\n"
-"65\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3148427\n"
-"66\n"
-"help.text"
-msgid "DEC2OCT(Number; Places)"
-msgstr "DEC2OCT(lakkoofsa; Bakkeewwan)"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3155991\n"
-"67\n"
-"help.text"
-msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns an octal number with 10 characters (30 bits). The most significant bit is the sign bit, the other 29 bits return the value."
-msgstr "<emph>Lakkoofsaii</emph> lakkoofsa kurnyee dha. Yoo lakkoofsii neegatiivii ta'ee; fankishinichi lakkoofsa kurnyee saddeeti arfiilee 10(bitiiwwan 30) kenna. Bitiin duraa biti mallattooti, bitiin 29 hafan gatii kenna."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3152587\n"
-"68\n"
-"help.text"
-msgid "<emph>Places</emph> means the number of places to be output."
-msgstr "<emph>Bakkeewwan</emph> jechuun lakkoofsa bakkeewwan bahaati."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3147482\n"
-"69\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3154317\n"
-"70\n"
-"help.text"
-msgid "<item type=\"input\">=DEC2OCT(100;4)</item> returns 0144."
-msgstr "<item type=\"input\">=DEC2OCT(100;4)</item> 0144 kenna."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3083446\n"
-"help.text"
-msgid "<bookmark_value>ERF function</bookmark_value><bookmark_value>Gaussian error integral</bookmark_value>"
-msgstr "<bookmark_value>fankishinii ERF</bookmark_value><bookmark_value>Dogongora intiigiralii Gawushiyaanii</bookmark_value>"
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3083446\n"
+"04060103.xhp\n"
+"par_id3150630\n"
"135\n"
"help.text"
-msgid "ERF"
-msgstr "ERF"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150381\n"
-"136\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ERF\">Returns values of the Gaussian error integral.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_ERF\">Dogongora intiigiralii Gawushiyaanii kenna.</ahelp>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3152475\n"
-"137\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3163824\n"
-"138\n"
-"help.text"
-msgid "ERF(LowerLimit; UpperLimit)"
-msgstr "ERF(DaangaaJalaa;Daangaa gubbaa)"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3149715\n"
-"139\n"
-"help.text"
-msgid "<emph>LowerLimit</emph> is the lower limit of the integral."
-msgstr "<emph>Daangaan Jalaa</emph> daangaa jalaa intigiraaliiti."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3156294\n"
-"140\n"
-"help.text"
-msgid "<emph>UpperLimit</emph> is optional. It is the upper limit of the integral. If this value is missing, the calculation takes places between 0 and the lower limit."
-msgstr "<emph>Daangaan gubbaa</emph> dirqala. Daangaa gubbaa intigiraaliti. Yoo gatiin kun irranfatame, shallagiin 0 fi daangaa jalaa jidduuti adeefsifama."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3154819\n"
-"141\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3152974\n"
-"142\n"
-"help.text"
-msgid "<item type=\"input\">=ERF(0;1)</item> returns 0.842701."
-msgstr "<item type=\"input\">=ERF(0;1)</item> 0.842701 kenna."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3145082\n"
-"help.text"
-msgid "<bookmark_value>ERFC function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii ERFC</bookmark_value>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3145082\n"
-"143\n"
-"help.text"
-msgid "ERFC"
-msgstr "ERFC"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3149453\n"
-"144\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ERFC\">Returns complementary values of the Gaussian error integral between x and infinity.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_ERFC\">Gatiiwwan faallaa dogongoraa intiigiraalii gawushiyaanii x fi infinitii jidduu kenna .</ahelp>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3155839\n"
-"145\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153220\n"
-"146\n"
-"help.text"
-msgid "ERFC(LowerLimit)"
-msgstr "ERFC(DaangaaJalaa)"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3147620\n"
-"147\n"
-"help.text"
-msgid "<emph>LowerLimit</emph> is the lower limit of the integral"
-msgstr "<emph>Daangaan Jalaa</emph> daangaa jalaa intigiraaliiti."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3146861\n"
-"148\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3156102\n"
-"149\n"
-"help.text"
-msgid "<item type=\"input\">=ERFC(1)</item> returns 0.157299."
-msgstr "<item type=\"input\">=ERFC(1)</item> 0.157299 kenna."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3152927\n"
-"help.text"
-msgid "<bookmark_value>GESTEP function</bookmark_value><bookmark_value>numbers;greater than or equal to</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii GESTEP</bookmark_value><bookmark_value>lakkoofsota;irra guddaa ykn walqixa</bookmark_value>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3152927\n"
-"150\n"
-"help.text"
-msgid "GESTEP"
-msgstr "GESTEP"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150763\n"
-"151\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_GESTEP\">The result is 1 if <item type=\"literal\">Number</item> is greater than or equal to <item type=\"literal\">Step</item>.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_GESTEP\">Yoo <item type=\"literal\">Lakkoofsa</item>n irra guddaa ykn walqixa <item type=\"literal\">Step</item> ta'e firiin 1 ta'a.</ahelp>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3150879\n"
-"152\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3145212\n"
-"153\n"
-"help.text"
-msgid "GESTEP(Number; Step)"
-msgstr "GESTEP(Lakkoofsa; Ejjatoo)"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3153275\n"
-"154\n"
-"help.text"
-msgid "Example"
-msgstr "fakkeenya"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3156132\n"
-"155\n"
-"help.text"
-msgid "<item type=\"input\">=GESTEP(5;1)</item> returns 1."
-msgstr "<item type=\"input\">=GESTEP(5;1)</item> 1 kenna."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3147276\n"
-"help.text"
-msgid "<bookmark_value>HEX2BIN function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into binary numbers</bookmark_value>"
-msgstr "<bookmark_value>fankishinii HEX2BINn</bookmark_value><bookmark_value>jijjiiruu;kurnyee lakkoofsota kudha ja'a, gara lakkoofsa lameeti</bookmark_value>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3147276\n"
-"79\n"
-"help.text"
-msgid "HEX2BIN"
-msgstr "HEX2BIN"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150258\n"
-"80\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2BIN\">The result is the binary number for the hexadecimal number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2BIN\">Firiin lakkofsa kurnyee kudha ja'a lakkoofsa lamee kenna.</ahelp>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3156117\n"
-"81\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3155847\n"
-"82\n"
-"help.text"
-msgid "HEX2BIN(Number; Places)"
-msgstr "HEX2BIN(Lakkoofsa; Bakkeewwan)"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3152810\n"
-"83\n"
-"help.text"
-msgid "<emph>Number</emph> is a hexadecimal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
-msgstr "<emph>Lakkoofsa</emph> lakkoofsa heeksaadeesimaalii dha.Gatii olaanaa bakkeewwan qabachuu danda'uu 10 dha.Biitin calqaba xiyyoo irra mallattoo biiti taati,biitiiwwan iti aanuun dhufaan gatii kennu.Lakkoofsootni neegaativii akkaa tuuskompiilimeentitti galfamu."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153758\n"
-"84\n"
-"help.text"
-msgid "<emph>Places</emph> is the number of places to be output."
-msgstr "<emph>Bakkeewwan</emph> lakkoofsa bakkeewwan gadii baafamani dha."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3154052\n"
-"85\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3156002\n"
-"86\n"
-"help.text"
-msgid "<item type=\"input\">=HEX2BIN(64;8)</item> returns 01100100."
-msgstr "<item type=\"input\">=HEX2BIN(64;8)</item> 01100100 kenna."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3154742\n"
-"help.text"
-msgid "<bookmark_value>HEX2DEC function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into decimal numbers</bookmark_value>"
-msgstr "<bookmark_value>fankishinii HEX2DEC</bookmark_value><bookmark_value>jijjiiruun;lakkoofsota heeksaadeesimaalii, gara lakkoofsota deesimaaliitti</bookmark_value>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3154742\n"
-"87\n"
-"help.text"
-msgid "HEX2DEC"
-msgstr "HEX2DEC"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153626\n"
-"88\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2DEC\">The result is the decimal number for the hexadecimal number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2DEC\">Firiin isaa lakkoofsota heeksaadeesimaalii galfameef lakkoofsa deesiimaalii ta'a..</ahelp>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3143233\n"
-"89\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3149293\n"
-"90\n"
-"help.text"
-msgid "HEX2DEC(Number)"
-msgstr "HEX2DEC(Lakkoofsa)"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3159176\n"
-"91\n"
-"help.text"
-msgid "<emph>Number</emph> is a hexadecimal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
-msgstr "<emph>Lakkoofsa</emph> lakkoofsa heeksaadeesimaalii dha.Gatii olaanaa bakkeewwan qabachuu danda'uu 10 dha.Biitin calqaba xiyyoo irra mallattoo biiti taati,biitiiwwan iti aanuun dhufaan gatii kennu.Lakkoofsootni neegaativii akkaa tuuskompiilimeentitti galfamu."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3154304\n"
-"92\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3146093\n"
-"93\n"
-"help.text"
-msgid "<item type=\"input\">=HEX2DEC(64)</item> returns 100."
-msgstr "<item type=\"input\">=HEX2DEC(64)</item> 100 kenna."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3149750\n"
-"help.text"
-msgid "<bookmark_value>HEX2OCT function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into octal numbers</bookmark_value>"
-msgstr "<bookmark_value>fankishinii HEX2OCT</bookmark_value><bookmark_value>jijjiiruun;lakkoofsota heeksaadeesimaalii, gara lakkoofsota ooktaaliitti</bookmark_value>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3149750\n"
-"94\n"
-"help.text"
-msgid "HEX2OCT"
-msgstr "HEX2OCT"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153983\n"
-"95\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2OCT\">The result is the octal number for the hexadecimal number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2OCT\">Firiin isaa lakkoofsota heeksaadeesimaalii galfameef lakkoofsa ooktaalii ta'a..</ahelp>"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3145660\n"
-"96\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3151170\n"
-"97\n"
-"help.text"
-msgid "HEX2OCT(Number; Places)"
-msgstr "HEX2OCT(Lakkoofsa; Bakkeewwan)"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3152795\n"
-"98\n"
-"help.text"
-msgid "<emph>Number</emph> is a hexadecimal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
-msgstr "<emph>Lakkoofsi</emph> lakkoofsa heeksaadeesimaalii dha.Gatii olaanaa bakkeewwan qadachuu danda'uu 10 dha.Biitin calqaba xiyyoo irra mallattoo biiti taati,biitiiwwan itti aanuun dhufaan gatii kennu.Lakkoofsootni neegaativii akkaa tuuskompiilimeentitti galfamu."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3149204\n"
-"99\n"
-"help.text"
-msgid "<emph>Places</emph> is the number of places to be output."
-msgstr "<emph>Bakkeewwan</emph> lakkoofsa bakkeewwani gad bafamuuti."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3153901\n"
-"100\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3159341\n"
-"101\n"
-"help.text"
-msgid "<item type=\"input\">=HEX2OCT(64;4)</item> returns 0144."
-msgstr "<item type=\"input\">=HEX2OCT(64;4)</item> 0144 kenna."
-
-#: 12090300.xhp
-msgctxt ""
-"12090300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Delete"
-msgstr "Haqi"
-
-#: 12090300.xhp
-msgctxt ""
-"12090300.xhp\n"
-"hd_id3150276\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12090300.xhp\" name=\"Delete\">Delete</link>"
-msgstr "<link href=\"text/scalc/01/12090300.xhp\" name=\"Delete\">Haqi</link>"
-
-#: 12090300.xhp
-#, fuzzy
-msgctxt ""
-"12090300.xhp\n"
-"par_id3159400\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Deletes the selected pivot table.</ahelp>"
-msgstr "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Gabatee qinxaa filaatamoo haqa.</ahelp>"
-
-#: 05070000.xhp
-msgctxt ""
-"05070000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Page Style"
-msgstr "Akkaataa Fuulaa"
-
-#: 05070000.xhp
-msgctxt ""
-"05070000.xhp\n"
-"hd_id3157910\n"
-"1\n"
-"help.text"
-msgid "Page Style"
-msgstr "Akkaataa Fuulaa"
-
-#: 05070000.xhp
-msgctxt ""
-"05070000.xhp\n"
-"par_id3156023\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:PageFormatDialog\" visibility=\"visible\">Opens a dialog where you can define the appearance of all pages in your document.</ahelp></variable>"
-msgstr "<variable id=\"seitetext\"><ahelp hid=\".uno:PageFormatDialog\" visibility=\"visible\">Qaaqa mul'ina fuulootaa galmee kee keessaa huunda hiiktu bana.</ahelp></variable>"
-
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"tit\n"
-"help.text"
-msgid "SECOND"
-msgstr "SECOND"
+msgid "Under the assumption that cell contents are A1=<item type=\"input\">-10000</item>, A2=<item type=\"input\">3500</item>, A3=<item type=\"input\">7600</item> and A4=<item type=\"input\">1000</item>, the formula <item type=\"input\">=IRR(A1:A4)</item> gives a result of 11,33%."
+msgstr "Tilmaama qabeentoonni mandhee A1=<item type=\"input\">-10000</item>, A2=<item type=\"input\">3500</item>, A3=<item type=\"input\">7600</item> fi A4=<item type=\"input\">1000</item>, foormulaan <item type=\"input\">=IRR(A1:A4)</item> firii 80.24% kenna."
-#: func_second.xhp
+#: 04060103.xhp
msgctxt ""
-"func_second.xhp\n"
-"bm_id3159390\n"
+"04060103.xhp\n"
+"bm_id3151012\n"
"help.text"
-msgid "<bookmark_value>SECOND function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii SECOND</bookmark_value>"
+msgid "<bookmark_value>calculating; interests for unchanged amortization installments</bookmark_value> <bookmark_value>interests for unchanged amortization installments</bookmark_value> <bookmark_value>ISPMT function</bookmark_value>"
+msgstr "<bookmark_value>shallaguu; dhala qabdiiwwan baasii jala jalaa hin jijjiiramne.</bookmark_value> <bookmark_value>dhaloota qabdiiwwan baasii jala jalaa hin jijjiiramne.</bookmark_value> <bookmark_value>faankishinii ISPMT</bookmark_value>"
-#: func_second.xhp
+#: 04060103.xhp
msgctxt ""
-"func_second.xhp\n"
-"hd_id3159390\n"
-"86\n"
+"04060103.xhp\n"
+"hd_id3151012\n"
+"314\n"
"help.text"
-msgid "<variable id=\"second\"><link href=\"text/scalc/01/func_second.xhp\">SECOND</link></variable>"
-msgstr "<variable id=\"second\"><link href=\"text/scalc/01/func_second.xhp\">SECOND</link></variable>"
+msgid "ISPMT"
+msgstr "ISPMT"
-#: func_second.xhp
+#: 04060103.xhp
msgctxt ""
-"func_second.xhp\n"
-"par_id3148974\n"
-"87\n"
+"04060103.xhp\n"
+"par_id3148693\n"
+"315\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SEKUNDE\">Returns the second for the given time value.</ahelp> The second is given as an integer between 0 and 59."
-msgstr "<ahelp hid=\"HID_FUNC_SEKUNDE\">Gatii yerootif seekondii kenna.</ahelp> seekondiin intijeeri 0 fi 59 gidduu jiruun kennama."
+msgid "<ahelp hid=\"HID_FUNC_ISPMT\">Calculates the level of interest for unchanged amortization installments.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISPMT\">Qadiiwwan baasii jala jalaa hin jijjiiramneef sadarkaa dhalaa shallaga.</ahelp>"
-#: func_second.xhp
+#: 04060103.xhp
msgctxt ""
-"func_second.xhp\n"
-"hd_id3154362\n"
-"88\n"
+"04060103.xhp\n"
+"hd_id3154661\n"
+"316\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"par_id3148407\n"
-"89\n"
-"help.text"
-msgid "SECOND(Number)"
-msgstr "SECOND(Lakkoofsa)"
-
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"par_id3155904\n"
-"90\n"
-"help.text"
-msgid "<emph>Number</emph>, as a time value, is a decimal, for which the second is to be returned."
-msgstr "<emph>Lakkoofsa</emph>, akka gati yerootti, kurnyee dha,kan seekondiin itti kennamu."
-
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"hd_id3149992\n"
-"91\n"
-"help.text"
-msgid "Examples"
-msgstr "Fakkeenyawwan"
-
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"par_id3153350\n"
-"93\n"
-"help.text"
-msgid "<item type=\"input\">=SECOND(NOW())</item> returns the current second"
-msgstr "<item type=\"input\">=SECOND(NOW())</item>seekondii ammaa kenna."
-
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"par_id3150831\n"
-"94\n"
-"help.text"
-msgid "<item type=\"input\">=SECOND(C4)</item> returns 17 if contents of C4 = <item type=\"input\">12:20:17</item>."
-msgstr "<item type=\"input\">=SECOND(C4)</item> yoo C4 =<item type=\"input\">17:20:00</item> ta'e 17 kenna."
-
-#: 02190200.xhp
-msgctxt ""
-"02190200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Column Break"
-msgstr "Cita Tarjaa"
-
-#: 02190200.xhp
-msgctxt ""
-"02190200.xhp\n"
-"bm_id3151384\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets;deleting column breaks</bookmark_value><bookmark_value>deleting;manual column breaks</bookmark_value><bookmark_value>column breaks;deleting</bookmark_value>"
-msgstr "<bookmark_value>wardiiwwan;cita tarjaa haquu</bookmark_value><bookmark_value>haquu;citoota tarjaa hujeeka</bookmark_value><bookmark_value>citoota tarjaa;haquu</bookmark_value>"
-
-#: 02190200.xhp
-msgctxt ""
-"02190200.xhp\n"
-"hd_id3151384\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/02190200.xhp\" name=\"Column Break\">Column Break</link>"
-msgstr "<link href=\"text/scalc/01/02190200.xhp\" name=\"Column Break\">Cita Tarjaa</link>"
-
-#: 02190200.xhp
-msgctxt ""
-"02190200.xhp\n"
-"par_id3154124\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:DeleteColumnbreak\">Removes a manual column break to the left of the active cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:DeleteColumnbreak\">Cita hujeeka tarjaa bita man'ee ka'aatti argamu haqa.</ahelp>"
-
-#: 02190200.xhp
-msgctxt ""
-"02190200.xhp\n"
-"par_id3145173\n"
-"3\n"
-"help.text"
-msgid "Position the cursor in the cell to the right of the column break indicated by a vertical line and choose <emph>Edit - Delete Manual Break - Column Break</emph>. The manual column break is removed."
-msgstr "Man'ee gara mirgaa tarjaa sarara sarjaadhaan mul'ifame qubachiisiiti <emph>Gulaali - Cita Hujeekaa Haqi - Cita Tarree</emph>filadhu."
-
-#: 12080100.xhp
-msgctxt ""
-"12080100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Hide Details"
-msgstr "Baldhintaa Dhoksi"
-
-#: 12080100.xhp
-msgctxt ""
-"12080100.xhp\n"
-"bm_id3155628\n"
-"help.text"
-msgid "<bookmark_value>sheets; hiding details</bookmark_value>"
-msgstr "<bookmark_value>wardiiwwan; baldhhintaa dhoksuu</bookmark_value>"
-
-#: 12080100.xhp
-msgctxt ""
-"12080100.xhp\n"
-"hd_id3155628\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\">Hide Details</link>"
-msgstr "<link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\">baldhintaa dhoksi</link>"
-
-#: 12080100.xhp
-msgctxt ""
-"12080100.xhp\n"
-"par_id3154515\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:HideDetail\" visibility=\"visible\">Hides the details of the grouped row or column that contains the cursor. To hide all of the grouped rows or columns, select the outlined table, and then choose this command.</ahelp>"
-msgstr "<ahelp hid=\".uno:HideDetail\" visibility=\"visible\">Baldhiintaa tarree gurmaa'ee ykn tarjaa qaree qabuu dhoksa.Tarreewwan ykn tarjaawwan gurmaa'an hunda dhoksuuf, gabatee toora'e fili,sana booda ajaja kana fili.</ahelp>"
-
-#: 12080100.xhp
-msgctxt ""
-"12080100.xhp\n"
-"par_id3153252\n"
-"3\n"
-"help.text"
-msgid "To show all hidden groups, select the outlined table, and then choose <emph>Data -Outline –</emph> <link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\"><emph>Show Details</emph></link>."
-msgstr "Gareewwan dhokatan hunda agarsisuuf,gabatee toora'e fili, itti aansuun <emph>Deetaa - toorii - </emph> <link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\"><emph>baldhintaa agarsiisi</emph></link>fili."
-
-#: 12090200.xhp
-msgctxt ""
-"12090200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Refresh"
-msgstr "Haroomsi"
-
-#: 12090200.xhp
-msgctxt ""
-"12090200.xhp\n"
-"hd_id3151385\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12090200.xhp\" name=\"Refresh\">Refresh</link>"
-msgstr "<link href=\"text/scalc/01/12090200.xhp\" name=\"Refresh\">Haroomsi</link>"
-
-#: 12090200.xhp
-#, fuzzy
-msgctxt ""
-"12090200.xhp\n"
-"par_id3149456\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:RecalcPivotTable\">Updates the pivot table.</ahelp>"
-msgstr "<ahelp hid=\".uno:RecalcPivotTable\">Gabatee qinxaa haroomsa.</ahelp>"
-
-#: 12090200.xhp
-#, fuzzy
-msgctxt ""
-"12090200.xhp\n"
-"par_id3150400\n"
-"3\n"
-"help.text"
-msgid "After you import an Excel spreadsheet that contains a pivot table, click in the table, and then choose <emph>Data - Pivot Table - Refresh</emph>."
-msgstr "Erga barruu eekseeli isaa gabatee qinxaa qabatee alaagdee booda, gabatee keessa cuqaasun<emph>Deetaa- qinxaa-Haroomsi</emph>filadhu."
-
-#: 05080000.xhp
-msgctxt ""
-"05080000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Print Ranges"
-msgstr "Hangiiwwan Maxxansi"
-
-#: 05080000.xhp
-msgctxt ""
-"05080000.xhp\n"
-"hd_id3154013\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05080000.xhp\" name=\"Print Ranges\">Print Ranges</link>"
-msgstr "<link href=\"text/scalc/01/05080000.xhp\" name=\"Print Ranges\">Hangiiwwan Maxxansi</link>"
-
-#: 05080000.xhp
-msgctxt ""
-"05080000.xhp\n"
-"par_id3155855\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Manages print ranges. Only cells within the print ranges will be printed.</ahelp>"
-msgstr "<ahelp hid=\".\">Hangiiwwan maxxansi taliiga. Man'eewwan hangiiwwan maxxansa keeessa jiran qofatu maxxanfama.</ahelp>"
-
-#: 05080000.xhp
-msgctxt ""
-"05080000.xhp\n"
-"par_id3146119\n"
-"4\n"
-"help.text"
-msgid "If you do not define any print range manually, Calc assigns an automatic print range to include all the cells that are not empty."
-msgstr "yoo hujeekaan hangii maxxansa hin qindeessine, man'eewwan duwwaa hin ta'iin hunda of keessatti haammachuuf shallaggin ofumaan hangii maxxansa ramada."
-
-#: 05080000.xhp
-msgctxt ""
-"05080000.xhp\n"
-"hd_id3154729\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Edit\">Edit</link>"
-msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"Edit\">Gulaali</link>"
-
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"tit\n"
-"help.text"
-msgid "EOMONTH"
-msgstr "EOMONTH"
-
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"bm_id3150991\n"
-"help.text"
-msgid "<bookmark_value>EOMONTH function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii EOMONTH</bookmark_value>"
-
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"hd_id3150991\n"
-"231\n"
-"help.text"
-msgid "<variable id=\"eomonth\"><link href=\"text/scalc/01/func_eomonth.xhp\">EOMONTH</link></variable>"
-msgstr "<variable id=\"eomonth\"><link href=\"text/scalc/01/func_eomonth.xhp\">EOMONTH</link></variable>"
-
-#: func_eomonth.xhp
+#: 04060103.xhp
msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3152766\n"
-"232\n"
+"04060103.xhp\n"
+"par_id3146070\n"
+"317\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_EOMONTH\">Returns the date of the last day of a month which falls m<emph>onths</emph> away from the s<emph>tart date</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_EOMONTH\">Aduu guyyaa xumuraa ji'a kan <emph>ji'oota</emph> bay'ee <emph>guyyaa jalqabaa</emph> dura jiruu kenna.</ahelp>"
+msgid "ISPMT(Rate; Period; TotalPeriods; Invest)"
+msgstr "ISPMT(Reetii; Yeroo; YeroowwanDimshaashaa; Investii)"
-#: func_eomonth.xhp
+#: 04060103.xhp
msgctxt ""
-"func_eomonth.xhp\n"
-"hd_id3150597\n"
-"233\n"
+"04060103.xhp\n"
+"par_id3148672\n"
+"318\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<emph>Rate</emph> sets the periodic interest rate."
+msgstr "<emph>Reetii</emph>n reetii dhala irra deddeebii qindeessa."
-#: func_eomonth.xhp
+#: 04060103.xhp
msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3150351\n"
-"234\n"
+"04060103.xhp\n"
+"par_id3145777\n"
+"319\n"
"help.text"
-msgid "EOMONTH(StartDate; Months)"
-msgstr "EOMONTH(AduuJalqabaa; Ji'oota)"
+msgid "<emph>Period</emph> is the number of installments for calculation of interest."
+msgstr "<emph>Yeroo</emph>n lakkoofsa qabdiiwwanii dhala shallaguudhaaf gargaarudha."
-#: func_eomonth.xhp
+#: 04060103.xhp
msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3146787\n"
-"235\n"
+"04060103.xhp\n"
+"par_id3153678\n"
+"320\n"
"help.text"
-msgid "<emph>StartDate</emph> is a date (the starting point of the calculation)."
-msgstr "<emph>AduuJalqabaa</emph> n aduu(tuqaa ka'umsa shallaggiti)."
+msgid "<emph>TotalPeriods</emph> is the total number of installment periods."
+msgstr "<emph>Irradeddeebbii Dimshaashaa</emph> lakkoofsa dimshaashaa yeroowwan qabdiiti."
-#: func_eomonth.xhp
+#: 04060103.xhp
msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3155615\n"
-"236\n"
+"04060103.xhp\n"
+"par_id3159390\n"
+"321\n"
"help.text"
-msgid "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
-msgstr "<emph>Ji'oota</emph> jechuun lakkoofsa ji'oota aduu jalqabaa dura(negaatiivii) ykn boodaa(pozaativii) jiraniiti."
+msgid "<emph>Invest</emph> is the amount of the investment."
+msgstr "<emph>Investiin</emph> hamma invetimentiiti."
-#: func_eomonth.xhp
+#: 04060103.xhp
msgctxt ""
-"func_eomonth.xhp\n"
-"hd_id3156335\n"
-"237\n"
+"04060103.xhp\n"
+"hd_id3156162\n"
+"322\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3154829\n"
-"238\n"
-"help.text"
-msgid "What is the last day of the month that falls 6 months after September 14 2001?"
-msgstr "Guyyaan xumura ji'aa kan Fulbaana 14,2001 irraa ji'a 6 booda dhufuu maalinni?"
-
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3156143\n"
-"239\n"
-"help.text"
-msgid "<item type=\"input\">=EOMONTH(DATE(2001;9;14);6)</item> returns the serial number 37346. Formatted as a date, this is 2002-03-31."
-msgstr ""
-
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3156144\n"
-"239\n"
-"help.text"
-msgid "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If the date is given as string, it has to be in ISO format."
-msgstr ""
-
-#: 02120000.xhp
-msgctxt ""
-"02120000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Headers & Footers"
-msgstr "Irraantotaa fi Jalaantota"
-
-#: 02120000.xhp
-msgctxt ""
-"02120000.xhp\n"
-"hd_id3145251\n"
-"1\n"
-"help.text"
-msgid "Headers & Footers"
-msgstr "Irraantotaa fi jalaantota"
-
-#: 02120000.xhp
-msgctxt ""
-"02120000.xhp\n"
-"par_id3151073\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"kopfundfusszeilentext\"><ahelp hid=\".uno:EditHeaderAndFooter\">Allows you to define and format headers and footers.</ahelp></variable>"
-msgstr "<variable id=\"kopfundfusszeilentext\"><ahelp hid=\".uno:EditHeaderAndFooter\">Irraantotaa fi jalaantota ibsuufi dhangi'uu si dandeessisa.</ahelp></variable>"
-
-#: 02120000.xhp
-msgctxt ""
-"02120000.xhp\n"
-"par_id3153415\n"
-"3\n"
-"help.text"
-msgid "The<emph> Headers/Footers </emph>dialog contains the tabs for defining headers and footers. There will be separate tabs for the left and right page headers and footers if the <emph>Same content left/right</emph> option was not marked in the <link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\">Page Style</link> dialog."
-msgstr "Qaaqni<emph> Irraantotaa fi Jalaantotaa </emph>irraantotaafi jalaantota ibsuuf caancala qaba. Yoo filannoon <emph>Qabentaa bitaa/mirgaa walfakkaatu</emph> qaaqa <link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\"> Akkaataa Fuulaa </link> keessatti milkataa'e irraantotaa fi jalaantota fuula bitaa fi mirgaaf caancalli garaagaraa jiraachuu ni danda'a."
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"tit\n"
-"help.text"
-msgid "Statistics Functions"
-msgstr "Faankishinoota Istaatistiksii"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"bm_id3153018\n"
-"help.text"
-msgid "<bookmark_value>statistics functions</bookmark_value><bookmark_value>Function Wizard; statistics</bookmark_value><bookmark_value>functions; statistics functions</bookmark_value>"
-msgstr "<bookmark_value>faankishinoota Istaatistiksii</bookmark_value><bookmark_value>Masaka Faankishinii; istaatistiksii</bookmark_value><bookmark_value>faankishinoota; faankishinoota istaatistiksii</bookmark_value>"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"hd_id3153018\n"
-"1\n"
-"help.text"
-msgid "Statistics Functions"
-msgstr "Faankishinoota Istaatistiksii"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3157874\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"statistiktext\">This category contains the <emph>Statistics</emph> functions. </variable>"
-msgstr "<variable id=\"statistiktext\">Akaakuun kun faankishinoota<emph>Istaatistiksii</emph> qabata. </variable>"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3149001\n"
-"9\n"
-"help.text"
-msgid "Some of the examples use the following data table:"
-msgstr "Fakkeenyotni murtaa'an gabatee deetaa armaan gadii fayyadamu:"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3148775\n"
-"10\n"
-"help.text"
-msgid "C"
-msgstr "C"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3145297\n"
-"11\n"
-"help.text"
-msgid "D"
-msgstr "D"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3150661\n"
-"12\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3153551\n"
-"13\n"
-"help.text"
-msgid "x value"
-msgstr "gatii x"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3147536\n"
-"14\n"
-"help.text"
-msgid "y value"
-msgstr "gatii y"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3153224\n"
-"15\n"
-"help.text"
-msgid "3"
-msgstr "3"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3150475\n"
-"16\n"
-"help.text"
-msgid "-5"
-msgstr "-5"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3155367\n"
-"17\n"
-"help.text"
-msgid "-3"
-msgstr "-3"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3149783\n"
-"18\n"
-"help.text"
-msgid "4"
-msgstr "4"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3153181\n"
-"19\n"
-"help.text"
-msgid "-2"
-msgstr "-2"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3148429\n"
-"20\n"
-"help.text"
-msgid "0"
-msgstr "0"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3152588\n"
-"21\n"
-"help.text"
-msgid "5"
-msgstr "5"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3147483\n"
-"22\n"
-"help.text"
-msgid "-1"
-msgstr "-1"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3083443\n"
-"23\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3149826\n"
-"24\n"
-"help.text"
-msgid "6"
-msgstr "6"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3163820\n"
-"25\n"
-"help.text"
-msgid "0"
-msgstr "0"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3154816\n"
-"26\n"
-"help.text"
-msgid "3"
-msgstr "3"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3149276\n"
-"27\n"
-"help.text"
-msgid "7"
-msgstr "7"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3149267\n"
-"28\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3156310\n"
-"29\n"
-"help.text"
-msgid "4"
-msgstr "4"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3154639\n"
-"30\n"
-"help.text"
-msgid "8"
-msgstr "8"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3145205\n"
-"31\n"
-"help.text"
-msgid "4"
-msgstr "4"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3153276\n"
-"32\n"
-"help.text"
-msgid "6"
-msgstr "6"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3150756\n"
-"33\n"
-"help.text"
-msgid "9"
-msgstr "9"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3156095\n"
-"34\n"
-"help.text"
-msgid "6"
-msgstr "6"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3152929\n"
-"35\n"
-"help.text"
-msgid "8"
-msgstr "8"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3156324\n"
-"36\n"
-"help.text"
-msgid "The statistical functions are described in the following subsections."
-msgstr "Faankishinootni istaatistikaalii cita kutaa armaan gadii keessatti ibsamu."
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3150271\n"
-"37\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060116.xhp\" name=\"Statistical Functions in the Analysis-AddIn.\">Statistical Functions in the Analysis-AddIn</link>"
-msgstr "<link href=\"text/scalc/01/04060116.xhp\" name=\"Statistical Functions in the Analysis-AddIn.\">Faankishinoota IStaatistikaalii xiinxala-KeessattiIda'i keessaa</link>"
-
-#: 02190100.xhp
-msgctxt ""
-"02190100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Row Break"
-msgstr "Cita tarree"
-
-#: 02190100.xhp
-msgctxt ""
-"02190100.xhp\n"
-"bm_id3156326\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets; deleting row breaks</bookmark_value><bookmark_value>deleting;manual row breaks</bookmark_value><bookmark_value>row breaks; deleting</bookmark_value>"
-msgstr "<bookmark_value>wardiiwwan; citoota tarree</bookmark_value><bookmark_value>haquu;citoota hujeeka tarree</bookmark_value><bookmark_value>citoota tarree; haquu</bookmark_value>"
-
-#: 02190100.xhp
-msgctxt ""
-"02190100.xhp\n"
-"hd_id3156326\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/02190100.xhp\" name=\"Row Break\">Row Break</link>"
-msgstr "<link href=\"text/scalc/01/02190100.xhp\" name=\"Row Break\">Cita tarree</link>"
-
-#: 02190100.xhp
-msgctxt ""
-"02190100.xhp\n"
-"par_id3154366\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:DeleteRowbreak\">Removes the manual row break above the active cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:DeleteRowbreak\">Cita hujeeka tarree man'ee ka'aatii ol jiru haqa.</ahelp>"
-
-#: 02190100.xhp
-msgctxt ""
-"02190100.xhp\n"
-"par_id3151041\n"
-"3\n"
-"help.text"
-msgid "Position the cursor in a cell directly below the row break indicated by a horizontal line and choose <emph>Edit - Delete Manual Break - Row Break</emph>. The manual row break is removed."
-msgstr "Man'ee cita tarree sarara surdalaan mul'ifame gara gadii jiru keessa qaree qubachiisiiti <emph>Gulaaluu - Cita Hujeekaa Haqi - Cita Tarree</emph> filadhu.Citni hujeeka tarree haqameera."
-
-#: 02140300.xhp
-msgctxt ""
-"02140300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Up"
-msgstr "Olee"
-
-#: 02140300.xhp
-msgctxt ""
-"02140300.xhp\n"
-"hd_id3147264\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/02140300.xhp\" name=\"Up\">Up</link>"
-msgstr "<link href=\"text/scalc/01/02140300.xhp\" name=\"Up\">ol</link>"
-
-#: 02140300.xhp
-msgctxt ""
-"02140300.xhp\n"
-"par_id3150793\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:FillUp\" visibility=\"visible\">Fills a selected range of at least two rows with the contents of the bottom most cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:FillUp\" visibility=\"visible\">Qabeentoota dhuma man'eera jiraniif yoo xiqqaate hammanga filatame guuta.</ahelp>"
-
-#: 02140300.xhp
-msgctxt ""
-"02140300.xhp\n"
-"par_id3150447\n"
-"3\n"
-"help.text"
-msgid "If a selected range has only one column, the content of the bottom most cell is copied into the selected cells. If several columns are selected, the contents of the bottom most cells are copied into those selected above."
-msgstr "Yoo hangiin filamee tarjaa tokko qofa qabaate,qabiyyeen man'ee xiyyoo dhumaa gara gadii irraa jiru man'eewwan filamanitti garagalfama.Yoo tarjaawwan baay'een filamee,qabiyyeewwan man'eewwan xiyyoo dhumaa gara gadii irra jiru man'eewwan gubbaatti filamanittii garagalfama."
-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Optimal Row Heights"
-msgstr "Dheerinawwan tarree guutolaa"
-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"bm_id3148491\n"
-"help.text"
-msgid "<bookmark_value>sheets; optimal row heights</bookmark_value><bookmark_value>rows; optimal heights</bookmark_value><bookmark_value>optimal row heights</bookmark_value>"
-msgstr "<bookmark_value>wardiiwwan; Dheerinawwan tarree guutolaa</bookmark_value><bookmark_value>tarreewwan; dheerinawwan guutolaa</bookmark_value><bookmark_value>optimal row heights</bookmark_value>"
-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"hd_id3148491\n"
-"1\n"
-"help.text"
-msgid "Optimal Row Heights"
-msgstr "Dheerinawwan tarree guutolaa"
-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"par_id3154758\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalRowHeight\">Determines the optimal row height for the selected rows.</ahelp></variable> The optimal row height depends on the font size of the largest character in the row. You can use various <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"units of measure\">units of measure</link>."
-msgstr "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalRowHeight\">Tarreewwan filtamaniif dheerina tarree guutolaa murteessa.</ahelp></variable> Dheerinni guutolaa tarree hammamtaa bocquu kan arfii dheeraa tarree keessaa irratti hundaa'a. <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"units of measure\">safrtuu madaalaa</link>."
-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"hd_id3154908\n"
-"3\n"
-"help.text"
-msgid "Add"
-msgstr "Ida'i"
-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"par_id3151044\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_ROW_OPT:ED_VALUE\">Sets additional spacing between the largest character in a row and the cell boundaries.</ahelp>"
-msgstr "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_ROW_OPT:ED_VALUE\">Bakka dabalataa gidduu arfii dheraa tarree keessaa fi dangaawwan man'ee jiru qindeessa.</ahelp>"
-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"hd_id3150439\n"
-"5\n"
-"help.text"
-msgid "Default value"
-msgstr "Gatii Durtii"
-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"par_id3146984\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ROW_OPT:BTN_DEFVAL\">Restores the default value for the optimal row height.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ROW_OPT:BTN_DEFVAL\">Dheerina guutola tarreetif gatii durtii haaromsa.</ahelp>"
-
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Insert Name"
-msgstr "Maqaa Saagi"
-
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"bm_id3153195\n"
-"help.text"
-msgid "<bookmark_value>cell ranges; inserting named ranges</bookmark_value><bookmark_value>inserting; cell ranges</bookmark_value>"
-msgstr "<bookmark_value>hangiiwwan man'ee; hangiiwwan moggaafaman saagu</bookmark_value><bookmark_value>saagu; hangiiwwan man'ee</bookmark_value>"
-
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"hd_id3153195\n"
-"1\n"
-"help.text"
-msgid "Insert Name"
-msgstr "Maqaa Saagi"
-
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"par_id3150011\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"nameneinfuegentext\"><ahelp hid=\".uno:InsertName\">Inserts a defined named cell range at the current cursor's position.</ahelp></variable>"
-msgstr "<variable id=\"nameneinfuegentext\"><ahelp hid=\".uno:InsertName\">Bakka qaaree ammeetti hangii man'ee moggaafamee ramadame saaga.</ahelp></variable>"
-
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"par_id3149412\n"
-"7\n"
-"help.text"
-msgid "You can only insert a cell area after having defined a name for the area."
-msgstr "Nannoo man'ee saaguu kan dandeessu erga nannoof maqaa moggaaste booda qoofa."
-
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"hd_id3153160\n"
-"3\n"
-"help.text"
-msgid "Insert name"
-msgstr "Maqaa saagi"
-
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"par_id3154944\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NAMES_PASTE:LB_ENTRYLIST\">Lists all defined cell areas. Double-click an entry to insert the named area into the active sheet at the current cursor position.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NAMES_PASTE:LB_ENTRYLIST\">Nannoo man'ee hiikamee huundaa tarreessa.Nannoo hiikame gara wardii ka'aa kan bakki qaree ammee jirutti saaguuf galma lamcuqaasi.</ahelp>"
-
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"hd_id3153418\n"
-"5\n"
-"help.text"
-msgid "Insert All"
-msgstr "Man'eewwan Saagi"
-
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"par_id3155066\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES_PASTE:BTN_ADD\">Inserts a list of all named areas and the corresponding cell references at the current cursor position.</ahelp>"
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES_PASTE:BTN_ADD\">Bakka qaree ammeetti tarree nannoo moggaafame hunda fi wabiiwwan man'ee saaga.</ahelp>"
-
-#: 06030500.xhp
-msgctxt ""
-"06030500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Remove All Traces"
-msgstr "Hordoffii Mara Haqi"
-
-#: 06030500.xhp
-msgctxt ""
-"06030500.xhp\n"
-"bm_id3153088\n"
-"help.text"
-msgid "<bookmark_value>cells; removing traces</bookmark_value>"
-msgstr "<bookmark_value>Man'eewwan; hirkattoota haquun</bookmark_value>"
-
-#: 06030500.xhp
-msgctxt ""
-"06030500.xhp\n"
-"hd_id3153088\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06030500.xhp\" name=\"Remove All Traces\">Remove All Traces</link>"
-msgstr "<link href=\"text/scalc/01/06030500.xhp\" name=\"Remove All Traces\">Hordoffii Mara Haqi</link>"
-
-#: 06030500.xhp
-msgctxt ""
-"06030500.xhp\n"
-"par_id3151246\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ClearArrows\" visibility=\"visible\">Removes all tracer arrows from the spreadsheet.</ahelp>"
-msgstr "<ahelp hid=\".uno:ClearArrows\" visibility=\"visible\">Wardii keessaa xiyyoota faaneessaa hunda haqi.</ahelp>"
-
-#: 02210000.xhp
-msgctxt ""
-"02210000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Selecting Sheets"
-msgstr "Wardiiwwan Filachuu"
-
-#: 02210000.xhp
-msgctxt ""
-"02210000.xhp\n"
-"hd_id3156023\n"
-"5\n"
-"help.text"
-msgid "Selecting Sheets"
-msgstr "Wardiiwwan Filachuu"
-
-#: 02210000.xhp
-msgctxt ""
-"02210000.xhp\n"
-"par_id3147265\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"tabellenauswaehlen\"><ahelp hid=\".uno:SelectTables\" visibility=\"visible\">Selects multiple sheets.</ahelp></variable>"
-msgstr "<variable id=\"tabellenauswaehlen\"><ahelp hid=\".uno:SelectTables\" visibility=\"visible\">Wardiiwwan hedduu filata.</ahelp></variable>"
-
-#: 02210000.xhp
-msgctxt ""
-"02210000.xhp\n"
-"hd_id3125863\n"
-"2\n"
-"help.text"
-msgid "Selected Sheets"
-msgstr "Wardiiwwan Filataman"
-
-#: 02210000.xhp
-msgctxt ""
-"02210000.xhp\n"
-"par_id3153969\n"
-"3\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SELECTTABLES\" visibility=\"visible\">Lists the sheets in the current document. To select a sheet, press the up or down arrow keys to move to a sheet in the list. To add a sheet to the selection, hold down Ctrl (Mac: Command) while pressing the arrow keys and then press Spacebar. To select a range of sheets, hold down Shift and press the arrow keys. </ahelp>"
-msgstr "<ahelp hid=\"HID_SELECTTABLES\" visibility=\"visible\">Wardiiwwan galmee ammee keessa jiran tarreessa. Wardii filachuuf furtuuwwan xiyya olee yookiin gadee dhiibi.Wardii filannootti dabaluuf, yeroo furtuuwwan xiyyaa dhiibaa jirtu Ctrl gadqabiiti kabala iddoo dhiibi. Hangii wardii filachuuf Shift gadqabiiti furtuuwwan xiyyaa dhiibi. </ahelp>"
-
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"tit\n"
-"help.text"
-msgid "TIMEVALUE"
-msgstr "TIMEVALUE"
-
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"bm_id3146755\n"
-"help.text"
-msgid "<bookmark_value>TIMEVALUE function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii TIMEVALUE</bookmark_value>"
-
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"hd_id3146755\n"
-"160\n"
-"help.text"
-msgid "<variable id=\"timevalue\"><link href=\"text/scalc/01/func_timevalue.xhp\">TIMEVALUE</link></variable>"
-msgstr "<variable id=\"timevalue\"><link href=\"text/scalc/01/func_timevalue.xhp\">TIMEVALUE</link></variable>"
-
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"par_id3148502\n"
-"161\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZEITWERT\">TIMEVALUE returns the internal time number from a text enclosed by quotes and which may show a possible time entry format.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZEITWERT\">TIMEVALUE barruu warraabbiin haguugamee fi akkasuma kan galmaa dhangii yeroo mul'isuu danda'uf lakkooofsa yeroo keessa kenna.</ahelp>"
-
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"par_id3150794\n"
-"162\n"
-"help.text"
-msgid "The internal number indicated as a decimal is the result of the date system used under $[officename] to calculate date entries."
-msgstr "Lakkoofsi keessa akka kurnyeetti agarsiifame kun firii sirna aduu $[officename] jedhamu kan galmaa aduu shallaguuf gargaarudha."
-
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"par_id011920090347118\n"
-"help.text"
-msgid "If the text string also includes a year, month, or day, TIMEVALUE only returns the fractional part of the conversion."
-msgstr "Yoo dirri barruu waggaa, ji'a, ykn guyyaa, GATIISA'ATII hira firakshinii jijjiirraa qofa deebisa."
-
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"hd_id3150810\n"
-"163\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"par_id3150823\n"
-"164\n"
-"help.text"
-msgid "TIMEVALUE(\"Text\")"
-msgstr "DATEVALUE(\"Barruu\")"
-
-#: func_timevalue.xhp
+#: 04060103.xhp
msgctxt ""
-"func_timevalue.xhp\n"
-"par_id3152556\n"
-"165\n"
+"04060103.xhp\n"
+"par_id3149558\n"
+"323\n"
"help.text"
-msgid "<emph>Text</emph> is a valid time expression and must be entered in quotation marks."
-msgstr "<emph>Barruu</emph> himannoo yeroo siirri fi mallattoo waraabbii wajjin galuu qaba."
+msgid "For a credit amount of 120,000 currency units with a two-year term and monthly installments, at a yearly interest rate of 12% the level of interest after 1.5 years is required."
+msgstr "Hamma liqaa safartuu maallaqaa 120,000 termii waggaa lamaanii fi qabdiiwwan ji'a ji'aan, reetii dhalaa waggaa waggaadhaan 12% ta'eef sadarkaan dhalaa waggoota 1.5 booda ni barbaadama."
-#: func_timevalue.xhp
+#: 04060103.xhp
msgctxt ""
-"func_timevalue.xhp\n"
-"hd_id3146815\n"
-"166\n"
+"04060103.xhp\n"
+"par_id3150949\n"
+"324\n"
"help.text"
-msgid "Examples"
-msgstr "Fakkeenyawwan"
+msgid "<item type=\"input\">=ISPMT(1%;18;24;120000)</item> = -300 currency units. The monthly interest after 1.5 years amounts to 300 currency units."
+msgstr "<item type=\"input\">=ISPMT(1%;18;24;120000)</item> safartuuwwan maallaqaa= -300 . Waggoota 1.5 booda dhalli ji'a ji'aanii safartuuwwan maallaqaa 300 ta'a."
-#: func_timevalue.xhp
+#: 04060103.xhp
msgctxt ""
-"func_timevalue.xhp\n"
-"par_id3146829\n"
-"167\n"
+"04060103.xhp\n"
+"par_id3146812\n"
+"426\n"
"help.text"
-msgid "<item type=\"input\">=TIMEVALUE(\"4PM\")</item> returns 0.67. When formatting in time format HH:MM:SS, you then get 16:00:00."
-msgstr "<item type=\"input\">=TIMEVALUE(\"4PM\")</item> .67 kenna. Dhangi yeroo yemmuu dhangeessinuu HH:MM:SS, itti fufuun 16:00:00 argatta."
+msgid "<link href=\"text/scalc/01/04060119.xhp\" name=\"Forward to Financial Functions Part Two\">Financial Functions Part Two</link>"
+msgstr "<link href=\"text/scalc/01/04060119.xhp\" name=\"Forward to Financial Functions Part Two\">Faankishinoota Maallaqaa Kutaa Lammaffaa</link>"
-#: func_timevalue.xhp
+#: 04060103.xhp
msgctxt ""
-"func_timevalue.xhp\n"
-"par_id3153632\n"
-"168\n"
+"04060103.xhp\n"
+"par_id3154411\n"
+"427\n"
"help.text"
-msgid "<item type=\"input\">=TIMEVALUE(\"24:00\")</item> returns 1. If you use the HH:MM:SS time format, the value is 00:00:00."
-msgstr "<item type=\"input\">=TIMEVALUE(\"24:00\")</item> 1 kenna. Yoo HH:MM:SS dhangi yerootii fayyadamnee gatiin isaa 00:00:00 ta'a."
+msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Financial Functions Part Three</link>"
+msgstr "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Faankiishinoota Maallaqaa Kutaa Sadaffaa</link>"
#: 04060104.xhp
msgctxt ""
@@ -17641,7 +8198,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "C"
-msgstr "C"
+msgstr ""
#: 04060104.xhp
msgctxt ""
@@ -17650,7 +8207,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "D"
-msgstr "D"
+msgstr ""
#: 04060104.xhp
msgctxt ""
@@ -17758,7 +8315,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "<item type=\"input\">1</item>"
-msgstr "<item type=\"input\">1</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060104.xhp
msgctxt ""
@@ -17785,7 +8342,7 @@ msgctxt ""
"20\n"
"help.text"
msgid "<item type=\"input\">3</item>"
-msgstr "<item type=\"input\">3</item>"
+msgstr "<item type=\"input\">183</item>"
#: 04060104.xhp
msgctxt ""
@@ -17803,7 +8360,7 @@ msgctxt ""
"22\n"
"help.text"
msgid "<item type=\"input\">2</item>"
-msgstr "<item type=\"input\">2</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060104.xhp
msgctxt ""
@@ -17812,7 +8369,7 @@ msgctxt ""
"23\n"
"help.text"
msgid "<item type=\"input\">4</item>"
-msgstr "<item type=\"input\">4</item>"
+msgstr "<item type=\"input\">148</item>"
#: 04060104.xhp
msgctxt ""
@@ -17830,7 +8387,7 @@ msgctxt ""
"25\n"
"help.text"
msgid "<item type=\"input\">4</item>"
-msgstr "<item type=\"input\">4</item>"
+msgstr "<item type=\"input\">148</item>"
#: 04060104.xhp
msgctxt ""
@@ -17839,7 +8396,7 @@ msgctxt ""
"26\n"
"help.text"
msgid "<item type=\"input\">6</item>"
-msgstr "<item type=\"input\">6</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060104.xhp
msgctxt ""
@@ -17857,7 +8414,7 @@ msgctxt ""
"28\n"
"help.text"
msgid "<item type=\"input\">6</item>"
-msgstr "<item type=\"input\">6</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060104.xhp
msgctxt ""
@@ -17866,7 +8423,7 @@ msgctxt ""
"29\n"
"help.text"
msgid "<item type=\"input\">8</item>"
-msgstr "<item type=\"input\">8</item>"
+msgstr "<item type=\"input\">148</item>"
#: 04060104.xhp
msgctxt ""
@@ -17925,7 +8482,6 @@ msgid "Value for \"Type\""
msgstr "Gatii \"Gosaa\"f"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id8360850\n"
@@ -18830,7 +9386,6 @@ msgid "<ahelp hid=\"HID_FUNC_ISTLOG\">Tests for a logical value (TRUE or FALSE).
msgstr "<ahelp hid=\"HID_FUNC_ISTLOG\">Gatii yaayaa (DHUGAA ykn SOBA) qorata).</ahelp>"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id3541062\n"
@@ -18923,7 +9478,7 @@ msgctxt ""
"par_id6018860\n"
"help.text"
msgid "If an error occurs, the function returns FALSE."
-msgstr "Yoo dogongorri mudate, SOBA kenna."
+msgstr "Yoo dogongorri mudate, faankishiniin SOBA kenna."
#: 04060104.xhp
msgctxt ""
@@ -19002,7 +9557,7 @@ msgctxt ""
"par_id6779686\n"
"help.text"
msgid "If an error occurs, the function returns FALSE."
-msgstr "Yoo dogongorri mudate, faankishinichi SOBA kenna."
+msgstr "Yoo dogongorri mudate, faankishiniin SOBA kenna."
#: 04060104.xhp
msgctxt ""
@@ -19118,7 +9673,7 @@ msgctxt ""
"241\n"
"help.text"
msgid "Example"
-msgstr "fakkeenya"
+msgstr "Fakkeenya"
#: 04060104.xhp
msgctxt ""
@@ -19224,7 +9779,7 @@ msgctxt ""
"119\n"
"help.text"
msgid "N"
-msgstr "N"
+msgstr ""
#: 04060104.xhp
msgctxt ""
@@ -19758,7 +10313,7 @@ msgctxt ""
"188\n"
"help.text"
msgid "TYPE"
-msgstr "GOSA"
+msgstr "TYPE"
#: 04060104.xhp
msgctxt ""
@@ -20129,8123 +10684,6709 @@ msgctxt ""
msgid "<emph>Reference</emph> (list of options) is the position of the cell to be examined. If <emph>Reference</emph> is a range, the cell moves to the top left of the range. If <emph>Reference</emph> is missing, $[officename] Calc uses the position of the cell in which this formula is located. Microsoft Excel uses the reference of the cell in which the cursor is positioned."
msgstr "<emph>Wabiin</emph> (filannoowwan tarreeffaman)iddoo man'ee qoratamuuti.Yoo<emph>wabiin</emph> hammangaa ta'e,man'een gara bitaa olitti socho'a.'the cell moves to the top left of the range. If <emph>Reference</emph> is missing, $[officename] Calc uses the position of the cell in which this formula is located. Microsoft Excel uses the reference of the cell in which the cursor is positioned."
-#: func_yearfrac.xhp
+#: 04060105.xhp
msgctxt ""
-"func_yearfrac.xhp\n"
+"04060105.xhp\n"
"tit\n"
"help.text"
-msgid "YEARFRAC"
-msgstr "YEARFRAC"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"bm_id3148735\n"
-"help.text"
-msgid "<bookmark_value>YEARFRAC function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii YEARFRAC</bookmark_value>"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"hd_id3148735\n"
-"196\n"
-"help.text"
-msgid "<variable id=\"yearfrac\"><link href=\"text/scalc/01/func_yearfrac.xhp\">YEARFRAC</link></variable>"
-msgstr "<variable id=\"yearfrac\"><link href=\"text/scalc/01/func_yearfrac.xhp\">YEARFRAC</link></variable>"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3150899\n"
-"197\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_YEARFRAC\"> The result is a number between 0 and 1, representing the fraction of a year between <emph>StartDate</emph> and <emph>EndDate</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_YEARFRAC\"> Firiin lakkoofsoota 0 fi 1 gidduutti argaman,entaa waggaa<emph>Aduu Jalqaba</emph>fi <emph>Aduu Xumura</emph>.</ahelp>jidduutti argaman bakka bu'a."
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"hd_id3155259\n"
-"198\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3155823\n"
-"199\n"
-"help.text"
-msgid "YEARFRAC(StartDate; EndDate; Basis)"
-msgstr "YEARFRAC(Aduu Jalqaba;Aduu Xumura;Hunde)"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3145144\n"
-"200\n"
-"help.text"
-msgid "<emph>StartDate</emph> and <emph>EndDate</emph> are two date values."
-msgstr "<emph>Aduu Jalqaba</emph> and <emph>Aduu Xumura</emph> gatiiwwaan aduu lamaaniiti."
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3149954\n"
-"201\n"
-"help.text"
-msgid "<emph>Basis</emph> is chosen from a list of options and indicates how the year is to be calculated."
-msgstr "<emph>Hundeen</emph> tarree dirqaalootni keessaa filatamanif aakkaataa waggaan itti shallagamuu agarsiisa."
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3146847\n"
-"202\n"
-"help.text"
-msgid "Basis"
-msgstr "Hundee"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3155956\n"
-"203\n"
-"help.text"
-msgid "Calculation"
-msgstr "Shallaggii"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3154502\n"
-"204\n"
-"help.text"
-msgid "0 or missing"
-msgstr "0 ykn dhiisuu"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3149877\n"
-"205\n"
-"help.text"
-msgid "US method (NASD), 12 months of 30 days each"
-msgstr "Akkaata mala (NASD),Tokko tokkoon ji'oota 12 guyyoota 30"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3148766\n"
-"250\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3154326\n"
-"206\n"
-"help.text"
-msgid "Exact number of days in months, exact number of days in year"
-msgstr "Lakkoofsa sirri guyyoota ji'aa keessa,Lakkoofsa sirri guyyoota waggaa keessaa"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3145245\n"
-"251\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3155620\n"
-"207\n"
-"help.text"
-msgid "Exact number of days in month, year has 360 days"
-msgstr "Lakkoofsa sirri guyyoota ji'aa keessa,waggaan guyyoota 360 of keessaa qaba."
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3145297\n"
-"252\n"
-"help.text"
-msgid "3"
-msgstr "3"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3148394\n"
-"208\n"
-"help.text"
-msgid "Exact number of days in month, year has 365 days"
-msgstr "Lakkoofsa sirri guyyoota ji'aa keessa,waggaan guyyoota 365 of keessaa qaba."
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3151022\n"
-"253\n"
-"help.text"
-msgid "4"
-msgstr "4"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3150931\n"
-"209\n"
-"help.text"
-msgid "European method, 12 months of 30 days each"
-msgstr "Mala Awurooppaan,tokkoo tokkoon ji'aa 12 guyyoota 30"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"hd_id3145626\n"
-"210\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3149007\n"
-"211\n"
-"help.text"
-msgid "What fraction of the year 2008 lies between 2008-01-01 and 2008-07-01?"
-msgstr "Hammi entaa bara 2008 baroota 2008-01-01 fi 2008-07-01 jidduu jiru meeqa?"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3154632\n"
-"212\n"
-"help.text"
-msgid "=YEARFRAC(\"2008-01-01\"; \"2008-07-01\";0) returns 0.50."
-msgstr "=YEARFRAC(\"2008-01-01\"; \"2008-07-01\";0) .50 kenna"
+msgid "Logical Functions"
+msgstr "Faankishinii sirna yaadaa"
-#: 12040300.xhp
+#: 04060105.xhp
msgctxt ""
-"12040300.xhp\n"
-"tit\n"
+"04060105.xhp\n"
+"bm_id3153484\n"
"help.text"
-msgid "Advanced Filter"
-msgstr "Gingilchaa ol'aanaa"
+msgid "<bookmark_value>logical functions</bookmark_value> <bookmark_value>Function Wizard; logical</bookmark_value> <bookmark_value>functions; logical functions</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii sirna yaadaa</bookmark_value> <bookmark_value>wiizaardii faankishinii; sirna yaadaa</bookmark_value> <bookmark_value>faankishinii; faankishinii sirna yaadaa</bookmark_value>"
-#: 12040300.xhp
+#: 04060105.xhp
msgctxt ""
-"12040300.xhp\n"
-"hd_id3158394\n"
+"04060105.xhp\n"
+"hd_id3153484\n"
"1\n"
"help.text"
-msgid "Advanced Filter"
-msgstr "Gingilchaa ol'aanaa"
+msgid "Logical Functions"
+msgstr "Faankishinii sirna yaadaa"
-#: 12040300.xhp
+#: 04060105.xhp
msgctxt ""
-"12040300.xhp\n"
-"par_id3156281\n"
+"04060105.xhp\n"
+"par_id3149312\n"
"2\n"
"help.text"
-msgid "<variable id=\"spezialfilter\"><ahelp hid=\".uno:DataFilterSpecialFilter\">Defines an advanced filter.</ahelp></variable>"
-msgstr "<variable id=\"spezialfilter\"><ahelp hid=\".uno:DataFilterSpecialFilter\">Gingilchaa ol'aanaa qinddeessa.</ahelp></variable>"
-
-#: 12040300.xhp
-msgctxt ""
-"12040300.xhp\n"
-"par_idN105EB\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/guide/filters.xhp#filters\"/>"
-msgstr "<embedvar href=\"text/scalc/guide/filters.xhp#filters\"/>"
-
-#: 12040300.xhp
-msgctxt ""
-"12040300.xhp\n"
-"hd_id3153771\n"
-"25\n"
-"help.text"
-msgid "Read filter criteria from"
-msgstr "Ulaagaalee gingilchaa dubbisi kanarraa"
-
-#: 12040300.xhp
-msgctxt ""
-"12040300.xhp\n"
-"par_id3147426\n"
-"26\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_CRITERIA_AREA\">Select the named range, or enter the cell range that contains the filter criteria that you want to use.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_CRITERIA_AREA\">Hammanga moggaafame fili, ykn hammangaa man'ee ulaagaalee itti fayyadamuu barbaaddee of keessaa qabu galchi.</ahelp>"
+msgid "<variable id=\"logischtext\">This category contains the <emph>Logical</emph> functions. </variable>"
+msgstr "<variable id=\"logischtext\">Tuutallaan kun <emph>faankishinii</emph> sirna yaadaa of keessaa qaba.</variable>"
-#: 12040300.xhp
+#: 04060105.xhp
msgctxt ""
-"12040300.xhp\n"
-"hd_id3153188\n"
-"27\n"
+"04060105.xhp\n"
+"bm_id3147505\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
-msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">Dabalata</link>"
+msgid "<bookmark_value>AND function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii FI</bookmark_value>"
-#: 06030600.xhp
+#: 04060105.xhp
msgctxt ""
-"06030600.xhp\n"
-"tit\n"
+"04060105.xhp\n"
+"hd_id3147505\n"
+"29\n"
"help.text"
-msgid "Trace Error"
-msgstr "Dogoggora Sakkatta'i"
+msgid "AND"
+msgstr "AND"
-#: 06030600.xhp
+#: 04060105.xhp
msgctxt ""
-"06030600.xhp\n"
-"bm_id3153561\n"
+"04060105.xhp\n"
+"par_id3153959\n"
+"65\n"
"help.text"
-msgid "<bookmark_value>cells; tracing errors</bookmark_value><bookmark_value>tracing errors</bookmark_value><bookmark_value>error tracing</bookmark_value>"
-msgstr "<bookmark_value>Man'eewwan; dogoggoroota sakkatta'u</bookmark_value><bookmark_value>dogoggoroota sakkatta'u</bookmark_value><bookmark_value>sakkatta'insa dogoggoraa</bookmark_value>"
+msgid "<ahelp hid=\"HID_FUNC_UND\">Returns TRUE if all arguments are TRUE.</ahelp> If one of the elements is FALSE, this function returns the FALSE value."
+msgstr "<ahelp hid=\"HID_FUNC_UND\">Yoo qocolloon hunduu DHUGAA ta'an DHUGAA deebisa.</ahelp> Yoo elementiin tokko SOBA ta'e,faankishiniin kun gatii SOBAA deebisa."
-#: 06030600.xhp
+#: 04060105.xhp
msgctxt ""
-"06030600.xhp\n"
-"hd_id3153561\n"
-"1\n"
+"04060105.xhp\n"
+"par_id3146100\n"
+"66\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030600.xhp\" name=\"Trace Error\">Trace Error</link>"
-msgstr "<link href=\"text/scalc/01/06030600.xhp\" name=\"Trace Error\">Dogoggora Sakkatta'i</link>"
+msgid "The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values."
+msgstr "Qocolloon sirna yaadaa (DHUGAA,1<5,2+3=7,B8<10) gatii sirna yaadaa deebisa,ykn aareen(A1:C3)gatii sirna yaadaa of keessaa qaba."
-#: 06030600.xhp
+#: 04060105.xhp
msgctxt ""
-"06030600.xhp\n"
-"par_id3148550\n"
-"2\n"
+"04060105.xhp\n"
+"par_id3150538\n"
+"67\n"
"help.text"
-msgid "<ahelp hid=\".uno:ShowErrors\" visibility=\"visible\">Draws tracer arrows to all precedent cells which cause an error value in a selected cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:ShowErrors\" visibility=\"visible\">Man'eewwan dursaa hundaa gatii dogoggoraa man'ee filameetti kan fiduuf sababa ta'u xiyyoota faanessaa kaachisa.</ahelp>"
+msgid "When a function expects a single value, but you entered a cell range, then the value from the cell range is taken that is in the same column or row as the formula."
+msgstr "yeroo faankishiniin gatii qeenxee abdatee,garuu ati hammangaa man'ee yoo saagde,gatiin hammangaa man'eerraa tarjaa ykn tarree walfakkaatu akka foormulaatti fudhatama."
-#: 02140200.xhp
+#: 04060105.xhp
msgctxt ""
-"02140200.xhp\n"
-"tit\n"
+"04060105.xhp\n"
+"par_id3149128\n"
+"68\n"
"help.text"
-msgid "Right"
-msgstr "Mirga"
+msgid "If the entered range is outside of the current column or row of the formula, the function returns the error value #VALUE!"
+msgstr "Yoo hammangaa galchame foormulaa tarjaa ykn tarree ammeetiin ala ta'e,faankishiniin gatii dogogaraa #VALUE!deebisa."
-#: 02140200.xhp
+#: 04060105.xhp
msgctxt ""
-"02140200.xhp\n"
-"hd_id3153896\n"
-"1\n"
+"04060105.xhp\n"
+"hd_id3150374\n"
+"31\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02140200.xhp\" name=\"Right\">Right</link>"
-msgstr "<link href=\"text/scalc/01/02140200.xhp\" name=\"Right\">Mirga</link>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 02140200.xhp
+#: 04060105.xhp
msgctxt ""
-"02140200.xhp\n"
-"par_id3153361\n"
-"2\n"
+"04060105.xhp\n"
+"par_id3159123\n"
+"32\n"
"help.text"
-msgid "<ahelp hid=\".uno:FillRight\" visibility=\"visible\">Fills a selected range of at least two columns with the contents of the left most cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:FillRight\" visibility=\"visible\">Yoo xinnaate hangii tarreewwan filataman lamaa qabeentota man'ee dhuma harka bitaa irra jiraniin guuta.</ahelp>"
+msgid "AND(LogicalValue1; LogicalValue2 ...LogicalValue30)"
+msgstr "FI(Gatii sirna yaadaa 1;Gatii sirna yaadaa 2; ...Gatii sirna yaadaa 30)"
-#: 02140200.xhp
+#: 04060105.xhp
msgctxt ""
-"02140200.xhp\n"
-"par_id3154684\n"
-"3\n"
+"04060105.xhp\n"
+"par_id3150038\n"
+"33\n"
"help.text"
-msgid "If a range of only one row is selected, the contents of the far left cell are copied to all the other selected cells. If you have selected several rows, each of the far left cells is copied into those cells to the right."
-msgstr "Yoo hangiin tarree tokkoo qofti filatame,qabeentotni Man'eewwan bitaa fagoo gara man'ee biroo filataman hundatti garagalu.Yoo tarree hedduu filatteetta ta'e,tokko tokkoon man'eewwan bitaa fagoo gara man'eewwan mirga jiraniitti garagalu."
+msgid "<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses the value from the range that is in the current column or row. The result is TRUE if the logical value in all cells within the cell range is TRUE."
+msgstr "<emph>Gatiiyaayaa1; Gatiiyaayaa2 ...Gatiiyaayaa30</emph> haalota mirkaneeffamaniidha. Haalonni hunduu TRUE ykn FALSE ta'uu danda'u. Yoo hammangaan akka jijjiiramaatti galfame, faankishiniin gatii hammanga kan tarjaa ykn tarree ammee keessaa fayyadama. Yoo gatiin yaayyaa man'eewwan hunda keessa hammangaa man'ee wajjin jiran TRUE ta'an firiin TRUE ta'a."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"tit\n"
+"04060105.xhp\n"
+"hd_id3149143\n"
+"34\n"
"help.text"
-msgid "Data field"
-msgstr "Dirree Deetaa"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12090105.xhp
-#, fuzzy
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"bm_id7292397\n"
+"04060105.xhp\n"
+"par_id3153123\n"
+"35\n"
"help.text"
-msgid "<bookmark_value>calculating;pivot table</bookmark_value>"
-msgstr "<bookmark_value>shallaggii;Qinxaa</bookmark_value>"
+msgid "The logical values of entries 12<13; 14>12, and 7<6 are to be checked:"
+msgstr "Gatiin sirna yaada hundaa 12<13; 14>12, and 7<6 ni mirkanaa'a:"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"hd_id3150871\n"
-"1\n"
+"04060105.xhp\n"
+"par_id3145632\n"
+"36\n"
"help.text"
-msgid "Data field"
-msgstr "Dirree Deetaa"
+msgid "<item type=\"input\">=AND(12<13;14>12;7<6)</item> returns FALSE."
+msgstr "<item type=\"input\">=FI(12<13;14>12;7<6)</item> SOBA deebisa."
-#: 12090105.xhp
-#, fuzzy
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_id3154124\n"
-"16\n"
+"04060105.xhp\n"
+"par_id3149946\n"
+"60\n"
"help.text"
-msgid "The contents of this dialog is different for data fields in the <emph>Data</emph> area, and data fields in the <emph>Row</emph> or <emph>Column</emph> area of the <link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table\">Pivot Table</link> dialog."
-msgstr "Qabiyyeewwan qaaqa kanaa dirreewwan deetaa iddoo <emph>Deetaa</emph> keessaa jiranii garagara, bakka dirreewwan deetaa <emph>Tarree</emph> ykn <emph>Tarjaa</emph> qaaqa <link href=\"text/scalc/01/12090102.xhp\" name=\"DataPilot\">Qinxaaa</link> keessatti argamani."
+msgid "<item type=\"input\">=AND (FALSE;TRUE)</item> returns FALSE."
+msgstr "<item type=\"input\">=FI(SOBA;DHUGAA)</item> SOBA deebisa."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"hd_id3152596\n"
-"2\n"
+"04060105.xhp\n"
+"bm_id3149015\n"
"help.text"
-msgid "Subtotals"
-msgstr "Hundamtaa xiqqaa"
+msgid "<bookmark_value>FALSE function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii SOBA</bookmark_value>"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_id3151113\n"
+"04060105.xhp\n"
+"hd_id3149015\n"
"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_PIVOTSUBT\">Specify the subtotals that you want to calculate.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_PIVOTSUBT\">Hundamtaa xiqqaa shallaguu barbaadduu ifteessi.</ahelp>"
+msgid "FALSE"
+msgstr "FALSE"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"hd_id3145366\n"
+"04060105.xhp\n"
+"par_id3149890\n"
"4\n"
"help.text"
-msgid "None"
-msgstr "Homaa"
+msgid "<ahelp hid=\"HID_FUNC_FALSCH\">Returns the logical value FALSE.</ahelp> The FALSE() function does not require any arguments, and always returns the logical value FALSE."
+msgstr "<ahelp hid=\"HID_FUNC_FALSCH\">Gatii sirna yaadaa SOBA deebisa.</ahelp> Faankishiniin SOBAA() yeroo hundaa gaii sirna yaadaa SOBA deebisa."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_id3152576\n"
+"04060105.xhp\n"
+"hd_id3146939\n"
"5\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_NONE\">Does not calculate subtotals.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_NONE\">Hundaamtaa xiqqaa hin shallaguu.</ahelp>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"hd_id3154012\n"
+"04060105.xhp\n"
+"par_id3150030\n"
"6\n"
"help.text"
-msgid "Automatic"
-msgstr "Ofumaan"
+msgid "FALSE()"
+msgstr "FALSE()"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_id3155856\n"
+"04060105.xhp\n"
+"hd_id3150697\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_AUTO\">Automatically calculates subtotals.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_AUTO\">Hundaamtaa xiqqaa ofumaan shallaga.</ahelp>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"hd_id3155411\n"
+"04060105.xhp\n"
+"par_id3154842\n"
"8\n"
"help.text"
-msgid "User-defined"
-msgstr "Hiika-fayyadamaa"
+msgid "<item type=\"input\">=FALSE()</item> returns FALSE"
+msgstr "<item type=\"input\">=N(SOBA)</item> 0 deebisa"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_id3149581\n"
+"04060105.xhp\n"
+"par_id3147468\n"
"9\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_USER\">Select this option, and then click the type of subtotal that you want to calculate in the list.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_USER\">dirqalaalee kana fili,itti ansuun tarree keessaa akaakuu hundaamta xiqqaa shallaguu barbaadduu cuqaasi.</ahelp>"
-
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"hd_id3147124\n"
-"10\n"
-"help.text"
-msgid "Function"
-msgstr "Fankishinii"
-
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_id3154490\n"
-"11\n"
-"help.text"
-msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_PIVOTSUBT:LB_FUNC\">Click the type of subtotal that you want to calculate. This option is only available if the <emph>User-defined</emph> option is selected.</ahelp>"
-msgstr "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_PIVOTSUBT:LB_FUNC\">Akaakuu hundamtaa xiqqaa shallaguu barbaadduu cuqaasi.Dirqaalli kun yoo dirqaala <emph>Hiika-fayyadamaa</emph> jedhuu filatte qofa argama.</ahelp>"
-
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"hd_id3154944\n"
-"14\n"
-"help.text"
-msgid "Show elements without data"
-msgstr "Miseensota deetaa hin qabne agarsiisi"
+msgid "<item type=\"input\">=NOT(FALSE())</item> returns TRUE"
+msgstr "<item type=\"input\">=NOT(SOBA())</item> DHUGAA deebisa."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_id3149403\n"
-"15\n"
+"04060105.xhp\n"
+"bm_id3150141\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOTSUBT:CB_SHOWALL\">Includes empty columns and rows in the results table.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOTSUBT:CB_SHOWALL\"> Gabateen firiiwwanii tarjaawwan duwwaa fi tarreewwan duwwaa of keessatti hammata.</ahelp>"
+msgid "<bookmark_value>IF function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii IF</bookmark_value>"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"hd_id3149122\n"
-"12\n"
+"04060105.xhp\n"
+"hd_id3150141\n"
+"48\n"
"help.text"
-msgid "Name:"
-msgstr "Maqaa:"
+msgid "IF"
+msgstr "IF"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_id3150749\n"
-"13\n"
+"04060105.xhp\n"
+"par_id3148740\n"
+"49\n"
"help.text"
-msgid "Lists the name of the selected data field."
-msgstr "Maqaa dirree deetaa filatamee tarreessa."
+msgid "<ahelp hid=\"HID_FUNC_WENN\">Specifies a logical test to be performed.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_WENN\">sirna yaadaa hojjatamu adda baasa.</ahelp>"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN106EC\n"
+"04060105.xhp\n"
+"hd_id3153325\n"
+"50\n"
"help.text"
-msgid "More"
-msgstr "Dabala"
+msgid "Syntax"
+msgstr "Caasima"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN106F0\n"
+"04060105.xhp\n"
+"par_id3154558\n"
+"51\n"
"help.text"
-msgid "<ahelp hid=\".\">Expands or reduces the dialog. The <emph>More</emph> button is visible for data fields only.</ahelp>"
-msgstr "<ahelp hid=\".\">Qaaqa bal'isaykn xinneessa.Qaabdoon <emph>Dabala</emph> dirreewwan deetaa qofatti mul'ata.</ahelp>"
+msgid "IF(Test; ThenValue; OtherwiseValue)"
+msgstr "Yoo(Yaalii;Achumaan gatii; Yoo hin taane gatii\")"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN106F3\n"
+"04060105.xhp\n"
+"par_id3149727\n"
+"52\n"
"help.text"
-msgid "Options"
-msgstr "Dirqalaalee"
+msgid "<emph>Test</emph> is any value or expression that can be TRUE or FALSE."
+msgstr "<emph>Yaaliin</emph> galii kamiyyuu ykn ibsa kan DHUGAA ykn SOBA ta'uu danda'a."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN106F7\n"
+"04060105.xhp\n"
+"par_id3155828\n"
+"53\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/scalc/01/12090106.xhp\">Data Field Options</link> dialog. The <emph>Options</emph> button is visible for column, row, or page fields only.</ahelp>"
-msgstr "<ahelp hid=\".\">Qaaqa <link href=\"text/scalc/01/12090106.xhp\">Dirqalaalee Dirree Deetaa</link>bana.Qaabdoon <emph>dirqalaalee</emph> dirreewwan tarjaa,tarree ykn fulaa qofatti mul'ata.</ahelp>"
+msgid "<emph>ThenValue</emph> (optional) is the value that is returned if the logical test is TRUE."
+msgstr "<emph>Achumaan gatiin</emph> (filannoo) gatii yoo sirni yaada yaalii DHUGAA ta'e deebisa."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10708\n"
+"04060105.xhp\n"
+"par_id3154811\n"
+"54\n"
"help.text"
-msgid "If the dialog is expanded by the <emph>More</emph> button, the following items are added to the dialog:"
-msgstr "Yoo qaaqni qabdoo <emph>Dabala</emph>tin babal'ate,wantootni armaan gadii qaaqatti dabalamu:"
+msgid "<emph>OtherwiseValue</emph> (optional) is the value that is returned if the logical test is FALSE."
+msgstr "<emph>Yoo hin taane gatiin</emph> (filannoo) gatii yoo sirni yaada yaalii SOBA ta'e deebisa."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1070B\n"
+"04060105.xhp\n"
+"par_idN107FA\n"
"help.text"
-msgid "Displayed value"
-msgstr "Gatii agarsiifamee"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1070F\n"
+"04060105.xhp\n"
+"hd_id3149507\n"
+"55\n"
"help.text"
-msgid "<ahelp hid=\".\">For each data field, you can select the type of display.</ahelp> For some types you can select additional information for a base field and a base item."
-msgstr "<ahelp hid=\".\">Tokkon tokkoo dirree deetaatif,akaakuu agarsiisaa filuu dandeessa.</ahelp> Akaakuuwwan murtaawoo ta'aniif hundee dirreee fi hundee wantaaf odeeffannoo dabalataa filuu dandeessa."
+msgid "Examples"
+msgstr "Fakkeenyawwan"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10712\n"
+"04060105.xhp\n"
+"par_id3150867\n"
+"57\n"
"help.text"
-msgid "Type"
-msgstr "Akaakuu"
+msgid "<item type=\"input\">=IF(A1>5;100;\"too small\")</item> If the value in A1 is higher than 5, the value 100 is entered in the current cell; otherwise, the text “too small” (without quotes) is entered."
+msgstr "<item type=\"input\">=IF(A1>5;100;\"baay'ee xiqqaa\")</item> Yoo gatiin A1 5 caale,man'ee ammee keessa 100 gala; yoo hintaane,barruun“baay'ee xiqqaa” gala."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10716\n"
+"04060105.xhp\n"
+"bm_id3155954\n"
"help.text"
-msgid "<ahelp hid=\"1495371266\">Select the type of calculating of the displayed value for the data field.</ahelp>"
-msgstr "<ahelp hid=\"1495371266\">Dirree deetaa akaakuu shallaggii gatii agarsiifamee fili.</ahelp>"
+msgid "<bookmark_value>NOT function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii MITI</bookmark_value>"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10724\n"
+"04060105.xhp\n"
+"hd_id3155954\n"
+"12\n"
"help.text"
-msgid "Type"
-msgstr "Akaakuu"
+msgid "NOT"
+msgstr "NOT"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1072A\n"
+"04060105.xhp\n"
+"par_id3153570\n"
+"13\n"
"help.text"
-msgid "Displayed value"
-msgstr "Gatii Agarsiifamee"
+msgid "<ahelp hid=\"HID_FUNC_NICHT\">Complements (inverts) a logical value.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NICHT\">Gatii yaayaa guuchisaa(garagalchaa).</ahelp>"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10731\n"
+"04060105.xhp\n"
+"hd_id3147372\n"
+"14\n"
"help.text"
-msgid "Normal"
-msgstr "Baratamoo"
+msgid "Syntax"
+msgstr "Caasima"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10737\n"
+"04060105.xhp\n"
+"par_id3157996\n"
+"15\n"
"help.text"
-msgid "Results are shown unchanged"
-msgstr "Bu'aawwan osoo hin jijjiramiin agarsiifaman"
+msgid "NOT(LogicalValue)"
+msgstr "NOT(Sirna yaadaa)"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1073E\n"
+"04060105.xhp\n"
+"par_id3148766\n"
+"16\n"
"help.text"
-msgid "Difference from"
-msgstr "Garaagarumma kanarraa"
+msgid "<emph>LogicalValue</emph> is any value to be complemented."
+msgstr "<emph>GatiiYaayaa</emph> gatii garagaru kamuudha."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10744\n"
+"04060105.xhp\n"
+"hd_id3149884\n"
+"17\n"
"help.text"
-msgid "From each result, its reference value (see below) is subtracted, and the difference is shown. Totals outside of the base field are shown as empty results."
-msgstr "Bu'aa tokko tokkoo irraa, gatiin wabii isaa(kana gadi ilaali) ni hir'isama, fi garaagarummaan ni agrsiifama. Ida'amtootni hundee dirreetin alaa akka bu'aawwan duwwaatti agrsiifamu."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10747\n"
+"04060105.xhp\n"
+"par_id3150132\n"
+"18\n"
"help.text"
-msgid "<emph>Named item</emph>"
-msgstr "<emph>Wanta moggaasame</emph>"
+msgid "<item type=\"input\">=NOT(A)</item>. If A=TRUE then NOT(A) will evaluate FALSE."
+msgstr "<item type=\"input\">=NOT(A)</item>. A=DHUGAA gara A=SOBA."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1074C\n"
+"04060105.xhp\n"
+"bm_id3148394\n"
"help.text"
-msgid "If a base item name is specified, the reference value for a combination of field items is the result where the item in the base field is replaced by the specified base item."
-msgstr "Yoo maqaan hundee wantaa ifteesstee,gatiin wabii dirree wantoota walitti makamanii firiin bakka wantii dirree hundee keessaa hundee wantaa ifta'een bakka bu'aamudha"
+msgid "<bookmark_value>OR function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii OR</bookmark_value>"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1074F\n"
+"04060105.xhp\n"
+"hd_id3148394\n"
+"20\n"
"help.text"
-msgid "<emph>Previous item or Next item</emph>"
-msgstr "<emph>Wanta duraanii ykn Wanta itti aanuu</emph>"
+msgid "OR"
+msgstr "OR"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10754\n"
+"04060105.xhp\n"
+"par_id3156060\n"
+"61\n"
"help.text"
-msgid "If \"previous item\" or \"next item\" is specified as the base item, the reference value is the result for the next visible member of the base field, in the base field's sort order."
-msgstr "Yoo \"wanti duraanii\" ykn \"wanta itti aanuu\" akka hundee wantaatti ifteessite,hundee dirree durduuba tartiiba qabsiisaa keessatti, gatiin wabii bu'aa miseensa hundee dirree kan itti anuun mul'atuti."
+msgid "<ahelp hid=\"HID_FUNC_ODER\">Returns TRUE if at least one argument is TRUE.</ahelp> This function returns the value FALSE, if all the arguments have the logical value FALSE."
+msgstr "<ahelp hid=\"HID_FUNC_ODER\">Yoo qajeelfamni tokkollee TRUE ta'e TRUE deebisa.</ahelp> Yoo qajeelfamnoonni hunduu gatii yaayyaa FALSE ta'e, Faankishiniin kun FALSE deebisa."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1075B\n"
+"04060105.xhp\n"
+"par_id3148771\n"
+"62\n"
"help.text"
-msgid "% Of"
-msgstr "% tii"
+msgid "The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values."
+msgstr "Qocolloon sirna yaadaa (DHUGAA,1<5,2+3=7,B8<10) gatii sirna yaadaa deebisa,ykn aareen(A1:C3)gatii sirna yaadaa of keessaa qaba."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10761\n"
+"04060105.xhp\n"
+"par_id3153546\n"
+"63\n"
"help.text"
-msgid "Each result is divided by its reference value. The reference value is determined in the same way as for \"Difference from\". Totals outside of the base field are shown as empty results."
-msgstr "Tokko tokkoo firii gatii wabii isaatiin hiramaa.Gatiin wabii akkumaa \"Garaagarumma kanarraa\" tin tilmaamaama.Ida'amtoonni hundee dirree tiin alaa akkaa bu'aawwaan duwwaatti mul'atu."
+msgid "When a function expects a single value, but you entered a cell range, then the value from the cell range is taken that is in the same column or row as the formula."
+msgstr "yeroo faankishiniin gatii qeenxee abdatee,garuu ati hammangaa man'ee yoo saagde,gatiin hammangaa man'eerraa tarjaa ykn tarree walfakkaatu akka foormulaatti fudhatama."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1076A\n"
+"04060105.xhp\n"
+"par_id3149027\n"
+"64\n"
"help.text"
-msgid "% Difference from"
-msgstr "% Garaagarumma kanarraa"
+msgid "If the entered range is outside of the current column or row of the formula, the function returns the error value #VALUE!"
+msgstr "Yoo hammangaa galchame foormulaa tarjaa ykn tarree ammeetiin ala ta'e,faankishiniin gatii dogogaraa #VALUE!deebisa."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10770\n"
+"04060105.xhp\n"
+"hd_id3155517\n"
+"22\n"
"help.text"
-msgid "From each result, its reference value is subtracted, and the difference is divided by the reference value. The reference value is determined in the same way as for \"Difference from\". Totals outside of the base field are shown as empty results."
-msgstr "Tokko tokkoo firiif, gatiin wabii isaa irra hir'isuudhaan isaa hir'aatee kana immoo gatii wabitiif hiruudha.Gatiin wabii akkumaa \"Garaagarumma kanarraa\" tin tilmaamaama.Ida'amtoonni hundee dirree tiin alaa akkaa bu'aawwaan duwwaatti mul'atu."
+msgid "Syntax"
+msgstr "Caasima"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10777\n"
+"04060105.xhp\n"
+"par_id3150468\n"
+"23\n"
"help.text"
-msgid "Running total in"
-msgstr "Waliigala kaasuu keessatti"
+msgid "OR(LogicalValue1; LogicalValue2 ...LogicalValue30)"
+msgstr "ykn(Gatii Yaayaa1;Gatii Yaayaa2 ...Gatii Yaayaa30)"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1077D\n"
+"04060105.xhp\n"
+"par_id3155819\n"
+"24\n"
"help.text"
-msgid "Each result is added to the sum of the results for preceding items in the base field, in the base field's sort order, and the total sum is shown."
-msgstr "Hundee dirree keessatti tokko tokkoon bu'aa ida'amaa bu'aawwaan wanta duraa irratti ida'amu, hundee dirree keessatti Durduubni Tartiiba Qabiinsaa, fi ida'aamni walii galaa agarsiifama."
+msgid "<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses the value from the range that is in the current column or row."
+msgstr "<emph>Gatii Yaayaa1;Gatii Yaayaa2 ...Gatii Yaayaa30</emph> ulaagaalee mirkaneeffamani dha.Ulaagaaleen huundi dhugaa ykn soba ta'u.Yoo hangiin akka jijjiramaatti gale,fankishiniin gatii hangii kan tarree ykn tarjaa ammee keessatti argamu fayyadama."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10780\n"
+"04060105.xhp\n"
+"hd_id3153228\n"
+"25\n"
"help.text"
-msgid "Results are always summed, even if a different summary function was used to get each result."
-msgstr "Tokko tokkoon bu'aa argachuuf yoo fankishinii ida'amaa garaagaraa fayyadamuullee, bu'aawwaan yeroo hundaa ni ida'amu."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10787\n"
+"04060105.xhp\n"
+"par_id3154870\n"
+"26\n"
"help.text"
-msgid "% of row"
-msgstr "% tii tarree"
+msgid "The logical values of entries 12<11; 13>22, and 45=45 are to be checked."
+msgstr "Gatii yaayyaa kan 12<11;13>12, fi 45=45 hunduu mirkaneeffamuu qaba."
-#: 12090105.xhp
-#, fuzzy
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1078D\n"
+"04060105.xhp\n"
+"par_id3155371\n"
+"27\n"
"help.text"
-msgid "Each result is divided by the total result for its row in the pivot table. If there are several data fields, the total for the result's data field is used. If there are subtotals with manually selected summary functions, the total with the data field's summary function is still used."
-msgstr "Tokko tokkoon bu'aa, ida'amaa bu'aa taree gabatee qinxaa keessatiif hiramu.Yoo dirreewwan deetaa garagaraa jiraatan,walii galli dirree deetaaf ni fayyada.Yoo hunduumta xiqqa ida'amaa fankishinoota hujeekan filamee,walii galli ida'aan fankishinii dirree deetaa ammaas ni fayyada."
+msgid "<item type=\"input\">=OR(12<11;13>22;45=45)</item> returns TRUE."
+msgstr "<item type=\"input\">=OR(12<11;13>22;45=45)</item> DHUGAA deebisa."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10794\n"
+"04060105.xhp\n"
+"par_id3158412\n"
+"59\n"
"help.text"
-msgid "% of column"
-msgstr "% tii tarjaa"
+msgid "<item type=\"input\">=OR(FALSE;TRUE)</item> returns TRUE."
+msgstr "<item type=\"input\">=OR(SOBA;DHUGAA)</item> DHUGAA deebisa."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1079A\n"
+"04060105.xhp\n"
+"bm_id3156256\n"
"help.text"
-msgid "Same as \"% of row\", but the total for the result's column is used."
-msgstr "Akkuma \"% tii tarree\"ti,garuu walii galli bu'aa tarjaa ni fayyada."
+msgid "<bookmark_value>TRUE function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii DHUGAA</bookmark_value>"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107A1\n"
+"04060105.xhp\n"
+"hd_id3156256\n"
+"38\n"
"help.text"
-msgid "% of total"
-msgstr "% tii walii galaa"
+msgid "TRUE"
+msgstr "TRUE"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107A7\n"
+"04060105.xhp\n"
+"par_id3155985\n"
+"39\n"
"help.text"
-msgid "Same as \"% of row\", but the grand total for the result's data field is used."
-msgstr "Akkuma \"% tii tarree\"ti,garuu dabaltoo dunneettii bu'aa dirre deetaa ni fayyadama."
+msgid "<ahelp hid=\"HID_FUNC_WAHR\">The logical value is set to TRUE.</ahelp> The TRUE() function does not require any arguments, and always returns the logical value TRUE."
+msgstr "<ahelp hid=\"HID_FUNC_WAHR\">Gatiin yaayyaa gara TRUE qindaa'a.</ahelp> Faankishiniin TRUE() qajeelfama kamiyyuu hin barbaadu, yeroo hundaa gatii yaayyaa TRUE deebisa."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107AE\n"
+"04060105.xhp\n"
+"hd_id3153717\n"
+"40\n"
"help.text"
-msgid "Index"
-msgstr "Kasaa"
+msgid "Syntax"
+msgstr "Caasima"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107B4\n"
+"04060105.xhp\n"
+"par_id3152590\n"
+"41\n"
"help.text"
-msgid "The row and column totals and the grand total, following the same rules as above, are used to calculate the following expression:"
-msgstr "Dunneettiin tarjaa, tarree fi dabaltoo, akkuuma seera armaan olii hordoofun, himannoo armaan gadii shallaguuf oola."
+msgid "TRUE()"
+msgstr "TRUE()"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107B7\n"
+"04060105.xhp\n"
+"hd_id3147175\n"
+"42\n"
"help.text"
-msgid "( original result * grand total ) / ( row total * column total )"
-msgstr "(bu'aa kan bu'uuraa*dabaltoo duneeetti)/(tarree duneetti*tarjaa duneetti)"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107BA\n"
+"04060105.xhp\n"
+"par_id3146148\n"
+"43\n"
"help.text"
-msgid "Base field"
-msgstr "Dirree Deetaa"
+msgid "If A=TRUE and B=FALSE the following examples appear:"
+msgstr "Yoo A=TRUE fi B=FALSE fakkeenyi armaan gadii ni mul'ata:"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107BE\n"
+"04060105.xhp\n"
+"par_id3083285\n"
+"44\n"
"help.text"
-msgid "<ahelp hid=\"1495371267\">Select the field from which the respective value is taken as base for the calculation.</ahelp>"
-msgstr "<ahelp hid=\"1495371267\">Dirree gatiin akka gatii hundee shallaggiitti oolu fili.</ahelp>"
+msgid "<item type=\"input\">=AND(A;B)</item> returns FALSE"
+msgstr "<item type=\"input\">=AND(A;B)</item> FALSE deebisa"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107C1\n"
+"04060105.xhp\n"
+"par_id3083444\n"
+"45\n"
"help.text"
-msgid "Base item"
-msgstr "Wanta hundee"
+msgid "<item type=\"input\">=OR(A;B)</item> returns TRUE"
+msgstr "<item type=\"input\">=OR(A;B)</item>DHUGAA deebisa."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107C5\n"
+"04060105.xhp\n"
+"par_id3154314\n"
+"46\n"
"help.text"
-msgid "<ahelp hid=\"1495371268\">Select the item of the base field from which the respective value is taken as base for the calculation.</ahelp>"
-msgstr "<ahelp hid=\"1495371268\">Wanta huundee dirreewwanii gatiin akka gatii hundee shallaggiitti oolu fili.</ahelp>"
+msgid "<item type=\"input\">=NOT(AND(A;B))</item> returns TRUE"
+msgstr "<item type=\"input\">=NOT(AND(A;B))</item> DHUGAA deebisa."
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
+"04060106.xhp\n"
"tit\n"
"help.text"
-msgid "Deleting Contents"
-msgstr "Qabeentota haquu"
+msgid "Mathematical Functions"
+msgstr "Faankishinii herreegaa"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"bm_id3143284\n"
+"04060106.xhp\n"
+"bm_id3147124\n"
"help.text"
-msgid "<bookmark_value>deleting; cell contents</bookmark_value><bookmark_value>cells; deleting contents</bookmark_value><bookmark_value>spreadsheets; deleting cell contents</bookmark_value><bookmark_value>cell contents; deleting</bookmark_value>"
-msgstr "<bookmark_value>haquu;qabeentota qabeewwanii</bookmark_value><bookmark_value>man'eewwan; qabeebtota haquu</bookmark_value><bookmark_value>wardiiwwan qajjoojjii; qabeentota man'ee haquu</bookmark_value><bookmark_value>qabeentota man'ee;haquu</bookmark_value>"
+msgid "<bookmark_value>mathematical functions</bookmark_value><bookmark_value>Function Wizard; mathematical</bookmark_value><bookmark_value>functions; mathematical functions</bookmark_value><bookmark_value>trigonometric functions</bookmark_value>"
+msgstr "<bookmark_value>faankishinii herreegaa</bookmark_value><bookmark_value>Faankishinii wiizaardii; herreega</bookmark_value><bookmark_value>faankishinoota; faankishinii herreegaa</bookmark_value><bookmark_value>faankishinii tiriginomeetirii</bookmark_value>"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"hd_id3143284\n"
+"04060106.xhp\n"
+"hd_id3147124\n"
"1\n"
"help.text"
-msgid "Deleting Contents"
-msgstr "Qabeentota haquu"
+msgid "Mathematical Functions"
+msgstr "Faankishinii herreegaa"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"par_id3149456\n"
+"04060106.xhp\n"
+"par_id3154943\n"
"2\n"
"help.text"
-msgid "<variable id=\"inhalteloeschentext\"><ahelp hid=\".uno:Delete\">Specifies the contents to be deleted from the active cell or from a selected cell range.</ahelp></variable> If several sheets are selected, all selected sheets will be affected."
-msgstr "<variable id=\"inhalteloeschentext\"><ahelp hid=\".uno:Delete\">Man'ee si'aa'aa ykn hammangaa man'ee filatame keessaa qabeentota haqamuu qaban adda baasa.</ahelp></variable> yoo wardiin baay'een filataman ,wardiiwwan filataman hunduu ni miidhamu."
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3159154\n"
-"21\n"
-"help.text"
-msgid "This dialog is also called by pressing Backspace after the cell cursor has been activated on the sheet."
-msgstr ""
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3145367\n"
-"22\n"
-"help.text"
-msgid "Pressing Delete deletes content without calling the dialog or changing formats."
-msgstr ""
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3153951\n"
-"23\n"
-"help.text"
-msgid "Use <emph>Cut</emph> on the Standard bar to delete contents and formats without the dialog."
-msgstr "Qabeentota fi dhangiiwwan <emph>qaaqiidhaan ala</emph>kabala waltawaa irratti balleessuuf muri fayyadamaa."
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3148575\n"
-"3\n"
-"help.text"
-msgid "Selection"
-msgstr "Filannoo"
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3149665\n"
-"4\n"
-"help.text"
-msgid "This area lists the options for deleting contents."
-msgstr "Naannoon kun qabeentota haqaman tarreessa."
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3146975\n"
-"5\n"
-"help.text"
-msgid "Delete All"
-msgstr "Hunduma haquu"
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3154729\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELALL\">Deletes all content from the selected cell range.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELALL\">Qabeentota hundaa hammanga man'ee filatame irraa haqa </ahelp>"
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3156286\n"
-"7\n"
-"help.text"
-msgid "Text"
-msgstr "Barruu"
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3154015\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELSTRINGS\">Deletes text only. Formats, formulas, numbers and dates are not affected.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELSTRINGS\">barruu qofa haqa.Dhangoonni,formullaawwan,lakkoofsonni fi guyyoonni hin dhiibeffaman.</ahelp>"
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3153840\n"
-"9\n"
-"help.text"
-msgid "Numbers"
-msgstr "Lakkoofsota"
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3148405\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELNUMBERS\">Deletes numbers only. Formats and formulas remain unchanged.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELNUMBERS\">Lakkoofsa qofa haqa.Dhangoonni fi foormullaa hin jijjiiraman.</ahelp>"
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3155764\n"
-"11\n"
-"help.text"
-msgid "Date & time"
-msgstr "Guyyaa fi yeroo"
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3149567\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELDATETIME\">Deletes date and time values. Formats, text, numbers and formulas remain unchanged.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELDATETIME\">Gatii guyyaa fi yeroo haqa.Dhangiiwwan,barruu,lakkoofsonni fi formullaawwan hin jijjiiraman.</ahelp>"
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3154703\n"
-"13\n"
-"help.text"
-msgid "Formulas"
-msgstr "Foormullaawwan"
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"par_id3148485\n"
-"14\n"
-"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELFORMULAS\">Deletes formulas. Text, numbers, formats, dates and times remain unchanged.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELFORMULAS\">Foormullaawwan haqa.Barruu,dhangiiwwan,guyyoota fi yeroon hin jijjiiraman.</ahelp>"
-
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3150300\n"
-"15\n"
-"help.text"
-msgid "Comments"
-msgstr "Yaadota"
+msgid "<variable id=\"mathematiktext\">This category contains the <emph>Mathematical</emph> functions for Calc.</variable> To open the <emph>Function Wizard</emph>, choose <link href=\"text/scalc/01/04060000.xhp\" name=\"Insert - Function\"><emph>Insert - Function</emph></link>."
+msgstr "<variable id=\"mathematiktext\">Akaakuun kun faankishinii <emph>Herreegaa</emph> calc of keessaa qaba.</variable> <emph>Masaka Faankishinii</emph> banuuf, <link href=\"text/scalc/01/04060000.xhp\" name=\"Insert - Function\"><emph>Saagi - Faankishinii</emph></link> fili."
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"par_id3154658\n"
-"16\n"
+"04060106.xhp\n"
+"bm_id3146944\n"
"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELNOTES\">Deletes comments added to cells. All other elements remain unchanged.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELNOTES\">Yaadota man'eewwanitti ida'aman haqa. Miseensonni biraa hunduu hin jijjiirraman.</ahelp>"
+msgid "<bookmark_value>ABS function</bookmark_value><bookmark_value>absolute values</bookmark_value><bookmark_value>values;absolute</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii ABS</bookmark_value><bookmark_value>gatii of danda'aa</bookmark_value><bookmark_value>gatii;of danda'aa</bookmark_value>"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"hd_id3155112\n"
-"17\n"
+"04060106.xhp\n"
+"hd_id3146944\n"
+"33\n"
"help.text"
-msgid "Formats"
-msgstr "Dhangiiwwan"
+msgid "ABS"
+msgstr "ABS"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"par_id3146134\n"
-"18\n"
+"04060106.xhp\n"
+"par_id3154546\n"
+"34\n"
"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELATTRS\">Deletes format attributes applied to cells. All cell content remains unchanged.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELATTRS\">Dhangiiwwan man'ee fayyadamuuf ga'ee qaban haqa.Qabeentaan man'ee hunduu hin jijjiiraman.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ABS\">Returns the absolute value of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ABS\">Gatii of danda'aa lakkoofsaa deebisa.</ahelp>"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"hd_id3150088\n"
-"19\n"
+"04060106.xhp\n"
+"hd_id3154843\n"
+"35\n"
"help.text"
-msgid "Objects"
-msgstr "Wantoota"
+msgid "Syntax"
+msgstr "Caasima"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"par_id3152990\n"
-"20\n"
+"04060106.xhp\n"
+"par_id3147475\n"
+"36\n"
"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELOBJECTS\">Deletes objects. All cell content remains unchanged.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELOBJECTS\">Wantoota haqa.Qabantaan man'ee hunduu hin jijjiiraman.</ahelp>"
+msgid "ABS(Number)"
+msgstr "ABS(Lakkoofsa)"
-#: 12080400.xhp
+#: 04060106.xhp
msgctxt ""
-"12080400.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3148438\n"
+"37\n"
"help.text"
-msgid "Ungroup"
-msgstr "Garbaasi"
+msgid "<emph>Number</emph> is the number whose absolute value is to be calculated. The absolute value of a number is its value without the +/- sign."
+msgstr "<emph>Lakkoofsi</emph> lakkoofsa gatiin of danda'aan isaa shallagamuudha.Lakkoofsi gatii of danda'aan gatii mallattoo +/- ala qabaatudha."
-#: 12080400.xhp
+#: 04060106.xhp
msgctxt ""
-"12080400.xhp\n"
-"hd_id3148492\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3155823\n"
+"38\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
-msgstr "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Garbaasi</link>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12080400.xhp
+#: 04060106.xhp
msgctxt ""
-"12080400.xhp\n"
-"par_id3151384\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3152787\n"
+"39\n"
"help.text"
-msgid "<variable id=\"gruppierungauf\"><ahelp hid=\".uno:Ungroup\" visibility=\"visible\">Ungroups the selection. In a nested group, the last rows or columns that were added are removed from the group.</ahelp></variable>"
-msgstr "<variable id=\"gruppierungauf\"><ahelp hid=\".uno:Ungroup\" visibility=\"visible\">Filatamoo garbaasa.Garee walxaxaa keessatti tarjaawwan ykn tarreewwan xumura irratti dabalaman garee keessaa ni haaqamu.</ahelp></variable>"
+msgid "<item type=\"input\">=ABS(-56)</item> returns 56."
+msgstr "<item type=\"input\">=ABS(-56)</item>56 deebisa."
-#: 12080400.xhp
+#: 04060106.xhp
msgctxt ""
-"12080400.xhp\n"
-"hd_id3151210\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3148752\n"
+"40\n"
"help.text"
-msgid "Deactivate for"
-msgstr "kaka'uumsala kanaaf"
+msgid "<item type=\"input\">=ABS(12)</item> returns 12."
+msgstr "<item type=\"input\">=ABS(12)</item> deebisa."
-#: 12080400.xhp
+#: 04060106.xhp
msgctxt ""
-"12080400.xhp\n"
-"hd_id3156280\n"
-"5\n"
+"04060106.xhp\n"
+"par_id320139\n"
"help.text"
-msgid "Rows"
-msgstr "Tarreewwaan"
+msgid "<item type=\"input\">=ABS(0)</item> returns 0."
+msgstr "<item type=\"input\">=ABS(0)</item> 0 deebisa."
-#: 12080400.xhp
+#: 04060106.xhp
msgctxt ""
-"12080400.xhp\n"
-"par_id3125864\n"
-"6\n"
+"04060106.xhp\n"
+"bm_id3150896\n"
"help.text"
-msgid "Removes selected rows from a group."
-msgstr "Garee keessaa tarreewwan filataman haaqa."
+msgid "<bookmark_value>COUNTBLANK function</bookmark_value><bookmark_value>counting;empty cells</bookmark_value><bookmark_value>empty cells;counting</bookmark_value>"
+msgstr "<bookmark_value>Faankishiniin COUNTBLANK</bookmark_value><bookmark_value>lakkaa'uu;man'eewwan duuwwaa</bookmark_value><bookmark_value>man'eewwan duuwwaa;lakkaa'uu</bookmark_value>"
-#: 12080400.xhp
+#: 04060106.xhp
msgctxt ""
-"12080400.xhp\n"
-"hd_id3147230\n"
-"7\n"
+"04060106.xhp\n"
+"hd_id3150896\n"
+"42\n"
"help.text"
-msgid "Columns"
-msgstr "Tarjaawwan"
+msgid "COUNTBLANK"
+msgstr "COUNTBLANK"
-#: 12080400.xhp
+#: 04060106.xhp
msgctxt ""
-"12080400.xhp\n"
-"par_id3154685\n"
-"8\n"
+"04060106.xhp\n"
+"par_id3155260\n"
+"43\n"
"help.text"
-msgid "Removes selected columns from a group."
-msgstr "Garee keessaa tarjaawwan filataman haaqa."
+msgid "<ahelp hid=\"HID_FUNC_ANZAHLLEEREZELLEN\">Returns the number of empty cells.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ANZAHLLEEREZELLEN\">Man'eewwan duuwwaa deebisa.</ahelp>"
-#: 07090000.xhp
+#: 04060106.xhp
msgctxt ""
-"07090000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3145144\n"
+"44\n"
"help.text"
-msgid "Freeze"
-msgstr "Dhaabi"
+msgid "Syntax"
+msgstr "Caasima"
-#: 07090000.xhp
+#: 04060106.xhp
msgctxt ""
-"07090000.xhp\n"
-"hd_id3150517\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3153931\n"
+"45\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"Freeze\">Freeze</link>"
-msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Freeze\">Dhaabi</link>"
+msgid "COUNTBLANK(Range)"
+msgstr "COUNTBLANK(Hammangaa)"
-#: 07090000.xhp
+#: 04060106.xhp
msgctxt ""
-"07090000.xhp\n"
-"par_id3156289\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3149512\n"
+"46\n"
"help.text"
-msgid "<ahelp hid=\".uno:FreezePanes\" visibility=\"visible\">Divides the sheet at the top left corner of the active cell and the area to the top left is no longer scrollable.</ahelp>"
-msgstr "<ahelp hid=\".uno:FreezePanes\" visibility=\"visible\">Barruu xiyyoo gubbaa harka bitaa man'ee ka'aa jiru hiruun bakki gubbaa harkaa mirgaa lammata hin marfamuu.</ahelp>"
+msgid "Returns the number of empty cells in the cell range <emph>Range</emph>."
+msgstr "Lakkoofsa man'eewwan duuwwaa hammangaa man'ee keessa jiranii deebisa.<emph>Range</emph>."
-#: 12050000.xhp
+#: 04060106.xhp
msgctxt ""
-"12050000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3146139\n"
+"47\n"
"help.text"
-msgid "Subtotals"
-msgstr "Hundamtaa Xiqqaa"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12050000.xhp
+#: 04060106.xhp
msgctxt ""
-"12050000.xhp\n"
-"hd_id3153822\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3148586\n"
+"48\n"
"help.text"
-msgid "Subtotals"
-msgstr "Hundamtaa Xiqqaa"
+msgid "<item type=\"input\">=COUNTBLANK(A1:B2)</item> returns 4 if cells A1, A2, B1, and B2 are all empty."
+msgstr "<item type=\"input\">=COUNTBLANK(A1:B2)</item> Yoo man'eewwan A1, A2, B1, and B2 duuwwaa ta'an 4 deebisa."
-#: 12050000.xhp
+#: 04060106.xhp
msgctxt ""
-"12050000.xhp\n"
-"par_id3145119\n"
-"2\n"
+"04060106.xhp\n"
+"bm_id3153114\n"
"help.text"
-msgid "<variable id=\"teilergebnisse\"><ahelp hid=\".uno:DataSubTotals\" visibility=\"visible\">Calculates subtotals for the columns that you select.</ahelp></variable> $[officename] uses the SUM function to automatically calculate the subtotal and grand total values in a labeled range. You can also use other functions to perform the calculation. $[officename] automatically recognizes a defined database area when you place the cursor in it."
-msgstr "<variable id=\"teilergebnisse\"><ahelp hid=\".uno:DataSubTotals\" visibility=\"visible\">Tarjaawwan filateef hundamtaa xiqqaahundamtaa xiqqaa herreega.Hammangaa moggafame keessatti</ahelp></variable> $[officename]n hundamtaa xiqqaa fii dabaltoo dunneetii ofumaan herreeguuf fankishinii SUM jedhamutti fayyadama.Akkasumas fankishinoota biraa shallaggif fayyadamuu ni dandeessa.$[officename] n yommuu qareen naannawa kuusaa deetaa qindeessa irraa agarsiiftu $[officename] n ofumaan addada isaan baasa."
+msgid "<bookmark_value>ACOS function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii ACOS </bookmark_value>"
-#: 12050000.xhp
+#: 04060106.xhp
msgctxt ""
-"12050000.xhp\n"
-"par_id3153896\n"
-"3\n"
+"04060106.xhp\n"
+"hd_id3153114\n"
+"50\n"
"help.text"
-msgid "For example, you can generate a sales summary for a certain postal code based on data from a client database."
-msgstr "Fakkeenyaaf, lakkada poostaa murtawoodhaf deetaa kuusaa deetaa maamila irratti hundaa'udhan gurgurtaa dimshashaa uumuu dandeessa."
+msgid "ACOS"
+msgstr "ACOS"
-#: 12050000.xhp
+#: 04060106.xhp
msgctxt ""
-"12050000.xhp\n"
-"hd_id3163708\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3145163\n"
+"51\n"
"help.text"
-msgid "Delete"
-msgstr "Haqi"
+msgid "<ahelp hid=\"HID_FUNC_ARCCOS\">Returns the inverse trigonometric cosine of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCCOS\">Garagalcha cosine tiriginomeetirii lakkoofsaa deebisa.</ahelp>"
-#: 12050000.xhp
+#: 04060106.xhp
msgctxt ""
-"12050000.xhp\n"
-"par_id3154125\n"
-"5\n"
+"04060106.xhp\n"
+"hd_id3153565\n"
+"52\n"
"help.text"
-msgid "Deletes the subtotal rows in the selected area."
-msgstr "iddoo filataman keessaa tarreewwan Hundamtaa Xiqqaa haqa."
+msgid "Syntax"
+msgstr "Caasima"
-#: 06030800.xhp
+#: 04060106.xhp
msgctxt ""
-"06030800.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3150020\n"
+"53\n"
"help.text"
-msgid "Mark Invalid Data"
-msgstr "Deetaa Fashaalaawaa Mallatteessi"
+msgid "ACOS(Number)"
+msgstr "ACOS(Lakkoofsa)"
-#: 06030800.xhp
+#: 04060106.xhp
msgctxt ""
-"06030800.xhp\n"
-"bm_id3153821\n"
+"04060106.xhp\n"
+"par_id3159134\n"
+"54\n"
"help.text"
-msgid "<bookmark_value>cells; invalid data</bookmark_value><bookmark_value>data; showing invalid data</bookmark_value><bookmark_value>invalid data;marking</bookmark_value>"
-msgstr "<bookmark_value>Man'eewwan; deetaa fashaalaawaa</bookmark_value><bookmark_value>deetaa; deetaa fashaalaawaa agarsiisuu</bookmark_value><bookmark_value>deetaa fashaalaawaa; mallatteessuu</bookmark_value>"
+msgid "This function returns the inverse trigonometric cosine of <emph>Number</emph>, that is the angle (in radians) whose cosine is Number. The angle returned is between 0 and PI."
+msgstr "Faankishiniin kun cosine tiriginomeetirii <emph>lakkoofsaa</emph>,kan kofaa(raadiyaanidhaan)kan cosine isaa lakkoofsa ta'e.Kofti deebi'u 0 fi PI gidduudha."
-#: 06030800.xhp
+#: 04060106.xhp
msgctxt ""
-"06030800.xhp\n"
-"hd_id3153821\n"
-"1\n"
+"04060106.xhp\n"
+"par_id679647\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\">Mark Invalid Data</link>"
-msgstr "<link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\">Deetaa Fashaalaawaa Mallaatteessi</link>"
+msgid "To return the angle in degrees, use the DEGREES function."
+msgstr "Kofa deegridhaan deebisuuf,faankishinii DEGREE fayyadamaa."
-#: 06030800.xhp
+#: 04060106.xhp
msgctxt ""
-"06030800.xhp\n"
-"par_id3147264\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3149882\n"
+"55\n"
"help.text"
-msgid "<ahelp hid=\".uno:ShowInvalid\" visibility=\"visible\">Marks all cells in the sheet that contain values outside the validation rules.</ahelp>"
-msgstr "<ahelp hid=\".uno:ShowInvalid\" visibility=\"visible\">Barruu keessatti gatiiwwan man'eewwanii seerota mirkaaneessaa alaa ta'aa hundaa mallatteessi.</ahelp>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 06030800.xhp
+#: 04060106.xhp
msgctxt ""
-"06030800.xhp\n"
-"par_id3151211\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3150128\n"
+"56\n"
"help.text"
-msgid "The <link href=\"text/scalc/01/12120000.xhp\" name=\"validity rules\">validity rules</link> restrict the input of numbers, dates, time values and text to certain values. However, it is possible to enter invalid values or copy invalid values into the cells if the <emph>Stop</emph> option is not selected. When you assign a validity rule, existing values in a cell will not be modified."
-msgstr "<link href=\"text/scalc/01/12120000.xhp\" name=\"validity rules\">Seeroota Mkirkanneessaa</link>naqaan lakkoofsota,aduuwwan,gatii yeroo, fi barruu gara gatii murta'atti ittisa.Hata'uu malee, yoo dirqalli <emph>Dhaabi</emph> hin filatamnee,gatiiwwan fashaalaawaa ykn garagalcha gatiiwwan fashaalaawaa gara man'eewwanitti galchuun ni danda'ama.Yommuu seera mirkanneessa keessu,gatiin duraa man'ee keessaa jiru hin harromfamu."
+msgid "<item type=\"input\">=ACOS(-1)</item> returns 3.14159265358979 (PI radians)"
+msgstr "<item type=\"input\">=ACOS(-1)</item> 3.14159265358979 deebisa(PI raadiyaanidhaan)"
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id8792382\n"
"help.text"
-msgid "EASTERSUNDAY"
-msgstr "EASTERSUNDAY"
+msgid "<item type=\"input\">=DEGREES(ACOS(0.5))</item> returns 60. The cosine of 60 degrees is 0.5."
+msgstr "<item type=\"input\">=DEGREES(ACOS(0.5))</item> 60 deebisa.Cosine 60 0.5 ta'a."
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"bm_id3152960\n"
+"04060106.xhp\n"
+"bm_id3145355\n"
"help.text"
-msgid "<bookmark_value>EASTERSUNDAY function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii EASTERSUNDAY</bookmark_value>"
+msgid "<bookmark_value>ACOSH function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii ACOSH </bookmark_value>"
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"hd_id3152960\n"
-"175\n"
+"04060106.xhp\n"
+"hd_id3145355\n"
+"60\n"
"help.text"
-msgid "<variable id=\"eastersunday\"><link href=\"text/scalc/01/func_eastersunday.xhp\">EASTERSUNDAY</link></variable>"
-msgstr "<variable id=\"eastersunday\"><link href=\"text/scalc/01/func_eastersunday.xhp\">EASTERSUNDAY</link></variable>"
+msgid "ACOSH"
+msgstr "ACOSH"
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3154570\n"
-"176\n"
+"04060106.xhp\n"
+"par_id3157993\n"
+"61\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_OSTERSONNTAG\">Returns the date of Easter Sunday for the entered year.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_OSTERSONNTAG\">Waggaa galchiteef aduu dilbata faasikaa kenna.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ARCOSHYP\">Returns the inverse hyperbolic cosine of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCOSHYP\">Kosaayinii haayperpoolikii lakkoofsaa deebisa.</ahelp>"
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"hd_id9460127\n"
+"04060106.xhp\n"
+"hd_id3145295\n"
+"62\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id2113711\n"
-"help.text"
-msgid "EASTERSUNDAY(Year)"
-msgstr "EASTERSUNDAY(Waggaa)"
-
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3938413\n"
-"help.text"
-msgid "<emph>Year</emph> is an integer between 1583 and 9956 or 0 and 99. You can also calculate other holidays by simple addition with this date."
-msgstr "<emph>Waggaa</emph> n intijeerii 1583 fi 9956 ykn 0 fi 99 gidduutti argamu.Akkasumas haala salphaadhan guyyaa kanatti ida'uudhan guyyoota ayyaanaa biroo shallaguu dandessa."
-
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3156156\n"
-"177\n"
-"help.text"
-msgid "Easter Monday = EASTERSUNDAY(Year) + 1"
-msgstr "Wiixata Faasikaa = EASTERSUNDAY(Waggaa) + 1"
-
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3147521\n"
-"178\n"
-"help.text"
-msgid "Good Friday = EASTERSUNDAY(Year) - 2"
-msgstr "Ayyaana Fannoo =EASTERSUNDAY(Waggaa) - 2"
-
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3146072\n"
-"179\n"
-"help.text"
-msgid "Pentecost Sunday = EASTERSUNDAY(Year) + 49"
-msgstr "Dilbata Phenxeeqoosxee = EASTERSUNDAY(Waggaa) + 49"
-
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3149553\n"
-"180\n"
-"help.text"
-msgid "Pentecost Monday = EASTERSUNDAY(Year) + 50"
-msgstr "Wiixata pheenxeeqoonxee EASTERSUNDAY(Waggaa) + 5"
-
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"hd_id3155120\n"
-"181\n"
-"help.text"
-msgid "Examples"
-msgstr "Fakkeenyawwan"
-
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3154472\n"
-"182\n"
-"help.text"
-msgid "=EASTERSUNDAY(2000) returns 2000-04-23."
-msgstr "=EASTERSUNDAY(2000) 2000-04-23 kenna."
-
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3150940\n"
-"184\n"
+"04060106.xhp\n"
+"par_id3151017\n"
+"63\n"
"help.text"
-msgid "EASTERSUNDAY(2000)+49 returns the internal serial number 36688. The result is 2000-06-11. Format the serial date number as a date, for example in the format YYYY-MM-DD."
-msgstr "EASTERSUNDAY(2000)+49n lakkofsa eenyummaa kessaa 36688 kenna.Firiin 2000-06-11.Eenyummaa aduu akkaa lakkoofsa aduutti dhaangessi,fakkenyaaf akkaa dhaangessa YYYY-MM-DD tti."
+msgid "ACOSH(Number)"
+msgstr "ACOSH(Lakkoofsa)"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3149000\n"
+"64\n"
"help.text"
-msgid "Navigator"
-msgstr "Naannessaa"
+msgid "This function returns the inverse hyperbolic cosine of <emph>Number</emph>, that is the number whose hyperbolic cosine is Number."
+msgstr "Faankishiniin kun garagalcha cosine haayperpoolikii <emph>Lakkoofsaa</emph>deebisa,lakkoofsi sun cosine haayperpoolikiin isaa lakkoofsa ta'eedha."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"bm_id3150791\n"
+"04060106.xhp\n"
+"par_id6393932\n"
"help.text"
-msgid "<bookmark_value>Navigator;for sheets</bookmark_value><bookmark_value>navigating;in spreadsheets</bookmark_value><bookmark_value>displaying; scenario names</bookmark_value><bookmark_value>scenarios;displaying names</bookmark_value>"
-msgstr "<bookmark_value>naannessaa;wardiif</bookmark_value><bookmark_value>wardii keessa;naanna'uu</bookmark_value><bookmark_value>maqaa mul'inaa;mul'isuu</bookmark_value><bookmark_value>mul'inoota;maqaa mul'isuu</bookmark_value>"
+msgid "Number must be greater than or equal to 1."
+msgstr "Lakkoofsa dirqama 1 waliin walqixa ykn caaluu qaba."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3150791\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3150566\n"
+"65\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>"
-msgstr "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Naannessaa</link>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3156422\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3145629\n"
+"66\n"
"help.text"
-msgid "<ahelp hid=\".uno:Navigator\">Activates and deactivates the Navigator.</ahelp> The Navigator is a <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>."
-msgstr "<ahelp hid=\".uno:Navigator\">Naannessaa Kakaasas hadoochas</ahelp> Naannessaan <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">foddaa galmaa'udha</link>."
+msgid "<item type=\"input\">=ACOSH(1)</item> returns 0."
+msgstr "<item type=\"input\">=ACOSH(1)</item> 0 deebisa."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3145271\n"
-"40\n"
+"04060106.xhp\n"
+"par_id951567\n"
"help.text"
-msgid "Choose <emph>View - Navigator</emph> to display the Navigator."
-msgstr "Naanna'aa mul'isuuf <emph>Mul'annoo - Naanna'aa</emph> filadhu."
+msgid "<item type=\"input\">=ACOSH(COSH(4))</item> returns 4."
+msgstr "<item type=\"input\">=ACOSH(COSH(4))</item> 4 deebisa."
-#: 02110000.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3159155\n"
-"4\n"
+"04060106.xhp\n"
+"bm_id3149027\n"
"help.text"
-msgid "Column"
-msgstr "Tarjaa"
+msgid "<bookmark_value>ACOT function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii ACOT</bookmark_value>"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3146984\n"
-"5\n"
+"04060106.xhp\n"
+"hd_id3149027\n"
+"70\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_COL\">Enter the column letter. Press Enter to reposition the cell cursor to the specified column in the same row.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_COL\">Qubee garee galchi.Qaree man'ee tarjaa beekame tarree walfakkaataa keessa jirutti deebisuuf 'Enter' dhiibi.</ahelp>"
+msgid "ACOT"
+msgstr "ACOT"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3147126\n"
-"6\n"
+"04060106.xhp\n"
+"par_id3155818\n"
+"71\n"
"help.text"
-msgid "Row"
-msgstr "Tarree"
+msgid "<ahelp hid=\"HID_FUNC_ARCCOT\">Returns the inverse cotangent (the arccotangent) of the given number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCCOT\">Garagaltoo cotangent (the arccotangent) lakkoofsa kennamee deebisa.</ahelp>"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3149958\n"
-"7\n"
+"04060106.xhp\n"
+"hd_id3153225\n"
+"72\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_ROW\">Enter a row number. Press Enter to reposition the cell cursor to the specified row in the same column.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_ROW\">Lakkoofsa tarree galchi.Qaree man'ee tarree beekame tarjaa walfakkaataa keessa jirutti deebisuuf 'Enter' dhiibi.</ahelp>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3150717\n"
-"8\n"
+"04060106.xhp\n"
+"par_id3158419\n"
+"73\n"
"help.text"
-msgid "Data Range"
-msgstr "Hammanga Deetaa"
+msgid "ACOT(Number)"
+msgstr "ACOT(Lakkoofsa)"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3150752\n"
-"10\n"
+"04060106.xhp\n"
+"par_id3154948\n"
+"74\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_DATA\">Specifies the current data range denoted by the position of the cell cursor.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_DATA\">Hammanga deetaa ammee iddoo qaree man'eetiin bakka bu'e adda baasa.</ahelp>"
+msgid "This function returns the inverse trigonometric cotangent of <emph>Number</emph>, that is the angle (in radians) whose cotangent is Number. The angle returned is between 0 and PI."
+msgstr "Faankishiniin kun garagaltoo cotangent tiriiginoomeetirii <emph>Number</emph>,kan kofti(raadiyaanidhaan) cotangent isaa lakkoofsa ta'e deebisa.Kofti deebi'u 0 fi PI gidduudha."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3159264\n"
+"04060106.xhp\n"
+"par_id5834528\n"
"help.text"
-msgid "<image id=\"img_id3147338\" src=\"cmd/sc_grid.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147338\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147338\" src=\"cmd/sc_grid.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147338\">sajoo</alt></image>"
+msgid "To return the angle in degrees, use the DEGREES function."
+msgstr "Kofa deegridhaan deebisuuf,faankishinii DEGREE fayyadamaa."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3146919\n"
-"9\n"
+"04060106.xhp\n"
+"hd_id3147538\n"
+"75\n"
"help.text"
-msgid "Data Range"
-msgstr "Hammanga Deetaa"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3148488\n"
-"14\n"
+"04060106.xhp\n"
+"par_id3155375\n"
+"76\n"
"help.text"
-msgid "Start"
-msgstr "Eegala"
+msgid "<item type=\"input\">=ACOT(1)</item> returns 0.785398163397448 (PI/4 radians)."
+msgstr "<item type=\"input\">=ACOT(1)</item> 0.785398163397448 (PI/4 raadiyaanii)deebisa."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3150086\n"
-"16\n"
+"04060106.xhp\n"
+"par_id8589434\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_UP\">Moves to the cell at the beginning of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_UP\">Man'ee jalqaba<emph> Hammanga Deetaa</emph> ammee irra jirutti hiiqsa,kanas qabduu hammanga deetaa fayyadamuun shooluu ni dandeessa.</ahelp>"
+msgid "<item type=\"input\">=DEGREES(ACOT(1))</item> returns 45. The tangent of 45 degrees is 1."
+msgstr "<item type=\"input\">=DEGREES(ACOT(1))</item> 45 deebisa.Tangent tiin diigrii 45 1."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3152994\n"
+"04060106.xhp\n"
+"bm_id3148426\n"
"help.text"
-msgid "<image id=\"img_id3150515\" src=\"sw/imglst/sc20186.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150515\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150515\" src=\"sw/imglst/sc20186.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150515\">Sajoo</alt></image>"
+msgid "<bookmark_value>ACOTH function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii ACOTH </bookmark_value>"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3154372\n"
-"15\n"
+"04060106.xhp\n"
+"hd_id3148426\n"
+"80\n"
"help.text"
-msgid "Start"
-msgstr "Eegala"
+msgid "ACOTH"
+msgstr "ACOTH"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3146982\n"
-"17\n"
+"04060106.xhp\n"
+"par_id3147478\n"
+"81\n"
"help.text"
-msgid "End"
-msgstr "Xumura"
+msgid "<ahelp hid=\"HID_FUNC_ARCOTHYP\">Returns the inverse hyperbolic cotangent of the given number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCOTHYP\">Garagaltoo cotangentii haayperpoolokii lakkoofsa kennamee deebisa.</ahelp>"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3152985\n"
-"19\n"
+"04060106.xhp\n"
+"hd_id3152585\n"
+"82\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_DOWN\">Moves to the cell at the end of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_DOWN\">Man'ee dhuma hammanga deetaa ammee irra jirutti hiiqsa,kanas qabduu <emph>Hammanga Deetaa</emph> fayyadamuudhaan shooluu ni dandeessa.</ahelp>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3159170\n"
+"04060106.xhp\n"
+"par_id3147172\n"
+"83\n"
"help.text"
-msgid "<image id=\"img_id3148871\" src=\"sw/imglst/sc20175.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148871\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148871\" src=\"sw/imglst/sc20175.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148871\">Sajoo</alt></image>"
+msgid "ACOTH(Number)"
+msgstr "ACOTH(Lakkoofsa)"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3147072\n"
-"18\n"
+"04060106.xhp\n"
+"par_id3146155\n"
+"84\n"
"help.text"
-msgid "End"
-msgstr "Xumura"
+msgid "This function returns the inverse hyperbolic cotangent of <emph>Number</emph>, that is the number whose hyperbolic cotangent is Number."
+msgstr "Faankishiniin kun garagaltoo cotangentii <emph>lakkoofsa</emph> kennamee deebisa, sunis lakkoofsa kan cotangentii haayperbooliikii lakkoofsa ta'eedha."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3150107\n"
-"20\n"
+"04060106.xhp\n"
+"par_id5818659\n"
"help.text"
-msgid "Toggle"
-msgstr "Ceesistuu"
+msgid "An error results if Number is between -1 and 1 inclusive."
+msgstr "Yoo lakkoofsi -1 fi 1 dabalee gidduu kana ta'e dogogorri ni uumama."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3159098\n"
-"22\n"
+"04060106.xhp\n"
+"hd_id3083452\n"
+"85\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_ROOT\">Toggles the content view. Only the selected Navigator element and its subelements are displayed.</ahelp> Click the icon again to restore all elements for viewing."
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_ROOT\">Mul'annoo qabentaa ceesisa.Maalima naannessaa filatameefi citni maalimootaa isaa qofti ni mul'atu.</ahelp> Maalimoota agarsiisaaf oolan hunda bakkatdeebisuuf sajoo irra deebi'iiti cuqaasi."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3152869\n"
+"04060106.xhp\n"
+"par_id3150608\n"
+"86\n"
"help.text"
-msgid "<image id=\"img_id3149126\" src=\"sw/imglst/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149126\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149126\" src=\"sw/imglst/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149126\">Sajoo</alt></image>"
+msgid "<item type=\"input\">=ACOTH(1.1)</item> returns inverse hyperbolic cotangent of 1.1, approximately 1.52226."
+msgstr "<item type=\"input\">=ACOTH(1.1)</item> Garagalcha cotangentii haayperpoolikii 1.1,tilmaamaan 1.52226 deebisa."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3159229\n"
-"21\n"
+"04060106.xhp\n"
+"bm_id3145084\n"
"help.text"
-msgid "Toggle"
-msgstr "Ceesistuu"
+msgid "<bookmark_value>ASIN function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii ASIN</bookmark_value>"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3149381\n"
-"11\n"
+"04060106.xhp\n"
+"hd_id3145084\n"
+"90\n"
"help.text"
-msgid "Contents"
-msgstr "Qabeentoota"
+msgid "ASIN"
+msgstr "ASIN"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3150051\n"
-"13\n"
+"04060106.xhp\n"
+"par_id3156296\n"
+"91\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_ZOOM\">Allows you to hide/show the contents.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_ZOOM\">Qabeentoota akka dhoksitu yookiin agarsiiftu si dandeessisa.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ARCSIN\">Returns the inverse trigonometric sine of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCSIN\">Garagaltoo sine tirignoomeetirii lakkoofsaa deebisa.</ahelp>"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3155597\n"
+"04060106.xhp\n"
+"hd_id3149716\n"
+"92\n"
"help.text"
-msgid "<image id=\"img_id3154738\" src=\"sw/imglst/sc20233.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154738\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154738\" src=\"sw/imglst/sc20233.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154738\">Sajoo</alt></image>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3150955\n"
-"12\n"
+"04060106.xhp\n"
+"par_id3156305\n"
+"93\n"
"help.text"
-msgid "Contents"
-msgstr "Qabeentoota"
+msgid "ASIN(Number)"
+msgstr "ASIN(Lakkoofsa)"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3147244\n"
-"23\n"
+"04060106.xhp\n"
+"par_id3150964\n"
+"94\n"
"help.text"
-msgid "Scenarios"
-msgstr "Mul'inoota"
+msgid "This function returns the inverse trigonometric sine of <emph>Number</emph>, that is the angle (in radians) whose sine is Number. The angle returned is between -PI/2 and +PI/2."
+msgstr "Faankishiniin kun garagaltoo sine tiriignoomeetirii <emph>Lakkoofsaa</emph>,sine kofti isaa lakkoofsaan ta'e deebisa.Kofti deebiu -PI/2 fi +PI/2 gidduu jira."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3153955\n"
-"25\n"
+"04060106.xhp\n"
+"par_id203863\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_SCEN\">Displays all available scenarios. Double-click a name to apply that scenario.</ahelp> The result is shown in the sheet. For more information, choose <link href=\"text/scalc/01/06050000.xhp\" name=\"Tools - Scenarios\"><emph>Tools - Scenarios</emph></link>."
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_SCEN\">Mul'inoota jiran hunda mul'isa.Mul'inicha fayyadamuuf maqaa lama cuqaasi.</ahelp> Firiin isaa wardii keessatti mul'ata.Odeeffannoo dabalataaf <link href=\"text/scalc/01/06050000.xhp\" name=\"Tools - Scenarios\"><emph>Meeshaalee - Mul'inoota</emph></link> filadhu."
+msgid "To return the angle in degrees, use the DEGREES function."
+msgstr "Kofa deegridhaan deebisuuf,faankishinii DEGREE fayyadamaa."
-#: 02110000.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3148745\n"
+"04060106.xhp\n"
+"hd_id3149448\n"
+"95\n"
"help.text"
-msgid "<image id=\"img_id3159256\" src=\"sc/imglst/navipi/na07.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159256\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149126\" src=\"sw/imglst/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149126\">Sajoo</alt></image>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3166466\n"
-"24\n"
+"04060106.xhp\n"
+"par_id3156100\n"
+"96\n"
"help.text"
-msgid "Scenarios"
-msgstr "Mul'inoota"
+msgid "<item type=\"input\">=ASIN(0)</item> returns 0."
+msgstr "<item type=\"input\">=ASIN(0)</item> 0 deebisa. returns 0."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_idN10A6C\n"
+"04060106.xhp\n"
+"par_id6853846\n"
"help.text"
-msgid "If the Navigator displays scenarios, you can access the following commands when you right-click a scenario entry:"
-msgstr "Yoo Naannessaan mul'inoota mul'ise,galiinsa mul'inaa mirga cuqaasuun ajajoota itti aanan argachuu ni dandeessa."
+msgid "<item type=\"input\">=ASIN(1)</item> returns 1.5707963267949 (PI/2 radians)."
+msgstr "<item type=\"input\">=ASIN(1)</item> 1.5707963267949 (PI/2 raadiyaanidhaan)deebisa."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_idN10A77\n"
+"04060106.xhp\n"
+"par_id8772240\n"
"help.text"
-msgid "Delete"
-msgstr "Haqi"
+msgid "<item type=\"input\">=DEGREES(ASIN(0.5))</item> returns 30. The sine of 30 degrees is 0.5."
+msgstr "<item type=\"input\">=DEGREES(ASIN(0.5))</item> 30 deebisa.Sine diigrii 30 0.5 ta'a."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_idN10A7B\n"
+"04060106.xhp\n"
+"bm_id3151266\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SCENARIO_DELETE\">Deletes the selected scenario.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SCENARIO_DELETE\">Mul'ina filatame haqa.</ahelp>"
+msgid "<bookmark_value>ASINH function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii ASINH</bookmark_value>"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_idN10A92\n"
+"04060106.xhp\n"
+"hd_id3151266\n"
+"100\n"
"help.text"
-msgid "Properties"
-msgstr "Amaloota"
+msgid "ASINH"
+msgstr "ASINH"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_idN10A96\n"
+"04060106.xhp\n"
+"par_id3147077\n"
+"101\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SCENARIO_EDIT\">Opens the <link href=\"text/scalc/01/06050000.xhp\">Edit scenario</link> dialog, where you can edit the scenario properties.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SCENARIO_EDIT\">Qaaqa <link href=\"text/scalc/01/06050000.xhp\">Mul'ina gulaali</link>, bakkatti amaloota mul'inaa gulaalu dandeessu bana.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ARSINHYP\">Returns the inverse hyperbolic sine of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARSINHYP\">Garagaltoo sine haayperpoolikii lakkoofsaa deebisa.</ahelp>"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3150037\n"
-"26\n"
+"04060106.xhp\n"
+"hd_id3150763\n"
+"102\n"
"help.text"
-msgid "Drag Mode"
-msgstr "Haalata Harkisaa"
+msgid "Syntax"
+msgstr "Caasima"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3157876\n"
-"28\n"
+"04060106.xhp\n"
+"par_id3150882\n"
+"103\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_DROP\">Opens a submenu for selecting the drag mode. You decide which action is performed when dragging and dropping an object from the Navigator into a document. Depending on the mode you select, the icon indicates whether a hyperlink, link or a copy is created.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_DROP\">Cita baafataa haalata harkisaa filachuuf gargaaru bana.Yeroo wanta naannessaa irraa galmeetti harkistuu fi keessu ta'ii kamtu akka raawwatame ni murteessita.Haalata ati filatte irratti hundaa'uun, sajoon geessituu,kornyoo yookiin garagalcha kamtu akka uumame agarsiisa.</ahelp>"
+msgid "ASINH(Number)"
+msgstr "ASINH(Lakkoofsa)"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3149947\n"
+"04060106.xhp\n"
+"par_id3147621\n"
+"104\n"
"help.text"
-msgid "<image id=\"img_id3159119\" src=\"cmd/sc_chainframes.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159119\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159119\" src=\"cmd/sc_chainframes.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159119\">Sajoo</alt></image>"
+msgid "This function returns the inverse hyperbolic sine of <emph>Number</emph>, that is the number whose hyperbolic sine is Number."
+msgstr "Faankishiniin kun garagaltoo sine haayperpoolikii <emph>Lakkoofsaa</emph>,lakkoofsa sine haayperpoolikii isaa lakkoofsa deebisa."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3150656\n"
-"27\n"
+"04060106.xhp\n"
+"hd_id3153212\n"
+"105\n"
"help.text"
-msgid "Drag Mode"
-msgstr "Haalata Harkiisaa"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3149009\n"
-"29\n"
+"04060106.xhp\n"
+"par_id3156120\n"
+"106\n"
"help.text"
-msgid "Insert as Hyperlink"
-msgstr "Akka Geessituu Barbaachisaatti Saagaa"
+msgid "<item type=\"input\">=ASINH(-90)</item> returns approximately -5.1929877."
+msgstr "<item type=\"input\">=ASINH(-90)</item> tilmaamaan -5.1929877 deebisa."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3146938\n"
-"30\n"
+"04060106.xhp\n"
+"par_id4808496\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_DROPMODE_URL\">Inserts a hyperlink when you drag-and-drop an object from the Navigator into a document.</ahelp> You can later click the created hyperlink to set the cursor and the view to the respective object."
-msgstr "<ahelp hid=\"HID_SC_DROPMODE_URL\">Yeroo wanta naannessaa irraa gara galmeetti harkistuufi keessu geessituu barbaachisaa saaga.</ahelp> You can later click the created hyperlink to set the cursor and the view to the respective object."
+msgid "<item type=\"input\">=ASINH(SINH(4))</item> returns 4."
+msgstr "<item type=\"input\">=ASINH(SINH(4))</item> 4 deebisa."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3880733\n"
+"04060106.xhp\n"
+"bm_id3155996\n"
"help.text"
-msgid "If you insert a hyperlink that links to an open document, you need to save the document before you can use the hyperlink."
-msgstr "Yoo geessituu barbaachisaa galmee banaatti qabsiisu saagde, geessituu barbaachisaa fayyadamuu keetiin dura galmicha olkaa'uutu sirraa eegama."
+msgid "<bookmark_value>ATAN function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii ATAN</bookmark_value>"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3154682\n"
-"31\n"
+"04060106.xhp\n"
+"hd_id3155996\n"
+"110\n"
"help.text"
-msgid "Insert as Link"
-msgstr "Akka Geessituutti Saagaa"
+msgid "ATAN"
+msgstr "ATAN"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3150746\n"
-"32\n"
+"04060106.xhp\n"
+"par_id3149985\n"
+"111\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_DROPMODE_LINK\">Creates a link when you drag-and-drop an object from the Navigator into a document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_DROPMODE_LINK\">Yeroo wanta naannessaa irraa gara galmeetti harkistuufi keessu quunnamtii uuma.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ARCTAN\">Returns the inverse trigonometric tangent of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCTAN\">Garagaltoo tangentii tiriignoomeetirii lakkoofsaa deebisa.</ahelp>"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3145824\n"
-"33\n"
+"04060106.xhp\n"
+"hd_id3151294\n"
+"112\n"
"help.text"
-msgid "Insert as Copy"
-msgstr "Akka Garagalchaatti Saagaa"
+msgid "Syntax"
+msgstr "Caasima"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3147471\n"
-"34\n"
+"04060106.xhp\n"
+"par_id3150261\n"
+"113\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_DROPMODE_COPY\">Generates a copy when you drag-and-drop an object from the Navigator into a document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_DROPMODE_COPY\">Yeroo wanta naannessaa irraa gara galmeetti harkistuufi keessu garagalcha maddisiisa.</ahelp>"
+msgid "ATAN(Number)"
+msgstr "ATAN(Lakkoofsa)"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3147423\n"
-"38\n"
+"04060106.xhp\n"
+"par_id3147267\n"
+"114\n"
"help.text"
-msgid "Objects"
-msgstr "Wantoota"
+msgid "This function returns the inverse trigonometric tangent of <emph>Number</emph>, that is the angle (in radians) whose tangent is Number. The angle returned is between -PI/2 and PI/2."
+msgstr "Faankishiniin kun garagaltoo tangentii tiriignoomeetirii <emph>Lakkoofsaa</emph>,tangentii kofti isaa lakkoofsaan ta'e deebisa.Kofti deebiu -PI/2 fi +PI/2 gidduu jira."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3150700\n"
-"39\n"
+"04060106.xhp\n"
+"par_id6293527\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_ENTRIES\">Displays all objects in your document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_ENTRIES\">Wantoota galmee ke keessa jiran hunda mul'isa.</ahelp>"
+msgid "To return the angle in degrees, use the DEGREES function."
+msgstr "Kofa deegridhaan deebisuuf,faankishinii DEGREE fayyadamaa."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3150860\n"
-"35\n"
+"04060106.xhp\n"
+"hd_id3154054\n"
+"115\n"
"help.text"
-msgid "Documents"
-msgstr "Galmeewwan"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3153929\n"
-"36\n"
+"04060106.xhp\n"
+"par_id3143229\n"
+"116\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_DOC\">Displays the names of all open documents.</ahelp> To switch to another open document in the Navigator, click the document name. The status (active, inactive) of the document is shown in brackets after the name. You can switch the active document in the <emph>Window</emph> menu."
-msgstr "<ahelp hid=\"HID_SC_NAVIPI_DOC\">Maqaa galmeewwan banaa ta'anii hunda mul'isa.</ahelp> Galmee gara biraa Naannessaa keessa jirutti jijjiiruuf maqaa galmee cuqaasi. Haalojiin galmichaa(si'aayaa,hadoodaa) maqichaa booda agarsiifama.Galmee si'aayaa baafata foddaa keessa jiru jijjiiruu ni dandeessa.Baafata <emph>Foddaa</emph>."
+msgid "<item type=\"input\">=ATAN(1)</item> returns 0.785398163397448 (PI/4 radians)."
+msgstr "<item type=\"input\">=ATAN(1)</item> 0.785398163397448 (PI/4 raadiyaanii)deebisa."
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id8746299\n"
"help.text"
-msgid "Function List"
-msgstr "Tarree Fankishinii"
+msgid "<item type=\"input\">=DEGREES(ATAN(1))</item> returns 45. The tangent of 45 degrees is 1."
+msgstr "<item type=\"input\">=DEGREES(ATAN(1))</item> 45 deebisa.Tangentiin deegrii 45 1 ta'a."
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"bm_id3154126\n"
+"04060106.xhp\n"
+"bm_id3153983\n"
"help.text"
-msgid "<bookmark_value>formula list window</bookmark_value><bookmark_value>function list window</bookmark_value><bookmark_value>inserting functions; function list window</bookmark_value>"
-msgstr "<bookmark_value>foddaa tarree foormulaa</bookmark_value><bookmark_value>foddaa tarree fankishinii</bookmark_value><bookmark_value>fankishiiniwwan saaguun; foddaa tarree fankishinii</bookmark_value>"
+msgid "<bookmark_value>ATAN2 function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii ATAN2</bookmark_value>"
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"hd_id3154126\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3153983\n"
+"120\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04080000.xhp\" name=\"Function List\">Function List</link>"
-msgstr "<link href=\"text/scalc/01/04080000.xhp\" name=\"Function List\">Tarree Fankishinii</link>"
+msgid "ATAN2"
+msgstr "ATAN2"
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"par_id3151118\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3154297\n"
+"121\n"
"help.text"
-msgid "<variable id=\"funktionslistetext\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">This command opens the <emph>Function List</emph> window, which displays all functions that can be inserted into your document.</ahelp></variable> The <emph>Function List</emph> window is similar to the <emph>Functions</emph> tab page of the <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Function Wizard</link>. The functions are inserted with placeholders to be replaced with your own values."
-msgstr "<variable id=\"funktionslistetext\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">Ajajni kun foddaa<emph>Tarree Fankishinii</emph>fankishinoota galmee keetti saagaman huunda kan ifteessu dha.</ahelp></variable> Fodddaan <emph>Tarree Fankishinii</emph> caancaala fuulaa<emph>Fankishinii</emph> kan<link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Masakaa Function</link> waliin wal fakkaata.fankishinootni iddooqotan sagaamuun gatii keetii bakka bu'u."
+msgid "<ahelp hid=\"HID_FUNC_ARCTAN2\">Returns the inverse trigonometric tangent of the specified x and y coordinates.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCTAN2\">Garagaltoo tangentii tiriignoomeetirii koordineetii x fi y adda ba'ee deebisa.</ahelp>"
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"par_id3152576\n"
-"3\n"
+"04060106.xhp\n"
+"hd_id3149758\n"
+"122\n"
"help.text"
-msgid "The <emph>Function List</emph> window is a resizable <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>. Use it to quickly enter functions in the spreadsheet. By double-clicking an entry in the functions list, the respective function is directly inserted with all parameters."
-msgstr "Foddaan <emph>Tarree Fankishinii</emph> hangii <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">foddaa galma'ee</link> jijjiramu danda'uu.Hatataman fankishinoota wardiiwwanitti galchuuf fayyadami.Galinsa tarree fankishinii keessa lamcuuqaasuun,fankishinii kana kallattiin jijjiramoota isaa huunda waliin sagama."
+msgid "Syntax"
+msgstr "Caasima"
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"hd_id3145799\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3156013\n"
+"123\n"
"help.text"
-msgid "Category List"
-msgstr "Tarree Akaakuu"
+msgid "ATAN2(NumberX; NumberY)"
+msgstr "ATAN2(LakkoofsaX; LakkoofsaY)"
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"hd_id3153160\n"
-"5\n"
+"04060106.xhp\n"
+"par_id3151168\n"
+"124\n"
"help.text"
-msgid "Function List"
-msgstr "Tarree Fankishinii"
+msgid "<emph>NumberX</emph> is the value of the x coordinate."
+msgstr "<emph>LakkoofsiX</emph> gatii koordineetii x ti."
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"par_id3149412\n"
-"6\n"
+"04060106.xhp\n"
+"par_id3152798\n"
+"125\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:FID_FUNCTION_BOX:LB_FUNC\">Displays the available functions.</ahelp> When you select a function, the area below the list box displays a short description. To insert the selected function double-click it or click the <emph>Insert Function into calculation sheet</emph> icon."
-msgstr "<ahelp hid=\"SC:LISTBOX:FID_FUNCTION_BOX:LB_FUNC\">Fankishinoota jiran agarsiisa.</ahelp> Yommuu fankishinii filattuu,nannoo sanduuqa tarree gaditti ergaa gabaabaa agarsiisa.fankishinii filamee saguuf,fankishinicha lamcuqaasii ykn saajoo <emph>wardii shallaggaatti fankishinii saagii</emph> cuqaasi."
+msgid "<emph>NumberY</emph> is the value of the y coordinate."
+msgstr "<emph>LakkoofsaY</emph> gatii coordineetii y ta'a."
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"hd_id3146971\n"
-"7\n"
+"04060106.xhp\n"
+"par_id5036164\n"
"help.text"
-msgid "Insert Function into calculation sheet"
-msgstr "Wardii shallaggaatti Fankishinii saagi"
+msgid "ATAN2 returns the inverse trigonometric tangent, that is, the angle (in radians) between the x-axis and a line from point NumberX, NumberY to the origin. The angle returned is between -PI and PI."
+msgstr "ATAN2 garagaltoo tangentii tiriignoomeetirii,kunis,kofa(raadiyaaniidhaan) x-axisii fi sarara xuqaa LakkoofsaX ,gara LakkoofsaY ti deebisa.Kofti deebi'u -PI fi PI gidduu ta'a."
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"par_id3150043\n"
+"04060106.xhp\n"
+"par_id3001800\n"
"help.text"
-msgid "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Saajoo</alt></image>"
+msgid "To return the angle in degrees, use the DEGREES function."
+msgstr "Kofa deegridhaan deebisuuf,faankishinii DEGREE fayyadamaa."
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"par_id3147345\n"
-"8\n"
+"04060106.xhp\n"
+"hd_id3145663\n"
+"126\n"
"help.text"
-msgid "<ahelp hid=\"SC:IMAGEBUTTON:FID_FUNCTION_BOX:IMB_INSERT\">Inserts the selected function into the document.</ahelp>"
-msgstr "<ahelp hid=\"SC:IMAGEBUTTON:FID_FUNCTION_BOX:IMB_INSERT\">Fankishinii filamee gara galmeetti saagi.</ahelp>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3154692\n"
+"127\n"
"help.text"
-msgid "Consolidate"
-msgstr "Gamteessi"
+msgid "<item type=\"input\">=ATAN2(20;20)</item> returns 0.785398163397448 (PI/4 radians)."
+msgstr "<item type=\"input\">=ATAN2(20;20)</item> 0.785398163397448 (PI/4 raadiyaanii)deebisa."
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"hd_id3148946\n"
-"1\n"
+"04060106.xhp\n"
+"par_id1477095\n"
"help.text"
-msgid "Consolidate"
-msgstr "Gamteessi"
+msgid "<item type=\"input\">=DEGREES(ATAN2(12.3;12.3))</item> returns 45. The tangent of 45 degrees is 1."
+msgstr "<item type=\"input\">=DEGREES(ATAN2(12.3;12.3))</item> 45 deebisa.Tangentiin diigrii 45 1 ta'a."
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"par_id3148798\n"
-"2\n"
+"04060106.xhp\n"
+"bm_id3155398\n"
"help.text"
-msgid "<variable id=\"konsolidieren\"><ahelp hid=\".uno:DataConsolidate\">Combines data from one or more independent cell ranges and calculates a new range using the function that you specify.</ahelp></variable>"
-msgstr "<variable id=\"konsolidieren\"><ahelp hid=\".uno:DataConsolidate\">Deetaa hangiiwwan man'ee qofagaloo tokko ykn tokkoo oli makuun, fankishinii ifteessitetti fayyadamuun hammangaa haaraa shallaga.</ahelp></variable>"
+msgid "<bookmark_value>ATANH function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii ATANH</bookmark_value>"
-#: 12070000.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"hd_id3150010\n"
-"8\n"
+"04060106.xhp\n"
+"hd_id3155398\n"
+"130\n"
"help.text"
-msgid "Function"
-msgstr "#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nDalagawwan\\n#-#-#-#-# database.po (PACKAGE VERSION) #-#-#-#-#\\nDalaga\\n#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\nFaankishinii\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nDalaga\\n#-#-#-#-# guide.po (PACKAGE VERSION) #-#-#-#-#\\nFankishinii"
+msgid "ATANH"
+msgstr "ATANH"
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"par_id3149377\n"
-"9\n"
+"04060106.xhp\n"
+"par_id3148829\n"
+"131\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONSOLIDATE:LB_FUNC\">Select the function that you want to use to consolidate the data.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONSOLIDATE:LB_FUNC\">fankishinii deetaa gamteessuu barbaaddee fili.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ARTANHYP\">Returns the inverse hyperbolic tangent of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARTANHYP\">Garagaltoo tangentii tiriignoomeetirii lakkoofsaa deebisa.</ahelp>"
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"hd_id3147127\n"
-"10\n"
+"04060106.xhp\n"
+"hd_id3146997\n"
+"132\n"
"help.text"
-msgid "Consolidation ranges"
-msgstr "Hammanga gamtoominaa"
+msgid "Syntax"
+msgstr "Caasima"
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"par_id3151075\n"
-"11\n"
+"04060106.xhp\n"
+"par_id3149912\n"
+"133\n"
"help.text"
-msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_CONSOLIDATE:LB_CONSAREAS\">Displays the cell ranges that you want to consolidate.</ahelp>"
-msgstr "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_CONSOLIDATE:LB_CONSAREAS\">Hangii man'ee gamteessuu barbaaddee agarsiisa.</ahelp>"
+msgid "ATANH(Number)"
+msgstr "ATANH(Lakkoofsa)"
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"hd_id3147397\n"
-"12\n"
+"04060106.xhp\n"
+"par_id3150521\n"
+"134\n"
"help.text"
-msgid "Source data range"
-msgstr "Hammanga deetaa maddaa"
+msgid "This function returns the inverse hyperbolic tangent of <emph>Number</emph>, that is the number whose hyperbolic tangent is Number."
+msgstr "Faankishiniin kun garagaltoo tangentii tiriignoomeetirii <emph>Lakkoofsaa</emph>,kana jechuun lakkoofsa tangentiin haayperpoolikiin isaanii lakkoofsa ta'e deebisa jechuudha."
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"par_id3153836\n"
-"13\n"
+"04060106.xhp\n"
+"par_id9357280\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DATA_AREA\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DATA_AREA\">Hammanga man'ee kan hammangawwan man'ee sanduuqa <emph>Hammanga gamtaa'inaa</emph> keessatti tarreeffan wajjin gamteessuu barbaaddee ifteessa.Hammanga man'ee wardii kessaa fili,sana booda<emph>ida'i</emph> cuqaasi.Akkasumas maqaa man'ee durmurtawaa tarree <emph>Hammanga deetaa maddaa</emph> irraa filuu dandeessa.</ahelp>"
+msgid "Number must obey the condition -1 < number < 1."
+msgstr "Lakkoofsi haala -1 < lakkoofsa < 1 kana dirqama fudhachuu qaba."
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"hd_id3155768\n"
-"15\n"
+"04060106.xhp\n"
+"hd_id3148450\n"
+"135\n"
"help.text"
-msgid "Copy results to"
-msgstr "Bu'aawwan garagalchi gara"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"par_id3147341\n"
-"16\n"
+"04060106.xhp\n"
+"par_id3145419\n"
+"136\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DEST_AREA\">Displays the first cell in the range where the consolidation results will be displayed.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DEST_AREA\">Man'ee duraa iddoo bu'aawwan gamtaa'inaa itti agrsiifaman agarsiisa.</ahelp>"
+msgid "<item type=\"input\">=ATANH(0)</item> returns 0."
+msgstr "<item type=\"input\">=ATANH(0)</item> 0 deebisa."
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"hd_id3147345\n"
-"17\n"
+"04060106.xhp\n"
+"bm_id3153062\n"
"help.text"
-msgid "Add"
-msgstr "Ida'i"
+msgid "<bookmark_value>COS function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii COS </bookmark_value>"
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"par_id3155335\n"
-"18\n"
+"04060106.xhp\n"
+"hd_id3153062\n"
+"149\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_CONSOLIDATE:BTN_ADD\">Adds the cell range specified in the <emph>Source data range</emph> box to the <emph>Consolidation ranges </emph>box.</ahelp>"
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_CONSOLIDATE:BTN_ADD\">Hammanga man'ee sanduuqa <emph>Hammanga deetaa maddaa</emph> fi sanduuqa <emph>hammngawwan gamtaa'inaa</emph>keessatti ifteessaman walitti ida'a.</ahelp>"
+msgid "COS"
+msgstr "COS"
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"hd_id3148630\n"
-"19\n"
+"04060106.xhp\n"
+"par_id3148803\n"
+"150\n"
"help.text"
-msgid "More >>"
-msgstr "Dabala>>"
+msgid "<ahelp hid=\"HID_FUNC_COS\">Returns the cosine of the given angle (in radians).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_COS\">Cosine kofa kennamee deebisa.</ahelp>"
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"par_id3159239\n"
-"20\n"
+"04060106.xhp\n"
+"hd_id3150779\n"
+"151\n"
"help.text"
-msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_CONSOLIDATE:BTN_MORE\">Shows additional <link href=\"text/scalc/01/12070100.xhp\" name=\"options\">options</link>.</ahelp>"
-msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_CONSOLIDATE:BTN_MORE\">Dirqalaalee dabalataa <link href=\"text/scalc/01/12070100.xhp\" name=\"options\">agarsiisa</link>.</ahelp>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 06070000.xhp
+#: 04060106.xhp
msgctxt ""
-"06070000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3154213\n"
+"152\n"
"help.text"
-msgid "AutoCalculate"
-msgstr "OfiinHerreegaa"
+msgid "COS(Number)"
+msgstr "COS(Lakkoofsa)"
-#: 06070000.xhp
+#: 04060106.xhp
msgctxt ""
-"06070000.xhp\n"
-"bm_id3145673\n"
+"04060106.xhp\n"
+"par_id3154285\n"
+"153\n"
"help.text"
-msgid "<bookmark_value>calculating; auto calculating sheets</bookmark_value><bookmark_value>recalculating;auto calculating sheets</bookmark_value><bookmark_value>AutoCalculate function in sheets</bookmark_value><bookmark_value>correcting sheets automatically</bookmark_value><bookmark_value>formulas;AutoCalculate function</bookmark_value><bookmark_value>cell contents;AutoCalculate function</bookmark_value>"
-msgstr "<bookmark_value>herreguun; barrulee ofiinherreegaa</bookmark_value><bookmark_value>lamherregun;barruulee ofiinherreegaa</bookmark_value><bookmark_value>Barruu keessatti faankishinii ofiinherreegaa</bookmark_value><bookmark_value>barruulee ofumaan sirreessa</bookmark_value><bookmark_value>Formulaawwan; faankishinii ofiinherreegaa</bookmark_value><bookmark_value>qabeentoota man'ee;Faankishiinii ofiinherreegaa</bookmark_value>"
+msgid "Returns the (trigonometric) cosine of <emph>Number</emph>, the angle in radians."
+msgstr "Cosine tiriignoomeetirii<emph>lakkoofsaa</emph>,kofa raadiyaanidhaan deebisa."
-#: 06070000.xhp
+#: 04060106.xhp
msgctxt ""
-"06070000.xhp\n"
-"hd_id3145673\n"
-"1\n"
+"04060106.xhp\n"
+"par_id831019\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06070000.xhp\" name=\"AutoCalculate\">AutoCalculate</link>"
-msgstr "<link href=\"text/scalc/01/06070000.xhp\" name=\"AutoCalculate\">Ofiinherreegaa </link>"
+msgid "To return the cosine of an angle in degrees, use the RADIANS function."
+msgstr "Cosine kofaa diigriidhaan deebisuuf,faankishinii RADIAN fayyadamaa."
-#: 06070000.xhp
+#: 04060106.xhp
msgctxt ""
-"06070000.xhp\n"
-"par_id3148798\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3153579\n"
+"154\n"
"help.text"
-msgid "<ahelp hid=\".uno:AutomaticCalculation\">Automatically recalculates all formulas in the document.</ahelp>"
-msgstr "<ahelp hid=\".uno:AutomaticCalculation\">Formulaawwan hundaa kan galmee keessaa ofuumaan lamherreega.</ahelp>"
+msgid "Examples"
+msgstr "Fakkeenyawwan"
-#: 06070000.xhp
+#: 04060106.xhp
msgctxt ""
-"06070000.xhp\n"
-"par_id3145173\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3147240\n"
+"155\n"
"help.text"
-msgid "All cells are recalculated after a sheet cell has been modified. Any charts in the sheet will also be refreshed."
-msgstr "Erga man'ee barruu jijjiramee man'eewwan hundi lamherregama.Taattowwan kamiyyuu kan barruu keessaa jiru ni haroomfama."
+msgid "<item type=\"input\">=COS(PI()/2)</item> returns 0, the cosine of PI/2 radians."
+msgstr "<item type=\"input\">=COS(PI()/2)</item> 0 deebisa,cosine PI/2 raadiyaanidhaani."
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3147516\n"
+"156\n"
"help.text"
-msgid "NETWORKDAYS"
-msgstr "NETWORKDAYS"
+msgid "<item type=\"input\">=COS(RADIANS(60))</item> returns 0.5, the cosine of 60 degrees."
+msgstr "<item type=\"input\">=COS(RADIANS(60))</item> cosine diigrii 60,0.5 deebisa."
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"bm_id3151254\n"
+"04060106.xhp\n"
+"bm_id3154277\n"
"help.text"
-msgid "<bookmark_value>NETWORKDAYS function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii NETWORKDAYS</bookmark_value>"
+msgid "<bookmark_value>COSH function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii COSH </bookmark_value>"
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"hd_id3151254\n"
-"240\n"
+"04060106.xhp\n"
+"hd_id3154277\n"
+"159\n"
"help.text"
-msgid "<variable id=\"networkdays\"><link href=\"text/scalc/01/func_networkdays.xhp\">NETWORKDAYS</link></variable>"
-msgstr "<variable id=\"networkdays\"><link href=\"text/scalc/01/func_networkdays.xhp\">NETWORKDAYS</link></variable>"
+msgid "COSH"
+msgstr "COSH"
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3153788\n"
-"241\n"
+"04060106.xhp\n"
+"par_id3146946\n"
+"160\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_NETWORKDAYS\">Returns the number of workdays between a <emph>start date and an end date</emph>. Holidays can be deducted.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_NETWORKDAYS\">Baay'ina guyyoota hoji <emph>aduu jalqabaa fi aduu xumuraa</emph>gidduu jiran kenna.Guyyotni ayyanaa ni tilmaamamu.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_COSHYP\">Returns the hyperbolic cosine of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_COSHYP\">Cosine haayiperpoolikii lakkoofsaa deebisa.</ahelp>"
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"hd_id3148677\n"
-"242\n"
+"04060106.xhp\n"
+"hd_id3149792\n"
+"161\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: func_networkdays.xhp
-msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3145775\n"
-"243\n"
-"help.text"
-msgid "NETWORKDAYS(StartDate; EndDate; Holidays)"
-msgstr "NETWORKDAYS(AduuJalqabaa; AduuXumuraa; GuyyootaAyyaanaa)"
-
-#: func_networkdays.xhp
-msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3153885\n"
-"244\n"
-"help.text"
-msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation."
-msgstr "<emph>Aduu Jalqaba</emph> guyyaa isa shallagin irraa hojjeetamu dha.Guyyyaan calqaba kunis yoo guyyaa hojii ta'e guyyaan kun shallaggii keessatti hammatama."
-
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3151110\n"
-"245\n"
+"04060106.xhp\n"
+"par_id3166440\n"
+"162\n"
"help.text"
-msgid "<emph>EndDate</emph> is the date up until when the calculation is carried out. If the end date is a workday, the day is included in the calculation."
-msgstr "<emph>AduuXumuraa</emph>n aduu hamma shallaggin irraa hojjeetamutti jiruu dha.Aduun xumuraa yoo guyyaa hojii ta'e, guyyaan kun shallaggii keessatti hammatama."
+msgid "COSH(Number)"
+msgstr "COSH(Lakkoofsa)"
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3154115\n"
-"246\n"
+"04060106.xhp\n"
+"par_id3150710\n"
+"163\n"
"help.text"
-msgid "<emph>Holidays</emph> is an optional list of holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
-msgstr "<emph>GuyyootaAyyaanaa</emph> tarree dirqaala guyyaa ayyaanootati. Kunis guyyaa hojiin alaati.Bakka guyyaan ayyaanoota tokko tokkon eeramanitti,hangii man'ee galchi."
+msgid "Returns the hyperbolic cosine of <emph>Number</emph>."
+msgstr "Cosine haayperpoolikii <emph>lakkoofsaa</emph>deebisa."
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"hd_id3146902\n"
-"247\n"
+"04060106.xhp\n"
+"hd_id3153234\n"
+"164\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: func_networkdays.xhp
-msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3154661\n"
-"248\n"
-"help.text"
-msgid "How many workdays fall between 2001-12-15 and 2002-01-15? The start date is located in C3 and the end date in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
-msgstr "Guyyyaawwan hojii 2001-12-15 fi 2002-01-15 gidduutti argaman meeqa? guyyaan jalqaba C3 keessatti argama, guyyaan xumuraa D3 keessatti argama.Man'eewwaan F3 hanga J3 keessaa immo ayyaanoota qillee fi waggaa haaraa itti anuun dhufaan of keessaatti qabata:\"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
-
-#: func_networkdays.xhp
-msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3147328\n"
-"249\n"
-"help.text"
-msgid "=NETWORKDAYS(C3;D3;F3:J3) returns 17 workdays."
-msgstr "=NETWORKDAYS(C3;D3;F3:J3) guyyaawwan hojii 17 kenna."
-
-#: 05030400.xhp
-msgctxt ""
-"05030400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Show"
-msgstr "Mul'isi"
-
-#: 05030400.xhp
+#: 04060106.xhp
msgctxt ""
-"05030400.xhp\n"
-"bm_id3147264\n"
+"04060106.xhp\n"
+"par_id3154099\n"
+"165\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; showing columns</bookmark_value><bookmark_value>showing; columns</bookmark_value><bookmark_value>showing; rows</bookmark_value>"
-msgstr "<bookmark_value>wardiiwwan;tarjaawwan mul'isuu</bookmark_value><bookmark_value>mul'isuu; tarjaawwan</bookmark_value><bookmark_value>mul'isuu; tarreewwan</bookmark_value>"
+msgid "<item type=\"input\">=COSH(0)</item> returns 1, the hyperbolic cosine of 0."
+msgstr "<item type=\"input\">=COSH(0)</item> haayiperpoolikii zero 1 deebisa."
-#: 05030400.xhp
+#: 04060106.xhp
msgctxt ""
-"05030400.xhp\n"
-"hd_id3147264\n"
-"1\n"
+"04060106.xhp\n"
+"bm_id3152888\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05030400.xhp\" name=\"Show\">Show</link>"
-msgstr "<link href=\"text/scalc/01/05030400.xhp\" name=\"Show\">mul'isa</link>"
+msgid "<bookmark_value>COT function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii COT</bookmark_value>"
-#: 05030400.xhp
+#: 04060106.xhp
msgctxt ""
-"05030400.xhp\n"
-"par_id3150447\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3152888\n"
+"169\n"
"help.text"
-msgid "<ahelp hid=\".uno:ShowColumn\">Choose this command to show previously hidden rows or columns.</ahelp>"
-msgstr "<ahelp hid=\".uno:ShowColumn\">Tarreewwan ykn tarjaawwan duraan dhokatan mul'isuuf ajaja fili .</ahelp>"
+msgid "COT"
+msgstr "COT"
-#: 05030400.xhp
+#: 04060106.xhp
msgctxt ""
-"05030400.xhp\n"
-"par_id3155131\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3153679\n"
+"170\n"
"help.text"
-msgid "To show a column or row, select the range of rows or columns containing the hidden elements, then choose <emph>Format - Row - Show</emph> or <emph>Format - Column - Show</emph>."
-msgstr "tarja ykn tarree mul'isuuf, hangii tarreewwan ykn tarjaawwan miseensota dhokata qabatanii fili, itti aansuun <emph>Dhangii - Tarree - Mul'isi</emph> ykn <emph>Dhangii - tarjaa - mul'isa</emph>."
+msgid "<ahelp hid=\"HID_FUNC_COT\">Returns the cotangent of the given angle (in radians).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_COT\">Kotaanjantii kofa(raadiyaanidhaan) kennamee deebisa.</ahelp>"
-#: 05030400.xhp
+#: 04060106.xhp
msgctxt ""
-"05030400.xhp\n"
-"par_id3145748\n"
-"4\n"
+"04060106.xhp\n"
+"hd_id3152943\n"
+"171\n"
"help.text"
-msgid "To show all hidden cells, first click in the field in the upper left corner. This selects all cells of the table."
-msgstr "Man'eewwan dhokataa hunda mul'isuf, jalqaba gubbaa bitaa golee cuqaasi. kuni man'eewwan gabatee hundaa fila."
+msgid "Syntax"
+msgstr "Caasima"
-#: 06030100.xhp
+#: 04060106.xhp
msgctxt ""
-"06030100.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3154856\n"
+"172\n"
"help.text"
-msgid "Trace Precedents"
-msgstr "Dursitoota Sakatta'i"
+msgid "COT(Number)"
+msgstr "COT(Lakkoofsa)"
-#: 06030100.xhp
+#: 04060106.xhp
msgctxt ""
-"06030100.xhp\n"
-"bm_id3155628\n"
+"04060106.xhp\n"
+"par_id3149969\n"
+"173\n"
"help.text"
-msgid "<bookmark_value>cells; tracing precedents</bookmark_value><bookmark_value>formula cells;tracing precedents</bookmark_value>"
-msgstr "<bookmark_value>man'eewwan; dursitoota sakkatuu</bookmark_value><bookmark_value>man'eewwan foormulaa;dursitoota hordoofsisu</bookmark_value>"
+msgid "Returns the (trigonometric) cotangent of <emph>Number</emph>, the angle in radians."
+msgstr "Kotaanjantii <emph>Lakkoofsaa</emph>, kofa raadiyaanidhaan deebisa."
-#: 06030100.xhp
+#: 04060106.xhp
msgctxt ""
-"06030100.xhp\n"
-"hd_id3155628\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3444624\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedents\">Trace Precedents</link>"
-msgstr "<link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedents\">dursitoota sakata'ii</link>"
+msgid "To return the cotangent of an angle in degrees, use the RADIANS function."
+msgstr "Kootaanjantii kofaa diigriidhaan deebisuuf,faankishinii RADIAN fayyadamaa."
-#: 06030100.xhp
+#: 04060106.xhp
msgctxt ""
-"06030100.xhp\n"
-"par_id3153542\n"
-"2\n"
+"04060106.xhp\n"
+"par_id6814477\n"
"help.text"
-msgid "<ahelp hid=\".uno:ShowPrecedents\">This function shows the relationship between the current cell containing a formula and the cells used in the formula.</ahelp>"
-msgstr "<ahelp hid=\".uno:ShowPrecedents\">Fankishiniin kun hariiroo man'ee ammaa foormulaa qabatee fi man'eewwan foormulaa keessaatti fayyadaman agarsiisa.</ahelp>"
+msgid "The cotangent of an angle is equivalent to 1 divided by the tangent of that angle."
+msgstr "Kootaanjantiin kofaa 1 kan taanjantiidhaan hirameen walqixa."
-#: 06030100.xhp
+#: 04060106.xhp
msgctxt ""
-"06030100.xhp\n"
-"par_id3147265\n"
-"4\n"
+"04060106.xhp\n"
+"hd_id3149800\n"
+"174\n"
"help.text"
-msgid "Traces are displayed in the sheet with marking arrows. At the same time, the range of all the cells contained in the formula of the current cell is highlighted with a blue frame."
-msgstr "Hordoffiin wardii keessaatti xiyyaalee mallatteesuu waliin mul'ata. Yerooma wal fakkattuuti, hangiin man'eewwanii kan foormulaa man'ee ammaa keessaatti qabatame godayyaa cuquleen shoolama."
+msgid "Examples:"
+msgstr "Fakkeenya"
-#: 06030100.xhp
+#: 04060106.xhp
msgctxt ""
-"06030100.xhp\n"
-"par_id3154321\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3148616\n"
+"175\n"
"help.text"
-msgid "This function is based on a principle of layers. For example, if the precedent cell to a formula is already indicated with a tracer arrow, when you repeat this command, the tracer arrows are drawn to the precedent cells of this cell."
-msgstr "Fankishiniin kun kaayoo dilgatoota irrati hunda'a. Fakkeenyaaf, yoo dursaan man'ee foormulaa durumaan xiyyaa hordofiittin agarsiifamee, yemmuu ajajja kana irra deebitu, xiyyyaan hordoffii dursittoota man'ee man'ee kanaf ni kafama."
+msgid "<item type=\"input\">=COT(PI()/4)</item> returns 1, the cotangent of PI/4 radians."
+msgstr "<item type=\"input\">=COT(PI()/4)</item> kootaanjantii PI/4 raadiyaaniidhaaf,1 deebisa."
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3148986\n"
+"176\n"
"help.text"
-msgid "Define Names"
-msgstr "Maqoota Hiiki"
+msgid "<item type=\"input\">=COT(RADIANS(45))</item> returns 1, the cotangent of 45 degrees."
+msgstr "<item type=\"input\">=COT(RADIANS(45))</item> kootaanjantii diigrii 45,1 deebisa."
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3156330\n"
-"1\n"
+"04060106.xhp\n"
+"bm_id3154337\n"
"help.text"
-msgid "Define Names"
-msgstr "Maqoota Hiiki"
+msgid "<bookmark_value>COTH function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii COTH </bookmark_value>"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3154366\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3154337\n"
+"178\n"
"help.text"
-msgid "<variable id=\"namenfestlegentext\"><ahelp hid=\".uno:DefineName\">Opens a dialog where you can specify a name for a selected area.</ahelp></variable>"
-msgstr "<variable id=\"namenfestlegentext\"><ahelp hid=\".uno:DefineName\">Bakka filameef qaaqa itti maqaa ifteessituu bana.</ahelp></variable>"
+msgid "COTH"
+msgstr "COTH"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3154123\n"
-"31\n"
+"04060106.xhp\n"
+"par_id3149419\n"
+"179\n"
"help.text"
-msgid "Use the mouse to define ranges or type the reference into the <emph>Define Name </emph>dialog fields."
-msgstr "Hangiiwwaan ramaduuf hantuuta fayyadami ykn qaaqa dirreewwan <emph>Maqaa Hiiki </emph> wabii barreessi."
+msgid "<ahelp hid=\"HID_FUNC_COTHYP\">Returns the hyperbolic cotangent of a given number (angle).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_COTHYP\">Kootaanjantii haayperpoolikii lakkoofsa (kofaan)kennamee deebisa</ahelp>"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3155131\n"
-"30\n"
+"04060106.xhp\n"
+"hd_id3149242\n"
+"180\n"
"help.text"
-msgid "The <emph>Sheet Area</emph> box on the Formula bar contains a list of defined names for the ranges. Click a name from this box to highlight the corresponding reference on the spreadsheet. Names given formulas or parts of a formula are not listed here."
-msgstr "Sanduuqni <emph>Nannoo Wardii</emph> kan kabala formuulaa irraa hangiiwwan tarree maqaa hiikamee of keessatti qabata. wabii wardii irra jiru shooluuf sanduuqa kana keessa maqaa cuqaasi.Formuulaa kenname ykn kutaawwan formuulaa asitti hin tarrefamne moggaasa."
+msgid "Syntax"
+msgstr "Caasima"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3151118\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3143280\n"
+"181\n"
"help.text"
-msgid "Name"
-msgstr "Maqaa"
+msgid "COTH(Number)"
+msgstr "COTH(Lakkoofsa)"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3163712\n"
-"29\n"
+"04060106.xhp\n"
+"par_id3154799\n"
+"182\n"
"help.text"
-msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_NAMES:ED_NAME\">Enter the name of the area for which you want to define a reference. All area names already defined in the spreadsheet are listed in the text field below.</ahelp> If you click a name on the list, the corresponding reference in the document will be shown with a blue frame. If multiple cell ranges belong to the same area name, they are displayed with different colored frames."
-msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_NAMES:ED_NAME\">Maqaa nannoo wabii hiikuu barbadduu galchi. Maqaawwan nannoo hundii dursun wardii keessatti hiikaman dirree barru gaditti tarreeffamu.</ahelp> Yoo maqaa tarree keessaa cuqaaste,wabiin galmee keessaa akka goodayya cuqukiisaatti mul'ifama.Yoo hangiiwwan man'ee baay'ee maqaa nannoo wal fakkaata qabaatan, goodayyaawwan halluu adda addaa qabaniin agarsiifama."
+msgid "Returns the hyperbolic cotangent of <emph>Number</emph>."
+msgstr "Kootaanjantii haayiperpoolikii <emph>Lakkoofsaa</emph> deebisa."
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3153728\n"
-"9\n"
+"04060106.xhp\n"
+"hd_id3155422\n"
+"183\n"
"help.text"
-msgid "Assigned to"
-msgstr "Itti ramadame"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3147435\n"
-"10\n"
+"04060106.xhp\n"
+"par_id3144754\n"
+"184\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_NAMES:ED_ASSIGN\">The reference of the selected area name is shown here as an absolute value.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_NAMES:ED_ASSIGN\">Wabiin nannoo maqaan filamee akka gat-sirriitti agarsiifama.</ahelp>"
+msgid "<item type=\"input\">=COTH(1)</item> returns the hyperbolic cotangent of 1, approximately 1.3130."
+msgstr "<item type=\"input\">=COTH(1)</item> Kootaanjanii haayiperpoolikii 1,tilmaamaan 1.3130 deebisa."
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3146986\n"
-"12\n"
+"04060106.xhp\n"
+"bm_id6110552\n"
"help.text"
-msgid "To insert a new area reference, place the cursor in this field and use your mouse to select the desired area in any sheet of your spreadsheet document."
-msgstr "Nannoo wabii haraa saaguuf,dirree kana keessaa qaree kaa'i fi wardii nannoo barbaadamee kamiyyu galmee wardii keessaa filachuuf hantuutaa kee fayyadami."
+msgid "<bookmark_value>CSC function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii ASC</bookmark_value>"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3154729\n"
-"13\n"
+"04060106.xhp\n"
+"hd_id9523234\n"
+"149\n"
"help.text"
-msgid "More"
-msgstr "Dabala"
+msgid "CSC"
+msgstr ""
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3149958\n"
-"14\n"
+"04060106.xhp\n"
+"par_id4896433\n"
+"150\n"
"help.text"
-msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_NAMES:BTN_MORE\">Allows you to specify the <emph>Area type </emph>(optional) for the reference.</ahelp>"
-msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_NAMES:BTN_MORE\">Wabiidhaaf <emph>Nannoo Akaakuu </emph>(filannoo) akka ifteessituu siif heeyyama.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_COSECANT\">Returns the cosecant of the given angle (in radians). The cosecant of an angle is equivalent to 1 divided by the sine of that angle</ahelp>"
+msgstr ""
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3147394\n"
-"15\n"
+"04060106.xhp\n"
+"hd_id3534032\n"
+"151\n"
"help.text"
-msgid "Area type"
-msgstr "Nannoo Akaakuu"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3155416\n"
-"16\n"
+"04060106.xhp\n"
+"par_id4571344\n"
+"152\n"
"help.text"
-msgid "Defines additional options related to the type of reference area."
-msgstr "Dirqalaalee dabalataa kan akaakuu nannoo wabii waliti hidhamu hiika."
+msgid "CSC(Number)"
+msgstr "COSH(Lakkoofsa)"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3150716\n"
-"17\n"
+"04060106.xhp\n"
+"par_id9859164\n"
+"153\n"
"help.text"
-msgid "Print range"
-msgstr "Hangii Maxxansaa"
+msgid "Returns the (trigonometric) cosecant of <emph>Number</emph>, the angle in radians."
+msgstr "Cosine tiriignoomeetirii<emph>lakkoofsaa</emph>,kofa raadiyaanidhaan deebisa."
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3150751\n"
-"18\n"
+"04060106.xhp\n"
+"par_id3428494\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_PRINTAREA\">Defines the area as a print range.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_PRINTAREA\">Nannoo akka hangii maxxansatti hiika.</ahelp>"
+msgid "To return the cosecant of an angle in degrees, use the RADIANS function."
+msgstr "Cosine kofaa diigriidhaan deebisuuf,faankishinii RADIAN fayyadamaa."
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3153764\n"
-"19\n"
+"04060106.xhp\n"
+"hd_id2577161\n"
+"154\n"
"help.text"
-msgid "Filter"
-msgstr "Gingilchaa"
+msgid "Examples"
+msgstr "Fakkeenyawwan"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3155766\n"
-"20\n"
+"04060106.xhp\n"
+"par_id3736803\n"
+"155\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_CRITERIA\">Defines the selected area to be used in an <link href=\"text/scalc/01/12040300.xhp\" name=\"advanced filter\">advanced filter</link>.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_CRITERIA\">Nannoo filamee <link href=\"text/scalc/01/12040300.xhp\" name=\"advanced filter\">gingilchaa ol'aana</link> keessatti akka fayyadamuuf hiika.</ahelp>"
+msgid "<item type=\"input\">=CSC(PI()/4)</item> returns approximately 1.4142135624, the inverse of the sine of PI/4 radians."
+msgstr ""
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3159267\n"
-"21\n"
+"04060106.xhp\n"
+"par_id6016818\n"
+"156\n"
"help.text"
-msgid "Repeat column"
-msgstr "Tarjaa deddeebi'aa"
+msgid "<item type=\"input\">=CSC(RADIANS(30))</item> returns 2, the cosecant of 30 degrees."
+msgstr "<item type=\"input\">=COS(RADIANS(60))</item> cosine diigrii 60,0.5 deebisa."
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3149565\n"
-"22\n"
+"04060106.xhp\n"
+"bm_id9288877\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_COLHEADER\">Defines the area as a repeating column.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_COLHEADER\">Nannoo akka tarjaa deddeebi'aatti hiika.</ahelp>"
+msgid "<bookmark_value>CSCH function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii ASC</bookmark_value>"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3153966\n"
-"23\n"
+"04060106.xhp\n"
+"hd_id4325650\n"
+"159\n"
"help.text"
-msgid "Repeat row"
-msgstr "Tarree deddeebi'aa"
+msgid "CSCH"
+msgstr ""
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3150300\n"
-"24\n"
+"04060106.xhp\n"
+"par_id579916\n"
+"160\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_ROWHEADER\">Defines the area as a repeating row.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_ROWHEADER\">Nannoo akka tarree deddeebi'aatti hiika.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_COSECANTHYP\">Returns the hyperbolic cosecant of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_COSHYP\">Cosine haayiperpoolikii lakkoofsaa deebisa.</ahelp>"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3155112\n"
-"27\n"
+"04060106.xhp\n"
+"hd_id5336768\n"
+"161\n"
"help.text"
-msgid "Add/Modify"
-msgstr "Ida'ii/Fooyyessi"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3159236\n"
-"28\n"
+"04060106.xhp\n"
+"par_id3108851\n"
+"162\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES:BTN_ADD\">Click the <emph>Add</emph> button to add the defined name to the list. Click the <emph>Modify</emph> button to enter another name for an already existing name selected from the list.</ahelp>"
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES:BTN_ADD\">Tarreetti maqaa hiikamee dabaluuf qabdoo <emph>Ida'ii</emph>cuqaasi.Maqaa duraa tarree keessaa filameef maqaa gara biraa galchuuf qabdoo<emph>Fooyyessi</emph> cuuqaasi.</ahelp>"
+msgid "CSCH(Number)"
+msgstr "COSH(Lakkoofsa)"
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id1394188\n"
+"163\n"
"help.text"
-msgid "DATEVALUE"
-msgstr "DATEVALUE"
+msgid "Returns the hyperbolic cosecant of <emph>Number</emph>."
+msgstr "Cosine haayperpoolikii <emph>lakkoofsaa</emph>deebisa."
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"bm_id3145621\n"
+"04060106.xhp\n"
+"hd_id6037477\n"
+"164\n"
"help.text"
-msgid "<bookmark_value>DATEVALUE function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii DATEVALUE</bookmark_value>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"hd_id3145621\n"
-"18\n"
+"04060106.xhp\n"
+"par_id5426085\n"
+"165\n"
"help.text"
-msgid "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp\">DATEVALUE</link></variable>"
-msgstr "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp\">DATEVALUE</link></variable>"
+msgid "<item type=\"input\">=CSCH(1)</item> returns approximately 0.8509181282, the hyperbolic cosecant of 1."
+msgstr ""
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"par_id3145087\n"
-"19\n"
+"04060106.xhp\n"
+"bm_id3145314\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DATWERT\">Returns the internal date number for text in quotes.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DATWERT\">Barruu waraabbii keessaaf lakkoofsa guyyaa keessa deebisi.</ahelp>"
+msgid "<bookmark_value>DEGREES function</bookmark_value><bookmark_value>converting;radians, into degrees</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii DEGREES </bookmark_value><bookmark_value>jijjiiruu;raadiyaanii,gara diigriitii</bookmark_value>"
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"par_id3149281\n"
-"20\n"
+"04060106.xhp\n"
+"hd_id3145314\n"
+"188\n"
"help.text"
-msgid "The internal date number is returned as a number. The number is determined by the date system that is used by $[officename] to calculate dates."
-msgstr "Lakkoofsi guyyaa keessaa akkaa lakkoofsatti deebi'a.Lakkoofsi kunis kan murteeffamu sirna aduu isaa $[officename] aduu shallaguuf ta'eeni."
+msgid "DEGREES"
+msgstr "DEGREES"
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"par_id0119200903491982\n"
+"04060106.xhp\n"
+"par_id3149939\n"
+"189\n"
"help.text"
-msgid "If the text string also includes a time value, DATEVALUE only returns the integer part of the conversion."
-msgstr "Yoo dirri barruu gatii sa'aatii of keessatti qabaate, GATIIBARAA hiraa intijarii qofa jijjiirraa keessaa deebisa."
+msgid "<ahelp hid=\"HID_FUNC_DEG\">Converts radians into degrees.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DEG\">Raadiyaanii gara diigriitti jijjiira.</ahelp>"
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"hd_id3156294\n"
-"21\n"
+"04060106.xhp\n"
+"hd_id3150623\n"
+"190\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"par_id3149268\n"
-"22\n"
+"04060106.xhp\n"
+"par_id3145600\n"
+"191\n"
"help.text"
-msgid "DATEVALUE(\"Text\")"
-msgstr "DATEVALUE(\"Barruu\")"
+msgid "DEGREES(Number)"
+msgstr "DEGREES(Lakkoofsa)"
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"par_id3154819\n"
-"23\n"
+"04060106.xhp\n"
+"par_id3149484\n"
+"192\n"
"help.text"
-msgid "<emph>Text</emph> is a valid date expression and must be entered with quotation marks."
-msgstr "<emph>Barruu</emph> himannoo guyyaa siirri fi mallattoo waraabbii wajjin galuu qaba."
+msgid "<emph>Number</emph> is the angle in radians to be converted to degrees."
+msgstr "<emph>Lakkoofsi</emph> kofa raadiyaanii gara diigriitti jijjiiramuudha."
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"hd_id3156309\n"
-"24\n"
+"04060106.xhp\n"
+"hd_id3669545\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"par_id3155841\n"
-"25\n"
+"04060106.xhp\n"
+"par_id3459578\n"
"help.text"
-msgid "<emph>=DATEVALUE(\"1954-07-20\")</emph> yields 19925."
-msgstr "<emph>=DATEVALUE(\"1954-07-20\") </emph> 19925 kenna."
+msgid "<item type=\"input\">=DEGREES(PI())</item> returns 180 degrees."
+msgstr "<item type=\"input\">=DEGREES(PI())</item> diigrii 180 deebisa."
-#: 06060200.xhp
+#: 04060106.xhp
msgctxt ""
-"06060200.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"bm_id3148698\n"
"help.text"
-msgid "Protecting document"
-msgstr "Galmee eeguu"
+msgid "<bookmark_value>EXP function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii EXP </bookmark_value>"
-#: 06060200.xhp
+#: 04060106.xhp
msgctxt ""
-"06060200.xhp\n"
-"hd_id3150541\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3148698\n"
+"198\n"
"help.text"
-msgid "Protecting document"
-msgstr "Galmee eeguu"
+msgid "EXP"
+msgstr "EXP"
-#: 06060200.xhp
+#: 04060106.xhp
msgctxt ""
-"06060200.xhp\n"
-"par_id3145172\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3150592\n"
+"199\n"
"help.text"
-msgid "<variable id=\"dokumenttext\"><ahelp hid=\".uno:ToolProtectionDocument\">Protects the sheet structure of your document from modifications. It is impossible to insert, delete, rename, move or copy sheets.</ahelp></variable> Open the <emph>Protect document</emph> dialog with <emph>Tools - Protect Document - Document</emph>. Optionally enter a password and click OK."
-msgstr "<variable id=\"dokumenttext\"><ahelp hid=\".uno:ToolProtectionDocument\">Caasa wardii kee haroomsamuu irraa ittisa.Wardiiwwan saaguu, haquu, irraa deebuun moggaasuu, siksuu ykn garagalchuu hin danda'amu..</ahelp></variable>Qaaqa <emph>Galmee eeguu</emph> <emph>Meeshaalee - Galmee Eeguu - Galmee</emph> waliin bana.Akka filannootti ittigaa galchuun OK cuuqaasi."
+msgid "<ahelp hid=\"HID_FUNC_EXP\">Returns e raised to the power of a number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+msgstr "<ahelp hid=\"HID_FUNC_EXP\"> e expoonentii lakkoofsaa deebisa.</ahelp> e tilmaamaan 2.71828182845904."
-#: 06060200.xhp
+#: 04060106.xhp
msgctxt ""
-"06060200.xhp\n"
-"par_id3153188\n"
-"6\n"
+"04060106.xhp\n"
+"hd_id3150351\n"
+"200\n"
"help.text"
-msgid "The structure of protected spreadsheet documents can be changed only if the <emph>Protect</emph> option is disabled. On the context menus for the spreadsheet tabs at the lower graphic border, only the menu item <emph>Select All Sheets</emph> can be activated. All other menu items are deactivated. To remove the protection, call up the command <emph>Tools - Protect Document - Document</emph> again. If no password is assigned, protection is immediately removed. If you were assigned a password, the <emph>Remove Spreadsheet Protection</emph> dialog appears, in which you must enter the password. Only then can you remove the check mark specifying that protection is active."
-msgstr "Caasan galmeewwwaan wardii eegamee kan jijjiiramuu danda'uu,yoo dirqalli<emph>Eeguu</emph> hojii dhiisee qofa. Bafatawwan halqara Caancaloota barruuf saxaatoo handaaraa gara gadii,bafataa wantaa <emph>Barruuwwan Hundaa Fili</emph> qoofatu kaafama.Barruuwwan wantoota kan biroo hin kaafaman.Eeginsa haquuf,ajaaja<emph>Meeshaalee - Galmee Eegi - Galmee</emph> lammata waami.Yoo ittigaan hin rammadamnee ta'ee,eeginsi yerooma sana haqama.Yoo ittigni kennamee,qaaqni<emph>Eeginsi Haqa Wardii</emph> kan itti ittigaa dirqiin galchitu ni mul'ata.Itti aansuun mallattoo mirkaaneessa haquu kan dandeesu eeginsii kun ka'aa ta'uu isaa ifteessuun qofa."
+msgid "Syntax"
+msgstr "Caasima"
-#: 06060200.xhp
+#: 04060106.xhp
msgctxt ""
-"06060200.xhp\n"
-"par_id3145750\n"
-"7\n"
+"04060106.xhp\n"
+"par_id3146786\n"
+"201\n"
"help.text"
-msgid "A protected document, once saved, can only be saved again with the <emph>File - Save As</emph> menu command."
-msgstr "Galmeen eegame,takkaa ol ka'aamnaan,ajaajaa baafataa<emph>faayilii- Akka olkaa'i</emph>lammata olka'aama."
+msgid "EXP(Number)"
+msgstr "EXP(Lakkoofsa)"
-#: 06060200.xhp
+#: 04060106.xhp
msgctxt ""
-"06060200.xhp\n"
-"hd_id3152596\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3155608\n"
+"202\n"
"help.text"
-msgid "Password (optional)"
-msgstr "Ittigaa (dirqalee)"
+msgid "<emph>Number</emph> is the power to which e is to be raised."
+msgstr "<emph>Lakkoofsi</emph> paaworii e ittiin ka'uudha."
-#: 06060200.xhp
+#: 04060106.xhp
msgctxt ""
-"06060200.xhp\n"
-"par_id3155412\n"
-"5\n"
+"04060106.xhp\n"
+"hd_id3154418\n"
+"203\n"
"help.text"
-msgid "You can create a password to protect your document against unauthorized or accidental modifications."
-msgstr "Galmeekee foyyii tasaa ykn angoon alaa irraa eeguuf ittigaa uumu dandeessa."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 06060200.xhp
+#: 04060106.xhp
msgctxt ""
-"06060200.xhp\n"
-"par_id3150717\n"
-"9\n"
+"04060106.xhp\n"
+"par_id3156340\n"
+"204\n"
"help.text"
-msgid "You can completely protect your work by combining both options from <emph>Tools - Protect Document</emph>, including password entry. If you want to prevent the document from being opened by other users, select <emph>Save With Password </emph>and click the <emph>Save</emph> button. The <emph>Enter Password</emph> dialog appears. Consider carefully when choosing a password; if you forget it after you close a document you will be unable to access the document."
-msgstr "Dirqalaalee <emph>Meeshaalee - Galmee Eegaa</emph>lamaan walitti qabun hojii kee guutummaan eegu dandeessa,galmaa ittigaa dabalachuun.yoo galmeen kee fayyadamtoota biraan akkaa hin banamnee barbaaddee <emph>Ittigaa Waliin Olka'ii </emph>filuun qabdoo<emph>Olkaa'i</emph> cuqaasi.Qaaqni <emph>Ittigaa Galchii</emph> ni mul'ata.Yommuu ittigaa filattu of eegannon ilaali;erga galmee kee cuftee yoo irraanfatte galmee kee banachuu hin dandeessu."
+msgid "<item type=\"input\">=EXP(1)</item> returns 2.71828182845904, the mathematical constant e to Calc's accuracy."
+msgstr "<item type=\"input\">=EXP(1)</item> 2.71828182845904,herreegni dhaabataan e kun sirrummaa calc tiifi."
-#: 12040100.xhp
+#: 04060106.xhp
msgctxt ""
-"12040100.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"bm_id3145781\n"
"help.text"
-msgid "AutoFilter"
-msgstr "OfGingilchaa"
+msgid "<bookmark_value>FACT function</bookmark_value><bookmark_value>factorials;numbers</bookmark_value>"
+msgstr "<bookmark_value>Faankishiniin FACT </bookmark_value><bookmark_value>faaktooriyaalii;lakkoofsotaa</bookmark_value>"
-#: 12040100.xhp
+#: 04060106.xhp
msgctxt ""
-"12040100.xhp\n"
-"hd_id3153541\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3145781\n"
+"208\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link>"
-msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">OfGingilchaa</link>"
+msgid "FACT"
+msgstr "FACT"
-#: 12040100.xhp
+#: 04060106.xhp
msgctxt ""
-"12040100.xhp\n"
-"par_id3148550\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3151109\n"
+"209\n"
"help.text"
-msgid "<ahelp hid=\".uno:DataFilterAutoFilter\">Automatically filters the selected cell range, and creates one-row list boxes where you can choose the items that you want to display.</ahelp>"
-msgstr "<ahelp hid=\".uno:DataFilterAutoFilter\">Ofumaan hammangaa man'ee filatamanii gingilcha,itti aansuun sanduqawwan tarree tar-tokkee iddoo wantoota agasiisuu barbaaddee itti filachu dandeessuu uuma.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_FAKULTAET\">Returns the factorial of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FAKULTAET\">Faaktooriyaalii lakkoofsaa deebisa.</ahelp>"
-#: 12040100.xhp
+#: 04060106.xhp
msgctxt ""
-"12040100.xhp\n"
-"par_id3145171\n"
-"3\n"
+"04060106.xhp\n"
+"hd_id3146902\n"
+"210\n"
"help.text"
-msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Default filter\">Default filter</link>"
-msgstr "<link href=\"text/shared/02/12090000.xhp\" name=\"Default filter\">Gingilchaa durtii</link>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3154661\n"
+"211\n"
"help.text"
-msgid "Logical Functions"
-msgstr "Faankishinii sirna yaadaa"
+msgid "FACT(Number)"
+msgstr "FACT(Lakkoofsaa)"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"bm_id3153484\n"
+"04060106.xhp\n"
+"par_id3152952\n"
+"212\n"
"help.text"
-msgid "<bookmark_value>logical functions</bookmark_value> <bookmark_value>Function Wizard; logical</bookmark_value> <bookmark_value>functions; logical functions</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii sirna yaadaa</bookmark_value> <bookmark_value>wiizaardii faankishinii; sirna yaadaa</bookmark_value> <bookmark_value>faankishinii; faankishinii sirna yaadaa</bookmark_value>"
+msgid "Returns Number!, the factorial of <emph>Number</emph>, calculated as 1*2*3*4* ... * Number."
+msgstr "Lakkoofsa deebisa!, faaktooriyaaliin <emph>lakkoofsaa</emph>, akka lakkoofsa 1*2*3*4* ... * shallagama."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3153484\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3834650\n"
"help.text"
-msgid "Logical Functions"
-msgstr "Faankishinii sirna yaadaa"
+msgid "=FACT(0) returns 1 by definition."
+msgstr "=FACT(0) akka hiikaatti 1 deebisa."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3149312\n"
-"2\n"
+"04060106.xhp\n"
+"par_id8429517\n"
"help.text"
-msgid "<variable id=\"logischtext\">This category contains the <emph>Logical</emph> functions. </variable>"
-msgstr "<variable id=\"logischtext\">Tuutallaan kun <emph>faankishinii</emph> sirna yaadaa of keessaa qaba.</variable>"
+msgid "The factorial of a negative number returns the \"invalid argument\" error."
+msgstr "Faaktooriyaaniin lakkoofsa negatiivii\"qoccolloo fashalaawaa\" dogogora deebisa."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"bm_id3147505\n"
+"04060106.xhp\n"
+"hd_id3154569\n"
+"213\n"
"help.text"
-msgid "<bookmark_value>AND function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii FI</bookmark_value>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3147505\n"
-"29\n"
+"04060106.xhp\n"
+"par_id3154476\n"
+"216\n"
"help.text"
-msgid "AND"
-msgstr "AND"
+msgid "<item type=\"input\">=FACT(3)</item> returns 6."
+msgstr "<item type=\"input\">=FACT(3)</item> 6 deebisa."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3153959\n"
-"65\n"
+"04060106.xhp\n"
+"par_id3147525\n"
+"214\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_UND\">Returns TRUE if all arguments are TRUE.</ahelp> If one of the elements is FALSE, this function returns the FALSE value."
-msgstr "<ahelp hid=\"HID_FUNC_UND\">Yoo qocolloon hunduu DHUGAA ta'an DHUGAA deebisa.</ahelp> Yoo elementiin tokko SOBA ta'e,faankishiniin kun gatii SOBAA deebisa."
+msgid "<item type=\"input\">=FACT(0)</item> returns 1."
+msgstr "<item type=\"input\">=FACT(0)</item> 1 deebisa."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3146100\n"
-"66\n"
+"04060106.xhp\n"
+"bm_id3159084\n"
"help.text"
-msgid "The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values."
-msgstr "Qocolloon sirna yaadaa (DHUGAA,1<5,2+3=7,B8<10) gatii sirna yaadaa deebisa,ykn aareen(A1:C3)gatii sirna yaadaa of keessaa qaba."
+msgid "<bookmark_value>INT function</bookmark_value><bookmark_value>numbers;rounding down to next integer</bookmark_value><bookmark_value>rounding;down to next integer</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii INT </bookmark_value><bookmark_value>lakkoofsota;gara intijarii itti aanutti gadi siqsa</bookmark_value><bookmark_value>naannessuu;gara intijarii gadiitti siqsuu</bookmark_value>"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3150538\n"
-"67\n"
+"04060106.xhp\n"
+"hd_id3159084\n"
+"218\n"
"help.text"
-msgid "When a function expects a single value, but you entered a cell range, then the value from the cell range is taken that is in the same column or row as the formula."
-msgstr "yeroo faankishiniin gatii qeenxee abdatee,garuu ati hammangaa man'ee yoo saagde,gatiin hammangaa man'eerraa tarjaa ykn tarree walfakkaatu akka foormulaatti fudhatama."
+msgid "INT"
+msgstr "INT"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3149128\n"
-"68\n"
+"04060106.xhp\n"
+"par_id3158441\n"
+"219\n"
"help.text"
-msgid "If the entered range is outside of the current column or row of the formula, the function returns the error value #VALUE!"
-msgstr "Yoo hammangaa galchame foormulaa tarjaa ykn tarree ammeetiin ala ta'e,faankishiniin gatii dogogaraa #VALUE!deebisa."
+msgid "<ahelp hid=\"HID_FUNC_GANZZAHL\">Rounds a number down to the nearest integer.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GANZZAHL\">Lakkoofsa gara intijajii itti aanutti gadi siiqsa.</ahelp>"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3150374\n"
-"31\n"
+"04060106.xhp\n"
+"hd_id3146132\n"
+"220\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3159123\n"
-"32\n"
+"04060106.xhp\n"
+"par_id3156146\n"
+"221\n"
"help.text"
-msgid "AND(LogicalValue1; LogicalValue2 ...LogicalValue30)"
-msgstr "FI(Gatii sirna yaadaa 1;Gatii sirna yaadaa 2; ...Gatii sirna yaadaa 30)"
+msgid "INT(Number)"
+msgstr "INT(Lakkoofsa)"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3150038\n"
-"33\n"
+"04060106.xhp\n"
+"par_id3154117\n"
+"222\n"
"help.text"
-msgid "<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses the value from the range that is in the current column or row. The result is TRUE if the logical value in all cells within the cell range is TRUE."
-msgstr "<emph>Gatiiyaayaa1; Gatiiyaayaa2 ...Gatiiyaayaa30</emph> haalota mirkaneeffamaniidha. Haalonni hunduu TRUE ykn FALSE ta'uu danda'u. Yoo hammangaan akka jijjiiramaatti galfame, faankishiniin gatii hammanga kan tarjaa ykn tarree ammee keessaa fayyadama. Yoo gatiin yaayyaa man'eewwan hunda keessa hammangaa man'ee wajjin jiran TRUE ta'an firiin TRUE ta'a."
+msgid "Returns <emph>Number</emph> rounded down to the nearest integer."
+msgstr "Lakkoofsa<emph>gara</emph> intijarii gadi siqeetti deebisa."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3149143\n"
-"34\n"
+"04060106.xhp\n"
+"par_id153508\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Negative numbers round down to the integer below."
+msgstr "Lakkoofsonni negatiifiin gara negatiivii gadiitti siqa."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3153123\n"
-"35\n"
+"04060106.xhp\n"
+"hd_id3155118\n"
+"223\n"
"help.text"
-msgid "The logical values of entries 12<13; 14>12, and 7<6 are to be checked:"
-msgstr "Gatiin sirna yaada hundaa 12<13; 14>12, and 7<6 ni mirkanaa'a:"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3145632\n"
-"36\n"
+"04060106.xhp\n"
+"par_id3156267\n"
+"224\n"
"help.text"
-msgid "<item type=\"input\">=AND(12<13;14>12;7<6)</item> returns FALSE."
-msgstr "<item type=\"input\">=FI(12<13;14>12;7<6)</item> SOBA deebisa."
+msgid "<item type=\"input\">=INT(5.7)</item> returns 5."
+msgstr "<item type=\"input\">=INT(5.7)</item> 5 deebisa."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3149946\n"
-"60\n"
+"04060106.xhp\n"
+"par_id3147323\n"
+"225\n"
"help.text"
-msgid "<item type=\"input\">=AND (FALSE;TRUE)</item> returns FALSE."
-msgstr "<item type=\"input\">=FI(SOBA;DHUGAA)</item> SOBA deebisa."
+msgid "<item type=\"input\">=INT(-1.3)</item> returns -2."
+msgstr "<item type=\"input\">=INT(-1.3)</item>-2 deebisa."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"bm_id3149015\n"
+"04060106.xhp\n"
+"bm_id3150938\n"
"help.text"
-msgid "<bookmark_value>FALSE function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii SOBA</bookmark_value>"
+msgid "<bookmark_value>EVEN function</bookmark_value><bookmark_value>numbers;rounding up/down to even integers</bookmark_value><bookmark_value>rounding;up/down to even integers</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii EVEN </bookmark_value><bookmark_value>lakkoofsota;siqsuu;ol/gadi gara intijerii guutuutti</bookmark_value><bookmark_value>siiqsuu;ol/gadi gara intijarii guututti</bookmark_value>"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3149015\n"
-"3\n"
+"04060106.xhp\n"
+"hd_id3150938\n"
+"227\n"
"help.text"
-msgid "FALSE"
-msgstr "FALSE"
+msgid "EVEN"
+msgstr "EVEN"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3149890\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3149988\n"
+"228\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FALSCH\">Returns the logical value FALSE.</ahelp> The FALSE() function does not require any arguments, and always returns the logical value FALSE."
-msgstr "<ahelp hid=\"HID_FUNC_FALSCH\">Gatii sirna yaadaa SOBA deebisa.</ahelp> Faankishiniin SOBAA() yeroo hundaa gaii sirna yaadaa SOBA deebisa."
+msgid "<ahelp hid=\"HID_FUNC_GERADE\">Rounds a positive number up to the next even integer and a negative number down to the next even integer.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GERADE\">Lakkoofsa positiivii hanga intijarii guutuu itti aanuuttii fi lakkoofsa negatiivii gadi gara intijarii guutuu itti aanuutti siqsa.</ahelp>"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3146939\n"
-"5\n"
+"04060106.xhp\n"
+"hd_id3148401\n"
+"229\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3150030\n"
-"6\n"
-"help.text"
-msgid "FALSE()"
-msgstr "FALSE()"
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3150697\n"
-"7\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3154842\n"
-"8\n"
-"help.text"
-msgid "<item type=\"input\">=FALSE()</item> returns FALSE"
-msgstr "<item type=\"input\">=N(SOBA)</item> 0 deebisa"
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3147468\n"
-"9\n"
-"help.text"
-msgid "<item type=\"input\">=NOT(FALSE())</item> returns TRUE"
-msgstr "<item type=\"input\">=NOT(SOBA())</item> DHUGAA deebisa."
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"bm_id3150141\n"
-"help.text"
-msgid "<bookmark_value>IF function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii IF</bookmark_value>"
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3150141\n"
-"48\n"
-"help.text"
-msgid "IF"
-msgstr "IF"
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3148740\n"
-"49\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WENN\">Specifies a logical test to be performed.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_WENN\">sirna yaadaa hojjatamu adda baasa.</ahelp>"
-
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3153325\n"
-"50\n"
+"04060106.xhp\n"
+"par_id3150830\n"
+"230\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "EVEN(Number)"
+msgstr "EVEN(Lakkoofsa)"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3154558\n"
-"51\n"
+"04060106.xhp\n"
+"par_id3153350\n"
+"231\n"
"help.text"
-msgid "IF(Test; ThenValue; OtherwiseValue)"
-msgstr "Yoo(Yaalii;Achumaan gatii; Yoo hin taane gatii\")"
+msgid "Returns <emph>Number</emph> rounded to the next even integer up, away from zero."
+msgstr "Lakkoofsa<emph>gara</emph> intijarii guutuutti ol,zero irraa deebisa."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3149727\n"
-"52\n"
+"04060106.xhp\n"
+"hd_id3155508\n"
+"232\n"
"help.text"
-msgid "<emph>Test</emph> is any value or expression that can be TRUE or FALSE."
-msgstr "<emph>Yaaliin</emph> galii kamiyyuu ykn ibsa kan DHUGAA ykn SOBA ta'uu danda'a."
+msgid "Examples"
+msgstr "Fakkeenyawwan"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3155828\n"
-"53\n"
+"04060106.xhp\n"
+"par_id3154361\n"
+"233\n"
"help.text"
-msgid "<emph>ThenValue</emph> (optional) is the value that is returned if the logical test is TRUE."
-msgstr "<emph>Achumaan gatiin</emph> (filannoo) gatii yoo sirni yaada yaalii DHUGAA ta'e deebisa."
+msgid "<item type=\"input\">=EVEN(2.3)</item> returns 4."
+msgstr "<item type=\"input\">=EVEN(2.3)</item> 4 deebisa."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3154811\n"
-"54\n"
+"04060106.xhp\n"
+"par_id8477736\n"
"help.text"
-msgid "<emph>OtherwiseValue</emph> (optional) is the value that is returned if the logical test is FALSE."
-msgstr "<emph>Yoo hin taane gatiin</emph> (filannoo) gatii yoo sirni yaada yaalii SOBA ta'e deebisa."
+msgid "<item type=\"input\">=EVEN(2)</item> returns 2."
+msgstr "<item type=\"input\">=EVEN(2)</item> 2 deebisa."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_idN107FA\n"
+"04060106.xhp\n"
+"par_id159611\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "<item type=\"input\">=EVEN(0)</item> returns 0."
+msgstr "<item type=\"input\">=EVEN(0)</item> 0 deebisa."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3149507\n"
-"55\n"
+"04060106.xhp\n"
+"par_id6097598\n"
"help.text"
-msgid "Examples"
-msgstr "Fakkeenya"
+msgid "<item type=\"input\">=EVEN(-0.5)</item> returns -2."
+msgstr "<item type=\"input\">=EVEN(-0.5)</item> -2 deebisa."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3150867\n"
-"57\n"
+"04060106.xhp\n"
+"bm_id3147356\n"
"help.text"
-msgid "<item type=\"input\">=IF(A1>5;100;\"too small\")</item> If the value in A1 is higher than 5, the value 100 is entered in the current cell; otherwise, the text “too small” (without quotes) is entered."
-msgstr "<item type=\"input\">=IF(A1>5;100;\"baay'ee xiqqaa\")</item> Yoo gatiin A1 5 caale,man'ee ammee keessa 100 gala; yoo hintaane,barruun“baay'ee xiqqaa” gala."
+msgid "<bookmark_value>GCD function</bookmark_value><bookmark_value>greatest common divisor</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii HWG </bookmark_value><bookmark_value>hirmaataa walii guddicha</bookmark_value>"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"bm_id3155954\n"
+"04060106.xhp\n"
+"hd_id3147356\n"
+"237\n"
"help.text"
-msgid "<bookmark_value>NOT function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii MITI</bookmark_value>"
+msgid "GCD"
+msgstr "GCD"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3155954\n"
-"12\n"
+"04060106.xhp\n"
+"par_id3152465\n"
+"238\n"
"help.text"
-msgid "NOT"
-msgstr "NOT"
+msgid "<ahelp hid=\"HID_FUNC_GGT\">Returns the greatest common divisor of two or more integers.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GGT\">Hirmaataa walii guddicha kan intijaroota lamaa ykn lamaa ol ta'an deebisa.</ahelp>"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3153570\n"
-"13\n"
+"04060106.xhp\n"
+"par_id2769249\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_NICHT\">Complements (inverts) a logical value.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NICHT\">Gatii yaayaa guuchisaa(garagalchaa).</ahelp>"
+msgid "The greatest common divisor is the positive largest integer which will divide, without remainder, each of the given integers."
+msgstr "Hirmaataa walii guddichi intijarii posotiivii guddicha kan intijaroota kennaman hundaa haftee malee hiraniidha."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3147372\n"
-"14\n"
+"04060106.xhp\n"
+"hd_id3150643\n"
+"239\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3157996\n"
-"15\n"
+"04060106.xhp\n"
+"par_id3154524\n"
+"240\n"
"help.text"
-msgid "NOT(LogicalValue)"
-msgstr "NOT(Sirna yaadaa)"
+msgid "GCD(Integer1; Integer2; ...; Integer30)"
+msgstr "GCD(Intijarii1;Intijarii2;...;Intijarii30)"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3148766\n"
-"16\n"
+"04060106.xhp\n"
+"par_id3149340\n"
+"241\n"
"help.text"
-msgid "<emph>LogicalValue</emph> is any value to be complemented."
-msgstr "<emph>GatiiYaayaa</emph> gatii garagaru kamuudha."
+msgid "<emph>Integer1 To 30</emph> are up to 30 integers whose greatest common divisor is to be calculated."
+msgstr "<emph>Intijariin1 haga 30</emph>intijaroota haga 30 jiraniif hirmaataa walii guddaan ni shallagama."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3149884\n"
-"17\n"
+"04060106.xhp\n"
+"hd_id3147317\n"
+"242\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3150132\n"
-"18\n"
-"help.text"
-msgid "<item type=\"input\">=NOT(A)</item>. If A=TRUE then NOT(A) will evaluate FALSE."
-msgstr "<item type=\"input\">=NOT(A)</item>. A=DHUGAA gara A=SOBA."
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"bm_id3148394\n"
-"help.text"
-msgid "<bookmark_value>OR function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii OR</bookmark_value>"
-
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3148394\n"
-"20\n"
+"04060106.xhp\n"
+"par_id3151285\n"
+"243\n"
"help.text"
-msgid "OR"
-msgstr "OR"
+msgid "<item type=\"input\">=GCD(16;32;24) </item>gives the result 8, because 8 is the largest number that can divide 16, 24 and 32 without a remainder."
+msgstr "<item type=\"input\">=GCD(16;32;24) </item> firii 8 kenna,sababiin isaas 8 lakkoofsa guddaa kan 16, 24 fi 32 haftee malee hiruu danda'uudha."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3156060\n"
-"61\n"
+"04060106.xhp\n"
+"par_id1604663\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ODER\">Returns TRUE if at least one argument is TRUE.</ahelp> This function returns the value FALSE, if all the arguments have the logical value FALSE."
-msgstr "<ahelp hid=\"HID_FUNC_ODER\">Yoo qajeelfamni tokkollee TRUE ta'e TRUE deebisa.</ahelp> Yoo qajeelfamnoonni hunduu gatii yaayyaa FALSE ta'e, Faankishiniin kun FALSE deebisa."
+msgid "<item type=\"input\">=GCD(B1:B3)</item> where cells B1, B2, B3 contain <item type=\"input\">9</item>, <item type=\"input\">12</item>, <item type=\"input\">9</item> gives 3."
+msgstr "<item type=\"input\">=HWG(B1:B3)</item> iddoo man'eewwan B1, B2, B3 <item type=\"input\">9</item>, <item type=\"input\">12</item> of keessaa qabaniidha , <item type=\"input\">9</item>3 kenna."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3148771\n"
-"62\n"
+"04060106.xhp\n"
+"bm_id3151221\n"
"help.text"
-msgid "The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values."
-msgstr "Qajeelfamootni ykn yaayaa himannoowwan ofii isaani kan(TRUE, 1<5, 2+3=7, B8<10) ta'ee gatiiwwan yaayaa kennu ykn waraantoowwan(A1:C3) gatiiwwan yaayaa of keessatti qabateedha."
+msgid "<bookmark_value>GCD_ADD function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii GCD_ADD</bookmark_value>"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3153546\n"
-"63\n"
+"04060106.xhp\n"
+"hd_id3151221\n"
+"677\n"
"help.text"
-msgid "When a function expects a single value, but you entered a cell range, then the value from the cell range is taken that is in the same column or row as the formula."
-msgstr "Yommuu fankishiniin gaii qeenxee eege,garuu hangii man'ee galchitee,itti ansuun gatiin hangii man'ee irraa kan fudhatamu yoo tarjaa ykn tarreen kan formuulaa waliin fakkaate dha."
+msgid "GCD_ADD"
+msgstr "GCD_ADD"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3149027\n"
-"64\n"
+"04060106.xhp\n"
+"par_id3153257\n"
+"678\n"
"help.text"
-msgid "If the entered range is outside of the current column or row of the formula, the function returns the error value #VALUE!"
-msgstr "Yoo hangiin galee formulaa tarjaa ykn tarree ammee ala ta'ee,fankishiniin gatii dogoggoraa deebisa #VALUE!"
+msgid "<ahelp hid=\"HID_AAI_FUNC_GCD\"> The result is the greatest common divisor of a list of numbers.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_GCD\"> Firiin argamu hirmaataa walii guddicha lakkoofsota tarreeffamanii ta'a.</ahelp>"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3155517\n"
-"22\n"
+"04060106.xhp\n"
+"hd_id3147548\n"
+"679\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3150468\n"
-"23\n"
+"04060106.xhp\n"
+"par_id3156205\n"
+"680\n"
"help.text"
-msgid "OR(LogicalValue1; LogicalValue2 ...LogicalValue30)"
-msgstr "ykn(Gatii Yaayaa1;Gatii Yaayaa2 ...Gatii Yaayaa30)"
+msgid "GCD_ADD(Number(s))"
+msgstr "GCD_ADD(Lakkoofsa(oota))"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3155819\n"
-"24\n"
+"04060106.xhp\n"
+"par_id3145150\n"
+"681\n"
"help.text"
-msgid "<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses the value from the range that is in the current column or row."
-msgstr "<emph>Gatii Yaayaa1;Gatii Yaayaa2 ...Gatii Yaayaa30</emph> ulaagaalee mirkaneeffamani dha.Ulaagaaleen huundi dhugaa ykn soba ta'u.Yoo hangiin akka jijjiramaatti gale,fankishiniin gatii hangii kan tarree ykn tarjaa ammee keessatti argamu fayyadama."
+msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
+msgstr "<emph>Lakkoofsi(onni))</emph> lakkoofsota haga 30tti tarreeffamaniidha."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3153228\n"
-"25\n"
+"04060106.xhp\n"
+"hd_id3150239\n"
+"682\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3154870\n"
-"26\n"
-"help.text"
-msgid "The logical values of entries 12<11; 13>22, and 45=45 are to be checked."
-msgstr "Gatii yaayyaa kan 12<11;13>12, fi 45=45 hunduu mirkaneeffamuu qaba."
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3155371\n"
-"27\n"
-"help.text"
-msgid "<item type=\"input\">=OR(12<11;13>22;45=45)</item> returns TRUE."
-msgstr "<item type=\"input\">=OR(12<11;13>22;45=45)</item> DHUGAA deebisa."
-
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3158412\n"
-"59\n"
+"04060106.xhp\n"
+"par_id3159192\n"
+"683\n"
"help.text"
-msgid "<item type=\"input\">=OR(FALSE;TRUE)</item> returns TRUE."
-msgstr "<item type=\"input\">=OR(SOBA;DHUGAA)</item> DHUGAA deebisa."
+msgid "<item type=\"input\">=GCD_ADD(5;15;25)</item> returns 5."
+msgstr "<item type=\"input\">=GCD_ADD(5;15;25)</item> 5 deebsa."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"bm_id3156256\n"
+"04060106.xhp\n"
+"bm_id3156048\n"
"help.text"
-msgid "<bookmark_value>TRUE function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii DHUGAA</bookmark_value>"
+msgid "<bookmark_value>ISEVEN function</bookmark_value><bookmark_value>even integers</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii ISEVEN </bookmark_value><bookmark_value>intijarii guutuu</bookmark_value>"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3156256\n"
-"38\n"
+"04060106.xhp\n"
+"hd_id3156048\n"
+"245\n"
"help.text"
-msgid "TRUE"
-msgstr "TRUE"
+msgid "ISEVEN"
+msgstr "ISEVEN"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3155985\n"
-"39\n"
+"04060106.xhp\n"
+"par_id3149169\n"
+"246\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WAHR\">The logical value is set to TRUE.</ahelp> The TRUE() function does not require any arguments, and always returns the logical value TRUE."
-msgstr "<ahelp hid=\"HID_FUNC_WAHR\">Gatiin yaayyaa gara TRUE qindaa'a.</ahelp> Faankishiniin TRUE() qajeelfama kamiyyuu hin barbaadu, yeroo hundaa gatii yaayyaa TRUE deebisa."
+msgid "<ahelp hid=\"HID_FUNC_ISTGERADE\">Returns TRUE if the value is an even integer, or FALSE if the value is odd.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISTGERADE\">Yoo gatiin intijarii guutuu ta'e TRUE ,ykn yoo gatiin qara ta'e FALSE deebisa.</ahelp>"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3153717\n"
-"40\n"
+"04060106.xhp\n"
+"hd_id3146928\n"
+"247\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3152590\n"
-"41\n"
-"help.text"
-msgid "TRUE()"
-msgstr "TRUE()"
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3147175\n"
-"42\n"
-"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
-
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3146148\n"
-"43\n"
+"04060106.xhp\n"
+"par_id3151203\n"
+"248\n"
"help.text"
-msgid "If A=TRUE and B=FALSE the following examples appear:"
-msgstr "Yoo A=TRUE fi B=FALSE fakkeenyi armaan gadii ni mul'ata:"
+msgid "ISEVEN(Value)"
+msgstr "ISEVEN(Gatii)"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3083285\n"
-"44\n"
+"04060106.xhp\n"
+"par_id3150491\n"
+"249\n"
"help.text"
-msgid "<item type=\"input\">=AND(A;B)</item> returns FALSE"
-msgstr "<item type=\"input\">=AND(A;B)</item> FALSE deebisa"
+msgid "<emph>Value</emph> is the value to be checked."
+msgstr "<emph>Gatiin</emph>gatii mirkanaa'edha."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3083444\n"
-"45\n"
+"04060106.xhp\n"
+"par_id3445844\n"
"help.text"
-msgid "<item type=\"input\">=OR(A;B)</item> returns TRUE"
-msgstr "<item type=\"input\">=OR(A;B)</item>DHUGAA deebisa."
+msgid "If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored."
+msgstr "Yoo gatiin intijarii ta'uu baate,lakkoofsi kamiyyuu tuqaa deesimaaliin boodaa ni hafu.Mallattoon gatiis ni hafa."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3154314\n"
-"46\n"
+"04060106.xhp\n"
+"hd_id3154136\n"
+"250\n"
"help.text"
-msgid "<item type=\"input\">=NOT(AND(A;B))</item> returns TRUE"
-msgstr "<item type=\"input\">=NOT(AND(A;B))</item> DHUGAA deebisa."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12080700.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"12080700.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3163813\n"
+"251\n"
"help.text"
-msgid "Show Details (Pivot Table)"
-msgstr "Baldhiintaa agarsiisi(qinxaa)"
+msgid "<item type=\"input\">=ISEVEN(48)</item> returns TRUE"
+msgstr "<item type=\"input\">=ISEVEN(48)</item> TRUE deebisa."
-#: 12080700.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"12080700.xhp\n"
-"hd_id3344523\n"
+"04060106.xhp\n"
+"par_id8378856\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080700.xhp\">Show Details (Pivot Table)</link>"
-msgstr "<link href=\"text/scalc/01/12080700.xhp\">Baldhiintaa agarsiisi(qinxaa)</link>"
+msgid "<item type=\"input\">=ISEVEN(33)</item> returns FALSE"
+msgstr "<item type=\"input\">=ISEVEN(33)</item> FALSE deebisa."
-#: 12080700.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"12080700.xhp\n"
-"par_id871303\n"
+"04060106.xhp\n"
+"par_id7154759\n"
"help.text"
-msgid "<ahelp hid=\".\">Inserts a new \"drill-down\" sheet with more information about the current pivot table cell. You can also double-click a pivot table cell to insert the \"drill-down\" sheet. The new sheet shows a subset of rows from the original data source that constitutes the result data displayed in the current cell.</ahelp>"
-msgstr "<ahelp hid=\".\">Wardii\"drill-down\" haaraa odeeffannoo dabalataa wa'ee man'ee qinxaa waliin saaga. Wardii \"drill-down\" saaguf man'ee qinxaa lama cuqaasuu dandeessa. Wardii haraan tarreewwan cita tuutaa madda deetaa jalqabaa kan bu'aa deetaa man'ee ammaa keessatti agarsiifame agarsiisa.</ahelp>"
+msgid "<item type=\"input\">=ISEVEN(0)</item> returns TRUE"
+msgstr "<item type=\"input\">=ISEVEN(0)</item>TRUE deebisa."
-#: 12080700.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"12080700.xhp\n"
-"par_id7132480\n"
+"04060106.xhp\n"
+"par_id1912289\n"
"help.text"
-msgid "Hidden items are not evaluated, the rows for the hidden items are included. Show Details is available only for pivot tables that are based on cell ranges or database data."
-msgstr "Wantootni dhokataan hin madaalaman,tarreen wantoota dhokatee keessatti ni hammatama. Agarsiisan baldhiintaa kan argamuu gabateewwan qinxaa kan hangiiwwan man'ee ykn kuusaa deetaa irratti hunda'uu qofaafi."
+msgid "<item type=\"input\">=ISEVEN(-2.1)</item> returns TRUE"
+msgstr "<item type=\"input\">=ISEVEN(-2.1)</item> TRUE deebisa."
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id5627307\n"
"help.text"
-msgid "DATE"
-msgstr "DATE"
+msgid "<item type=\"input\">=ISEVEN(3.999)</item> returns FALSE"
+msgstr "<item type=\"input\">=ISEVEN(3.999)</item> FALSE deebisa."
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"bm_id3155511\n"
+"04060106.xhp\n"
+"bm_id3156034\n"
"help.text"
-msgid "<bookmark_value>DATE function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii DATE</bookmark_value>"
+msgid "<bookmark_value>ISODD function</bookmark_value><bookmark_value>odd integers</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii ISODD</bookmark_value><bookmark_value>intijaroota qaraa</bookmark_value>"
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"hd_id3155511\n"
-"3\n"
+"04060106.xhp\n"
+"hd_id3156034\n"
+"255\n"
"help.text"
-msgid "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">DATE</link></variable>"
-msgstr "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">DATE</link></variable>"
+msgid "ISODD"
+msgstr "ISODD"
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"par_id3153551\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3155910\n"
+"256\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DATUM\">This function calculates a date specified by year, month, day and displays it in the cell's formatting.</ahelp> The default format of a cell containing the DATE function is the date format, but you can format the cells with any other number format."
-msgstr "<ahelp hid=\"HID_FUNC_DATUM\">Fankiishiniin kun aduu waggaadhaan,ji'aan,guyyaadhaan ibsame dhangiiwwaan man'ee keessati shallaguun deebisee mul'isa.</ahelp> Dhangii durtii man'eewwaan DATE fankiishinii of keessa qaban dhangii aduu ta'u,garu man'eewwaan dhangi lakkoofsa biraan dhangeessuu dandessa."
+msgid "<ahelp hid=\"HID_FUNC_ISTUNGERADE\">Returns TRUE if the value is odd, or FALSE if the number is even.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISTUNGERADE\">Yoo gatiin qara ta'e DHUGAA ,ykn yoo lakkoofsi guutuu ta'e SOBA deebisa.</ahelp>"
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"hd_id3148590\n"
-"5\n"
+"04060106.xhp\n"
+"hd_id3151006\n"
+"257\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: func_date.xhp
-msgctxt ""
-"func_date.xhp\n"
-"par_id3150474\n"
-"6\n"
-"help.text"
-msgid "DATE(Year; Month; Day)"
-msgstr "DATE(Waggaa;Ji'a; Guyyaa)"
-
-#: func_date.xhp
-msgctxt ""
-"func_date.xhp\n"
-"par_id3152815\n"
-"7\n"
-"help.text"
-msgid "<emph>Year</emph> is an integer between 1583 and 9957 or between 0 and 99."
-msgstr "<emph>Waggaan</emph> intiijera 1583 hanga 9957 ykn 0 hanga 99 gidduutti argamudha."
-
-#: func_date.xhp
-msgctxt ""
-"func_date.xhp\n"
-"par_id3153222\n"
-"174\n"
-"help.text"
-msgid "In <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - General </item>you can set from which year a two-digit number entry is recognized as 20xx."
-msgstr ""
-
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"par_id3155817\n"
-"8\n"
+"04060106.xhp\n"
+"par_id3151375\n"
+"258\n"
"help.text"
-msgid "<emph>Month</emph> is an integer indicating the month."
-msgstr "<emph>Ji'a</emph> intiijeera ji'a agarsiisudha."
+msgid "ISODD(value)"
+msgstr "ISODD(Gatii)"
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"par_id3153183\n"
-"9\n"
+"04060106.xhp\n"
+"par_id3155139\n"
+"259\n"
"help.text"
-msgid "<emph>Day</emph> is an integer indicating the day of the month."
-msgstr "<emph>Guyyaa</emph> intiijeera guyyaa ji'a agarsiisudha."
+msgid "<emph>Value</emph> is the value to be checked."
+msgstr "<emph>Gatiin</emph>gatii mirkanaa'edha."
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"par_id3156260\n"
-"10\n"
+"04060106.xhp\n"
+"par_id9027680\n"
"help.text"
-msgid "If the values for month and day are out of bounds, they are carried over to the next digit. If you enter <item type=\"input\">=DATE(00;12;31)</item> the result will be 12/31/00. If, on the other hand, you enter <item type=\"input\">=DATE(00;13;31)</item> the result will be 1/31/01."
-msgstr "Yoo gatiin ji'aaf gatiin guyyaa dangaa kennameen oli ta'e,gara dijiiti itti aanutti darba.Yoo<item type=\"input\">=DATE(00;12;31)</item> galchitee bu'aan 12/31/00 ta'a.Karaa biraan, yoo<item type=\"input\">=DATE(00;13;31)</item> galchite, bu'aan 1/31/01 ta'a."
+msgid "If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored."
+msgstr "Yoo gatiin intijarii ta'uu baate,lakkoofsi kamiyyuu tuqaa deesimaaliin boodaa ni hafu.Mallattoon gatiis ni hafa."
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"hd_id3147477\n"
-"12\n"
+"04060106.xhp\n"
+"hd_id3163723\n"
+"260\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: func_date.xhp
-msgctxt ""
-"func_date.xhp\n"
-"par_id3152589\n"
-"16\n"
-"help.text"
-msgid "<item type=\"input\">=DATE(00;1;31)</item> yields 1/31/00 if the cell format setting is MM/DD/YY."
-msgstr "<item type=\"input\">=DATE(00;1;31)</item> Yoo qindaa'inni dhangii man'ee MM/DD/YY ta'e 1/31/00 kenna'"
-
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Move or Copy a Sheet"
-msgstr "Wardii sochoosuu ykn garagalchuu"
-
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"bm_id3153360\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets; moving</bookmark_value><bookmark_value>spreadsheets; copying</bookmark_value><bookmark_value>moving; spreadsheets</bookmark_value><bookmark_value>copying; spreadsheets</bookmark_value>"
-msgstr "<bookmark_value>Wardii qajjoojjii; sochoosuu</bookmark_value><bookmark_value>Wardii qajjoojjii; garagalchuu</bookmark_value><bookmark_value>sochoosuu;Wardii qajjoojjii</bookmark_value><bookmark_value>garagalchuu; Wardii qajjoojjii</bookmark_value>"
-
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"hd_id3153360\n"
-"1\n"
-"help.text"
-msgid "Move or Copy a Sheet"
-msgstr "Wardii sochoosuu ykn garagalchuu"
-
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"par_id3154686\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"tabelleverschiebenkopierentext\"><ahelp hid=\".uno:Move\">Moves or copies a sheet to a new location in the document or to a different document.</ahelp></variable>"
-msgstr "<variable id=\"tabelleverschiebenkopierentext\"><ahelp hid=\".uno:Move\">Wardii galmee keessa jiru gara iddoo haaraatti ykn galmee biraatti sochoosa ykn garagalcha.</ahelp></variable>"
-
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"par_id2282479\n"
-"help.text"
-msgid "When you copy and paste cells containing <link href=\"text/scalc/01/04060102.xhp\">date values</link> between different spreadsheets, both spreadsheet documents must be set to the same date base. If date bases differ, the displayed date values will change!"
-msgstr "Yoo man'een <link href=\"text/scalc/01/04060102.xhp\">gatii guyyaa</link> qabu wardiiwwan qajjoojjii adda adda gidduutti garagalchituu fi maxxansitu galmeen wardii qajjoojjii qindaa'uu qaba.Yoo bu'uurri guyyaa adda ta'e guyyaan mul'atu ni jijjiirama!"
-
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"hd_id3163710\n"
-"3\n"
-"help.text"
-msgid "To Document"
-msgstr "Gara galmee"
-
-#: 02180000.xhp
-#, fuzzy
-msgctxt ""
-"02180000.xhp\n"
-"par_id3148645\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_DEST\">Indicates where the current sheet is to be moved or copied to.</ahelp> Select <emph>- new document -</emph> if you want to create a new location for the sheet to be moved or copied."
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_DEST\">Wardiin ammee garamitti akka socha'u ykn garagaru agarsiisa.</ahelp> Wardii garagaruuf <emph>ykn socho'uuf </emph> iddoo haaraa yoo uumuu barbaade galmee haaraa filadhu."
-
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"hd_id3154012\n"
-"5\n"
-"help.text"
-msgid "Insert Before"
-msgstr "Dursa saaguu"
-
-#: 02180000.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3145366\n"
-"6\n"
+"04060106.xhp\n"
+"par_id3155345\n"
+"261\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_INSERT\">The current sheet is moved or copied in front of the selected sheet.</ahelp> The <emph>- move to end position -</emph> option places the current sheet at the end."
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_INSERT\">Wardiin ammee gara fuldura wardii filatameetti socho'ama ykn garagara.</ahelp> Filannoon <emph> gara dhumaatti sochoosi </emph> jedhu dhumarratti wardii ammee qabata."
+msgid "<item type=\"input\">=ISODD(33)</item> returns TRUE"
+msgstr "<item type=\"input\">=ISODD(33)</item> TRUE deebisa."
-#: 02180000.xhp
+#: 04060106.xhp
msgctxt ""
-"02180000.xhp\n"
-"hd_id3153726\n"
-"7\n"
+"04060106.xhp\n"
+"par_id9392986\n"
"help.text"
-msgid "Copy"
-msgstr "Garagalchuu"
+msgid "<item type=\"input\">=ISODD(48)</item> returns FALSE"
+msgstr "<item type=\"input\">=ISODD(48)</item> FALSE deebisa."
-#: 02180000.xhp
+#: 04060106.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3144764\n"
-"8\n"
+"04060106.xhp\n"
+"par_id5971251\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_MOVETAB:BTN_COPY\">Specifies that the sheet is to be copied. If the option is unmarked, the sheet is moved.</ahelp> Moving sheets is the default."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_MOVETAB:BTN_COPY\">Wardiin akka garagaru adda baasa.Yoo filannoon adda hin baane wardiin ni socho'a.</ahelp> Wardiiwwan sochoosuun durtiidha."
+msgid "<item type=\"input\">=ISODD(3.999)</item> returns TRUE"
+msgstr "<item type=\"input\">=ISODD(3.999)</item> TRUE deebisa."
-#: func_now.xhp
+#: 04060106.xhp
msgctxt ""
-"func_now.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id4136478\n"
"help.text"
-msgid "NOW"
-msgstr "NOW"
+msgid "<item type=\"input\">=ISODD(-3.1)</item> returns TRUE"
+msgstr "<item type=\"input\">=ISODD(-3.1)</item> TRUE deebisa."
-#: func_now.xhp
+#: 04060106.xhp
msgctxt ""
-"func_now.xhp\n"
-"bm_id3150521\n"
+"04060106.xhp\n"
+"bm_id3145213\n"
"help.text"
-msgid "<bookmark_value>NOW function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii NOW</bookmark_value>"
+msgid "<bookmark_value>LCM function</bookmark_value><bookmark_value>least common multiples</bookmark_value><bookmark_value>lowest common multiples</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii LCM</bookmark_value><bookmark_value>Hiramaa walii xiqqicha</bookmark_value><bookmark_value>Hiramaa walii xiqqicha</bookmark_value>"
-#: func_now.xhp
+#: 04060106.xhp
msgctxt ""
-"func_now.xhp\n"
-"hd_id3150521\n"
-"47\n"
+"04060106.xhp\n"
+"hd_id3145213\n"
+"265\n"
"help.text"
-msgid "<variable id=\"now\"><link href=\"text/scalc/01/func_now.xhp\">NOW</link></variable>"
-msgstr "<variable id=\"now\"><link href=\"text/scalc/01/func_now.xhp\">NOW</link></variable>"
+msgid "LCM"
+msgstr "LCM"
-#: func_now.xhp
+#: 04060106.xhp
msgctxt ""
-"func_now.xhp\n"
-"par_id3148829\n"
-"48\n"
+"04060106.xhp\n"
+"par_id3146814\n"
+"266\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_JETZT\">Returns the computer system date and time.</ahelp> The value is updated when you recalculate the document or each time a cell value is modified."
-msgstr "<ahelp hid=\"HID_FUNC_JETZT\">Aduu fi yeroo sirna koompiteeraa kenna.</ahelp> Yommuu galmee ykn tokko tokko gatii man'ee haroomsamee irra deebi'uun shallaguu,gatiin ni haroomsama."
+msgid "<ahelp hid=\"HID_FUNC_KGV\">Returns the least common multiple of one or more integers.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KGV\">Hirmaataa walii guddicha kan intijaroota lamaa ykn lamaa ol ta'an deebisa.</ahelp>"
-#: func_now.xhp
+#: 04060106.xhp
msgctxt ""
-"func_now.xhp\n"
-"hd_id3146988\n"
-"49\n"
+"04060106.xhp\n"
+"hd_id3148632\n"
+"267\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: func_now.xhp
+#: 04060106.xhp
msgctxt ""
-"func_now.xhp\n"
-"par_id3154897\n"
-"50\n"
+"04060106.xhp\n"
+"par_id3147279\n"
+"268\n"
"help.text"
-msgid "NOW()"
-msgstr "NOW()"
+msgid "LCM(Integer1; Integer2; ...; Integer30)"
+msgstr "LCM(Intijarii1;Intijarii2;...;Intijarii30)"
-#: func_now.xhp
+#: 04060106.xhp
msgctxt ""
-"func_now.xhp\n"
-"par_id4598529\n"
+"04060106.xhp\n"
+"par_id3156348\n"
+"269\n"
"help.text"
-msgid "NOW is a function without arguments."
-msgstr "NOW'n fankishinii qajeelfamaan alaati."
+msgid "<emph>Integer1 to 30</emph> are up to 30 integers whose lowest common multiple is to be calculated."
+msgstr "<emph>Intijariin1 haga 30</emph>intijaroota haga 30 jiraniif hirmaataa walii guddaan ni shallagama."
-#: func_now.xhp
+#: 04060106.xhp
msgctxt ""
-"func_now.xhp\n"
-"hd_id3154205\n"
-"51\n"
+"04060106.xhp\n"
+"hd_id3156431\n"
+"270\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: func_now.xhp
-msgctxt ""
-"func_now.xhp\n"
-"par_id3150774\n"
-"52\n"
-"help.text"
-msgid "<item type=\"input\">=NOW()-A1</item> returns the difference between the date in A1 and now. Format the result as a number."
-msgstr "<item type=\"input\">=NOW()-A1</item> garaa garummaa aduu A1 fi amma gidduu jiru kenna.Firii akka lakkoofsatti dhangeessi."
-
-#: 02140100.xhp
+#: 04060106.xhp
msgctxt ""
-"02140100.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3154914\n"
+"271\n"
"help.text"
-msgid "Down"
-msgstr "Gadee"
+msgid "If you enter the numbers <item type=\"input\">512</item>;<item type=\"input\">1024</item> and <item type=\"input\">2000</item> in the Integer 1;2 and 3 text boxes, 128000 will be returned as the result."
+msgstr "Yoo lakkoofsota <item type=\"input\">512</item>;<item type=\"input\">1024</item> fi <item type=\"input\">2000</item> intijarii 1;2 fi 3 sanduuqa barruu, 128000 akka firiitti deebi'a."
-#: 02140100.xhp
+#: 04060106.xhp
msgctxt ""
-"02140100.xhp\n"
-"hd_id3150792\n"
-"1\n"
+"04060106.xhp\n"
+"bm_id3154230\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02140100.xhp\" name=\"Down\">Down</link>"
-msgstr "<link href=\"text/scalc/01/02140100.xhp\" name=\"Down\">Gadee</link>"
+msgid "<bookmark_value>LCM_ADD function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii HWX_ADD </bookmark_value>"
-#: 02140100.xhp
+#: 04060106.xhp
msgctxt ""
-"02140100.xhp\n"
-"par_id3153969\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3154230\n"
+"684\n"
"help.text"
-msgid "<ahelp hid=\".uno:FillDown\" visibility=\"visible\">Fills a selected range of at least two rows with the contents of the top cell of the range.</ahelp>"
-msgstr "<ahelp hid=\".uno:FillDown\" visibility=\"visible\">Yoo xinnaate hangii tarreewwan filataman lamaa qabeentota man'ee hangiitiin guuta.</ahelp>"
+msgid "LCM_ADD"
+msgstr "LCM_ADD"
-#: 02140100.xhp
+#: 04060106.xhp
msgctxt ""
-"02140100.xhp\n"
-"par_id3145787\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3149036\n"
+"685\n"
"help.text"
-msgid "If a selected range has only one column, the contents of the top cell are copied to all others. If several columns are selected, the contents of the corresponding top cell will be copied down."
-msgstr "Yoo hangiin filatame tarjaa tokko qofa qaba ta'e,qabeentotni man'ee gubbaa, man'eewwan biroo hundatti garagalu.Yoo tarjaawwan hedduun filataman qabeentotni man'ee gubbaa ni garagalu."
+msgid "<ahelp hid=\"HID_AAI_FUNC_LCM\"> The result is the lowest common multiple of a list of numbers.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_LCM\"> Firiin argamu hiramaa walii xiqqicha lakkoofsota tarreeffamanii ta'a.</ahelp>"
-#: format_graphic.xhp
+#: 04060106.xhp
msgctxt ""
-"format_graphic.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3153132\n"
+"686\n"
"help.text"
-msgid "Graphic"
-msgstr "Saxaatoo"
+msgid "Syntax"
+msgstr "Caasima"
-#: format_graphic.xhp
+#: 04060106.xhp
msgctxt ""
-"format_graphic.xhp\n"
-"par_idN10548\n"
+"04060106.xhp\n"
+"par_id3154395\n"
+"687\n"
"help.text"
-msgid "<link href=\"text/scalc/01/format_graphic.xhp\">Graphic</link>"
-msgstr "<link href=\"text/scalc/01/format_graphic.xhp\">Saxaatoo</link>"
+msgid "LCM_ADD(Number(s))"
+msgstr "LCM_ADD(Lakkoofsa(oota))"
-#: format_graphic.xhp
+#: 04060106.xhp
msgctxt ""
-"format_graphic.xhp\n"
-"par_idN10558\n"
+"04060106.xhp\n"
+"par_id3147377\n"
+"688\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a submenu to edit the properties of the selected object.</ahelp>"
-msgstr "<ahelp hid=\".\">bana baafata xiqqaa amalottaa wantaa filatamee ammaa gullaludhaaf.</ahelp>"
+msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
+msgstr "<emph>Lakkoofsi(onni))</emph> lakkoofsota haga 30tti tarreeffamaniidha."
-#: format_graphic.xhp
+#: 04060106.xhp
msgctxt ""
-"format_graphic.xhp\n"
-"par_id1650440\n"
+"04060106.xhp\n"
+"hd_id3145122\n"
+"689\n"
"help.text"
-msgid "<link href=\"text/shared/01/05990000.xhp\">Define Text Attributes</link>"
-msgstr "<link href=\"text/shared/01/05990000.xhp\">Amaloota barruu hiika</link>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: format_graphic.xhp
+#: 04060106.xhp
msgctxt ""
-"format_graphic.xhp\n"
-"par_id363475\n"
+"04060106.xhp\n"
+"par_id3145135\n"
+"690\n"
"help.text"
-msgid "Sets the layout and anchoring properties for text in the selected drawing or text object."
-msgstr "Teesumaa ni qindessaa akkasumaas ammalottaa korkodda'uu fakii barruu filatamee yokkan wanta barruu."
+msgid "<item type=\"input\">=LCM_ADD(5;15;25)</item> returns 75."
+msgstr "<item type=\"input\">=HWX_ADD(5;15;25)</item> 75 deebisa."
-#: format_graphic.xhp
+#: 04060106.xhp
msgctxt ""
-"format_graphic.xhp\n"
-"par_id9746696\n"
+"04060106.xhp\n"
+"bm_id3155802\n"
"help.text"
-msgid "Points"
-msgstr "Tuqaalee"
+msgid "<bookmark_value>COMBIN function</bookmark_value><bookmark_value>number of combinations</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii COMBIN </bookmark_value><bookmark_value>lakkoofsa makaa</bookmark_value>"
-#: format_graphic.xhp
+#: 04060106.xhp
msgctxt ""
-"format_graphic.xhp\n"
-"par_id2480544\n"
+"04060106.xhp\n"
+"hd_id3155802\n"
+"273\n"
"help.text"
-msgid "<ahelp hid=\".\">Switches <emph>Edit Points</emph> mode for an inserted freeform line on and off.</ahelp>"
-msgstr "<ahelp hid=\".\">Banaa fi cufaa sarara unka akka feetee saagdef haalata <emph>Tuqaalee Gulaalaa</emph>Jijjiira bana.</ahelp>"
+msgid "COMBIN"
+msgstr "COMBIN"
-#: 06030900.xhp
+#: 04060106.xhp
msgctxt ""
-"06030900.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3156172\n"
+"274\n"
"help.text"
-msgid "Refresh Traces"
-msgstr "Hordoffii Haroomsi"
+msgid "<ahelp hid=\"HID_FUNC_KOMBINATIONEN\">Returns the number of combinations for elements without repetition.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KOMBINATIONEN\">lakkoofsa makaa tuutaaf osoo irra hin deebi'ini deebisa.</ahelp>"
-#: 06030900.xhp
+#: 04060106.xhp
msgctxt ""
-"06030900.xhp\n"
-"bm_id3152349\n"
+"04060106.xhp\n"
+"hd_id3156193\n"
+"275\n"
"help.text"
-msgid "<bookmark_value>cells; refreshing traces</bookmark_value><bookmark_value>traces; refreshing</bookmark_value><bookmark_value>updating;traces</bookmark_value>"
-msgstr "<bookmark_value>Man'eewwan; hordooffii haroomsuu</bookmark_value><bookmark_value>hordooffii;haroomsuu</bookmark_value><bookmark_value>ammayyomsu; hordoffii</bookmark_value>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 06030900.xhp
+#: 04060106.xhp
msgctxt ""
-"06030900.xhp\n"
-"hd_id3152349\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3150223\n"
+"276\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030900.xhp\" name=\"Refresh Traces\">Refresh Traces</link>"
-msgstr "<link href=\"text/scalc/01/06030900.xhp\" name=\"Refresh Traces\">Hordoffii Haroomsi</link>"
+msgid "COMBIN(Count1; Count2)"
+msgstr "COMBIN(Lakkaawwii1; Lakkaawwii2)"
-#: 06030900.xhp
+#: 04060106.xhp
msgctxt ""
-"06030900.xhp\n"
-"par_id3148947\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3150313\n"
+"277\n"
"help.text"
-msgid "<ahelp hid=\".uno:RefreshArrows\">Redraws all traces in the sheet. Formulas modified when traces are redrawn are taken into account.</ahelp>"
-msgstr "<ahelp hid=\".uno:RefreshArrows\">Hordoffii mara barruu keessatti lamkaasi. Yommuu hordooffiwwan hojii irra oolan, foormulaawwan ni haarefamu.</ahelp>"
+msgid "<emph>Count1</emph> is the number of items in the set."
+msgstr "<emph>Lakkaawwiin1</emph> lakkoofsa maalimaa tuutaa keessati."
-#: 06030900.xhp
+#: 04060106.xhp
msgctxt ""
-"06030900.xhp\n"
-"par_id3148798\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3153830\n"
+"278\n"
"help.text"
-msgid "Detective arrows in the document are updated under the following circumstances:"
-msgstr "Argamni xiyyoowwani galmee keesaa haloota armaan gadii irratti hunda'uun hareefama:"
+msgid "<emph>Count2</emph> is the number of items to choose from the set."
+msgstr "<emph>Lakkaawwii2</emph> lakkoofsa maalimaa tuuta irraa filamuudha."
-#: 06030900.xhp
+#: 04060106.xhp
msgctxt ""
-"06030900.xhp\n"
-"par_id3153192\n"
-"4\n"
+"04060106.xhp\n"
+"par_id6807458\n"
"help.text"
-msgid "Starting <emph>Tools - Detective - Update Refresh Traces</emph>"
-msgstr "<emph>Meeshaalee - Argama - Hordoffiiwwan Haroomsi Ammayyoomsi</emph> eegaluun"
+msgid "COMBIN returns the number of ordered ways to choose these items. For example if there are 3 items A, B and C in a set, you can choose 2 items in 3 different ways, namely AB, AC and BC."
+msgstr "COMBIN lakkoofsa karaa maamila filachuuf ta'u deebisa. Fakkeenyaaf, yoo maalimoonni 3 A, B fi C tuuta keessa jiraatan, maalimoota 2 karaa adda addaa 3 filachuu dandeessa, isaanis AB, AC fi BC dha."
-#: 06030900.xhp
+#: 04060106.xhp
msgctxt ""
-"06030900.xhp\n"
-"par_id3151041\n"
-"5\n"
+"04060106.xhp\n"
+"par_id7414471\n"
"help.text"
-msgid "If <emph>Tools - Detective - Update Automatically</emph> is turned on, every time formulas are changed in the document."
-msgstr "Yoo <emph>Meeshaalee - Argama - Ofumaan haaroomsi</emph> banamee,yeroo hundaa formulaawwan galmee keessa ni jijjiramu."
+msgid "COMBIN implements the formula: Count1!/(Count2!*(Count1-Count2)!)"
+msgstr "COMBIN foormulaa hojjoomuu: lakkaawwii1!/(lakkaawwii2!*(lakkaawwii1-lakkaawwii2)!)"
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3153171\n"
+"279\n"
"help.text"
-msgid "Edit Print Ranges"
-msgstr "Hangiiwwan Maxxansa Gulaali"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"hd_id3153088\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3153517\n"
+"280\n"
"help.text"
-msgid "Edit Print Ranges"
-msgstr "Hangiiwwan Maxxansa Gulaali"
+msgid "<item type=\"input\">=COMBIN(3;2)</item> returns 3."
+msgstr "<item type=\"input\">=COMBIN(3;2)</item> 3 deebisa."
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_id3159488\n"
-"2\n"
+"04060106.xhp\n"
+"bm_id3150284\n"
"help.text"
-msgid "<variable id=\"druckbereichetext\"><ahelp hid=\".uno:EditPrintArea\">Opens a dialog where you can specify the print range.</ahelp></variable> You can also set the rows or columns which are to be repeated in every page."
-msgstr "<variable id=\"druckbereichetext\"><ahelp hid=\".uno:EditPrintArea\">Qaaqa itti hangii maxxansa itti ifteessitu dandeessu bana.</ahelp></variable> Akkasumaas tarreewwan ykn tarjaawwan tokko tokkoo fuulaa keessatti deddebi'uu qindeeessuu dandeessa."
+msgid "<bookmark_value>COMBINA function</bookmark_value><bookmark_value>number of combinations with repetitions</bookmark_value>"
+msgstr "<bookmark_value>faankishinii COMBINA</bookmark_value><bookmark_value>lakkoofsa makaa irra deddeebii wajjin</bookmark_value>"
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_idN105AE\n"
+"04060106.xhp\n"
+"hd_id3150284\n"
+"282\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/guide/printranges.xhp#printranges\"/>"
-msgstr "<embedvar href=\"text/scalc/guide/printranges.xhp#printranges\"/>"
+msgid "COMBINA"
+msgstr "COMBINA"
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"hd_id3156281\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3157894\n"
+"283\n"
"help.text"
-msgid "Print range"
-msgstr "Hangii Maxxansaa"
+msgid "<ahelp hid=\"HID_FUNC_KOMBINATIONEN2\">Returns the number of combinations of a subset of items including repetitions.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KOMBINATIONEN2\">Lakkoofsa makaa maalimaa cita tuutaa irra deebii dabalatee deebisa.</ahelp>"
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_id3147228\n"
-"4\n"
+"04060106.xhp\n"
+"hd_id3145752\n"
+"284\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_PRINTAREA\">Allows you to modify a defined print range.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_PRINTAREA\">Hangii Maxxansaa ramadaee akka foyyeesituu si heeyyama.</ahelp>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_id3145174\n"
-"5\n"
+"04060106.xhp\n"
+"par_id3145765\n"
+"285\n"
"help.text"
-msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
-msgstr "Wardii ammaaf hangii maxxansa ramadamee haquuf <emph>-Homaa-</emph> fili.Wardii ammaa akkaa hangii maxxansatti qindeessuuf <emph>-wardii waamaraa-</emph> fili. Bakka wardiin filame akkaa hangii maxxansatti ramaduuf <emph>-Filannoo-</emph> fili.<emph>-Hiika Fayyadamaa-</emph> filuun, akka duraa ajaja <emph>Dhangii - hangiiwwan maxxansuu - ramadi</emph> fayyadamteen hangii maxxansaa ramaduu dandeessa.Yoo maqaan hangii ajaja <emph>Saagi - Maqoota - Hiiki</emph> fayyadamuun kenname,maqaan kun agarsifamun sanduuqa tarree keessa filamu danda'a."
+msgid "COMBINA(Count1; Count2)"
+msgstr "COMBINA(Lakkaawwii1;Lakkaawwii2)"
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_id3145272\n"
-"6\n"
+"04060106.xhp\n"
+"par_id3153372\n"
+"286\n"
"help.text"
-msgid "In the right-hand text box, you can enter a print range by reference or by name. If the cursor is in the <emph>Print range</emph> text box, you can also select the print range in the spreadsheet with your mouse."
-msgstr "Harkaa mirgaa sanduuqa barruutti,maqaan ykn wabiin hangii maxxansa galchuu dandeessa.Yoo qareen sanduuqa barruu<emph>Hangii Maxxansa</emph> keessa taate,hantuutee keetiin wardii keessatti hangii maxxansa filachuu dandessa."
+msgid "<emph>Count1</emph> is the number of items in the set."
+msgstr "<emph>Lakkaawwiin1</emph> lakkoofsa maalimaa tuutaa keessati."
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"hd_id3149260\n"
-"7\n"
+"04060106.xhp\n"
+"par_id3155544\n"
+"287\n"
"help.text"
-msgid "Rows to repeat"
-msgstr "Tarrewwan irradeebi'amuu"
+msgid "<emph>Count2</emph> is the number of items to choose from the set."
+msgstr "<emph>Lakkaawwii2</emph> lakkoofsa maalimaa tuuta irraa filamuudha."
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_id3147426\n"
-"8\n"
+"04060106.xhp\n"
+"par_id1997131\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATROW\">Choose one or more rows to print on every page. In the right text box enter the row reference, for example, \"1\" or \"$1\" or \"$2:$3\".</ahelp> The list box displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating row."
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATROW\">Tokko tokko fuulaa irratti maxxansuuf tarrewwan tokko ykn isaa olii fili. Sanduuqa barruu sirrii keeessatti wabii tarree galchii, fakkeenyaaf, \"1\" ykn \"$1\" ykn \"$2:$3\".</ahelp> sanduuqni tarree <emph>-Hiika Fayyadamaa-</emph> agarsiisa. Akkaasumaas tarree deddebi'aa hiikamee haquuf<emph>-homa-</emph> filachuu dandeessa."
+msgid "COMBINA returns the number of unique ways to choose these items, where the order of choosing is irrelevant, and repetition of items is allowed. For example if there are 3 items A, B and C in a set, you can choose 2 items in 6 different ways, namely AA, AB, AC, BB, BC and CC."
+msgstr "COMBINA lakkoofsa karaa maalimoota kana filatu, iddoo tartiibni filachuu barbaachisu deebisa, achiin irradeebiin maalimoota ni eyyamama. Fakkeenyaf, yoo maalimoonni 3 A, B fi Cn tuuta keessa jiratan, maalimoota 2 karaa adda addaa 6 filachuu dandeessa, isaanis AB, BA, AC, CA, BC fi CB dha."
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_id3155418\n"
-"9\n"
+"04060106.xhp\n"
+"par_id2052064\n"
"help.text"
-msgid "You can also define repeating rows by dragging the mouse in the spreadsheet, if the cursor is in the <emph>Rows to repeat</emph> text field in the dialog."
-msgstr "Akkasumas wardii irraa hantuutee harkisuun tarreewwaan deddebi'aa hikamee ramaduu dandeessa,yoo qareen qaaqa dirree barruu<emph>Tarrewwan irradeebi'amuu</emph> keessa taate."
+msgid "COMBINA implements the formula: (Count1+Count2-1)! / (Count2!(Count1-1)!)"
+msgstr "COMBINA foormulaa hojjoomuu: (lakkaawwii1+lakkaawwii2-1)! /(lakkaawwii2! (lakkaawwii1-1)!)"
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"hd_id3149581\n"
-"10\n"
+"04060106.xhp\n"
+"hd_id3154584\n"
+"288\n"
"help.text"
-msgid "Columns to repeat"
-msgstr "Tarjaawwan irradeebi'amuu"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_id3155602\n"
-"11\n"
+"04060106.xhp\n"
+"par_id3152904\n"
+"289\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATCOL\">Choose one or more columns to print on every page. In the right text box enter the column reference, for example, \"A\" or \"AB\" or \"$C:$E\".</ahelp> The list box then displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating column."
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATCOL\">Tokko tokko fuulaa irratti maxxansuuf tarjaawwan tokko ykn isaa olii filiSanduuqa barruu sirrii keeessatti wabii tarjaa galchii,fakkeenyaaf,\"A\" ykn \"AB\" ykn \"$c:$E\".</ahelp> Sanduuqni tarjaa <emph>-Hiika Fayyadamaa-</emph> agarsiisa.Akkaasumaas tarjaa deddebi'aa hiikamee haquuf<emph>-homa-</emph> filachuu dandeessa"
+msgid "<item type=\"input\">=COMBINA(3;2)</item> returns 6."
+msgstr "<item type=\"input\">=COMBINA(3;2)</item> 6 deebisa."
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_id3150749\n"
-"12\n"
+"04060106.xhp\n"
+"bm_id3156086\n"
"help.text"
-msgid "You can also define repeating columns by dragging the mouse in the spreadsheet, if the cursor is in the <emph>Columns to repeat</emph> text field in the dialog."
-msgstr "Akkasumas wardii irraa hantuutee harkisuun tarjaawwaan deddebi'aa hikamee ramaduu dandeessa,yoo qareen qaaqa dirree barruu<emph>tarjaawwan irradeebi'amuu</emph> keessa taate."
+msgid "<bookmark_value>TRUNC function</bookmark_value><bookmark_value>decimal places;cutting off</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii TRUNC </bookmark_value><bookmark_value>iddoo deesimaalii;muruu</bookmark_value>"
-#: 05060000.xhp
+#: 04060106.xhp
msgctxt ""
-"05060000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3156086\n"
+"291\n"
"help.text"
-msgid "Merge and Center Cells"
-msgstr ""
+msgid "TRUNC"
+msgstr "TRUNC"
-#: 05060000.xhp
+#: 04060106.xhp
msgctxt ""
-"05060000.xhp\n"
-"hd_id3149785\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3157866\n"
+"292\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05060000.xhp\" name=\"Merge and Center Cells\">Merge and Center Cells</link>"
-msgstr ""
+msgid "<ahelp hid=\"HID_FUNC_KUERZEN\">Truncates a number by removing decimal places.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KUERZEN\">Iddoo deesimaalii irraa kutuudhaan lakkoofsa gabaabsa.</ahelp>"
-#: 05060000.xhp
+#: 04060106.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3151246\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3148499\n"
+"293\n"
"help.text"
-msgid "<ahelp hid=\".\">Combines the selected cells into a single cell or splits merged cells. Aligns cell content centered.</ahelp>"
-msgstr ""
+msgid "Syntax"
+msgstr "Caasima"
-#: 05060000.xhp
+#: 04060106.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3154020\n"
-"18\n"
+"04060106.xhp\n"
+"par_id3148511\n"
+"294\n"
"help.text"
-msgid "Choose <emph>Format - Merge Cells - Merge and Center Cells</emph>"
-msgstr ""
+msgid "TRUNC(Number; Count)"
+msgstr "TRUNC(Lakkoofsa;lakkaa'uu)"
-#: 05060000.xhp
+#: 04060106.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3148552\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3150796\n"
+"295\n"
"help.text"
-msgid "The merged cell receives the name of the first cell of the original cell range. Merged cells cannot be merged a second time with other cells. The range must form a rectangle, multiple selection is not supported."
-msgstr "Man'een makamee maqaa jalqaba man'ee kan hangii man'ee xabboo fudha.Man'eewwan makaman man'eewwan gara biraa waliin lammata hin makaman.Hangiin dirqiin reektaangilii keessaa ta'uu qaba,filannoowwan baay'een hin deeggaramu."
+msgid "Returns <emph>Number</emph> with at most <emph>Count</emph> decimal places. Excess decimal places are simply removed, irrespective of sign."
+msgstr "Lakkoofsa<emph>iddoo deesimaalii</emph> isa guddaa<emph>lakkaa'u</emph> deebisa.Iddoon deesimaalaa irra darbaan mallattoo osoo ilaalcha keessa hin galchin calisee murama."
-#: 05060000.xhp
+#: 04060106.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3149665\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3150816\n"
+"296\n"
"help.text"
-msgid "If the cells to be merged have any contents, a security dialog is shown."
-msgstr "Yoo man'eewwan makaman qabeentota hamma fedhe qabaatanii,qaaqni ittisaa ni agarsiifama."
+msgid "<item type=\"literal\">TRUNC(Number; 0)</item> behaves as <item type=\"literal\">INT(Number)</item> for positive numbers, but effectively rounds towards zero for negative numbers."
+msgstr "<item type=\"literal\">TRUNC(Lakkoofsa; 0)</item> lakkoofsota posotiiviitiif akka <item type=\"literal\">INT(Lakkoofsa)</item> bakka bu'a,garuu lakkoofsota negatiiviitiif haala gaariin gara zeerootti siqa."
-#: 05060000.xhp
+#: 04060106.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3153718\n"
+"04060106.xhp\n"
+"par_id3148548\n"
+"557\n"
"help.text"
-msgid "Merging cells can lead to calculation errors in formulas in the table."
+msgid "The <emph>visible</emph> decimal places of the result are specified in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - Calculate</link>."
msgstr ""
-#: 12040000.xhp
-msgctxt ""
-"12040000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Filter"
-msgstr "Gingilchaa"
-
-#: 12040000.xhp
-msgctxt ""
-"12040000.xhp\n"
-"hd_id3150767\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12040000.xhp\" name=\"Filter\">Filter</link>"
-msgstr "<link href=\"text/scalc/01/12040000.xhp\" name=\"Filter\">Gingilchaa</link>"
-
-#: 12040000.xhp
-msgctxt ""
-"12040000.xhp\n"
-"par_id3155131\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Shows commands to filter your data.</ahelp>"
-msgstr "<ahelp hid=\".\">deetaa kee gingilchuuf ajajawwan agarsiisa.</ahelp>"
-
-#: 12040000.xhp
-msgctxt ""
-"12040000.xhp\n"
-"par_id3146119\n"
-"7\n"
-"help.text"
-msgid "$[officename] automatically recognizes predefined database ranges."
-msgstr "$[officename]n hammangaawwan kuusa deetaa dura hiikaman ofumaan addabaasa."
-
-#: 12040000.xhp
-msgctxt ""
-"12040000.xhp\n"
-"par_id3153363\n"
-"3\n"
-"help.text"
-msgid "The following filtering options are available:"
-msgstr "Filannoowwan gingilchaa armaan gadi jiru:"
-
-#: 12040000.xhp
-msgctxt ""
-"12040000.xhp\n"
-"hd_id3153728\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Standard filter\">Standard filter</link>"
-msgstr "<link href=\"text/shared/02/12090000.xhp\" name=\"Standard filter\">Gingilchaa waltiina</link>"
-
-#: 12040000.xhp
-msgctxt ""
-"12040000.xhp\n"
-"hd_id3159153\n"
-"5\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced filter\">Advanced filter</link>"
-msgstr "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced filter\">Gingilchaa ol'aanaa</link>"
-
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"tit\n"
-"help.text"
-msgid "Options"
-msgstr "Dirqalaalee"
-
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"hd_id3149119\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"Options\">Options</link>"
-msgstr "<link href=\"text/scalc/01/12090104.xhp\" name=\"Options\">Dirqalaalee</link>"
-
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"par_id3147102\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"zusaetzetext\"><ahelp hid=\"\" visibility=\"visible\">Displays or hides additional filtering options.</ahelp></variable>"
-msgstr "<variable id=\"zusaetzetext\"><ahelp hid=\"\" visibility=\"visible\">Dirqalaalee gingilchaa dabalataa agarsiisa ykn dhoksa.</ahelp></variable>"
-
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"hd_id3147008\n"
-"3\n"
-"help.text"
-msgid "Options"
-msgstr "Dirqalaalee"
-
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"hd_id3153662\n"
-"5\n"
-"help.text"
-msgid "Case sensitive"
-msgstr "Qub-suukanaawaa"
-
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"par_id3145673\n"
-"6\n"
-"help.text"
-msgid "Distinguishes between uppercase and lowercase letters."
-msgstr "Qubeewwan gugudddaa fi xixiqqaa adda baasa."
-
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"hd_id3156327\n"
-"7\n"
+"04060106.xhp\n"
+"hd_id3152555\n"
+"297\n"
"help.text"
-msgid "Regular Expression"
-msgstr "Himannoo Idilee"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"par_id3151245\n"
-"8\n"
+"04060106.xhp\n"
+"par_id3152569\n"
+"298\n"
"help.text"
-msgid "Allows you to use wildcards in the filter definition."
-msgstr "Hiikaa gingilchaa kessatti turbaawwan abbaalaa akka fayyaadamtu sii heyyama."
+msgid "<item type=\"input\">=TRUNC(1.239;2)</item> returns 1.23. The 9 is lost."
+msgstr "<item type=\"input\">=TRUNC(1.239;2)</item> 1.23 deebisa.9 ni bada."
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"par_id3147264\n"
-"29\n"
+"04060106.xhp\n"
+"par_id7050080\n"
"help.text"
-msgid "If the <emph>Regular Expression</emph> check box is selected, you can use EQUAL (=) and NOT EQUAL (<>) also in comparisons. You can also use the following functions: DCOUNTA, DGET, MATCH, COUNTIF, SUMIF, LOOKUP, VLOOKUP and HLOOKUP."
-msgstr "Yoo sanduuqni filanoo<emph>Himannoo Idilee</emph> filame, wal madalchisuu keessatti EQUAL (=) ykn NOT EQUAL (<>) fayyadamuu dandeessa.Akkssumas fankishinoota: DCOUNTA, DGET, MATCH, COUNTIF, SUMIF, LOOKUP, VLOOKUP and HLOOKUP fayyadamuu dandeessa."
+msgid "<item type=\"input\">=TRUNC(-1.234999;3)</item> returns -1.234. All the 9s are lost."
+msgstr "<item type=\"input\">=TRUNC(-1.234999;3)</item> -1.234 deebisa.Lakkoofsi 9 hunduu ni badu."
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"hd_id3153379\n"
-"30\n"
+"04060106.xhp\n"
+"bm_id3153601\n"
"help.text"
-msgid "Unique records only"
-msgstr "Kuusaawwan addataa qofa"
+msgid "<bookmark_value>LN function</bookmark_value><bookmark_value>natural logarithm</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii LN</bookmark_value><bookmark_value>logaarizimii uumamaa</bookmark_value>"
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"par_id3154138\n"
-"31\n"
+"04060106.xhp\n"
+"hd_id3153601\n"
+"301\n"
"help.text"
-msgid "Excludes duplicate rows in the list of filtered data."
-msgstr "Tarreewwan deetaa gingilfamanii keessaa bayyisuu tarreewwani dhiisa."
+msgid "LN"
+msgstr "LN"
-#: 12090104.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"hd_id3156282\n"
-"32\n"
+"04060106.xhp\n"
+"par_id3154974\n"
+"302\n"
"help.text"
-msgid "Data area"
-msgstr "Iddoo Deetaa"
+msgid "<ahelp hid=\"HID_FUNC_LN\">Returns the natural logarithm based on the constant e of a number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+msgstr "<ahelp hid=\"HID_FUNC_LN\">Lakkoofsa dhaabataa e irratti hundaa'udhaan logaarizimii uumamaa deebisa.</ahelp> e dhaabataa tilmaamaa gatii 2.71828182845904 qaba."
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"par_id3150768\n"
-"33\n"
+"04060106.xhp\n"
+"hd_id3154993\n"
+"303\n"
"help.text"
-msgid "Displays the name of the filtered data area in the table."
-msgstr "Gabatee keessaa deetaa gingilfamee agarsiisa."
+msgid "Syntax"
+msgstr "Caasima"
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"hd_id3156424\n"
-"34\n"
+"04060106.xhp\n"
+"par_id3155284\n"
+"304\n"
"help.text"
-msgid "More<<"
-msgstr "Dabala<<"
+msgid "LN(Number)"
+msgstr "LN(Lakkoofsa)"
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"par_id3125864\n"
-"35\n"
+"04060106.xhp\n"
+"par_id3155297\n"
+"305\n"
"help.text"
-msgid "Hides the additional options."
-msgstr "Dirqalaalee dabaltaa dhoksa."
+msgid "<emph>Number</emph> is the value whose natural logarithm is to be calculated."
+msgstr "<emph>Lakkoofsi</emph> gatii logaarizimiin uumamaa shallagamuudha."
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"par_id3154011\n"
+"04060106.xhp\n"
+"hd_id3153852\n"
+"306\n"
"help.text"
-msgid "<link href=\"text/shared/01/02100001.xhp\" name=\"List of Regular Expressions\">List of Regular Expressions</link>"
-msgstr "<link href=\"text/shared/01/02100001.xhp\" name=\"List of Regular Expressions\">Tarree Himannoowwan Idilee</link>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 05040000.xhp
+#: 04060106.xhp
msgctxt ""
-"05040000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3153866\n"
+"307\n"
"help.text"
-msgid "Column"
-msgstr "Tarjaa"
+msgid "<item type=\"input\">=LN(3)</item> returns the natural logarithm of 3 (approximately 1.0986)."
+msgstr "<item type=\"input\">=LN(3)</item> logaarizimii uumaamaa kan 3 tilmaamaan 1.0986 ta'a."
-#: 05040000.xhp
+#: 04060106.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3155628\n"
-"1\n"
+"04060106.xhp\n"
+"par_id5747245\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05040000.xhp\" name=\"Column\">Column</link>"
-msgstr "<link href=\"text/scalc/01/05040000.xhp\" name=\"Column\">Tarjaa</link>"
+msgid "<item type=\"input\">=LN(EXP(321))</item> returns 321."
+msgstr "<item type=\"input\">=LN(EXP(321))</item>321 deebisa."
-#: 05040000.xhp
+#: 04060106.xhp
msgctxt ""
-"05040000.xhp\n"
-"par_id3148946\n"
-"2\n"
+"04060106.xhp\n"
+"bm_id3109813\n"
"help.text"
-msgid "<ahelp hid=\".\">Sets the column width and hides or shows selected columns.</ahelp>"
-msgstr "<ahelp hid=\".\">Dagaleen tarjaa fi dhokataan ykn tarjaa filame kan mul'suu qindeesa.</ahelp>"
+msgid "<bookmark_value>LOG function</bookmark_value><bookmark_value>logarithms</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii LOG </bookmark_value><bookmark_value>loogaariizimii</bookmark_value>"
-#: 05040000.xhp
+#: 04060106.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3150398\n"
-"3\n"
+"04060106.xhp\n"
+"hd_id3109813\n"
+"311\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Width\">Width</link>"
-msgstr "<link href=\"text/shared/01/05340200.xhp\" name=\"Width\">Dagalee</link>"
+msgid "LOG"
+msgstr "LOG"
-#: 05040000.xhp
+#: 04060106.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3145171\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3109841\n"
+"312\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal Width\">Optimal Width</link>"
-msgstr "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal Width\">Dagalee murta'aa</link>"
+msgid "<ahelp hid=\"HID_FUNC_LOG\">Returns the logarithm of a number to the specified base.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LOG\">Logaarizimii lakkoofsaa gara beezii beekamaatti deebisa.</ahelp>"
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3144719\n"
+"313\n"
"help.text"
-msgid "Fill"
-msgstr "Guutaa"
+msgid "Syntax"
+msgstr "Caasima"
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"bm_id8473769\n"
+"04060106.xhp\n"
+"par_id3144732\n"
+"314\n"
"help.text"
-msgid "<bookmark_value>filling;selection lists</bookmark_value> <bookmark_value>selection lists;filling cells</bookmark_value>"
-msgstr "<bookmark_value>guutuu;tarreewwan filannoo</bookmark_value> <bookmark_value>tarreewwan filannoo;man'eewwan guutuu</bookmark_value>"
+msgid "LOG(Number; Base)"
+msgstr "LOG(Lakkoofsa;Beezii)"
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"hd_id3153876\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3144746\n"
+"315\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02140000.xhp\" name=\"Fill\">Fill</link>"
-msgstr "<link href=\"text/scalc/01/02140000.xhp\" name=\"Fill\">Guuti</link>"
+msgid "<emph>Number</emph> is the value whose logarithm is to be calculated."
+msgstr "<emph>Lakkoofsi</emph> gatii logaarizimiin uumamaa shallagamuudha."
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3156285\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3152840\n"
+"316\n"
"help.text"
-msgid "<ahelp hid=\".\">Automatically fills cells with content.</ahelp>"
-msgstr "<ahelp hid=\".\">Man'ee qabeentaadhaan ofumaa guuta</ahelp>"
+msgid "<emph>Base</emph> (optional) is the base for the logarithm calculation. If omitted, Base 10 is assumed."
+msgstr "<emph>Beeziin</emph> beezii logaariizimii shallaguudhaaf ta'uudha. Yoo dhiifame, Baazii 10 yaadama."
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3147343\n"
-"9\n"
+"04060106.xhp\n"
+"hd_id3152860\n"
+"317\n"
"help.text"
-msgid "The $[officename] Calc context menus have <link href=\"text/scalc/01/02140000.xhp\" name=\"other options\">additional options</link> for filling the cells."
-msgstr "Baafatni $[officename] halqara Calc <link href=\"text/scalc/01/02140000.xhp\" name=\"other options\">man'ee guutuuf</link> filannoo dabalataa qaba."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"hd_id3149207\n"
-"7\n"
+"04060106.xhp\n"
+"par_id3154429\n"
+"318\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02140500.xhp\" name=\"Sheet\">Sheet</link>"
-msgstr "<link href=\"text/scalc/01/02140500.xhp\" name=\"Sheet\">Wardii</link>"
+msgid "<item type=\"input\">=LOG(10;3)</item> returns the logarithm to base 3 of 10 (approximately 2.0959)."
+msgstr "<item type=\"input\">=LOG(10;3)</item> logaariizimii gara beezii 3 kan 10 (tilmaamaan 2.0959) deebisa."
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"hd_id3155111\n"
-"8\n"
+"04060106.xhp\n"
+"par_id5577562\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02140600.xhp\" name=\"Rows\">Series</link>"
-msgstr "<link href=\"text/scalc/01/02140600.xhp\" name=\"Rows\">Tarreewwan</link>"
+msgid "<item type=\"input\">=LOG(7^4;7)</item> returns 4."
+msgstr "<item type=\"input\">=LOG(7^4;7)</item> 4 deebsa."
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3152994\n"
-"3\n"
+"04060106.xhp\n"
+"bm_id3154187\n"
"help.text"
-msgid "<emph>Filling cells using context menus:</emph>"
-msgstr "<emph>Baafatoota halqaraa fayyadamuun man'ee guutuu:</emph>"
+msgid "<bookmark_value>LOG10 function</bookmark_value><bookmark_value>base-10 logarithm</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii LOG10 </bookmark_value><bookmark_value>logaarizimii beezii-10 </bookmark_value>"
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3145384\n"
-"4\n"
+"04060106.xhp\n"
+"hd_id3154187\n"
+"322\n"
"help.text"
-msgid "Call the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> when positioned in a cell and choose <emph>Selection List</emph>."
-msgstr "Baafata halqaraa <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">man'ee keessa</link> yeroo qubatu waamiiti <emph> Tarree Filannoo</emph>filadhu."
+msgid "LOG10"
+msgstr "LOG10"
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3156450\n"
-"5\n"
+"04060106.xhp\n"
+"par_id3155476\n"
+"323\n"
"help.text"
-msgid "<ahelp hid=\".uno:DataSelect\">A list box containing all text found in the current column is displayed.</ahelp> The text is sorted alphabetically and multiple entries are listed only once."
-msgstr "<ahelp hid=\".uno:DataSelect\">Sanduuqni tarree barruu tarjaa ammee keessatti argaman hunda qabatu ni mul'ata.</ahelp> Barruun ABdhaan tartiiba qabata,galiinsi hedduun al takka qofa tartiibawu."
+msgid "<ahelp hid=\"HID_FUNC_LOG10\">Returns the base-10 logarithm of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LOG10\">lakkoofsaa logaarizimii beezii-10 deebisa.</ahelp>"
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3148699\n"
-"6\n"
+"04060106.xhp\n"
+"hd_id3155494\n"
+"324\n"
"help.text"
-msgid "Click one of the listed entries to copy it to the cell."
-msgstr "Man'ee irratti isa garagalchuuf galiinsa tarraa'e keessaa tokkoo isaa cuqaasi."
+msgid "Syntax"
+msgstr "Caasima"
-#: 06030000.xhp
+#: 04060106.xhp
msgctxt ""
-"06030000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3159294\n"
+"325\n"
"help.text"
-msgid "Detective"
-msgstr "Argama"
+msgid "LOG10(Number)"
+msgstr "LOG10(Lakkoofsa)"
-#: 06030000.xhp
+#: 04060106.xhp
msgctxt ""
-"06030000.xhp\n"
-"bm_id3151245\n"
+"04060106.xhp\n"
+"par_id3159308\n"
+"326\n"
"help.text"
-msgid "<bookmark_value>cell links search</bookmark_value> <bookmark_value>searching; links in cells</bookmark_value> <bookmark_value>traces;precedents and dependents</bookmark_value> <bookmark_value>Formula Auditing,see Detective</bookmark_value> <bookmark_value>Detective</bookmark_value>"
-msgstr ""
+msgid "Returns the logarithm to base 10 of <emph>Number</emph>."
+msgstr "Logaarizimii gara lakkoofsa beezii-10 <emph> ti deebisa</emph>."
-#: 06030000.xhp
+#: 04060106.xhp
msgctxt ""
-"06030000.xhp\n"
-"hd_id3151245\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3159328\n"
+"327\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030000.xhp\" name=\"Detective\">Detective</link>"
-msgstr "<link href=\"text/scalc/01/06030000.xhp\" name=\"Detective\">Argama</link>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 06030000.xhp
+#: 04060106.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3151211\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3157916\n"
+"328\n"
"help.text"
-msgid "This command activates the Spreadsheet Detective. With the Detective, you can trace the dependencies from the current formula cell to the cells in the spreadsheet."
-msgstr "Ajajnii kun Argama Wardii kakaasa. Argama kanan, hirkattoota man'ee formulaa ammaa irraa man'eewwan wardii sakkatta'u dandeessa."
+msgid "<item type=\"input\">=LOG10(5)</item> returns the base-10 logarithm of 5 (approximately 0.69897)."
+msgstr "<item type=\"input\">=LOG10(5)</item> logaarizimii 5 beezii-10 tilmaamaan 0.69897 deebisa."
-#: 06030000.xhp
+#: 04060106.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3150447\n"
-"3\n"
+"04060106.xhp\n"
+"bm_id3152518\n"
"help.text"
-msgid "Once you have defined a trace, you can point with the mouse cursor to the trace. The mouse cursor will change its shape. Double-click the trace with this cursor to select the referenced cell at the end of the trace."
-msgstr "Yoo altokkoo hordoffii hiiktee, qaree hantuutteetin hordooffii agarsiisu dandeessa. Qareen hantuuttee boca isaa ni jijjira. Man'een wabeefamee dhuma irratti Sakatta'uuf hordoffii qaree lamacuqaasi."
+msgid "<bookmark_value>CEILING function</bookmark_value><bookmark_value>rounding;up to multiples of significance</bookmark_value>"
+msgstr "<bookmark_value>faankishinii CEILING </bookmark_value><bookmark_value>siiqsuu;haga hirmaannee siignifikaantii</bookmark_value>"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3152518\n"
+"332\n"
"help.text"
-msgid "Text to Columns"
-msgstr "Barruu gara Tarjaawwanitti"
+msgid "CEILING"
+msgstr "CEILING"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"bm_id8004394\n"
+"04060106.xhp\n"
+"par_id3153422\n"
+"558\n"
"help.text"
-msgid "<bookmark_value>text to columns</bookmark_value>"
-msgstr "<bookmark_value>barruu gara tarjaawwanitti</bookmark_value>"
+msgid "<ahelp hid=\"HID_FUNC_OBERGRENZE\">Rounds a number up to the nearest multiple of Significance.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_OBERGRENZE\">Lakkoofsa haga hirmaannee siignifikaantii itti dhinootti siqsa.</ahelp>"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"hd_id2300180\n"
+"04060106.xhp\n"
+"hd_id3153440\n"
+"334\n"
"help.text"
-msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
-msgstr "<link href=\"text/scalc/01/text2columns.xhp\">Barru gara Tarjaawwanitti</link>"
+msgid "Syntax"
+msgstr "Caasima"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id655232\n"
+"04060106.xhp\n"
+"par_id3153454\n"
+"335\n"
"help.text"
-msgid "<variable id=\"text2columns\">Opens the Text to Columns dialog, where you enter settings to expand the contents of selected cells to multiple cells. </variable>"
-msgstr "<variable id=\"text2columns\">Qaaqa Barruu gara Tarjaawwanitti bana,iddoo itti qinda'inoota galchuudhaan qabiiyyeewwaan man'eewwaan filatamanii gara man'eewwaan baay'eetti babal'atani dha. </variable>"
+msgid "CEILING(Number; Significance; Mode)"
+msgstr "CEILING(Lakkoofsa;siignifikaantii;Moodii)"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"hd_id9599597\n"
+"04060106.xhp\n"
+"par_id3153467\n"
+"336\n"
"help.text"
-msgid "To expand cell contents to multiple cells"
-msgstr "Qabiyyeewwaan man'ee gara man'ee baay'eetti babal'isuuf"
+msgid "<emph>Number</emph> is the number that is to be rounded up."
+msgstr "<emph>Lakkoofsi</emph> lakkoofsa ol siiqfamuudha."
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id2021546\n"
+"04060106.xhp\n"
+"par_id3155000\n"
+"337\n"
"help.text"
-msgid "You can expand cells that contain comma separated values (CSV) into multiple cells in the same row."
-msgstr "Tarree walfakkaata keessatti gatii qodduun addan qoodaman gara man'eewwan baay'eetti babal'isuu ni dandeessa."
+msgid "<emph>Significance</emph> is the number to whose multiple the value is to be rounded up."
+msgstr "<emph>siignifikaantiin</emph> lakkoofsa hirmaanneen gatii isaa ol siiqfameedha."
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id2623981\n"
+"04060106.xhp\n"
+"par_id3155020\n"
+"559\n"
"help.text"
-msgid "For example, cell A1 contains the comma separated values <item type=\"literal\">1,2,3,4</item>, and cell A2 contains the text <item type=\"literal\">A,B,C,D</item>."
-msgstr "Fakkeenyaaf,man'een A1 gatii qoodduun qoodamaan<item type=\"literal\">1,2,3,4</item>,fi man'ee barruu A2 <item type=\"literal\">A,B,C,D</item> of keessaa qaba."
+msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of Number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter."
+msgstr "<emph>Moodiin</emph> gatii diirqalaati.Yoo gatiin moodii kenname fi zeeroodhaan walqixa hin taane,fi yoo lakkoofsi fi siignifikaansiin negatiivii ta'an,gatsirrii lakkoofsaa irratti hundaa'udhaan siiqsuun ta'a.Jijjiiramaan kun akka Excel tti gara MS Excel yeroo alergamu irradarbama,jijjiiramaa sadaffaa hin beeku."
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id7242042\n"
+"04060106.xhp\n"
+"par_id3163792\n"
+"629\n"
"help.text"
-msgid "Select the cell or cells that you want to expand."
-msgstr "Man'ee ykn man'eewwan babal'isuu barbaaddu filadhu."
+msgid "If both parameters Number and Significance are negative and the Mode value is equal to zero or is not given, the results in $[officename] and Excel will differ after the import has been completed. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc."
+msgstr "Yoo lakkoofsi jijjiiramaa fi siignifikaansiin lachuu negatiifii ta'an fi gatiin moodii zeeroodhaan walqixa ta'an ykn yoo hin kennamne,firiin %[officename] fi Exseeliin adda ta'a edda alaaguun dhumeen booda.Yoo wardii gara Exseelitti alerginu,firii walfakkaatu EXseelii calc keessatti ilaaluuf, Moodii=1 fayyadami."
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id6999420\n"
+"04060106.xhp\n"
+"hd_id3145697\n"
+"338\n"
"help.text"
-msgid "Choose <emph>Data - Text to Columns</emph>."
-msgstr "<emph>Daataa-Barruu gara Tarjaawwanitti</emph> fili."
+msgid "Example"
+msgstr "Fakkeenya"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id6334116\n"
+"04060106.xhp\n"
+"par_id3145710\n"
+"339\n"
"help.text"
-msgid "You see the Text to Columns dialog."
-msgstr "Qaaqa barruu gara tarjaawwanittitti argita."
+msgid "<item type=\"input\">=CEILING(-11;-2)</item> returns -10"
+msgstr "<item type=\"input\">=CEILING(-11;-2)</item> -10 deebisa."
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id9276406\n"
+"04060106.xhp\n"
+"par_id3145725\n"
+"340\n"
"help.text"
-msgid "Select the separator options. The preview shows how the current cell contents will be transformed into multiple cells."
-msgstr "Filaannoowwan gargareessaa filadhu.Durargiin akkaata man'een ammaa garaa man'eewwaan baay'eettii itti muxatan agarsiisa."
+msgid "<item type=\"input\">=CEILING(-11;-2;0)</item> returns -10"
+msgstr "<item type=\"input\">=CEILING(-11;-2;0)</item> -10 deebisa"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id8523819\n"
+"04060106.xhp\n"
+"par_id3145740\n"
+"341\n"
"help.text"
-msgid "You can select a fixed width and then click the ruler on the preview to set cell breakup positions."
-msgstr "Baal'inaa murta'aa filadhuu, itti aansun sarartuu duraargii irra jiru cuqasuun iddoo addaan kukutinsaa man'ee qindeessuu dandeessa."
+msgid "<item type=\"input\">=CEILING(-11;-2;1)</item> returns -12"
+msgstr "<item type=\"input\">=CEILING(-11;-2;1)</item> -12 deebisa"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id1517380\n"
+"04060106.xhp\n"
+"bm_id3157762\n"
"help.text"
-msgid "You can select or enter separator characters to define the positions of breaking points. The separator characters are removed from the resulting cell contents."
-msgstr "Bakka tuqaa kukutinsaa arfiilee gargaaressaa filuu ykn galchuu dandeessa. Bu'aa qabiiyyeewwaan man'ee keessaa arfiileen gargaaressaa ni haqamu."
+msgid "<bookmark_value>PI function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii PI </bookmark_value>"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id7110812\n"
+"04060106.xhp\n"
+"hd_id3157762\n"
+"343\n"
"help.text"
-msgid "In the example, you select the comma as a delimiter character. Cells A1 and A2 will be expanded to four columns each. A1 contains 1, B1 contains 2, and so on."
-msgstr "Fakkeenyaa irratti, qoodduu akka arfiilee addaan citinsaatti filatte. Man'eewwaan A1 fi A2 nin gara tarjaawwan afuriitti babal'achuu danda'u. A1 nin 1 qaba, A2'n 2 qaba fi akka kanaan ittin fufa."
+msgid "PI"
+msgstr "PI"
-#: 06031000.xhp
+#: 04060106.xhp
msgctxt ""
-"06031000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3157790\n"
+"344\n"
"help.text"
-msgid "AutoRefresh"
-msgstr "OfiinHaroomsaa"
+msgid "<ahelp hid=\"HID_FUNC_PI\">Returns 3.14159265358979, the value of the mathematical constant PI to 14 decimal places.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_PI\">Gatii herreegaa dhaabataa PI gara iddoo deesimaalaa 3.14159265358979 deebisa.</ahelp>"
-#: 06031000.xhp
+#: 04060106.xhp
msgctxt ""
-"06031000.xhp\n"
-"bm_id3154515\n"
+"04060106.xhp\n"
+"hd_id3157809\n"
+"345\n"
"help.text"
-msgid "<bookmark_value>cells; autorefreshing traces</bookmark_value><bookmark_value>traces; autorefreshing</bookmark_value>"
-msgstr "<bookmark_value>Man'eewwan; hordoffii ofiinharoomsa</bookmark_value><bookmark_value>Hordoffiiwwan; ofiinhaaroomsa</bookmark_value>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 06031000.xhp
+#: 04060106.xhp
msgctxt ""
-"06031000.xhp\n"
-"hd_id3154515\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3157822\n"
+"346\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06031000.xhp\" name=\"AutoRefresh\">AutoRefresh</link>"
-msgstr "<link href=\"text/scalc/01/06031000.xhp\" name=\"AutoRefresh\">Ofiinharoomsa</link>"
+msgid "PI()"
+msgstr "PI()"
-#: 06031000.xhp
+#: 04060106.xhp
msgctxt ""
-"06031000.xhp\n"
-"par_id3147264\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3157836\n"
+"347\n"
"help.text"
-msgid "<ahelp hid=\".uno:AutoRefreshArrows\" visibility=\"visible\">Automatically refreshes all the traces in the sheet whenever you modify a formula.</ahelp>"
-msgstr "<ahelp hid=\".uno:AutoRefreshArrows\" visibility=\"visible\">Yommuu formulaa foyyeessitu,hordoffiiwwan galmee keesssaa huunda ofumaan hareessa.</ahelp>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3152370\n"
+"348\n"
"help.text"
-msgid "WORKDAY"
-msgstr "WORKDAY"
+msgid "<item type=\"input\">=PI()</item> returns 3.14159265358979."
+msgstr "<item type=\"input\">=PI()</item> 3.14159265358979 deebisa."
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"bm_id3149012\n"
+"04060106.xhp\n"
+"bm_id3152418\n"
"help.text"
-msgid "<bookmark_value>WORKDAY function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii WORKDAY</bookmark_value>"
+msgid "<bookmark_value>MULTINOMIAL function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii MULTINOMIAL </bookmark_value>"
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"hd_id3149012\n"
-"186\n"
+"04060106.xhp\n"
+"hd_id3152418\n"
+"635\n"
"help.text"
-msgid "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link></variable>"
-msgstr "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link></variable>"
+msgid "MULTINOMIAL"
+msgstr "MULTINOMIAL"
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3149893\n"
-"187\n"
+"04060106.xhp\n"
+"par_id3152454\n"
+"636\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_WORKDAY\"> The result is a date number that can be formatted as a date. You then see the date of a day that is a certain number of <emph>workdays</emph> away from the <emph>start date</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_WORKDAY\"> Firiin isaa lakkoofsa guyyaa kan akka guyyaatti gulaalamuu danda'uu dha.Itti fufuun lakkoofsa guyyaa kan lakkoofsa murta'aa ta'ee tokko <emph>guyyaa hojiiwwaani</emph> <emph>jalqaba guyyaa</emph> irra adda kan ta'e.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_MULTINOMIAL\"> Returns the factorial of the sum of the arguments divided by the product of the factorials of the arguments.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_MULTINOMIAL\"> Faaktooriyaalii ida'amaa qoccolloo baay'ataa faaktooriyaalitiif hirame deebise.</ahelp>"
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"hd_id3146944\n"
-"188\n"
+"04060106.xhp\n"
+"hd_id3155646\n"
+"637\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: func_workday.xhp
-msgctxt ""
-"func_workday.xhp\n"
-"par_id3154844\n"
-"189\n"
-"help.text"
-msgid "WORKDAY(StartDate; Days; Holidays)"
-msgstr "WORKDAY(Aduu Jalqaba;Guyyoota;Guyyaa Ayyaanota)"
-
-#: func_workday.xhp
-msgctxt ""
-"func_workday.xhp\n"
-"par_id3147469\n"
-"190\n"
-"help.text"
-msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation."
-msgstr "<emph>Aduu Jalqaba</emph> guyyaa isa shallagin irraa hojjeetamu dha. Guyyyaan calqaba kunis yoo guyyaa hojii ta'e guyyaan kun shallaggii keessatti hammatama."
-
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3153038\n"
-"191\n"
+"04060106.xhp\n"
+"par_id3155660\n"
+"638\n"
"help.text"
-msgid "<emph>Days</emph> is the number of workdays. Positive value for a result after the start date, negative value for a result before the start date."
-msgstr "<emph>Guyyoota</emph> lakkoofsa guyyaa hojiiwwaaniti. Gatii firii aduu jalqabame poozetivi yommuu ta'u,kan osoo hin jalqabamin dura immoo neegativii ta'u."
+msgid "MULTINOMIAL(Number(s))"
+msgstr "MULTINOMIAL(Lakkoofsa(ota))"
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3150693\n"
-"192\n"
+"04060106.xhp\n"
+"par_id3155673\n"
+"639\n"
"help.text"
-msgid "<emph>Holidays</emph> is a list of optional holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
-msgstr "<emph>Guyyaa Ayyaanaa</emph> tarree dirqala guyyaa ayyaanootati.Kunis guyyaa hojiin alaati. Bakka guyyaan ayyaanoota tokko tokkon eeramanitti,hangii man'ee galchi."
+msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
+msgstr "<emph>Lakkoofsi(onni))</emph> lakkoofsota haga 30tti tarreeffamaniidha."
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"hd_id3150141\n"
-"193\n"
+"04060106.xhp\n"
+"hd_id3155687\n"
+"640\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: func_workday.xhp
-msgctxt ""
-"func_workday.xhp\n"
-"par_id3152782\n"
-"194\n"
-"help.text"
-msgid "What date came 17 workdays after 1 December 2001? Enter the start date \"2001-12-01\" in C3 and the number of workdays in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
-msgstr "Mudde 1 bara 2001 guyyaa hojii guyyaa 17 booda guyyaa kamtu dhufa? C3 keessatti aduu calqaba galchi\"2001-12-01\" ,D3 keessa immoo lakkoofsa guyyaa hojiiwwaani galchi.Man'eewwaan F3 hanga J3 keessaa immo ayyaanoota qillee fi waggaa haaraa itti anuun dhufaan of keessaatti qabata.\"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
-
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3146142\n"
-"195\n"
+"04060106.xhp\n"
+"par_id3155701\n"
+"641\n"
"help.text"
-msgid "=WORKDAY(C3;D3;F3:J3) returns 2001-12-28. Format the serial date number as a date, for example in the format YYYY-MM-DD."
-msgstr "=WORKDAY(C3;D3;F3:J3) 2001-12-28 kenna.Lakkoofsa eenyummaa aduu akka aduutti dhangeessi.Fakkeenyaaf dhangii YYYY-MM-DD."
+msgid "<item type=\"input\">=MULTINOMIAL(F11:H11)</item> returns 1260, if F11 to H11 contain the values <item type=\"input\">2</item>, <item type=\"input\">3</item> and <item type=\"input\">4</item>. This corresponds to the formula =(2+3+4)! / (2!*3!*4!)"
+msgstr "<item type=\"input\">=MULTINOMIAL(F11:H11)</item> Yoo F11 haga H11 gatii <item type=\"input\">2</item>, <item type=\"input\">3</item> fi <item type=\"input\">4</item> of keessaa qabaate 1260 deebisa.Kuni foormulaa =(2+3+4)! / (2!*3!*4!) waliin walgita."
-#: 12020000.xhp
+#: 04060106.xhp
msgctxt ""
-"12020000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"bm_id3155717\n"
"help.text"
-msgid "Select Database Range"
-msgstr "Hangii kuusaa deetaa fili."
+msgid "<bookmark_value>POWER function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii POWER </bookmark_value>"
-#: 12020000.xhp
+#: 04060106.xhp
msgctxt ""
-"12020000.xhp\n"
-"bm_id3145068\n"
+"04060106.xhp\n"
+"hd_id3155717\n"
+"350\n"
"help.text"
-msgid "<bookmark_value>databases; selecting (Calc)</bookmark_value>"
-msgstr "<bookmark_value>kuusaa deetootaa; (shallaggii)filachuu</bookmark_value>"
+msgid "POWER"
+msgstr "POWER"
-#: 12020000.xhp
+#: 04060106.xhp
msgctxt ""
-"12020000.xhp\n"
-"hd_id3145068\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3159495\n"
+"351\n"
"help.text"
-msgid "Select Database Range"
-msgstr "Hangii Kuusaa Deetaa Fili"
+msgid "<ahelp hid=\"HID_FUNC_POTENZ\">Returns a number raised to another number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_POTENZ\">Lakkoofsa gara pooworiitti ol ka'e deebisa.</ahelp>"
-#: 12020000.xhp
+#: 04060106.xhp
msgctxt ""
-"12020000.xhp\n"
-"par_id3149655\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3159513\n"
+"352\n"
"help.text"
-msgid "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">Selects a database range that you defined under <link href=\"text/scalc/01/12010000.xhp\" name=\"Data - Define Range\">Data - Define Range</link>.</ahelp></variable>"
-msgstr "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">Hangii kuusaa deetaa isaa <link href=\"text/scalc/01/12010000.xhp\" name=\"Data - Define Range\">Deetaa - Hangii hiiki</link>.</ahelp></variable> jelatti hiikame fila."
+msgid "Syntax"
+msgstr "Caasima"
-#: 12020000.xhp
+#: 04060106.xhp
msgctxt ""
-"12020000.xhp\n"
-"hd_id3153192\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3159526\n"
+"353\n"
"help.text"
-msgid "Ranges"
-msgstr "Hangiiwwan"
+msgid "POWER(Base; Exponent)"
+msgstr ""
-#: 12020000.xhp
+#: 04060106.xhp
msgctxt ""
-"12020000.xhp\n"
-"par_id3154684\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3159540\n"
+"354\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SELENTRY_LIST\">Lists the available database ranges. To select a database range, click its name, and then click <emph>OK</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SELENTRY_LIST\">Hangiiwwan kuusaa deetaa jiran tarreessa.Hangii kuusaa deetaa filuuf maqaa isaa cuqaasii,itti ansuun<emph>Eyyee</emph>cuqaasi.</ahelp>"
+msgid "Returns <emph>Base</emph> raised to the power of <emph>Exponent</emph>."
+msgstr "Beezii<emph>gara</emph> pooworii pooworiitti ol ka'e <emph>deebisa</emph>."
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id5081637\n"
"help.text"
-msgid "Delete Cells"
-msgstr "Man'eewwan haquu"
+msgid "The same result may be achieved by using the exponentiation operator ^:"
+msgstr "Exponeesheeshinii opereetaraa fayyadamuudhaan firiin walfakkaatu ni argama^:"
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"bm_id3153726\n"
+"04060106.xhp\n"
+"par_id9759514\n"
"help.text"
-msgid "<bookmark_value>cells; deleting cells</bookmark_value><bookmark_value>columns; deleting</bookmark_value><bookmark_value>rows; deleting</bookmark_value><bookmark_value>spreadsheets; deleting cells</bookmark_value><bookmark_value>deleting;cells/rows/columns</bookmark_value>"
-msgstr "<bookmark_value>man'eewwan; man'eewwan haquu</bookmark_value><bookmark_value>tarjaawwan; haquu</bookmark_value><bookmark_value>tarreewwan;haquu</bookmark_value><bookmark_value>wardiiwwan; man'eewwan haquu</bookmark_value><bookmark_value>haquu; man'eewwan/tarreewwan/tarjaawwan</bookmark_value>"
+msgid "<item type=\"literal\">Base^Exponent</item>"
+msgstr "<item type=\"literal\">Beerii^Paaworii</item>"
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"hd_id3153726\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3159580\n"
+"356\n"
"help.text"
-msgid "Delete Cells"
-msgstr "Man'eewwan haquu"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 02160000.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3154490\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3159594\n"
+"357\n"
"help.text"
-msgid "<variable id=\"zellenloeschentext\"><ahelp hid=\".uno:DeleteCell\">Completely deletes selected cells, columns or rows. The cells below or to the right of the deleted cells will fill the space.</ahelp></variable> Note that the selected delete option is stored and reloaded when the dialog is next called."
-msgstr "<variable id=\"zellenloeschentext\"><ahelp hid=\".uno:DeleteCell\">Man'eewwan, tarjaawwan ykn tarreewwan hundumaa haqa. Man'eewwan garjalaa ykn garmirgaa man'eewwan haqamaniin bakkaduwwaa guutu.</ahelp></variable> Hubadhu qaaqeen itti aanu yoo filatame filannoowwan haqaman ni kuufamu akkasumas deebi'anii fe'amu."
+msgid "<item type=\"input\">=POWER(4;3)</item> returns 64, which is 4 to the power of 3."
+msgstr "<item type=\"input\">=POOWORIIN(4;3)</item> 64 deebisa,kunis 4 pooworii 3 ta'a."
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"hd_id3149121\n"
-"3\n"
+"04060106.xhp\n"
+"par_id1614429\n"
"help.text"
-msgid "Selection"
-msgstr "Filannoo"
+msgid "=4^3 also returns 4 to the power of 3."
+msgstr "=4^3 akkasumas 4 pooworii 3 deebisa."
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3150751\n"
-"4\n"
+"04060106.xhp\n"
+"bm_id3152651\n"
"help.text"
-msgid "This area contains options for specifying how sheets are displayed after deleting cells."
-msgstr "Naannoo kun filannoo wardiin tokko edda man'eewwan haqamaniin booda akkamitti akka mul'atan agarsiisa."
+msgid "<bookmark_value>SERIESSUM function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii SERIESSUM </bookmark_value>"
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"hd_id3155767\n"
-"5\n"
+"04060106.xhp\n"
+"hd_id3152651\n"
+"642\n"
"help.text"
-msgid "Shift cells up"
-msgstr "Man'eewwan ol jijjiiruu"
+msgid "SERIESSUM"
+msgstr "SERIESSUM"
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3153714\n"
-"6\n"
+"04060106.xhp\n"
+"par_id3152688\n"
+"643\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DELCELL:BTN_CELLSUP\">Fills the space produced by the deleted cells with the cells underneath it.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DELCELL:BTN_CELLSUP\">Bakka duuwwaa uumame man'eewwan haqamaniin guuta.</ahelp>"
+msgid "<ahelp hid=\".\">Sums the first terms of a power series.</ahelp>"
+msgstr "<ahelp hid=\".\">Jechayyaa jalqabaa kan poower siiriyeesii ida'a.</ahelp>"
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"hd_id3156382\n"
-"7\n"
+"04060106.xhp\n"
+"par_id3152708\n"
+"644\n"
"help.text"
-msgid "Shift cells left"
-msgstr "Man'eewwan bitaa jijjiiruu"
+msgid "SERIESSUM(x;n;m;coefficients) = coefficient_1*x^n + coefficient_2*x^(n+m) + coefficient_3*x^(n+2m) +...+ coefficient_i*x^(n+(i-1)m)"
+msgstr "SERIESSUM(x;n;m;koofishentoota) = koofishentii_1*x^n + koofishentii_2*x^(n+m) + koofishentii_3*x^(n+2m) +...+ koofishentii_i*x^(n+(i-1)m)"
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3154702\n"
-"8\n"
+"04060106.xhp\n"
+"hd_id3152724\n"
+"645\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DELCELL:BTN_CELLSLEFT\">Fills the resulting space by the cells to the right of the deleted cells.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DELCELL:BTN_CELLSLEFT\">Bakka duuwwaa argaman man'eewwan gara mirgaa,man'eewwan haqamaniitti argamaniin guuta.</ahelp>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"hd_id3146918\n"
-"9\n"
+"04060106.xhp\n"
+"par_idN11BD9\n"
"help.text"
-msgid "Delete entire row(s)"
-msgstr "Tarree(wwan) hundaa haquu"
+msgid "SERIESSUM(X; N; M; Coefficients)"
+msgstr "SERIESSUM(X; N; M; koofishentoota)"
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3148487\n"
-"10\n"
+"04060106.xhp\n"
+"par_id3152737\n"
+"646\n"
"help.text"
-msgid "<ahelp hid=\".uno:DeleteRows\">After selecting at least one cell, deletes the entire row from the sheet.</ahelp>"
-msgstr "<ahelp hid=\".uno:DeleteRows\">Man'een takkallee edda filatamee booda,tarreewwan hundaa wardiirraa haqa.</ahelp>"
+msgid "<emph>X</emph> is the input value for the power series."
+msgstr "<emph>X</emph> gatii naqaa poowor siiriyeesiti."
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"hd_id3155114\n"
-"11\n"
+"04060106.xhp\n"
+"par_id3144344\n"
+"647\n"
"help.text"
-msgid "Delete entire column(s)"
-msgstr "Tarjaa(wwan) hundaa haquu"
+msgid "<emph>N</emph> is the initial power"
+msgstr "<emph>N</emph> poowerii jalqabaati"
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3150086\n"
-"12\n"
+"04060106.xhp\n"
+"par_id3144357\n"
+"648\n"
"help.text"
-msgid "<ahelp hid=\".uno:DeleteColumns\">After selecting at least one cell, deletes the entire column from the sheet.</ahelp>"
-msgstr "<ahelp hid=\".uno:DeleteColumns\">Man'een takkallee edda filatamee booda,tajaa hundaa wardiirraa haqa.</ahelp>"
+msgid "<emph>M</emph> is the increment to increase N"
+msgstr "<emph>M</emph> dabala N dabaluu dha"
-#: 02160000.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3166424\n"
+"04060106.xhp\n"
+"par_id3144370\n"
+"649\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02150000.xhp\" name=\"Deleting Contents\">Deleting Contents</link>"
-msgstr "<link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">Qabeentoota Haqi</link>"
+msgid "<emph>Coefficients</emph> is a series of coefficients. For each coefficient the series sum is extended by one section."
+msgstr "<emph>koofishentootni</emph> siiriyeesii koofishentootaati."
-#: 03100000.xhp
+#: 04060106.xhp
msgctxt ""
-"03100000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"bm_id3144386\n"
"help.text"
-msgid "Page Break Preview"
-msgstr "Cita Durargii Fuulaa"
+msgid "<bookmark_value>PRODUCT function</bookmark_value><bookmark_value>numbers;multiplying</bookmark_value><bookmark_value>multiplying;numbers</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii PRODUCT </bookmark_value><bookmark_value>lakkoofsota;baay'isuu</bookmark_value><bookmark_value>baay'isuu;lakkoofsota</bookmark_value>"
-#: 03100000.xhp
+#: 04060106.xhp
msgctxt ""
-"03100000.xhp\n"
-"hd_id3151384\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3144386\n"
+"361\n"
"help.text"
-msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"Page Break Preview\">Page Break Preview</link>"
-msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"Page Break Preview\">Cita Durargii Fuulaa</link>"
+msgid "PRODUCT"
+msgstr "PRODUCT"
-#: 03100000.xhp
+#: 04060106.xhp
msgctxt ""
-"03100000.xhp\n"
-"par_id3150792\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3144414\n"
+"362\n"
"help.text"
-msgid "<ahelp hid=\".uno:PagebreakMode\">Display the page breaks and print ranges in the sheet. Choose <emph>View - Normal</emph> to switch this mode off.</ahelp>"
-msgstr "<ahelp hid=\".uno:PagebreakMode\">Citoota fuulaa mul'isa, dabalataanis hangiiwwan wardii keessaa mul'isa. Haalata kana dhaamsuuf <emph>Mul'isi - Baratamaa</emph> filadhu.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_PRODUKT\">Multiplies all the numbers given as arguments and returns the product.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_PRODUKT\">Lakkoofsota hundaa akka qocollootti kennaman baay'isuu fi firii deebisa.</ahelp>"
-#: 03100000.xhp
+#: 04060106.xhp
msgctxt ""
-"03100000.xhp\n"
-"par_id3153877\n"
-"13\n"
+"04060106.xhp\n"
+"hd_id3144433\n"
+"363\n"
"help.text"
-msgid "The context menu of the page break preview contains functions for editing page breaks, including the following options:"
-msgstr "Halqarri baafata cita durargii fuulaa, citoota fuulaa gulaaluuf faankishinoota of keessatti qaba,filannoowwan armaan gadii of keessatti qabachuudhan:"
+msgid "Syntax"
+msgstr "Caasima"
-#: 03100000.xhp
+#: 04060106.xhp
msgctxt ""
-"03100000.xhp\n"
-"hd_id3154731\n"
-"14\n"
+"04060106.xhp\n"
+"par_id3144446\n"
+"364\n"
"help.text"
-msgid "Delete All Manual Breaks"
-msgstr "Citoota Hujeekaa Hunda Haqi"
+msgid "PRODUCT(Number1; Number2; ...; Number30)"
+msgstr "PRODUCT(Lakkoofsa1; Lakkoofsa2; ...; Lakkoofsa30)"
-#: 03100000.xhp
+#: 04060106.xhp
msgctxt ""
-"03100000.xhp\n"
-"par_id3149400\n"
-"15\n"
+"04060106.xhp\n"
+"par_id3144460\n"
+"365\n"
"help.text"
-msgid "<ahelp hid=\".uno:DeleteAllBreaks\">Deletes all manual breaks in the current sheet.</ahelp>"
-msgstr "<ahelp hid=\".uno:DeleteAllBreaks\">Citoota hujeekaa hunda wardii ammee keessa jiran haqa.</ahelp>"
+msgid "<emph>Number1 to 30</emph> are up to 30 arguments whose product is to be calculated."
+msgstr "<emph>Lakkoofsi1 haga 30</emph> qocolloota haga 30 firiin isaanii shallagamuudha."
-#: 03100000.xhp
+#: 04060106.xhp
msgctxt ""
-"03100000.xhp\n"
-"hd_id3155067\n"
-"18\n"
+"04060106.xhp\n"
+"par_id1589098\n"
"help.text"
-msgid "Add Print Range"
-msgstr "Hangii Maxxansaa Ida'i"
+msgid "PRODUCT returns number1 * number2 * number3 * ..."
+msgstr "PRODUCT lakkoofsa1 * lakkoofsa2 * lakkoofsa3 * ...deebisa"
-#: 03100000.xhp
+#: 04060106.xhp
msgctxt ""
-"03100000.xhp\n"
-"par_id3155764\n"
-"19\n"
+"04060106.xhp\n"
+"hd_id3144480\n"
+"366\n"
"help.text"
-msgid "Adds the selected cells to print ranges."
-msgstr "Man'eewwan filataman hangiiwwan maxxansaatti ida'a."
+msgid "Example"
+msgstr "Fakkeenya"
-#: func_time.xhp
+#: 04060106.xhp
msgctxt ""
-"func_time.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3144494\n"
+"367\n"
"help.text"
-msgid "TIME"
-msgstr "TIME"
+msgid "<item type=\"input\">=PRODUCT(2;3;4)</item> returns 24."
+msgstr "<item type=\"input\">=PRODUCT(2;3;4)</item> 24 deebisa."
-#: func_time.xhp
+#: 04060106.xhp
msgctxt ""
-"func_time.xhp\n"
-"bm_id3154073\n"
+"04060106.xhp\n"
+"bm_id3160340\n"
"help.text"
-msgid "<bookmark_value>TIME function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii TIME</bookmark_value>"
+msgid "<bookmark_value>SUMSQ function</bookmark_value><bookmark_value>square number additions</bookmark_value><bookmark_value>sums;of square numbers</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii SUMSQ </bookmark_value><bookmark_value>iskuweerii lakkoofsaa ida'uu </bookmark_value><bookmark_value>ida'amtoota;kan iskuweerii lakkoofsotaa</bookmark_value>"
-#: func_time.xhp
+#: 04060106.xhp
msgctxt ""
-"func_time.xhp\n"
-"hd_id3154073\n"
-"149\n"
+"04060106.xhp\n"
+"hd_id3160340\n"
+"369\n"
"help.text"
-msgid "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\">TIME</link></variable>"
-msgstr "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\">TIME</link></variable>"
+msgid "SUMSQ"
+msgstr "SUMSQ"
-#: func_time.xhp
+#: 04060106.xhp
msgctxt ""
-"func_time.xhp\n"
-"par_id3145762\n"
-"150\n"
+"04060106.xhp\n"
+"par_id3160368\n"
+"370\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZEIT\">TIME returns the current time value from values for hours, minutes and seconds.</ahelp> This function can be used to convert a time based on these three elements to a decimal time value."
-msgstr "<ahelp hid=\"HID_FUNC_ZEIT\">Sa'aatiwwan,daqiiqota,fi seekondiwwaniif TIME'n gatii yeroo ammee kenna.</ahelp> fankishiniin kun yeroo miseensota sadii irratti hunda'uu gara gatii yeroo deesimaalitti jijjiiruu danda'a."
+msgid "<ahelp hid=\"HID_FUNC_QUADRATESUMME\">If you want to calculate the sum of the squares of numbers (totaling up of the squares of the arguments), enter these into the text fields.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_QUADRATESUMME\">Yoo ida'ama iskuweerii lakkoofsaa shallaguu barbaadde,dirree barruu irratti kana galchi.</ahelp>"
-#: func_time.xhp
+#: 04060106.xhp
msgctxt ""
-"func_time.xhp\n"
-"hd_id3155550\n"
-"151\n"
+"04060106.xhp\n"
+"hd_id3160388\n"
+"371\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: func_time.xhp
-msgctxt ""
-"func_time.xhp\n"
-"par_id3154584\n"
-"152\n"
-"help.text"
-msgid "TIME(Hour; Minute; Second)"
-msgstr "TIME(Sa'aa;Daqiiqaa;Sekoondii)"
-
-#: func_time.xhp
-msgctxt ""
-"func_time.xhp\n"
-"par_id3152904\n"
-"153\n"
-"help.text"
-msgid "Use an integer to set the <emph>Hour</emph>."
-msgstr "<emph>Sa'aa</emph> qindeessuuf intijeerii fayyadami."
-
-#: func_time.xhp
-msgctxt ""
-"func_time.xhp\n"
-"par_id3151346\n"
-"154\n"
-"help.text"
-msgid "Use an integer to set the <emph>Minute</emph>."
-msgstr "<emph>Daqiiqaa</emph> ‎qindeessuuf intij‍‏rii‬ fayyadami​‭."
-
-#: func_time.xhp
-msgctxt ""
-"func_time.xhp\n"
-"par_id3151366\n"
-"155\n"
-"help.text"
-msgid "Use an integer to set the <emph>Second</emph>."
-msgstr "<emph>Seekondii</emph> qindeessuuf intijeerii fayyadami."
-
-#: func_time.xhp
+#: 04060106.xhp
msgctxt ""
-"func_time.xhp\n"
-"hd_id3145577\n"
-"156\n"
+"04060106.xhp\n"
+"par_id3160402\n"
+"372\n"
"help.text"
-msgid "Examples"
-msgstr "Fakkeenyawwan"
+msgid "SUMSQ(Number1; Number2; ...; Number30)"
+msgstr "SUMSQ(Lakkoofsa1; Lakkoofsa2; ...; Lakkoofsa30)"
-#: func_time.xhp
+#: 04060106.xhp
msgctxt ""
-"func_time.xhp\n"
-"par_id3156076\n"
-"157\n"
+"04060106.xhp\n"
+"par_id3160415\n"
+"373\n"
"help.text"
-msgid "<item type=\"input\">=TIME(0;0;0)</item> returns 00:00:00"
-msgstr "<item type=\"input\">=TIME(0;0;0)</item> 00:00:00 kenna"
+msgid "<emph>Number1 to 30</emph> are up to 30 arguments the sum of whose squares is to be calculated."
+msgstr "<emph>Lakkoofsi1 haga 30</emph> qocolloota haga 30 firiin isaanii shallagamuudha."
-#: func_time.xhp
+#: 04060106.xhp
msgctxt ""
-"func_time.xhp\n"
-"par_id3156090\n"
-"158\n"
+"04060106.xhp\n"
+"hd_id3160436\n"
+"374\n"
"help.text"
-msgid "<item type=\"input\">=TIME(4;20;4)</item> returns 04:20:04"
-msgstr "<item type=\"input\">=TIME(4;20;4)</item> 04:20:04 kenna"
+msgid "Example"
+msgstr "Fakkeenya"
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3160449\n"
+"375\n"
"help.text"
-msgid "DAYS360"
-msgstr "DAYS360"
+msgid "If you enter the numbers <item type=\"input\">2</item>; <item type=\"input\">3</item> and <item type=\"input\">4</item> in the Number 1; 2 and 3 text boxes, 29 is returned as the result."
+msgstr "Yoo lakkoofsota <item type=\"input\">2</item>;<item type=\"input\">3</item> fi <item type=\"input\">4</item> lakkoofsa 1;2 fi 3 sanduuqa barruu keessa galchite,29 akka firiitti deebi'a."
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"bm_id3148555\n"
+"04060106.xhp\n"
+"bm_id3158247\n"
"help.text"
-msgid "<bookmark_value>DAYS360 function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii DAYS360</bookmark_value>"
+msgid "<bookmark_value>MOD function</bookmark_value><bookmark_value>remainders of divisions</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii MOD </bookmark_value><bookmark_value>haftee hirannaa</bookmark_value>"
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"hd_id3148555\n"
-"124\n"
+"04060106.xhp\n"
+"hd_id3158247\n"
+"387\n"
"help.text"
-msgid "<variable id=\"days360\"><link href=\"text/scalc/01/func_days360.xhp\">DAYS360</link></variable>"
-msgstr "<variable id=\"days360\"><link href=\"text/scalc/01/func_days360.xhp\">DAYS360</link></variable>"
+msgid "MOD"
+msgstr "MOD"
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"par_id3156032\n"
-"125\n"
+"04060106.xhp\n"
+"par_id3158276\n"
+"388\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TAGE360\">Returns the difference between two dates based on the 360 day year used in interest calculations.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TAGE360\">Shallagduu dhalaa fayyadamee guyyaa 360 waggaa irratti huda'uudhan garagarummaa guyyoota lama gidduu jiruu kenna.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_REST\">Returns the remainder when one integer is divided by another.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_REST\">Yeroo intijariin tokko isa biraatiif hiramu haftee deebisa.</ahelp>"
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"hd_id3155347\n"
-"126\n"
+"04060106.xhp\n"
+"hd_id3158294\n"
+"389\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"par_id3155313\n"
-"127\n"
+"04060106.xhp\n"
+"par_id3158308\n"
+"390\n"
"help.text"
-msgid "DAYS360(\"Date1\"; \"Date2\"; Type)"
-msgstr "DAYS360(\"Aduu1\"; \"Aduu2\"; Akaakuu)"
+msgid "MOD(Dividend; Divisor)"
+msgstr "MOD(Hiramaa; Jaloo)"
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"par_id3145263\n"
-"128\n"
+"04060106.xhp\n"
+"par_id3158321\n"
+"391\n"
"help.text"
-msgid "If <emph>Date2</emph> is earlier than <emph>Date1</emph>, the function will return a negative number."
-msgstr "Yoo <emph>Aduu2</emph>n <emph>Aduu1</emph>, durse fankishiniin negeetivii kenna."
+msgid "For integer arguments this function returns Dividend modulo Divisor, that is the remainder when <emph>Dividend</emph> is divided by <emph>Divisor</emph>."
+msgstr "Qocolloo intijariitiif faankishiniin kun hiraa mooduuloo hiramaa deebisa,sun haftee yeroo <emph>Hiramaan</emph> Hiraadhaan<emph>hiramuudha</emph>."
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"par_id3151064\n"
-"129\n"
+"04060106.xhp\n"
+"par_id3158341\n"
+"392\n"
"help.text"
-msgid "The optional argument <emph>Type</emph> determines the type of difference calculation. If Type = 0 or if the argument is missing, the US method (NASD, National Association of Securities Dealers) is used. If Type <> 0, the European method is used."
-msgstr "Qajeelfamni dirqaalee <emph>Akaakuu</emph> jedhu gosa shallaggii garagaraa murteessa.Yoo akaakuu=0 ta'e ykn qajeelfamnii haaqame tooftaa US (NASD, National Association of Securities Dealers) jedhamutti fayyadamna.Yoo akaakuu <> 0 ta'e tooftaa Awurooppaatti fayyadamna."
+msgid "This function is implemented as <item type=\"literal\">Dividend - Divisor * INT(Dividend/Divisor)</item> , and this formula gives the result if the arguments are not integer."
+msgstr "Faankishiniin kun akka <item type=\"literal\">Hiramaa- Hiraa * INT(Hiramaa/Hiraa)</item>"
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"hd_id3148641\n"
-"130\n"
+"04060106.xhp\n"
+"hd_id3158361\n"
+"393\n"
"help.text"
-msgid "Examples"
-msgstr "Fakkeenyawwan"
+msgid "Example"
+msgstr "Fakkeenya"
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"par_id3156348\n"
-"132\n"
+"04060106.xhp\n"
+"par_id3158374\n"
+"394\n"
"help.text"
-msgid "=DAYS360(\"2000-01-01\";NOW()) returns the number of interest days from January 1, 2000 until today."
-msgstr "=DAYS360(\"2000-01-01\";NOW()) lakkoofsa guyyoota dhalaa Amajjii 1, 2000 hanga har'aatti jiranii kenna."
+msgid "<item type=\"input\">=MOD(22;3)</item> returns 1, the remainder when 22 is divided by 3."
+msgstr "<item type=\"input\">=MOD(22;3)</item>yeroo 22 lakkoofsa 3 hirame hafte 1 deebisa."
-#: 12030000.xhp
+#: 04060106.xhp
msgctxt ""
-"12030000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id1278420\n"
"help.text"
-msgid "Sort"
-msgstr "Tartiiba Qabsiisi"
+msgid "<item type=\"input\">=MOD(11.25;2.5)</item> returns 1.25."
+msgstr "<item type=\"input\">=MOD(11.25;2.5)</item> 1.25 deebisa."
-#: 12030000.xhp
+#: 04060106.xhp
msgctxt ""
-"12030000.xhp\n"
-"hd_id3150275\n"
-"1\n"
+"04060106.xhp\n"
+"bm_id3144592\n"
"help.text"
-msgid "Sort"
-msgstr "Tartiiba Qabsiisi"
+msgid "<bookmark_value>QUOTIENT function</bookmark_value><bookmark_value>divisions</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii QUOTIENT </bookmark_value><bookmark_value>hiruu</bookmark_value>"
-#: 12030000.xhp
+#: 04060106.xhp
msgctxt ""
-"12030000.xhp\n"
-"par_id3155922\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3144592\n"
+"652\n"
"help.text"
-msgid "<variable id=\"sorttext\"><ahelp hid=\".uno:DataSort\">Sorts the selected rows according to the conditions that you specify.</ahelp></variable> $[officename] automatically recognizes and selects database ranges."
-msgstr "<variable id=\"sorttext\"><ahelp hid=\".uno:DataSort\">Akkaataa ulaagaalee ifteesiteen tarreewwan filaman tartiiba qabsiisi.</ahelp></variable> $[officename] Ofumaan addabasuun hangiiwwan kuusaa deetaa fila."
+msgid "QUOTIENT"
+msgstr "QUOTIENT"
-#: 12030000.xhp
+#: 04060106.xhp
msgctxt ""
-"12030000.xhp\n"
-"par_id3147428\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3144627\n"
+"653\n"
"help.text"
-msgid "You cannot sort data if the <link href=\"text/shared/01/02230000.xhp\" name=\"Record changes\">Record changes</link> options is enabled."
-msgstr "Yoo dirqalaaleen <link href=\"text/shared/01/02230000.xhp\" name=\"Record changes\">Jijjiiramoota galmee</link> hojii eegalu,deetaa tartiiba qabsiisuu hin dandeessu."
+msgid "<ahelp hid=\"HID_AAI_FUNC_QUOTIENT\">Returns the integer part of a division operation.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_QUOTIENT\">Intijarii qaama hiruu ta'e deebisa.</ahelp>"
-#: 05080200.xhp
+#: 04060106.xhp
msgctxt ""
-"05080200.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3144646\n"
+"654\n"
"help.text"
-msgid "Remove"
-msgstr "Haqi"
+msgid "Syntax"
+msgstr "Caasima"
-#: 05080200.xhp
+#: 04060106.xhp
msgctxt ""
-"05080200.xhp\n"
-"hd_id3153562\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3144659\n"
+"655\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05080200.xhp\" name=\"Remove\">Remove</link>"
-msgstr "<link href=\"text/scalc/01/05080200.xhp\" name=\"Remove\">Haqi</link>"
+msgid "QUOTIENT(Numerator; Denominator)"
+msgstr "QUOTIENT(Irrayyee; Jaloo)"
-#: 05080200.xhp
+#: 04060106.xhp
msgctxt ""
-"05080200.xhp\n"
-"par_id3148550\n"
-"2\n"
+"04060106.xhp\n"
+"par_id9038972\n"
"help.text"
-msgid "<ahelp hid=\".uno:DeletePrintArea\">Removes the defined print area.</ahelp>"
-msgstr "<ahelp hid=\".uno:DeletePrintArea\">Bakkaa maxxansa kaa'amee haqi.</ahelp>"
+msgid "Returns the integer part of <emph>Numerator</emph> divided by <emph>Denominator</emph>."
+msgstr "Intijarii qaama <emph>Irrayyee</emph> jaloodhaan<emph>hirame deebisa</emph>."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id7985168\n"
"help.text"
-msgid "Fill Series"
-msgstr "Walfaannee Guuti"
+msgid "QUOTIENT is equivalent to <item type=\"literal\">INT(numerator/denominator)</item>, except that it may report errors with different error codes."
+msgstr "QUOTIENT tiin <item type=\"literal\">INT(irrayyee/jaloo)</item> waliin walgita, garuu dogogoraa coodii dogogoraa karaa adda ta'een rippoortii godha."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3148664\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3144674\n"
+"656\n"
"help.text"
-msgid "Fill Series"
-msgstr "Walfaannee Guuti"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3148797\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3144687\n"
+"657\n"
"help.text"
-msgid "<variable id=\"reihenfuellentext\"><ahelp hid=\".uno:FillSeries\">Automatically generate series with the options in this dialog. Determine direction, increment, time unit and series type.</ahelp></variable>"
-msgstr "<variable id=\"reihenfuellentext\"><ahelp hid=\".uno:FillSeries\">Qaaqa kan keessatti walfaannee dirqalaalee waliin ofumaan uuma. Kallatii,dabalata,safara yeroo fi akaakuu walfaannee murteessa .</ahelp></variable>"
+msgid "<item type=\"input\">=QUOTIENT(11;3)</item> returns 3. The remainder of 2 is lost."
+msgstr "<item type=\"input\">=QUOTIENT(11;3)</item> 3 deebisa.Hafteen 2 ni bada."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3146976\n"
-"41\n"
+"04060106.xhp\n"
+"bm_id3144702\n"
"help.text"
-msgid "Before filling a series, first select the cell range."
-msgstr "Osoo walfaannee hin guutiin,jalqaba hangii man'ee fili."
+msgid "<bookmark_value>RADIANS function</bookmark_value><bookmark_value>converting;degrees, into radians</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii RADIANS </bookmark_value><bookmark_value>jijjiiruu;diigrii, gara raadiyaanitti</bookmark_value>"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3145748\n"
-"3\n"
+"04060106.xhp\n"
+"hd_id3144702\n"
+"377\n"
"help.text"
-msgid "To automatically continue a series using the assumed completion rules, choose the <emph>AutoFill</emph> option after opening the <emph>Fill Series</emph> dialog."
-msgstr "Seeraa ittiin xumuraa ka'amee fayyadamun ofumaan walfaannee itti fufuuf,erga qaaqa <emph>Walfaannee Guuti</emph> bantee booda dirqaala<emph>Ofiinguutaa</emph> fili."
+msgid "RADIANS"
+msgstr "RADIANS"
-#: 02140600.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3147435\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3158025\n"
+"378\n"
"help.text"
-msgid "Direction"
-msgstr "kallattii"
+msgid "<ahelp hid=\"HID_FUNC_RAD\">Converts degrees to radians.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_RAD\">diigrii gara raadiyaanitti jijjiira.</ahelp>"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3154729\n"
-"5\n"
+"04060106.xhp\n"
+"hd_id3158042\n"
+"379\n"
"help.text"
-msgid "Determines the direction of series creation."
-msgstr "kallattii walfaannee uumame murteessa."
+msgid "Syntax"
+msgstr "Caasima"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3145253\n"
-"6\n"
+"04060106.xhp\n"
+"par_id3158055\n"
+"380\n"
"help.text"
-msgid "Down"
-msgstr "Gadi"
+msgid "RADIANS(Number)"
+msgstr "RADIANS(Lakkoofsa)"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3155418\n"
-"7\n"
+"04060106.xhp\n"
+"par_id3158069\n"
+"381\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_BOTTOM\">Creates a downward series in the selected cell range for the column using the defined increment to the end value.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_BOTTOM\">Dabala i bsame fayyadamuudhaan hammanga man'ee targaa filatameef walfaannee gargadii uuma.</ahelp>"
+msgid "<emph>Number</emph> is the angle in degrees to be converted to radians."
+msgstr "<emph>Lakkoofsi</emph> kofa diigrii kan raadiyaanitti jijjiiramuudha."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3155738\n"
-"8\n"
+"04060106.xhp\n"
+"hd_id876186\n"
"help.text"
-msgid "Right"
-msgstr "Mirga"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3149402\n"
-"9\n"
+"04060106.xhp\n"
+"par_id3939634\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_RIGHT\">Creates a series running from left to right within the selected cell range using the defined increment to the end value.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_RIGHT\">Dabala ibsame fayyadamuudhaan hammanga man'ee wajjin bitaadhaa gara mirgaatti uuma.</ahelp>"
+msgid "<item type=\"input\">=RADIANS(90)</item> returns 1.5707963267949, which is PI/2 to Calc's accuracy."
+msgstr "<item type=\"input\">=RADIANS(90)</item> 1.5707963267949, kan PI/2 gara Calc akkureesiitti deebisa."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3146972\n"
-"10\n"
+"04060106.xhp\n"
+"bm_id3158121\n"
"help.text"
-msgid "Up"
-msgstr "ol"
+msgid "<bookmark_value>ROUND function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii ROUND </bookmark_value>"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3153711\n"
-"11\n"
+"04060106.xhp\n"
+"hd_id3158121\n"
+"398\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_TOP\">Creates an upward series in the cell range of the column using the defined increment to the end value.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_TOP\">Dabala ibsame fayyadamuudhaan hammanga man'ee targaa filatameef walfaannee garolii uuma.</ahelp>"
+msgid "ROUND"
+msgstr "ROUND"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3153764\n"
-"12\n"
+"04060106.xhp\n"
+"par_id3158150\n"
+"399\n"
"help.text"
-msgid "Left"
-msgstr "Bitaa"
+msgid "<ahelp hid=\"HID_FUNC_RUNDEN\">Rounds a number to a certain number of decimal places.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_RUNDEN\">Lakkoofsa gara lakkoofsa deesimaalii wayiitti siiqsa.</ahelp>"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3156382\n"
-"13\n"
+"04060106.xhp\n"
+"hd_id3158169\n"
+"400\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_LEFT\">Creates a series running from right to left in the selected cell range using the defined increment to the end value.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_LEFT\">Dabala ibsame fayyadamuudhaan hammanga man'ee wajjin mirgaa gara bitaatti uuma.</ahelp>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3147344\n"
-"14\n"
+"04060106.xhp\n"
+"par_id3158182\n"
+"401\n"
"help.text"
-msgid "Series Type"
-msgstr "Gosa walfaannee"
+msgid "ROUND(Number; Count)"
+msgstr "ROUND(Lakkoofsa;lakkaa'uu)"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3149257\n"
-"15\n"
+"04060106.xhp\n"
+"par_id3158196\n"
+"402\n"
"help.text"
-msgid "Defines the series type. Choose between <emph>Linear, Growth, Date </emph>and <emph>AutoFill</emph>."
-msgstr "Gosa walfaannee ibsa. Sararoo,guddina,guyyaa<emph>fi ofnaa </emph>gidduudhaa <emph>filata</emph>."
+msgid "Returns <emph>Number</emph> rounded to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds to the nearest integer. If Count is negative, the function rounds to the nearest 10, 100, 1000, etc."
+msgstr "<emph>Lakkoofsa</emph>gara<emph>Lakkaa'umsa</emph> iddoo deesimaaliitti deebisa. Yoo Lakkaa'umsi haqame ykn zeeroo ta'e, faankishiniin gara intijarii dhihootti siiqsa. Yoo lakkaa'umsi negatiivii ta'e, faankishiniin gara 10, 100, 1000 kkf dhiyootti siiqsa."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3148488\n"
-"16\n"
+"04060106.xhp\n"
+"par_id599688\n"
"help.text"
-msgid "Linear"
-msgstr "sararoo"
+msgid "This function rounds to the nearest number. See ROUNDDOWN and ROUNDUP for alternatives."
+msgstr "Faankishiniin kun gara lakkoofsa itti dhiyootti siiqfama.Filannoodhaaf ROUNDDOWN fi ROUNDUP ilaala."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3159238\n"
-"17\n"
+"04060106.xhp\n"
+"hd_id3145863\n"
+"404\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_ARITHMETIC\">Creates a linear number series using the defined increment and end value.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_ARITHMETIC\">Dabala ibsamee fi gatii dhumaa fayyadamuudhaan walfaannee lakkoofsa sararoo uuma.</ahelp>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3149210\n"
-"18\n"
+"04060106.xhp\n"
+"par_id3145876\n"
+"405\n"
"help.text"
-msgid "Growth"
-msgstr "Guddina"
+msgid "<item type=\"input\">=ROUND(2.348;2)</item> returns 2.35"
+msgstr "<item type=\"input\">=ROUND(2.348;2)</item> 2.35 deebisa"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3150364\n"
-"19\n"
+"04060106.xhp\n"
+"par_id3145899\n"
+"406\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_GEOMETRIC\">Creates a growth series using the defined increment and end value.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_GEOMETRIC\">Dabala ibsamee fi gatii dhumaa fayyadamuudhaan walfaannee guddinaa uuma.</ahelp>"
+msgid "<item type=\"input\">=ROUND(-32.4834;3)</item> returns -32.483. Change the cell format to see all decimals."
+msgstr "<item type=\"input\">=ROUND(-32.4834;3)</item> -32.483 deebisa. Deesimaalii hundaa ilaaluuf dhangii man'ee jijjiira."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3149528\n"
-"20\n"
+"04060106.xhp\n"
+"par_id1371501\n"
"help.text"
-msgid "Date"
-msgstr "Guyyaa"
+msgid "<item type=\"input\">=ROUND(2.348;0)</item> returns 2."
+msgstr "<item type=\"input\">=ROUND(2.348;0)</item> 2 deebisa."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3150887\n"
-"21\n"
+"04060106.xhp\n"
+"par_id4661702\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DATE\">Creates a date series using the defined increment and end date.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DATE\">Dabala ibsamee fi gatii dhumaa fayyadamuudhaan walfaannee guyyaa uuma.</ahelp>"
+msgid "<item type=\"input\">=ROUND(2.5)</item> returns 3."
+msgstr "<item type=\"input\">=ROUND(2.5)</item> 3 deebisa."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3150202\n"
-"22\n"
+"04060106.xhp\n"
+"par_id7868892\n"
"help.text"
-msgid "AutoFill"
-msgstr "Ofnaa guutuu"
+msgid "<item type=\"input\">=ROUND(987.65;-2)</item> returns 1000."
+msgstr "<item type=\"input\">=ROUND(987.65;-2)</item>1000 deebisa."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3156288\n"
-"23\n"
+"04060106.xhp\n"
+"bm_id3145991\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_AUTOFILL\">Forms a series directly in the sheet.</ahelp> The AutoFill function takes account of customized lists. For example, by entering <emph>January</emph> in the first cell, the series is completed using the list defined under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</emph>."
-msgstr ""
+msgid "<bookmark_value>ROUNDDOWN function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii ROUNDDOWN </bookmark_value>"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3155811\n"
+"04060106.xhp\n"
+"hd_id3145991\n"
"24\n"
"help.text"
-msgid "AutoFill tries to complete a value series by using a defined pattern. The series 1,3,5 is automatically completed with 7,9,11,13, and so on. Date and time series are completed accordingly; for example, after 01.01.99 and 15.01.99, an interval of 14 days is used."
-msgstr "ofnaa guutuun sarxaa ibsame fayyadamuudhaan gatii walfannee xumura.Walfaanneen 1,3,5 battalumatti 7,9,11,13 fi kkf wajjin xumurama.Guyyaa fi yeroon haala jiruun xumurama.Fkf 01.01.99 fi 15.01.99,guyyaa 14 fayyadama."
+msgid "ROUNDDOWN"
+msgstr "ROUNDDOWN"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3148700\n"
+"04060106.xhp\n"
+"par_id3146020\n"
"25\n"
"help.text"
-msgid "Unit of Time"
-msgstr "Safartoo yeroo"
+msgid "<ahelp hid=\"HID_FUNC_ABRUNDEN\">Rounds a number down, toward zero, to a certain precision.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ABRUNDEN\">Lakkoofsa sirrummaadhaaf gara zeerootti gadi buta.</ahelp>"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3153308\n"
+"04060106.xhp\n"
+"hd_id3146037\n"
"26\n"
"help.text"
-msgid "In this area you can specify the desired unit of time. This area is only active if the <emph>Date</emph> option has been chosen in the <emph>Series type</emph> area."
-msgstr "Naannoo kanatti safartuu yeroo barbaanne adda baasuu dandeenya.Naannoon kun kan sinsinaa'u yoo<emph>Date</emph> gosa walfaannee<emph>filatamee</emph> dha."
+msgid "Syntax"
+msgstr "Caasima"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3148868\n"
+"04060106.xhp\n"
+"par_id3146051\n"
"27\n"
"help.text"
-msgid "Day"
-msgstr "Guyyaa"
+msgid "ROUNDDOWN(Number; Count)"
+msgstr "ROUNDDOWN(Lakkoofsa;lakkaa'uu)"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3148605\n"
+"04060106.xhp\n"
+"par_id3146064\n"
"28\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY\">Use the <emph>Date</emph> series type and this option to create a series using seven days.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY\">Guyyoota torban fayyadamuudhaan walfaannee uumuuf filannoo kanaa fi gosoota walfaannee <emph>Guyyaa</emph> fayyadami.</ahelp>"
+msgid "Returns <emph>Number</emph> rounded down (towards zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds down to an integer. If Count is negative, the function rounds down to the next 10, 100, 1000, etc."
+msgstr "Iddoowwan deesimaalii <emph>lakkaa'uuf</emph> <emph>Lakkoofsa</emph> gadi siiqfame (gara zeerootti) deebisa.Yoo lakkaawwiin hambifame,zeeroo faankishiniin gara intijariitti gadi siiqfama.Yoo lakkaawwiin negatiivii ta'e,faankishiniin gara 10, 100, 1000, etc itti aanutti gadi siiqfama."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3144771\n"
-"29\n"
+"04060106.xhp\n"
+"par_id2188787\n"
"help.text"
-msgid "Weekday"
-msgstr "Guyyaa torbee"
+msgid "This function rounds towards zero. See ROUNDUP and ROUND for alternatives."
+msgstr "Faankishiniin kun gara zeerootti siiqfama. Filannoodhaaf ROUNDUP fi ROUND ilaali."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3150108\n"
+"04060106.xhp\n"
+"hd_id3163164\n"
"30\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY_OF_WEEK\">Use the <emph>Date</emph> series type and this option to create a series of five day sets.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY_OF_WEEK\">Qindeessa walfannee guyyaa<emph>shanii</emph> uumuuf filannoo kanaa fi gosa walfaannee fayyadama.</ahelp>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3154957\n"
+"04060106.xhp\n"
+"par_id3163178\n"
"31\n"
"help.text"
-msgid "Month"
-msgstr "Ji'a"
+msgid "<item type=\"input\">=ROUNDDOWN(1.234;2)</item> returns 1.23."
+msgstr "<item type=\"input\">=ROUNDDOWN(1.234;2)</item> 1.23 deebisa."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3149126\n"
-"32\n"
+"04060106.xhp\n"
+"par_id5833307\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_MONTH\">Use the <emph>Date</emph> series type and this option to form a series from the names or abbreviations of the months.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_MONTH\">Maqoota ykn <emph>kontoofanchiisa</emph> ji'ootaa irraa walfaanneewwan uumuuf filannoowwan kana fi gosa walfaannee guyyaa fayyadama.</ahelp>"
+msgid "<item type=\"input\">=ROUNDDOWN(45.67;0)</item> returns 45."
+msgstr "<item type=\"input\">=ROUNDDOWN(45.67;0)</item> 45 deebisa."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3152870\n"
-"33\n"
+"04060106.xhp\n"
+"par_id7726676\n"
"help.text"
-msgid "Year"
-msgstr "Waggaa"
+msgid "<item type=\"input\">=ROUNDDOWN(-45.67)</item> returns -45."
+msgstr "<item type=\"input\">=ROUNDDOWN(-45.67)</item> -45 deebisa."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3151300\n"
-"34\n"
+"04060106.xhp\n"
+"par_id3729361\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_YEAR\">Use the <emph>Date</emph> series type and this option to create a series of years.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_YEAR\">walfaannewwan waggaa<emph>uumuuf</emph>filannoo kanaa fi gosa filannoo walfaannee guyyaa fayyadama.</ahelp>"
+msgid "<item type=\"input\">=ROUNDDOWN(987.65;-2)</item> returns 900."
+msgstr "<item type=\"input\">=ROUNDDOWN(987.65;-2)</item> 900 deebisa."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3154762\n"
-"35\n"
+"04060106.xhp\n"
+"bm_id3163268\n"
"help.text"
-msgid "Start Value"
-msgstr "Gatii dhumaa"
+msgid "<bookmark_value>ROUNDUP function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii ROUNDUP</bookmark_value>"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3149381\n"
-"36\n"
+"04060106.xhp\n"
+"hd_id3163268\n"
+"140\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_START_VALUES\">Determines the start value for the series.</ahelp> Use numbers, dates or times."
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_START_VALUES\">Walfaanneedhaaf gatii jalqabaa murteessa.</ahelp> Lakkoofsota,guyyoota ykn yeroo fayyadama."
+msgid "ROUNDUP"
+msgstr "ROUNDUP"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3153013\n"
-"37\n"
+"04060106.xhp\n"
+"par_id3163297\n"
+"141\n"
"help.text"
-msgid "End Value"
-msgstr "Gatii dhumaa"
+msgid "<ahelp hid=\"HID_FUNC_AUFRUNDEN\">Rounds a number up, away from zero, to a certain precision.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_AUFRUNDEN\">Lakkoofsa ol, zeeroo irraa, sirrummaa wayiitti.</ahelp>"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3153487\n"
-"38\n"
+"04060106.xhp\n"
+"hd_id3163315\n"
+"142\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_END_VALUES\">Determines the end value for the series.</ahelp> Use numbers, dates or times."
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_END_VALUES\">Walfaanneedhaaf gatii dhumaa murteessa.</ahelp> Lakkoofsota,guyyoota ykn yeroo fayyadama."
+msgid "Syntax"
+msgstr "Caasima"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3149312\n"
-"39\n"
+"04060106.xhp\n"
+"par_id3163328\n"
+"143\n"
"help.text"
-msgid "Increment"
-msgstr "Dabala"
+msgid "ROUNDUP(Number; Count)"
+msgstr "ROUNDUP(Lakkoofsa;lakkaa'uu)"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3154739\n"
-"40\n"
+"04060106.xhp\n"
+"par_id3163342\n"
+"144\n"
"help.text"
-msgid "The term \"increment\" denotes the amount by which a given value increases.<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_INCREMENT\"> Determines the value by which the series of the selected type increases by each step.</ahelp> Entries can only be made if the linear, growth or date series types have been selected."
-msgstr "Jechi \"dabala\" jedhu amma gatiin kenname tokko ittiin dabalu bakka bu'a.<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_INCREMENT\">Gatii Walfaannee gosa filatamee adeemsa hunda keessatti dabalamu murteessa.</ahelp> Galiinsi kan ta'u yoo sararoon,guddinni ykn guyyaan filatameedha."
+msgid "Returns <emph>Number</emph> rounded up (away from zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds up to an integer. If Count is negative, the function rounds up to the next 10, 100, 1000, etc."
+msgstr "<emph>Lakkoofsa</emph> iddoo deesimaalii <emph>Lakkaa'uuf</emph> gara oliitti siiqfame(zeeroo irraa) deebisa. Yoo lakkaa'umsi haqame ykn zeeroo ta'e,faankishiniin gara intijariitti ol siiqa. Yoo lakkaa'umsi negatiivii ta'e,faankishiniin gara 10, 100, 1000, kkf dhiyootti ol siiqfama."
-#: 12120000.xhp
+#: 04060106.xhp
msgctxt ""
-"12120000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id9573961\n"
"help.text"
-msgid "Validity"
-msgstr "Gataa'insa"
+msgid "This function rounds away from zero. See ROUNDDOWN and ROUND for alternatives."
+msgstr "Faankishiniin kun zeeroo irraa siiqfama. Filannoodhaaf ROUNDDOWN fi ROUND ilaalaa."
-#: 12120000.xhp
+#: 04060106.xhp
msgctxt ""
-"12120000.xhp\n"
-"hd_id3156347\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3163381\n"
+"146\n"
"help.text"
-msgid "Validity"
-msgstr "Gataa'insa"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12120000.xhp
+#: 04060106.xhp
msgctxt ""
-"12120000.xhp\n"
-"par_id3153252\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3144786\n"
+"147\n"
"help.text"
-msgid "<variable id=\"gueltigkeit\"><ahelp hid=\".uno:Validation\">Defines what data is valid for a selected cell or cell range.</ahelp></variable>"
-msgstr "<variable id=\"gueltigkeit\"><ahelp hid=\".uno:Validation\">Man'ee ykn dhangii man'ee filameef deetaa gitaa'aa ta'ee hiiki.</ahelp></variable>"
+msgid "<item type=\"input\">=ROUNDUP(1.1111;2)</item> returns 1.12."
+msgstr "<item type=\"input\">=ROUNDUP(1.1111;2)</item> 1.12 deebisa."
-#: 12120000.xhp
+#: 04060106.xhp
msgctxt ""
-"12120000.xhp\n"
-"par_idN105D1\n"
+"04060106.xhp\n"
+"par_id7700430\n"
"help.text"
-msgid "You can also insert a list box from the Controls toolbar and link the list box to a cell. This way you can specify the valid values on the <link href=\"text/shared/02/01170102.xhp\">Data</link> page of the list box properties window."
-msgstr "To'annoowwan kamshaalee keessa sanduuqa tarree galchuu dandeesa akkasumas sanduuqa tarree man'eetti geessi.Karaan kun karaa itti <link href=\"text/shared/02/01170102.xhp\">Deetaa</link> fuulaa amalootni foddaa tarree ittiin ifteessinudha."
+msgid "<item type=\"input\">=ROUNDUP(1.2345;1)</item> returns 1.3."
+msgstr "<item type=\"input\">=ROUNDUP(1.2345;1)</item> 1.3 deebisa."
-#: 03090000.xhp
+#: 04060106.xhp
msgctxt ""
-"03090000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id1180455\n"
"help.text"
-msgid "Formula Bar"
-msgstr "Kabalaa Foormulaa"
+msgid "<item type=\"input\">=ROUNDUP(45.67;0)</item> returns 46."
+msgstr "<item type=\"input\">=ROUNDUP(45.67;0)</item> 46 deebisa."
-#: 03090000.xhp
+#: 04060106.xhp
msgctxt ""
-"03090000.xhp\n"
-"bm_id3147264\n"
+"04060106.xhp\n"
+"par_id3405560\n"
"help.text"
-msgid "<bookmark_value>formula bar;spreadsheets</bookmark_value><bookmark_value>spreadsheets; formula bar</bookmark_value>"
-msgstr "<bookmark_value>kabalaa foormulaa;wardiiwwan</bookmark_value><bookmark_value>wardiiwwan;kabalaa foormulaar</bookmark_value>"
+msgid "<item type=\"input\">=ROUNDUP(-45.67)</item> returns -46."
+msgstr "<item type=\"input\">=ROUNDUP(-45.67)</item> -46 deebisa."
-#: 03090000.xhp
+#: 04060106.xhp
msgctxt ""
-"03090000.xhp\n"
-"hd_id3147264\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3409527\n"
"help.text"
-msgid "<link href=\"text/scalc/01/03090000.xhp\" name=\"Formula Bar\">Formula Bar</link>"
-msgstr "<link href=\"text/scalc/01/03090000.xhp\" name=\"Formula Bar\">Kabalaa Foormulaa</link>"
+msgid "<item type=\"input\">=ROUNDUP(987.65;-2)</item> returns 1000."
+msgstr "<item type=\"input\">=ROUNDUP(987.65;-2)</item> 1000 deebisa."
-#: 03090000.xhp
+#: 04060106.xhp
msgctxt ""
-"03090000.xhp\n"
-"par_id3156423\n"
-"2\n"
+"04060106.xhp\n"
+"bm_id5256537\n"
"help.text"
-msgid "<ahelp hid=\".uno:InputLineVisible\">Shows or hides the Formula Bar, which is used for entering and editing formulas.</ahelp> The Formula Bar is the most important tool when working with spreadsheets."
-msgstr "<ahelp hid=\".uno:InputLineVisible\">Kabalaa foormulaa,foormulaawwan galchuu fi gulaaluuf gargaaru agarsiisa yookiin dhoksa.</ahelp> Yeroo wardiiwwan waliin hojjettu kaballi foormulaa meeshaa baay'ee gaarii ta'edha."
+msgid "<bookmark_value>SEC function</bookmark_value>"
+msgstr "<bookmark_value>FAnkishinii SKEW</bookmark_value>"
-#: 03090000.xhp
+#: 04060106.xhp
msgctxt ""
-"03090000.xhp\n"
-"par_id3154686\n"
-"4\n"
+"04060106.xhp\n"
+"hd_id5187204\n"
+"149\n"
"help.text"
-msgid "To hide the Formula Bar, unmark the menu item."
-msgstr "Kabalaa foormulaa dhoksuuf, maalimaa baafataa hin mallatteessin."
+msgid "SEC"
+msgstr ""
-#: 03090000.xhp
+#: 04060106.xhp
msgctxt ""
-"03090000.xhp\n"
-"par_id3145787\n"
-"3\n"
+"04060106.xhp\n"
+"par_id9954962\n"
+"150\n"
"help.text"
-msgid "If the Formula Bar is hidden, you can still edit cells by activating the edit mode with F2. After editing cells, accept the changes by pressing Enter, or discard entries by pressing Esc. Esc is also used to exit the edit mode."
-msgstr "Yoo kaballi foormulaa dhokate,haalata gulaallii F2dhaan kakaastee ammallee man'ee gulaaluu ni dandeessa.Man'eewwan erga gulaaltee booda Enter dhiibuudhaan jijjiiramoota mul'atan fudhadhu yookiin Esc dhiibuudhaan galiinsa gati.Esc'n haalata gulaallii keessaa bahuufis ni gargaara."
+msgid "<ahelp hid=\"HID_FUNC_SECANT\">Returns the secant of the given angle (in radians). The secant of an angle is equivalent to 1 divided by the cosine of that angle</ahelp>"
+msgstr ""
-#: 03080000.xhp
+#: 04060106.xhp
msgctxt ""
-"03080000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id422243\n"
+"151\n"
"help.text"
-msgid "Value Highlighting"
-msgstr "Gatii Shooluu"
+msgid "Syntax"
+msgstr "Caasima"
-#: 03080000.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"03080000.xhp\n"
-"bm_id3151384\n"
+"04060106.xhp\n"
+"par_id2055913\n"
+"152\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; value highlighting</bookmark_value><bookmark_value>values;highlighting</bookmark_value><bookmark_value>highlighting; values in sheets</bookmark_value><bookmark_value>colors;values</bookmark_value>"
-msgstr "<bookmark_value>wardiiwwan;gatii shooluu</bookmark_value><bookmark_value>gatiiwwan;shooluu</bookmark_value><bookmark_value>shooluu;gatiiwwan wardii keessaa</bookmark_value>"
+msgid "SEC(Number)"
+msgstr "SIN(Number)"
-#: 03080000.xhp
+#: 04060106.xhp
msgctxt ""
-"03080000.xhp\n"
-"hd_id3151384\n"
+"04060106.xhp\n"
+"par_id9568170\n"
+"153\n"
"help.text"
-msgid "<link href=\"text/scalc/01/03080000.xhp\" name=\"Value Highlighting\">Value Highlighting</link>"
-msgstr "<link href=\"text/scalc/01/03080000.xhp\" name=\"Value Highlighting\">Gatiiwwan Shooluu</link>"
+msgid "Returns the (trigonometric) secant of <emph>Number</emph>, the angle in radians."
+msgstr "sine tiriignoomeetirii<emph>lakkoofsaa</emph>,kofa raadiyaanidhaan deebisa."
-#: 03080000.xhp
+#: 04060106.xhp
msgctxt ""
-"03080000.xhp\n"
-"par_id3154366\n"
+"04060106.xhp\n"
+"par_id9047465\n"
"help.text"
-msgid "<ahelp hid=\".uno:ViewValueHighlighting\">Displays cell contents in different colors, depending on type.</ahelp>"
-msgstr ""
+msgid "To return the secant of an angle in degrees, use the RADIANS function."
+msgstr "Sine kofaa diigriidhaan deebisuuf,faankishinii RADIAN fayyadamaa."
-#: 03080000.xhp
+#: 04060106.xhp
msgctxt ""
-"03080000.xhp\n"
-"par_id3125863\n"
+"04060106.xhp\n"
+"hd_id9878918\n"
+"154\n"
"help.text"
-msgid "To remove the highlighting, unmark the menu entry."
-msgstr "Shoola haquuf, galiinsa baafataa hin mallatteessiin"
+msgid "Examples"
+msgstr "Fakkeenyawwan"
-#: 03080000.xhp
+#: 04060106.xhp
msgctxt ""
-"03080000.xhp\n"
-"par_id3145785\n"
+"04060106.xhp\n"
+"par_id6935513\n"
+"155\n"
"help.text"
-msgid "Text cells are formatted in black, formulas in green, and number cells in blue, no matter how their display is formatted."
+msgid "<item type=\"input\">=SEC(PI()/4)</item> returns approximately 1.4142135624, the inverse of the cosine of PI/4 radians."
msgstr ""
-#: 03080000.xhp
-msgctxt ""
-"03080000.xhp\n"
-"par_id3153188\n"
-"help.text"
-msgid "If this function is active, colors that you define in the document will not be displayed. When you deactivate the function, the user-defined colors are displayed again."
-msgstr "yoo dalagaan kun ka'aa ta'e,halluuwwan ati galmee keessatti qindeessitu hin mul'atan."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"tit\n"
-"help.text"
-msgid "Financial Functions Part Three"
-msgstr "Fankishinoota Maallaqaa kutaa sadi"
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3146780\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3954287\n"
+"156\n"
"help.text"
-msgid "Financial Functions Part Three"
-msgstr "Fankishinoota Maallaqaa kutaa sadi"
+msgid "<item type=\"input\">=SEC(RADIANS(60))</item> returns 2, the secant of 60 degrees."
+msgstr "<item type=\"input\">=COS(RADIANS(60))</item> cosine diigrii 60,0.5 deebisa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3145112\n"
+"04060106.xhp\n"
+"bm_id840005\n"
"help.text"
-msgid "<bookmark_value>ODDFPRICE function</bookmark_value><bookmark_value>prices;securities with irregular first interest date</bookmark_value>"
-msgstr "<bookmark_value>Fankishiinii ODDFPRICE</bookmark_value><bookmark_value>gatiiwwan;ittisa saffisa dhala tokkoffaa idilee hin tane</bookmark_value>"
+msgid "<bookmark_value>SECH function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii SEARCH</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3145112\n"
-"71\n"
+"04060106.xhp\n"
+"hd_id8661934\n"
+"159\n"
"help.text"
-msgid "ODDFPRICE"
-msgstr "ODDFPRICE"
+msgid "SECH"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147250\n"
-"72\n"
+"04060106.xhp\n"
+"par_id408174\n"
+"160\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ODDFPRICE\">Calculates the price per 100 currency units par value of a security, if the first interest date falls irregularly.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDFPRICE\">Akka gatii ittisaatti gatii safartuu sharafaa dhibba irraa shallaga, yoo guyyaan dhala jalqaba idileen ala hir'ate.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_SECANTHYP\">Returns the hyperbolic secant of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SINHYP\">Sine haayiperpoolikii lakkoofsaa deebisa.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3153074\n"
-"73\n"
+"04060106.xhp\n"
+"hd_id875988\n"
+"161\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3146098\n"
-"74\n"
-"help.text"
-msgid "ODDFPRICE(Settlement; Maturity; Issue; FirstCoupon; Rate; Yield; Redemption; Frequency; Basis)"
-msgstr "ODDPRICE(Qubannoo; Bilchina; keenni; BoonooDursaa; Saffisa; Kenna; Fayyii; Ammamtaa; Hundee)"
-
-#: 04060118.xhp
-#, fuzzy
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153337\n"
-"75\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
-
-#: 04060118.xhp
-#, fuzzy
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149051\n"
-"76\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
-
-#: 04060118.xhp
-#, fuzzy
-msgctxt ""
-"04060118.xhp\n"
-"par_id3147297\n"
-"77\n"
-"help.text"
-msgid "<emph>Issue</emph> is the date of issue of the security."
-msgstr "<emph>Qubannoo</emph>n guyyaa bittaa ittisaati."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150393\n"
-"78\n"
-"help.text"
-msgid "<emph>FirstCoupon</emph> is the first interest date of the security."
-msgstr "<emph>BoonooDursa</emph>n ittisa dhala aduu jalqabati."
-
-#: 04060118.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147402\n"
-"79\n"
+"04060106.xhp\n"
+"par_id4985391\n"
+"162\n"
"help.text"
-msgid "<emph>Rate</emph> is the annual rate of interest."
-msgstr "<emph>Saffisnii</emph> saffisa dhala waggaati."
+msgid "SECH(Number)"
+msgstr "SINH(Lakkoofsa)"
-#: 04060118.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151387\n"
-"80\n"
+"04060106.xhp\n"
+"par_id1952124\n"
+"163\n"
"help.text"
-msgid "<emph>Yield</emph> is the annual yield of the security."
-msgstr "<emph>kennaa</emph> ittisa kenna waggaati."
+msgid "Returns the hyperbolic secant of <emph>Number</emph>."
+msgstr "Sine haayperpoolikii <emph>lakkoofsaa</emph>deebisa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153023\n"
-"81\n"
+"04060106.xhp\n"
+"hd_id9838764\n"
+"164\n"
"help.text"
-msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
-msgstr "<emph>Fayyiin</emph> gatii fayyii safartuu ammaa kan gatii harkaa 100 keessaati."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150539\n"
-"82\n"
+"04060106.xhp\n"
+"par_id1187764\n"
+"165\n"
"help.text"
-msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
-msgstr "<emph>Ammamtaa</emph>n lakkoofsa kanfaltiiwwan dhalaa waggaati (1, 2 ykn 4)."
+msgid "<item type=\"input\">=SECH(0)</item> returns 1, the hyperbolic secant of 0."
+msgstr "<item type=\"input\">=SINH(0)</item> Sine haayiperpoolikii 0,0 deebisa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3157871\n"
+"04060106.xhp\n"
+"bm_id3144877\n"
"help.text"
-msgid "<bookmark_value>ODDFYIELD function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii ODDFYIELD</bookmark_value>"
+msgid "<bookmark_value>SIN function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii SIN</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3157871\n"
-"87\n"
+"04060106.xhp\n"
+"hd_id3144877\n"
+"408\n"
"help.text"
-msgid "ODDFYIELD"
-msgstr "ODDFYIELD"
+msgid "SIN"
+msgstr "SIN"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147414\n"
-"88\n"
+"04060106.xhp\n"
+"par_id3144906\n"
+"409\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ODDFYIELD\">Calculates the yield of a security if the first interest date falls irregularly.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDFYIELD\">n yoo dhalii aduu jalqaba idileen al gadi bu'e ittisa kenna shallaga.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_SIN\">Returns the sine of the given angle (in radians).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SIN\">sine kofa (raadiyaanidhaan) kennamee deebisa.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3150651\n"
-"89\n"
+"04060106.xhp\n"
+"hd_id3144923\n"
+"410\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3152982\n"
-"90\n"
-"help.text"
-msgid "ODDFYIELD(Settlement; Maturity; Issue; FirstCoupon; Rate; Price; Redemption; Frequency; Basis)"
-msgstr "ODDFYIELD(Qubannoo; Bilchina; keenni; BoonooDursaa; Saffisa; Kenna; Fayyii; Ammamtaa; Hundee)"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3157906\n"
-"91\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Qubannoo</emph>n guyyaa gurgurtaa ittisaati."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150026\n"
-"92\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>BIlchinni</emph> aduu ittisni itti bilchatee(dulloome)."
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149012\n"
-"93\n"
+"04060106.xhp\n"
+"par_id3144937\n"
+"411\n"
"help.text"
-msgid "<emph>Issue</emph> is the date of issue of the security."
-msgstr "<emph>Bittaa</emph>n guyyaa bittaa ittisaati."
+msgid "SIN(Number)"
+msgstr "SIN(Number)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148725\n"
-"94\n"
+"04060106.xhp\n"
+"par_id3144950\n"
+"412\n"
"help.text"
-msgid "<emph>FirstCoupon</emph> is the first interest period of the security."
-msgstr "<emph>BoonooDursa</emph>n ittisaa dhala yeroo jalqabati."
+msgid "Returns the (trigonometric) sine of <emph>Number</emph>, the angle in radians."
+msgstr "sine tiriignoomeetirii<emph>lakkoofsaa</emph>,kofa raadiyaanidhaan deebisa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150465\n"
-"95\n"
+"04060106.xhp\n"
+"par_id8079470\n"
"help.text"
-msgid "<emph>Rate</emph> is the annual rate of interest."
-msgstr "<emph>Saffisa</emph>n saffisaa dhalaa waggaati."
+msgid "To return the sine of an angle in degrees, use the RADIANS function."
+msgstr "Sine kofaa diigriidhaan deebisuuf,faankishinii RADIAN fayyadamaa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3146940\n"
-"96\n"
+"04060106.xhp\n"
+"hd_id3144969\n"
+"413\n"
"help.text"
-msgid "<emph>Price</emph> is the price of the security."
-msgstr "<emph>Gatii</emph>n gatii ittisati."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149893\n"
-"97\n"
+"04060106.xhp\n"
+"par_id3144983\n"
+"414\n"
"help.text"
-msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
-msgstr "<emph>Fayyiin</emph> gatii fayyii safartuu ammaa kan gatii harkaa 100 keessaati."
+msgid "<item type=\"input\">=SIN(PI()/2)</item> returns 1, the sine of PI/2 radians."
+msgstr "<item type=\"input\">=SIN(PI()/2)</item> 1 deebisa,sine PI/2 raadiyaanidhaani."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148888\n"
-"98\n"
+"04060106.xhp\n"
+"par_id3916440\n"
"help.text"
-msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
-msgstr "<emph>Ammamtaa</emph>n lakkoofsa kanfaltiiwwan dhalaa waggaati (1, 2 ykn 4)."
+msgid "<item type=\"input\">=SIN(RADIANS(30))</item> returns 0.5, the sine of 30 degrees."
+msgstr "<item type=\"input\">=SIN(RADIANS(30))</item> sine diigrii 60, 0.5 deebisa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3153933\n"
+"04060106.xhp\n"
+"bm_id3163397\n"
"help.text"
-msgid "<bookmark_value>ODDLPRICE function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii ODDLPRICE</bookmark_value>"
+msgid "<bookmark_value>SINH function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii SINH</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3153933\n"
-"103\n"
+"04060106.xhp\n"
+"hd_id3163397\n"
+"418\n"
"help.text"
-msgid "ODDLPRICE"
-msgstr "ODDLPRICE"
+msgid "SINH"
+msgstr "SINH"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145145\n"
-"104\n"
+"04060106.xhp\n"
+"par_id3163426\n"
+"419\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ODDLPRICE\">Calculates the price per 100 currency units par value of a security, if the last interest date falls irregularly.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDLPRICE\">Akka gatii ittisaatti gatii safartuu sharafaa dhibba irraa shallaga, yoo guyyaan dhala xumuraa idileen ala hir'ate.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_SINHYP\">Returns the hyperbolic sine of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SINHYP\">Sine haayiperpoolikii lakkoofsaa deebisa.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3152784\n"
-"105\n"
+"04060106.xhp\n"
+"hd_id3163444\n"
+"420\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155262\n"
-"106\n"
-"help.text"
-msgid "ODDLPRICE(Settlement; Maturity; LastInterest; Rate; Yield; Redemption; Frequency; Basis)"
-msgstr "ODDLPRICE(Qubannoo; Bilchina; DhalaaXumura; Saffisa; Kenna; Fayyii; Ammamtaa; Hundee)"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149689\n"
-"107\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Qubannoo</emph>n guyyaa bittaa ittisaati."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148753\n"
-"108\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>BIlchinni</emph> aduu ittisni itti bilchatee(dulloome)."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150861\n"
-"109\n"
-"help.text"
-msgid "<emph>LastInterest</emph> is the last interest date of the security."
-msgstr "<emph>DhalaaXumura</emph>n ittisa dhala aduu xumuraati."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155831\n"
-"110\n"
-"help.text"
-msgid "<emph>Rate</emph> is the annual rate of interest."
-msgstr "<emph>Saffisnii</emph> saffisaa dhala waggaati."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153328\n"
-"111\n"
-"help.text"
-msgid "<emph>Yield</emph> is the annual yield of the security."
-msgstr "<emph>kenna</emph> kenna waggaa ittisati."
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149186\n"
-"112\n"
+"04060106.xhp\n"
+"par_id3163457\n"
+"421\n"
"help.text"
-msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
-msgstr "<emph>Fayyiin</emph> gatii fayyii safartuu ammaa kan gatii harkaa 100 keessaati."
+msgid "SINH(Number)"
+msgstr "SINH(Lakkoofsa)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149726\n"
-"113\n"
+"04060106.xhp\n"
+"par_id3163471\n"
+"422\n"
"help.text"
-msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
-msgstr "<emph>Ammamtaa</emph>n lakkoofsa kanfaltiiwwan dhalaa waggaati (1, 2 ykn 4)."
+msgid "Returns the hyperbolic sine of <emph>Number</emph>."
+msgstr "Sine haayperpoolikii <emph>lakkoofsaa</emph>deebisa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3153111\n"
-"114\n"
+"04060106.xhp\n"
+"hd_id3163491\n"
+"423\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3152999\n"
-"115\n"
-"help.text"
-msgid "Settlement date: February 7 1999, maturity date: June 15 1999, last interest: October 15 1998. Interest rate: 3.75 per cent, yield: 4.05 per cent, redemption value: 100 currency units, frequency of payments: half-yearly = 2, basis: = 0"
-msgstr "Aduu qubanoo:Bitooteessa 7 1999, aduu bilchinaa: Waxxabajii 15 1999, dhalaa xumuraa: Onkoololeessa 15 1998. Saffisa dhala: paarsantii 3.75, kennaan: paarsantii 4.05, gatiin fayyii: safartuu amma 100, ammamtaa kanfaltiin: walakka waggaati= 2, hundeen:walqixaa 0ti"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148567\n"
-"116\n"
-"help.text"
-msgid "The price per 100 currency units per value of a security, which has an irregular last interest date, is calculated as follows:"
-msgstr "Gatiin safartuu ammaa 100 keessaa ittisa gatii keessaa, kan dhalaa aduu xumuraa idleen alaa, akka armaan gadiiti shallama:"
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150332\n"
-"117\n"
+"04060106.xhp\n"
+"par_id3163504\n"
+"424\n"
"help.text"
-msgid "=ODDLPRICE(\"1999-02-07\";\"1999-06-15\";\"1998-10-15\"; 0.0375; 0.0405;100;2;0) returns 99.87829."
-msgstr "=ODDLPRICE(\"1999-02-07\";\"1999-06-15\";\"1998-10-15\"; 0.0375; 0.0405;100;2;0) returns 99.87829."
+msgid "<item type=\"input\">=SINH(0)</item> returns 0, the hyperbolic sine of 0."
+msgstr "<item type=\"input\">=SINH(0)</item> Sine haayiperpoolikii 0,0 deebisa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3153564\n"
+"04060106.xhp\n"
+"bm_id3163596\n"
"help.text"
-msgid "<bookmark_value>ODDLYIELD function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii ODDLYIELD</bookmark_value>"
+msgid "<bookmark_value>SUM function</bookmark_value><bookmark_value>adding;numbers in cell ranges</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii SUM</bookmark_value><bookmark_value>ida'uu;lakkoofsota hammangawwam man'ee keessa</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3153564\n"
-"118\n"
+"04060106.xhp\n"
+"hd_id3163596\n"
+"428\n"
"help.text"
-msgid "ODDLYIELD"
-msgstr "ODDLYIELD"
+msgid "SUM"
+msgstr "SUM"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3158002\n"
-"119\n"
+"04060106.xhp\n"
+"par_id3163625\n"
+"429\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ODDLYIELD\">Calculates the yield of a security if the last interest date falls irregularly.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDLYIELD\">n yoo dhalii aduu jalqaba idileen al gadi bu'e ittisa kenna shallagameeef.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_SUMME\">Adds all the numbers in a range of cells.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SUMME\">Lakkoofsota hundaa hammangaa man'eewwanii keessatti ida'a.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3147366\n"
-"120\n"
+"04060106.xhp\n"
+"hd_id3163643\n"
+"430\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150018\n"
-"121\n"
+"04060106.xhp\n"
+"par_id3163656\n"
+"431\n"
"help.text"
-msgid "ODDLYIELD(Settlement; Maturity; LastInterest; Rate; Price; Redemption; Frequency; Basis)"
-msgstr "ODDLPRICE(Qubannoo; Bilchina; DhalaaXumura; Saffisa; Gatii; Fayyii; Ammamtaa; Hundee)"
+msgid "SUM(Number1; Number2; ...; Number30)"
+msgstr "SUM(Lakkoofsa1; Lakkoofsa2; ...; Lakkoofsa30)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3159132\n"
-"122\n"
+"04060106.xhp\n"
+"par_id3163671\n"
+"432\n"
"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Qubannoo</emph>n guyyaa bittaa ittisaati."
+msgid "<emph>Number 1 to Number 30</emph> are up to 30 arguments whose sum is to be calculated."
+msgstr "<emph>Lakkoofsi1 haga 30</emph> qocolloota haga 30 firiin isaanii shallagamuudha."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150134\n"
-"123\n"
+"04060106.xhp\n"
+"hd_id3163690\n"
+"433\n"
"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Gayeessummaa</emph>n aduu itti ittisnii guddatu(gatii dhabuu) dha."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145245\n"
-"124\n"
+"04060106.xhp\n"
+"par_id3163704\n"
+"434\n"
"help.text"
-msgid "<emph>LastInterest</emph> is the last interest date of the security."
-msgstr "<emph>DhalaXumura</emph>n ittisa dhala aduu jalqabati."
+msgid "If you enter the numbers <item type=\"input\">2</item>; <item type=\"input\">3 </item>and <item type=\"input\">4</item> in the Number 1; 2 and 3 text boxes, 9 will be returned as the result."
+msgstr "Yoo lakkoofsota <item type=\"input\">2</item>;<item type=\"input\">3</item> fi <item type=\"input\">4</item> lakkoofsa 1;2 fi 3 sanduuqa barruu keessa galchite,9 akka firiitti deebi'a."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151014\n"
-"125\n"
+"04060106.xhp\n"
+"par_id3151740\n"
+"556\n"
"help.text"
-msgid "<emph>Rate</emph> is the annual rate of interest."
-msgstr "<emph>Saffisa</emph>n saffisaa dhala waggaati."
+msgid "<item type=\"input\">=SUM(A1;A3;B5)</item> calculates the sum of the three cells. <item type=\"input\">=SUM (A1:E10)</item> calculates the sum of all cells in the A1 to E10 cell range."
+msgstr "<item type=\"input\">=SUM(A1;A3;B5)</item> Ida'ama man'eewwan sadii shallaga.<item type=\"input\">=SUM (A1:E10)</item> ida'ama man'eewwan hundaa hammangaa man'ee A1 haga E10 keessa jiran shallaga."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149003\n"
-"126\n"
+"04060106.xhp\n"
+"par_id3151756\n"
+"619\n"
"help.text"
-msgid "<emph>Price</emph> is the price of the security."
-msgstr "<emph>Gatiin</emph>n ittisa gatiiti"
+msgid "Conditions linked by AND can be used with the function SUM() in the following manner:"
+msgstr "Haalonni AND dhaan walqabatan faankishinii SUM() wajjin haala armaan gadiitti fayyadamuu danda'ama:"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148880\n"
-"127\n"
+"04060106.xhp\n"
+"par_id3151774\n"
+"620\n"
"help.text"
-msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
-msgstr "<emph>Fayyiin</emph> gatii fayyii safartuu ammaa kan gatii harkaa 100 keessaati."
+msgid "Example assumption: You have entered invoices into a table. Column A contains the date value of the invoice, column B the amounts. You want to find a formula that you can use to return the total of all amounts only for a specific month, e.g. only the amount for the period >=2008-01-01 to <2008-02-01. The range with the date values covers A1:A40, the range containing the amounts to be totaled is B1:B40. C1 contains the start date, 2008<item type=\"input\">-01-01</item>, of the invoices to be included and C2 the date, 2008<item type=\"input\">-02-01</item>, that is no longer included."
+msgstr "Fakkeenya tilmaamaa: Beeksisa waan bitamee gabatee keessatti galchiteetta. Tarjaan A gatii guyyaa kan beeksisa waan bitamee ofkeessaa qaba, tarjaan B hammaadha. Foormulaa barbaaduu barbaadde kan hamma walii galaa keessaa ji'a murtaa'e qofaa fayyadu deebisa,fkf hamma yeroodhaaf qofa >=2008-01-01 to <2008-02-01. The range with the date values covers A1:A40, the range containing the amounts to be totaled is B1:B40. C1 contains the start date, 2008<item type=\"input\">-01-01</item> beeksisa waan bitamee dabalatee fi C2 guyyaa, 2008<item type=\"input\">-02-01</item> sun baay'ee itti hin dabalamu."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155622\n"
-"128\n"
+"04060106.xhp\n"
+"par_id3151799\n"
+"621\n"
"help.text"
-msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
-msgstr "<emph>Ammamtaa</emph>n lakkoofsa kanfaltiiwwan dhalaa waggaati (1, 2 ykn 4)."
+msgid "Enter the following formula as an array formula:"
+msgstr "Foormulaa armaan gadii akka foormulaa waraantotti galchi:"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3145303\n"
-"129\n"
+"04060106.xhp\n"
+"par_id3151813\n"
+"622\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<item type=\"input\">=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)</item>"
+msgstr "<item type=\"input\">=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)</item>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145350\n"
-"130\n"
+"04060106.xhp\n"
+"par_id3151828\n"
+"623\n"
"help.text"
-msgid "Settlement date: April 20 1999, maturity date: June 15 1999, last interest: October 15 1998. Interest rate: 3.75 per cent, price: 99.875 currency units, redemption value: 100 currency units, frequency of payments: half-yearly = 2, basis: = 0"
-msgstr "Aduu qubanoo:Bitooteessa 20 1999, aduu bilchinaa: Waxxabajii 15 1999, dhalaa xumuraa: Onkoololeessa 15 1998. Saffisa dhala: paarsantii 3.75, Gatiin: safartuu amma 99.875, gatiin fayyii: safartuu amma 100, ammamtaan kanfaltii: walakka waggaati= 2, hundeen:walqixaa 0ti"
+msgid "In order to enter this as an array formula, you must press the Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Command </caseinline><defaultinline>+ Ctrl</defaultinline></switchinline>+ Enter keys instead of simply pressing the Enter key to close the formula. The formula will then be shown in the <emph>Formula</emph> bar enclosed in braces."
+msgstr "Kana akka foormulaa waraantootti galchuuf, foormulaa cufuus salphumatti furtuu Enter dhiibuu irra Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Ajaja</caseinline><defaultinline>+ Ctrl</defaultinline></switchinline> + Enter dirqama dhiibuu qabda. Foormulaan <emph>Foormulaa</emph> baarii kan cuftuu keessatti cufame keessatti agarsiifama."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3157990\n"
-"131\n"
+"04060106.xhp\n"
+"par_id3151869\n"
+"624\n"
"help.text"
-msgid "The yield of the security, that has an irregular last interest date, is calculated as follows:"
-msgstr "Kennaaan ittisaa, kan aduu dhala xumura idileen alaa akka armaan gaditi shallagama."
+msgid "{=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)}"
+msgstr "{=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)}"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150572\n"
-"132\n"
+"04060106.xhp\n"
+"par_id3151884\n"
+"625\n"
"help.text"
-msgid "=ODDLYIELD(\"1999-04-20\";\"1999-06-15\"; \"1998-10-15\"; 0.0375; 99.875; 100;2;0) returns 0.044873 or 4.4873%."
-msgstr "=ODDLYIELD(\"1999-04-20\";\"1999-06-15\"; \"1998-10-15\"; 0.0375; 99.875; 100;2;0) returns 0.044873 or 4.4873%."
+msgid "The formula is based on the fact that the result of a comparison is 1 if the criterion is met and 0 if it is not met. The individual comparison results will be treated as an array and used in matrix multiplication, and at the end the individual values will be totaled to give the result matrix."
+msgstr "Foormulaan dhugaa irratti hundaa'udhaan firiin walii galaa kan dorgomsiifame yoo ulaagaan qaqabame 1 fi yoo hin qaqqababne 0 ta'a. Tokkoon tokkoo waldorgomsiifame firii akka waraantotti fudhatame fi baay'isaa matririkis fayyadamee, fi dhuma irratti gatiin tokkoon tokkoo firii maatriksii kennuuf ni ida'ama."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3148768\n"
+"04060106.xhp\n"
+"bm_id3151957\n"
"help.text"
-msgid "<bookmark_value>calculating;variable declining depreciations</bookmark_value><bookmark_value>depreciations;variable declining</bookmark_value><bookmark_value>VDB function</bookmark_value>"
-msgstr "<bookmark_value>shallaguu;dullatamoota jijjiramaa hir'isuu </bookmark_value><bookmark_value>dullaatamoota;jijjiiramaa hir'isuu</bookmark_value><bookmark_value>fankishinii VDB</bookmark_value>"
+msgid "<bookmark_value>SUMIF function</bookmark_value><bookmark_value>adding;specified numbers</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii SUMIF</bookmark_value><bookmark_value>ida'uu;lakkoofsota adda ba'an</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3148768\n"
-"222\n"
+"04060106.xhp\n"
+"hd_id3151957\n"
+"436\n"
"help.text"
-msgid "VDB"
-msgstr "VDB"
+msgid "SUMIF"
+msgstr "SUMIF"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154636\n"
-"223\n"
+"04060106.xhp\n"
+"par_id3151986\n"
+"437\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VDB\">Returns the depreciation of an asset for a specified or partial period using a variable declining balance method.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_VDB\">Toftaa gatii jijjiirama kufaa fayyadamuun dippirisheeshinii qabeenya kan iftaayee ykn gariin yeroof kenna</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_SUMMEWENN\">Adds the cells specified by a given criteria.</ahelp> This function is used to browse a range when you search for a certain value."
+msgstr "<ahelp hid=\"HID_FUNC_SUMMEWENN\">Man'eewwan adda ba'e ulaagaa kennameen ida'a.</ahelp> Faankishiniin kun yeroo gatii wayiitiif barbaaddu hammangaa sakkata'uuf fayyada."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3155519\n"
-"224\n"
+"04060106.xhp\n"
+"hd_id3152015\n"
+"438\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149025\n"
-"225\n"
-"help.text"
-msgid "VDB(Cost; Salvage; Life; S; End; Factor; Type)"
-msgstr "VDB(Gaii; Balaarraa kan hafe; Jiruu; S; Dhuma; Murtibaa; Akaakuu)"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150692\n"
-"226\n"
-"help.text"
-msgid "<emph>Cost</emph> is the initial value of an asset."
-msgstr "<emph>Gatii</emph>'n Gatii calqabaa qabeenyaati."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155369\n"
-"227\n"
-"help.text"
-msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
-msgstr "<emph>Balaarraa kan hafe</emph>Gatii mahaallaqa dhuma Dullatooma ti."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154954\n"
-"228\n"
-"help.text"
-msgid "<emph>Life</emph> is the depreciation duration of the asset."
-msgstr "<emph>Jiruu</emph>'n turtii dullatooma mahallaqati."
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3152817\n"
-"229\n"
+"04060106.xhp\n"
+"par_id3152028\n"
+"439\n"
"help.text"
-msgid "<emph>S</emph> is the start of the depreciation. A must be entered in the same date unit as the duration."
-msgstr "<emph>S</emph>'n jalqabaa dullatoomaati. Akkaa turti safaartuu aduu wal qixaa ta'een galfamuu qaba."
+msgid "SUMIF(Range; Criteria; SumRange)"
+msgstr "SUMIF(Hammangaa; Ulaagaa; Ida'amaHammangaa)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153221\n"
-"230\n"
+"04060106.xhp\n"
+"par_id3152043\n"
+"440\n"
"help.text"
-msgid "<emph>End</emph> is the end of the depreciation."
-msgstr "<emph>Dhuma</emph>'n dhuma dullatootati."
+msgid "<emph>Range</emph> is the range to which the criteria are to be applied."
+msgstr "<emph>Hammagni</emph> hammanga ulaagaan itti hojiirra oolfameedha."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147536\n"
-"231\n"
+"04060106.xhp\n"
+"par_id3152062\n"
+"441\n"
"help.text"
-msgid "<emph>Factor</emph> (optional) is the depreciation factor. Factor = 2 is double rate depreciation."
-msgstr "<emph>Murtibaa</emph>'n (dirqaale) murtiba dullatoomati. Murtibaa = 2'n dhalaa dullatoomaa dachaati."
+msgid "<emph>Criteria</emph> is the cell in which the search criterion is shown, or the search criterion itself. If the criteria is written into the formula, it has to be surrounded by double quotes."
+msgstr "<emph>Ulaagaan</emph> man'ee kan ulaagaan barbaachaa ykn ulaagaan barbaachaa matuma isaatiin, keessatti mul'atuudha."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154865\n"
-"232\n"
+"04060106.xhp\n"
+"par_id3152083\n"
+"442\n"
"help.text"
-msgid "<emph>Type </emph>is an optional parameter. Type = 1 means a switch to linear depreciation. In Type = 0 no switch is made."
-msgstr "<emph>Akaakuu </emph> jijjiramoota dirqaaleeti. Akaakuu = 1'n karaa iti dullatooma sorooro itti jijjiramu dha.Akaakuu = 0 jijjiramni hin ademsiifamu."
+msgid "<emph>SumRange</emph> is the range from which values are summed. If this parameter has not been indicated, the values found in the Range are summed."
+msgstr "<emph>Hammangaanida'amaa</emph> hammangaa kan gatiin irraa ida'amuudha. Yoo jijjiiramaan kun mul'achuu baate, gatiin hammangaa keessatti argame ni ida'ama."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_idN10A0D\n"
+"04060106.xhp\n"
+"par_id8347422\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "SUMIF supports the reference concatenation operator (~) only in the Criteria parameter, and only if the optional SumRange parameter is not given."
+msgstr "SUMIF wabii diraa ogeeyyii(~) ulaagaa jijjiiramaa keessa qofaa, fi yoo jijjiiramaa filannoo Hammanga ida'amaa hin kennamne deegara."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3148429\n"
-"233\n"
+"04060106.xhp\n"
+"hd_id3152110\n"
+"443\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153927\n"
-"234\n"
+"04060106.xhp\n"
+"par_id3152148\n"
+"626\n"
"help.text"
-msgid "What is the declining-balance double-rate depreciation for a period if the initial cost is 35,000 currency units and the value at the end of the depreciation is 7,500 currency units. The depreciation period is 3 years. The depreciation from the 10th to the 20th period is calculated."
-msgstr "Yeroo tokkoof yoo gatiin calqabaa 35,000 safartuu maallaqan fi gatiin xumuraa dullatooma 7,500 safartuu maallaqaan ta'e,makkiin dachaa diprisheeshinii gadii bu'uunsa qarshii meeqa? Yeroon dullatoomaa waggoota 3 ta'a.Dallatoomni yeroo 10ffaa hamma 20ffaa ni shallagama."
+msgid "To sum up only negative numbers: <item type=\"input\">=SUMIF(A1:A10;\"<0\")</item>"
+msgstr "Lakkoofsota negatiivii qofa ida'uuf: <item type=\"input\">=SUMIF(A1:A10;\"<0\")</item>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155991\n"
-"235\n"
+"04060106.xhp\n"
+"par_id6670125\n"
"help.text"
-msgid "<item type=\"input\">=VDB(35000;7500;36;10;20;2)</item> = 8603.80 currency units. The depreciation during the period between the 10th and the 20th period is 8,603.80 currency units."
-msgstr "Safartuu mahallaqan<item type=\"input\">=VDB(35000;7500;36;10;20;2)</item> = 8603.80 ta'a. Yommuu dullatoomani yeroo 10ffaa fi 20ffaa gidduu ta'an safartuu mahallaqaa 8,603.80 ta'a."
+msgid "<item type=\"input\">=SUMIF(A1:A10;\">0\";B1:10)</item> - sums values from the range B1:B10 only if the corresponding values in the range A1:A10 are >0."
+msgstr "<item type=\"input\">=SUMIF(A1:A10;\">0\";B1:10)</item> - gatii hammanga B1:B2 irraa eegalee yoo gatiin gitu hammanga keessaa A1:A2 >0 ta'e ida'a."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3147485\n"
+"04060106.xhp\n"
+"par_id6062196\n"
"help.text"
-msgid "<bookmark_value>calculating;internal rates of return, irregular payments</bookmark_value><bookmark_value>internal rates of return;irregular payments</bookmark_value><bookmark_value>XIRR function</bookmark_value>"
-msgstr "<bookmark_value>shallaguun;dhalaawwwan keessa deebi'an,kaffaltiiwwan idileen alaa</bookmark_value><bookmark_value>dhalawwan keessa deebi'aan;kafffaltiiwwan idlee alaa</bookmark_value><bookmark_value>faankishinii XIRR </bookmark_value>"
+msgid "See COUNTIF() for some more syntax examples that can be used with SUMIF()."
+msgstr "COUNTIF() caasima waa xiqqoo caaluuf fakkeenyaaf kan SUMIF() waliin fayyadame ilaali."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3147485\n"
-"193\n"
+"04060106.xhp\n"
+"bm_id3152195\n"
"help.text"
-msgid "XIRR"
-msgstr "XIRR"
+msgid "<bookmark_value>TAN function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii TAN</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145614\n"
-"194\n"
+"04060106.xhp\n"
+"hd_id3152195\n"
+"446\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_XIRR\">Calculates the internal rate of return for a list of payments which take place on different dates.</ahelp> The calculation is based on a 365 days per year basis, ignoring leap years."
-msgstr "<ahelp hid=\"HID_AAI_FUNC_XIRR\">Tarree kafaltiiwwaniif makkii keessaa deebi'u,kan aduwwan adda addaa keessatti bakka fudhatu shallaga.</ahelp> Shallagichis guyyaawwan 365 waggaa keessaa osoo qammee hin dabalatiin irratti hunda'a."
+msgid "TAN"
+msgstr "TAN"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_idN10E62\n"
+"04060106.xhp\n"
+"par_id3152224\n"
+"447\n"
"help.text"
-msgid "If the payments take place at regular intervals, use the IRR function."
-msgstr "Yoo kaffaltiiwwan gidu'ii idileen adeeme,IRR fankishinii fayyadami."
+msgid "<ahelp hid=\"HID_FUNC_TAN\">Returns the tangent of the given angle (in radians).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TAN\">Tangent kofa(raadiyaanidhaab)kenname deebisa.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3146149\n"
-"195\n"
+"04060106.xhp\n"
+"hd_id3152242\n"
+"448\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149826\n"
-"196\n"
+"04060106.xhp\n"
+"par_id3152255\n"
+"449\n"
"help.text"
-msgid "XIRR(Values; Dates; Guess)"
-msgstr "XIRR(Gatiwwan; Aduuwwan; Malaa dhaayi)"
+msgid "TAN(Number)"
+msgstr "TAN(Lakkoofsa)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3163821\n"
-"197\n"
+"04060106.xhp\n"
+"par_id3152269\n"
+"450\n"
"help.text"
-msgid "<emph>Values</emph> and <emph>Dates</emph> refer to a series of payments and the series of associated date values. The first pair of dates defines the start of the payment plan. All other date values must be later, but need not be in any order. The series of values must contain at least one negative and one positive value (receipts and deposits)."
-msgstr "<emph>Gatiiwwan</emph> fi <emph>Aduuwwan</emph> walfaannee kaffaltiwwan fi walfaannee gatii aduu waliin wal qabatee dha.Cimdiin aduuuwwan calqaba karooraa kaffaltii jalqaba hiika.Gatiiwwan aduu hafan huundii booda,garuu ajaja kamiyyu hin barbaadu.Walfaanneen gatiiwwanii yoo xiqaate neegativii tokkoo fi pozeetiivii tokkoo(kaarniiwwan fi kuufamoota) dirqiin of keessatti qabachuu qaba."
+msgid "Returns the (trigonometric) tangent of <emph>Number</emph>, the angle in radians."
+msgstr "Tangent <emph>Lakkoofsaa</emph> deebisa, kofti raadiyaanidhaani."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149708\n"
-"198\n"
+"04060106.xhp\n"
+"par_id5752128\n"
"help.text"
-msgid "<emph>Guess</emph> (optional) is a guess that can be input for the internal rate of return. The default is 10%."
-msgstr "<emph>Mala-Dhayitii</emph> (Dirqalee) mala dhayitii dhala keessaa deebi'uuf naquu dandeessuu dha. 10% durtii dha."
+msgid "To return the tangent of an angle in degrees, use the RADIANS function."
+msgstr "Tangent kofaa diigriidhaan deebisuuf,faankishinii RADIAN fayyadamaa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3145085\n"
-"199\n"
+"04060106.xhp\n"
+"hd_id3152287\n"
+"451\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149273\n"
-"200\n"
+"04060106.xhp\n"
+"par_id3152301\n"
+"452\n"
"help.text"
-msgid "Calculation of the internal rate of return for the following five payments:"
-msgstr "Dhala keessaa deebi'uuf shallaggii kafaltiiwwan shan armaan gadii:"
+msgid "<item type=\"input\">=TAN(PI()/4) </item>returns 1, the tangent of PI/4 radians."
+msgstr "<item type=\"input\">=TAN(PI()/4) </item>tangent kan raadiyaanii PI/4,1 deebisa"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155838\n"
-"305\n"
+"04060106.xhp\n"
+"par_id1804864\n"
"help.text"
-msgid "A"
-msgstr "A"
+msgid "<item type=\"input\">=TAN(RADIANS(45))</item> returns 1, the tangent of 45 degrees."
+msgstr "<item type=\"input\">=TAN(RADIANS(45))</item> tangent diigrii 45, 1 deebisa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3152934\n"
-"306\n"
+"04060106.xhp\n"
+"bm_id3165434\n"
"help.text"
-msgid "B"
-msgstr "B"
+msgid "<bookmark_value>TANH function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii TANH</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154638\n"
-"307\n"
+"04060106.xhp\n"
+"hd_id3165434\n"
+"456\n"
"help.text"
-msgid "C"
-msgstr "C"
+msgid "TANH"
+msgstr "TANH"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147083\n"
-"308\n"
+"04060106.xhp\n"
+"par_id3165462\n"
+"457\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "<ahelp hid=\"HID_FUNC_TANHYP\">Returns the hyperbolic tangent of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TANHYP\">Tangent haayperpoolikii lakkoofsaa deebisa.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151187\n"
-"309\n"
+"04060106.xhp\n"
+"hd_id3165480\n"
+"458\n"
"help.text"
-msgid "2001-01-01"
-msgstr "2001-01-01"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145212\n"
-"201\n"
+"04060106.xhp\n"
+"par_id3165494\n"
+"459\n"
"help.text"
-msgid "-<item type=\"input\">10000</item>"
-msgstr "-<item type=\"input\">10000</item>"
+msgid "TANH(Number)"
+msgstr "TANH(Lakkoofsa)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3146856\n"
-"202\n"
+"04060106.xhp\n"
+"par_id3165508\n"
+"460\n"
"help.text"
-msgid "<item type=\"input\">Received</item>"
-msgstr "<item type=\"input\">Fudhatame</item>"
+msgid "Returns the hyperbolic tangent of <emph>Number</emph>."
+msgstr "Tangent haayiperpoolikii <emph>Lakkoofsaa</emph> deebisa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153277\n"
-"310\n"
+"04060106.xhp\n"
+"hd_id3165527\n"
+"461\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154052\n"
-"203\n"
+"04060106.xhp\n"
+"par_id3165541\n"
+"462\n"
"help.text"
-msgid "2001-01-02"
-msgstr "2001-01-02"
+msgid "<item type=\"input\">=TANH(0)</item> returns 0, the hyperbolic tangent of 0."
+msgstr "<item type=\"input\">=TANH(0)</item> tangent haayperpoolikii 0, 0 deebisa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151297\n"
-"204\n"
+"04060106.xhp\n"
+"bm_id3165633\n"
"help.text"
-msgid "<item type=\"input\">2000</item>"
-msgstr "<item type=\"input\">2000</item>"
+msgid "<bookmark_value>AutoFilter function; subtotals</bookmark_value><bookmark_value>sums;of filtered data</bookmark_value><bookmark_value>filtered data; sums</bookmark_value><bookmark_value>SUBTOTAL function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii ofmaa calallii; hundamta xiqqaa</bookmark_value><bookmark_value>ida'amtoota;kan deetaa calalame</bookmark_value><bookmark_value>deetaa calalame; ida'amtoota</bookmark_value><bookmark_value>Faankishinii SUBTOTAL</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149985\n"
-"205\n"
+"04060106.xhp\n"
+"hd_id3165633\n"
+"466\n"
"help.text"
-msgid "<item type=\"input\">Deposited</item>"
-msgstr "<item type=\"input\">Kuusame</item>"
+msgid "SUBTOTAL"
+msgstr "SUBTOTAL"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154744\n"
-"311\n"
+"04060106.xhp\n"
+"par_id3165682\n"
+"467\n"
"help.text"
-msgid "3"
-msgstr "3"
+msgid "<ahelp hid=\"HID_FUNC_TEILERGEBNIS\">Calculates subtotals.</ahelp> If a range already contains subtotals, these are not used for further calculations. Use this function with the AutoFilters to take only the filtered records into account."
+msgstr "<ahelp hid=\"HID_FUNC_TEILERGEBNIS\">Walakkeessaa hundaa shallaguu.</ahelp> Yoo hammangaan dursee walakkeessa hundaa ofkeessaa qabaate, shallaggii biraatiif hin fayyadan. Galmee calalame gara kontootti qofa fudhachuuf faankishinii kana ofmaacalallii wajjin fayyadami."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153151\n"
-"206\n"
+"04060106.xhp\n"
+"hd_id3165704\n"
+"495\n"
"help.text"
-msgid "2001-03-15"
-msgstr "2001-03-15"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145657\n"
-"207\n"
+"04060106.xhp\n"
+"par_id3165717\n"
+"496\n"
"help.text"
-msgid "2500"
-msgstr "2500"
+msgid "SUBTOTAL(Function; Range)"
+msgstr "SUBTOTAL(Faankishinii; Hammangaa)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155101\n"
-"312\n"
+"04060106.xhp\n"
+"par_id3165731\n"
+"497\n"
"help.text"
-msgid "4"
-msgstr "4"
+msgid "<emph>Function</emph> is a number that stands for one of the following functions:"
+msgstr "<emph>Faankishiniin </emph> lakkoofsa faankishinoota armaan gadii keessaa tokkoof dhaabbatuudha."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3146894\n"
-"208\n"
+"04060106.xhp\n"
+"par_id3165782\n"
+"469\n"
"help.text"
-msgid "2001-05-12"
-msgstr "2001-05-12"
+msgid "Function index"
+msgstr "Kasaa faankishinii"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3143231\n"
-"209\n"
+"04060106.xhp\n"
+"par_id3165806\n"
+"470\n"
"help.text"
-msgid "5000"
-msgstr "5000"
+msgid "Function"
+msgstr "Fankishinii"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3156012\n"
-"313\n"
+"04060106.xhp\n"
+"par_id3165833\n"
+"471\n"
"help.text"
-msgid "5"
-msgstr "5"
+msgid "1"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149758\n"
-"210\n"
+"04060106.xhp\n"
+"par_id3165856\n"
+"472\n"
"help.text"
-msgid "2001-08-10"
-msgstr "2001-08-10"
+msgid "AVERAGE"
+msgstr "AVERAGE"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147495\n"
-"211\n"
+"04060106.xhp\n"
+"par_id3165883\n"
+"473\n"
"help.text"
-msgid "1000"
-msgstr "1000"
+msgid "2"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3152793\n"
-"212\n"
+"04060106.xhp\n"
+"par_id3165906\n"
+"474\n"
"help.text"
-msgid "=XIRR(B1:B5; A1:A5; 0.1) returns 0.1828."
-msgstr "=XIRR(B1:B5; A1:A5; 0.1) 0.1828 kenna."
+msgid "COUNT"
+msgstr "COUNT"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3149198\n"
+"04060106.xhp\n"
+"par_id3165933\n"
+"475\n"
"help.text"
-msgid "<bookmark_value>XNPV function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii XNPV </bookmark_value>"
+msgid "3"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3149198\n"
-"213\n"
+"04060106.xhp\n"
+"par_id3165956\n"
+"476\n"
"help.text"
-msgid "XNPV"
-msgstr "XNPV"
+msgid "COUNTA"
+msgstr "COUNTA"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153904\n"
-"214\n"
+"04060106.xhp\n"
+"par_id3165983\n"
+"477\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_XNPV\">Calculates the capital value (net present value)for a list of payments which take place on different dates.</ahelp> The calculation is based on a 365 days per year basis, ignoring leap years."
-msgstr "<ahelp hid=\"HID_AAI_FUNC_XNPV\">Tarree kafaltiiwwaniif gatii maallaqa jalqabaa(gatii qulkee ammaa)kan aduwwan adda addaa keessatti bakka fudhatu shallaga.</ahelp> Shallagichis guyyaawwan 365 waggaa keessaa osoo qammee hin dabalatiin irratti hunda'a."
+msgid "4"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_idN11138\n"
+"04060106.xhp\n"
+"par_id3166006\n"
+"478\n"
"help.text"
-msgid "If the payments take place at regular intervals, use the NPV function."
-msgstr "Yoo kafaltiiwwan giddu'uuwwan falfakkaatan adeeme,faankishinii NPV fayyadami."
+msgid "MAX"
+msgstr "MAX"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3155323\n"
-"215\n"
+"04060106.xhp\n"
+"par_id3166033\n"
+"479\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "5"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150117\n"
-"216\n"
+"04060106.xhp\n"
+"par_id3166056\n"
+"480\n"
"help.text"
-msgid "XNPV(Rate; Values; Dates)"
-msgstr "XNPV(Dhala; Gatiiwwan; Aduuwwan)"
+msgid "MIN"
+msgstr "MIN"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153100\n"
-"217\n"
+"04060106.xhp\n"
+"par_id3143316\n"
+"481\n"
"help.text"
-msgid "<emph>Rate</emph> is the internal rate of return for the payments."
-msgstr "<emph>Dhalli</emph> kafaltiif dhala kessaa deebisa."
+msgid "6"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155395\n"
-"218\n"
+"04060106.xhp\n"
+"par_id3143339\n"
+"482\n"
"help.text"
-msgid "<emph>Values</emph> and <emph>Dates</emph> refer to a series of payments and the series of associated date values. The first pair of dates defines the start of the payment plan. All other date values must be later, but need not be in any order. The series of values must contain at least one negative and one positive value (receipts and deposits)"
-msgstr "<emph>Gatiiwwan</emph> fi <emph>Aduuwan</emph> walfaannee kaffaltiwwan fi walfaannee gatii aduu waliin wal qabatee dha.Cimdiin aduuuwwan calqaba karooraa kaffaltii jalqaba hiika.Gatiiwwan aduu hafan huundii booda,garuu ajaja kamiyyu hin barbaadu.Walfaanneen gatiiwwanii yoo xiqaate neegativii tokkoo fi pozeetiivii tokkoo(kaarniiwwan fi kuufamoota) dirqiin of keessatti qabachuu qaba."
+msgid "PRODUCT"
+msgstr "PRODUCT"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3148832\n"
-"219\n"
+"04060106.xhp\n"
+"par_id3143366\n"
+"483\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "7"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150525\n"
-"220\n"
+"04060106.xhp\n"
+"par_id3143389\n"
+"484\n"
"help.text"
-msgid "Calculation of the net present value for the above-mentioned five payments for a notional internal rate of return of 6%."
-msgstr "dhala keessaa waalta'aaf shallagni gatii qulkee ammaa kan kaffaltiiwwa shanan armaan olitti eeramaniif 6% kenna"
+msgid "STDEV"
+msgstr "STDEV"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149910\n"
-"221\n"
+"04060106.xhp\n"
+"par_id3143416\n"
+"485\n"
"help.text"
-msgid "<item type=\"input\">=XNPV(0.06;B1:B5;A1:A5)</item> returns 323.02."
-msgstr "<item type=\"input\">=XNPV(0.06;B1:B5;A1:A5)</item> 323.02 kenna."
+msgid "8"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3148822\n"
+"04060106.xhp\n"
+"par_id3143439\n"
+"486\n"
"help.text"
-msgid "<bookmark_value>calculating;rates of return</bookmark_value><bookmark_value>RRI function</bookmark_value>"
-msgstr "<bookmark_value>shallaguuf;dhaloota deebi'u</bookmark_value><bookmark_value>faankishinii RRI</bookmark_value>"
+msgid "STDEVP"
+msgstr "STDEVP"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3148822\n"
-"237\n"
+"04060106.xhp\n"
+"par_id3143466\n"
+"487\n"
"help.text"
-msgid "RRI"
-msgstr "RRI"
+msgid "9"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154293\n"
-"238\n"
+"04060106.xhp\n"
+"par_id3143489\n"
+"488\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZGZ\">Calculates the interest rate resulting from the profit (return) of an investment.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZGZ\">Makkii dhalaa kan bu'aa(kenna) inveestimeentii irraa argamu shallaga.</ahelp>"
+msgid "SUM"
+msgstr "SUM"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3148444\n"
-"239\n"
+"04060106.xhp\n"
+"par_id3143516\n"
+"489\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "10"
+msgstr "10"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148804\n"
-"240\n"
+"04060106.xhp\n"
+"par_id3143539\n"
+"490\n"
"help.text"
-msgid "RRI(P; PV; FV)"
-msgstr "RRI(P; PV; FV)"
+msgid "VAR"
+msgstr "VAR"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154901\n"
-"241\n"
+"04060106.xhp\n"
+"par_id3143566\n"
+"491\n"
"help.text"
-msgid "<emph>P</emph> is the number of periods needed for calculating the interest rate."
-msgstr "<emph>P</emph>'n lakkoofsa yeroowwan makkii dhalaaf barbaachisu shallaguu."
+msgid "11"
+msgstr "11"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3159149\n"
-"242\n"
+"04060106.xhp\n"
+"par_id3143589\n"
+"492\n"
"help.text"
-msgid "<emph>PV</emph> is the present (current) value. The cash value is the deposit of cash or the current cash value of an allowance in kind. As a deposit value a positive value must be entered; the deposit must not be 0 or <0."
-msgstr "<emph>PV</emph>gatii ammeeti.Gatiin callaa kuusaa challaa ykn gatii callaa ammee kan akaakuun durgoo ti.Akkaa gatii kuusatti gatii poozeetivii ta'ee dirqiin gala;gatiin kuusaa 0 ykn <0 ta'uu hin qabu."
+msgid "VARP"
+msgstr "VARP"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149771\n"
-"243\n"
+"04060106.xhp\n"
+"par_id3143606\n"
+"498\n"
"help.text"
-msgid "<emph>FV</emph> determines what is desired as the cash value of the deposit."
-msgstr "<emph>FV</emph>'n maaltu akka gatii callaa kuusaatti barbaachisa jedhu murteessa"
+msgid "<emph>Range</emph> is the range whose cells are included."
+msgstr "<emph>Hammangaan</emph> hammangaa man'eewwan itti dabalameedha."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3148941\n"
-"244\n"
+"04060106.xhp\n"
+"hd_id3143625\n"
+"499\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154212\n"
-"245\n"
-"help.text"
-msgid "For four periods (years) and a cash value of 7,500 currency units, the interest rate of the return is to be calculated if the future value is 10,000 currency units."
-msgstr "Yoroowwan (wagggoota) afuri fi gatiin callaa 7,500 safaruuwwan ammeen,makkiin dhalaa deebi'uu kan shallagamuu yoo gatiin egeree 10,000 safartuuwwan ammeen ta'ee dha."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150775\n"
-"246\n"
-"help.text"
-msgid "<item type=\"input\">=RRI(4;7500;10000)</item> = 7.46 %"
-msgstr "<item type=\"input\">=RRI(4;7500;10000)</item> = 7.46 %"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3145413\n"
-"247\n"
-"help.text"
-msgid "The interest rate must be 7.46 % so that 7,500 currency units will become 10,000 currency units."
-msgstr "Makkii dhalaa dirqiin 7.46% ta'uu qaba kanaaf 7,500 safartuuwwan ammeen gara 10,000 safartuu ammeetti ta'a jechuu dha"
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3154267\n"
+"04060106.xhp\n"
+"par_id3143638\n"
+"562\n"
"help.text"
-msgid "<bookmark_value>calculating;constant interest rates</bookmark_value><bookmark_value>constant interest rates</bookmark_value><bookmark_value>RATE function</bookmark_value>"
-msgstr "<bookmark_value>Shallaguun;makkii dhalaawwan dhaabbataa</bookmark_value><bookmark_value>makkii dhalaawwan dhaabbataa</bookmark_value><bookmark_value>fankiishinii RATE</bookmark_value>"
+msgid "You have a table in the cell range A1:B5 containing cities in column A and accompanying figures in column B. You have used an AutoFilter so that you only see rows containing the city Hamburg. You want to see the sum of the figures that are displayed; that is, just the subtotal for the filtered rows. In this case the correct formula would be:"
+msgstr "Hammangaa man'ee A1:B5 magaalota tarjaa A keessa fi fakkiiwwan waliin deeman tarjaa B keessa kan qabate gabatee qabaachuu qabna. Ofmaacalalamaa fayyadamte kanaaf tarree magaala Hamburgii qofa qabu argita. Ida'ama fakkaawwanii kan mul'ate arguu barbaaddaa; kunis, hundam hundaa kan tarree calalamee ta'a. As keessatti foormulaa sirrii kan ta'uu qabu:"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3154267\n"
-"249\n"
+"04060106.xhp\n"
+"par_id3143658\n"
+"563\n"
"help.text"
-msgid "RATE"
-msgstr "RATE"
+msgid "<item type=\"input\">=SUBTOTAL(9;B2:B5)</item>"
+msgstr "<item type=\"input\">=SUBTOTAL(9;B2:B5)</item>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151052\n"
-"250\n"
+"04060106.xhp\n"
+"bm_id3143672\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZINS\">Returns the constant interest rate per period of an annuity.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZINS\">Yeroo yerootti waggaa keessa makkii dhalaa dhaabbataa kenna.</ahelp>"
+msgid "<bookmark_value>Euro; converting</bookmark_value><bookmark_value>EUROCONVERT function</bookmark_value>"
+msgstr "<bookmark_value>Euroo; jijjiiruu</bookmark_value><bookmark_value>Faankishinii CONVERT </bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3154272\n"
-"251\n"
+"04060106.xhp\n"
+"hd_id3143672\n"
+"564\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "EUROCONVERT"
+msgstr "EUROCONVERT"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3158423\n"
-"252\n"
+"04060106.xhp\n"
+"par_id3143708\n"
+"565\n"
"help.text"
-msgid "RATE(NPer; Pmt; PV; FV; Type; Guess)"
-msgstr "RATE(NPer; Pmt; PV; FV; Type; Guess)"
+msgid "<ahelp hid=\"HID_FUNC_UMRECHNEN\">Converts between old European national currency and to and from Euros.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_UMRECHNEN\">Mahaalaqa biyyoolessaEroopiyaani durii gidduu jijjiiruu fi gara Euroosii fi Euroosii irraa.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148910\n"
-"253\n"
+"04060106.xhp\n"
+"par_id3143731\n"
+"566\n"
"help.text"
-msgid "<emph>NPer</emph> is the total number of periods, during which payments are made (payment period)."
-msgstr "<emph>NPer</emph>'n lakkoofsa dimshaasha yeroo,kan kaffaaltiin itti adeemsifamuu dha(yeroo kaffaltii)."
+msgid "<emph>Syntax</emph>"
+msgstr "<emph>Caasima</emph>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148925\n"
-"254\n"
+"04060106.xhp\n"
+"par_id3143748\n"
+"567\n"
"help.text"
-msgid "<emph>Pmt</emph> is the constant payment (annuity) paid during each period."
-msgstr "<emph>Pmt</emph>n kaffaltii dhaabbataa(waggaan) kan tokko tokkoo yeroo irratti kaffalamuu dha."
+msgid "EUROCONVERT(Value; \"From_currency\"; \"To_currency\", full_precision, triangulation_precision)"
+msgstr "EUROCONVERT(Gatii; \"Mahaalaqa_irraa\"; \"Mahaalaqatti\", sirrummaa_guutuu, sirrummaa_rogsadeessuu)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149160\n"
-"255\n"
+"04060106.xhp\n"
+"par_id3143763\n"
+"568\n"
"help.text"
-msgid "<emph>PV</emph> is the cash value in the sequence of payments."
-msgstr "<emph>PV</emph>'n gatii callaa duuraa duubaa kaffaltiiti."
+msgid "<emph>Value</emph> is the amount of the currency to be converted."
+msgstr "<emph>Gatiin</emph> hamma maallaqaa jijjiiramuudha."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3166456\n"
-"256\n"
+"04060106.xhp\n"
+"par_id3143782\n"
+"569\n"
"help.text"
-msgid "<emph>FV</emph> (optional) is the future value, which is reached at the end of the periodic payments."
-msgstr "<emph>FV</emph>'n (dirqalee) gatii egere ti, kunis dhuma kaffaltiiwwan yeroo itti qaqabuuti."
+msgid "<emph>From_currency</emph> and <emph>To_currency</emph> are the currency units to convert from and to respectively. These must be text, the official abbreviation for the currency (for example, \"EUR\"). The rates (shown per Euro) were set by the European Commission."
+msgstr "<emph>Maallaqa_irraa</emph> fi<emph>Gara_maallaqaa</emph> safartuu maallaqa itti fi irraa duraa duuban jijjiiramuudha. Kuni dirqama barruu ta'uu qaba, maallaqaaf kontooffachiifni beekamaan (fakkeenyaaf \"EURO\"). Maakkiin (EURO tokkoon kan ilaalame) koomishinii yuuroopitiin qindaa'e."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153243\n"
-"257\n"
+"04060106.xhp\n"
+"par_id0119200904301810\n"
"help.text"
-msgid "<emph>Type</emph> (optional) is the due date of the periodic payment, either at the beginning or at the end of a period."
-msgstr "<emph>Type</emph>'n (dirqaale)guyyaa dhumaa kaffaltii yerooti,jalqaba ykn dhumaa yerooti."
+msgid "<emph>Full_precision</emph> is optional. If omitted or False, the result is rounded according to the decimals of the To currency. If Full_precision is True, the result is not rounded."
+msgstr "<emph>Sirrummaa_guutuun</emph> dirqala. Yoo dhiisame ykn Soba ta'e, bu'aan isaa akka Gara maallaqaatti gara lakkurnyeetti buutama. Yoo Sirrummaa_guutuun Dhugaa ta'e, deebiin walitti hin buutamu."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3146949\n"
-"258\n"
+"04060106.xhp\n"
+"par_id0119200904301815\n"
"help.text"
-msgid "<emph>Guess</emph> (optional) determines the estimated value of the interest with iterative calculation."
-msgstr "<emph>Mala dhayii</emph>'n (dirqaale) gatii makkii shallaggii deddebi'aan shallaguun tilmaamamee mureessa."
+msgid "<emph>Triangulation_precision</emph> is optional. If Triangulation_precision is given and >=3, the intermediate result of a triangular conversion (currency1,EUR,currency2) is rounded to that precision. If Triangulation_precision is omitted, the intermediate result is not rounded. Also if To currency is \"EUR\", Triangulation_precision is used as if triangulation was needed and conversion from EUR to EUR was applied."
+msgstr "<emph>Sirrummaa_garsadeeffamaan</emph> dirqala. Yoo sirrummaan_garsadeeffamaa kennamee fi >=3, bu'aan gidduu jijjiirraa garsadee (maallaqaa1,EUR,maallaqaa2) gara sirrummaatti buutama. Yoo sirrummaan_garsadeeffamaa dhiifame,bu'aan gidduu hin buutamu. Akkasumas Gara maallaqaatti \"EUR\" ta'e, sirrummaan_garsadeeffamaa akka garsadeeffamaa barbaadameetti fayyada fi jijjiirraan EUR gara EUR hojii irra oola."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_idN10E2A\n"
+"04060106.xhp\n"
+"par_id3143819\n"
+"570\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "<emph>Examples</emph>"
+msgstr "<emph>Fakkeenyota</emph>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3149791\n"
-"259\n"
+"04060106.xhp\n"
+"par_id3143837\n"
+"571\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<item type=\"input\">=EUROCONVERT(100;\"ATS\";\"EUR\")</item> converts 100 Austrian Schillings into Euros."
+msgstr "<item type=\"input\">=EUROCONVERT(100;\"ATS\";\"EUR\")</item> Shilingii awustiraaliyaa 100 gara Uurootti jiijjira."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150706\n"
-"260\n"
+"04060106.xhp\n"
+"par_id3143853\n"
+"572\n"
"help.text"
-msgid "What is the constant interest rate for a payment period of 3 periods if 10 currency units are paid regularly and the present cash value is 900 currency units."
-msgstr "Yoo gatiin callaa ammee qarshii 900 mallaqa safartuun ta'ee fi qarshii 10 safartu maallaqan idileen kaffalama ta'ee,yeroo kaffaltii 3'f yeroon kaffaltii makkii dhalaa dhaabbataa meeqaa?"
+msgid "<item type=\"input\">=EUROCONVERT(100;\"EUR\";\"DEM\")</item> converts 100 Euros into German Marks."
+msgstr "<item type=\"input\">=EUROCONVERT(100;\"EUR\";\"DEM\")</item>Uuroo 100 gara Maarkisii Jaarmaniitti jijjiira."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155586\n"
-"261\n"
+"04060106.xhp\n"
+"bm_id0908200902090676\n"
"help.text"
-msgid "<item type=\"input\">=RATE(3;10;900)</item> = -121% The interest rate is therefore 121%."
-msgstr "<item type=\"input\">=RATE(3;10;900)</item> = -121% kanaafuu makkiin dhalaa 121% ta'a."
+msgid "<bookmark_value>CONVERT function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii JIJJIIRI</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3149106\n"
+"04060106.xhp\n"
+"hd_id0908200902074836\n"
"help.text"
-msgid "<bookmark_value>INTRATE function</bookmark_value>"
-msgstr "<bookmark_value>faankiishinii INTRATE</bookmark_value>"
+msgid "CONVERT"
+msgstr "CONVERT"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3149106\n"
-"60\n"
+"04060106.xhp\n"
+"par_id0908200902131122\n"
"help.text"
-msgid "INTRATE"
-msgstr "INTRATE"
+msgid "<ahelp hid=\".\">Converts a value from one unit of measurement to another unit of measurement. The conversion factors are given in a list in the configuration.</ahelp>"
+msgstr "<ahelp hid=\".\">Gatii safartuu tokko irraa gara safartuu birootti jijjiira. Sababootni jijjiirraa tarree qindaayinaa keessatti ni kennamu.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149918\n"
-"61\n"
+"04060106.xhp\n"
+"par_id0908200902475420\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_INTRATE\">Calculates the annual interest rate that results when a security (or other item) is purchased at an investment value and sold at a redemption value. No interest is paid.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_INTRATE\">yommuu ittisni (ykn wanta gara bira ) gatii inveestimeentiin bitamee fi gatii mugoota kanfaluun gurguramee,makkii dhala waggaa kana argamsiise shallaga.</ahelp>"
+msgid "At one time the list of conversion factors included the legacy European currencies and the Euro (see examples below). We suggest using the new function EUROCONVERT for converting these currencies."
+msgstr "Al tokkotti tarreen sababoota jijjiirraa kennata maallaqaalee AwurooppEUROCONVERaa keessa jiran akkasumas Yuuroon (fakkeenya armaan gadii ilaali). Faankishinii haaraa EUROCONVERT waliin maalaqoota kana jijjiiruu dandeessa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3149974\n"
-"62\n"
+"04060106.xhp\n"
+"hd_id0908200902131071\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149800\n"
-"63\n"
-"help.text"
-msgid "INTRATE(Settlement; Maturity; Investment; Redemption; Basis)"
-msgstr "INTRATE(Qubannoo; Gayeessummaa ; Kaawwatii; Mugoota kanfaluu; Hundee)"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148618\n"
-"64\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Qubannoo</emph>'n guyyaa ittisni itti bitamedha."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148988\n"
-"65\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security is sold."
-msgstr "<emph>Gayeessummaa</emph>'n guyyaa ittisni itti gurgurame dha."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154604\n"
-"66\n"
-"help.text"
-msgid "<emph>Investment</emph> is the purchase price."
-msgstr "<emph>Kaawwatii</emph>'n gatii bittaati."
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154337\n"
-"67\n"
+"04060106.xhp\n"
+"par_id0908200902131191\n"
"help.text"
-msgid "<emph>Redemption</emph> is the selling price."
-msgstr "<emph>Mugoota kanfaluu</emph>'n gatii gurgurtaati. the selling price."
+msgid "CONVERT(value;\"text\";\"text\")"
+msgstr "JIJJIIRI(gatii;\"barruu\";\"barruu\")"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3145380\n"
-"68\n"
+"04060106.xhp\n"
+"hd_id0908200902131152\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149426\n"
-"69\n"
+"04060106.xhp\n"
+"par_id090820090213112\n"
"help.text"
-msgid "A painting is bought on 1990-01-15 for 1 million and sold on 2002-05-05 for 2 million. The basis is daily balance calculation (basis = 3). What is the average annual level of interest?"
-msgstr "Dibun bara 1990-01-15 miiliyoona 1 bitame bara 2002-05-05 miiliyoona 2 gurgurame.hundee shallaggi haftoo guyyaati (hundee = 3).giduugalli sadarkaa makkii waggaa meeqa?"
+msgid "<item type=\"input\">=CONVERT(100;\"ATS\";\"EUR\")</item> returns the Euro value of 100 Austrian Schillings."
+msgstr "<item type=\"input\">=JIJJIIRI(100;\"ATS\";\"EUR\")</item> Gatii Yuuroo Shilingoota Oostriyaa 100 deebisa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151125\n"
-"70\n"
+"04060106.xhp\n"
+"par_id0908200902475431\n"
"help.text"
-msgid "=INTRATE(\"1990-01-15\"; \"2002-05-05\"; 1000000; 2000000; 3) returns 8.12%."
-msgstr "=INTRATE(\"1990-01-15\"; \"2002-05-05\"; 1000000; 2000000; 3) 8.12% kenna."
+msgid "=CONVERT(100;\"EUR\";\"DEM\") converts 100 Euros into German Marks."
+msgstr "=CONVERT(100;\"EUR\";\"DEM\") Yuuroota 100 gara Maarkoota Jarmaniitti jijjiira."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3148654\n"
+"04060106.xhp\n"
+"bm_id3157177\n"
"help.text"
-msgid "<bookmark_value>COUPNCD function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii COUPNCD</bookmark_value>"
+msgid "<bookmark_value>ODD function</bookmark_value><bookmark_value>rounding;up/down to nearest odd integer</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii ODD</bookmark_value><bookmark_value>siiqsuu;ol/gadi gara intijarii qaraa dhiyootti</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3148654\n"
-"163\n"
+"04060106.xhp\n"
+"hd_id3157177\n"
+"502\n"
"help.text"
-msgid "COUPNCD"
-msgstr "COUPNCD"
+msgid "ODD"
+msgstr "ODD"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149927\n"
-"164\n"
+"04060106.xhp\n"
+"par_id3157205\n"
+"503\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COUPNCD\">Returns the date of the first interest date after the settlement date. Format the result as a date.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPNCD\">aduu qubannoo booda guyyaa jalqaba makkiif yeroo kenna.Firii akka aduutti dhangeessi.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_UNGERADE\">Rounds a positive number up to the nearest odd integer and a negative number down to the nearest odd integer.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_UNGERADE\">Lakkoofsa positiivii hanga intijarii qaraa itti aanuuttii fi lakkoofsa negatiivii gadi gara intijarii qaraa itti aanuutti siqsa.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3153317\n"
-"165\n"
+"04060106.xhp\n"
+"hd_id3157223\n"
+"504\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150423\n"
-"166\n"
-"help.text"
-msgid "COUPNCD(Settlement; Maturity; Frequency; Basis)"
-msgstr "COUPNCD(Qubannoo; Bilchina; Ammamtaa; Hundee)"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150628\n"
-"167\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Qubannoo</emph>n guyyaa bittaa itttisaati."
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153536\n"
-"168\n"
+"04060106.xhp\n"
+"par_id3157237\n"
+"505\n"
"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Bilchinni</emph> aduu ittisni itti bilchaatu (irra darbu)."
+msgid "ODD(Number)"
+msgstr "ODD(Lakkoofsa)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145313\n"
-"169\n"
+"04060106.xhp\n"
+"par_id3157250\n"
+"506\n"
"help.text"
-msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
-msgstr "<emph>Ammamtaa</emph>n lakkoofsa kanfaltiiwwan dhalaa waggaati (1, 2 ykn 4)."
+msgid "Returns <emph>Number</emph> rounded to the next odd integer up, away from zero."
+msgstr "<emph>Lakkoofsa</emph> gara intijarii qaraa oliitti, zeeroo irraa deebisa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3155424\n"
-"170\n"
+"04060106.xhp\n"
+"hd_id3157270\n"
+"507\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154794\n"
-"171\n"
-"help.text"
-msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) when is the next interest date?"
-msgstr "Ittisni 2001-01-25 bitame; aduun bilchinaa 20001-11-15 ta'a.Shallaga madaala dhala guyyaa (hundee 3) fayyadamuudhan aduun dhala itti aanuu meeqa?"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3159251\n"
-"172\n"
-"help.text"
-msgid "=COUPNCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2001-05-15."
-msgstr "=COUPNCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) 2001-05-15 kenna."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"bm_id3143281\n"
-"help.text"
-msgid "<bookmark_value>COUPDAYS function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii COUPDAYS</bookmark_value>"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3143281\n"
-"143\n"
-"help.text"
-msgid "COUPDAYS"
-msgstr "COUPDAYS"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149488\n"
-"144\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYS\">Returns the number of days in the current interest period in which the settlement date falls.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPDAYS\">Lakkoofsa guyyoota dhala yeroo ammaa keessaa kan aduun qubannoo irra oolu kenna.</ahelp>"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3148685\n"
-"145\n"
-"help.text"
-msgid "Syntax"
-msgstr "Caasima"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149585\n"
-"146\n"
-"help.text"
-msgid "COUPDAYS(Settlement; Maturity; Frequency; Basis)"
-msgstr "COUPDAYS(Qubannoo; Bilchina; Ammamtaa; Hundee)"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3152767\n"
-"147\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Qubannoo</emph>n guyyaa bittaa ittisaati."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3151250\n"
-"148\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Bilchinni</emph> guyyaa ittisni itti bilchaatu (irra darbu)"
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3146126\n"
-"149\n"
+"04060106.xhp\n"
+"par_id3157283\n"
+"508\n"
"help.text"
-msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
-msgstr "<emph>Ammamtaa</emph>n lakkoofsa dhala kanfaltii waggaati (1, 2 ykn 4)"
+msgid "<item type=\"input\">=ODD(1.2)</item> returns 3."
+msgstr "<item type=\"input\">=ODD(1.2)</item> 3 deebisa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3153705\n"
-"150\n"
+"04060106.xhp\n"
+"par_id8746910\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<item type=\"input\">=ODD(1)</item> returns 1."
+msgstr "<item type=\"input\">=ODD(1)</item> 1 deebisa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147530\n"
-"151\n"
+"04060106.xhp\n"
+"par_id9636524\n"
"help.text"
-msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days are there in the interest period in which the settlement date falls?"
-msgstr "Ittisni 2001-01-25 bitame; aduun bilchinaa 20001-11-15 ta'a.Shallaga madaala dhala guyyaa (hundee 3) fayyadamuudhan guyyoota meqatuu yeroo dhalaa kan guyyaan qubannoo irra ooluu keessa jiru?"
+msgid "<item type=\"input\">=ODD(0)</item> returns 1."
+msgstr "<item type=\"input\">=ODD(0)</item> 1 deebisa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3156338\n"
-"152\n"
+"04060106.xhp\n"
+"par_id5675527\n"
"help.text"
-msgid "=COUPDAYS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 181."
-msgstr "=COUPDAYS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) 181 kenna."
+msgid "<item type=\"input\">=ODD(-3.1)</item> returns -5."
+msgstr "<item type=\"input\">=ODD(-3.1)</item> -5 deebisa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3154832\n"
+"04060106.xhp\n"
+"bm_id3157404\n"
"help.text"
-msgid "<bookmark_value>COUPDAYSNC function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii COUPDAYSNC</bookmark_value>"
+msgid "<bookmark_value>FLOOR function</bookmark_value><bookmark_value>rounding;down to nearest multiple of significance</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii FLOOR</bookmark_value><bookmark_value>baay'ataa siignifikansii gara gadi dhihootti;siiqsuu</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3154832\n"
-"153\n"
+"04060106.xhp\n"
+"hd_id3157404\n"
+"512\n"
"help.text"
-msgid "COUPDAYSNC"
-msgstr "COUPDAYSNC"
+msgid "FLOOR"
+msgstr "FLOOR"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147100\n"
-"154\n"
+"04060106.xhp\n"
+"par_id3157432\n"
+"513\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYSNC\">Returns the number of days from the settlement date until the next interest date.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPDAYSNC\">Lakkoofsa guyyoota aduu qubannoo hanga aduu dhalaa itti aanutti jiran kenna.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_UNTERGRENZE\">Rounds a number down to the nearest multiple of Significance.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_UNTERGRENZE\">Lakkoofsa gara baay'ataa signifikansii dhihootti siiqsa.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3151312\n"
-"155\n"
+"04060106.xhp\n"
+"hd_id3157451\n"
+"514\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155121\n"
-"156\n"
+"04060106.xhp\n"
+"par_id3157464\n"
+"515\n"
"help.text"
-msgid "COUPDAYSNC(Settlement; Maturity; Frequency; Basis)"
-msgstr "COUPDAYSNC(Qubannoo; Bilchina; Ammamtaa; Hundee)"
+msgid "FLOOR(Number; Significance; Mode)"
+msgstr "FLOOR(Lakkoofsa; Siignifikaansii; Moodii)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3158440\n"
-"157\n"
+"04060106.xhp\n"
+"par_id3157478\n"
+"516\n"
"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Qubannoo</emph>n guyyaa bittaa ittisaati."
+msgid "<emph>Number</emph> is the number that is to be rounded down."
+msgstr "<emph>Lakkoofsi</emph> lakkoofsa gara gadiitti siiqfameedha."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3146075\n"
-"158\n"
+"04060106.xhp\n"
+"par_id3157497\n"
+"517\n"
"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Bilchinni</emph> guyyaa ittisni itti bilchaatu (irra darbu)."
+msgid "<emph>Significance</emph> is the value to whose multiple the number is to be rounded down."
+msgstr "<emph>siignifikaansiin</emph> lakkoofsa hirmaanneen gatii isaa gadi siiqfameedha."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154620\n"
-"159\n"
+"04060106.xhp\n"
+"par_id3157517\n"
+"561\n"
"help.text"
-msgid "<emph>Frequency </emph>is number of interest payments per year (1, 2 or 4)."
-msgstr "<emph>Ammamtaa</emph>n lakkoofsa kanfaltiiwwan dhalaa waggaati (1, 2 ykn 4)."
+msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of the number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter."
+msgstr "<emph>Moodiin</emph> gatii filannooti. Yoo Moodiin kennamee fi zeeroo yoo hin taane, fi yoo lakkoofsi fi siignifikaansiin negatiivii ta'an, siiqsuun gatsirrii lakkoofsaa irratti hundaa'udhaan taasifama."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3155604\n"
-"160\n"
+"04060106.xhp\n"
+"par_id3163894\n"
+"630\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "If both parameters Number and Significance are negative, and if the Mode value is equal to zero or is not specified, then the results in $[officename] Calc and Excel will differ after exporting. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc."
+msgstr "Yoo lakkoofsi jijjiiramaa fi siignifikaansiin lachuu negatiifii ta'an fi gatiin moodii zeeroodhaan walqixa ta'an ykn yoo hin kennamne,firiin %[officename] calc fi Excel adda ta'a edda alerguu dhumeen booda.Yoo wardii gara Excelitti alerginu,firii walfakkaatu EXseelii calc keessatti ilaaluuf, Moodii=1 fayyadami."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148671\n"
-"161\n"
+"04060106.xhp\n"
+"hd_id3163932\n"
+"518\n"
"help.text"
-msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days are there until the next interest payment?"
-msgstr "Ittisni 2001-01-25 bitame; aduun bilchinaa 20001-11-15 ta'a.Shallaga madaala dhala guyyaa (hundee 3) fayyadamuudhan hanga aduu dhalaa itti aanuutti guyyoota meeqatuu argamuu?"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3156158\n"
-"162\n"
+"04060106.xhp\n"
+"par_id3163945\n"
+"519\n"
"help.text"
-msgid "=COUPDAYSNC(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 110."
-msgstr "=COUPDAYSNC(\"2001-01-25\"; \"2001-11-15\"; 2; 3) 110 kenna."
+msgid "<item type=\"input\">=FLOOR( -11;-2)</item> returns -12"
+msgstr "<item type=\"input\">=FLOOR( -11;-2)</item> -12 deebisa"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3150408\n"
+"04060106.xhp\n"
+"par_id3163966\n"
+"520\n"
"help.text"
-msgid "<bookmark_value>COUPDAYBS function</bookmark_value><bookmark_value>durations;first interest payment until settlement date</bookmark_value><bookmark_value>securities;first interest payment until settlement date</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii COUPDAYBS </bookmark_value><bookmark_value>Turmaatawwan;kanfaltii dhalaa 1ffaa hanga aduu qubannootti</bookmark_value><bookmark_value>ittisawwan;kanfaltii dhalaa 1fffaa hanga aduu qubannootti</bookmark_value>"
+msgid "<item type=\"input\">=FLOOR( -11;-2;0)</item> returns -12"
+msgstr "<item type=\"input\">=FLOOR( -11;-2;0)</item> -12 deebisa"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3150408\n"
-"133\n"
+"04060106.xhp\n"
+"par_id3163988\n"
+"521\n"
"help.text"
-msgid "COUPDAYBS"
-msgstr "COUPDAYBS"
+msgid "<item type=\"input\">=FLOOR( -11;-2;1)</item> returns -10"
+msgstr "<item type=\"input\">=FLOOR( -11;-2;1)</item> -10 deebisa"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3146795\n"
-"134\n"
+"04060106.xhp\n"
+"bm_id3164086\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYBS\">Returns the number of days from the first day of interest payment on a security until the settlement date.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPDAYBS\">Lakkoofsa guuyyootaa guyyyaa kanfaltii dhalaa 1ffaa ittisaa irraa kaasee hanga aduu qubannootti kenna.</ahelp>"
+msgid "<bookmark_value>SIGN function</bookmark_value><bookmark_value>algebraic signs</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii SIGN</bookmark_value><bookmark_value>mallattoowwan aljebraas</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3156142\n"
-"135\n"
+"04060106.xhp\n"
+"hd_id3164086\n"
+"523\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "SIGN"
+msgstr "SIGN"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3159083\n"
-"136\n"
+"04060106.xhp\n"
+"par_id3164115\n"
+"524\n"
"help.text"
-msgid "COUPDAYBS(Settlement; Maturity; Frequency; Basis)"
-msgstr "COUPDAYBS(Qubannoo; Bilchina; Ammamtaa; Hundee)"
+msgid "<ahelp hid=\"HID_FUNC_VORZEICHEN\">Returns the sign of a number. Returns 1 if the number is positive, -1 if negative and 0 if zero.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VORZEICHEN\">Mallattoo lakkoofsa deebisa. Yoo lakkoofsi positiivii ta'e 1 deebisa, yoo negatiivii -1 deebisa fi yoo zero ta'e 0 deebisa.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3146907\n"
-"137\n"
+"04060106.xhp\n"
+"hd_id3164136\n"
+"525\n"
"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Qubannoo</emph> aduu bittaa ittisaati."
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3159390\n"
-"138\n"
+"04060106.xhp\n"
+"par_id3164150\n"
+"526\n"
"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Bilchinni</emph> aduu ittisni itti bilchaatu (irra darbu)"
+msgid "SIGN(Number)"
+msgstr "SIGN(Lakkoofsa)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154414\n"
-"139\n"
+"04060106.xhp\n"
+"par_id3164164\n"
+"527\n"
"help.text"
-msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
-msgstr "<emph>Ammamtaa</emph>n lakkoofsa kanfaltiiwwan dhalaa waggaati (1, 2 ykn 4)."
+msgid "<emph>Number</emph> is the number whose sign is to be determined."
+msgstr "<emph>Lakkoofsi</emph> lakkoofsa mallattoon isaa murtaa'edha."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3153880\n"
-"140\n"
+"04060106.xhp\n"
+"hd_id3164183\n"
+"528\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150592\n"
-"141\n"
+"04060106.xhp\n"
+"par_id3164197\n"
+"529\n"
"help.text"
-msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days is this?"
-msgstr "Ittisni 2001-01-25 bitame; aduun bilchinaa 20001-11-15 ta'a.Dhalli waggaa walakkaatti kanfalama.Shallaga madaala dhala guyyaa (hundee 3) fayyadamuudhan kun guyyoota meeqa?"
+msgid "<item type=\"input\">=SIGN(3.4)</item> returns 1."
+msgstr "<item type=\"input\">=SIGN(3.4)</item> 1 deebisa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151103\n"
-"142\n"
+"04060106.xhp\n"
+"par_id3164212\n"
+"530\n"
"help.text"
-msgid "=COUPDAYBS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 71."
-msgstr "=COUPDAYBS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) 71 kenna."
+msgid "<item type=\"input\">=SIGN(-4.5)</item> returns -1."
+msgstr "<item type=\"input\">=SIGN(-4.5)</item> -1 deebisa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3152957\n"
+"04060106.xhp\n"
+"bm_id3164252\n"
"help.text"
-msgid "<bookmark_value>COUPPCD function</bookmark_value><bookmark_value>dates;interest date prior to settlement date</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii COUPPCD</bookmark_value><bookmark_value>aduuwwan;aduu dhalaa aduu qubannoo duraa</bookmark_value>"
+msgid "<bookmark_value>MROUND function</bookmark_value><bookmark_value>nearest multiple</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii MROUND</bookmark_value><bookmark_value>baay'ataa dhiyoo</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3152957\n"
-"183\n"
+"04060106.xhp\n"
+"hd_id3164252\n"
+"658\n"
"help.text"
-msgid "COUPPCD"
-msgstr "COUPPCD"
+msgid "MROUND"
+msgstr "MROUND"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153678\n"
-"184\n"
+"04060106.xhp\n"
+"par_id3164288\n"
+"659\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COUPPCD\">Returns the date of the interest date prior to the settlement date. Format the result as a date.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPPCD\">aduu aduu dhalaa aduu qubannoo duraa kenna. Bu'aa akka aduutti dhangeessi.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_MROUND\">Returns a number rounded to the nearest multiple of another number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_MROUND\">Returns a number rounded to the nearest multiple of another number.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3156269\n"
-"185\n"
+"04060106.xhp\n"
+"hd_id3164306\n"
+"660\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153790\n"
-"186\n"
-"help.text"
-msgid "COUPPCD(Settlement; Maturity; Frequency; Basis)"
-msgstr "COUPNCD(Qubannoo; Bilchina; Ammamtaa; Hundee)"
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150989\n"
-"187\n"
+"04060106.xhp\n"
+"par_id3164320\n"
+"661\n"
"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisaati."
+msgid "MROUND(Number; Multiple)"
+msgstr "MROUND(Lakkoofsa; Qooyyaboota)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154667\n"
-"188\n"
+"04060106.xhp\n"
+"par_id3486434\n"
"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Bilchinni</emph> aduu ittisni itti bilchaatu (irra darbu)."
+msgid "Returns <emph>Number</emph> rounded to the nearest multiple of <emph>Multiple</emph>."
+msgstr "<emph>Lakkoofsa</emph> gara baay'ataa kan<emph>Baay'ataa</emph> siiqfame deebisa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154569\n"
-"189\n"
+"04060106.xhp\n"
+"par_id3068636\n"
"help.text"
-msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
-msgstr "<emph>Ammamtaa</emph>n lakkoofsa kanfaltiiwwan dhalaa waggaati (1, 2 ykn 4)."
+msgid "An alternative implementation would be <item type=\"literal\">Multiple * ROUND(Number/Multiple)</item>."
+msgstr "Raawwiin karaa biraa ta'uu qabu <item type=\"literal\">Multiple * ROUND(Lakkoofsa/Baay'ataa)</item>."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3150826\n"
-"190\n"
+"04060106.xhp\n"
+"hd_id3164333\n"
+"662\n"
"help.text"
msgid "Example"
-msgstr "Fakkenya"
+msgstr "Fakkeenya"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148968\n"
-"191\n"
+"04060106.xhp\n"
+"par_id3164347\n"
+"663\n"
"help.text"
-msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) what was the interest date prior to purchase?"
-msgstr "Ittisni 2001-01-25 bitame; aduun bilchinaa 20001-11-15 ta'a.dhalli waggaa walakkaatti kanfalama (ammamtaan 2).Shallaga madaala dhala guyyaa (hundee 3) fayyadamuudhan aduun dhala bittaa dura jitu kamii?"
+msgid "<item type=\"input\">=MROUND(15.5;3)</item> returns 15, as 15.5 is closer to 15 (= 3*5) than to 18 (= 3*6)."
+msgstr "<item type=\"input\">=MROUND(15.5;3)</item> 15 akka 15.5 tti deebisa 15(3*5) 18(=3*6) caalaa baay'ee dhiyoodha."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149992\n"
-"192\n"
+"04060106.xhp\n"
+"par_idN14DD6\n"
"help.text"
-msgid "=COUPPCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2000-15-11."
-msgstr "=COUPPCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) 2000-15-11 kenna."
+msgid "<item type=\"input\">=MROUND(1.4;0.5)</item> returns 1.5 (= 0.5*3)."
+msgstr "<item type=\"input\">=MROUND(1.4;0.5)</item> 1.5 (= 0.5*3) deebisa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3150673\n"
+"04060106.xhp\n"
+"bm_id3164375\n"
"help.text"
-msgid "<bookmark_value>COUPNUM function</bookmark_value><bookmark_value>number of coupons</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii COUPNUM</bookmark_value><bookmark_value>lakkoofsa boonoowwani</bookmark_value>"
+msgid "<bookmark_value>SQRT function</bookmark_value><bookmark_value>square roots;positive numbers</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii SQRT</bookmark_value><bookmark_value>iskuweerii ruuttii;lakkoofsota positiivii</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3150673\n"
-"173\n"
+"04060106.xhp\n"
+"hd_id3164375\n"
+"532\n"
"help.text"
-msgid "COUPNUM"
-msgstr "COUPNUM"
+msgid "SQRT"
+msgstr "SQRT"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154350\n"
-"174\n"
+"04060106.xhp\n"
+"par_id3164404\n"
+"533\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COUPNUM\">Returns the number of coupons (interest payments) between the settlement date and the maturity date.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPNUM\">Lakkoofsa boonoowwan (kanfaltiiwwan dhalaa) gidduu aduu qubannoo fi aduu bilchinaatti argaman kenna.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_WURZEL\">Returns the positive square root of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_WURZEL\">Iskuweer ruuttii positiivii kan lakkoofsaa deebisa.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3148400\n"
-"175\n"
+"04060106.xhp\n"
+"hd_id3164424\n"
+"534\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153200\n"
-"176\n"
-"help.text"
-msgid "COUPNUM(Settlement; Maturity; Frequency; Basis)"
-msgstr "COUPNUM(Qubannoo; Bilchina; Ammamtaa; Hundee)"
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3159406\n"
-"177\n"
+"04060106.xhp\n"
+"par_id3164437\n"
+"535\n"
"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisaati."
+msgid "SQRT(Number)"
+msgstr "SQRT(Lakkoofsa)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155864\n"
-"178\n"
+"04060106.xhp\n"
+"par_id3164451\n"
+"536\n"
"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Bilchinni</emph> aduu ittisni itti bilchaatu (irra darbu)."
+msgid "Returns the positive square root of <emph>Number</emph>."
+msgstr "Iskuweer ruuttii posotiivii<emph>Lakkoofsaa</emph>deebisa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154720\n"
-"179\n"
+"04060106.xhp\n"
+"par_id6870021\n"
"help.text"
-msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
-msgstr "<emph>Ammamtaa</emph>n lakkoofsa kanfaltiiwwan dhalaa waggaati (1, 2 ykn 4)."
+msgid "Number must be positive."
+msgstr "Lakkoofsi dirqama positiivii ta'uu qaba"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3149319\n"
-"180\n"
+"04060106.xhp\n"
+"hd_id3164471\n"
+"537\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3152460\n"
-"181\n"
+"04060106.xhp\n"
+"par_id3164484\n"
+"538\n"
"help.text"
-msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many interest dates are there?"
-msgstr "Ittisni 2001-01-25 bitame; aduun bilchinaa 20001-11-15 ta'a.Dhalli waggaa walakkaatti kanfalama.Shallaga madaala dhala guyyaa (hundee 3) fayyadamuudhan aduuwwan dhalaa meeqatuu jiraa?"
+msgid "<item type=\"input\">=SQRT(16)</item> returns 4."
+msgstr "<item type=\"input\">=SQRT(16)</item> 4 deebisa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150640\n"
-"182\n"
+"04060106.xhp\n"
+"par_id3591723\n"
"help.text"
-msgid "=COUPNUM(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2."
-msgstr "=COUPNUM(\"2001-01-25\"; \"2001-11-15\"; 2; 3) 2 kenna."
+msgid "<item type=\"input\">=SQRT(-16)</item> returns an <item type=\"literal\">invalid argument</item> error."
+msgstr "<item type=\"input\">=SQRT(-16)</item> dogogora <item type=\"literal\">qoccolloo hin fayyadne</item> deebisa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3149339\n"
+"04060106.xhp\n"
+"bm_id3164560\n"
"help.text"
-msgid "<bookmark_value>IPMT function</bookmark_value><bookmark_value>periodic amortizement rates</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii IPMT</bookmark_value><bookmark_value>safffisawwan irradedeebin jala jalaa baasuu</bookmark_value>"
+msgid "<bookmark_value>SQRTPI function</bookmark_value><bookmark_value>square roots;products of Pi</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii SQRTPI </bookmark_value><bookmark_value>iskuwer ruuttii;baay'ataa kan Pi</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3149339\n"
-"263\n"
+"04060106.xhp\n"
+"hd_id3164560\n"
+"665\n"
"help.text"
-msgid "IPMT"
-msgstr "IPMT"
+msgid "SQRTPI"
+msgstr "SQRTPI"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154522\n"
-"264\n"
+"04060106.xhp\n"
+"par_id3164596\n"
+"666\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZINSZ\">Calculates the periodic amortizement for an investment with regular payments and a constant interest rate.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZINSZ\">Kaawwatii kanfaltii idilee fi saffisa dhala seranaa wajjiniitif irradedeebi jala jalaa baasuu shallaga.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_SQRTPI\">Returns the square root of (PI times a number).</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_SQRTPI\">Iskuwer ruuttii kan(PI lakkoofsaa) deebisa.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3153266\n"
-"265\n"
+"04060106.xhp\n"
+"hd_id3164614\n"
+"667\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3151283\n"
-"266\n"
-"help.text"
-msgid "IPMT(Rate; Period; NPer; PV; FV; Type)"
-msgstr "IPMT(Saffisa; Yeroo; NPer; PV; FV; Akaakuu)"
-
-#: 04060118.xhp
-#, fuzzy
-msgctxt ""
-"04060118.xhp\n"
-"par_id3147313\n"
-"267\n"
-"help.text"
-msgid "<emph>Rate</emph> is the periodic interest rate."
-msgstr "<emph>Saffisni</emph> irradedeebi saffisa dhalaati."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3145158\n"
-"268\n"
-"help.text"
-msgid "<emph>Period</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
-msgstr "<emph>Yeroo</emph>n yeroo, kan dhalli dhalaa shallagamuufi dha.Yeroo=NPER yoo dhalli dhalaa yeroo dhumaatif shallagame."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3147577\n"
-"269\n"
-"help.text"
-msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
-msgstr "<emph>NPer</emph>n ida'ama lakkoofsa yeroowwanii,kan yommuu galiin waggaa itti kanfalamu."
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3156211\n"
-"270\n"
+"04060106.xhp\n"
+"par_id3164627\n"
+"668\n"
"help.text"
-msgid "<emph>PV</emph> is the present cash value in sequence of payments."
-msgstr "<emph>PV</emph>ntartiiba kanfaltiwwanii keessatti gatii horii callaa ammaati."
+msgid "SQRTPI(Number)"
+msgstr "SQRTPI(Lakkoofsa)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151213\n"
-"271\n"
+"04060106.xhp\n"
+"par_id1501510\n"
"help.text"
-msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
-msgstr "<emph>FV</emph> (filannoo) xumura yeroowwanii irratti gatii barbaadamaa (gatii duranaa) dha."
+msgid "Returns the positive square root of (PI multiplied by <emph>Number</emph>)."
+msgstr "Iskuwer ruuttii posotiivii ta'e kan ( PI <emph>Lakkoofsaan</emph>/baay'ate) deebisa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154195\n"
-"272\n"
+"04060106.xhp\n"
+"par_id9929197\n"
"help.text"
-msgid "<emph>Type</emph> is the due date for the periodic payments."
-msgstr "<emph>Akaakuu</emph>n kanfaltiiwwan irradedeebif aduu ta'umsaati."
+msgid "This is equivalent to <item type=\"literal\">SQRT(PI()*Number)</item>."
+msgstr "Kuni <item type=\"literal\">SQRT(PI()*Number)</item> kana waliin walgita."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3150102\n"
-"273\n"
+"04060106.xhp\n"
+"hd_id3164641\n"
+"669\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149438\n"
-"274\n"
-"help.text"
-msgid "What is the interest rate during the fifth period (year) if the constant interest rate is 5% and the cash value is 15,000 currency units? The periodic payment is seven years."
-msgstr "Yoo saffisni dhala seranaa 5% fi gatiin horii callaa safartuu sharafaa 15,000 ta'e saffisni dhalaa yeroo shanaffaa(waggaa) hagamii? Irradedebin kanfaltii waggoota torba."
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150496\n"
-"275\n"
+"04060106.xhp\n"
+"par_id3164654\n"
+"670\n"
"help.text"
-msgid "<item type=\"input\">=IPMT(5%;5;7;15000)</item> = -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
-msgstr "<item type=\"input\">=IPMT(5%;5;7;15000)</item> = -352.97 safartuu sharafaa. Dhalli dhalaa yeroo shanaffaa (waggaa) safartuu sharafaa 352.97 dha."
+msgid "<item type=\"input\">=SQRTPI(2)</item> returns the squareroot of (2PI), approximately 2.506628."
+msgstr "<item type=\"input\">=SQRTPI(2)</item> iskuweer ruuttii kan (2PI), tilmaamaan 2.506628 deebisa."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3151205\n"
+"04060106.xhp\n"
+"bm_id3164669\n"
"help.text"
-msgid "<bookmark_value>calculating;future values</bookmark_value><bookmark_value>future values;constant interest rates</bookmark_value><bookmark_value>FV function</bookmark_value>"
-msgstr "<bookmark_value>shallaguu;gatiiwwan egeree</bookmark_value><bookmark_value>gatiiwwan egeree;saffisawwan dhala seranaa</bookmark_value><bookmark_value>fankishinii FV</bookmark_value>"
+msgid "<bookmark_value>random numbers; between limits</bookmark_value><bookmark_value>RANDBETWEEN function</bookmark_value>"
+msgstr "<bookmark_value>random numbers; between limits</bookmark_value><bookmark_value>RANDBETWEEN function</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3151205\n"
-"277\n"
+"04060106.xhp\n"
+"hd_id3164669\n"
+"671\n"
"help.text"
-msgid "FV"
-msgstr "FV"
+msgid "RANDBETWEEN"
+msgstr "RANDBETWEEN"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154140\n"
-"278\n"
+"04060106.xhp\n"
+"par_id3164711\n"
+"672\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZW\">Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value).</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZW\">Irradedeebi, kanfaltiiwwan seranaa fi saffisa dhala seranaa (gatii egeree) irratti hundaa'uudhan gatii egeree kaawwatii kenna.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_RANDBETWEEN\">Returns an integer random number in a specified range.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_RANDBETWEEN\">Lakkoofsa tasaa intijarii hammanga adda ba'e keessa jiru deebisa.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3155178\n"
-"279\n"
+"04060106.xhp\n"
+"hd_id3164745\n"
+"673\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3145215\n"
-"280\n"
-"help.text"
-msgid "FV(Rate; NPer; Pmt; PV; Type)"
-msgstr "FV(Saffisa; NPer; Pmt; PV; Akaakuu)"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155136\n"
-"281\n"
-"help.text"
-msgid "<emph>Rate</emph> is the periodic interest rate."
-msgstr "<emph>saffisni</emph> irradedeebi saffisa dhalaati."
-
-#: 04060118.xhp
-#, fuzzy
-msgctxt ""
-"04060118.xhp\n"
-"par_id3156029\n"
-"282\n"
-"help.text"
-msgid "<emph>NPer</emph> is the total number of periods (payment period)."
-msgstr "<emph>NPer</emph>n lakkoofsa ida'ama yeroowwaniiti (yeroo kanfaltii)."
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151322\n"
-"283\n"
+"04060106.xhp\n"
+"par_id3164758\n"
+"674\n"
"help.text"
-msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
-msgstr "<emph>NPer</emph>n galii dhaabata waggaa yeroo idileetin kanfalamu."
+msgid "RANDBETWEEN(Bottom; Top)"
+msgstr "RANDBETWEEN(Gubbaa; Jala)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145256\n"
-"284\n"
+"04060106.xhp\n"
+"par_id7112338\n"
"help.text"
-msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
-msgstr "<emph>NPer</emph> (filannoo) gatii horii callaa (ammaa) kaawwatiiti."
+msgid "Returns an integer random number between integers <emph>Bottom</emph> and <emph>Top</emph> (both inclusive)."
+msgstr "Lakkoofsa tasaa intijarii intijaroota jidduudhaa<emph>Jala</emph> fi <emph>Gubbaa</emph> (lachuu dabalatee)."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150999\n"
-"285\n"
+"04060106.xhp\n"
+"par_id2855616\n"
"help.text"
-msgid "<emph>Type</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
-msgstr "<emph>Akaakuu</emph>n (dirqaala) kanfaltiin xumura ykn jalqaba yerootti ta'uusaa qindeessa."
+msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
+msgstr "Faankishiniin kun lakkoofsa tasaa haaraa yeroo hunda calc deebisee shallagu oomisha. Calc akka deebisee shallagu dirqisiisuuf hujeeka shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 dhiibi."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_idN114D8\n"
+"04060106.xhp\n"
+"par_id2091433\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "To generate random numbers which never recalculate, copy cells containing this function, and use <item type=\"menuitem\">Edit - Paste Special</item> (with <item type=\"menuitem\">Paste All</item> and <item type=\"menuitem\">Formulas</item> not marked and <item type=\"menuitem\">Numbers</item> marked)."
+msgstr "Lakkoofsota tasaa kan gongumaa deebi'ee hin shallagamne, man'eewwan faankishinii kana qaban garagalchuu, fi <item type=\"menuitem\">Gulaaluu-maxxansuu addaa</item> (maxxansa <item type=\"menuitem\">Hundaa wajjin</item>fi<item type=\"menuitem\">Foormulaawwan</item> hin mallattoofne fi Lakkoofsota <item type=\"menuitem\">mallattaa'e</item> fayyadami)."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3146800\n"
-"286\n"
+"04060106.xhp\n"
+"hd_id3164772\n"
+"675\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3146813\n"
-"287\n"
-"help.text"
-msgid "What is the value at the end of an investment if the interest rate is 4% and the payment period is two years, with a periodic payment of 750 currency units. The investment has a present value of 2,500 currency units."
-msgstr "Yoo saffisni dhalaa 4% fi yeroon kanfaltii waggoota lama, kanfaltii irradedeebi safartuu sharafaa 750 ta'e gatiin xumura kaawwatii hagamii? Kawwatiin gatii ammaa safartuu sharafaa 2,500 qaba."
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149302\n"
-"288\n"
+"04060106.xhp\n"
+"par_id3164785\n"
+"676\n"
"help.text"
-msgid "<item type=\"input\">=FV(4%;2;750;2500) </item>= -4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
-msgstr "<item type=\"input\">=FV(4%;2;750;2500) </item>= -4234.00 safartuu sharafaa. gatiin xumura kaawwatii safartuu sharafaa 4234.00 ta'a."
+msgid "<item type=\"input\">=RANDBETWEEN(20;30)</item> returns an integer of between 20 and 30."
+msgstr "<item type=\"input\">=RANDBETWEEN(20;30)</item> intijarii 20 fi 30 gidduu jiru deebisa"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3155912\n"
+"04060106.xhp\n"
+"bm_id3164800\n"
"help.text"
-msgid "<bookmark_value>FVSCHEDULE function</bookmark_value><bookmark_value>future values;varying interest rates</bookmark_value>"
-msgstr "<bookmark_value>fankishinii FVSCHEDULE</bookmark_value><bookmark_value>gatiiwwan egeree;saffisawwan dhalaa gegeeddara</bookmark_value>"
+msgid "<bookmark_value>RAND function</bookmark_value><bookmark_value>random numbers;between 0 and 1</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii RAND</bookmark_value><bookmark_value>lakkoofsota tasaa; 0 fi 1 gidduu</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3155912\n"
-"51\n"
+"04060106.xhp\n"
+"hd_id3164800\n"
+"542\n"
"help.text"
-msgid "FVSCHEDULE"
-msgstr "FVSCHEDULE"
+msgid "RAND"
+msgstr "RAND"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3163726\n"
-"52\n"
+"04060106.xhp\n"
+"par_id3164829\n"
+"543\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_FVSCHEDULE\">Calculates the accumulated value of the starting capital for a series of periodically varying interest rates.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_FVSCHEDULE\">Tartiibawwan saffisawwan dhalaa yeroo yeroon gegeeddaramaniif kaapitaa jaqabaa irraa gatii kuuusame shallaga.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ZUFALLSZAHL\">Returns a random number between 0 and 1.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZUFALLSZAHL\">Lakkoofsa tasaa 0 fi 1 gidduu jiru deebisa.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3149571\n"
-"53\n"
+"04060106.xhp\n"
+"hd_id3164870\n"
+"545\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148891\n"
-"54\n"
+"04060106.xhp\n"
+"par_id3164884\n"
+"546\n"
"help.text"
-msgid "FVSCHEDULE(Principal; Schedule)"
-msgstr "FVSCHEDULE(Bu'uura; Kurfeessaa)"
+msgid "RAND()"
+msgstr "RAND()"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148904\n"
-"55\n"
+"04060106.xhp\n"
+"par_id5092318\n"
"help.text"
-msgid "<emph>Principal</emph> is the starting capital."
-msgstr "<emph>Bu'uurri</emph> ka'umsa kapitaalati."
+msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
+msgstr "Faankishiniin kun lakkoofsa tasaa haaraa yeroo hunda calc deebisee shallagu oomisha. Calc akka deebisee shallagu dirqisiisuuf hujeeka shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 dhiibi."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148562\n"
-"56\n"
+"04060106.xhp\n"
+"par_id9312417\n"
"help.text"
-msgid "<emph>Schedule</emph> is a series of interest rates, for example, as a range H3:H5 or as a (List) (see example)."
-msgstr "<emph>kurfeesaa</emph>n tartiibawwan saffisawwan dhalaati, fakkenyyaf, akka hammngatti H3:h5 ykn akka (tarree) (fakkeenya ilaali)."
+msgid "To generate random numbers which never recalculate, copy cells each containing =RAND(), and use <item type=\"menuitem\">Edit - Paste Special</item> (with <item type=\"menuitem\">Paste All</item> and <item type=\"menuitem\">Formulas</item> not marked and <item type=\"menuitem\">Numbers</item> marked)."
+msgstr "Lakkoofsota tasaa kan gongumaa deebi'ee hin shallagamne, man'eewwan =RAND(), qaban garagalchuu, fi <item type=\"menuitem\">Gulaaluu-maxxansuu addaa</item> (maxxansa <item type=\"menuitem\">Hundaa wajjin</item>fi<item type=\"menuitem\">Foormulaawwan</item> hin mallattoofne fi Lakkoofsota <item type=\"menuitem\">mallattaa'e</item> fayyadami)."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3147288\n"
-"57\n"
+"04060106.xhp\n"
+"hd_id9089022\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148638\n"
-"58\n"
-"help.text"
-msgid "1000 currency units have been invested in for three years. The interest rates were 3%, 4% and 5% per annum. What is the value after three years?"
-msgstr "safartuun sharafaa 1000 waggoota sadiif kaawwatame.Saffisni dhalaa waggaatti 3%, 4% fi 5% dha. waggaa sadi booda gatiin meeqaa?"
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3156358\n"
-"59\n"
+"04060106.xhp\n"
+"par_id9569078\n"
"help.text"
-msgid "<item type=\"input\">=FVSCHEDULE(1000;{0.03;0.04;0.05})</item> returns 1124.76."
-msgstr "<item type=\"input\">=FVSCHEDULE(1000;{0.03;0.04;0.05})</item> 1124.76 kenna."
+msgid "<item type=\"input\">=RAND()</item> returns a random number between 0 and 1."
+msgstr "<item type=\"input\">=RAND()</item> returns a random number between 0 and 1."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3156435\n"
+"04060106.xhp\n"
+"bm_id3164897\n"
"help.text"
-msgid "<bookmark_value>calculating;number of payment periods</bookmark_value><bookmark_value>payment periods;number of</bookmark_value><bookmark_value>number of payment periods</bookmark_value><bookmark_value>NPER function</bookmark_value>"
-msgstr "<bookmark_value>shallaguu;lakkoofsa yeroowwan kanfaltii</bookmark_value><bookmark_value>yeroowwan kanfaltii;lakkofsa</bookmark_value><bookmark_value>lakoofsa yeroowwan kanfaltii</bookmark_value><bookmark_value>fankishinii NPER</bookmark_value>"
+msgid "<bookmark_value>COUNTIF function</bookmark_value><bookmark_value>counting;specified cells</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii COUNTIF</bookmark_value><bookmark_value>lakkaa'uu;man'eewwan adda ba'an</bookmark_value>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3156435\n"
-"290\n"
+"04060106.xhp\n"
+"hd_id3164897\n"
+"547\n"
"help.text"
-msgid "NPER"
-msgstr "NPER"
+msgid "COUNTIF"
+msgstr "COUNTIF"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3152363\n"
-"291\n"
+"04060106.xhp\n"
+"par_id3164926\n"
+"548\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZZR\">Returns the number of periods for an investment based on periodic, constant payments and a constant interest rate.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZZR\">Irradedeebii, kanfatiiwwan seranaa fi saffisa dhala seranaa (gatii egeree) irratti hundaa'uudhan kaawwatiidhaf lakkoofsa yeroowwanii kenna.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ZAEHLENWENN\">Returns the number of cells that meet with certain criteria within a cell range.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZAEHLENWENN\">Lakkoofsa man'eewwanii kan ulaagaa wayii hammangaa man'ee keessaa waliin wal qabatu deebisa.</ahelp>"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3147216\n"
-"292\n"
+"04060106.xhp\n"
+"hd_id3164953\n"
+"549\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155934\n"
-"293\n"
-"help.text"
-msgid "NPER(Rate; Pmt; PV; FV; Type)"
-msgstr "NPER(Saffisa; Pmt; PV; FV; akaakuu)"
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155946\n"
-"294\n"
+"04060106.xhp\n"
+"par_id3164967\n"
+"550\n"
"help.text"
-msgid "<emph>Rate</emph> is the periodic interest rate."
-msgstr "<emph>Saffisni</emph> irradedeebi saffisa dhalaati."
+msgid "COUNTIF(Range; Criteria)"
+msgstr "COUNTIF(Hammangaa; Ulaagaa)"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149042\n"
-"295\n"
+"04060106.xhp\n"
+"par_id3164980\n"
+"551\n"
"help.text"
-msgid "<emph>Pmt</emph> is the constant annuity paid in each period."
-msgstr "<emph>Pmt</emph>'n tokkoon tokkoo yeroo kessatti galii waggaa dhabbataa kanfalame dha."
+msgid "<emph>Range</emph> is the range to which the criteria are to be applied."
+msgstr "<emph>Hammagni</emph> hammanga ulaagaan itti hojiirra oolfameedha."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153134\n"
-"296\n"
+"04060106.xhp\n"
+"par_id3165000\n"
+"552\n"
"help.text"
-msgid "<emph>PV</emph> is the present value (cash value) in a sequence of payments."
-msgstr "<emph>PV</emph>n tartiiba kanfaltiwwanii keessatti gatii ammaa (horii callaa)ti."
+msgid "<emph>Criteria</emph> indicates the criteria in the form of a number, an expression or a character string. These criteria determine which cells are counted. You may also enter a search text in the form of a regular expression, e.g. b.* for all words that begin with b. You may also indicate a cell range that contains the search criterion. If you search for literal text, enclose the text in double quotes."
+msgstr "<emph>Ulaagaan</emph>, ulaagaa akka unka lakkoofsaatti, himamsaatti ykn diraa arfiitti mul'isa. Ulaagaan kun man'eewwan kamtu akka lakkaa'amu murteessa. Akka himamsa idileetti barruu barbaachaa, fkf b.* jechoota hundaa b dhaan jalqaban galchuu dandeessa. Akkasumas, hammangaa man'ee kan ulaagaa barbaachaa of keessaa qabu agarsiisuu dandeessa. Yoo barruu harjifaatiif barbaadde, barruu waraabbii lamaan cufi."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154398\n"
-"297\n"
+"04060106.xhp\n"
+"hd_id3165037\n"
+"553\n"
"help.text"
-msgid "<emph>FV</emph> (optional) is the future value, which is reached at the end of the last period."
-msgstr "<emph>FV</emph> (filannoo) gatii egereeti, kan xumura dhuma yeroo dhaqqabu."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145127\n"
-"298\n"
+"04060106.xhp\n"
+"par_id3166505\n"
+"627\n"
"help.text"
-msgid "<emph>Type</emph> (optional) is the due date of the payment at the beginning or at the end of the period."
-msgstr "<emph>Akaakuu</emph>n (dirqaala) xumura ykn jalqaba yeroo keessatti aduu beellama kanfaltiiti."
+msgid "A1:A10 is a cell range containing the numbers <item type=\"input\">2000</item> to <item type=\"input\">2009</item>. Cell B1 contains the number <item type=\"input\">2006</item>. In cell B2, you enter a formula:"
+msgstr "A1:A10 hammangaa man'ee lakkoofsotaa <item type=\"input\">2000</item> hanga <item type=\"input\">2009</item> of keessaa qaba. Man'ee B1 lakkoofsa <item type=\"input\">2006</item> of keessaa qaba. Man'ee B2 keessa, foormulaa galchita:"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_idN1166C\n"
+"04060106.xhp\n"
+"par_id3581652\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "<item type=\"input\">=COUNTIF(A1:A10;2006)</item> - this returns 1"
+msgstr "<item type=\"input\">=COUNTIF(A1:A10;2006)</item> - kuni 1 deebisa"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3155795\n"
-"299\n"
+"04060106.xhp\n"
+"par_id708639\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<item type=\"input\">=COUNTIF(A1:A10;B1)</item> - this returns 1"
+msgstr "<item type=\"input\">=COUNTIF(A1:A10;B1)</item> - kuni 1 deebisa"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147378\n"
-"300\n"
+"04060106.xhp\n"
+"par_id5169225\n"
"help.text"
-msgid "How many payment periods does a payment period cover with a periodic interest rate of 6%, a periodic payment of 153.75 currency units and a present cash value of 2.600 currency units."
-msgstr "Yeroon kanfaltii dhala irradedeebii 6%, kanfaltii irradedeebii safartuu sharafaa 153.75 fi gatii horii callaa ammaa safartuu sharafaa 2.600 ta'e yeroowwan kanfaltii hammam qaba?"
+msgid "<item type=\"input\">=COUNTIF(A1:A10;\">=2006\") </item>- this returns 4"
+msgstr "<item type=\"input\">=COUNTIF(A1:A10;\">=2006\") </item>- kuni 4 deebisa"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3156171\n"
-"301\n"
+"04060106.xhp\n"
+"par_id2118594\n"
"help.text"
-msgid "<item type=\"input\">=NPER(6%;153.75;2600)</item> = -12,02. The payment period covers 12.02 periods."
-msgstr "<item type=\"input\">=NPER(6%;153.75;2600)</item> = -12,02. yeroon kanfaltii yeroowwan 12.02 qaba."
+msgid "<item type=\"input\">=COUNTIF(A1:A10;\"<\"&B1)</item> - when B1 contains <item type=\"input\">2006</item>, this returns 6"
+msgstr "<item type=\"input\">=COUNTIF(A1:A10;\"<\"&B1)</item> - yoo B1 qabaate <item type=\"input\">2006</item>, kuni 6 deebisa"
-#: 04060118.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150309\n"
-"314\n"
+"04060106.xhp\n"
+"par_id166020\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Back to Financial Functions Part One</link>"
-msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Duubatti gara Fankishinoota maallaqaa kutaa tokkotti</link>"
+msgid "<item type=\"input\">=COUNTIF(A1:A10;C2)</item> where cell C2 contains the text <item type=\"input\">>2006</item> counts the number of cells in the range A1:A10 which are >2006"
+msgstr "<item type=\"input\">=COUNTIF(A1:A10;C2)</item> iddoo man'een C2 barruu <item type=\"input\">>2006</item> lakkoofsa man'eewwanii hammangaa A1:A10 keessaa lakkaa'u kan >2006 ta'u of keessaa qaba."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153163\n"
-"315\n"
+"04060106.xhp\n"
+"par_id6386913\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060119.xhp\" name=\"Back to Financial Functions Part Two\">Back to Financial Functions Part Two</link>"
-msgstr "<link href=\"text/scalc/01/04060119.xhp\" name=\"Back to Financial Functions Part Two\">Duubatti gara Fankishinoota maallaqaa kutaa lamatti</link>"
+msgid "To count only negative numbers: <item type=\"input\">=COUNTIF(A1:A10;\"<0\")</item>"
+msgstr "Lakkoofsota negatiivii qofa lakkaa'uuf: <item type=\"input\">=COUNTIF(A1:A10;\"<0\")</item>"
#: 04060107.xhp
msgctxt ""
@@ -28306,7 +17447,7 @@ msgctxt ""
"260\n"
"help.text"
msgid "A"
-msgstr "A"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28315,7 +17456,7 @@ msgctxt ""
"261\n"
"help.text"
msgid "B"
-msgstr "B"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28324,7 +17465,7 @@ msgctxt ""
"262\n"
"help.text"
msgid "C"
-msgstr "C"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28333,7 +17474,7 @@ msgctxt ""
"263\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28342,7 +17483,7 @@ msgctxt ""
"264\n"
"help.text"
msgid "<item type=\"input\">7</item>"
-msgstr "<item type=\"input\">7</item>"
+msgstr "<item type=\"input\">170</item>"
#: 04060107.xhp
msgctxt ""
@@ -28369,7 +17510,7 @@ msgctxt ""
"267\n"
"help.text"
msgid "2"
-msgstr "2"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28396,7 +17537,7 @@ msgctxt ""
"270\n"
"help.text"
msgid "<item type=\"input\">2</item>"
-msgstr "<item type=\"input\">2</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060107.xhp
msgctxt ""
@@ -28405,7 +17546,7 @@ msgctxt ""
"271\n"
"help.text"
msgid "3"
-msgstr "3"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28414,7 +17555,7 @@ msgctxt ""
"272\n"
"help.text"
msgid "<item type=\"input\">5</item>"
-msgstr "<item type=\"input\">5</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060107.xhp
msgctxt ""
@@ -28423,7 +17564,7 @@ msgctxt ""
"273\n"
"help.text"
msgid "<item type=\"input\">10</item>"
-msgstr "<item type=\"input\">10</item>"
+msgstr "<item type=\"input\">170</item>"
#: 04060107.xhp
msgctxt ""
@@ -28823,7 +17964,7 @@ msgctxt ""
"330\n"
"help.text"
msgid "Select the cell range or array containing the array formula."
-msgstr "Hammangaa man'ee ykn waraantoo foormulaa waraantoo qabu filadhu"
+msgstr "Hammangaa man'ee ykn waraantoo foormulaa waraantoo of keessaa qaba."
#: 04060107.xhp
msgctxt ""
@@ -28882,7 +18023,7 @@ msgctxt ""
"par_idN10D65\n"
"help.text"
msgid "A"
-msgstr "A"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28906,7 +18047,7 @@ msgctxt ""
"par_idN10D79\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28914,10 +18055,9 @@ msgctxt ""
"par_idN10D80\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"par_idN10D86\n"
@@ -28939,7 +18079,7 @@ msgctxt ""
"par_idN10D94\n"
"help.text"
msgid "2"
-msgstr "2"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28947,7 +18087,7 @@ msgctxt ""
"par_idN10D9B\n"
"help.text"
msgid "0"
-msgstr "0"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28955,7 +18095,7 @@ msgctxt ""
"par_idN10DA1\n"
"help.text"
msgid "{=IF(A1:A3>0;\"yes\";\"no\")}"
-msgstr "{=IF(A1:A3>0;\"eeyyee\";\"miti\")}"
+msgstr "{=IF(A1:A3>0;\"yes\";\"no\")}"
#: 04060107.xhp
msgctxt ""
@@ -28971,7 +18111,7 @@ msgctxt ""
"par_idN10DAF\n"
"help.text"
msgid "3"
-msgstr "3"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28979,7 +18119,7 @@ msgctxt ""
"par_idN10DB6\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29011,7 +18151,7 @@ msgctxt ""
"par_idN10DE2\n"
"help.text"
msgid "A"
-msgstr "A"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29051,7 +18191,7 @@ msgctxt ""
"par_idN10E02\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29059,7 +18199,7 @@ msgctxt ""
"par_idN10E09\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29075,7 +18215,7 @@ msgctxt ""
"par_idN10E17\n"
"help.text"
msgid "2"
-msgstr "2"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29091,7 +18231,7 @@ msgctxt ""
"par_idN10E25\n"
"help.text"
msgid "5"
-msgstr "5"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29099,7 +18239,7 @@ msgctxt ""
"par_idN10E2D\n"
"help.text"
msgid "2"
-msgstr "2"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29107,7 +18247,7 @@ msgctxt ""
"par_idN10E34\n"
"help.text"
msgid "2"
-msgstr "2"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29123,7 +18263,7 @@ msgctxt ""
"par_idN10E42\n"
"help.text"
msgid "3"
-msgstr "3"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29139,7 +18279,7 @@ msgctxt ""
"par_idN10E50\n"
"help.text"
msgid "5"
-msgstr "5"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29147,7 +18287,7 @@ msgctxt ""
"par_idN10E58\n"
"help.text"
msgid "3"
-msgstr "3"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29179,7 +18319,7 @@ msgctxt ""
"par_idN10E78\n"
"help.text"
msgid "5"
-msgstr "5"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29384,34 +18524,31 @@ msgid "In the following table, column A lists unsorted measurement values. Colum
msgstr "Gabatee armaan gadii keessatti, tarjaan A gatiiwwan safaraa tartiiba hin eegne tarreessa. Tarjaan B daangaa gubbaa kutaadhaaf kan tarjaa A hiruu barbaadde of keessaa qaba. Akkaataa daangaa B1 keessa seeneen, faankishiniin FREQUANCY gatii safarame 5 gadi ykn walqixa deebisa. Sababa daangaan B2 10 ta'e, faankishiniin FREQUENCY firii lammaffaa akka lakkoofsa gatiin safaramee kan 5 irra caalu fi xiqqaatu ykn 10 walqixa ta'u deebisa. Barruun ati B6 keessatti galchite, \">25\", wabii qofaaf oola."
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"par_id3155869\n"
"220\n"
"help.text"
msgid "<emph>A</emph>"
-msgstr "<emph>A</emph>"
+msgstr "<emph>Haalata</emph>"
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"par_id3149328\n"
"221\n"
"help.text"
msgid "<emph>B</emph>"
-msgstr "<emph>B</emph>"
+msgstr "<emph>Haalata</emph>"
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"par_id3152467\n"
"222\n"
"help.text"
msgid "<emph>C</emph>"
-msgstr "<emph>C</emph>"
+msgstr "<emph>Haalata</emph>"
#: 04060107.xhp
msgctxt ""
@@ -29438,7 +18575,7 @@ msgctxt ""
"225\n"
"help.text"
msgid "5"
-msgstr "5"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29447,7 +18584,7 @@ msgctxt ""
"226\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29465,7 +18602,7 @@ msgctxt ""
"228\n"
"help.text"
msgid "8"
-msgstr "8"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29483,7 +18620,7 @@ msgctxt ""
"230\n"
"help.text"
msgid "3"
-msgstr "3"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29519,7 +18656,7 @@ msgctxt ""
"234\n"
"help.text"
msgid "2"
-msgstr "2"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29555,17 +18692,16 @@ msgctxt ""
"238\n"
"help.text"
msgid "3"
-msgstr "3"
+msgstr ""
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"par_id3149298\n"
"239\n"
"help.text"
msgid "<emph>5</emph>"
-msgstr "<emph>s5</emph>"
+msgstr "<emph>5</emph>"
#: 04060107.xhp
msgctxt ""
@@ -29574,7 +18710,7 @@ msgctxt ""
"240\n"
"help.text"
msgid "5"
-msgstr "5"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29592,7 +18728,7 @@ msgctxt ""
"242\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29628,7 +18764,7 @@ msgctxt ""
"246\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29664,7 +18800,7 @@ msgctxt ""
"250\n"
"help.text"
msgid "9"
-msgstr "9"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29682,7 +18818,7 @@ msgctxt ""
"252\n"
"help.text"
msgid "7"
-msgstr "7"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29839,7 +18975,7 @@ msgctxt ""
"41\n"
"help.text"
msgid "Syntax"
-msgstr "Syntax"
+msgstr "Caasima"
#: 04060107.xhp
msgctxt ""
@@ -29874,7 +19010,7 @@ msgctxt ""
"44\n"
"help.text"
msgid "Example"
-msgstr "Example"
+msgstr "Fakkeenya"
#: 04060107.xhp
msgctxt ""
@@ -30216,7 +19352,7 @@ msgctxt ""
"77\n"
"help.text"
msgid "A"
-msgstr "A"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -30225,7 +19361,7 @@ msgctxt ""
"78\n"
"help.text"
msgid "B"
-msgstr "B"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -30234,7 +19370,7 @@ msgctxt ""
"79\n"
"help.text"
msgid "C"
-msgstr "C"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -30243,7 +19379,7 @@ msgctxt ""
"80\n"
"help.text"
msgid "D"
-msgstr "D"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -30252,7 +19388,7 @@ msgctxt ""
"81\n"
"help.text"
msgid "E"
-msgstr "E"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -30261,7 +19397,7 @@ msgctxt ""
"82\n"
"help.text"
msgid "F"
-msgstr "F"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -30270,7 +19406,7 @@ msgctxt ""
"83\n"
"help.text"
msgid "G"
-msgstr "G"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -30333,7 +19469,7 @@ msgctxt ""
"90\n"
"help.text"
msgid "<item type=\"input\">4</item>"
-msgstr "<item type=\"input\">4</item>"
+msgstr "<item type=\"input\">148</item>"
#: 04060107.xhp
msgctxt ""
@@ -30342,7 +19478,7 @@ msgctxt ""
"91\n"
"help.text"
msgid "<item type=\"input\">7</item>"
-msgstr "<item type=\"input\">7</item>"
+msgstr "<item type=\"input\">170</item>"
#: 04060107.xhp
msgctxt ""
@@ -30396,7 +19532,7 @@ msgctxt ""
"97\n"
"help.text"
msgid "<item type=\"input\">5</item>"
-msgstr "<item type=\"input\">5</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060107.xhp
msgctxt ""
@@ -30405,7 +19541,7 @@ msgctxt ""
"98\n"
"help.text"
msgid "<item type=\"input\">9</item>"
-msgstr "<item type=\"input\">9</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060107.xhp
msgctxt ""
@@ -30459,7 +19595,7 @@ msgctxt ""
"104\n"
"help.text"
msgid "<item type=\"input\">6</item>"
-msgstr "<item type=\"input\">6</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060107.xhp
msgctxt ""
@@ -30522,7 +19658,7 @@ msgctxt ""
"111\n"
"help.text"
msgid "<item type=\"input\">7</item>"
-msgstr "<item type=\"input\">7</item>"
+msgstr "<item type=\"input\">170</item>"
#: 04060107.xhp
msgctxt ""
@@ -30558,7 +19694,7 @@ msgctxt ""
"115\n"
"help.text"
msgid "<item type=\"input\">4</item>"
-msgstr "<item type=\"input\">4</item>"
+msgstr "<item type=\"input\">148</item>"
#: 04060107.xhp
msgctxt ""
@@ -30585,7 +19721,7 @@ msgctxt ""
"118\n"
"help.text"
msgid "<item type=\"input\">8</item>"
-msgstr "<item type=\"input\">8</item>"
+msgstr "<item type=\"input\">148</item>"
#: 04060107.xhp
msgctxt ""
@@ -30648,7 +19784,7 @@ msgctxt ""
"125\n"
"help.text"
msgid "<item type=\"input\">9</item>"
-msgstr "<item type=\"input\">9</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060107.xhp
msgctxt ""
@@ -30684,7 +19820,7 @@ msgctxt ""
"129\n"
"help.text"
msgid "<item type=\"input\">10</item>"
-msgstr "<item type=\"input\">10</item>"
+msgstr "<item type=\"input\">170</item>"
#: 04060107.xhp
msgctxt ""
@@ -30943,7 +20079,6 @@ msgid "<emph>DataY</emph> represents the Y Data array."
msgstr "<emph>DeetaaY</emph>n waraantoo Deetaa Y bakka bu'a."
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"par_id3163155\n"
@@ -31079,7 +20214,7 @@ msgctxt ""
"par_idN11B2F\n"
"help.text"
msgid "A"
-msgstr "A"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -31087,7 +20222,7 @@ msgctxt ""
"par_idN11B35\n"
"help.text"
msgid "B"
-msgstr "B"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -31095,7 +20230,7 @@ msgctxt ""
"par_idN11B3B\n"
"help.text"
msgid "C"
-msgstr "C"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -31103,7 +20238,7 @@ msgctxt ""
"par_idN11B41\n"
"help.text"
msgid "D"
-msgstr "D"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -31111,7 +20246,7 @@ msgctxt ""
"par_idN11B48\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -31119,7 +20254,7 @@ msgctxt ""
"par_idN11B4E\n"
"help.text"
msgid "<item type=\"input\">2</item>"
-msgstr "<item type=\"input\">2</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060107.xhp
msgctxt ""
@@ -31127,7 +20262,7 @@ msgctxt ""
"par_idN11B54\n"
"help.text"
msgid "<item type=\"input\">3</item>"
-msgstr "<item type=\"input\">3</item>"
+msgstr "<item type=\"input\">183</item>"
#: 04060107.xhp
msgctxt ""
@@ -31135,7 +20270,7 @@ msgctxt ""
"par_idN11B5A\n"
"help.text"
msgid "<item type=\"input\">4</item>"
-msgstr "<item type=\"input\">4</item>"
+msgstr "<item type=\"input\">148</item>"
#: 04060107.xhp
msgctxt ""
@@ -31143,7 +20278,7 @@ msgctxt ""
"par_idN11B60\n"
"help.text"
msgid "<item type=\"input\">5</item>"
-msgstr "<item type=\"input\">5</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060107.xhp
msgctxt ""
@@ -31151,7 +20286,7 @@ msgctxt ""
"par_idN11B67\n"
"help.text"
msgid "2"
-msgstr "2"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -31159,7 +20294,7 @@ msgctxt ""
"par_idN11B6D\n"
"help.text"
msgid "<item type=\"input\">6</item>"
-msgstr "<item type=\"input\">6</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060107.xhp
msgctxt ""
@@ -31167,7 +20302,7 @@ msgctxt ""
"par_idN11B73\n"
"help.text"
msgid "<item type=\"input\">7</item>"
-msgstr "<item type=\"input\">7</item>"
+msgstr "<item type=\"input\">170</item>"
#: 04060107.xhp
msgctxt ""
@@ -31175,7 +20310,7 @@ msgctxt ""
"par_idN11B79\n"
"help.text"
msgid "<item type=\"input\">8</item>"
-msgstr "<item type=\"input\">8</item>"
+msgstr "<item type=\"input\">148</item>"
#: 04060107.xhp
msgctxt ""
@@ -31183,7 +20318,7 @@ msgctxt ""
"par_idN11B7F\n"
"help.text"
msgid "<item type=\"input\">9</item>"
-msgstr "<item type=\"input\">9</item>"
+msgstr "<item type=\"input\">195</item>"
#: 04060107.xhp
msgctxt ""
@@ -31191,7 +20326,7 @@ msgctxt ""
"par_idN11B86\n"
"help.text"
msgid "3"
-msgstr "3"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -31199,7 +20334,7 @@ msgctxt ""
"par_idN11B8C\n"
"help.text"
msgid "<item type=\"input\">10</item>"
-msgstr "<item type=\"input\">10</item>"
+msgstr "<item type=\"input\">170</item>"
#: 04060107.xhp
msgctxt ""
@@ -31310,7 +20445,6 @@ msgid "SUMX2MY2(ArrayX; ArrayY)"
msgstr "SUMX2MY2(WaraantooX; WaraantooY)"
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"par_id3144916\n"
@@ -31381,7 +20515,6 @@ msgid "SUMX2PY2(ArrayX; ArrayY)"
msgstr "SUMX2MY2(WaraantooX; WaraantooY)"
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"par_id3163417\n"
@@ -31537,7 +20670,7 @@ msgctxt ""
"201\n"
"help.text"
msgid "<emph>DataX</emph> (optional) represents the X Data array."
-msgstr "<emph>DeetaaX</emph>n waraantoo Deetaa X bakka bu'a."
+msgstr "<emph>eDeetaaX</emph> (dirqaalee) waraantoo Deetaa X bakka bu'a."
#: 04060107.xhp
msgctxt ""
@@ -31642,7 +20775,7 @@ msgctxt ""
"211\n"
"help.text"
msgid "<emph>DataY</emph> represents the Y Data array."
-msgstr "<emph>DeetaaY</emph>n waraantoo deetaa Y bakka bu'a."
+msgstr "<emph>DeetaaY</emph>n waraantoo Deetaa Y bakka bu'a."
#: 04060107.xhp
msgctxt ""
@@ -31651,7 +20784,7 @@ msgctxt ""
"212\n"
"help.text"
msgid "<emph>DataX</emph> (optional) represents the X Data array."
-msgstr "<emph>DeetaaX</emph>n (dirqaalee) waraantoo deetaa X bakka bu'a."
+msgstr "<emph>eDeetaaX</emph> (dirqaalee) waraantoo Deetaa X bakka bu'a."
#: 04060107.xhp
msgctxt ""
@@ -31705,533 +20838,2786 @@ msgctxt ""
msgid "This function returns an array and is handled in the same way as the other array functions. Select a range where you want the answers to appear and select the function. Select DataY. Enter any other parameters, mark <emph>Array</emph> and click <emph>OK</emph>."
msgstr "Faankishiniin kun waraantoo kenna faankishiniin kunis akkuma faankishinoota waraantoo kaaniitti qabama. Bakka deebiin akka uumamu barbaaddutti hangii filadhuuti faankishinii filadhu. DeetaaY filadhu. Ulaagota biroo kamiyyu galchi, <emph>Waraantoo</emph> mallatteessiiti <emph>OK</emph> cuqaasi."
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
+"04060108.xhp\n"
"tit\n"
"help.text"
-msgid "DATEDIF"
-msgstr ""
+msgid "Statistics Functions"
+msgstr "Faankishinoota Istaatistiksii"
-#: func_datedif.xhp
-#, fuzzy
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"bm_id3155511\n"
+"04060108.xhp\n"
+"bm_id3153018\n"
"help.text"
-msgid "<bookmark_value>DATEDIF function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii DATE</bookmark_value>"
+msgid "<bookmark_value>statistics functions</bookmark_value><bookmark_value>Function Wizard; statistics</bookmark_value><bookmark_value>functions; statistics functions</bookmark_value>"
+msgstr "<bookmark_value>faankishinoota Istaatistiksii</bookmark_value><bookmark_value>Masaka Faankishinii; istaatistiksii</bookmark_value><bookmark_value>faankishinoota; faankishinoota istaatistiksii</bookmark_value>"
-#: func_datedif.xhp
-#, fuzzy
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"hd_id3155511\n"
+"04060108.xhp\n"
+"hd_id3153018\n"
+"1\n"
"help.text"
-msgid "<variable id=\"datedif\"><link href=\"text/scalc/01/func_datedif.xhp\">DATEDIF</link></variable>"
-msgstr "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">DATE</link></variable>"
+msgid "Statistics Functions"
+msgstr "Faankishinoota Istaatistiksii"
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3153551\n"
+"04060108.xhp\n"
+"par_id3157874\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DATUM\">This function returns the number of whole days, months or years between Start date and End date.</ahelp>"
-msgstr ""
+msgid "<variable id=\"statistiktext\">This category contains the <emph>Statistics</emph> functions. </variable>"
+msgstr "<variable id=\"statistiktext\">Akaakuun kun faankishinoota<emph>Istaatistiksii</emph> qabata. </variable>"
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"hd_id3148590\n"
+"04060108.xhp\n"
+"par_id3149001\n"
+"9\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Some of the examples use the following data table:"
+msgstr "Fakkeenyotni murtaa'an gabatee deetaa armaan gadii fayyadamu:"
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3150474\n"
+"04060108.xhp\n"
+"par_id3148775\n"
+"10\n"
"help.text"
-msgid "DATEDIF(Start date; End date; Interval)"
+msgid "C"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3152815\n"
+"04060108.xhp\n"
+"par_id3145297\n"
+"11\n"
"help.text"
-msgid "<emph>Start date</emph> is the date from when the calculation is carried out."
+msgid "D"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3155817\n"
+"04060108.xhp\n"
+"par_id3150661\n"
+"12\n"
"help.text"
-msgid "<emph>End date</emph> is the date until the calculation is carried out. End date must be later, than Start date."
+msgid "2"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3153183\n"
+"04060108.xhp\n"
+"par_id3153551\n"
+"13\n"
"help.text"
-msgid "<emph>Interval</emph> is a string, accepted values are \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\"."
-msgstr ""
+msgid "x value"
+msgstr "gatii x"
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id5735953\n"
+"04060108.xhp\n"
+"par_id3147536\n"
+"14\n"
"help.text"
-msgid "Value for \"Interval\""
+msgid "y value"
+msgstr "gatii y"
+
+#: 04060108.xhp
+msgctxt ""
+"04060108.xhp\n"
+"par_id3153224\n"
+"15\n"
+"help.text"
+msgid "3"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id8360850\n"
+"04060108.xhp\n"
+"par_id3150475\n"
+"16\n"
"help.text"
-msgid "Return value"
-msgstr "Gatii deebii"
+msgid "-5"
+msgstr "-5"
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id9648731\n"
+"04060108.xhp\n"
+"par_id3155367\n"
+"17\n"
"help.text"
-msgid "\"d\""
-msgstr ""
+msgid "-3"
+msgstr "-3"
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id908841\n"
+"04060108.xhp\n"
+"par_id3149783\n"
+"18\n"
"help.text"
-msgid "Number of whole days between Start date and End date."
+msgid "4"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id8193914\n"
+"04060108.xhp\n"
+"par_id3153181\n"
+"19\n"
"help.text"
-msgid "\"m\""
-msgstr ""
+msgid "-2"
+msgstr "-2"
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id9841608\n"
+"04060108.xhp\n"
+"par_id3148429\n"
+"20\n"
"help.text"
-msgid "Number of whole months between Start date and End date."
+msgid "0"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id2701803\n"
+"04060108.xhp\n"
+"par_id3152588\n"
+"21\n"
"help.text"
-msgid "\"y\""
+msgid "5"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id2136295\n"
+"04060108.xhp\n"
+"par_id3147483\n"
+"22\n"
"help.text"
-msgid "Number of whole years between Start date and End date."
-msgstr ""
+msgid "-1"
+msgstr "-1"
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id9200109\n"
+"04060108.xhp\n"
+"par_id3083443\n"
+"23\n"
"help.text"
-msgid "\"ym\""
+msgid "1"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id4186223\n"
+"04060108.xhp\n"
+"par_id3149826\n"
+"24\n"
"help.text"
-msgid "Number of whole months when subtracting years from the difference of Start date and End date."
+msgid "6"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id5766472\n"
+"04060108.xhp\n"
+"par_id3163820\n"
+"25\n"
"help.text"
-msgid "\"md\""
+msgid "0"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id1491134\n"
+"04060108.xhp\n"
+"par_id3154816\n"
+"26\n"
"help.text"
-msgid "Number of whole days when subtracting years and months from the difference of Start date and End date."
+msgid "3"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id5866472\n"
+"04060108.xhp\n"
+"par_id3149276\n"
+"27\n"
"help.text"
-msgid "\"yd\""
+msgid "7"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id1591134\n"
+"04060108.xhp\n"
+"par_id3149267\n"
+"28\n"
"help.text"
-msgid "Number of whole days when subtracting years from the difference of Start date and End date."
+msgid "2"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"hd_id3147477\n"
+"04060108.xhp\n"
+"par_id3156310\n"
+"29\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "4"
+msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3152589\n"
+"04060108.xhp\n"
+"par_id3154639\n"
+"30\n"
"help.text"
-msgid "Birthday calculation. A man was born on 1974-04-17. Today is 2012-06-13."
+msgid "8"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3252589\n"
+"04060108.xhp\n"
+"par_id3145205\n"
+"31\n"
"help.text"
-msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"y\")</item> yields 38. <item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"ym\")</item> yields 1. <item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"md\")</item> yields 27. So he is 38 years, 1 month and 27 days old."
+msgid "4"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3352589\n"
+"04060108.xhp\n"
+"par_id3153276\n"
+"32\n"
"help.text"
-msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"m\")</item> yields 457, he has been living for 457 months."
+msgid "6"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3452589\n"
+"04060108.xhp\n"
+"par_id3150756\n"
+"33\n"
"help.text"
-msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"d\")</item> yields 13937, he has been living for 13937 days."
+msgid "9"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3752589\n"
+"04060108.xhp\n"
+"par_id3156095\n"
+"34\n"
"help.text"
-msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"yd\")</item> yields 57, his birthday was 57 days ago."
+msgid "6"
msgstr ""
-#: 06030200.xhp
+#: 04060108.xhp
msgctxt ""
-"06030200.xhp\n"
-"tit\n"
+"04060108.xhp\n"
+"par_id3152929\n"
+"35\n"
"help.text"
-msgid "Remove Precedents"
-msgstr "Dursitoota haqi"
+msgid "8"
+msgstr ""
-#: 06030200.xhp
+#: 04060108.xhp
msgctxt ""
-"06030200.xhp\n"
-"bm_id3155628\n"
+"04060108.xhp\n"
+"par_id3156324\n"
+"36\n"
"help.text"
-msgid "<bookmark_value>cells; removing precedents</bookmark_value><bookmark_value>formula cells;removing precedents</bookmark_value>"
-msgstr "<bookmark_value>man'eewwan; dursitoota haquu</bookmark_value><bookmark_value>man'eewwan foormulaa;dursitoota haquu</bookmark_value>"
+msgid "The statistical functions are described in the following subsections."
+msgstr "Faankishinootni istaatistikaalii cita kutaa armaan gadii keessatti ibsamu."
-#: 06030200.xhp
+#: 04060108.xhp
msgctxt ""
-"06030200.xhp\n"
-"hd_id3155628\n"
-"1\n"
+"04060108.xhp\n"
+"par_id3150271\n"
+"37\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030200.xhp\" name=\"Remove Precedents\">Remove Precedents</link>"
-msgstr "<link href=\"text/scalc/01/06030200.xhp\" name=\"Remove Precedents\">dursitoota haqii</link>"
+msgid "<link href=\"text/scalc/01/04060116.xhp\" name=\"Statistical Functions in the Analysis-AddIn.\">Statistical Functions in the Analysis-AddIn</link>"
+msgstr "<link href=\"text/scalc/01/04060116.xhp\" name=\"Statistical Functions in the Analysis-AddIn.\">Faankishinoota IStaatistikaalii xiinxala-KeessattiIda'i keessaa</link>"
-#: 06030200.xhp
+#: 04060109.xhp
msgctxt ""
-"06030200.xhp\n"
-"par_id3149456\n"
-"2\n"
+"04060109.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".uno:ClearArrowPrecedents\">Deletes one level of the trace arrows that were inserted with the <emph>Trace Precedents</emph> command.</ahelp>"
-msgstr "<ahelp hid=\".uno:ClearArrowPrecedents\">Deletes one level of the trace arrows that were inserted with the <emph>Trace Precedents</emph> command.</ahelp>"
+msgid "Spreadsheet Functions"
+msgstr "Faankishinoota Wardii"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"tit\n"
+"04060109.xhp\n"
+"bm_id3148522\n"
"help.text"
-msgid "AutoFormat"
-msgstr "OfDhangi'aa"
+msgid "<bookmark_value>spreadsheets; functions</bookmark_value> <bookmark_value>Function Wizard; spreadsheets</bookmark_value> <bookmark_value>functions; spreadsheets</bookmark_value>"
+msgstr "<bookmark_value>wardiiwwan; faankishinoota</bookmark_value> <bookmark_value>Masaka Faankishinii; wardiiwwan</bookmark_value> <bookmark_value>faankishinoota; wardiiwwan</bookmark_value>"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3149666\n"
+"04060109.xhp\n"
+"hd_id3148522\n"
"1\n"
"help.text"
-msgid "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat</link></variable>"
-msgstr "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">OfDhangi'aa</link></variable>"
+msgid "Spreadsheet Functions"
+msgstr "Faankishinoota Wardii"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3145367\n"
+"04060109.xhp\n"
+"par_id3144508\n"
"2\n"
"help.text"
-msgid "<variable id=\"autoformattext\"><ahelp hid=\".\">Use this command to apply an AutoFormat to a selected sheet area or to define your own AutoFormats.</ahelp></variable>"
-msgstr "<variable id=\"autoformattext\"><ahelp hid=\".\">Ajajja kana fayyadamuun ofdhangi iddoo wardii filatamee fayyadama ykn Ofdhangiwwan mata keetii ibsuuf.</ahelp></variable>"
+msgid "<variable id=\"tabelletext\">This section contains descriptions of the <emph>Spreadsheet</emph> functions together with an example.</variable>"
+msgstr "<variable id=\"tabelletext\">Kutaan kun ibsa faankishinoota <emph>Wardii</emph> fakkeenyota wajjiin of keessatti qabata. </variable>"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3148455\n"
+"04060109.xhp\n"
+"bm_id3146968\n"
+"help.text"
+msgid "<bookmark_value>ADDRESS function</bookmark_value>"
+msgstr "<bookmark_value>Faankishibii CURRENT</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3146968\n"
"3\n"
"help.text"
-msgid "Format"
-msgstr "Dhangii"
+msgid "ADDRESS"
+msgstr "ADDRESS"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3145799\n"
+"04060109.xhp\n"
+"par_id3155762\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_AUTOFORMAT:LB_FORMAT\">Choose a predefined AutoFormat to apply to a selected area in your sheet.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_AUTOFORMAT:LB_FORMAT\">Wardii kee keessaati iddoo filatame fayyadamuuf OfDhangii dursee hikame fili.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ADRESSE\">Returns a cell address (reference) as text, according to the specified row and column numbers.</ahelp> You can determine whether the address is interpreted as an absolute address (for example, $A$1) or as a relative address (as A1) or in a mixed form (A$1 or $A1). You can also specify the name of the sheet."
+msgstr "<ahelp hid=\"HID_FUNC_ADRESSE\">Haala lakkoofsota tarree fi tarjaa adda ba'aaniitiin, teessoo (wabii) mandhee akka barruutti kenna.</ahelp>teessoon akka teesssoo sirriitti(fakkeenyaaf $A$1 ) hiikamuu isaa ykn akka teessoo birqabaatti(akka Al) ykn akkaataa walmakaan(A$1 or $A10 murteessuu ni dandeessa .maqaa wardiis adda baasuu ni dandeessa."
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3149410\n"
-"5\n"
+"04060109.xhp\n"
+"par_id1027200802301348\n"
"help.text"
-msgid "Add"
-msgstr "Ida'i"
+msgid "For interoperability the ADDRESS and INDIRECT functions support an optional parameter to specify whether the R1C1 address notation instead of the usual A1 notation should be used."
+msgstr "Walkeessa hojeechuuf faankishinootni TEESSOO fi SHAFFAXA ulaagaa dirqalaa teessoo R1C1 bakka beekamaa A1 ta'usaa ifteessuuf yaadannoo deeggarsaa kennuuf fayyada."
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3154017\n"
-"6\n"
+"04060109.xhp\n"
+"par_id1027200802301445\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_AUTOFORMAT:BTN_ADD\">Allows you to add the current formatting of a range of at least 4 x 4 cells to the list of predefined AutoFormats.</ahelp> The <link href=\"text/shared/01/05150101.xhp\" name=\"Add AutoFormat\">Add AutoFormat</link> dialog then appears."
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_AUTOFORMAT:BTN_ADD\">n akka dhangeessuu ammee hangii yoo xiqqate Man'eewwan 4 x 4 ida'uu hayyama.</ahelp> <link href=\"text/shared/01/05150101.xhp\" name=\"Add AutoFormat\">Qaqnii</link> OfDhangii ida'uu itti aansudhan ni mul'ata."
+msgid "In ADDRESS, the parameter is inserted as the fourth parameter, shifting the optional sheet name parameter to the fifth position."
+msgstr "TEESSOO keessatti, ulaagaan akka ulaagaa arfaffaatti saagama, maqaan dirqalaa ulaagaa wardii gara qubannoo shanaffaatti hiqsama."
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3153708\n"
-"29\n"
+"04060109.xhp\n"
+"par_id102720080230153\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_AUTOFMT_NAME\">Enter a name and click <emph>OK</emph>. </ahelp>"
-msgstr "<ahelp hid=\"HID_SC_AUTOFMT_NAME\"> Maqaa galchuun <emph>EEYYE</emph> cuqaasi. </ahelp>"
+msgid "In INDIRECT, the parameter is appended as the second parameter."
+msgstr "SHAFFAXA keessatti, ulaagaan akka ulaagaa lammafaatti dabalama."
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3150044\n"
+"04060109.xhp\n"
+"par_id102720080230151\n"
+"help.text"
+msgid "In both functions, if the argument is inserted with the value 0, then the R1C1 notation is used. If the argument is not given or has a value other than 0, then the A1 notation is used."
+msgstr "Fankishinoota lamaanuu keessatti, yoo qajeelfamni gatii o waliin saagame, yaadannoon R1C1 ni fayyada. Yoo qajeelfamni hin kennamne ta'e ykn gatii o tin ala qabaate, yaadannoon A1 ni fayyada."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1027200802301556\n"
+"help.text"
+msgid "In case of R1C1 notation, ADDRESS returns address strings using the exclamation mark '!' as the sheet name separator, and INDIRECT expects the exclamation mark as sheet name separator. Both functions still use the dot '.' sheet name separator with A1 notation."
+msgstr "Dubbii yaadannoo R1C1 keessatti, TEESSOOn mallattoo raajeffannoo '!' fayyadamuun diraa teessoo akka footuu maqaa wardiitti deebisa, akkasumas SHAFFAXAAn akka wardii maqaa footuutti mallattoo raajeeffannoo eega. Faankishinootni lachanuu ammallee tuqaa '.' akka maqaa footuu wardiitti yaadannoo A1 fayyadamu."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1027200802301521\n"
+"help.text"
+msgid "When opening documents from ODF 1.0/1.1 format, the ADDRESS functions that show a sheet name as the fourth paramater will shift that sheet name to become the fifth parameter. A new fourth parameter with the value 1 will be inserted."
+msgstr "Yeroo galmeewwan dhangii ODF 1.0/1.1 irraa banaman, faankishinootni TEESSOO maqaa wardii akka ulaagaa arfaffaatti jiru gara ulaagaa shanaffaatti jijjiiramuumusaa agarsiisa. Ulaagaan haaraa akka ulaagaa arfaffaatti gatii 1 waliin saagama."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1027200802301650\n"
+"help.text"
+msgid "When storing a document in ODF 1.0/1.1 format, if ADDRESS functions have a fourth parameter, that parameter will be removed."
+msgstr "Yeroo galmee dhangii ODF 1.0/1.1 keessatti kuufamu, yoo faankishiniin TEESSOO ulaagaa arfaffaa qabaate, ulaagaan sun ni haqama."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id102720080230162\n"
+"help.text"
+msgid "Do not save a spreadsheet in the old ODF 1.0/1.1 format if the ADDRESS function's new fourth parameter was used with a value of 0."
+msgstr "Yoo faankishiniin TEESSOO ulaagaa arfaffaa haaraa gatii 0 waliin faayidaa kenne, dhangii durii ODF 1.0/1.1 irratti wardii hin kuusiin."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1027200802301756\n"
+"help.text"
+msgid "The INDIRECT function is saved without conversion to ODF 1.0/1.1 format. If the second parameter was present, an older version of Calc will return an error for that function."
+msgstr "Faankishinii SHAFFAXAA gara dhangii ODF 1.0/1.1 hin jijjiiriin kuufama. Yoo ulaagaan lammaffaa hin jiraatiin, foyya'aan durii Calc faankishinii kanaaf dogoggora deebisa."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3151196\n"
+"5\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154707\n"
+"6\n"
+"help.text"
+msgid "ADDRESS(Row; Column; Abs; A1; \"Sheet\")"
+msgstr "TEESSOO(Tarree ; Tarjaa ; Abs;A1; \"Wardii\")"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147505\n"
"7\n"
"help.text"
-msgid "More"
-msgstr "Dabala"
+msgid "<emph>Row</emph> represents the row number for the cell reference"
+msgstr "<emph>Tarree</emph> lakkoofsa tarree wabii mandheetiif bakka bu'a"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3146920\n"
+"04060109.xhp\n"
+"par_id3145323\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_AUTOFORMAT:BTN_MORE\">Opens the <emph>Formatting</emph> section, which displays the formatting overrides that can be applied to the spreadsheet. Deselecting an option keeps the format of the current spreadsheet for that format type.</ahelp>"
-msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_AUTOFORMAT:BTN_MORE\">Kutaa <emph>Dhangeessuu</emph> bana, Kan dhangeessuu dhoksuu agarsiisu wardii fayyadamuu danda'a. Dirqala filachu dhisuun akaakuu dhangitiif wardii ammee dhangii eega.</ahelp>"
+msgid "<emph>Column</emph> represents the column number for the cell reference (the number, not the letter)"
+msgstr "<emph>Tarjaan</emph> wabii mandheef lakkoofsa tarjaa bakka buusa (qubicha osoo hin taane, lakkoofsicha)"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3155961\n"
+"04060109.xhp\n"
+"par_id3153074\n"
"9\n"
"help.text"
-msgid "Formatting"
-msgstr "Dhangeessuu"
+msgid "<emph>Abs</emph> determines the type of reference:"
+msgstr "<emph>Abs</emph>n gosa wabii murteessa:"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3153965\n"
+"04060109.xhp\n"
+"par_id3153298\n"
"10\n"
"help.text"
-msgid "In this section you can select or deselect the available formatting options. If you want to keep any of the settings currently in your spreadsheet, deselect the corresponding option."
-msgstr "Kutaa kana keessaati dirqalaale dhangeessuu jiran filuu ykn filuu dhisuu dandeessa. Yoo qindaa'ina ammaa kamiyyuu wardii kee keessaati eegu barbaddee, dirqalaalee walfakkatu hin filin."
+msgid "1: absolute ($A$1)"
+msgstr "1: ($A$1)sirrii"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3154021\n"
+"04060109.xhp\n"
+"par_id3150431\n"
"11\n"
"help.text"
-msgid "Number format"
-msgstr "Dhangii Lakkofsaa"
+msgid "2: row reference type is absolute; column reference is relative (A$1)"
+msgstr "2: gosni wabii tarree sirriidha; wabiin tarjaa birqabadha (A$1)"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3159239\n"
+"04060109.xhp\n"
+"par_id3146096\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_NUMFORMAT\">When marked, specifies that you want to retain the number format of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_NUMFORMAT\">Yemmu mallata'ee, lakkoofsa dhangii filatamee irraa deebi'u yoo barbadee ifteessi.</ahelp>"
+msgid "3: row (relative); column (absolute) ($A1)"
+msgstr "3: tarree (birqaba); tarjaa (sirrii) ($A1)"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3149530\n"
+"04060109.xhp\n"
+"par_id3153334\n"
"13\n"
"help.text"
-msgid "Borders"
-msgstr "Handaaraalee"
+msgid "4: relative (A1)"
+msgstr "4: birqaba (Al)"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3145259\n"
+"04060109.xhp\n"
+"par_id1027200802465915\n"
+"help.text"
+msgid "<emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used."
+msgstr "<emph>A1</emph> (dirqalee) - 0 tti yoo qindaa'e, yaadannoon R1C1 ni fayyada. Yoo ulaagaan kun hin jiru ta'e ykn gatii 0 tiin alatti qindaa'e, yaadannoon A1 ni fayyada."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153962\n"
"14\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_BORDER\">When marked, specifies that you want to retain the border of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_BORDER\">Yemmu mallata'ee, lakkoofsa dhangii filatamee irraa deebi'u yoo barbadee ifteessi.</ahelp>"
+msgid "<emph>Sheet</emph> represents the name of the sheet. It must be placed in double quotes."
+msgstr "<emph>Wardiin</emph> maqaa wardii bakka bu'a. mallattoo waraabbii keessa taa'uu qaba"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3154657\n"
+"04060109.xhp\n"
+"hd_id3147299\n"
"15\n"
"help.text"
-msgid "Font"
-msgstr "Bocquu"
+msgid "Example:"
+msgstr "Fakkeenya"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3152990\n"
+"04060109.xhp\n"
+"par_id3148744\n"
"16\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_FONT\">When marked, specifies that you want to retain the font of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_FONT\">Yemmu mallata'ee, lakkoofsa dhangii filatamee irraa deebi'u yoo barbadee ifteessi.</ahelp>"
+msgid "<item type=\"input\">=ADDRESS(1;1;2;;\"Sheet2\")</item> returns the following: Sheet2.A$1"
+msgstr "<item type=\"input\">=ADDRESS(1;1;2;\"Wardii2\")</item> Wardii2.A$1 armaan gadii deebisa."
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3155379\n"
+"04060109.xhp\n"
+"par_id3159260\n"
"17\n"
"help.text"
-msgid "Pattern"
-msgstr "Sarxaa"
+msgid "If the cell A1 in sheet 2 contains the value <item type=\"input\">-6</item>, you can refer indirectly to the referenced cell using a function in B2 by entering <item type=\"input\">=ABS(INDIRECT(B2))</item>. The result is the absolute value of the cell reference specified in B2, which in this case is 6."
+msgstr "yoo mandheen A1 wardii 2 keessa jiru gatii <item type=\"input\">-6</item> qabaate, faankishinii B2 keessa jiru fayyadamuudhaan <item type=\"input\">=ABS(INDIRECT(B2))</item> galchitee mandhee wabii ta'e kallattiin ala ilaaluu ni dadeessa.Firiin gat sirrii wabii mandhee B2 keessatti adda ba'edha, akkaataa kanaan 6 dha."
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3150368\n"
-"18\n"
+"04060109.xhp\n"
+"bm_id3150372\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_PATTERN\">When marked, specifies that you want to retain the pattern of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_PATTERN\">Yemmu mallata'ee, lakkoofsa dhangii filatamee irraa deebi'u yoo barbadee ifteessi.</ahelp>"
+msgid "<bookmark_value>AREAS function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii AREAS</bookmark_value>"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3146115\n"
+"04060109.xhp\n"
+"hd_id3150372\n"
"19\n"
"help.text"
-msgid "Alignment"
-msgstr "Hiriira"
+msgid "AREAS"
+msgstr "AREAS"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3156445\n"
+"04060109.xhp\n"
+"par_id3150036\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ALIGNMENT\">When marked, specifies that you want to retain the alignment of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ALIGNMENT\">Yemmu mallata'ee, lakkoofsa dhangii filatamee irraa deebi'u yoo barbadee ifteessi.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_BEREICHE\">Returns the number of individual ranges that belong to a multiple range.</ahelp> A range can consist of contiguous cells or a single cell."
+msgstr "<ahelp hid=\"HID_FUNC_BEREICHE\">Lakkoofsa hangiiwwan dhuunfaa kan hangii hedduu ta'e deebisa.</ahelp> Hangiin mandheewwan walitti aanan ykn mandhee qeenee qabata."
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3155811\n"
+"04060109.xhp\n"
+"par_id061020090307073\n"
+"help.text"
+msgid "The function expects a single argument. If you state multiple ranges, you must enclose them into additional parentheses. Multiple ranges can be entered using the semicolon (;) as divider, but this gets automatically converted to the tilde (~) operator. The tilde is used to join ranges."
+msgstr "Faankishiinin qajeelfama tokko qofa eega. Yoo hangii hedduu ibsite, golbee lakkuu dabaltaa keessa isaan kaa'uu qabda. Hangiiwwan hedduun bufata xinnaa (;) fayyadamuun akka ooftuutti galfamuu danda'u, garuu kun ofumaan gara ogeejjii dalduufaa (~) tti jijjiirama. Dalduufaan hangiiwwan walqbsiisuuf fayyada."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3145222\n"
"21\n"
"help.text"
-msgid "AutoFit width and height"
-msgstr "Oftaasisaa dagalee fi dheerinaa"
+msgid "Syntax"
+msgstr "Caasima"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3148703\n"
+"04060109.xhp\n"
+"par_id3155907\n"
"22\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ADJUST\">When marked, specifies that you want to retain the width and height of the selected cells of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ADJUST\">Yemmu mallata'ee, lakkoofsa dhangii filatamee irraa deebi'u yoo barbadee ifteessi.</ahelp>"
+msgid "AREAS(Reference)"
+msgstr "AREAS(Wabii)"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3159223\n"
+"04060109.xhp\n"
+"par_id3153118\n"
+"23\n"
+"help.text"
+msgid "Reference represents the reference to a cell or cell range."
+msgstr "Wabiin wabii mandhee ykn hangii mandhee bakka bu'a."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3148891\n"
+"24\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149946\n"
+"25\n"
+"help.text"
+msgid "<item type=\"input\">=AREAS((A1:B3;F2;G1))</item> returns 3, as it is a reference to three cells and/or areas. After entry this gets converted to =AREAS((A1:B3~F2~G1))."
+msgstr "<item type=\"input\">=AREAS(A1:B3;F2;G1)</item> akka man'eewwan sadiif fi/ykn bal'inootaaf wabii ta'etti, 3 deebisa."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3146820\n"
"26\n"
"help.text"
-msgid "Rename"
-msgstr "Maqaa Jijjiira"
+msgid "<item type=\"input\">=AREAS(All)</item> returns 1 if you have defined an area named All under <emph>Data - Define Range</emph>."
+msgstr "<item type=\"input\">=AREAS(All)</item> yoo naannoo maqaan isaa Hunda jala <emph>Hangii - Deetaa ibsu</emph> ibsiteetta ta'e 1 deebisa."
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3153064\n"
-"27\n"
+"04060109.xhp\n"
+"bm_id3148727\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_RENAME_AUTOFMT\">Opens a dialog where you can change the specification of the selected AutoFormat.</ahelp> The button is only visible if you clicked the <emph>More</emph> button."
-msgstr "<ahelp hid=\"HID_SC_RENAME_AUTOFMT\">Iddoo iftoomini jijjiramuu danda'uuti Ofdhangii filameef qaaqa bani.</ahelp> Qabdoon kan mul'atuu yoo <emph>Dabala</emph> cuqaaste qofa."
+msgid "<bookmark_value>DDE function</bookmark_value>"
+msgstr "<bookmark_value>ofaankishinii DDE</bookmark_value>"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3153912\n"
+"04060109.xhp\n"
+"hd_id3148727\n"
"28\n"
"help.text"
-msgid "The <emph>Rename AutoFormat</emph> dialog opens.<ahelp hid=\"HID_SC_REN_AFMT_NAME\"> Enter the new name of the AutoFormat here.</ahelp>"
-msgstr "<emph>n qaqnii</emph> Ofdhangiin Maqaa Jijjiraa ni banama.<ahelp hid=\"HID_SC_REN_AFMT_NAME\"> Ofdhangii maqaa haraa asitti galchi.</ahelp>"
+msgid "DDE"
+msgstr "DDE"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3155264\n"
-"23\n"
+"04060109.xhp\n"
+"par_id3149434\n"
+"29\n"
"help.text"
-msgid "More"
-msgstr "Dabala"
+msgid "<ahelp hid=\"HID_FUNC_DDE\">Returns the result of a DDE-based link.</ahelp> If the contents of the linked range or section changes, the returned value will also change. You must reload the spreadsheet or choose <emph>Edit - Links</emph> to see the updated links. Cross-platform links, for example from a <item type=\"productname\">%PRODUCTNAME</item> installation running on a Windows machine to a document created on a Linux machine, are not allowed."
+msgstr "<ahelp hid=\"HID_FUNC_DDE\">Firii walqabsiisa DDE-irratti hundaa'e deebisa.</ahelp> Yoo qabeentotni hangii walqabatanii ykn kutaa jijjiiraman, gatiin deebi'es ni jijjiirama. Walqabsiitota haaromfaman ilaaluuf wardii irra deebitee fe'uu ykn <emph>Gulaali - walqabsiistota</emph> filachuu qabda.Walqabsiistonni gulantiyyaa-qaxxaamuraa, fakkeenyaaf <item type=\"productname\">%PRODUCTNAME</item> galmee maashina Linux irratti uumame maashina foddaawwanii irraatti ijaarsa adeemsisuun, eeyyamamaa miti."
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3159094\n"
-"24\n"
+"04060109.xhp\n"
+"hd_id3150700\n"
+"30\n"
"help.text"
-msgid "Closes the <emph>Formatting</emph> options section, if it is currently open."
-msgstr "Dirqalaalee kutaa <emph>Dhangeessuu</emph> cufi, yoo ammaati banaa ta'ee."
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148886\n"
+"31\n"
+"help.text"
+msgid "DDE(\"Server\"; \"File\"; \"Range\"; Mode)"
+msgstr "DDE(\"Kaadimaa\"; \"Faayilii\"; \"Hangii\"; Haalata)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154842\n"
+"32\n"
+"help.text"
+msgid "<emph>Server</emph> is the name of a server application. <item type=\"productname\">%PRODUCTNAME</item>applications have the server name \"Soffice\"."
+msgstr "<emph>Haalatni</emph> maqaa hojii haalataadha.<item type=\"productname\">%PRODUCTNAME</item>hojiiwwan maqaa haalataa \"Soffice\" qabu."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153034\n"
+"33\n"
+"help.text"
+msgid "<emph>File</emph> is the complete file name, including path specification."
+msgstr "<emph>Faayilii</emph>maqaa guutuu faayiliiti, karaa itti baramu dabalatee."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147472\n"
+"34\n"
+"help.text"
+msgid "<emph>Range</emph> is the area containing the data to be evaluated."
+msgstr "<emph>Hangiin</emph> bakka deetaa gamaggamamuu qabu qabate dha."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3152773\n"
+"184\n"
+"help.text"
+msgid "<emph>Mode</emph> is an optional parameter that controls the method by which the DDE server converts its data into numbers."
+msgstr "<emph>Haalata</emph>ulaagaa filannoo mala kaadimaan DDE deetaa isaa gara lakkofsaatti ittiin jijjiiru to'atudha."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154383\n"
+"185\n"
+"help.text"
+msgid "<emph>Mode</emph>"
+msgstr "<emph>Haalata</emph>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3145146\n"
+"186\n"
+"help.text"
+msgid "<emph>Effect</emph>"
+msgstr "<emph>Galtee</emph>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154558\n"
+"187\n"
+"help.text"
+msgid "0 or missing"
+msgstr "0 ykn dhiisuu"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3145596\n"
+"188\n"
+"help.text"
+msgid "Number format from the \"Default\" cell style"
+msgstr "Dhangii lakkoofsaa kan \"Durtii\" haala mandhee"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3152785\n"
+"189\n"
+"help.text"
+msgid "1"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154380\n"
+"190\n"
+"help.text"
+msgid "Data are always interpreted in the standard format for US English"
+msgstr "Ingiliffa US tiif deetaan yeroo hundumaa dhangii waltaawaadhaan hiikama."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150279\n"
+"191\n"
+"help.text"
+msgid "2"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153775\n"
+"192\n"
+"help.text"
+msgid "Data are retrieved as text; no conversion to numbers"
+msgstr "Deetaan akka barruutti walitti qabamu; jijjiiramni lakkoofsota irratti hin raawwatu."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3149546\n"
+"35\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148734\n"
+"36\n"
+"help.text"
+msgid "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\data1.sxc\";\"sheet1.A1\")</item> reads the contents of cell A1 in sheet1 of the <item type=\"productname\">%PRODUCTNAME</item> Calc spreadsheet data1.sxc."
+msgstr "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\data1.sxc\";\"sheet1.A1\")</item>qabeentota mandhee A1 kanneen wardii1 kan <item type=\"productname\">%PRODUCTNAME</item> Calc wardii deetaa1.sxc."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153081\n"
+"37\n"
+"help.text"
+msgid "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\motto.sxw\";\"Today's motto\")</item> returns a motto in the cell containing this formula. First, you must enter a line in the motto.sxw document containing the motto text and define it as the first line of a section named <item type=\"literal\">Today's Motto</item> (in <item type=\"productname\">%PRODUCTNAME</item> Writer under <emph>Insert - Section</emph>). If the motto is modified (and saved) in the <item type=\"productname\">%PRODUCTNAME</item> Writer document, the motto is updated in all <item type=\"productname\">%PRODUCTNAME</item> Calc cells in which this DDE link is defined."
+msgstr "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\motto.sxw\";\"Today's motto\")</item> dhaadannoo mandhee foormulaa kana qabate keessatti deebisa. Jalqaba, galmee dhaadannoo.sxw barruu dhaadannoo qabate galchi dabalataanis akka sarara jalqabaa kutaa <item type=\"literal\">Dhaadannoo Har'aatiin</item> moggaafame (in <item type=\"productname\">%PRODUCTNAME</item> Barreessaa <emph>Saagi - Kutaa</emph>) jalatti ibsi. Yoo dhaadannoon <item type=\"productname\">%PRODUCTNAME</item> keessatti haaromfame (fi ol kaa'ame) Barreessaa dhaadannoo, <item type=\"productname\">%PRODUCTNAME</item> mandheewwan Calc walqabsiistuun DDE kun keessatti ibsame hunda keessatti haaromsama."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3153114\n"
+"help.text"
+msgid "<bookmark_value>ERRORTYPE function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii ERRORTYPE</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153114\n"
+"38\n"
+"help.text"
+msgid "ERRORTYPE"
+msgstr "ERRORTYPE"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148568\n"
+"39\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_FEHLERTYP\">Returns the number corresponding to an <link href=\"text/scalc/05/02140000.xhp\" name=\"error value\">error value</link> occurring in a different cell.</ahelp> With the aid of this number, you can generate an error message text."
+msgstr "<ahelp hid=\"HID_FUNC_FEHLERTYP\">Lakkoofsa <link href=\"text/scalc/05/02140000.xhp\" name=\"error value\"> gatii dogongoraa </link> man'ee biroo keessatti mul'atu waliin walsimu kenna.</ahelp> Gargaarsa lakkoofsa kanaatiin, barruu ergaa dogoggoraa umuu ni dandeessa."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149877\n"
+"40\n"
+"help.text"
+msgid "The Status Bar displays the predefined error code from <item type=\"productname\">%PRODUCTNAME</item> if you click the cell containing the error."
+msgstr "Yoo mandhee dogondora qabu cuqaaste Kaballi Haalojii <item type=\"productname\">%PRODUCTNAME</item> irraa lakkaddaa dogongoraa dura ibsame mul'isa."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3154327\n"
+"41\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3151322\n"
+"42\n"
+"help.text"
+msgid "ERRORTYPE(Reference)"
+msgstr "ERRORTYPE(Wabii)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150132\n"
+"43\n"
+"help.text"
+msgid "<emph>Reference</emph> contains the address of the cell in which the error occurs."
+msgstr "<emph>Wabii</emph>n teessoo mandhee dogongorri keessatti uumamu of keessatti qabata."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3145248\n"
+"44\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3146904\n"
+"45\n"
+"help.text"
+msgid "If cell A1 displays Err:518, the function <item type=\"input\">=ERRORTYPE(A1)</item> returns the number 518."
+msgstr "Yoo mandheen A1 Err:518 mul'ise, faankishiniin <item type=\"input\">=ERRORTYPE(A1)</item> lakkoofsa 518 kenna."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3151221\n"
+"help.text"
+msgid "<bookmark_value>INDEX function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii INDEX</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3151221\n"
+"47\n"
+"help.text"
+msgid "INDEX"
+msgstr "INDEX"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150268\n"
+"48\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_INDEX\">INDEX returns a sub range, specified by row and column number, or an optional range index. Depending on context, INDEX returns a reference or content.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_INDEX\">INDEXn cita hangii, lakkoofsa tarree fi tarjaadhaan adda ba'e, ykn kasaa hangii dirqaalee deebisa. Halqara irratti hundaa'uudhaan, INDEXn wabii ykn qabeentaa deebisa.</ahelp>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3156063\n"
+"49\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149007\n"
+"50\n"
+"help.text"
+msgid "INDEX(Reference; Row; Column; Range)"
+msgstr "INDEX(Wabii; Tarree; Tarjaa; Hangii)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153260\n"
+"51\n"
+"help.text"
+msgid "<emph>Reference</emph> is a reference, entered either directly or by specifying a range name. If the reference consists of multiple ranges, you must enclose the reference or range name in parentheses."
+msgstr "<emph>Wabii</emph>n wabii, kallattiidhaan ykn maqaa hangii adda baasuudhaan galudha. Yoo wabiin hangiiwwan hedduu qabaate, wabii ykn maqaa hangii cuftuu keessa galchuu qabda."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3145302\n"
+"52\n"
+"help.text"
+msgid "<emph>Row</emph> (optional) represents the row index of the reference range, for which to return a value. In case of zero (no specific row) all referenced rows are returned."
+msgstr "<emph>Tarree</emph>n (dirqaalee) kasaa tarree hangii wabii, gatiin kennamuufii bakka bu'a. Yeroo zeeroo (tarreen adda ba'e hin jiru) tarreewwan wabii ta'an hundi ni deebi'u."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154628\n"
+"53\n"
+"help.text"
+msgid "<emph>Column</emph> (optional) represents the column index of the reference range, for which to return a value. In case of zero (no specific column) all referenced columns are returned."
+msgstr "<emph>Tarjaa</emph>n (dirqaalee) kasaa tarjaa hangii wabii, gatiin kennamuufii bakka bu'a. Yeroo zeeroo (tarjaan adda ba'e hin jiru) tarjaawwan wabii ta'an hundi ni deebi'u."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155514\n"
+"54\n"
+"help.text"
+msgid "<emph>Range</emph> (optional) represents the index of the subrange if referring to a multiple range."
+msgstr "<emph>Hangii</emph>n (dirqaalee) yoo hangii hedduu agarsiisaa jira ta'e kasaa cita hangii bakka bu'a."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3145264\n"
+"55\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3159112\n"
+"56\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX(Prices;4;1)</item> returns the value from row 4 and column 1 of the database range defined in <emph>Data - Define</emph> as <emph>Prices</emph>."
+msgstr "<item type=\"input\">=INDEX(Prices;4;1)</item> tarree 4 fi tarjaa 1 hangii kuusdeetaa <emph>Deetaa - Ibsi</emph> akka <emph>Gatiiwwaniitti</emph> keessatti ibsame irraa gatii deebisa."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150691\n"
+"57\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
+msgstr "<item type=\"input\">=INDEX(SumX;4;1)</item> hangii <emph>SumX</emph> tarree 4 fi tarjaa 1 keessa jiru akka <emph>Saagi - Maqoota - Ibsi</emph> tti ibsame irraa gatii deebisa."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id4109012\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX(A1:B6;1)</item> returns a reference to the first row of A1:B6."
+msgstr "<item type=\"input\">=INDEX(A1:B6;1)</item> tarree jalqabaa A1:B6 dhaaf wabii deebisa."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id9272133\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX(A1:B6;0;1)</item> returns a reference to the first column of A1:B6."
+msgstr "<item type=\"input\">=INDEX(A1:B6;1)</item> tarjaa jalqabaa A1:B6 dhaaf wabii deebisa."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3158419\n"
+"58\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgstr "<item type=\"input\">=INDEX((multi);4;1)</item> gatii tarree 4 fi tarjaa 1 hangii (hedduu) keessa jiru, <emph>Saagi - Maqoota - Qindeessi</emph> jalatti maqaa <emph>baay'ee</emph> jedhu itti moggaaste agarsiisa. Hangii hedduun hangiiwwan rektaangilii hedduu, tokko tokkoon isaanii tarree 4 fi tarjaa 1 qaban of keessatti qabachuu ni danda'a. Yoo garee lamaffaan hangii baay'ee amma waamuu barbaadduu lakkoofsa <item type=\"input\">2</item> akka ulaagaa <emph>hangii</emph> tti saage."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148595\n"
+"59\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX(A1:B6;1;1)</item> indicates the value in the upper-left of the A1:B6 range."
+msgstr "<item type=\"input\">=INDEX(A1:B6;1;1)</item> gatii harka bitaa gara olii hangii A1:B6 keessa jiru agarsiisa."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id9960020\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX((multi);0;0;2)</item> returns a reference to the second range of the multiple range."
+msgstr "<item type=\"input\">=INDEX((multi);0;0;2)</item> hangii lammaffaa hangii hedduudhaaf wabii kenna."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3153181\n"
+"help.text"
+msgid "<bookmark_value>INDIRECT function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii INDIRECT</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153181\n"
+"62\n"
+"help.text"
+msgid "INDIRECT"
+msgstr "INDIRECT"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147169\n"
+"63\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_INDIREKT\">Returns the <emph>reference</emph> specified by a text string.</ahelp> This function can also be used to return the area of a corresponding string."
+msgstr "<ahelp hid=\"HID_FUNC_INDIREKT\"><emph>wabii</emph> diraa barruutiin adda ba'e kenna.</ahelp> Faankishiniin kun naannoo diraa walfaakkatu kennuufis ni gargaara."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153717\n"
+"64\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149824\n"
+"65\n"
+"help.text"
+msgid "INDIRECT(Ref; A1)"
+msgstr "INDIRECT(Ref; A1)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154317\n"
+"66\n"
+"help.text"
+msgid "<emph>Ref</emph> represents a reference to a cell or an area (in text form) for which to return the contents."
+msgstr "<emph>Ref</emph> wabii mandheefii ykn naannoo( bifa barruutiin taa'e) qabeentota deebisuufi qabnuuf bakka bu'a."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1027200802470312\n"
+"help.text"
+msgid "<emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used."
+msgstr "<emph>A1</emph> (dirqalee) - 0 tti yoo qindaa'e, yaadannoon R1C1 ni fayyada. Yoo ulaagaan kun hin jiru ta'e ykn gatii 0 tiin alatti qindaa'e, yaadannoon A1 ni fayyada."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN10CAE\n"
+"help.text"
+msgid "If you open an Excel spreadsheet that uses indirect addresses calculated from string functions, the sheet addresses will not be translated automatically. For example, the Excel address in INDIRECT(\"filename!sheetname\"&B1) is not converted into the Calc address in INDIRECT(\"filename.sheetname\"&B1)."
+msgstr "Yoo wardii Ekseelii teessoo kallattiin alaa faankishinoota diraa irraa shallagame fayyadamu bante, teessoon wardii ofiin hin hiikamu. Fakkeenyaaf, teessoon Ekseelii INDIRECT(\"filename!sheetname\"&B1) keessaa gara teessoo Calc INDIRECT(\"filename.sheetname\"&B1) keessa jiruutti hin jijjiiramu."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3150389\n"
+"67\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150608\n"
+"68\n"
+"help.text"
+msgid "<item type=\"input\">=INDIRECT(A1)</item> equals 100 if A1 contains C108 as a reference and cell C108 contains a value of <item type=\"input\">100</item>."
+msgstr "Yoo A1 akka wabiitti C108 of keessatti qabaatee fi mandheen C108 gatii <item type=\"input\">100</item> qabaate <item type=\"input\">=INDIRECT(A1)</item> 100 waliin wal qixa ta'a."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3083286\n"
+"181\n"
+"help.text"
+msgid "<item type=\"input\">=SUM(INDIRECT(\"a1:\" & ADDRESS(1;3)))</item> totals the cells in the area of A1 up to the cell with the address defined by row 1 and column 3. This means that area A1:C1 is totaled."
+msgstr "<item type=\"input\">=SUM(INDIRECT(\"a1:\" & ADDRESS(1;3)))</item> mandheewwan naannoo A1 keessa jiranii hanga mandhee teessoon isaa tarree 1 fi tarjaa 3n ibsametti hundamteessa. Kana jechuun naannoon A1:C1 hundamtaa'eera."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3154818\n"
+"help.text"
+msgid "<bookmark_value>COLUMN function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii COLUMN</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3154818\n"
+"70\n"
+"help.text"
+msgid "COLUMN"
+msgstr "COLUMN"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149711\n"
+"193\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_SPALTE\">Returns the column number of a cell reference.</ahelp> If the reference is a cell the column number of the cell is returned; if the parameter is a cell area, the corresponding column numbers are returned in a single-row <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"array\">array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the COLUMN function with an area reference parameter is not used for an array formula, only the column number of the first cell within the area is determined."
+msgstr "<ahelp hid=\"HID_FUNC_SPALTE\">Lakkoofsa tarjaa wabii man'ee kenna.</ahelp> Yoo wabiin mandhee ta'e lakkoofsi tarjaa mandhichaa ni deebi'a; yoo ulaagaan naannoo mandhee ta'e, lakkoofsonni tarjaa <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"array\">waraantoo</link> tarree-baaqqee keessatti kan kennamu yoo foormulaan <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">akka foormulaa waraantootti</link> galeera ta'e. Yoo faankishiniin COLUMN naannoo ulaagaa wabii keessa jiru foormulaa waraantoof hin fayyadne ta'e, lakkoofsi tarjaa mandhee jalqabaa naannoo sana keessa jiru qofti ni murtaa'a."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3149283\n"
+"72\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149447\n"
+"73\n"
+"help.text"
+msgid "COLUMN(Reference)"
+msgstr "COLUMN(Wabii)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3156310\n"
+"74\n"
+"help.text"
+msgid "<emph>Reference</emph> is the reference to a cell or cell area whose first column number is to be found."
+msgstr "<emph>Wabii</emph>n wabii mandheef ykn naannoo mandhee lakkoofsi tarjaa jalqabaa barbaadamuu qabuuti."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155837\n"
+"194\n"
+"help.text"
+msgid "If no reference is entered, the column number of the cell in which the formula is entered is found. <item type=\"productname\">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell."
+msgstr "Yoo wabiin tokkoyyu hin seenne ta'e, lakkoofsi tarjaa mandhee foormulaan keessa seene ni argama. <item type=\"productname\">%PRODUCTNAME</item> Calciin wabii ofumaan gara mandhee ammeetti qindeessa."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3152932\n"
+"75\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147571\n"
+"76\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMN(A1)</item> equals 1. Column A is the first column in the table."
+msgstr "<item type=\"input\">=COLUMN(A1)</item> walqixa 1. Tarjaa A n gabatee keessatti tarjaa jalqabaati."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147079\n"
+"77\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMN(C3:E3)</item> equals 3. Column C is the third column in the table."
+msgstr "<item type=\"input\">=COLUMN(C3:E3)</item> walqixa 3. Tarjaa C n gabatee keessatti tarjaa sadaffaadha."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3146861\n"
+"195\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMN(D3:G10)</item> returns 4 because column D is the fourth column in the table and the COLUMN function is not used as an array formula. (In this case, the first value of the array is always used as the result.)"
+msgstr "<item type=\"input\">=COLUMN(D3:G10)</item>n 4 kenna sababni isaas tarjaa D n gabatee keessatti tarjaa afraffaadha dabalataan immoo faankishiniin TARJAA akka foormulaa waraantootti hin fayyadne. (Haala kana keessatti, gatiin waraantoo inni jalqabaa yeroo hunda akka firiitti fayyada.)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3156320\n"
+"196\n"
+"help.text"
+msgid "<item type=\"input\">{=COLUMN(B2:B7)}</item> and <item type=\"input\">=COLUMN(B2:B7)</item> both return 2 because the reference only contains column B as the second column in the table. Because single-column areas have only one column number, it does not make a difference whether or not the formula is used as an array formula."
+msgstr "<item type=\"input\">{=COLUMN(B2:B7)}</item> fi <item type=\"input\">=COLUMN(B2:B7)</item> lamaan isaaniiyyu 2 kennu sababni isaas wabiin tarjaa B qofa akka tarjaa lammaffaa gabatee keessaatti of keessatti qabata. Naannoon tajaa-qeenxee lakkoofsa tarjaa tokko qofa waan qabuuf, foormulaan akka foormulaa waraantootti yoo fayyades fayyaduu baates garaagarummaa hin uumu."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150872\n"
+"197\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMN()</item> returns 3 if the formula was entered in column C."
+msgstr "<item type=\"input\">=COLUMN()</item>n yoo foormulaan tarjaa C keessa galeera ta'e 3 kenna."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153277\n"
+"198\n"
+"help.text"
+msgid "<item type=\"input\">{=COLUMN(Rabbit)}</item> returns the single-row array (3, 4) if \"Rabbit\" is the named area (C1:D3)."
+msgstr "<item type=\"input\">{=COLUMN(Hilleenttii)}</item> yoo hilleensi maqaa naannoo (C1:D3)tti mogga'e ta'e waraantoo tarree-qeenxee (3, 4) kenna."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3154643\n"
+"help.text"
+msgid "<bookmark_value>COLUMNS function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii COLUMNS</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3154643\n"
+"79\n"
+"help.text"
+msgid "COLUMNS"
+msgstr "COLUMN"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3151182\n"
+"80\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_SPALTEN\">Returns the number of columns in the given reference.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SPALTEN\">Lakkoofsa tarjaawwanii wabii kenname keessa jiran deebisa.</ahelp>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3149141\n"
+"81\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154047\n"
+"82\n"
+"help.text"
+msgid "COLUMNS(Array)"
+msgstr "COLUMNS(Waraantoo)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154745\n"
+"83\n"
+"help.text"
+msgid "<emph>Array</emph> is the reference to a cell range whose total number of columns is to be found. The argument can also be a single cell."
+msgstr "<emph>Waraantoo</emph>n hangii mandhee lakkoofsi tarjaawwan isaa hundi barbaadamuu qabuuf wabiidha. Qajeelfamni mandhee qeenxees ta'uu ni danda'a."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153622\n"
+"84\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149577\n"
+"200\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMNS(B5)</item> returns 1 because a cell only contains one column."
+msgstr "<item type=\"input\">=COLUMN(B5)</item>n 1 kenna sababni isaaas mandheen tokko tarjaa tokko qofa qabata."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3145649\n"
+"85\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMNS(A1:C5)</item> equals 3. The reference comprises three columns."
+msgstr "<item type=\"input\">=COLUMN(A1:C5)</item> walqixa 3. Wabiin tarjaawwan sadii of keessatti qabata."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155846\n"
+"201\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMNS(Rabbit)</item> returns 2 if <item type=\"literal\">Rabbit</item> is the named range (C1:D3)."
+msgstr "<item type=\"input\">=COLUMNS(Hilleensi)</item> yoo <item type=\"literal\">Hilleensa</item> maqaa hangiitti moggaafame yoo ta'e (C1:D3) 2 deebisa."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3153152\n"
+"help.text"
+msgid "<bookmark_value>vertical search function</bookmark_value> <bookmark_value>VLOOKUP function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii barbaadduu sarjaa</bookmark_value> <bookmark_value>faankishinii VLOOKUP</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153152\n"
+"87\n"
+"help.text"
+msgid "VLOOKUP"
+msgstr "VLOOKUP"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149984\n"
+"88\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_SVERWEIS\">Vertical search with reference to adjacent cells to the right.</ahelp> This function checks if a specific value is contained in the first column of an array. The function then returns the value in the same row of the column named by <item type=\"literal\">Index</item>. If the <item type=\"literal\">SortOrder</item> parameter is omitted or set to TRUE or one, it is assumed that the data is sorted in ascending order. In this case, if the exact <item type=\"literal\">SearchCriterion</item> is not found, the last value that is smaller than the criterion will be returned. If <item type=\"literal\">SortOrder</item> is set to FALSE or zero, an exact match must be found, otherwise the error <emph>Error: Value Not Available</emph> will be the result. Thus with a value of zero the data does not need to be sorted in ascending order."
+msgstr "<ahelp hid=\"HID_FUNC_SVERWEIS\">Barbaacha sarjaa mandheewwan gara mirgaa wajjiin wabii ta'e.</ahelp> Faankishiniin kun tarjaa waraantoo jalqabaa keessatti gatiin adda ta'e hammatamuu isaa mirkaneessa. Faankishinichi sana booda gatii tarree wal fakkaataa tarjaa keessa jiru <item type=\"literal\">Kasaa</item>dhaan moggaafame deebisa. Yoo ulaagaan <item type=\"literal\">Tartiibaansirreessi</item> haqame ykn DHUGAA ta'e ykn tokko ta'e, deetaan jalaa ol akka tartiiba qabatetti ilaalama. Haala kana keessatti, yoo <item type=\"literal\">UlaagaaBarbaachaa</item> sirriin hin argamne ta'e, gatiin dhumaa ulaagaatii gad ta'e deebi'uu danda'a. Yoo <item type=\"literal\">Tartiibessuun</item> SOBA ykn zeerootti qindaa'e, walsimannaa sirriin argamuu qaba, ta'uu baannaan dogongorri <emph>Dogongora: Gatiin Hin jiru</emph> jedhutu firii ta'uu danda'a. Kanaafuu deetaan gatiin isaa zeeroo ta'e jalaa ol tartiiba'uun isa hin barbaachisu."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3146898\n"
+"89\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150156\n"
+"90\n"
+"help.text"
+msgid "=VLOOKUP(SearchCriterion; Array; Index; SortOrder)"
+msgstr "=VLOOKUP(UlaagaaBarbaachaa; Waraantoo; Kasaa; TartiibaQabsiisuuu)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149289\n"
+"91\n"
+"help.text"
+msgid "<emph>SearchCriterion</emph> is the value searched for in the first column of the array."
+msgstr "<emph>UlaagaanBarbaachaa</emph> gatii jalqaba tarjaa waraantoof barbaadamudha."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153884\n"
+"92\n"
+"help.text"
+msgid "<emph>Array</emph> is the reference, which is to comprise at least two columns."
+msgstr "<emph>Waraantoo</emph>n wabii, yoo xiqqaate tarjaawwan lama qabatudha."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3156005\n"
+"93\n"
+"help.text"
+msgid "<emph>Index</emph> is the number of the column in the array that contains the value to be returned. The first column has the number 1."
+msgstr "<emph>Kasaa</emph>n lakkoofsa tarjaa waraantoo keessa jiru kan gatii kennamuu qabu of keessatti qabatudha. Tarjaan jalqabaa lakkoofsa 1 qaba."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3151208\n"
+"94\n"
+"help.text"
+msgid "<emph>SortOrder</emph> is an optional parameter that indicates whether the first column in the array is sorted in ascending order. Enter the Boolean value FALSE or zero if the first column is not sorted in ascending order. Sorted columns can be searched much faster and the function always returns a value, even if the search value was not matched exactly, if it is between the lowest and highest value of the sorted list. In unsorted lists, the search value must be matched exactly. Otherwise the function will return this message: <emph>Error: Value Not Available</emph>."
+msgstr "<emph>TartiibaQabsiisuu</emph>n ulaagaa dirqalaa tarjaan jalqabaa waraantoo keessa jiru jalaa ol tartiiba'uu isaa kan agarsiisudha.Yoo tarjaan jalqabaa jalaa ol hin tartiibone ta'e gatii Buuliyaanii SOBA ykn zeeroo galchi. Tarjaawwan tartiiba'an saffisa guddaadhaan barbaadamu gatiin barbaachaa sirriitti argamuu baatuyyu faankishiniin yeroo hunda gatii kenna, yoo inni walakkaa gatii guddaa fi xiqqaa tarree tartiiba'anii gidduu ta'e. Tarreewwan hin tartiibofne keessatti, gatiin barbaachaa sirriitti firoomuu qaba. Yoo ta'uu baate faankishinichi ergaa kana kenna: <emph>Dogongora: Gatiin Hin Jiru</emph>."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3147487\n"
+"95\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154129\n"
+"96\n"
+"help.text"
+msgid "You want to enter the number of a dish on the menu in cell A1, and the name of the dish is to appear as text in the neighboring cell (B1) immediately. The Number to Name assignment is contained in the D1:E100 array. D1 contains <item type=\"input\">100</item>, E1 contains the name <item type=\"input\">Vegetable Soup</item>, and so forth, for 100 menu items. The numbers in column D are sorted in ascending order; thus, the optional <item type=\"literal\">SortOrder</item> parameter is not necessary."
+msgstr "Baafata mandhee A1 keessa jiru irratti lakkoofsa 'dish' galchuu qabda, maqaan dish akka barruutti yerosuma mandhee (B1) ollaa jiru keessatti mul'ata.Lakkoofsi maqaa moggaasuuf gargaaru waraantoo D1:E100 keessatti qabatama. D1 <item type=\"input\">100</item> qabata, E1 maqaa <item type=\"input\">soup kuduraa fi muduraa</item> qabata, fi wantoota baafataa 100f haaluma kanaan itti fufa.Lakkoofsonni tarjaa D keessaa tartiiba jalaa oliin tartiiba'u; kanaafuu, ulaagaan <item type=\"literal\">Tartiibessuu</item> dirqalaa barbaachisaa miti."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3145663\n"
+"97\n"
+"help.text"
+msgid "Enter the following formula in B1:"
+msgstr "Foormulaa armaan gadii B1 keessa galchi:"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3151172\n"
+"98\n"
+"help.text"
+msgid "<item type=\"input\">=VLOOKUP(A1;D1:E100;2)</item>"
+msgstr "<item type=\"input\">=VLOOKUP(A1;D1:E100;2)</item>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149200\n"
+"99\n"
+"help.text"
+msgid "As soon as you enter a number in A1 B1 will show the corresponding text contained in the second column of reference D1:E100. Entering a nonexistent number displays the text with the next number down. To prevent this, enter FALSE as the last parameter in the formula so that an error message is generated when a nonexistent number is entered."
+msgstr "Akkuma lakkoofsa A1 keessa galchiteen B1 barruu tarjaa lammaffaa wabii D1:E100 keessa jiru agarsiisa. Lakkoofsa hin jirre galchuun barruu lakkoofsa gadii itti aanu wajjiin mul'issa. Kana ittisuuf, foormulaa keessatti akka ulaagaa dhumaatti SOBA galchi kanaafuu yeroo lakkoofsi hin jirre seenu ergaan dogongoraa ni uumama."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3153905\n"
+"help.text"
+msgid "<bookmark_value>sheet numbers; looking up</bookmark_value> <bookmark_value>SHEET function</bookmark_value>"
+msgstr "<bookmark_value>lakkoofsota wardii; ilaaluu</bookmark_value> <bookmark_value>faankishinii WARDII</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153905\n"
+"215\n"
+"help.text"
+msgid "SHEET"
+msgstr "SHEET"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150309\n"
+"216\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_TABELLE\">Returns the sheet number of a reference or a string representing a sheet name.</ahelp> If you do not enter any parameters, the result is the sheet number of the spreadsheet containing the formula."
+msgstr "<ahelp hid=\"HID_FUNC_TABELLE\">Lakkoofsa wardii wabii ykn diraa maqaa wardii bakka bu'u kenna.</ahelp> Yoo ulaagaalee kamiyyu hin galchine ta'e, firiin lakkoofsa wardii wardii foormulaa qabateedha."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3148564\n"
+"217\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153095\n"
+"218\n"
+"help.text"
+msgid "SHEET(Reference)"
+msgstr "SHEET(Wabii)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154588\n"
+"219\n"
+"help.text"
+msgid "<emph>Reference</emph> is optional and is the reference to a cell, an area, or a sheet name string."
+msgstr "<emph>Wabiin</emph> dirqalaa fi mandheef, naannoof, ykn diraa maqaa wardiidhaaf wabiidha."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3155399\n"
+"220\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3146988\n"
+"221\n"
+"help.text"
+msgid "<item type=\"input\">=SHEET(Sheet2.A1)</item> returns 2 if Sheet2 is the second sheet in the spreadsheet document."
+msgstr "<item type=\"input\">=SHEET(Wardii.A1)</item> yoo wardii2 galmee wardii keessatti wardii lammaffaa ta'e 2 kenna."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3148829\n"
+"help.text"
+msgid "<bookmark_value>number of sheets; function</bookmark_value> <bookmark_value>SHEETS function</bookmark_value>"
+msgstr "<bookmark_value>lakkoofsa wardiiwwanii; faankishinii</bookmark_value> <bookmark_value>faankishinii SHEETS</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3148829\n"
+"222\n"
+"help.text"
+msgid "SHEETS"
+msgstr "SHEETS"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148820\n"
+"223\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_TABELLEN\">Determines the number of sheets in a reference.</ahelp> If you do not enter any parameters, it returns the number of sheets in the current document."
+msgstr "<ahelp hid=\"HID_FUNC_TABELLEN\">Lakkoofsa wardiiwwanii wabii keessa jiran murteessa.</ahelp> Yoo ulaagaalee kamiyyu hin galchine ta'e, lakkoofsa wardiiwwanii galmee ammee keessa jiran kenna."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3154220\n"
+"224\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150777\n"
+"225\n"
+"help.text"
+msgid "SHEETS(Reference)"
+msgstr "SHEEETS(Wabii)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153060\n"
+"226\n"
+"help.text"
+msgid "<emph>Reference</emph> is the reference to a sheet or an area. This parameter is optional."
+msgstr "<emph>Wabii</emph>n wabii wardii ykn naannoo ti. Ulaagaan kun dirqaladha."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3149766\n"
+"227\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150507\n"
+"228\n"
+"help.text"
+msgid "<item type=\"input\">=SHEETS(Sheet1.A1:Sheet3.G12)</item> returns 3 if Sheet1, Sheet2, and Sheet3 exist in the sequence indicated."
+msgstr "<item type=\"input\">=SHEETS(Sheet1.A1:Sheet3.G12)</item> yoo wardii1, wardii2, fi wardii3 akka tartiiba agarsiifameetti jiraatan 3 kenna."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3158407\n"
+"help.text"
+msgid "<bookmark_value>MATCH function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii MATCH</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3158407\n"
+"101\n"
+"help.text"
+msgid "MATCH"
+msgstr "MATCH"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154896\n"
+"102\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VERGLEICH\">Returns the relative position of an item in an array that matches a specified value.</ahelp> The function returns the position of the value found in the lookup_array as a number."
+msgstr "<ahelp hid=\"HID_FUNC_VERGLEICH\">Qubannoo birqabaa wanta waraantoo keessa jiruu kan gatii adda ba'e wajjiin walsimatu kenna.</ahelp> Faankishinichi qubannoo gatii waraantoo_ilaaluu keessatti akka lakkoofsaatti argamu kenna."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153834\n"
+"103\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3159152\n"
+"104\n"
+"help.text"
+msgid "MATCH(SearchCriterion; LookupArray; Type)"
+msgstr "MATCH(UlaagaaBarbaachaa; WaraantooIlaaluu; Gosa)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149336\n"
+"105\n"
+"help.text"
+msgid "<emph>SearchCriterion</emph> is the value which is to be searched for in the single-row or single-column array."
+msgstr "<emph>UlaagaanBarbaachaa</emph> gatii waraantoo taree-qeenxee ykn tarjaa-qeenxee keessaa barbaadamuu qabudha."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3159167\n"
+"106\n"
+"help.text"
+msgid "<emph>LookupArray</emph> is the reference searched. A lookup array can be a single row or column, or part of a single row or column."
+msgstr "<emph>WaraantoonIlaaluu</emph> wabii barbaadanedha. Waraantoon ilaaluu tarree ykn tarjaa qeenxee, ykn kutaa tarree ykn tarjaa qeenxee ta'uu ni danda'a."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147239\n"
+"107\n"
+"help.text"
+msgid "<emph>Type</emph> may take the values 1, 0, or -1. If Type = 1 or if this optional parameter is missing, it is assumed that the first column of the search array is sorted in ascending order. If Type = -1 it is assumed that the column in sorted in descending order. This corresponds to the same function in Microsoft Excel."
+msgstr "<emph>Gosni</emph> gatiiwwan 1, 0, ykn -1 fudhachuu danda'a. Yoo Gosni = 1 ykn yoo ulaagaan dirqalaa kun hafe, tarjaan jalqabaa waraantoo barbaachaa jalaa ol akka tartiibeffametti ilaalama. Yoo Gosni = -1 tarjaan irraa gad akka tartiibeffametti ilaalama. Kun Maaykiroosooft Ekseelii keessatti faankishinii wal fakkaataa ilaallata."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154265\n"
+"231\n"
+"help.text"
+msgid "If Type = 0, only exact matches are found. If the search criterion is found more than once, the function returns the index of the first matching value. Only if Type = 0 can you search for regular expressions."
+msgstr "Yoo Gosni = 0, walsimannaa sirrii qofti ni argamu. Yoo ulaagaan barbaachaa al tokko caalaa argame, faankishinichi kasaa gatii walsimsiisuu jalqabaa kenna. Yoo Gosni = 0 qofa ibsoota idilee barbaadu dandeessa."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147528\n"
+"232\n"
+"help.text"
+msgid "If Type = 1 or the third parameter is missing, the index of the last value that is smaller or equal to the search criterion is returned. This applies even when the search array is not sorted. For Type = -1, the first value that is larger or equal is returned."
+msgstr "Yoo Gosa = 1 ykn ulaagaan sadaffaa hafe, kasaan gatii dhumaa ulaagaa barbaachaa wajjiin walqixa ykn irra xiqqaa ta'e ni kennama. Kun Yeroo waraantoon barbaachaa hin tartiibofneyyu faayidaa irra ni oola. Gosa = -1f, lakkoofsi jalqabaa walqixa ykn guddaa ta'e ni keennama."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3155119\n"
+"108\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155343\n"
+"109\n"
+"help.text"
+msgid "<item type=\"input\">=MATCH(200;D1:D100)</item> searches the area D1:D100, which is sorted by column D, for the value 200. As soon as this value is reached, the number of the row in which it was found is returned. If a higher value is found during the search in the column, the number of the previous row is returned."
+msgstr "<item type=\"input\">=MATCH(200;D1:D100)</item> naannoo D1:D100, gatii 200f, tajaa D dhaan tartiiba'e barbaada. Akkuma gatii kana bira ga'ametti, lakkoofsi tarree gatiin kun kun keessaa argame ni deebi'a. Yeroo tarjaa keessa barbaachi adeemsifamu yoo gatii guddaan argame, lakkoofsi tarree duraa ni deebi'a."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3158430\n"
+"help.text"
+msgid "<bookmark_value>OFFSET function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii OFFSET</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3158430\n"
+"111\n"
+"help.text"
+msgid "OFFSET"
+msgstr "OFFSET"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149167\n"
+"112\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VERSCHIEBUNG\">Returns the value of a cell offset by a certain number of rows and columns from a given reference point.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VERSCHIEBUNG\">Gatii iddooda mandhee tarreewwanii fi tarjaawwan murta'aaniin tuqaa wabii kenname keessaa deebisa.</ahelp>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3146952\n"
+"113\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3159194\n"
+"114\n"
+"help.text"
+msgid "OFFSET(Reference; Rows; Columns; Height; Width)"
+msgstr "OFFSET(Wabii; Tarreewwan; Tarjaawwan; Hojjaa; Dalgee)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3152360\n"
+"115\n"
+"help.text"
+msgid "<emph>Reference</emph> is the reference from which the function searches for the new reference."
+msgstr "<emph>Wabii</emph>n wabii faankishiniin wabii haaraa irraa barbaadudha."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3156032\n"
+"116\n"
+"help.text"
+msgid "<emph>Rows</emph> is the number of rows by which the reference was corrected up (negative value) or down."
+msgstr "<emph>Tarreewwan</emph> lakkoofsa tarreewwanii wabiin ittiin ol(gatii negetiivaa) ykn gad sirraa'edha."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3166458\n"
+"117\n"
+"help.text"
+msgid "<emph>Columns</emph> (optional) is the number of columns by which the reference was corrected to the left (negative value) or to the right."
+msgstr "<emph>Tarjaawwan</emph> (dirqala) lakkoofsa tarjaawwanii kan wabiin ittiin gara bitaatti (gatii negetiivaa) ykn gara mirgaatti sirraa'edha."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150708\n"
+"118\n"
+"help.text"
+msgid "<emph>Height</emph> (optional) is the vertical height for an area that starts at the new reference position."
+msgstr "<emph>Hojjaa</emph>n (dirqala) hojjaa sarjaa bal'ina qubannoo wabii haaraa irratti jalqabuuti."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147278\n"
+"119\n"
+"help.text"
+msgid "<emph>Width</emph> (optional) is the horizontal width for an area that starts at the new reference position."
+msgstr "<emph>Dalgee</emph>n (dirqala) dalgee surdalaa bal'ina qubannoo wabii haaaraa irratti jalqabuuti."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id8662373\n"
+"help.text"
+msgid "Arguments <emph>Rows</emph> and <emph>Columns</emph> must not lead to zero or negative start row or column."
+msgstr "Qajeelfamoonni <emph>Tarreewwan</emph> fi <emph>Tarjaawwan</emph> gara zeerootti ykn tarree jalqabaa negetiiviitti ykn tarjaatti deemsisuu hin qabu."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id9051484\n"
+"help.text"
+msgid "Arguments <emph>Height</emph> and <emph>Width</emph> must not lead to zero or negative count of rows or columns."
+msgstr "Qajeelfamoonni <emph>Hojjaa</emph> fi <emph>Dalgee</emph> gara zeerootti ykn tarree negetiiviidhaan lakkaawuutti ykn tarjaatti deemsisuu hin qabu."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN1104B\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3155586\n"
+"120\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149744\n"
+"121\n"
+"help.text"
+msgid "<item type=\"input\">=OFFSET(A1;2;2)</item> returns the value in cell C3 (A1 moved by two rows and two columns down). If C3 contains the value <item type=\"input\">100</item> this function returns the value 100."
+msgstr "<item type=\"input\">=OFFSET(A1;2;2)</item> gatii mandhee C3 (A1 tarreewwan lamaa fi tarjaawwan lamaan gad hiiqe) kenna. Yoo C3n gatii <item type=\"input\">100</item> qabaate faankishiniin kun gatii 100 kenna."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id7439802\n"
+"help.text"
+msgid "<item type=\"input\">=OFFSET(B2:C3;1;1)</item> returns a reference to B2:C3 moved down by 1 row and one column to the right (C3:D4)."
+msgstr "<item type=\"input\">=OFFSET(B2:C3;1;1)</item> wabii B2:C3 tarree 1 fi tarjaa tokkoon gad hiiqe gara mirgaatti (C3:D4) kenna."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3009430\n"
+"help.text"
+msgid "<item type=\"input\">=OFFSET(B2:C3;-1;-1)</item> returns a reference to B2:C3 moved up by 1 row and one column to the left (A1:B2)."
+msgstr "<item type=\"input\">=OFFSET(B2:C3;-1;-1)</item> wabii B2:C3 tarree 1 fi tarjaa tokkoon ol hiiqe gara bitaatti (A1:B2) kenna."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id2629169\n"
+"help.text"
+msgid "<item type=\"input\">=OFFSET(B2:C3;0;0;3;4)</item> returns a reference to B2:C3 resized to 3 rows and 4 columns (B2:E4)."
+msgstr "<item type=\"input\">=OFFSET(B2:C3;0;0;3;4)</item> wabii B2:C3 tarreewwan 3 fi tarjaawwan 4 (B2:E4)tti irra deebi'anii hamamtooman kenna."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id6668599\n"
+"help.text"
+msgid "<item type=\"input\">=OFFSET(B2:C3;1;0;3;4)</item> returns a reference to B2:C3 moved down by one row resized to 3 rows and 4 columns (B2:E4)."
+msgstr "<item type=\"input\">=OFFSET(B2:C3;1;0;3;4)</item> wabii B2:C3 tarree tokko gara tarreewwan 3 fi tarjaawwan 4tti irra deebi'ee hamamtoomeetiin (B2:E4) gara gadiitti hiiqe kenna."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153739\n"
+"122\n"
+"help.text"
+msgid "<item type=\"input\">=SUM(OFFSET(A1;2;2;5;6))</item> determines the total of the area that starts in cell C3 and has a height of 5 rows and a width of 6 columns (area=C3:H7)."
+msgstr "<item type=\"input\">=SUM(OFFSET(A1;2;2;5;6))</item> dimshaasha bal'inaa mandhee C3 keessatti jalqabu murteessa dabalataanis hojjaa tarreewwan 5 fi dalgee tarjaawwan 6 qaba (bal'ina=C3:H7)."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3159273\n"
+"help.text"
+msgid "<bookmark_value>LOOKUP function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii LOOKUP</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3159273\n"
+"123\n"
+"help.text"
+msgid "LOOKUP"
+msgstr "LOOKUP"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153389\n"
+"124\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VERWEIS\">Returns the contents of a cell either from a one-row or one-column range.</ahelp> Optionally, the assigned value (of the same index) is returned in a different column and row. As opposed to <link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> and <link href=\"text/scalc/01/04060109.xhp\" name=\"HLOOKUP\">HLOOKUP</link>, search and result vector may be at different positions; they do not have to be adjacent. Additionally, the search vector for the LOOKUP must be sorted ascending, otherwise the search will not return any usable results."
+msgstr "<ahelp hid=\"HID_FUNC_VERWEIS\">Mandhee hangii tarree-tokkoo ykn tarjaa-tokkoo irraa qabeentota kenna.</ahelp> Dirqalaan, gatiin (kasaa walfakkaataa) moggaafame tarjaa fi tarree garaagaraa keessatti kennama. Faallaa <link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> fi <link href=\"text/scalc/01/04060109.xhp\" name=\"HLOOKUP\">HLOOKUP</link>tti, kalqabeen barbaachaa fi firii bakka garaagaraa ta'uu danda'u; isaan wal cinaa ta'uu hin qaban. Dabalataan, kalqabeen barbaachaa LOOKUP jalaa ol tartiibeffamuu qaba, ta'uu baannaan barbaachi firiiwwan faayidaa irra oolan hin kennu."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id4484084\n"
+"help.text"
+msgid "If LOOKUP cannot find the search criterion, it matches the largest value in the search vector that is less than or equal to the search criterion."
+msgstr "Yoo LOOKUP ulaagaa barbaachaa argachuu dadhabe, gatii guddaa kalqabee barbaachaa kan ulaagaa barbaachaa wajjiin walqixa ykn irra xiqqaa ta'e waliin wal simata."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3152947\n"
+"125\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154104\n"
+"126\n"
+"help.text"
+msgid "LOOKUP(SearchCriterion; SearchVector; ResultVector)"
+msgstr "LOOKUP(UlaagaaBarbaachaa; KalqabeeBarbaachaa; KalqabeeFirii)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150646\n"
+"127\n"
+"help.text"
+msgid "<emph>SearchCriterion</emph> is the value to be searched for; entered either directly or as a reference."
+msgstr "<emph>UlaagaanBarbaachaa</emph> gatii barbaadamuu qabudha; kallattiidhaan ykn akka wabiitti galeera."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154854\n"
+"128\n"
+"help.text"
+msgid "<emph>SearchVector</emph> is the single-row or single-column area to be searched."
+msgstr "<emph>KalqabeenBarbaachaa</emph> bal'ina tarree-qeenxee ykn tarjaa-qeenxee barbaadamuuf jirudha."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149925\n"
+"129\n"
+"help.text"
+msgid "<emph>ResultVector</emph> is another single-row or single-column range from which the result of the function is taken. The result is the cell of the result vector with the same index as the instance found in the search vector."
+msgstr "<emph>KalqabeenFirii</emph> hangii tarree-qeenxee ykn tarjaa-qeenee biraa firiin faankishinii irraa fudhatamudha. Firiin mandhee kalqabee firii kasaa walfakkaataa akka miseensa kalqabee barbaachaa keessaa argameedha."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3148624\n"
+"130\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149809\n"
+"131\n"
+"help.text"
+msgid "<item type=\"input\">=LOOKUP(A1;D1:D100;F1:F100)</item> searches the corresponding cell in range D1:D100 for the number you entered in A1. For the instance found, the index is determined, for example, the 12th cell in this range. Then, the contents of the 12th cell are returned as the value of the function (in the result vector)."
+msgstr "<item type=\"input\">=LOOKUP(A1;D1:D100;F1:F100)</item> Lakkoofsa A1 keessa galchiteef hangii D1:D100 keessaa mandhee barbaada. Miseensa argameef, kasaan murtaa'eera, fakkeenyaaf, mandhee 12ffaa hangii kana keessaa. Sana booda, qabeentotni mandhee 12ffaa akka gatii faankishinii (kalqabee firii keessaatti) deebi'u."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3149425\n"
+"help.text"
+msgid "<bookmark_value>STYLE function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii STYLE</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3149425\n"
+"133\n"
+"help.text"
+msgid "STYLE"
+msgstr "STYLE"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150826\n"
+"134\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VORLAGE\">Applies a style to the cell containing the formula.</ahelp> After a set amount of time, another style can be applied. This function always returns the value 0, allowing you to add it to another function without changing the value. Together with the CURRENT function you can apply a color to a cell regardless of the value. For example: =...+STYLE(IF(CURRENT()>3;\"red\";\"green\")) applies the style \"red\" to the cell if the value is greater than 3, otherwise the style \"green\" is applied. Both cell formats have to be defined beforehand."
+msgstr "<ahelp hid=\"HID_FUNC_VORLAGE\">Mandhee foormulaa qabatetti haala hojii irra oolcha.</ahelp> Yeroo hamma ta'een booda, haalatni biraa hojii irra ooluu danda'a. Faankishiniin kun, gatii osoo hin jijjiiriin akka ati faankisinii biraatti dabaltuuf sii eeyyamuudhaan yeroo hunda gatii 0 kenna. Faankishinii CURRENT wajjiin gatii osoo hin ilaallatiin mandheetti halluu dibuu ni dandeessa. Fakkeenyaaf: =...+SYLE(IF(CURRENT()>3;\"diimaa\";\"magariisa\")) Yoo gatiin irra guddaa 3 ta'e haalata \"diimaa\" mandheetti hojii irra oolcha, ta'uu baannaan haalata \"magariisatu\" hojii irra oola. Dhangiiwwan mandhee lamaanuu duraan ibsamuu qabu."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3145373\n"
+"135\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149302\n"
+"136\n"
+"help.text"
+msgid "STYLE(\"Style\"; Time; \"Style2\")"
+msgstr "STYLE(\"Haalata\"; Yeroo; \"Haalata2\")"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150596\n"
+"137\n"
+"help.text"
+msgid "<emph>Style</emph> is the name of a cell style assigned to the cell. Style names must be entered in quotation marks."
+msgstr "<emph>Haalatni</emph> maqaa haalata mandhee mandheetti moggaafameedha. Maqaawwan haalataa mallattoo waraabbii keessa taa'uu qabu."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3156149\n"
+"138\n"
+"help.text"
+msgid "<emph>Time</emph> is an optional time range in seconds. If this parameter is missing the style will not be changed after a certain amount of time has passed."
+msgstr "<emph>Yeroon</emph> hangii yeroo sekondiitiinii dirqalaadha. Yoo ulaagaan kun hafe haalatni yeroon murtaa'e erga darbee booda jijjiiramuu hin dandaa'u."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149520\n"
+"139\n"
+"help.text"
+msgid "<emph>Style2</emph> is the optional name of a cell style assigned to the cell after a certain amount of time has passed. If this parameter is missing \"Default\" is assumed."
+msgstr "<emph>Haalata2</emph> maqaa dirqalaa haalata mandhee erga yeroon murtaa'ee darbee booda mandheetti moggaafamedha. Yoo ulaagaan kun hafe \"durtiin\" ni tilmaama."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN111CA\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3159254\n"
+"140\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3151374\n"
+"141\n"
+"help.text"
+msgid "<item type=\"input\">=STYLE(\"Invisible\";60;\"Default\")</item> formats the cell in transparent format for 60 seconds after the document was recalculated or loaded, then the Default format is assigned. Both cell formats have to be defined beforehand."
+msgstr "<item type=\"input\">=STYLE(\"Invisible\";60;\"Default\")</item> mandhee dhangii ifaa keessaa erga galmeen fe'amee ykn irra deebi'amee shallagamee booda sekondii 60f dhangi'ama, sana booda dhangiin durtii ni moggaafama. Dhangiiwwan mandhee lamaan isaaniiyyu dura ibsamuu qabu."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id8056886\n"
+"help.text"
+msgid "Since STYLE() has a numeric return value of zero, this return value gets appended to a string. This can be avoided using T() as in the following example"
+msgstr "STYLE()n gatii lakkoofsaa deebi'u zeeroo waan qabuuf, gatiin deebi'u kun diraatti miilta'a. KUn akka fakkeenya armaan gadiitti T() fayyadamuudhaan dhorgamuu danda'a."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3668935\n"
+"help.text"
+msgid "<item type=\"input\">=\"Text\"&T(STYLE(\"myStyle\"))</item>"
+msgstr "<item type=\"input\">=\"Text\"&T(STYLE(\"myStyle\"))</item>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3042085\n"
+"help.text"
+msgid "See also CURRENT() for another example."
+msgstr "Fakkeenya biraaf dabalataan CURRENT()s ilaali."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3150430\n"
+"help.text"
+msgid "<bookmark_value>CHOOSE function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii CHOOSE</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3150430\n"
+"142\n"
+"help.text"
+msgid "CHOOSE"
+msgstr "CHOOSE"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3143270\n"
+"143\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_WAHL\">Uses an index to return a value from a list of up to 30 values.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_WAHL\">Tarree gatiiwwan hanga 30 keessaa gatii deebisuuf kasaa fayyadama.</ahelp>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153533\n"
+"144\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155425\n"
+"145\n"
+"help.text"
+msgid "CHOOSE(Index; Value1; ...; Value30)"
+msgstr "CHOOSE(Kasaa; Gatii1; ...; Gatii30)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3144755\n"
+"146\n"
+"help.text"
+msgid "<emph>Index</emph> is a reference or number between 1 and 30 indicating which value is to be taken from the list."
+msgstr "<emph>Kasaa</emph>n wabii ykn lakkoofsa 1 fi 30 gidduu gatii kamtu tarree keessaa akka fudhatamuu qabu mul'isudha."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149939\n"
+"147\n"
+"help.text"
+msgid "<emph>Value1...Value30</emph> is the list of values entered as a reference to a cell or as individual values."
+msgstr "<emph>Gatii1...Gatii30</emph> tarree gatiiwwanii mandheef akka wabiitti seene ykn akka gatiiwwan mata mataattii dha."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3151253\n"
+"148\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150625\n"
+"149\n"
+"help.text"
+msgid "<item type=\"input\">=CHOOSE(A1;B1;B2;B3;\"Today\";\"Yesterday\";\"Tomorrow\")</item>, for example, returns the contents of cell B2 for A1 = 2; for A1 = 4, the function returns the text \"Today\"."
+msgstr "<item type=\"input\">=CHOOSE(A1;B1;B2;B3;\"Har'a\";\"Kaleessa\";\"Boru\")</item>, fakkeenyaf, qabeentoon mandhee B2 A1=2 dhaaf; A1=4 dhaaf, deebisa faankishiniin barruu \"Har'a\" deebisa."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3151001\n"
+"help.text"
+msgid "<bookmark_value>HLOOKUP function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii HLOOKUP</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3151001\n"
+"151\n"
+"help.text"
+msgid "HLOOKUP"
+msgstr "HLOOKUP"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148688\n"
+"152\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_WVERWEIS\">Searches for a value and reference to the cells below the selected area.</ahelp> This function verifies if the first row of an array contains a certain value. The function returns then the value in a row of the array, named in the <emph>Index</emph>, in the same column."
+msgstr "<ahelp hid=\"HID_FUNC_WVERWEIS\">Mandheewwan naannoo filatamee gad jiraniif gatii fi wabii barbaada.</ahelp> Faankishiniin kun tarreen jalqabaa waraantoo gatii murtaa'e qabaachuu isaa mirkaneessa. Faankishinichi ni deebisa sana booda gatiin tarree waraantoo keessaa, <emph>Kasaa</emph> tarjaa wal fakkaatu, keessatti moggaafama."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3154661\n"
+"153\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3146070\n"
+"154\n"
+"help.text"
+msgid "HLOOKUP(SearchCriteria; Array; Index; Sorted)"
+msgstr "HLOOKUP(UlaagaaBarbaachaa; Waraantoo; Kasaa; Tartiibeefame)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148672\n"
+"155\n"
+"help.text"
+msgid "See also:<link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> (columns and rows are exchanged)"
+msgstr "Akkaasumas:<link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> ilaali (tarjaawwanii fi tarreewwan)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3147321\n"
+"help.text"
+msgid "<bookmark_value>ROW function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii Tarree</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3147321\n"
+"157\n"
+"help.text"
+msgid "ROW"
+msgstr "ROW"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154564\n"
+"203\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZEILE\">Returns the row number of a cell reference.</ahelp> If the reference is a cell, it returns the row number of the cell. If the reference is a cell range, it returns the corresponding row numbers in a one-column <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"Array\">Array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the ROW function with a range reference is not used in an array formula, only the row number of the first range cell will be returned."
+msgstr "<ahelp hid=\"HID_FUNC_ZEILE\">Lakkoofsa tarree wabii man'ee kenna.</ahelp> Yoo wabiin mandhee ta'e lakkoofsi tarree mandhichaa ni deebi'a; yoo ulaagaan naannoo mandhee ta'e, yoo foormulaan akka <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"Array\">waraantoo</link> <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">akka foormulaa waraantootti</link> galeera ta'e lakkoofsonni tarree tarjaa qeenxee keessatti kennamu.Yoo faankishiniin ROW naannoo ulaagaa wabii keessa jiru foormulaa waraantoof hin fayyadne ta'e, lakkoofsi tarree man'ee jalqabaa naannoo sana keessa jiru qofti ni murtaa'a."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3158439\n"
+"159\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154916\n"
+"160\n"
+"help.text"
+msgid "ROW(Reference)"
+msgstr "ROW(wabii)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3156336\n"
+"161\n"
+"help.text"
+msgid "<emph>Reference</emph> is a cell, an area, or the name of an area."
+msgstr "<emph>wabii</emph>n man'ee tokko, iddoo, ykn maqaa iddooti."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3151109\n"
+"204\n"
+"help.text"
+msgid "If you do not indicate a reference, the row number of the cell in which the formula is entered will be found. <item type=\"productname\">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell."
+msgstr "Yoo wabii hin agarsiisnee ta'e, lakkoofsi tarree mandhee foormulaan keessa seene ni argama. <item type=\"productname\">%PRODUCTNAME</item> Calciin wabii ofumaan gara mandhee ammeetti qindeessa."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3155609\n"
+"162\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154830\n"
+"205\n"
+"help.text"
+msgid "<item type=\"input\">=ROW(B3)</item> returns 3 because the reference refers to the third row in the table."
+msgstr "<item type=\"input\">=ROW(B3)</item> 3 deebisa sababni isaas wabiin tarree sadaffaa gabatee keessaa agarsiisa."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147094\n"
+"206\n"
+"help.text"
+msgid "<item type=\"input\">{=ROW(D5:D8)}</item> returns the single-column array (5, 6, 7, 8) because the reference specified contains rows 5 through 8."
+msgstr "<item type=\"input\">{=ROW(D5:D8)}</item> waraantoo tarjaa-qeenxee (5, 6, 7, 8) deebisa sababni isaas wabiin adda ba'e tarreewwan 5 hanga 8 of keessatti qabata."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153701\n"
+"207\n"
+"help.text"
+msgid "<item type=\"input\">=ROW(D5:D8)</item> returns 5 because the ROW function is not used as array formula and only the number of the first row of the reference is returned."
+msgstr "<item type=\"input\">=ROW(D5:D8)</item> 5 deebisa sababni isaaas faankishiniin ROW akka foormulaa waraantootti hin fayyadu dabalataanis lakkoofsi tarree jalqabaa wabii qofti ni deebi'a."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150996\n"
+"208\n"
+"help.text"
+msgid "<item type=\"input\">{=ROW(A1:E1)}</item> and <item type=\"input\">=ROW(A1:E1)</item> both return 1 because the reference only contains row 1 as the first row in the table. (Because single-row areas only have one row number it does not make any difference whether or not the formula is used as an array formula.)"
+msgstr "<item type=\"input\">{=ROW(A1:E1)}</item> fi <item type=\"input\">=ROW(A1:E1)</item> lamaan isaaniyyu 1 deebisu sababni isaas wabiin gabatee keessatti akka tarjaa jalqabaatti tarree 1 qofa qabata. (Sababni isaas naannoowwan tarree-qeenxee lakkoofsa tarree tokkoo formulaan akka foormulaa waraantootti fayyadus fayyaduu baatus garaagarummaa hin uumne qofa qaba.)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153671\n"
+"209\n"
+"help.text"
+msgid "<item type=\"input\">=ROW()</item> returns 3 if the formula was entered in row 3."
+msgstr "<item type=\"input\">=ROW()</item> yoo foormulaan tarree 3 keessa seene 3 deebisa."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153790\n"
+"210\n"
+"help.text"
+msgid "<item type=\"input\">{=ROW(Rabbit)}</item> returns the single-column array (1, 2, 3) if \"Rabbit\" is the named area (C1:D3)."
+msgstr "<item type=\"input\">{=ROW(Hilleensi)}</item> yoo \"Hilleensi\" maqaa naannoo (C1:D3) ta'e waraantoo tarjaa-qeenxee (1, 2, 3) deebisa."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3145772\n"
+"help.text"
+msgid "<bookmark_value>ROWS function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii ROWS</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3145772\n"
+"166\n"
+"help.text"
+msgid "ROWS"
+msgstr "ROWS"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148971\n"
+"167\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZEILEN\">Returns the number of rows in a reference or array.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZEILEN\">Lakkoofsa tarreewwanii wabii ykn waraantoo keessaa deebisa.</ahelp>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3156051\n"
+"168\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154357\n"
+"169\n"
+"help.text"
+msgid "ROWS(Array)"
+msgstr "ROWS(Waraantoo)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155942\n"
+"170\n"
+"help.text"
+msgid "<emph>Array</emph> is the reference or named area whose total number of rows is to be determined."
+msgstr "<emph>Waraantoo</emph>n wabii ykn naannoo maqaan itti moggaafame lakkoofsi dimshaashaa tarreewwan isaa murtaa'uu qabudha."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3155869\n"
+"171\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154725\n"
+"212\n"
+"help.text"
+msgid "<item type=\"input\">=Rows(B5)</item> returns 1 because a cell only contains one row."
+msgstr "<item type=\"input\">=Rows(B5)</item> 1 deebisa sababni isaas mandheen tarree tokko qofa qabata."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150102\n"
+"172\n"
+"help.text"
+msgid "<item type=\"input\">=ROWS(A10:B12)</item> returns 3."
+msgstr "<item type=\"input\">=ROWS(A10:B12)</item> 3 deebisa."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155143\n"
+"213\n"
+"help.text"
+msgid "<item type=\"input\">=ROWS(Rabbit)</item> returns 3 if \"Rabbit\" is the named area (C1:D3)."
+msgstr "<item type=\"input\">=ROWS(Hilleensi)</item> Yoo \"Hilleensi\" maqaa naannoo (C1:D3) ta'e 3 deebisa."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id9959410\n"
+"help.text"
+msgid "<bookmark_value>HYPERLINK function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii HYPERLINK</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11798\n"
+"help.text"
+msgid "HYPERLINK"
+msgstr "HYPERLINK"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN117F1\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_HYPERLINK\">When you click a cell that contains the HYPERLINK function, the hyperlink opens.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_HYPERLINK\">Yeroo mandhee faankishinii HYPERLINK qabatu cuqaastu, geessituun ni banama.</ahelp>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11800\n"
+"help.text"
+msgid "If you use the optional <emph>CellText</emph> parameter, the formula locates the URL, and then displays the text or number."
+msgstr "Yoo ulaagaa <emph>barruu mandhee</emph> dirqalaa fayyadamte, foormulaan URL qubachiisa, sana boodas barruu mul'isa."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11803\n"
+"help.text"
+msgid "To open a hyperlinked cell with the keyboard, select the cell, press F2 to enter the Edit mode, move the cursor in front of the hyperlink, press Shift+F10, and then choose <emph>Open Hyperlink</emph>."
+msgstr "Mandhee geessifame gabatee cuqoo wajjiin banuuf, mandhee filadhu, haalata gulaallii galchuuf F2 dhiibi, qaree fuldura geessituu jiru hiiqsi, Shift+F10 dhiibi, fi sana booda <emph>Geessituu Bani</emph> fladhu."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN1180A\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN1180E\n"
+"help.text"
+msgid "HYPERLINK(\"URL\") or HYPERLINK(\"URL\"; \"CellText\")"
+msgstr "HYPERLINK(\"URL\") ykn HYPERLINK(\"URL\"; \"BarruuMandhee\")"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11811\n"
+"help.text"
+msgid "<emph>URL</emph> specifies the link target. The optional <emph>CellText</emph> parameter is the text or a number that is displayed in the cell and will be returned as the result. If the <emph>CellText</emph> parameter is not specified, the <emph>URL</emph> is displayed in the cell text and will be returned as the result."
+msgstr "<emph>URL</emph>n galtee walqabsiiftuu adda baasa. Ulaagaan <emph>BarruuMandhee</emph> dirqalaa barruu mandhee keessatti mul'atee fi firii faankishinii dha. Yoo ulaagaan <emph>BarruuMandhee</emph> adda hin baane ta'e, <emph>URL</emph>iin barruu mandhee fi firii faankishinii keessatti mul'ifama"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id0907200912224576\n"
+"help.text"
+msgid "The number 0 is returned for empty cells and matrix elements."
+msgstr "Mandheewwan duwwaa fi maalimoota tareentaaf lakkoofsi 0 deebi'a."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11823\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11827\n"
+"help.text"
+msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\")</item> displays the text \"http://www.example.org\" in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr "<item type=\"input\">=HYPERLINK(\"http://www.example.org\")</item> yeroo cuqaafamu barruu \"http://www.example.org\" mandhee keessaa ni mul'isa dabalataanis geessituu http://www.example.org hojii irra oolcha."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN1182A\n"
+"help.text"
+msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\";\"Click here\")</item> displays the text \"Click here\" in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr "<item type=\"input\">=HYPERLINK(\"http://www.example.org\";\"Click here\")</item> yeroo cuqaafamu barruu \"as Cuqaasi\" kan mandhee keessa jiru mul'isa dabalataanis geessituu http://www.example.org hojii irra oolcha."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id0907200912224534\n"
+"help.text"
+msgid "=HYPERLINK(\"http://www.example.org\";12345) displays the number 12345 and executes the hyperlink http://www.example.org when clicked."
+msgstr "=GEESSITUU(\"http://www.example.org\";12345) lakkoofsa 12345 agarsiisa fi yeroo cuqaasamu geessituu http://www.example.org bana."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN1182D\n"
+"help.text"
+msgid "<item type=\"input\">=HYPERLINK($B4)</item> where cell B4 contains <item type=\"input\">http://www.example.org</item>. The function adds http://www.example.org to the URL of the hyperlink cell and returns the same text which is used as formula result."
+msgstr "<item type=\"input\">=HYPERLINK($B4)</item> yeroo mandheen B4 <item type=\"input\">http://www.example.org</item> qabatu. Faankishinichi http://www.example.org URLii mandhee geessituutti dabalee barruu walfakkaataa akka firii foormulaatti gargaaru deebisa."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11830\n"
+"help.text"
+msgid "<item type=\"input\">=HYPERLINK(\"http://www.\";\"Click \") & \"example.org\"</item> displays the text Click example.org in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr "<item type=\"input\">=HYPERLINK(\"http://www.\";\"Click \") & \"example.org\"</item> yeroo cuqaasamu barruu example.org Cuqaasi jedhu kan mandhee keessa jiru mul'isa dabalataanis hyperlink http://www.example.org hojii irra oolcha."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id8859523\n"
+"help.text"
+msgid "<item type=\"input\">=HYPERLINK(\"#Sheet1.A1\";\"Go to top\")</item> displays the text Go to top and jumps to cell Sheet1.A1 in this document."
+msgstr "<item type=\"input\">=HYPERLINK(\"#Sheet1.A1\";\"Go to top\")</item> barruu gara olii deemi jedhu mul'isa dabalataanis mandhee Wardii1.A1 galmee kanna keessa jirutti utaala."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id2958769\n"
+"help.text"
+msgid "<item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</item>displays the text Go to Writer bookmark, loads the specified text document and jumps to bookmark \"Specification\"."
+msgstr "<item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</item> barruu gara Writer bookmark deemi jedhu mul'isa, galmee barruu adda ba'e fe'a dabalataanis \"Addabaasuu\" bookmark itti utaala."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id7682424\n"
+"help.text"
+msgid "<bookmark_value>GETPIVOTDATA function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii GETPIVOTDATA</bookmark_value>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3747062\n"
+"help.text"
+msgid "GETPIVOTDATA"
+msgstr "GETPIVOTDATA"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3593859\n"
+"help.text"
+msgid "<ahelp hid=\".\">The GETPIVOTDATA function returns a result value from a pivot table. The value is addressed using field and item names, so it remains valid if the layout of the pivot table changes.</ahelp>"
+msgstr "<ahelp hid=\".\">Faankishiniin GETPIVOTDATA Gabatee Qiinxaa irraa firii gatii deebisa. Gatichi maqaawwan dirree fi wantaa fayyadamuudhaan teessoon isaa barama, Yoo teessumni Gabatee Qiinxaa jijjiirame gatii qabeessa ta'ee tura.</ahelp>"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id9741508\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id909451\n"
+"help.text"
+msgid "Two different syntax definitions can be used:"
+msgstr "Ibsoonni caasimaa garaagaraa lama fayyadamamuu danda'u:"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1665089\n"
+"help.text"
+msgid "GETPIVOTDATA(TargetField; pivot table; [ Field 1; Item 1; ... ])"
+msgstr "GETPIVOTDATA(DirreeGaltee; GabateeQiinxaa; [ Dirree 1; Wanta 1; ... ])"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id4997100\n"
+"help.text"
+msgid "GETPIVOTDATA(pivot table; Constraints)"
+msgstr "GETPIVOTDATA(GabateeQiinxaa; Hanqinoota)"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1672109\n"
+"help.text"
+msgid "The second syntax is assumed if exactly two parameters are given, of which the first parameter is a cell or cell range reference. The first syntax is assumed in all other cases. The Function Wizard shows the first syntax."
+msgstr "Yoo sirriitti ulaagaaleen lama kennaman caasimni lammaffaan, ulaagaan isaa tokkoffaa mandhee ykn wabii hangii mandhee ta'e ni tilmaamama. Caasimni tokkoffaan haalota biroo hunda keessatti ni tilmaamama. Masakni Faankishinii caasima tokkoffaa agarsiisa."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id9464094\n"
+"help.text"
+msgid "First Syntax"
+msgstr "Caasima Tokkoffaa"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id9302346\n"
+"help.text"
+msgid "<emph>TargetField</emph> is a string that selects one of the pivot table's data fields. The string can be the name of the source column, or the data field name as shown in the table (like \"Sum - Sales\")."
+msgstr "<emph>DirreenGaltee</emph> diraa dirreewwan deetaa gabatee qiinxaa tokko filatudha. Diraan maqaa tarjaa maddaa ta'uu danda'a, ykn maqaa dirree deetaa akka gabatee (like \"Sum - Sales\") keessatti agarsiifameetti."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id8296151\n"
+"help.text"
+msgid "<emph>pivot table</emph> is a reference to a cell or cell range that is positioned within a pivot table or contains a pivot table. If the cell range contains several pivot tables, the table that was created last is used."
+msgstr "<emph>GabateenQiinxaa</emph> mandhee ykn hangii mandhee Gabatee Qiinxaa wajjiin qubate ykn gabatee Gabatee qiinxaa qabatuudhaaf wabiidha. Yoo hangii mandhee gabateewwan Gabatee Qiinxaa hedduu qabaate, gabateen dhuma irratti uumame ni fayyadamama."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id4809411\n"
+"help.text"
+msgid "If no <emph>Field n / Item n</emph> pairs are given, the grand total is returned. Otherwise, each pair adds a constraint that the result must satisfy. <emph>Field n</emph> is the name of a field from the pivot table. <emph>Item n</emph> is the name of an item from that field."
+msgstr "Yoo <emph>Dirree n / Item n</emph> dachaan hin kennamne ta'e, dabaltoon dunneetii ni deebi'a. Yoo ta'uu baate, cimdiin hundi ittisa firiin guutuu qabu ida'a. <emph>Dirreen n</emph> maqaa wantaa Gabatee qiinxaa irraati. <emph>Maalimaan n</emph> maqaa maalimaa dirree sana irraati"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id6454969\n"
+"help.text"
+msgid "If the pivot table contains only a single result value that fulfills all of the constraints, or a subtotal result that summarizes all matching values, that result is returned. If there is no matching result, or several ones without a subtotal for them, an error is returned. These conditions apply to results that are included in the pivot table."
+msgstr "Yoo gabateen Gabatee Qiinxaa gatii firii qeenxee hanqinoota hunda guutu qofa qabaate, ykn hundamta xiqqaa gatiiwwan walsimatan hunda goolabu, firiin sun ni deebi'a. Yoo firiin walsimatu hin jiru ta'e, ykn tokko hedduu hundamta xiqqaa hin qabne ta'e, dogongorri ni deebi'a. Haalotni kun firiiwwan Gabatee Qiinxaa keessatti hammatamanitti hojii irra oola."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id79042\n"
+"help.text"
+msgid "If the source data contains entries that are hidden by settings of the pivot table, they are ignored. The order of the Field/Item pairs is not significant. Field and item names are not case-sensitive."
+msgstr "Yoo maddi deetaa galiinsawwan qiindaa'ina Gabatee Qiinxaadhaan dhokatan qabaate, isaan ni dhiifamu. Taartibni cimdii Dirree/Wanta barbaachisaa miti. Maqaawwan dirree fi wantaa qub-sukaanaawoo miti."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id7928708\n"
+"help.text"
+msgid "If no constraint for a page field is given, the field's selected value is implicitly used. If a constraint for a page field is given, it must match the field's selected value, or an error is returned. Page fields are the fields at the top left of a pivot table, populated using the \"Page Fields\" area of the pivot table layout dialog. From each page field, an item (value) can be selected, which means only that item is included in the calculation."
+msgstr "Yoo dirree fuulaaf ittisni hin kennamne ta'e, gatiin dirree filatame haala gaariin faayidaa irra oola. Yoo dirree fuulaaf ittisni kenname, gatii dirree filatame wajjiin walsimachuu qaba, ykn dogongorri ni kennama. Dirreewwan fuulaa harka bitaa gara olii Gabatee Qiinxaa, naannoo \"Dirreewwan Fuulaa\" qaaqa teessuma Gabatee Qiinxaadhaan baay'atanidha. Dirree fuulaa hunda irraa, wanti(gatiin) filatamuu ni danda'a, kana jechuun wanta sana qofatu shallaggii keessatti hammatama."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3864253\n"
+"help.text"
+msgid "Subtotal values from the pivot table are only used if they use the function \"auto\" (except when specified in the constraint, see <item type=\"literal\">Second Syntax</item> below)."
+msgstr "Gatiiwwan hundamta xiqqaa Gabatee Qiinxaa irraa yoo faankishinii \"auto\" fayyadaman qofa fayyadamamu (yeroo ittisa keessatti adda ba'e irraa kan hafe, <item type=\"literal\">Caasima Lammaffaa</item> below) armaan gadii ilaali."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3144016\n"
+"help.text"
+msgid "Second Syntax"
+msgstr "Caasima Lammaffaa"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id9937131\n"
+"help.text"
+msgid "<emph>pivot table</emph> has the same meaning as in the first syntax."
+msgstr "<emph>Gabateen Qiinxaa</emph> akka caasima tokkoffaa keessaatti hiikkaa wal fakkaataa qaba."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id5616626\n"
+"help.text"
+msgid "<emph>Constraints</emph> is a space-separated list. Entries can be quoted (single quotes). The whole string must be enclosed in quotes (double quotes), unless you reference the string from another cell."
+msgstr "<emph>Ittisamoonni</emph> tarree iddoo-adda ba'edha. Galiinsonni waraabbii (mallattoo waraabbii qeenxee) keessa taa'uu danda'u. Diraa mandhee biraa irraa yoo wabeessiteen ala, diraan hundi waraabbiiwwan (mallattoo waraabbi dachaa) keessatti hammatamuu qabu."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id4076357\n"
+"help.text"
+msgid "One of the entries can be the data field name. The data field name can be left out if the pivot table contains only one data field, otherwise it must be present."
+msgstr "Galiinsota keessaa tokko maqaa dirree deetaa ta'uu ni danda'a. Yoo Gabateen Qiinxaa dirree tokko qofa qabaate maqaan dirree deetaa ni dhiisama, ta'uu baannaan jiraachuu qaba."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id8231757\n"
+"help.text"
+msgid "Each of the other entries specifies a constraint in the form <item type=\"literal\">Field[Item]</item> (with literal characters [ and ]), or only <item type=\"literal\">Item</item> if the item name is unique within all fields that are used in the pivot table."
+msgstr "Tokko tokkoon galiinsota biroo ittisamoota uunka<item type=\"literal\">Field[Item]</item> (arfiiwwan jargiffa wajjiin [ fi ]), ykn <item type=\"literal\">Item</item> yoo maqaan wantaa dirreewwan hunda Gabatee Qiinxaa keessatti fayyadamaman keessatti adda ta'e adda baasa."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3168736\n"
+"help.text"
+msgid "A function name can be added in the form <emph>Field[Item;Function]</emph>, which will cause the constraint to match only subtotal values which use that function. The possible function names are Sum, Count, Average, Max, Min, Product, Count (Numbers only), StDev (Sample), StDevP (Population), Var (Sample), and VarP (Population), case-insensitive."
+msgstr "Maqaan faankishinii uunka <emph>Dirree[Wanta;Faankishinii]</emph>, ittisama gatiiwwan hundamta xiqqaa faankishini sana fayyadamu wajjiin akka waal simatu taasisu keessatti ida'amuu danda'a. Maqaan faankishinii danda'amu Ida'uu, Lakkaawuu, Gidduugala, Guddaa, Xiqqaa, Baay'ataa, Lakkaawuu (Lakkoofsota qofa), StDev (Fakkeenya), StDev (Baay'ina), Var (Fakkeenya), fi Varp (Baay'ina), qub-sukaanaa'aa kan hin taane."
#: 04060110.xhp
msgctxt ""
@@ -32958,7 +24344,7 @@ msgctxt ""
"231\n"
"help.text"
msgid "<emph>Radix</emph> indicates the base of the number system. It may be any positive integer between 2 and 36."
-msgstr "<emph>Hundeen lakkoofsaa</emph> hundee sirna lakkoofsaa agarsiisa. Intiijera pozatiivii 2 fi 36 gidduu jiru kamiyyu ta'uu danda'a."
+msgstr "<emph>hundee lakkoofsaa</emph> hundee sirna lakkoofsaa mul'isa. Intiijerii pozatiivaa 2 fi 36 gidduu jiru kamiyyu ta'uu danda'a."
#: 04060110.xhp
msgctxt ""
@@ -33414,7 +24800,7 @@ msgctxt ""
"par_id5292519\n"
"help.text"
msgid "<emph>Text</emph> is the text that contains characters to be converted."
-msgstr "<emph>Barruun</emph> barruu arfiiwwan jijjiiramuu qaban qabatudha."
+msgstr "<emph>Barruu</emph>n barruu arfiiwwan jijjiiramuu qaban qabatudha."
#: 04060110.xhp
msgctxt ""
@@ -33795,7 +25181,7 @@ msgctxt ""
"74\n"
"help.text"
msgid "<emph>Text</emph> refers to the text to be converted."
-msgstr "<emph>Barruun</emph> barruu jijjiiramuu qabu agarsiisa."
+msgstr "<emph>Barruu</emph>n barruu jijjiiramuu qabu ibsudha."
#: 04060110.xhp
msgctxt ""
@@ -33807,7 +25193,6 @@ msgid "Example"
msgstr "Fakkeenya"
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"par_id3155364\n"
@@ -34428,7 +25813,7 @@ msgctxt ""
"140\n"
"help.text"
msgid "T"
-msgstr "T"
+msgstr ""
#: 04060110.xhp
msgctxt ""
@@ -34903,3171 +26288,8722 @@ msgctxt ""
msgid "<item type=\"input\">=VALUE(\"4321\")</item> returns 4321."
msgstr "<item type=\"input\">=VALUE(\"4321\")</item> 4321 deebisa."
-#: 04020000.xhp
-#, fuzzy
+#: 04060111.xhp
msgctxt ""
-"04020000.xhp\n"
+"04060111.xhp\n"
"tit\n"
"help.text"
-msgid "Insert Cells"
-msgstr "Man'eewwan Saagi"
+msgid "Add-in Functions"
+msgstr "Faankishinoota Add-in"
-#: 04020000.xhp
+#: 04060111.xhp
msgctxt ""
-"04020000.xhp\n"
-"bm_id3156023\n"
+"04060111.xhp\n"
+"bm_id3150870\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; inserting cells</bookmark_value><bookmark_value>cells; inserting</bookmark_value><bookmark_value>inserting; cells</bookmark_value>"
-msgstr "<bookmark_value>wardiiwwan;man'eewwan saaguu</bookmark_value><bookmark_value>man'eewwan;saaguu</bookmark_value><bookmark_value>saaguu;man'eewwan</bookmark_value>"
+msgid "<bookmark_value>add-ins; functions</bookmark_value><bookmark_value>functions; add-in functions</bookmark_value><bookmark_value>Function Wizard; add-ins</bookmark_value>"
+msgstr "<bookmark_value>add-ins; faankishinoota</bookmark_value><bookmark_value>faankishinoota; faankishinoota add-in</bookmark_value><bookmark_value>Masaka Faankishinii; add-ins</bookmark_value>"
-#: 04020000.xhp
-#, fuzzy
+#: 04060111.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id3156023\n"
+"04060111.xhp\n"
+"hd_id3150870\n"
"1\n"
"help.text"
-msgid "Insert Cells"
-msgstr "Man'eewwan Saagi"
+msgid "Add-in Functions"
+msgstr "Faankishinoota Add-in"
-#: 04020000.xhp
+#: 04060111.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3150542\n"
+"04060111.xhp\n"
+"par_id3147427\n"
"2\n"
"help.text"
-msgid "<variable id=\"zelleneinfuegentext\"><ahelp hid=\".uno:InsertCell\">Opens the<emph> Insert Cells </emph>dialog, in which you can insert new cells according to the options that you specify.</ahelp></variable> You can delete cells by choosing <link href=\"text/scalc/01/02160000.xhp\" name=\"Edit - Delete Cells\"><emph>Edit - Delete Cells</emph></link>."
-msgstr "<variable id=\"zelleneinfuegentext\"><ahelp hid=\".uno:InsertCell\">qaaqan<emph> Man'eewwan saagu</emph> kan ati akkaataa man'eewwan haaraa gara filannoo kennameetti bani. </ahelp></variable> Gulaaluu-Man'eewwan haquu <link href=\"text/scalc/01/02160000.xhp\" name=\"Edit - Delete Cells\"><emph>filachuudhaan man'eewwan haquu dandeessa</emph></link>."
+msgid "<variable id=\"addintext\">The following describes and lists some of the available add-in functions. </variable>"
+msgstr "<variable id=\"addintext\">Wanti kana gadii faankishinoota add-in jiran ibsas tarreessas. </variable>"
-#: 04020000.xhp
+#: 04060111.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id3153768\n"
+"04060111.xhp\n"
+"par_id3163713\n"
+"75\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060112.xhp#addinconcept\">Add-in concept</link>"
+msgstr "<link href=\"text/scalc/01/04060112.xhp#addinconcept\">Yad-rimee Add-in</link>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3146120\n"
+"5\n"
+"help.text"
+msgid "You will also find a <link href=\"text/scalc/01/04060112.xhp\">description of the $[officename] Calc add-in interface</link> in the Help. In addition, important functions and their parameters are described in the Help for the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>$[officename] Calc add-in DLL</defaultinline></switchinline>."
+msgstr "Ibsa <link href=\"text/scalc/01/04060112.xhp\">wal quunnamtii Calc add-in $[officename] gargaarsa</link> keessaa argachuu dandeessa.Dabalataan, faankishinoonnni barbaachisoonii fi ulaagaaleen isaanii <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>$[officename] Calc add-in DLL</defaultinline></switchinline> dhaaf."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3151075\n"
+"7\n"
+"help.text"
+msgid "Add-ins supplied"
+msgstr "Add-ins dhiyeessame"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3156285\n"
+"8\n"
+"help.text"
+msgid "$[officename] contains examples for the add-in interface of $[officename] Calc."
+msgstr "$[officename] Walquunnamtii add-in $[officename] Calciif fakkeenyota qabata."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3159267\n"
+"76\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060115.xhp\">Analysis Functions Part One</link>"
+msgstr "<link href=\"text/scalc/01/04060115.xhp\">Faankishinoota Xiinxalaa Kutaa Tokkoffaa</link>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3154703\n"
+"77\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060116.xhp\">Analysis Functions Part Two</link>"
+msgstr "<link href=\"text/scalc/01/04060116.xhp\">Faankishinoota Xiinxalaa Kutaa Lammaffaa</link>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3149566\n"
+"help.text"
+msgid "<bookmark_value>ISLEAPYEAR function</bookmark_value><bookmark_value>leap year determination</bookmark_value>"
+msgstr "<bookmark_value>faankishinii ISLEAPYEAR</bookmark_value><bookmark_value>waggaa utaalu murteessuu</bookmark_value>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3149566\n"
+"14\n"
+"help.text"
+msgid "ISLEAPYEAR"
+msgstr "ISLEAPYEAR"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3150297\n"
+"15\n"
+"help.text"
+msgid "<ahelp hid=\".\">Determines whether a year is a leap year.</ahelp> If yes, the function will return the value 1 (TRUE); if not, it will return 0 (FALSE)."
+msgstr "<ahelp hid=\".\">Waggaan waggaa utaalu ta'uu isaa murteessa.</ahelp> Yoo eyyee ta'e, faankishinichi gatii 1(DHUGAA) kenna; yoo ta'uu baate, 0(SOBA) deebisa."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3148487\n"
+"16\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3150205\n"
+"17\n"
+"help.text"
+msgid "ISLEAPYEAR(\"Date\")"
+msgstr "ISLEAPYEAR(\"Aduu\")"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3159239\n"
+"18\n"
+"help.text"
+msgid "<emph>Date</emph> specifies whether a given date falls within a leap year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+msgstr "<emph>Aduun</emph> aduun kenname waggaa utaalu keesa jiraachuu isaa adda baasa. Haala qindaa'inoota gitoo biyyaa %PRODUCTNAME tiin ulaagaan aduu gatii sirrii ta'uu qaba."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3149817\n"
+"19\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3150786\n"
+"20\n"
+"help.text"
+msgid "=ISLEAPYEAR(A1) returns 1, if A1 contains 1968-02-29, the valid date 29th of February 1968 in your locale setting."
+msgstr "Yoo A1,guyyaa sirrii 29 amajjii 1968 qindaa'ina gitoo biyyaa keessaa 1968-02-29 qabaate=ISLEAPYEAR(A1) 1 deebisa."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_idN107E7\n"
+"help.text"
+msgid "You may also use =ISLEAPYEAR(\"1968-02-29\") or =ISLEAPYEAR(\"2/29/68\")."
+msgstr "=ISLEAPYEAR(\"1968-02-29\") ykn =ISLEAPYEAR(\"2/29/68\") fayyadamuu ni dandeessa."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_idN107EA\n"
+"help.text"
+msgid "Never use =ISLEAPYEAR(2/29/68), because this would first evaluate 2 divided by 29 divided by 68, and then calculate the ISLEAPYEAR function from this small number as a serial date number."
+msgstr "=ISLEAPYEAR(2/29/68) gonkuma hin fayyadamiin, sababni isaas kun jalqaba 2 hiruu 29f hiruu 68f shallaguu qaba, sana booda faankishinii ISLEAPYEAR lakkoofsa xiqqoo kana irraa akka lakkoofsa guyyaa eenyummaatti shallagi."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3154656\n"
+"help.text"
+msgid "<bookmark_value>YEARS function</bookmark_value><bookmark_value>number of years between two dates</bookmark_value>"
+msgstr "<bookmark_value>faankishinii YEARS</bookmark_value><bookmark_value>lakkoofsa waggootaa aduuwwan lama gidduu</bookmark_value>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3154656\n"
+"21\n"
+"help.text"
+msgid "YEARS"
+msgstr "YEARS"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3150886\n"
+"22\n"
+"help.text"
+msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFYEARS\">Calculates the difference in years between two dates.</ahelp>"
+msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFYEARS\">Garaagarummaa waggaa aduuwwan lama gidduu jiru shallaga.</ahelp>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3154370\n"
+"23\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3146114\n"
+"24\n"
+"help.text"
+msgid "YEARS(StartDate; EndDate; Type)"
+msgstr "YEARS(AduuJalqabaaStart; AduuDhumaa; Gosa)"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3145387\n"
+"25\n"
+"help.text"
+msgid "<emph>StartDate</emph> is the first date"
+msgstr "<emph>AduunJalqabaa</emph> aduu duraati."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3156290\n"
+"26\n"
+"help.text"
+msgid "<emph>EndDate</emph> is the second date"
+msgstr "<emph>AduunDhumaa</emph> aduu lammaffaati"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3152893\n"
+"27\n"
+"help.text"
+msgid "<emph>Type</emph> calculates the type of difference. Possible values are 0 (interval) and 1 (in calendar years)."
+msgstr "<emph>Gosni</emph> gosa garaagarummaa shallaga. Gatiiwwan eeyyamaman 0 (giddu'uu) fi 1 (lakkaawwii waggootaa)."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3152898\n"
+"help.text"
+msgid "<bookmark_value>MONTHS function</bookmark_value><bookmark_value>number of months between two dates</bookmark_value>"
+msgstr "<bookmark_value>faankishinii MONTHS</bookmark_value><bookmark_value>lakkoofsa ji'ootaa guyyoota lama gidduu jiru</bookmark_value>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3152898\n"
+"28\n"
+"help.text"
+msgid "MONTHS"
+msgstr "MONTHS"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3153066\n"
+"29\n"
+"help.text"
+msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFMONTHS\">Calculates the difference in months between two dates.</ahelp>"
+msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFMONTHS\">Garaagarummaa ji'ootaa guyyoota lama gidduu jiru shallaga.</ahelp>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3151240\n"
+"30\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3146869\n"
+"31\n"
+"help.text"
+msgid "MONTHS(StartDate; EndDate; Type)"
+msgstr "MONTHS(AduuJalqabaa; AduuDhumaa; Gosa)"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3145075\n"
+"32\n"
+"help.text"
+msgid "<emph>StartDate</emph> is the first date"
+msgstr "<emph>AduunJalqabaa</emph> aduu duraati."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3157981\n"
+"33\n"
+"help.text"
+msgid "<emph>EndDate</emph> is the second date"
+msgstr "<emph>AduunDhumaa</emph> aduu lammaffaati"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3150111\n"
+"34\n"
+"help.text"
+msgid "<emph>Type</emph> calculates the type of difference. Possible values include 0 (interval) and 1 (in calendar months)."
+msgstr "<emph>Gosni</emph> Gosa garaagarummaa shallaga. Gatiiwwan eeyyamaman 0 (giddu'uu) fi 1 (lakkaawwii ji'ootaan)."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3159094\n"
+"help.text"
+msgid "<bookmark_value>ROT13 function</bookmark_value><bookmark_value>encrypting text</bookmark_value>"
+msgstr "<bookmark_value>faankishinii ROT13</bookmark_value><bookmark_value>barruu icciteessuu</bookmark_value>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3159094\n"
+"35\n"
+"help.text"
+msgid "ROT13"
+msgstr "ROT13"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3146781\n"
+"36\n"
+"help.text"
+msgid "<ahelp hid=\"HID_DAI_FUNC_ROT13\">Encrypts a character string by moving the characters 13 positions in the alphabet.</ahelp> After the letter Z, the alphabet begins again (Rotation). By applying the encryption function again to the resulting code, you can decrypt the text."
+msgstr "<ahelp hid=\"HID_DAI_FUNC_ROT13\">Arfiiwwan tartiiba qubee keessatti iddoowwan 13 tti hiiqsuudhaan diraa arfii icciteessa.</ahelp> Qubee Z booda, tartiibni qubee ammas (naanna'uu) jalqaba. Lakkaddaa uumamutti ammas faankishinii icciteessuu fayyadamuudhaan, icciitii barruu diiguu dandeessa."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3150893\n"
+"37\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3159205\n"
+"38\n"
+"help.text"
+msgid "ROT13(Text)"
+msgstr "ROT13(Barruu)"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3153249\n"
+"39\n"
+"help.text"
+msgid "<emph>Text</emph> is the character string to be encrypted. ROT13(ROT13(Text)) decrypts the code."
+msgstr "<emph>Barruun</emph> diraa arfii icciteeffamuu qabudha. ROT13(ROT13(Barruun)) lakkaddaa saaxila."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3151300\n"
+"help.text"
+msgid "<bookmark_value>DAYSINYEAR function</bookmark_value><bookmark_value>number of days; in a specific year</bookmark_value>"
+msgstr "<bookmark_value>faankishinii DAYSINYEAR</bookmark_value><bookmark_value>number of days; in a specific year</bookmark_value>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3151300\n"
+"43\n"
+"help.text"
+msgid "DAYSINYEAR"
+msgstr "DAYSINYEAR"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3143220\n"
+"44\n"
+"help.text"
+msgid "<ahelp hid=\"HID_DAI_FUNC_DAYSINYEAR\">Calculates the number of days of the year in which the date entered occurs.</ahelp>"
+msgstr "<ahelp hid=\"HID_DAI_FUNC_DAYSINYEAR\">Lakkoofsa guyyoota waggaa keessaa kan aduun gale itti argamu shallaga.</ahelp>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3145358\n"
+"45\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3154651\n"
+"46\n"
+"help.text"
+msgid "DAYSINYEAR(Date)"
+msgstr "DAYSINYEAR(Aduu)"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3153803\n"
+"47\n"
+"help.text"
+msgid "<emph>Date</emph> is any date in the respective year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+msgstr "<emph>Aduu</emph>n aduu kamiyyuu kan eerame keessaati. Ulaagaan aduu akka qindaa'inoota gitoo biyyaa %PRODUCTNAMEtti aduu gataa'aa ta'u qaba."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3153487\n"
+"48\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3153811\n"
+"49\n"
+"help.text"
+msgid "=DAYSINYEAR(A1) returns 366 days if A1 contains 1968-02-29, a valid date for the year 1968."
+msgstr "=DAYSINYEAR(A1) yoo A1'nin 1968-02-29 qabaate guyyoota 366 qaba, aduu gataa'aa kan bara 1968."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3154737\n"
+"help.text"
+msgid "<bookmark_value>DAYSINMONTH function</bookmark_value><bookmark_value>number of days;in a specific month of a year</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii DAYSINMONTH</bookmark_value><bookmark_value>lakkoofsa guyyootaa; kan ji'a murta'aa waggaa keessaa</bookmark_value>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3154737\n"
+"50\n"
+"help.text"
+msgid "DAYSINMONTH"
+msgstr "DAYSINMONTH"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3149316\n"
+"51\n"
+"help.text"
+msgid "<ahelp hid=\"HID_DAI_FUNC_DAYSINMONTH\">Calculates the number of days of the month in which the date entered occurs.</ahelp>"
+msgstr "<ahelp hid=\"HID_DAI_FUNC_DAYSINMONTH\">Lakkoofsa guyyoota ji'a keessaa kan aduun gale itti argamu shallaga.</ahelp>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3145114\n"
+"52\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3150955\n"
+"53\n"
+"help.text"
+msgid "DAYSINMONTH(Date)"
+msgstr "DAYSINMONH(Aduu)"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3147501\n"
+"54\n"
+"help.text"
+msgid "<emph>Date</emph> is any date in the respective month of the desired year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+msgstr "<emph>Aduu</emph>n aduu kamiyyuu kan eerame ji'a keessaati. Ulaagaan aduu akka qindaa'inoota gitoo biyyaa %PRODUCTNAMEtti aduu dhugaa ta'u qaba."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3149871\n"
+"55\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3155742\n"
+"56\n"
+"help.text"
+msgid "=DAYSINMONTH(A1) returns 29 days if A1 contains 1968-02-17, a valid date for February 1968."
+msgstr "=DAYSINMONTH(A1) yoo A1'nin 1968-02-17 qabaate 29 kenna, aduu gataa'aa kan amajjii 1968ti."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3149048\n"
+"help.text"
+msgid "<bookmark_value>WEEKS function</bookmark_value><bookmark_value>number of weeks;between two dates</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii WEEKS</bookmark_value><bookmark_value>lakkoofsa torbeewwan;aduuwwan lama gidduu</bookmark_value>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3149048\n"
+"57\n"
+"help.text"
+msgid "WEEKS"
+msgstr "WEEKS"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3153340\n"
+"58\n"
+"help.text"
+msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFWEEKS\">Calculates the difference in weeks between two dates.</ahelp>"
+msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFWEEKS\">garagarumma torbeewwan aduuwwan lama jiru kenna.</ahelp>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3150393\n"
+"59\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3147402\n"
+"60\n"
+"help.text"
+msgid "WEEKS(StartDate; EndDate; Type)"
+msgstr "WEEKS(AduuJalqabaa; AduuXumuraa; Akaakuu)"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3151387\n"
+"61\n"
+"help.text"
+msgid "<emph>StartDate</emph> is the first date"
+msgstr "<emph>AduunJalqabaa</emph> aduu duraati."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3146324\n"
+"62\n"
+"help.text"
+msgid "<emph>EndDate</emph> is the second date"
+msgstr "<emph>AduunDhumaa</emph> aduu lammaffaati"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3166467\n"
+"63\n"
+"help.text"
+msgid "<emph>Type</emph> calculates the type of difference. The possible values are 0 (interval) and 1 (in numbers of weeks)."
+msgstr "<emph>Akaakuu</emph>n akaakuu garaagarummaa shallaga. Gatiiwwan ta'uu danda'an 0 (giddu'u) fi 1 (lakkoofsa torbewwani keessatti) dha."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3145237\n"
+"help.text"
+msgid "<bookmark_value>WEEKSINYEAR function</bookmark_value><bookmark_value>number of weeks;in a specific year</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii WEEKSINYEAR</bookmark_value><bookmark_value>lakkoofsa torbeewwanii;bara murta'aa keessaa</bookmark_value>"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3145237\n"
+"64\n"
+"help.text"
+msgid "WEEKSINYEAR"
+msgstr "WEEKSINYEAR"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3147410\n"
+"65\n"
+"help.text"
+msgid "<ahelp hid=\"HID_DAI_FUNC_WEEKSINYEAR\">Calculates the number of weeks of the year in which the date entered occurs.</ahelp> The number of weeks is defined as follows: a week that spans two years is added to the year in which most days of that week occur."
+msgstr "<ahelp hid=\"HID_DAI_FUNC_WEEKSINYEAR\">Lakkoofsa torbeewwan waggaa kan aduun gale itti argamu kenna.</ahelp> Lakkoofsi torbeewwanii akka armaan gadiiti hiikama:torbeen waggoota lama gargar baasu waggaa guyyotni torbee kana keessatti argamutti dabalama."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3149719\n"
+"66\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3145638\n"
+"67\n"
+"help.text"
+msgid "WEEKSINYEAR(Date)"
+msgstr "WEEKSINYEAR(aduu)"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3149946\n"
+"68\n"
+"help.text"
+msgid "<emph>Date</emph> is any date in the respective year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+msgstr "<emph>Aduu</emph>n aduu kamiyyuu kan eerame keessaati. Ulaagaan aduu akka qindaa'inoota gitoo biyyaa %PRODUCTNAMEtti aduu gataa'aa ta'u qaba."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3150037\n"
+"69\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3147614\n"
+"70\n"
+"help.text"
+msgid "WEEKSINYEAR(A1) returns 53 if A1 contains 1970-02-17, a valid date for the year 1970."
+msgstr "=WEEKSINYEAR(A1) yoo A1'nin 1970-02-17 qabaate 53 kenna, aduu gataa'aa kan bara 1970."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3157901\n"
+"72\n"
+"help.text"
+msgid "Add-ins through %PRODUCTNAME API"
+msgstr "idaatuwaan %PRODUCTNAME API keessaan"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3149351\n"
+"73\n"
+"help.text"
+msgid "Add-ins can also be implemented through the %PRODUCTNAME <link href=\"http://api.libreoffice.org/\">API</link>."
+msgstr "Idaattuun %PRODUCTNAME <link href=\"http://api.openoffice.org/\">API</link> dhan hojjoomuu danda'a."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"tit\n"
+"help.text"
+msgid "Add-in for Programming in $[officename] Calc"
+msgstr "Idaatuu Progiramingii $[officename] Calc keesaatif"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"bm_id3151076\n"
+"help.text"
+msgid "<bookmark_value>programming; add-ins</bookmark_value><bookmark_value>shared libraries; programming</bookmark_value><bookmark_value>external DLL functions</bookmark_value><bookmark_value>functions; $[officename] Calc add-in DLL</bookmark_value><bookmark_value>add-ins; for programming</bookmark_value>"
+msgstr "<bookmark_value>progiramingii; idaatuu</bookmark_value><bookmark_value>manneen kitaaba yagutoo; pirogiramingii</bookmark_value><bookmark_value>fankishinii DLL alaantoo</bookmark_value><bookmark_value>fankishinoota; $[officename] Calc idaatuu DLL</bookmark_value><bookmark_value>idaatuuwwan; pirogiramingiidhaf</bookmark_value>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3151076\n"
+"1\n"
+"help.text"
+msgid "Add-in for Programming in $[officename] Calc"
+msgstr "Idaatuu Progiramingii $[officename] Calc keesaatif"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147001\n"
+"220\n"
+"help.text"
+msgid "The method of extending Calc by Add-Ins that is described in the following is outdated. The interfaces are still valid and supported, to ensure compatibility with existing Add-Ins, but for programming new Add-Ins you should use the new <link href=\"text/shared/guide/integratinguno.xhp\" name=\"API functions\">API functions</link>."
+msgstr "Malli Idaatuuwwan Calc armaan gad keessatti ibsameetiin bal'isuu hojiin ala ta'eera. Idaatuuwwan dura jiran waliin akka walsiman mirkaneeffachuuf quunnamoonni ammas gataa'oo fi deeggaramoodha, garuu Idaatuuwwan haaraa saganteessuuf <link href=\"text/shared/guide/integratinguno.xhp\" name=\"API functions\">fankishinoota API</link> haaraa fayyadami."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150361\n"
+"2\n"
+"help.text"
+msgid "$[officename] Calc can be expanded by Add-Ins, which are external programming modules providing additional functions for working with spreadsheets. These are listed in the <emph>Function Wizard</emph> in the <emph>Add-In</emph> category. If you would like to program an Add-In yourself, you can learn here which functions must be exported by the <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>external DLL</defaultinline></switchinline> so that the Add-In can be successfully attached."
+msgstr "$[officename] Calc Idaatuuwwaniin, moojuulota saganteessuu alaa wardiiwwaniin hojjachuuf fankishinoota dabalataa kennaniin bal'achuu danda'a. Kanneen <emph>Masaka Fankishinii</emph> keessaa akaakuu <emph>Idaatuu</emph> keessatti tarreeffamaniiru. Idaatuu ofuma keetiin saganteessuu yoo barbaadde, Idaatuun milkaa'inaan akka miiltessamu fankishinoota kamtu <switchinline select=\"sys\"><caseinline select=\"UNIX\">manbarroo yagutootiin </caseinline><defaultinline>DLL alaatiin</defaultinline></switchinline> akka alergame baruu ni dandeessa."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149211\n"
"3\n"
"help.text"
-msgid "Selection"
-msgstr "Filannoo"
+msgid "$[officename] searches the Add-in folder defined in the configuration for a suitable <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>DLL</defaultinline></switchinline>. To be recognized by $[officename], the <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>DLL</defaultinline></switchinline> must have certain properties, as explained in the following. This information allows you to program your own Add-In for <emph>Function Wizard</emph> of $[officename] Calc."
+msgstr "$[officename] ukaankaa keessatti ida'ii qindaayina keessatti qindaa'e barbaada <switchinline select=\"sys\"><caseinline select=\"UNIX\">kuusaa sagantaa hiraa mijataa </caseinline><defaultinline>DLL</defaultinline></switchinline>. $[officename] dhaan fudhatama argachuuf, <switchinline select=\"sys\"><caseinline select=\"UNIX\">kuusaa sagantaa hiraa </caseinline><defaultinline>DLL</defaultinline></switchinline> amaloota addaa qabaachuu qaba, akka armaan gadii keessatti ibsametti. Odeeffannoon kun keessatti-ida'ii mataa kee akka saganteesitu si gargaara <emph>Faankishinii Masakaa</emph>$[officename] Calc."
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3149262\n"
+"04060112.xhp\n"
+"hd_id3146981\n"
"4\n"
"help.text"
-msgid "This area contains the options available for inserting cells into a sheet. The cell quantity and position is defined by selecting a cell range in the sheet beforehand."
-msgstr "Naannoon kun filannoowwan man'ee gara wardiitti saaguuf gargaaran of keessatti qabata."
+msgid "The Add-In Concept"
+msgstr "Yaada Keessatti-Ida'ii"
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id3146120\n"
+"04060112.xhp\n"
+"par_id3156292\n"
"5\n"
"help.text"
-msgid "Shift cells down"
-msgstr "Man'eewwan gad jijjiiri"
+msgid "Each Add-In library provides several functions. Some functions are used for administrative purposes. You can choose almost any name for your own functions. However, they must also follow certain rules regarding parameter passing. The exact naming and calling conventions vary for different platforms."
+msgstr "Kuusaan sagantaa keessatti-ida'ii hundi faankishinoota ni kennu. Faankishinootni gariin dhimma bulchiinsaaf oolu. Faankishinoota keetiif maqaa barbaadde filachuu dandeessa. Haa ta'u malee, ulaagaa dabarsuu irratti seeroota barbaachisan hordofuu qaba. Waliigalteewwan maqaa kennuu fi waamuu sirrii hujeffannoowwan adda addaaf tokko miti."
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3152596\n"
+"04060112.xhp\n"
+"hd_id3152890\n"
"6\n"
"help.text"
-msgid "<variable id=\"zellenuntentext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSDOWN\">Moves the contents of the selected range downward when cells are inserted.</ahelp></variable>"
-msgstr "<variable id=\"zellenuntentext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSDOWN\">Yeroo man'eewwan saagaman,qabeentota hangii filatamanii gara gadiitti hiiqsa.</ahelp></variable>"
+msgid "Functions of <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>AddIn DLL</defaultinline></switchinline>"
+msgstr "Faankishinootni <switchinline select=\"sys\"><caseinline select=\"UNIX\">Kuusaa Sagantaa Hiraa </caseinline><defaultinline>AddIn DLL</defaultinline></switchinline>"
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id3147434\n"
+"04060112.xhp\n"
+"par_id3148837\n"
"7\n"
"help.text"
-msgid "Shift cells right"
-msgstr "Man'eewwan mirgatti jijjiiri"
+msgid "At a minimum, the administrative functions <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionCount\">GetFunctionCount</link> and <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> must exist. Using these, the functions as well as parameter types and return values can be determined. As return values, the Double and String types are supported. As parameters, additionally the cell areas <link href=\"text/scalc/01/04060112.xhp\" name=\"Double Array\">Double Array</link>, <link href=\"text/scalc/01/04060112.xhp\" name=\"String Array\">String Array</link>, and <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell Array\">Cell Array</link> are supported."
+msgstr "Gadaanaatin, faankishinootni bulchiinsaa <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionCount\">FaankishiniiLakkaawwiiArgadhu</link> fi <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">FaankishiniiDeetaaargadhuu</link> jiraachuu qaba. Kana fayyadamuun, faankishinootni akkasumas gosootni ulaagaa fi gatiiwwan deebii argamuu danda'u. Akka gatiiwwan deebiitti, gosootni dachaa fi diraa ni deeggaramu. Akka ulaagaaleetti, dabalataan naannoowwan mandhee <link href=\"text/scalc/01/04060112.xhp\" name=\"Double Array\">Waraantoo Dachaa</link>, <link href=\"text/scalc/01/04060112.xhp\" name=\"String Array\">Waraantoo Diraa</link>, fi <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell Array\">Waraantoo Mandhee</link> ni deeggaramu."
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3144764\n"
+"04060112.xhp\n"
+"par_id3148604\n"
"8\n"
"help.text"
-msgid "<variable id=\"zellenrechtstext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSRIGHT\">Moves the contents of the selected range to the right when cells are inserted.</ahelp></variable>"
-msgstr "<variable id=\"zellenrechtstext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSRIGHT\">Yeroo man'eewwan saagaman,qabeentota hangii filatamanii gara mirgaatti hiiqsa.</ahelp></variable>"
+msgid "Parameters are passed using references. Therefore, a change of these values is basically possible. However, this is not supported in $[officename] Calc because it does not make sense within spreadsheets."
+msgstr "Ulaagaaleen wabii fayyadamuun ni dabarfamu. Kanaafuu, jijjiirraan gatiiwwan kanaa bu'uuraan ni danda'amu. Haa ta'u malee, kun $[officename] Calc dhaan hin deeggaramu sababni isaas wardii waliin hiikkaa hin kennu."
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id3153877\n"
+"04060112.xhp\n"
+"par_id3150112\n"
"9\n"
"help.text"
-msgid "Entire row"
-msgstr "Tarree Hunda"
+msgid "Libraries can be reloaded during runtime and their contents can be analyzed by the administrative functions. For each function, information is available about count and type of parameters, internal and external function names and an administrative number."
+msgstr "Kuusaaleen sagantaa yeroo figsisaa irra deebi'anii fe'amuu danda'u akkasumas qabeentootni isaanii faankishinoota bulchiinsaan yaadamuu danda'u. Faankishinii tokkoon tokkoof, odeeffannoon lakkaawii fi gosawwan ulaagaalee, maqoolee faankishinoota keessaa fi alaa akkasumas lakkoofsootni bulchiinsaa ni jiraatu."
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3155417\n"
+"04060112.xhp\n"
+"par_id3155269\n"
"10\n"
"help.text"
-msgid "<variable id=\"zeilenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSROWS\">Inserts an entire row. The position of the row is determined by the selection on the sheet.</ahelp></variable> The number of rows inserted depends on how many rows are selected. The contents of the original rows are moved downward."
-msgstr "<variable id=\"zeilenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSROWS\">InsertsTarree hunda saaga.Bakki tarree filannoo wardii irratti taasifamuun murteeffama.</ahelp></variable> Lakkofsi tarreewwan saagamanii baay'ina tarreewwan filatamanii irratti hundaa'a.Qabeentootni tarreewwan xabboo gara gadiitti hiiqu."
+msgid "The functions are called synchronously and return their results immediately. Real time functions (asynchronous functions) are also possible; however, they are not explained in detail because of their complexity."
+msgstr "Fankishiniin hala wal simeen wamuun bu'aawwan hatattaman kenna.Fankishinoota yeroo riyaalii(fankishiniiwwan wal hin simnee) akkasumaa ni dandanda'ama,haata'uu malee,sababa wal xaxoo ta'aaniif baal'inaan hin ibsaman."
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id3146971\n"
+"04060112.xhp\n"
+"hd_id3145077\n"
"11\n"
"help.text"
-msgid "Entire column"
-msgstr "Tarjaa Hunda"
+msgid "General information about the interface"
+msgstr "Oddeeffannoo walii galaa wa'ee walqunnama"
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3155068\n"
+"04060112.xhp\n"
+"par_id3146776\n"
"12\n"
"help.text"
-msgid "<variable id=\"spaltenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSCOLS\">Inserts an entire column. The number of columns to be inserted is determined by the selected number of columns.</ahelp></variable> The contents of the original columns are shifted to the right."
-msgstr "<variable id=\"spaltenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSCOLS\">Tarjaa hunda saaga.Lakkoofsi tarjaawwan saagamuuf jiranii, lakkoofsa tarjaawwan filatamaniidhaan murtaa'a.</ahelp></variable> Qabeentootni tarjaawwan xabboo gara mirgaatti jijjiiramu."
+msgid "The maximum number of parameters in an Add-In function attached to $[officename] Calc is 16: one return value and a maximum of 15 function input parameters."
+msgstr "Lakkoofsi olaantoo jijjiiramaa fankishinii idaatoo $[officename] Calc maxxanfame 16 dha:gatiin deebi'uu tokko fi jijjiiramoota fankishinii olaanoo hanga 15 naqa."
-#: 05050100.xhp
+#: 04060112.xhp
msgctxt ""
-"05050100.xhp\n"
-"tit\n"
+"04060112.xhp\n"
+"par_id3149899\n"
+"13\n"
"help.text"
-msgid "Rename Sheet"
-msgstr "Maqaa Waardii Jijjiiri"
+msgid "The data types are defined as follows:"
+msgstr "Akaakuuwwan deetaa akkaa armaan gaditti hiikamu:"
-#: 05050100.xhp
+#: 04060112.xhp
msgctxt ""
-"05050100.xhp\n"
-"bm_id3147336\n"
+"04060112.xhp\n"
+"par_id3151302\n"
+"14\n"
"help.text"
-msgid "<bookmark_value>worksheet names</bookmark_value><bookmark_value>changing; sheet names</bookmark_value><bookmark_value>sheets; renaming</bookmark_value>"
-msgstr "<bookmark_value>maqaa wardii hojii</bookmark_value><bookmark_value>jijjiiruun; maqoota wardii</bookmark_value><bookmark_value>wardiiwwan; maqaa jijjiiruu</bookmark_value>"
+msgid "<emph>Data types</emph>"
+msgstr "<emph>Akaakuuwwan deetaa</emph>"
-#: 05050100.xhp
+#: 04060112.xhp
msgctxt ""
-"05050100.xhp\n"
-"hd_id3147336\n"
-"1\n"
+"04060112.xhp\n"
+"par_id3143222\n"
+"15\n"
"help.text"
-msgid "Rename Sheet"
-msgstr "Maqaa Waardii Jijjiiri"
+msgid "<emph>Definition</emph>"
+msgstr "<emph>Hiikkoo</emph>"
-#: 05050100.xhp
+#: 04060112.xhp
msgctxt ""
-"05050100.xhp\n"
-"par_id3150792\n"
-"2\n"
+"04060112.xhp\n"
+"par_id3149384\n"
+"16\n"
"help.text"
-msgid "<variable id=\"umbenennentext\"><ahelp hid=\".uno:RenameTable\">This command opens a dialog where you can assign a different name to the current sheet.</ahelp></variable>"
-msgstr "<variable id=\"umbenennentext\"><ahelp hid=\".uno:RenameTable\">Ajajni kun qaaqa itti wardii ammeef maqaa adda addaa itti ramadamu bana.</ahelp></variable>"
+msgid "CALLTYPE"
+msgstr "CALLTYPE"
-#: 05050100.xhp
+#: 04060112.xhp
msgctxt ""
-"05050100.xhp\n"
-"hd_id3153968\n"
-"3\n"
+"04060112.xhp\n"
+"par_id3146963\n"
+"17\n"
"help.text"
-msgid "Name"
-msgstr "Maqaa:"
+msgid "Under Windows: FAR PASCAL (_far _pascal)"
+msgstr "Foddaawwan: FAR PASCAL (_far _pascal) jala"
-#: 05050100.xhp
+#: 04060112.xhp
msgctxt ""
-"05050100.xhp\n"
-"par_id3155131\n"
+"04060112.xhp\n"
+"par_id3153809\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_APPEND_NAME\">Enter a new name for the sheet here.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_APPEND_NAME\">Bakka kanatti maqaa wardii haaraa galchi.</ahelp>"
+msgid "Other: default (operating system specific default)"
+msgstr "kan biraa: durtii(durtii gooree sirna dalagaa)"
-#: 05050100.xhp
+#: 04060112.xhp
msgctxt ""
-"05050100.xhp\n"
-"par_id3153092\n"
-"5\n"
+"04060112.xhp\n"
+"par_id3154734\n"
+"19\n"
"help.text"
-msgid "You can also open the<emph> Rename Sheet </emph>dialog through the context menu by positioning the mouse pointer over a sheet tab at the bottom of the window and <switchinline select=\"sys\"><caseinline select=\"MAC\">clicking while pressing Control</caseinline><defaultinline>clicking the right mouse button</defaultinline></switchinline>."
-msgstr "Akeektuu hantuutee caancala wardii kan foddaa garaa gaditi argmu karaa barruu halqara keessaan irra ka'uun Qaaqa <emph>Maqaa Wardii Jijjiiri</emph> banuu dandeessa, yommuu too'anna<switchinline select=\"sys\"><caseinline select=\"MAC\">to'annaa dhiibaa cuqaasuu</caseinline><defaultinline>qabdoo hantuutee mirgaa cuqaasuu</defaultinline></switchinline> cuuqaasi."
+msgid "USHORT"
+msgstr "USHORT"
-#: 05050100.xhp
+#: 04060112.xhp
msgctxt ""
-"05050100.xhp\n"
-"par_id3147396\n"
-"6\n"
+"04060112.xhp\n"
+"par_id3155760\n"
+"20\n"
"help.text"
-msgid "Alternatively, click the sheet tab while pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Alt</defaultinline></switchinline> key. Now you can change the name directly. <switchinline select=\"sys\"><caseinline select=\"UNIX\"><embedvar href=\"text/shared/00/00000099.xhp#winmanager\"/></caseinline></switchinline>"
-msgstr "Karaa biraan, yommuu furtuu <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Alt</defaultinline></switchinline> dhiibdu, caancalaa wardii cuqaasi. Ammaa maqaa kallatidhaan jijjiruu dandeessa. <switchinline select=\"sys\"><caseinline select=\"UNIX\"><embedvar href=\"text/shared/00/00000099.xhp#winmanager\"/></caseinline></switchinline>"
+msgid "2 Byte unsigned Integer"
+msgstr "Intijeerii bayitii 2 mallattoo hin qabne"
-#: 06060000.xhp
+#: 04060112.xhp
msgctxt ""
-"06060000.xhp\n"
-"tit\n"
+"04060112.xhp\n"
+"par_id3145320\n"
+"21\n"
"help.text"
-msgid "Protect Document"
-msgstr "Galmee eeguu"
+msgid "DOUBLE"
+msgstr "DOUBLE"
-#: 06060000.xhp
+#: 04060112.xhp
msgctxt ""
-"06060000.xhp\n"
-"hd_id3148946\n"
-"1\n"
+"04060112.xhp\n"
+"par_id3150956\n"
+"22\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06060000.xhp\" name=\"Protect Document\">Protect Document</link>"
-msgstr "<link href=\"text/scalc/01/06060000.xhp\" name=\"Protect Document\">Galmee Eeguu</link>"
+msgid "8 byte platform-dependent format"
+msgstr "dhangii hujeffannoo-hirkataa bayitii 8"
-#: 06060000.xhp
+#: 04060112.xhp
msgctxt ""
-"06060000.xhp\n"
-"par_id3153362\n"
-"2\n"
+"04060112.xhp\n"
+"par_id3146097\n"
+"23\n"
"help.text"
-msgid "The<emph> Protect Document </emph>command prevents changes from being made to cells in the sheets or to sheets in a document. As an option, you can define a password. If a password is defined, removal of the protection is only possible if the user enters the correct password."
-msgstr "Ajajni<emph> Galmee Eeguu </emph> jijjiramoota man'eewwanitti wardiiwwan ykn wardii galmee keessaan dhufu iittisa.Akkaa filannootti ittigaa hiiki.Yoo ittigaan hiikame,haqinsii eeginsaa kan danda'amuu yoo fayyadamaan ittigaa sirri galche qofa."
+msgid "Paramtype"
+msgstr "Paramtype"
-#: 06060000.xhp
+#: 04060112.xhp
msgctxt ""
-"06060000.xhp\n"
-"hd_id3147228\n"
-"3\n"
+"04060112.xhp\n"
+"par_id3150432\n"
+"24\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06060100.xhp\" name=\"Sheets\">Sheets</link>"
-msgstr "<link href=\"text/scalc/01/06060100.xhp\" name=\"Sheets\">Wardiiwwan</link>"
+msgid "Platform-dependent like int"
+msgstr "hujeffannoo-hirkataa kan akka int"
-#: 06060000.xhp
+#: 04060112.xhp
msgctxt ""
-"06060000.xhp\n"
-"hd_id3153768\n"
-"4\n"
+"04060112.xhp\n"
+"par_id3153955\n"
+"25\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06060200.xhp\" name=\"Documents\">Documents</link>"
-msgstr "<link href=\"text/scalc/01/06060200.xhp\" name=\"Documents\">Galmeewwan</link>"
+msgid "PTR_DOUBLE =0 pointer to a double"
+msgstr "PTR_DOUBLE =0 qaree gara dachaatti"
-#: 06060000.xhp
+#: 04060112.xhp
msgctxt ""
-"06060000.xhp\n"
-"par_idN10622\n"
+"04060112.xhp\n"
+"par_id3159262\n"
+"26\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/guide/cell_protect.xhp#cell_protect\"/>"
-msgstr "<embedvar href=\"text/scalc/guide/cell_protect.xhp#cell_protect\"/>"
+msgid "PTR_STRING =1 pointer to a zero-terminated string"
+msgstr "PTR_STRING =1 qaree gara diraa zeroon dhaabbatutti"
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"tit\n"
+"04060112.xhp\n"
+"par_id3148747\n"
+"27\n"
"help.text"
-msgid "Bit Operation Functions"
+msgid "PTR_DOUBLE_ARR =2 pointer to a double array"
+msgstr "PTR_DOUBLE_ARR =2 qaree gara waraantoo dachaatti"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147406\n"
+"28\n"
+"help.text"
+msgid "PTR_STRING_ARR =3 pointer to a string array"
+msgstr "PTR_STRING_ARR =3 qaree gara waraantoo diraatti"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151392\n"
+"29\n"
+"help.text"
+msgid "PTR_CELL_ARR =4 pointer to a cell array"
+msgstr "PTR_CELL_ARR =4 qaree gara waraantoo man'eetti"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153028\n"
+"30\n"
+"help.text"
+msgid "NONE =5"
+msgstr "NONE =5"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3156396\n"
+"31\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions"
+msgstr "Fankishiinota<switchinline select=\"sys\"><caseinline select=\"UNIX\">mana kitaaba yagutoo</caseinline><defaultinline>DLL</defaultinline></switchinline>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153019\n"
+"32\n"
+"help.text"
+msgid "Following you will find a description of those functions, which are called at the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>external DLL</defaultinline></switchinline>."
+msgstr "Itti aansuun ibsa fankishinoota kanneenii argachuu dandeessa, kan <switchinline select=\"sys\"><caseinline select=\"UNIX\">mana kitaaba yagutoo </caseinline><defaultinline>alaantoo DLL</defaultinline></switchinline> keessatti waamaman."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150038\n"
+"33\n"
+"help.text"
+msgid "For all <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions, the following applies:"
+msgstr "Fankishiinota<switchinline select=\"sys\"><caseinline select=\"UNIX\">mana kitaaba yagutoo</caseinline><defaultinline>DLL</defaultinline></switchinline> hundaaf, kan armaan gadii ni fayyada:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3157876\n"
+"34\n"
+"help.text"
+msgid "void CALLTYPE fn(out, in1, in2, ...)"
+msgstr "void CALLTYPE fn(bahaa, naqa1, naqa2, ...)"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147616\n"
+"35\n"
+"help.text"
+msgid "Output: Resulting value"
+msgstr "Bahaa: Gatii argame"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159119\n"
+"36\n"
+"help.text"
+msgid "Input: Any number of types (double&, char*, double*, char**, Cell area), where the <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell area\">Cell area</link> is an array of types double array, string array, or cell array."
+msgstr "Galchii: Lakkoofsa kamiyyuu kan akaakuun (double&, char*, double*, char**, Bal'ina man'ee), iddoo<link href=\"text/scalc/01/04060112.xhp\" name=\"Cell area\">Bal'inni man'ee</link> waraantoo akaakuu waraantoo dachaa, waraantoo diraa, ykn bal'ina man'ee ti."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3150653\n"
+"37\n"
+"help.text"
+msgid "GetFunctionCount()"
+msgstr "GetFunctionCount()"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3152981\n"
+"38\n"
+"help.text"
+msgid "Returns the number of functions without the management functions of the reference parameter. Each function has a unique number between 0 and nCount-1. This number will be needed for the <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> and <link href=\"text/scalc/01/04060112.xhp\" name=\"GetParameterDescription\">GetParameterDescription</link> functions later."
+msgstr "Lakkoofsa fankishinoota taliiga fankishinii hin qabnee kan ulaagaa wabii kenna. Tokkoon tokkoo fankishinii gidduu 0 fi ncount-1 keessa jiran lakkoofsa qofa mataa issaanii qabu. lakkoofsi kun booda fankishinoota <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> fi <link href=\"text/scalc/01/04060112.xhp\" name=\"GetParameterDescription\">GetParameterDescription</link> dhaf ni barbaadama."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150742\n"
+"39\n"
+"help.text"
+msgid "<emph>Syntax</emph>"
+msgstr "<emph>Caasima</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148728\n"
+"40\n"
+"help.text"
+msgid "void CALLTYPE GetFunctionCount(USHORT& nCount)"
+msgstr "void CALLTYPE GetFunctionCount(USHORT& nCount)"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154677\n"
+"41\n"
+"help.text"
+msgid "<emph>Parameter</emph>"
+msgstr "<emph>Ulaagaa</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3146940\n"
+"42\n"
+"help.text"
+msgid "USHORT &nCount:"
+msgstr "USHORT &nCount:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149893\n"
+"43\n"
+"help.text"
+msgid "Output: Reference to a variable, which is supposed to contain the number of Add-In functions. For example: If the Add-In provides 5 functions for $[officename] Calc, then nCount=5."
+msgstr "Bahaa: Jijjiramaatti wabii ta'a, kan fankishinoota Add-In bay'ee akka qabuutti yaadame. Fakkeenyaf: Yoo Add-In fankishinoota 5 $[officename] Calc dhaf kenne, nCount=5 ta'a."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3147476\n"
+"44\n"
+"help.text"
+msgid "GetFunctionData()"
+msgstr "GetFunctionData()"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154841\n"
+"45\n"
+"help.text"
+msgid "Determines all the important information about an Add-In function."
+msgstr "Infoormeeshiniiwwan babarchisaa wa'ee fankishinii Add-In hunda murteessa."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148888\n"
+"46\n"
+"help.text"
+msgid "<emph>Syntax</emph>"
+msgstr "<emph>Caasima</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148434\n"
+"47\n"
+"help.text"
+msgid "void CALLTYPE GetFunctionData(USHORT& nNo, char* pFuncName, USHORT& nParamCount, Paramtype* peType, char* pInternalName)"
+msgstr "void CALLTYPE GetFunctionData(USHORT& nNo, char* pFuncName, USHORT& nParamCount, Paramtype* peType, char* pInternalName)"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149253\n"
+"48\n"
+"help.text"
+msgid "<emph>Parameter</emph>"
+msgstr "<emph>Ulaagaa</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149686\n"
+"49\n"
+"help.text"
+msgid "USHORT& nNo:"
+msgstr "USHORT& nNo:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149949\n"
+"50\n"
+"help.text"
+msgid "Input: Function number between 0 and nCount-1, inclusively."
+msgstr "Galchii: Lakkoofsa fankishinii gidduu 0 fi nCount-1, hin hammatu."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149546\n"
+"51\n"
+"help.text"
+msgid "char* pFuncName:"
+msgstr "char* pFuncName:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148579\n"
+"52\n"
+"help.text"
+msgid "Output: Function name as seen by the programmer, as it is named in the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline>. This name does not determine the name used in the <emph>Function Wizard</emph>."
+msgstr "Bahaa: Maqaa fankishinii akka progiraamariidhan hojjatameetti, akka <switchinline select=\"sys\"><caseinline select=\"UNIX\">mana kitaaba yagutoo </caseinline><defaultinline>DLL</defaultinline></switchinline> keessatti moggaafametti.Maqaan kun maqaa <emph>Dhullee</emph> keessatti fayyadu hin murteessu."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153935\n"
+"53\n"
+"help.text"
+msgid "USHORT& nParamCount:"
+msgstr "USHORT& nParamCount:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150142\n"
+"54\n"
+"help.text"
+msgid "Output: Number of parameters in AddIn function. This number must be greater than 0, because there is always a result value; the maximum value is 16."
+msgstr "Bahaa: Lakkoofsa ulaagaalee fankishinii AddIn keessaati.Lakkoofsi kun irra gudda 0 ta'uu qaba, sababiin yeroo hundaa gatiin argame ni jira; gatii guddaan 16."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145143\n"
+"55\n"
+"help.text"
+msgid "Paramtype* peType:"
+msgstr "Paramtype* peType:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148750\n"
+"56\n"
+"help.text"
+msgid "Output: Pointer to an array of exactly 16 variables of type Paramtype. The first nParamCount entries are filled with the suitable type of parameter."
+msgstr "Bahaa: Qaree gara waraantoo sirrumaan jijjiiramtoota 16 kan akaakuu paramtype.Galchiiwwan nParamCount jalqabaa akaakuuu ulaagaa mijawaatin gutama."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153078\n"
+"57\n"
+"help.text"
+msgid "char* pInternalName:"
+msgstr "char* pInternalName:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155261\n"
+"58\n"
+"help.text"
+msgid "Output: Function name as seen by the user, as it appears in the <emph>Function Wizard</emph>. May contain umlauts."
+msgstr "Bahaa: Maqaa fankishinii akka fayyadamaadhan hubatametti, akka <emph>Dhullee</emph> keessatti mul'ateetti. Umlauts qabaachuu danda'a."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153327\n"
+"59\n"
+"help.text"
+msgid "The pFuncName and pInternalName parameters are char arrays, which are implemented with size 256 in $[officename] Calc."
+msgstr "Ulaagaaleen pFuncName fi pInternalName waraantoowwan arfiiti, kan $[officename] Calc keessatti hammamtaa 256n hojjoome dha."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3148567\n"
+"60\n"
+"help.text"
+msgid "GetParameterDescription()"
+msgstr "GetParameterDescription()"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153000\n"
+"61\n"
+"help.text"
+msgid "Provides a brief description of the Add-In function and its parameters. As an option, this function can be used to show a function and parameter description in the <emph>Function Wizard</emph>."
+msgstr "Fankishinii Add-In fi ulaagaalee isaatif ibsa gabaabduu kenna. Akka dirqaalatti, fankishiniin kun fankishinii fi ibsa ulaagaa <emph>Dhullee</emph> keessaa agarsisuu danda'a."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154501\n"
+"62\n"
+"help.text"
+msgid "<emph>Syntax</emph>"
+msgstr "<emph>Caasima</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153564\n"
+"63\n"
+"help.text"
+msgid "void CALLTYPE GetParameterDescription(USHORT& nNo, USHORT& nParam, char* pName, char* pDesc)"
+msgstr "void CALLTYPE GetParameterDescription(USHORT& nNo, USHORT& nParam, char* pName, char* pDesc)"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3157995\n"
+"64\n"
+"help.text"
+msgid "<emph>Parameter</emph>"
+msgstr "<emph>Ulaagaa</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155925\n"
+"65\n"
+"help.text"
+msgid "USHORT& nNo:"
+msgstr "USHORT& nNo:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149883\n"
+"66\n"
+"help.text"
+msgid "Input: Number of the function in the library; between 0 and nCount-1."
+msgstr "Naqaa: Lakkoofsa fankishinii mana kitaabaa keessaa; giduu 0 fi nCount-1."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154326\n"
+"67\n"
+"help.text"
+msgid "USHORT& nParam:"
+msgstr "USHORT& nParam:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159139\n"
+"68\n"
+"help.text"
+msgid "Input: Indicates, for which parameter the description is provided; parameters start at 1. If nParam is 0, the description itself is supposed to be provided in pDesc; in this case, pName does not have any meaning."
+msgstr "Naqaa: Ibsi ulaagaa kamiif akka hojjome eera;ulaagaaleen 1 irraa ka'u. Yoo nParam 0 ta'e ibsi mata isaatin akka pDesc keessatti kennameetti yaadama; haala kanarratti, pName hiika homaatuu hin qabu."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147374\n"
+"69\n"
+"help.text"
+msgid "char* pName:"
+msgstr "char* pName:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145245\n"
+"70\n"
+"help.text"
+msgid "Output: Takes up the parameter name or type, for example, the word \"Number\" or \"String\" or \"Date\", and so on. Implemented in $[officename] Calc as char[256]."
+msgstr "Bahaa: Maqaa ulaagaa ykn akaakuu fudhata, fakkeenyaf, jecha \"Lakkoofsa\" ykn \"Diraa\" ykn \"Aduu\", fi kkf. $[officename] Calc keessatti akka char[256]tti hojjama."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151020\n"
+"71\n"
+"help.text"
+msgid "char* pDesc:"
+msgstr "char* pDesc:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148389\n"
+"72\n"
+"help.text"
+msgid "Output: Takes up the description of the parameter, for example, \"Value, at which the universe is to be calculated.\" Implemented in $[officename] Calc as char[256]."
+msgstr "Bahaa: ibsa ulaagaa fudhata, fakkeenyaf, \"gatii iddoo marlaaltoon itti shallagamu.\" $[officename] Calc keessatti akka char[256]tti hojjooma."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145303\n"
+"73\n"
+"help.text"
+msgid "pName and pDesc are char arrays; implemented in $[officename] Calc with size 256. Please note that the space available in the <emph>Function Wizard</emph> is limited and that the 256 characters cannot be fully used."
+msgstr "pName fi pDesc waraantoowwan arfiiti. $[officename] Calc keessatti hammamtaa 256n hojjooma. Hubadhu iddoo duwwaan <emph>Dhullee</emph> keessatti argamu kan daanga'e fi kanaafuu arfiileen 256 gutuun gutuutti fayyadamuun hin danda'mu."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3148874\n"
+"76\n"
+"help.text"
+msgid "Cell areas"
+msgstr "Bal'inoota man'ee"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150265\n"
+"77\n"
+"help.text"
+msgid "The following tables contain information about which data structures must be provided by an external program module in order to pass cell areas. $[officename] Calc distinguishes between three different arrays, depending on the data type."
+msgstr "Gabateewwan armaan gadii odeeffannoo wa'ee caasawwan deetaa kan muraa pirogiraamii alaantootin naannoowwan man'ee murteessuf laatamee qaba. Akaakuu deetaa irratti hundaa'uun, $[officename] Calc'n waraantoo garagaraa sadi addaan baasa."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3156060\n"
+"78\n"
+"help.text"
+msgid "Double Array"
+msgstr "Waraantoo Dachaa"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149540\n"
+"79\n"
+"help.text"
+msgid "As a parameter, a cell area with values of the Number/Double type can be passed. A double array in $[officename] Calc is defined as follows:"
+msgstr "Akka ulaagaatti, naannoon man'ee gatiiwwan lakkoofsa/Akaakuu dachaa wajjinii hikamuu danda'u. Waraantoon dachaa $[officename] Calc keesssaa akka armaan gadiitti hiikama:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149388\n"
+"80\n"
+"help.text"
+msgid "<emph>Offset</emph>"
+msgstr "<emph>Iddooda</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154636\n"
+"81\n"
+"help.text"
+msgid "<emph>Name</emph>"
+msgstr "<emph>Maqaa</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153228\n"
+"82\n"
+"help.text"
+msgid "<emph>Description</emph>"
+msgstr "<emph>Ibsa</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150685\n"
+"83\n"
+"help.text"
+msgid "0"
msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4149052\n"
-"1\n"
+"04060112.xhp\n"
+"par_id3154869\n"
+"84\n"
"help.text"
-msgid "Bit Operation Functions"
+msgid "Col1"
+msgstr "Col1"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147541\n"
+"85\n"
+"help.text"
+msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
+msgstr "Lakkoofsa tarjaa golee gubbaa-bitaa kan bal'ina man'ee keessaati. Lakkoofsa kennuun 0 irraa eegala."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149783\n"
+"86\n"
+"help.text"
+msgid "2"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"bm_id4150026\n"
+"04060112.xhp\n"
+"par_id3155986\n"
+"87\n"
"help.text"
-msgid "<bookmark_value>BITAND function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii FI</bookmark_value>"
+msgid "Row1"
+msgstr "Tarree1"
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4150026\n"
-"238\n"
+"04060112.xhp\n"
+"par_id3147483\n"
+"88\n"
"help.text"
-msgid "BITAND"
+msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr "Lakkoofsa tarree golee gubbaa-bitaa kan bal'ina man'ee keessaati. Lakkoofsa kennuun 0 irraa eegala."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153721\n"
+"89\n"
+"help.text"
+msgid "4"
msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4146942\n"
-"239\n"
+"04060112.xhp\n"
+"par_id3154317\n"
+"90\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BITAND\">Returns a bitwise logical \"and\" of the parameters.</ahelp>"
+msgid "Tab1"
+msgstr "caancala1"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149820\n"
+"91\n"
+"help.text"
+msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr "Lakkoofsa gabatee golee gubbaa-bitaa kan bal'ina man'ee keessaati; Lakkoofsa kennuun 0 irraa eegala."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3163820\n"
+"92\n"
+"help.text"
+msgid "6"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4150459\n"
-"240\n"
+"04060112.xhp\n"
+"par_id3149710\n"
+"93\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Col2"
+msgstr "Col2"
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4146878\n"
-"241\n"
+"04060112.xhp\n"
+"par_id3154819\n"
+"94\n"
"help.text"
-msgid "BITAND(number1; number2)"
+msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
+msgstr "Lakkoofsa tarjaa golee jala-mirgaa kan bal'ina man'ee keessaati. Lakkoofsa kennuun 0 irraa eegala."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145083\n"
+"95\n"
+"help.text"
+msgid "8"
msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4151228\n"
-"242\n"
+"04060112.xhp\n"
+"par_id3156310\n"
+"96\n"
"help.text"
-msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
+msgid "Row2"
+msgstr "Tarree2"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150968\n"
+"97\n"
+"help.text"
+msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr "Lakkoofsa tarree golee jala-mirgaa kan bal'ina man'ee keessaati; Lakkoofsa kennuun 0 irraa eegala."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156133\n"
+"98\n"
+"help.text"
+msgid "10"
+msgstr "10"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153218\n"
+"99\n"
+"help.text"
+msgid "Tab2"
+msgstr "caancala2"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147086\n"
+"100\n"
+"help.text"
+msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr "Lakkoofsa gabatee golee jala-mirgaa kan bal'ina man'ee keessaati; Lakkoofsa kennuun 0 irraa eegala."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151270\n"
+"101\n"
+"help.text"
+msgid "12"
+msgstr "12"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3152934\n"
+"102\n"
+"help.text"
+msgid "Count"
+msgstr "Lakkaa'i"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145202\n"
+"103\n"
+"help.text"
+msgid "Number of the following elements. Empty cells are not counted or passed."
+msgstr "Lakkoofsa misensota armaan gadii. Man'eewwan duwwaan hin lakkaawwaman ykn ni taramu."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150879\n"
+"104\n"
+"help.text"
+msgid "14"
+msgstr "14"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156002\n"
+"105\n"
+"help.text"
+msgid "Col"
+msgstr "Col"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147276\n"
+"106\n"
+"help.text"
+msgid "Column number of the element. Numbering starts at 0."
+msgstr "Lakkoofsa tarjaa miseensaa. Lakkoofsa kennuun 0 irraa eegala."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151295\n"
+"107\n"
+"help.text"
+msgid "16"
+msgstr "16"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150261\n"
+"108\n"
+"help.text"
+msgid "Row"
+msgstr "Tarree"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155851\n"
+"109\n"
+"help.text"
+msgid "Row number of the element; numbering starts at 0."
+msgstr "Lakkoofsa tarree miseensaa; Lakkoofsa kennuun 0 irraa eegala."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153150\n"
+"110\n"
+"help.text"
+msgid "18"
+msgstr "18"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153758\n"
+"111\n"
+"help.text"
+msgid "Tab"
+msgstr "caancala"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150154\n"
+"112\n"
+"help.text"
+msgid "Table number of the element; numbering starts at 0."
+msgstr "Lakkoofsa gabatee miseensaa; Lakkoofsa kennuun 0 irraa eegala."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149289\n"
+"113\n"
+"help.text"
+msgid "20"
+msgstr "20"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156010\n"
+"114\n"
+"help.text"
+msgid "Error"
+msgstr "Dogongora"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159181\n"
+"115\n"
+"help.text"
+msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
+msgstr "Lakkoofsa dogongoraa, gatiin 0 akka \"Dogongorri hin jiru\"tti hiikama. Yoo miseensi man'ee formulaa irraa dhufe gatiin dogongoraa formulaadhan murteeffama."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147493\n"
+"116\n"
+"help.text"
+msgid "22"
+msgstr "22"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149200\n"
+"117\n"
+"help.text"
+msgid "Value"
+msgstr "Gatii"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151174\n"
+"118\n"
+"help.text"
+msgid "8 byte IEEE variable of type double/floating point"
+msgstr "Jijjiramaa Iee baayitii 8 kan akaakuu dachaa/ xuqaa Bololi'uu"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154688\n"
+"119\n"
+"help.text"
+msgid "30"
+msgstr "30"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159337\n"
+"120\n"
+"help.text"
+msgid "..."
+msgstr "..."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155388\n"
+"121\n"
+"help.text"
+msgid "Next element"
+msgstr "Miseensa itti aanu"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3154935\n"
+"122\n"
+"help.text"
+msgid "String Array"
+msgstr "Waraantoo Diraa"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153105\n"
+"123\n"
+"help.text"
+msgid "A cell area, which contains values of data type Text and is passed as a string array. A string array in $[officename] Calc is defined as follows:"
+msgstr "Nannoo man'ee, kan gatiiwwan akaakuu deetaa barruu qabuu fi akka waraantoo diraatti hiikame. Waraantoon diraa $[officename] Calc keessaa akka armaan gadiitti hiikamu:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149908\n"
+"124\n"
+"help.text"
+msgid "<emph>Offset</emph>"
+msgstr "<emph>Iddooda</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159165\n"
+"125\n"
+"help.text"
+msgid "<emph>Name</emph>"
+msgstr "<emph>Maqaa</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159150\n"
+"126\n"
+"help.text"
+msgid "<emph>Description</emph>"
+msgstr "<emph>Ibsa</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149769\n"
+"127\n"
+"help.text"
+msgid "0"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4148582\n"
-"248\n"
+"04060112.xhp\n"
+"par_id3150509\n"
+"128\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Col1"
+msgstr "Col1"
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4149246\n"
-"250\n"
+"04060112.xhp\n"
+"par_id3148447\n"
+"129\n"
"help.text"
-msgid "<item type=\"input\">=BITAND(6;10)</item> returns 2 (0110 & 1010 = 0010)."
+msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
+msgstr "Lakkoofsa tarjaa golee gubbaa-bitaa kan bal'ina man'ee keessaati. Lakkoofsa kennuun 0 irraa eegala."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145418\n"
+"130\n"
+"help.text"
+msgid "2"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"bm_id4146139\n"
+"04060112.xhp\n"
+"par_id3147512\n"
+"131\n"
"help.text"
-msgid "<bookmark_value>BITOR function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii OR</bookmark_value>"
+msgid "Row1"
+msgstr "Tarree1"
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4146139\n"
-"252\n"
+"04060112.xhp\n"
+"par_id3147235\n"
+"132\n"
"help.text"
-msgid "BITOR"
+msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr "Lakkoofsa tarree golee gubbaa-bitaa kan bal'ina man'ee keessaati. Lakkoofsa kennuun 0 irraa eegala."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155362\n"
+"133\n"
+"help.text"
+msgid "4"
msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4150140\n"
-"253\n"
+"04060112.xhp\n"
+"par_id3151051\n"
+"134\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BITOR\">Returns a bitwise logical \"or\" of the parameters.</ahelp>"
+msgid "Tab1"
+msgstr "caancala1"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148923\n"
+"135\n"
+"help.text"
+msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr "Lakkoofsa gabatee golee gubbaa-bitaa kan bal'ina man'ee keessaati; Lakkoofsa kennuun 0 irraa eegala."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149158\n"
+"136\n"
+"help.text"
+msgid "6"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4149188\n"
-"254\n"
+"04060112.xhp\n"
+"par_id3166437\n"
+"137\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Col2"
+msgstr "Col2"
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4148733\n"
-"255\n"
+"04060112.xhp\n"
+"par_id3149788\n"
+"138\n"
"help.text"
-msgid "BITOR(number1; number2)"
+msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
+msgstr "Lakkoofsa tarjaa golee jala-mirgaa kan bal'ina man'ee keessaati. Lakkoofsa kennuun 0 irraa eegala."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3166450\n"
+"139\n"
+"help.text"
+msgid "8"
msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4150864\n"
-"256\n"
+"04060112.xhp\n"
+"par_id3152877\n"
+"140\n"
"help.text"
-msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
+msgid "Row2"
+msgstr "Tarree2"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3152949\n"
+"141\n"
+"help.text"
+msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr "Lakkoofsa tarree golee jala-mirgaa kan bal'ina man'ee keessaati; Lakkoofsa kennuun 0 irraa eegala."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159270\n"
+"142\n"
+"help.text"
+msgid "10"
+msgstr "10"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154107\n"
+"143\n"
+"help.text"
+msgid "Tab2"
+msgstr "caancala2"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153747\n"
+"144\n"
+"help.text"
+msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr "Lakkoofsa gabatee golee jala-mirgaa kan bal'ina man'ee keessaati; Lakkoofsa kennuun 0 irraa eegala."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149924\n"
+"145\n"
+"help.text"
+msgid "12"
+msgstr "12"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154858\n"
+"146\n"
+"help.text"
+msgid "Count"
+msgstr "Lakkaa'i"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148621\n"
+"147\n"
+"help.text"
+msgid "Number of the following elements. Empty cells are not counted or passed."
+msgstr "Lakkoofsa misensota armaan gadii. Man'eewwan duwwaan hin lakkaawwaman ykn ni taramu."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148467\n"
+"148\n"
+"help.text"
+msgid "14"
+msgstr "14"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151126\n"
+"149\n"
+"help.text"
+msgid "Col"
+msgstr "Col"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154334\n"
+"150\n"
+"help.text"
+msgid "Column number of the element. Numbering starts at 0."
+msgstr "Lakkoofsa tarjaa miseensaa. Lakkoofsa kennuun 0 irraa eegala."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149416\n"
+"151\n"
+"help.text"
+msgid "16"
+msgstr "16"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150631\n"
+"152\n"
+"help.text"
+msgid "Row"
+msgstr "Tarree"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150424\n"
+"153\n"
+"help.text"
+msgid "Row number of the element; numbering starts at 0."
+msgstr "Lakkoofsa tarree miseensaa; Lakkoofsa kennuun 0 irraa eegala."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154797\n"
+"154\n"
+"help.text"
+msgid "18"
+msgstr "18"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3143274\n"
+"155\n"
+"help.text"
+msgid "Tab"
+msgstr "caancala"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149513\n"
+"156\n"
+"help.text"
+msgid "Table number of the element; numbering starts at 0."
+msgstr "Lakkoofsa gabatee miseensaa; Lakkoofsa kennuun 0 irraa eegala."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145306\n"
+"157\n"
+"help.text"
+msgid "20"
+msgstr "20"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153948\n"
+"158\n"
+"help.text"
+msgid "Error"
+msgstr "Dogongora"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153534\n"
+"159\n"
+"help.text"
+msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
+msgstr "Lakkoofsa dogongoraa, gatiin 0 akka \"Dogongorri hin jiru\"tti hiikama. Yoo miseensi man'ee formulaa irraa dhufe gatiin dogongoraa formulaadhan murteeffama."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153311\n"
+"160\n"
+"help.text"
+msgid "22"
+msgstr "22"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148695\n"
+"161\n"
+"help.text"
+msgid "Len"
+msgstr "Len"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3152769\n"
+"162\n"
+"help.text"
+msgid "Length of the following string, including closing zero byte. If the length including closing zero byte equals an odd value a second zero byte is added to the string so that an even value is achieved. Therefore, Len is calculated using ((StrLen+2)&~1)."
+msgstr "Dheerina dursaa armaan gadii, cufaa baayitii duwwaa dabalachuun.Yoo dheerinni cuufaa baayitii duwwaa gatii qaraa waliin wal qixa ta'ee baayiiinduwwaa lamata dursaatti ida'amuun gatiin guutuun argama.Kanaafuu,Len ((StrLen+2)&~1) fayyadamun shallagama."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153772\n"
+"163\n"
+"help.text"
+msgid "24"
+msgstr "24"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153702\n"
+"164\n"
+"help.text"
+msgid "String"
+msgstr "Dursaa"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154474\n"
+"165\n"
+"help.text"
+msgid "String with closing zero byte"
+msgstr "Dursaa Cuufaa baayitii duwwaa waliin"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156269\n"
+"166\n"
+"help.text"
+msgid "24+Len"
+msgstr "24+Len"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154825\n"
+"167\n"
+"help.text"
+msgid "..."
+msgstr "..."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147097\n"
+"168\n"
+"help.text"
+msgid "Next element"
+msgstr "Miseensa itti aanu"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3159091\n"
+"169\n"
+"help.text"
+msgid "Cell Array"
+msgstr "Waraantoo man'ee"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156140\n"
+"170\n"
+"help.text"
+msgid "Cell arrays are used to call cell areas containing text as well as numbers. A cell array in $[officename] Calc is defined as follows:"
+msgstr "Waraantoowwan man'ee nannoowwan man'ee barruu akkasumaas lakkoofsota qabate wamuuf fayyada.Waraantoo man'ee $[officename] Calc akka armaan gaditti hiikama:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154664\n"
+"171\n"
+"help.text"
+msgid "<emph>Offset</emph>"
+msgstr "<emph>Iddooda</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154566\n"
+"172\n"
+"help.text"
+msgid "<emph>Name</emph>"
+msgstr "<emph>Maqaa</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3146073\n"
+"173\n"
+"help.text"
+msgid "<emph>Description</emph>"
+msgstr "<emph>Ibsa</emph>"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154117\n"
+"174\n"
+"help.text"
+msgid "0"
msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4149884\n"
-"264\n"
+"04060112.xhp\n"
+"par_id3150988\n"
+"175\n"
"help.text"
-msgid "<item type=\"input\">=BITOR(6;10)</item> returns 14 (0110 | 1010 = 1110)."
+msgid "Col1"
+msgstr "Col1"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3146783\n"
+"176\n"
+"help.text"
+msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
+msgstr "Lakkoofsa tarjaa golee gubbaa-bitaa kan bal'ina man'ee keessaati. Lakkoofsa kennuun 0 irraa eegala."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153666\n"
+"177\n"
+"help.text"
+msgid "2"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"bm_id4150019\n"
+"04060112.xhp\n"
+"par_id3149560\n"
+"178\n"
"help.text"
-msgid "<bookmark_value>BITXOR function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii OR</bookmark_value>"
+msgid "Row1"
+msgstr "Tarree1"
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4150019\n"
-"182\n"
+"04060112.xhp\n"
+"par_id3156156\n"
+"179\n"
"help.text"
-msgid "BITXOR"
+msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr "Lakkoofsa tarree golee gubbaa-bitaa kan bal'ina man'ee keessaati. Lakkoofsa kennuun 0 irraa eegala."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150408\n"
+"180\n"
+"help.text"
+msgid "4"
msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4145246\n"
+"04060112.xhp\n"
+"par_id3150593\n"
+"181\n"
+"help.text"
+msgid "Tab1"
+msgstr "caancala1"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150357\n"
+"182\n"
+"help.text"
+msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr "Lakkoofsa gabatee golee gubbaa-bitaa kan bal'ina man'ee keessaati; Lakkoofsa kennuun 0 irraa eegala."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3146912\n"
"183\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BITXOR\">Returns a bitwise logical \"exclusive or\" of the parameters.</ahelp>"
+msgid "6"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4153047\n"
+"04060112.xhp\n"
+"par_id3153352\n"
"184\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Col2"
+msgstr "Col2"
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4157970\n"
+"04060112.xhp\n"
+"par_id3155893\n"
"185\n"
"help.text"
-msgid "BITXOR(number1; number2)"
-msgstr ""
+msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
+msgstr "Lakkoofsa tarjaa golee jala-mirgaa kan bal'ina man'ee keessaati. Lakkoofsa kennuun 0 irraa eegala."
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4145302\n"
+"04060112.xhp\n"
+"par_id3150827\n"
"186\n"
"help.text"
-msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
+msgid "8"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4150269\n"
+"04060112.xhp\n"
+"par_id3148406\n"
+"187\n"
+"help.text"
+msgid "Row2"
+msgstr "Tarree2"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150673\n"
+"188\n"
+"help.text"
+msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr "Lakkoofsa tarree golee jala-mirgaa kan bal'ina man'ee keessaati; Lakkoofsa kennuun 0 irraa eegala."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155864\n"
+"189\n"
+"help.text"
+msgid "10"
+msgstr "10"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153197\n"
+"190\n"
+"help.text"
+msgid "Tab2"
+msgstr "caancala2"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149329\n"
+"191\n"
+"help.text"
+msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr "Lakkoofsa gabatee golee jala-mirgaa kan bal'ina man'ee keessaati; Lakkoofsa kennuun 0 irraa eegala."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147360\n"
"192\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "12"
+msgstr "12"
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4149394\n"
+"04060112.xhp\n"
+"par_id3154520\n"
+"193\n"
+"help.text"
+msgid "Count"
+msgstr "Lakkaa'i"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150647\n"
+"194\n"
+"help.text"
+msgid "Number of the following elements. Empty cells are not counted or passed."
+msgstr "Lakkoofsa misensota armaan gadii. Man'eewwan duwwaan hin lakkaawwaman ykn ni taramu."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149747\n"
+"195\n"
+"help.text"
+msgid "14"
+msgstr "14"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147579\n"
"196\n"
"help.text"
-msgid "<item type=\"input\">=BITXOR(6;10)</item> returns 12 (0110 ^ 1010 = 1100)"
-msgstr ""
+msgid "Col"
+msgstr "Col"
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"bm_id4155370\n"
+"04060112.xhp\n"
+"par_id3154188\n"
+"197\n"
"help.text"
-msgid "<bookmark_value>BITLSHIFT function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii BINOMDIST</bookmark_value>"
+msgid "Column number of the element. Numbering starts at 0."
+msgstr "Lakkoofsa tarjaa miseensaa. Lakkoofsa kennuun 0 irraa eegala."
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4155370\n"
-"266\n"
+"04060112.xhp\n"
+"par_id3159209\n"
+"198\n"
"help.text"
-msgid "BITLSHIFT"
-msgstr ""
+msgid "16"
+msgstr "16"
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4158411\n"
-"267\n"
+"04060112.xhp\n"
+"par_id3153265\n"
+"199\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BITLSHIFT\">Shifts a number left by n bits.</ahelp>"
-msgstr ""
+msgid "Row"
+msgstr "Tarree"
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4155814\n"
-"268\n"
+"04060112.xhp\n"
+"par_id3150095\n"
+"200\n"
+"help.text"
+msgid "Row number of the element; numbering starts at 0."
+msgstr "Lakkoofsa tarree miseensaa; Lakkoofsa kennuun 0 irraa eegala."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151276\n"
+"201\n"
+"help.text"
+msgid "18"
+msgstr "18"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149177\n"
+"202\n"
+"help.text"
+msgid "Tab"
+msgstr "caancala"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3146925\n"
+"203\n"
+"help.text"
+msgid "Table number of the element; numbering starts at 0."
+msgstr "Lakkoofsa gabatee miseensaa; Lakkoofsa kennuun 0 irraa eegala."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150488\n"
+"204\n"
+"help.text"
+msgid "20"
+msgstr "20"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149441\n"
+"205\n"
+"help.text"
+msgid "Error"
+msgstr "Dogongora"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156048\n"
+"206\n"
+"help.text"
+msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
+msgstr "Lakkoofsa dogongoraa, gatiin 0 akka \"Dogongorri hin jiru\"tti hiikama. Yoo miseensi man'ee formulaa irraa dhufe gatiin dogongoraa formulaadhan murteeffama."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3163813\n"
+"207\n"
+"help.text"
+msgid "22"
+msgstr "22"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159102\n"
+"208\n"
+"help.text"
+msgid "Type"
+msgstr "Akaakuu"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149581\n"
+"209\n"
+"help.text"
+msgid "Type of cell content, 0 == Double, 1 == String"
+msgstr "Akaakuun qabeenya man'ee, == Dachaa, 1 == Diraa"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155182\n"
+"210\n"
+"help.text"
+msgid "24"
+msgstr "24"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153291\n"
+"211\n"
+"help.text"
+msgid "Value or Len"
+msgstr "Gatii ykn Dheerina"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148560\n"
+"212\n"
+"help.text"
+msgid "If type == 0: 8 byte IEEE variable of type double/floating point"
+msgstr "Yoo akaakuun == 0:8 baayitii IEEE jijjirama akaakuu dachaa/tuqaa bololi'aa"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148901\n"
+"213\n"
+"help.text"
+msgid "If type == 1: Length of the following string, including closing zero byte. If the length including closing zero byte equals an odd value a second zero byte is added to the string so that an even value is achieved. Therefore, Len is calculated using ((StrLen+2)&~1)."
+msgstr "Yoo akaakuun == 1: dheerinni dursaa armaan gadii,baayitii duwwaa cufaa dabalachuun.Yoo dheerinni baayitii duwwaa cufaa gatii qaraa waliin wal qixaa ta'ee baayitii duwwaa lammataa dursaatti ida'amuun kanaafuu gatii gutuu argamsiisa.Kanaafuu,dheerinni ((StrLen+2)&1) fayyadamuun shallagama."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145215\n"
+"214\n"
+"help.text"
+msgid "26 if type==1"
+msgstr "yoo akaakuun==1 26"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155143\n"
+"215\n"
+"help.text"
+msgid "String"
+msgstr "Dursaa"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149298\n"
+"216\n"
+"help.text"
+msgid "If type == 1: String with closing zero byte"
+msgstr "Yoo akaakuun == 1: dursaan baayitii cufaa duwwaa waliin"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151322\n"
+"217\n"
+"help.text"
+msgid "32 or 26+Len"
+msgstr "32 ykn 26+Len"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3163722\n"
+"218\n"
+"help.text"
+msgid "..."
+msgstr "..."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151059\n"
+"219\n"
+"help.text"
+msgid "Next element"
+msgstr "Miseensa itti aanu"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"tit\n"
+"help.text"
+msgid "Add-in Functions, List of Analysis Functions Part One"
+msgstr "Fankishiiniiwwan Idaatu,Kutaa Lammaffaa Tarree Xiinxala Fankishinii"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id3152871\n"
+"help.text"
+msgid "<bookmark_value>add-ins; analysis functions</bookmark_value><bookmark_value>analysis functions</bookmark_value>"
+msgstr "<bookmark_value>lakkoofsota immaajiineerii fankishinoota xiinxalaa keessaa </bookmark_value><bookmark_value>lakkoofsota komphileeksii fankishinoota xiinxalaa keessaa</bookmark_value>"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3152871\n"
+"1\n"
+"help.text"
+msgid "Add-in Functions, List of Analysis Functions Part One"
+msgstr "Fankishiiniiwwan Idaatu,Kutaa Lammaffaa Tarree Xiinxala Fankishinii"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3149873\n"
+"102\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060110.xhp\" name=\"General conversion function BASIS\">General conversion function BASIS</link>"
+msgstr "<link href=\"text/scalc/01/04060110.xhp\" name=\"General conversion function BASIS\">fankishinii BASIS jijjirraa walii gala</link>"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3145324\n"
+"5\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060116.xhp\" name=\"Analysis functions Part Two\">Analysis functions Part Two</link>"
+msgstr "<link href=\"text/scalc/01/04060116.xhp\" name=\"Analysis functions Part Two\">Fankishinii Xiinxalaa Kutaa Lama</link>"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3155751\n"
+"156\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Back to the Overview</link>"
+msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Ilaalcha gubbaatti Deebi'ii</link>"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id3153074\n"
+"help.text"
+msgid "<bookmark_value>Bessel functions</bookmark_value>"
+msgstr "<bookmark_value>fankishinii beezeeli</bookmark_value>"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3153334\n"
+"111\n"
+"help.text"
+msgid "BESSELI"
+msgstr "BESSELI"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3153960\n"
+"112\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">Calculates the modified Bessel function.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">Beezeel fankishinii foyya'ee shallaga.</ahelp>"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3150392\n"
+"113\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4147536\n"
-"269\n"
+"04060115.xhp\n"
+"par_id3147295\n"
+"114\n"
"help.text"
-msgid "BITLSHIFT(number; shift)"
-msgstr ""
+msgid "BESSELI(X; N)"
+msgstr "BESSELI(X; N)"
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4150475\n"
-"270\n"
+"04060115.xhp\n"
+"par_id3151338\n"
+"115\n"
"help.text"
-msgid "<emph>Number</emph> is a positive integer less than 2 ^ 48 (281 474 976 710 656)."
-msgstr ""
+msgid "<emph>X</emph> is the value on which the function will be calculated."
+msgstr "<emph>X</emph>'n gatii fankishiinin irratti shallagamu dha."
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4153921\n"
-"271\n"
+"04060115.xhp\n"
+"par_id3151392\n"
+"116\n"
"help.text"
-msgid "<emph>Shift</emph> is the number of positions the bits will be moved to the left. If shift is negative, it is synonymous with BITRSHIFT (number; -shift)."
-msgstr ""
+msgid "<emph>N</emph> is the order of the Bessel function"
+msgstr "<emph>N</emph>'n tartiiba beezeel fankishinii dha."
-#: 04060120.xhp
-#, fuzzy
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4153723\n"
-"276\n"
+"04060115.xhp\n"
+"hd_id3153027\n"
+"103\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "BESSELJ"
+msgstr "BESSELJ"
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4149819\n"
-"278\n"
+"04060115.xhp\n"
+"par_id3153015\n"
+"104\n"
"help.text"
-msgid "<item type=\"input\">=BITLSHIFT(6;1)</item> returns 12 (0110 << 1 = 1100)."
-msgstr ""
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">Calculates the Bessel function (cylinder function).</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">Beezeel fankishinii foyya'ee(fankishiinii siliinderaa) shallaga.</ahelp>"
-#: 04060120.xhp
-#, fuzzy
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"bm_id4083280\n"
+"04060115.xhp\n"
+"hd_id3146884\n"
+"105\n"
"help.text"
-msgid "<bookmark_value>BITRSHIFT function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii BINOMDIST</bookmark_value>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4083280\n"
-"165\n"
+"04060115.xhp\n"
+"par_id3150032\n"
+"106\n"
"help.text"
-msgid "BITRSHIFT"
-msgstr ""
+msgid "BESSELJ(X; N)"
+msgstr "BESSELJ(X; N)"
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4152482\n"
-"166\n"
+"04060115.xhp\n"
+"par_id3150378\n"
+"107\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BITRSHIFT\">Shifts a number right by n bits.</ahelp>"
-msgstr ""
+msgid "<emph>X</emph> is the value on which the function will be calculated."
+msgstr "<emph>X</emph>'n gatii fankishiinin irratti shallagamu dha."
-#: 04060120.xhp
-#, fuzzy
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4149713\n"
-"167\n"
+"04060115.xhp\n"
+"par_id3145638\n"
+"108\n"
+"help.text"
+msgid "<emph>N</emph> is the order of the Bessel function"
+msgstr "<emph>N</emph>'n tartiiba beezeel fankishinii dha."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3149946\n"
+"117\n"
+"help.text"
+msgid "BESSELK"
+msgstr "BESSELK"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3159122\n"
+"118\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">Calculates the modified Bessel function.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">Faannkishinii Beezel haaromfame shallaga.</ahelp>"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3150650\n"
+"119\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4145087\n"
-"168\n"
+"04060115.xhp\n"
+"par_id3149354\n"
+"120\n"
"help.text"
-msgid "BITRSHIFT(number; shift)"
-msgstr ""
+msgid "BESSELK(X; N)"
+msgstr "BESSELK(X; N)"
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4149277\n"
-"169\n"
+"04060115.xhp\n"
+"par_id3150481\n"
+"121\n"
"help.text"
-msgid "<emph>Number</emph> is a positive integer less than 2 ^ 48 (281 474 976 710 656)."
-msgstr ""
+msgid "<emph>X</emph> is the value on which the function will be calculated."
+msgstr "<emph>X</emph>'n gatii fankishiinin irratti shallagamu dha."
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4149270\n"
-"170\n"
+"04060115.xhp\n"
+"par_id3150024\n"
+"122\n"
"help.text"
-msgid "<emph>Shift</emph> is the number of positions the bits will be moved to the right. If shift is negative, it is synonymous with BITLSHIFT (number; -shift)."
-msgstr ""
+msgid "<emph>N</emph> is the order of the Bessel function"
+msgstr "<emph>N</emph>'n tartiiba beezeel fankishinii dha."
-#: 04060120.xhp
-#, fuzzy
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4152933\n"
-"175\n"
+"04060115.xhp\n"
+"hd_id3145828\n"
+"123\n"
+"help.text"
+msgid "BESSELY"
+msgstr "BESSELY"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3146877\n"
+"124\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Calculates the modified Bessel function.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Beezeel fankishinii foyya'ee shallaga.</ahelp>"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3146941\n"
+"125\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3148884\n"
+"126\n"
+"help.text"
+msgid "BESSELY(X; N)"
+msgstr "BESSELY(X; N)"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3147475\n"
+"127\n"
+"help.text"
+msgid "<emph>X</emph> is the value on which the function will be calculated."
+msgstr "<emph>X</emph>'n gatii fankishiinin irratti shallagamu dha."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3147421\n"
+"128\n"
+"help.text"
+msgid "<emph>N</emph> is the order of the Bessel function"
+msgstr "<emph>N</emph>'n tartiiba beezeel fankishinii dha."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id3153034\n"
+"help.text"
+msgid "<bookmark_value>BIN2DEC function</bookmark_value><bookmark_value>converting;binary numbers, into decimal numbers</bookmark_value>"
+msgstr "<bookmark_value>fankishinii BIN2DEC </bookmark_value><bookmark_value>jijjiiruun;lakkoofsota baayineerii, gara lakkoofsota deesimaaliitti</bookmark_value>"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3153034\n"
+"17\n"
+"help.text"
+msgid "BIN2DEC"
+msgstr "BIN2DEC"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3144744\n"
+"18\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">The result is the decimal number for the binary number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">Firiin isaa lakkoofsota baayineerii galfameef lakkoofsota deesiimaalii ta'a..</ahelp>"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3145593\n"
+"19\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3149726\n"
+"20\n"
+"help.text"
+msgid "BIN2DEC(Number)"
+msgstr "BIN2DEC(Lakkoofsa)"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3150142\n"
+"21\n"
+"help.text"
+msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
+msgstr "<emph>Lakkoofsi</emph> lakkoofsota baayineerii dha.Gatii olaanaa bakkeewwan(biitiwwan) qabachuu danda'uu 10 dha.Biitin calqaba xiyyoo irra mallattoo biiti taati,biitiiwwan iti aanuun dhufaan gatii kennu.Lakkoofsootni neegaativii akkaa tuuskompiilimeentitti galfamu."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3149250\n"
+"22\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4156130\n"
-"179\n"
+"04060115.xhp\n"
+"par_id3145138\n"
+"23\n"
"help.text"
-msgid "<item type=\"input\">=BITRSHIFT(6;1)</item> returns 3 (0110 >> 1 = 0011)."
-msgstr ""
+msgid "<item type=\"input\">=BIN2DEC(1100100)</item> returns 100."
+msgstr "<item type=\"input\">=BIN2DEC(1100100)</item> 100 kenna."
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"tit\n"
+"04060115.xhp\n"
+"bm_id3149954\n"
"help.text"
-msgid "Cell Protection"
-msgstr "Hayyisa Man'ee"
+msgid "<bookmark_value>BIN2HEX function</bookmark_value><bookmark_value>converting;binary numbers, into hexadecimal numbers</bookmark_value>"
+msgstr "<bookmark_value>fankishinii BIN2HEX</bookmark_value><bookmark_value>jijjiiruun;lakkoofsota baayineerii, gara lakkoofsota heeksaadeesimaaliitti</bookmark_value>"
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3145119\n"
-"1\n"
+"04060115.xhp\n"
+"hd_id3149954\n"
+"24\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05020600.xhp\" name=\"Cell Protection\">Cell Protection</link>"
-msgstr "<link href=\"text/scalc/01/05020600.xhp\" name=\"Cell Protection\">Hayyisa Man'ee</link>"
+msgid "BIN2HEX"
+msgstr "BIN2HEX"
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3150398\n"
-"2\n"
+"04060115.xhp\n"
+"par_id3148585\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\"HID_SCPAGE_PROTECTION\">Defines protection options for selected cells.</ahelp>"
-msgstr "<ahelp hid=\"HID_SCPAGE_PROTECTION\">Man'eewwan filamaniif dirqalaalee ittisaa ramada.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2HEX\">The result is the hexadecimal number for the binary number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2HEX\">Firiin isaa lakkoofsota baayineerii galfameef lakkoofsota heeksaadeesiimaalii ta'a..</ahelp>"
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3150447\n"
-"3\n"
+"04060115.xhp\n"
+"hd_id3153936\n"
+"26\n"
"help.text"
-msgid "Protection"
-msgstr "Hayyisa"
+msgid "Syntax"
+msgstr "Caasima"
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3125864\n"
-"9\n"
+"04060115.xhp\n"
+"par_id3148753\n"
+"27\n"
"help.text"
-msgid "Hide all"
-msgstr "Hundaa Dhoksi"
+msgid "BIN2HEX(Number; Places)"
+msgstr "BIN2HEX(Lakkoofsa; Bakkeewwan)"
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3153768\n"
-"10\n"
+"04060115.xhp\n"
+"par_id3155255\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_ALL\">Hides formulas and contents of the selected cells.</ahelp>"
-msgstr "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_ALL\">Formulawwan fi qabeewwan kan man'eewwan filatamanii dhoksa.</ahelp>"
+msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
+msgstr "<emph>Lakkoofsi</emph> lakkoofsota baayineerii dha.Gatii olaanaa bakkeewwan(biitiwwan) qabachuu danda'uu 10 dha.Biitin calqaba xiyyoo irra mallattoo biiti taati,biitiiwwan iti aanuun dhufaan gatii kennu.Lakkoofsootni neegaativii akkaa tuuskompiilimeentitti galfamu."
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3153190\n"
-"5\n"
+"04060115.xhp\n"
+"par_id3150860\n"
+"29\n"
"help.text"
-msgid "Protected"
-msgstr "Dhorkame"
+msgid "Places means the number of places to be output."
+msgstr "Bakkeewwan jechuun lakkoofsa bakkeewwani firii ta'anidha."
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3151119\n"
-"6\n"
+"04060115.xhp\n"
+"hd_id3155829\n"
+"30\n"
"help.text"
-msgid "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_PROTECTED\">Prevents the selected cells from being modified.</ahelp>"
-msgstr "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_PROTECTED\">Man'een filatamee akka hin foyyoofne dhorka.</ahelp>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3156283\n"
-"15\n"
+"04060115.xhp\n"
+"par_id3149686\n"
+"31\n"
"help.text"
-msgid "This cell protection only takes effect if you also protect the sheet (<emph>Tools - Protect Document - Sheet</emph>)."
-msgstr "Ittisni kun tarkanfii kan fudhatuu yoo wardii ittiste qofa(<emph>Meshaalee - Galmee Eegi - Wardii</emph>)."
+msgid "<item type=\"input\">=BIN2HEX(1100100;6)</item> returns 000064."
+msgstr "<item type=\"input\">=BIN2HEX(1100100;6)</item> 000064 kenna."
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3149377\n"
-"7\n"
+"04060115.xhp\n"
+"bm_id3153332\n"
"help.text"
-msgid "Hide formula"
-msgstr "Formulaa Dhoksi"
+msgid "<bookmark_value>BIN2OCT function</bookmark_value><bookmark_value>converting;binary numbers, into octal numbers</bookmark_value>"
+msgstr "<bookmark_value>fankishinii BIN2OCT </bookmark_value><bookmark_value>jijjiiruun;lakkoofsota baayineerii, gara lakkoofsota oktaaliitti</bookmark_value>"
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3154510\n"
-"8\n"
+"04060115.xhp\n"
+"hd_id3153332\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_FORMULAR\">Hides formulas in the selected cells.</ahelp>"
-msgstr "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_FORMULAR\">Fankishinii man'eewwan filatame keessaa dhoksa.</ahelp>"
+msgid "BIN2OCT"
+msgstr "BIN2OCT"
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3155602\n"
+"04060115.xhp\n"
+"par_id3155951\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\"> The result is the octal number for the binary number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\">Firiin isaa lakkoofsota baayineerii galfameef lakkoofsota oktaalii ta'a..</ahelp>"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3153001\n"
"11\n"
"help.text"
-msgid "Print"
-msgstr "Maxxansi"
+msgid "Syntax"
+msgstr "Caasima"
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3153836\n"
+"04060115.xhp\n"
+"par_id3154508\n"
"12\n"
"help.text"
-msgid "Defines print options for the sheet."
-msgstr "Wardiidhaf dirqalaalee maxxansi jedhu qindeessa"
+msgid "BIN2OCT(Number; Places)"
+msgstr "BIN2OCT(lakkoofsa; Bakkeewwan)"
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3155065\n"
+"04060115.xhp\n"
+"par_id3153567\n"
"13\n"
"help.text"
-msgid "Hide when printing"
-msgstr "Yommuu maxxansaa dhoksi"
+msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
+msgstr "<emph>Lakkoofsi</emph> lakkoofsota baayineerii dha.Gatii olaanaa bakkeewwan(biitiwwan) qabachuu danda'uu 10 dha.Biitin calqaba xiyyoo irra mallattoo biiti taati,biitiiwwan iti aanuun dhufaan gatii kennu.Lakkoofsootni neegaativii akkaa tuuskompiilimeentitti galfamu."
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3155443\n"
+"04060115.xhp\n"
+"par_id3155929\n"
"14\n"
"help.text"
-msgid "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_PRINT\">Keeps the selected cells from being printed.</ahelp>"
-msgstr "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_PRINT\">Man'eewwan filataman akka hin maxxansamne dhorka.</ahelp>"
+msgid "<emph>Places</emph> means the number of places to be output."
+msgstr "<emph>iddoowwan</emph> iddoowwan lakkoofsa bahaa jechuu dha."
-#: 05020000.xhp
+#: 04060115.xhp
msgctxt ""
-"05020000.xhp\n"
-"tit\n"
+"04060115.xhp\n"
+"hd_id3150128\n"
+"15\n"
"help.text"
-msgid "Format Cells"
-msgstr "Man'eewwaan Dhangeessi"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 05020000.xhp
+#: 04060115.xhp
msgctxt ""
-"05020000.xhp\n"
-"bm_id3148663\n"
+"04060115.xhp\n"
+"par_id3153733\n"
+"16\n"
"help.text"
-msgid "<bookmark_value>cell attributes</bookmark_value><bookmark_value>attributes;cells</bookmark_value><bookmark_value>formatting;cells</bookmark_value><bookmark_value>cells;formatting dialog</bookmark_value>"
-msgstr "<bookmark_value>amaloota man'ee</bookmark_value><bookmark_value>amaloota;man'eewwan</bookmark_value><bookmark_value>dhangeessuu;man'eewwan</bookmark_value><bookmark_value>man'eewwan;qaaqa dhangeessuu</bookmark_value>"
+msgid "<item type=\"input\">=BIN2OCT(1100100;4)</item> returns 0144."
+msgstr "<item type=\"input\">=BIN2OCT(1100100;4)</item> 0144 kenna."
-#: 05020000.xhp
+#: 04060115.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3148663\n"
-"1\n"
+"04060115.xhp\n"
+"bm_id3150014\n"
"help.text"
-msgid "Format Cells"
-msgstr "Man'eewwaan Dhangeessi"
+msgid "<bookmark_value>DELTA function</bookmark_value><bookmark_value>recognizing;equal numbers</bookmark_value>"
+msgstr "<bookmark_value>fankishinii DELTA</bookmark_value><bookmark_value>addaabasaa;lakkoofsa walqixa</bookmark_value>"
-#: 05020000.xhp
+#: 04060115.xhp
msgctxt ""
-"05020000.xhp\n"
-"par_id3150448\n"
-"2\n"
+"04060115.xhp\n"
+"hd_id3150014\n"
+"129\n"
"help.text"
-msgid "<variable id=\"zellattributetext\"><ahelp hid=\".uno:FormatCellDialog\">Allows you to specify a variety of formatting options and to apply attributes to the selected cells.</ahelp></variable>"
-msgstr "<variable id=\"zellattributetext\"><ahelp hid=\".uno:FormatCellDialog\">Dirqalaalee dhangeessuu adda addaa akka ifteessitu fi man'eewwan filamanitti amaloota akka fayyadamtuuf si heeyyama.</ahelp></variable>"
+msgid "DELTA"
+msgstr "DELTA"
-#: 05020000.xhp
+#: 04060115.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3145785\n"
-"3\n"
+"04060115.xhp\n"
+"par_id3148760\n"
+"130\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
-msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Lakkoofsota</link>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_DELTA\">The result is TRUE (1) if both numbers, which are delivered as an argument, are equal, otherwise it is FALSE (0).</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DELTA\">firiin isaa TRUE (1) ta'a yoo lakkoofsi lamaanuu, kan akka qajeelfamati kennamu, walqixa, ykn FALSE (0) ta'a.</ahelp>"
-#: 05020000.xhp
+#: 04060115.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3146119\n"
-"4\n"
+"04060115.xhp\n"
+"hd_id3155435\n"
+"131\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
-msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Bocquu</link>"
+msgid "Syntax"
+msgstr "Caasima"
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"tit\n"
+"04060115.xhp\n"
+"par_id3145247\n"
+"132\n"
"help.text"
-msgid "WEEKNUM"
-msgstr "WEEKNUM"
+msgid "DELTA(Number1; Number2)"
+msgstr "DELTA(Lakkoofsa1; Lakkoofsa2)"
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"bm_id3159161\n"
+"04060115.xhp\n"
+"hd_id3149002\n"
+"133\n"
"help.text"
-msgid "<bookmark_value>WEEKNUM function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii WEEKNUM</bookmark_value>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"hd_id3159161\n"
-"54\n"
+"04060115.xhp\n"
+"par_id3151020\n"
+"134\n"
"help.text"
-msgid "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link></variable>"
-msgstr "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link></variable>"
+msgid "<item type=\"input\">=DELTA(1;2)</item> returns 0."
+msgstr "<item type=\"input\">=DELTA(1;2)</item> 0 kenna."
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3149770\n"
-"55\n"
+"04060115.xhp\n"
+"bm_id3157971\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\">WEEKNUM calculates the week number of the year for the internal date value.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\"> gati yeroo keessaaf,WEEKNUM'n lakkoofsa torbanii waggaa keessaa shallaga.</ahelp>"
+msgid "<bookmark_value>DEC2BIN function</bookmark_value><bookmark_value>converting;decimal numbers, into binary numbers</bookmark_value>"
+msgstr "<bookmark_value>fankishinii DEC2BIN</bookmark_value><bookmark_value>jijjiiruu;kurnyee lakkoofsota, gara lakkoofsota lameeti</bookmark_value>"
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_idN105E4\n"
+"04060115.xhp\n"
+"hd_id3157971\n"
+"55\n"
"help.text"
-msgid "The International Standard ISO 8601 has decreed that Monday shall be the first day of the week. A week that lies partly in one year and partly in another is assigned a number in the year in which most of its days lie. That means that week number 1 of any year is the week that contains the January 4th."
-msgstr "Labsiin Adduunyaa Waaltawaa (AW)8601 akka labseetti Wixaatni guyyaa jalqaba torbani ta'a.Toorban gariin wagga tokko keessa gariin immoo waggaa isaa biraa keessa yommuu ta'uu, waggaan lakkoofsi guyyaa baay'ee toorbanicha keessaatti argameetti lakkoofsi guyyaa sun ida'aama. Kana jechuun torbaan jalqabaa waggaa kamiyyuu torbaan ji'a ammajji 4ffaa of keessa qaba."
+msgid "DEC2BIN"
+msgstr "DEC2BIN"
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"hd_id3153055\n"
+"04060115.xhp\n"
+"par_id3153043\n"
"56\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2BIN\"> The result is the binary number for the decimal number entered between -512 and 511.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2BIN\"> Firiin lakkoofsa kurnyee -512 fi 511 galfamee lakkoofsa lamee ta'a.</ahelp>"
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3147236\n"
+"04060115.xhp\n"
+"hd_id3145349\n"
"57\n"
"help.text"
-msgid "WEEKNUM(Number; Mode)"
-msgstr "WEEKNUM(Lakkoofsa;Haalata)"
+msgid "Syntax"
+msgstr "Caasima"
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3147511\n"
+"04060115.xhp\n"
+"par_id3150569\n"
"58\n"
"help.text"
-msgid "<emph>Number</emph> is the internal date number."
-msgstr "<emph>Lakkoofsa</emph>lakkoofsa aduu keessaati."
+msgid "DEC2BIN(Number; Places)"
+msgstr "DEC2BIN(lakkoofsa; Bakkeewwan)"
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3154269\n"
+"04060115.xhp\n"
+"par_id3148768\n"
"59\n"
"help.text"
-msgid "<emph>Mode</emph> sets the start of the week and the calculation type."
-msgstr "<emph>Haalatni</emph> akaakuu shallaggii fi jalqabbii torbanii qindeessa."
+msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns a binary number with 10 characters. The most significant bit is the sign bit, the other 9 bits return the value."
+msgstr "<emph>Lakkoofsii</emph> lakkoofsa kurnyee dha. Yoo lakkoofsii neegatiivii ta'ee; fankishinichi lakkoofsa lamee arfiilee 10 waliin kena. Bitiin jaqabaa bitii mallattooti, bitiin 9n hafan gatii kennu"
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3148930\n"
+"04060115.xhp\n"
+"par_id3149537\n"
"60\n"
"help.text"
-msgid "1 = Sunday"
-msgstr "1 = Dilbata"
+msgid "<emph>Places</emph> means the number of places to be output."
+msgstr "<emph>iddoowwan</emph> iddoowwan lakkoofsa bahaa jechuu dha."
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3154280\n"
+"04060115.xhp\n"
+"hd_id3150265\n"
"61\n"
"help.text"
-msgid "2 = Monday"
-msgstr "2 = Wixata"
+msgid "Example"
+msgstr "Fakkeenya"
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"hd_id3146948\n"
+"04060115.xhp\n"
+"par_id3150662\n"
"62\n"
"help.text"
-msgid "Examples"
-msgstr "Fakkeenyawwan"
+msgid "<item type=\"input\">=DEC2BIN(100;8)</item> returns 01100100."
+msgstr "<item type=\"input\">=DEC2BIN(100;8)</item> 01100100 kenna."
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3150704\n"
-"65\n"
+"04060115.xhp\n"
+"bm_id3149388\n"
"help.text"
-msgid "=WEEKNUM(\"1995-01-01\";1) returns 1"
-msgstr "=WEEKNUM(\"1995-01-01\";1 1 kenna"
+msgid "<bookmark_value>DEC2HEX function</bookmark_value><bookmark_value>converting;decimal numbers, into hexadecimal numbers</bookmark_value>"
+msgstr "<bookmark_value>fankishinii DEC2HEX</bookmark_value><bookmark_value>jijjiiruu;kurnyee lakkoofsota, gara lakkoofsota kurnyee kudhaja'ati</bookmark_value>"
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3149792\n"
-"64\n"
+"04060115.xhp\n"
+"hd_id3149388\n"
+"71\n"
"help.text"
-msgid "=WEEKNUM(\"1995-01-01\";2) returns 52. If the week starts on Monday, Sunday belongs to the last week of the previous year."
-msgstr "=WEEKNUM(\"1995-01-01\";2) 52 kenna.Yoo torban Dafinoodhaan eegale,Dilbatni torbaan xumuraa waggaa darbee ta'a."
+msgid "DEC2HEX"
+msgstr "DEC2HEX"
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"tit\n"
+"04060115.xhp\n"
+"par_id3149030\n"
+"72\n"
"help.text"
-msgid "Fill Sheet"
-msgstr "Wardii Guuti"
+msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\">The result is the hexadecimal number for the decimal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\">Firiin lakkoofsa kurnyee kudhaja'aa kurnyee lakkoofsatif galchii.</ahelp>"
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"hd_id3153897\n"
-"1\n"
+"04060115.xhp\n"
+"hd_id3150691\n"
+"73\n"
"help.text"
-msgid "Fill Sheet"
-msgstr "Wardii Guuti"
+msgid "Syntax"
+msgstr "Caasima"
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"par_id3150791\n"
-"2\n"
+"04060115.xhp\n"
+"par_id3147535\n"
+"74\n"
"help.text"
-msgid "<variable id=\"tabellenfuellentext\"><ahelp hid=\".uno:FillTable\" visibility=\"visible\">Specifies the options for transferring sheets or ranges of a certain sheet.</ahelp></variable>"
-msgstr "<variable id=\"tabellenfuellentext\"><ahelp hid=\".uno:FillTable\" visibility=\"visible\">Wardii ta'eef dirqalaalee hangii ykn wardii jijjiiruuf oolu ifteessa.</ahelp></variable>"
+msgid "DEC2HEX(Number; Places)"
+msgstr "DEC2HEX(lakkoofsa; Bakkeewwan)"
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"par_id3150767\n"
-"3\n"
+"04060115.xhp\n"
+"par_id3152820\n"
+"75\n"
"help.text"
-msgid "In contrast to copying an area to the clipboard, you can filter certain information and calculate values. This command is only visible if you have selected two sheets in the document. To select multiple sheets, click each sheet tab while pressing <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> or Shift."
-msgstr "Nannoowwan gabatee muraatti garagalchu irra,odeeffannoo murta'a ta'ee gingilchuun fi gatiiwwan isaa shallaguu dandeessa.Ajajni kunis kan mul'achuu danda'u yoo wardiiwwan lama galmee kee keessatti filatte dha.Wardiiwwan baay'ee filuuf, yeroo <switchinline select=\"sys\"> <caseinline select=\"MAC\">Ajaja</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> ykn shift dhiibdu tokko tokkoo cancaala wardii cuqaasi."
+msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns a hexadecimal number with 10 characters (40 bits). The most significant bit is the sign bit, the other 39 bits return the value."
+msgstr "<emph>Lakkoofsaii</emph> lakkoofsa kurnyee dha. Yoo lakkoofsii neegatiivii ta'ee; fankishinichi lakkoofsa kurnyee kudhaja'a arfiilee 10(bitiiwwan 40) kenna. Bitiin jaqabaa bitii mallattooti, bitiiwwan 39 hafan gatii kenna."
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"hd_id3155131\n"
-"4\n"
+"04060115.xhp\n"
+"par_id3153221\n"
+"76\n"
"help.text"
-msgid "Filling a Sheet"
-msgstr ""
+msgid "<emph>Places</emph> means the number of places to be output."
+msgstr "<emph>iddoowwan</emph> iddoowwan lakkoofsa bahaa jechuu dha."
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"par_id3146119\n"
-"5\n"
+"04060115.xhp\n"
+"hd_id3154869\n"
+"77\n"
"help.text"
-msgid "Select the entire sheet by clicking the empty gray box in the upper left of the sheet. You can also select an area of the sheet to be copied."
-msgstr "Sanduuqa duwwaa fajajaa kan gubbaa harka bitaa warditti argamu cuqaasuun guutummaa wardii fili.Akkasumas naannoo wardii garagalfamuus filachuu dandeessa."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"par_id3153726\n"
-"6\n"
+"04060115.xhp\n"
+"par_id3150476\n"
+"78\n"
"help.text"
-msgid "Press <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and click the tab of the sheet where you want to insert the contents."
-msgstr "<switchinline select=\"sys\"> <caseinline select=\"MAC\">Ajaja</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> fi iddoo qabeentoota itti saaguu barbadduu cancaala wardii cuqaasi."
+msgid "<item type=\"input\">=DEC2HEX(100;4)</item> returns 0064."
+msgstr "<item type=\"input\">=DEC2HEX(100;4)</item> 0064 kenna."
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"par_id3147436\n"
-"7\n"
+"04060115.xhp\n"
+"bm_id3154948\n"
"help.text"
-msgid "Select the command <emph>Edit - Fill - Sheet</emph>. In the dialog which appears, the check box <emph>Numbers</emph> must be selected (or <emph>Paste All</emph>) if you want to combine operations with the values. You can also choose the desired operation here."
-msgstr "Ajaja<emph>Gulaali - Guuti - Wardii</emph> fili.Yoo dalagoota gatiiwwan waliin walitti makuu barbaaddee, qaaqa mul'atuu keessatti,sanduuqni mirkaneessaa<emph>Lakkoofsota</emph> (ykn <emph>Hundaa Maxxansi</emph>) dirqiin filama.Akkasumas dalaga barbadamee asitti filachuu dandeessa."
+msgid "<bookmark_value>DEC2OCT function</bookmark_value><bookmark_value>converting;decimal numbers, into octal numbers</bookmark_value>"
+msgstr "<bookmark_value>fankishinii DEC2OCT</bookmark_value><bookmark_value>jijjiiruu;kurnyee lakkoofsotaa, gara lakkoofsota kurnyee saddeetotatti</bookmark_value>"
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"par_id3154942\n"
-"8\n"
+"04060115.xhp\n"
+"hd_id3154948\n"
+"63\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "<emph>Eyyee</emph> cuqaasi."
+msgid "DEC2OCT"
+msgstr "DEC2OCT"
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"par_id3156283\n"
-"9\n"
+"04060115.xhp\n"
+"par_id3153920\n"
+"64\n"
"help.text"
-msgid "This dialog is similar to the <link href=\"text/shared/01/02070000.xhp\" name=\"Paste Contents\">Paste Contents</link> dialog, where you can find additional tips."
-msgstr "Qaaqni kun qaaqa<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Contents\">Qaaqa Maxxansi</link> waliin wal fakkaatu, qajeelcha dabalata bakka itti argachuu dandeessuudha."
+msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2OCT\">The result is the octal number for the decimal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2OCT\">Firiin lakkoofsa kurnyee saddeetii kurnyee lakkofsatif galfama.</ahelp>"
-#: 05070500.xhp
-#, fuzzy
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"tit\n"
+"04060115.xhp\n"
+"hd_id3153178\n"
+"65\n"
"help.text"
-msgid "Sheet"
-msgstr "Wardii"
+msgid "Syntax"
+msgstr "Caasima"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"bm_id3150542\n"
+"04060115.xhp\n"
+"par_id3148427\n"
+"66\n"
"help.text"
-msgid "<bookmark_value>pages; order when printing</bookmark_value><bookmark_value>printing; page order</bookmark_value>"
-msgstr "<bookmark_value>fuuloota; ajaja yommuu maxxansituu</bookmark_value><bookmark_value>maxxansuu; Tartiiba fuulaa</bookmark_value>"
+msgid "DEC2OCT(Number; Places)"
+msgstr "DEC2OCT(lakkoofsa; Bakkeewwan)"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3156329\n"
-"1\n"
+"04060115.xhp\n"
+"par_id3155991\n"
+"67\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05070500.xhp\" name=\"Sheet\">Sheet</link>"
-msgstr "<link href=\"text/scalc/01/05070500.xhp\" name=\"Sheet\">Wardii</link>"
+msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns an octal number with 10 characters (30 bits). The most significant bit is the sign bit, the other 29 bits return the value."
+msgstr "<emph>Lakkoofsaii</emph> lakkoofsa kurnyee dha. Yoo lakkoofsii neegatiivii ta'ee; fankishinichi lakkoofsa kurnyee saddeeti arfiilee 10(bitiiwwan 30) kenna. Bitiin duraa biti mallattooti, bitiin 29 hafan gatii kenna."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3151384\n"
-"2\n"
+"04060115.xhp\n"
+"par_id3152587\n"
+"68\n"
"help.text"
-msgid "<ahelp hid=\"HID_SCPAGE_TABLE\">Specifies the elements to be included in the printout of all sheets with the current Page Style. Additionally, you can set the print order, the first page number, and the page scale.</ahelp>"
-msgstr "<ahelp hid=\"HID_SCPAGE_TABLE\">Akkaataalee fuulaa ammeen wardiiwwan huundaa keessatti miseensota hammatamuu qabu ifteessa.Dabalata, ajaja dabalata, lakkoofsa fuulaa duraa, fi safara fuulaa qindeessuu dandeessa.</ahelp>"
+msgid "<emph>Places</emph> means the number of places to be output."
+msgstr "<emph>iddoowwan</emph> iddoowwan lakkoofsa bahaa jechuu dha."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3150542\n"
-"3\n"
+"04060115.xhp\n"
+"hd_id3147482\n"
+"69\n"
"help.text"
-msgid "Print"
-msgstr "Maxxansi"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3125863\n"
-"4\n"
+"04060115.xhp\n"
+"par_id3154317\n"
+"70\n"
"help.text"
-msgid "Defines which elements of the spreadsheet are to be printed."
-msgstr "Miseensa wardii keessaa kan maxxanfamu hiiki."
+msgid "<item type=\"input\">=DEC2OCT(100;4)</item> returns 0144."
+msgstr "<item type=\"input\">=DEC2OCT(100;4)</item> 0144 kenna."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3151041\n"
-"5\n"
+"04060115.xhp\n"
+"bm_id3083446\n"
"help.text"
-msgid "Column and row headers"
-msgstr "Irraantoo tarjaa fi tarree"
+msgid "<bookmark_value>ERF function</bookmark_value><bookmark_value>Gaussian error integral</bookmark_value>"
+msgstr "<bookmark_value>fankishinii ERF</bookmark_value><bookmark_value>Dogongora intiigiralii Gawushiyaanii</bookmark_value>"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3147228\n"
-"6\n"
+"04060115.xhp\n"
+"hd_id3083446\n"
+"135\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_HEADER\">Specifies whether you want the column and row headers to be printed.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_HEADER\">Irraantoo tarjaa fi tarree maxxansuu akka barbadduu ifteessi.</ahelp>"
+msgid "ERF"
+msgstr "ERF"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3150439\n"
-"7\n"
+"04060115.xhp\n"
+"par_id3150381\n"
+"136\n"
"help.text"
-msgid "Grid"
-msgstr "Tarsaa"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ERF\">Returns values of the Gaussian error integral.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ERF\">Dogongora intiigiralii Gawushiyaanii kenna.</ahelp>"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3147436\n"
-"8\n"
+"04060115.xhp\n"
+"hd_id3152475\n"
+"137\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_GRID\">Prints out the borders of the individual cells as a grid.</ahelp> For the view on screen, make your choice under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"View\"><emph>View</emph></link> - <emph>Grid lines</emph>."
-msgstr ""
+msgid "Syntax"
+msgstr "Caasima"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3145750\n"
-"9\n"
+"04060115.xhp\n"
+"par_id3163824\n"
+"138\n"
"help.text"
-msgid "Comments"
-msgstr "Yaadoota"
+msgid "ERF(LowerLimit; UpperLimit)"
+msgstr "ERF(DaangaaJalaa;Daangaa gubbaa)"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3150010\n"
-"10\n"
+"04060115.xhp\n"
+"par_id3149715\n"
+"139\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_NOTES\">Prints the comments defined in your spreadsheet.</ahelp> They will be printed on a separate page, along with the corresponding cell reference."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_NOTES\">Yaadannoo wardii kee keesssatti hiikame maxxansa.</ahelp> Wabii man'ee waliin, fuula gara biraa irratti ni maxxanfama."
+msgid "<emph>LowerLimit</emph> is the lower limit of the integral."
+msgstr "<emph>Daangaan Jalaa</emph> daangaa jalaa intigiraaliiti."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3154944\n"
-"11\n"
+"04060115.xhp\n"
+"par_id3156294\n"
+"140\n"
"help.text"
-msgid "Objects/graphics"
-msgstr "Wantoota/Saxaatoo"
+msgid "<emph>UpperLimit</emph> is optional. It is the upper limit of the integral. If this value is missing, the calculation takes places between 0 and the lower limit."
+msgstr "<emph>Daangaan gubbaa</emph> dirqala. Daangaa gubbaa intigiraaliti. Yoo gatiin kun irranfatame, shallagiin 0 fi daangaa jalaa jidduuti adeefsifama."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3149581\n"
-"12\n"
+"04060115.xhp\n"
+"hd_id3154819\n"
+"141\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_OBJECTS\">Includes all inserted objects (if printable) and graphics with the printed document.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_OBJECTS\">Wantoota(yoo maxxanfama ta'ee) fi saxaatoo galmee maxxanfama waliin sagamee huundaa of keessaatti hammata.</ahelp>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3149377\n"
-"13\n"
+"04060115.xhp\n"
+"par_id3152974\n"
+"142\n"
"help.text"
-msgid "Charts"
-msgstr "Taattoowwan"
+msgid "<item type=\"input\">=ERF(0;1)</item> returns 0.842701."
+msgstr "<item type=\"input\">=ERF(0;1)</item> 0.842701 kenna."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3148455\n"
-"14\n"
+"04060115.xhp\n"
+"bm_id3145082\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_CHARTS\">Prints the charts that have been inserted into your spreadsheet.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_CHARTS\">Chartiiwwan wardii keessatti saagde maxxansa.</ahelp>"
+msgid "<bookmark_value>ERFC function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii ERFC</bookmark_value>"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3153418\n"
-"15\n"
+"04060115.xhp\n"
+"hd_id3145082\n"
+"143\n"
"help.text"
-msgid "Drawing Objects"
-msgstr "Miseensota Fakkasa"
+msgid "ERFC"
+msgstr "ERFC"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3149122\n"
-"16\n"
+"04060115.xhp\n"
+"par_id3149453\n"
+"144\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_DRAWINGS\">Includes all drawing objects in the printed document.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_DRAWINGS\">galmee maxxanfama keessatti miseensota fakkasa huunda of keessatti qabata.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ERFC\">Returns complementary values of the Gaussian error integral between x and infinity.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ERFC\">Gatiiwwan faallaa dogongoraa intiigiraalii gawushiyaanii x fi infinitii jidduu kenna .</ahelp>"
-#: 05070500.xhp
-#, fuzzy
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3150330\n"
-"17\n"
+"04060115.xhp\n"
+"hd_id3155839\n"
+"145\n"
"help.text"
-msgid "Formulas"
-msgstr "Foormulaawwan"
+msgid "Syntax"
+msgstr "Caasima"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3153715\n"
-"18\n"
+"04060115.xhp\n"
+"par_id3153220\n"
+"146\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_FORMULAS\">Prints the formulas contained in the cells, instead of the results.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_FORMULAS\">Firiiwwan irraaa formulaa man'eewwan keessatti argamu maxxansa.</ahelp>"
+msgid "ERFC(LowerLimit)"
+msgstr "ERFC(DaangaaJalaa)"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3156385\n"
-"19\n"
+"04060115.xhp\n"
+"par_id3147620\n"
+"147\n"
"help.text"
-msgid "Zero Values"
-msgstr "Gatiiwwan Duwwaa"
+msgid "<emph>LowerLimit</emph> is the lower limit of the integral"
+msgstr "<emph>Daangaan Jalaa</emph> daangaa jalaa intigiraaliiti."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3149258\n"
-"20\n"
+"04060115.xhp\n"
+"hd_id3146861\n"
+"148\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_NULLVALS\">Specifies that cells with a zero value are printed.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_NULLVALS\">Man'eewwan gatii duwwaa kun akka maxxanfamee ifteessi.</ahelp>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3154022\n"
-"21\n"
+"04060115.xhp\n"
+"par_id3156102\n"
+"149\n"
"help.text"
-msgid "Page Order"
-msgstr "Tartiiba fuulaa"
+msgid "<item type=\"input\">=ERFC(1)</item> returns 0.157299."
+msgstr "<item type=\"input\">=ERFC(1)</item> 0.157299 kenna."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3166423\n"
-"22\n"
+"04060115.xhp\n"
+"bm_id3152927\n"
"help.text"
-msgid "Defines the order in which data in a sheet is numbered and printed when it does not fit on one printed page."
-msgstr "Yommuu maxxansaa fuulaa tokkoo irratti taasisuu hin dandenye,tartiiba itti deetaan wardii keessa lakka'amuu fi maxxanfamuu hiika."
+msgid "<bookmark_value>GESTEP function</bookmark_value><bookmark_value>numbers;greater than or equal to</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii GESTEP</bookmark_value><bookmark_value>lakkoofsota;irra guddaa ykn walqixa</bookmark_value>"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3152580\n"
-"23\n"
+"04060115.xhp\n"
+"hd_id3152927\n"
+"150\n"
"help.text"
-msgid "Top to bottom, then right"
-msgstr "Gubbaa gara gaditti,itti aansuun harkaa mirgaa"
+msgid "GESTEP"
+msgstr "GESTEP"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3150205\n"
-"24\n"
+"04060115.xhp\n"
+"par_id3150763\n"
+"151\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_TABLE:BTN_TOPDOWN\">Prints vertically from the left column to the bottom of the sheet.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_TABLE:BTN_TOPDOWN\">Tarjaa bitaa irraa gara jalaa wardiitti sarjinaan maxxansa.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_GESTEP\">The result is 1 if <item type=\"literal\">Number</item> is greater than or equal to <item type=\"literal\">Step</item>.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_GESTEP\">Yoo <item type=\"literal\">Lakkoofsa</item>n irra guddaa ykn walqixa <item type=\"literal\">Step</item> ta'e firiin 1 ta'a.</ahelp>"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3150786\n"
-"25\n"
+"04060115.xhp\n"
+"hd_id3150879\n"
+"152\n"
"help.text"
-msgid "Left to right, then down"
-msgstr "Bitaa garaa mirgaatti,itti aansuun garaa gadiitti"
+msgid "Syntax"
+msgstr "Caasima"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3154657\n"
-"26\n"
+"04060115.xhp\n"
+"par_id3145212\n"
+"153\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_TABLE:BTN_LEFTRIGHT\">Prints horizontally from the top row of the sheet to the right column.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_TABLE:BTN_LEFTRIGHT\">Tarree gubbee wardii irraa gara tarjaa mirgaatti sardinaan maxxansa.</ahelp>"
+msgid "GESTEP(Number; Step)"
+msgstr "GESTEP(Lakkoofsa; Ejjatoo)"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3150887\n"
-"27\n"
+"04060115.xhp\n"
+"hd_id3153275\n"
+"154\n"
"help.text"
-msgid "First page number"
-msgstr "Lakkoofsa fuulaa duraa"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3155378\n"
-"28\n"
+"04060115.xhp\n"
+"par_id3156132\n"
+"155\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_PAGENO\">Select this option if you want the first page to start with a number other than 1.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_PAGENO\">Yoo fuulli duraa lakkoofsa 1 irraan adda ta'ee irraa akka eegaluu barbaaddee dirqalaa kana fili.</ahelp>"
+msgid "<item type=\"input\">=GESTEP(5;1)</item> returns 1."
+msgstr "<item type=\"input\">=GESTEP(5;1)</item> 1 kenna."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3145389\n"
-"35\n"
+"04060115.xhp\n"
+"bm_id3147276\n"
"help.text"
-msgid "<ahelp hid=\"SC:NUMERICFIELD:RID_SCPAGE_TABLE:ED_PAGENO\">Enter the number of the first page.</ahelp>"
-msgstr "<ahelp hid=\"SC:NUMERICFIELD:RID_SCPAGE_TABLE:ED_PAGENO\">Lakkoofsa fuula duraa galchi.</ahelp>"
+msgid "<bookmark_value>HEX2BIN function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into binary numbers</bookmark_value>"
+msgstr "<bookmark_value>fankishinii HEX2BINn</bookmark_value><bookmark_value>jijjiiruu;kurnyee lakkoofsota kudha ja'a, gara lakkoofsa lameeti</bookmark_value>"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3146978\n"
-"29\n"
+"04060115.xhp\n"
+"hd_id3147276\n"
+"79\n"
"help.text"
-msgid "Scale"
-msgstr "Safara"
+msgid "HEX2BIN"
+msgstr "HEX2BIN"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3149408\n"
-"30\n"
+"04060115.xhp\n"
+"par_id3150258\n"
+"80\n"
"help.text"
-msgid "Defines a page scale for the printed spreadsheet."
-msgstr "Wardii maxxanfameef safara fuulaa hiika."
+msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2BIN\">The result is the binary number for the hexadecimal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2BIN\">Firiin lakkofsa kurnyee kudha ja'a lakkoofsa lamee kenna.</ahelp>"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN1096D\n"
+"04060115.xhp\n"
+"hd_id3156117\n"
+"81\n"
"help.text"
-msgid "Scaling mode"
-msgstr "Halaata safaruu"
+msgid "Syntax"
+msgstr "Caasima"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN10971\n"
+"04060115.xhp\n"
+"par_id3155847\n"
+"82\n"
"help.text"
-msgid "<ahelp hid=\"sc:ListBox:RID_SCPAGE_TABLE:LB_SCALEMODE\">Select a scaling mode from the list box. Appropriate controls will be shown at the side of the list box.</ahelp>"
-msgstr "<ahelp hid=\"sc:ListBox:RID_SCPAGE_TABLE:LB_SCALEMODE\">Sanduuqa tarree keessaa halaata safartuu fili. Karaa sanduuqa tarree to'annaawwan barbaachisoo ta'aan ni agarsiifamu.</ahelp>"
+msgid "HEX2BIN(Number; Places)"
+msgstr "HEX2BIN(Lakkoofsa; Bakkeewwan)"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3155089\n"
-"31\n"
+"04060115.xhp\n"
+"par_id3152810\n"
+"83\n"
"help.text"
-msgid "Reduce/enlarge printout"
-msgstr "Alaatti maxxansaa hir'isii/guddisi"
+msgid "<emph>Number</emph> is a hexadecimal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgstr "<emph>Lakkoofsa</emph> lakkoofsa heeksaadeesimaalii dha.Gatii olaanaa bakkeewwan qabachuu danda'uu 10 dha.Biitin calqaba xiyyoo irra mallattoo biiti taati,biitiiwwan iti aanuun dhufaan gatii kennu.Lakkoofsootni neegaativii akkaa tuuskompiilimeentitti galfamu."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3159171\n"
-"32\n"
+"04060115.xhp\n"
+"par_id3153758\n"
+"84\n"
"help.text"
-msgid "Specifies a scaling factor to scale all printed pages."
-msgstr "Fulaawwan maxxanfaman safaruuf murtibaa safartuu ifteessa."
+msgid "<emph>Places</emph> is the number of places to be output."
+msgstr "<emph>Bakkootni</emph> lakkoofsa bakkoota baha ta'uuti."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN1099A\n"
+"04060115.xhp\n"
+"hd_id3154052\n"
+"85\n"
"help.text"
-msgid "Scaling factor"
-msgstr "Murtibaa safartuu"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3152899\n"
-"36\n"
+"04060115.xhp\n"
+"par_id3156002\n"
+"86\n"
"help.text"
-msgid "<ahelp hid=\"SC_METRICFIELD_RID_SCPAGE_TABLE_ED_SCALEALL\" visibility=\"hidden\">Enter a scaling factor. Factors less than 100 reduce the pages, higher factors enlarge the pages.</ahelp>"
-msgstr "<ahelp hid=\"SC_METRICFIELD_RID_SCPAGE_TABLE_ED_SCALEALL\" visibility=\"hidden\">Murtibaa safartuu galchi Murtibni 100 gadii fuulotaa xiqqeessa,murtibni baay'een fuula guddisa.</ahelp>"
+msgid "<item type=\"input\">=HEX2BIN(64;8)</item> returns 01100100."
+msgstr "<item type=\"input\">=HEX2BIN(64;8)</item> 01100100 kenna."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109B2\n"
+"04060115.xhp\n"
+"bm_id3154742\n"
"help.text"
-msgid "Fit print range(s) to width/height"
-msgstr "Hangii(wwan) maxxansa gara bal'ina/hojjaatti taasisi"
+msgid "<bookmark_value>HEX2DEC function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into decimal numbers</bookmark_value>"
+msgstr "<bookmark_value>fankishinii HEX2DEC</bookmark_value><bookmark_value>jijjiiruun;lakkoofsota heeksaadeesimaalii, gara lakkoofsota deesimaaliitti</bookmark_value>"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109B5\n"
+"04060115.xhp\n"
+"hd_id3154742\n"
+"87\n"
"help.text"
-msgid "Specifies the maximum number of pages horizontally (width) and vertically (height) on which every sheet with the current Page Style is to be printed."
-msgstr "Sarjinaan(bal'ina) fi sardinaan(hojjaa)lakkoofsa fuula isaa olaantoo kan tokko tokko wardii akkaataaleen fuulaa ammee itti maxxanfamuu ifteessa."
+msgid "HEX2DEC"
+msgstr "HEX2DEC"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109BB\n"
+"04060115.xhp\n"
+"par_id3153626\n"
+"88\n"
"help.text"
-msgid "The print ranges are always scaled proportionally, so the resulting number of pages may be less than specified."
-msgstr "Hangiiwwan maxxansaa yeroo hundaa gita'aan safarama,kanaafuu lakkoofsi fuulootaa argamani kun lakkoofsa iftaa'ee gaditti ta'a."
+msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2DEC\">The result is the decimal number for the hexadecimal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2DEC\">Firiin isaa lakkoofsota heeksaadeesimaalii galfameef lakkoofsa deesiimaalii ta'a..</ahelp>"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109BF\n"
+"04060115.xhp\n"
+"hd_id3143233\n"
+"89\n"
"help.text"
-msgid "You may clear one of the boxes, then the unspecified dimension will use as many pages as necessary."
-msgstr "Sanduuqota keessaa tokkoo haquu dandeessa,itti aansuun addaan fageenyi hin iftoofne fuulota baay'ee akkaa barbaachiseetti fayyadama."
+msgid "Syntax"
+msgstr "Caasima"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109C3\n"
+"04060115.xhp\n"
+"par_id3149293\n"
+"90\n"
"help.text"
-msgid "If you clear both boxes, this will result in a scaling factor of 100%."
-msgstr "Yoo sanduuqoota lamaan haqxee,martibaa safartuun 100% ta'a."
+msgid "HEX2DEC(Number)"
+msgstr "HEX2DEC(Lakkoofsa)"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109CE\n"
+"04060115.xhp\n"
+"par_id3159176\n"
+"91\n"
"help.text"
-msgid "Width in pages"
-msgstr "Bal'inaa fuloota keessatti"
+msgid "<emph>Number</emph> is a hexadecimal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgstr "<emph>Lakkoofsa</emph> lakkoofsa heeksaadeesimaalii dha.Gatii olaanaa bakkeewwan qabachuu danda'uu 10 dha.Biitin calqaba xiyyoo irra mallattoo biiti taati,biitiiwwan iti aanuun dhufaan gatii kennu.Lakkoofsootni neegaativii akkaa tuuskompiilimeentitti galfamu."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109D1\n"
+"04060115.xhp\n"
+"hd_id3154304\n"
+"92\n"
"help.text"
-msgid "<ahelp hid=\"sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEWIDTH\">Enter the maximum number of pages to be printed horizontally across.</ahelp>"
-msgstr "<ahelp hid=\"sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEWIDTH\">Lakkoofsa ol'aantoo fulootaa karaaa sarjinaan maxxansamu galchi.</ahelp>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109E8\n"
+"04060115.xhp\n"
+"par_id3146093\n"
+"93\n"
"help.text"
-msgid "Height in pages"
-msgstr "Hojjaa fuloota keessatti"
+msgid "<item type=\"input\">=HEX2DEC(64)</item> returns 100."
+msgstr "<item type=\"input\">=HEX2DEC(64)</item> 100 kenna."
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109EB\n"
+"04060115.xhp\n"
+"bm_id3149750\n"
"help.text"
-msgid "<ahelp hid=\"sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEHEIGHT\">Enter the maximum number of pages to be printed vertically stacked.</ahelp>"
-msgstr "<ahelp hid=\"sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEHEIGHT\">Lakkoofsa olaantoo fuulootaa karaa sardinaan maxxansamu galchi.</ahelp>"
+msgid "<bookmark_value>HEX2OCT function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into octal numbers</bookmark_value>"
+msgstr "<bookmark_value>fankishinii HEX2OCT</bookmark_value><bookmark_value>jijjiiruun;lakkoofsota heeksaadeesimaalii, gara lakkoofsota ooktaaliitti</bookmark_value>"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3148868\n"
-"33\n"
+"04060115.xhp\n"
+"hd_id3149750\n"
+"94\n"
"help.text"
-msgid "Fit print range(s) on number of pages"
-msgstr "Hangii(wwan) maxxansa lakkoosa fuulootatti taasisi"
+msgid "HEX2OCT"
+msgstr "HEX2OCT"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3145074\n"
-"34\n"
+"04060115.xhp\n"
+"par_id3153983\n"
+"95\n"
"help.text"
-msgid "Specifies the maximum number of pages on which every sheet with the current Page Style is to be printed. The scale will be reduced as necessary to fit the defined number of pages."
-msgstr "Lakkoofsa olaantoo fuuloota tokko tokkoon barruu akkataa fuula ammee itti maxxansamuu ifteessa.Safarri akka barbaachiseetti hir'isamuun lakkoofsa fuulootaa hiikame waliin tasifama."
+msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2OCT\">The result is the octal number for the hexadecimal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2OCT\">Firiin isaa lakkoofsota heeksaadeesimaalii galfameef lakkoofsa ooktaalii ta'a..</ahelp>"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN10A26\n"
+"04060115.xhp\n"
+"hd_id3145660\n"
+"96\n"
"help.text"
-msgid "Number of pages"
-msgstr "Lakkoofsa guyyoota"
+msgid "Syntax"
+msgstr "Caasima"
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3144507\n"
-"37\n"
+"04060115.xhp\n"
+"par_id3151170\n"
+"97\n"
"help.text"
-msgid "<ahelp hid=\"SC:NUMERICFIELD:RID_SCPAGE_TABLE:ED_SCALEPAGENUM\">Enter the maximum number of pages to be printed.</ahelp>"
-msgstr "<ahelp hid=\"SC:NUMERICFIELD:RID_SCPAGE_TABLE:ED_SCALEPAGENUM\">lakkoofsa olaantoo fuulootaa maxxansamuuu galchi.</ahelp>"
+msgid "HEX2OCT(Number; Places)"
+msgstr "HEX2OCT(Lakkoofsa; Bakkeewwan)"
-#: func_weeknumadd.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
+"04060115.xhp\n"
+"par_id3152795\n"
+"98\n"
+"help.text"
+msgid "<emph>Number</emph> is a hexadecimal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgstr "<emph>Lakkoofsa</emph> lakkoofsa heeksaadeesimaalii dha.Gatii olaanaa bakkeewwan qabachuu danda'uu 10 dha.Biitin calqaba xiyyoo irra mallattoo biiti taati,biitiiwwan iti aanuun dhufaan gatii kennu.Lakkoofsootni neegaativii akkaa tuuskompiilimeentitti galfamu."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3149204\n"
+"99\n"
+"help.text"
+msgid "<emph>Places</emph> is the number of places to be output."
+msgstr "<emph>Bakkootni</emph> lakkoofsa bakkoota baha ta'uuti."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3153901\n"
+"100\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3159341\n"
+"101\n"
+"help.text"
+msgid "<item type=\"input\">=HEX2OCT(64;4)</item> returns 0144."
+msgstr "<item type=\"input\">=HEX2OCT(64;4)</item> 0144 kenna."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
"tit\n"
"help.text"
-msgid "WEEKNUM_ADD"
-msgstr "WEEKNUM_ADD"
+msgid "Add-in Functions, List of Analysis Functions Part Two"
+msgstr "Fankishiiniiwwan Idaatu,Kutaa Lammaffaa Tarree Xiinxala Fankishinii"
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"bm_id3166443\n"
+"04060116.xhp\n"
+"bm_id3145074\n"
"help.text"
-msgid "<bookmark_value>WEEKNUM_ADD function</bookmark_value>"
-msgstr "<bookmark_value>faankishiini WEEKNUM-ADD</bookmark_value>"
+msgid "<bookmark_value>imaginary numbers in analysis functions</bookmark_value> <bookmark_value>complex numbers in analysis functions</bookmark_value>"
+msgstr "<bookmark_value>lakkoofsota immaajiineerii fankishinoota xiinxalaa keessaa </bookmark_value> <bookmark_value>lakkoofsota komphileeksii fankishinoota xiinxalaa keessaa</bookmark_value>"
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"hd_id3166443\n"
-"222\n"
+"04060116.xhp\n"
+"hd_id3154659\n"
+"1\n"
"help.text"
-msgid "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.xhp\">WEEKNUM_ADD</link></variable>"
-msgstr "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.xhp\">WEEKNUM_ADD</link></variable>"
+msgid "Add-in Functions, List of Analysis Functions Part Two"
+msgstr "Fankishiiniiwwan Idaatu,Kutaa Lammaffaa Tarree Xiinxala Fankishinii"
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_id3152945\n"
-"223\n"
+"04060116.xhp\n"
+"par_id3151242\n"
+"174\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_WEEKNUM\">The result indicates the number of the calendar week for a date.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_WEEKNUM\">Firii isaa kunis lakkoofsa dhaha torbani guyyaa agarsiisa.</ahelp>"
+msgid "<link href=\"text/scalc/01/04060108.xhp\" name=\"Category Statistics\">Category Statistics</link>"
+msgstr "<link href=\"text/scalc/01/04060108.xhp\" name=\"Category Statistics\">Istaatiksii Akaakuu</link>"
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_idN105DD\n"
+"04060116.xhp\n"
+"par_id3148869\n"
+"5\n"
"help.text"
-msgid "The WEEKNUM_ADD function is designed to calculate week numbers exactly as Microsoft Excel does. Use the <link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link> function, or format your date cells using the WW formatting code, when you need ISO 8601 week numbers."
-msgstr "WEEKNUM_ADD fankiishiniin akkuma Maayikroo Ekseelii lakkoofsa torbanoota sirriin shallaguuf kan qopha'ee dha.fankishinii<link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link> fayyadamii,ykn yommuu ISO 8601 lakkoofsa torbanii barbaaddu,lakkaddaa dhangeessuu WW fayyadamuun aduu man'eewwan kee dhangeessi."
+msgid "<link href=\"text/scalc/01/04060115.xhp\" name=\"Analysis Functions Part One\">Analysis Functions Part One</link>"
+msgstr "<link href=\"text/scalc/01/04060115.xhp\" name=\"Analysis Functions Part One\">Fankishinii Xiinxalaa Kutaa Tokko</link>"
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"hd_id3153745\n"
-"224\n"
+"04060116.xhp\n"
+"par_id3147072\n"
+"240\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Back to the Overview</link>"
+msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Ilaalcha gubbaatti Deebi'ii</link>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3154959\n"
+"help.text"
+msgid "<bookmark_value>IMABS function</bookmark_value>"
+msgstr "<bookmark_value>fankishiniiIMABS</bookmark_value>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3154959\n"
+"44\n"
+"help.text"
+msgid "IMABS"
+msgstr "IMABS"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149895\n"
+"45\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMABS\">The result is the absolute value of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMABS\">Firii isaa gatii sirrii lakkoofsa konphileeksii ta'a.</ahelp>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3155382\n"
+"46\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_id3153685\n"
-"225\n"
+"04060116.xhp\n"
+"par_id3151302\n"
+"47\n"
"help.text"
-msgid "WEEKNUM_ADD(Date; ReturnType)"
-msgstr "WEEKNUM_ADD(Aduu;Akaakuu Deebii)"
+msgid "IMABS(\"ComplexNumber\")"
+msgstr "IMABS(\"lakkoofsa konphileeksii\")"
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_id3159277\n"
-"226\n"
+"04060116.xhp\n"
+"par_id3153974\n"
+"48\n"
"help.text"
-msgid "<emph>Date</emph> is the date within the calendar week."
-msgstr "<emph>Guyyaa</emph> guyyaa kalaandeera torbaani keessaa jiru dha."
+msgid "<variable id=\"complex\"><emph>ComplexNumber</emph> is a complex number that is entered in the form \"x+yi\" or \"x+yj\".</variable>"
+msgstr "<variable id=\"complex\"><emph>lakkoofsa konphileeksii</emph>'n lakkoofsa konphileeksii bifa \"x+yi\" ykn \"x+yj\" kan galfame dha. </variable>"
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_id3154098\n"
-"227\n"
+"04060116.xhp\n"
+"hd_id3149697\n"
+"49\n"
"help.text"
-msgid "<emph>ReturnType</emph> is 1 for week beginning on a Sunday, 2 for week beginning on a Monday."
-msgstr "<emph>Akaakuu Deebii</emph> 1 yoo jalqabni torbaani Dilbata ta'ee,2 yoo jalqabanni torbanii wixaata ta'e."
+msgid "Example"
+msgstr "Fakkeenya"
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"hd_id3152886\n"
-"228\n"
+"04060116.xhp\n"
+"par_id3143222\n"
+"50\n"
+"help.text"
+msgid "<item type=\"input\">=IMABS(\"5+12j\")</item> returns 13."
+msgstr "<item type=\"input\">=IMABS(\"5+12j\")</item>13 kenna."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3145357\n"
+"help.text"
+msgid "<bookmark_value>IMAGINARY function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii IMAGINARY</bookmark_value>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3145357\n"
+"51\n"
+"help.text"
+msgid "IMAGINARY"
+msgstr "IMAGINARY"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3146965\n"
+"52\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\">The result is the imaginary coefficient of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\">Firii isaa koofisheentii immaajiineerii lakkoofsa komphileeksiti.</ahelp>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3153555\n"
+"53\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155522\n"
+"54\n"
+"help.text"
+msgid "IMAGINARY(\"ComplexNumber\")"
+msgstr "IMAGINARY(\"lakkoofsa kompileeksii\")"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3151193\n"
+"56\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_id3149973\n"
-"229\n"
+"04060116.xhp\n"
+"par_id3155592\n"
+"57\n"
"help.text"
-msgid "In which week number does 12.24.2001 fall?"
-msgstr "12.24.2001 torbaan kam kessatti argama?"
+msgid "<item type=\"input\">=IMAGINARY(\"4+3j\")</item> returns 3."
+msgstr "<item type=\"input\">=IMAGINARY(\"4+3j\")</item> 3 kenna."
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_id3149914\n"
-"230\n"
+"04060116.xhp\n"
+"bm_id3146106\n"
"help.text"
-msgid "<item type=\"input\">=WEEKNUM_ADD(24.12.2001;1)</item> returns 52."
-msgstr "<item type=\"input\">=WEEKNUM_ADD(24.12.2001;1)</item> 52 kenna."
+msgid "<bookmark_value>IMPOWER function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii IMPOWER</bookmark_value>"
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"hd_id3146106\n"
+"58\n"
"help.text"
-msgid "MONTH"
-msgstr "MONTH"
+msgid "IMPOWER"
+msgstr "IMPOWER"
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"bm_id3149936\n"
+"04060116.xhp\n"
+"par_id3147245\n"
+"59\n"
"help.text"
-msgid "<bookmark_value>MONTH function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii MONTH</bookmark_value>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMPOWER\">The result is the integer power of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMPOWER\">Firii isaa paawori intiijerii lakkoofsa kompileeksiti.</ahelp>"
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"hd_id3149936\n"
-"76\n"
+"04060116.xhp\n"
+"hd_id3150954\n"
+"60\n"
"help.text"
-msgid "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">MONTH</link></variable>"
-msgstr "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">MONTH</link></variable>"
+msgid "Syntax"
+msgstr "Caasima"
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"par_id3153538\n"
-"77\n"
+"04060116.xhp\n"
+"par_id3147501\n"
+"61\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MONAT\">Returns the month for the given date value.</ahelp> The month is returned as an integer between 1 and 12."
-msgstr "<ahelp hid=\"HID_FUNC_MONAT\">gatii aduu kennametiif ji'a kenna.</ahelp> Jiini intiijerii 1 fi 12 gidduu jiranin kennama."
+msgid "IMPOWER(\"ComplexNumber\"; Number)"
+msgstr "IMPOWER(\"lakkoofsa kompileeksii\"; Lakkoofsa)"
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"hd_id3149517\n"
-"78\n"
+"04060116.xhp\n"
+"par_id3155743\n"
+"63\n"
+"help.text"
+msgid "<emph>Number</emph> is the exponent."
+msgstr "<emph>Lakkoofsi</emph> eeksipooneentii dha."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3149048\n"
+"64\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3151393\n"
+"65\n"
+"help.text"
+msgid "<item type=\"input\">=IMPOWER(\"2+3i\";2)</item> returns -5+12i."
+msgstr "<item type=\"input\">=IMPOWER(\"2+3i\";2)</item> -5+12i kenna."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3148748\n"
+"help.text"
+msgid "<bookmark_value>IMARGUMENT function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii IMARGUMENT</bookmark_value>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3148748\n"
+"66\n"
+"help.text"
+msgid "IMARGUMENT"
+msgstr "IMARGUMENT"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3151341\n"
+"67\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMARGUMENT\">The result is the argument (the phi angle) of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMARGUMENT\">Firii isaa qajeelfama(kofa paayii) lakkoofsa konphileeksiti.</ahelp>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3150533\n"
+"68\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"par_id3145602\n"
+"04060116.xhp\n"
+"par_id3156402\n"
+"69\n"
+"help.text"
+msgid "IMARGUMENT(\"ComplexNumber\")"
+msgstr "IMREAL(\"lakkoofsa kompileeksi\")"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3153019\n"
+"71\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3159125\n"
+"72\n"
+"help.text"
+msgid "<item type=\"input\">=IMARGUMENT(\"3+4j\")</item> returns 0.927295."
+msgstr "<item type=\"input\">=IMARGUMENT(\"3+4j\")</item> 0.927295 kenna."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3149146\n"
+"help.text"
+msgid "<bookmark_value>IMCOS function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii IMCOS</bookmark_value>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3149146\n"
+"73\n"
+"help.text"
+msgid "IMCOS"
+msgstr "IMCOS"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149725\n"
+"74\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMCOS\">The result is the cosine of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMCOS\">Firii isaa koosaayinii lakkoofsa konphileeksiti.</ahelp>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3159116\n"
+"75\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3147415\n"
+"76\n"
+"help.text"
+msgid "IMCOS(\"ComplexNumber\")"
+msgstr "IMABS(\"lakkoofsa konmileeksii\")"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3152980\n"
+"78\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3157901\n"
"79\n"
"help.text"
-msgid "MONTH(Number)"
-msgstr "MONTH(Lakkoofsa)"
+msgid "<item type=\"input\">=IMCOS(\"3+4j\") </item>returns -27.03-3.85i (rounded)."
+msgstr "<item type=\"input\">=IMCOS(\"3+4j\") </item> -27.03-3.85i (siksamuun) kenna."
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"par_id3149485\n"
+"04060116.xhp\n"
+"bm_id3150024\n"
+"help.text"
+msgid "<bookmark_value>IMDIV function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii IMDIV</bookmark_value>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3150024\n"
"80\n"
"help.text"
-msgid "<emph>Number</emph>, as a time value, is a decimal for which the month is to be returned."
-msgstr "<emph>Lakkoofsa</emph>, akka gati yerootti, kurnyee dha,kan jiini ittin kennamu."
+msgid "IMDIV"
+msgstr "IMDIV"
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"hd_id3153322\n"
+"04060116.xhp\n"
+"par_id3145825\n"
"81\n"
"help.text"
-msgid "Examples"
-msgstr "Fakkeenyawwan"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMDIV\">The result is the division of two complex numbers.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMDIV\">Firii isaa hiramaa lakkoofsa konphileeksii lamaati.</ahelp>"
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"par_id3149244\n"
+"04060116.xhp\n"
+"hd_id3150465\n"
+"82\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3146942\n"
"83\n"
"help.text"
-msgid "=MONTH(NOW()) returns the current month."
-msgstr "DAY(NOW()) ji'a ammaa kenna."
+msgid "IMDIV(\"Numerator\"; \"Denominator\")"
+msgstr "IMDIV(\"Gubbayyee\"; \"jaloo\")"
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"par_id3154790\n"
+"04060116.xhp\n"
+"par_id3150741\n"
"84\n"
"help.text"
-msgid "=MONTH(C4) returns 7 if you enter 2000-07-07 to cell C4 (that date value might get formatted differently after you press Enter)."
-msgstr "=MONTH(C4) yoo man'ee C4tti 2000-07-07 galchite 7 kenna(ergaa Enter dhibde booda haala addaan dhangaa'u danda'a)"
+msgid "<emph>Numerator</emph>, <emph>Denominator</emph> are complex numbers that are entered in the form \"x+yi\" or \"x+yj\"."
+msgstr "<emph>Gubbayyee</emph>'n, <emph>jaloo</emph>'n lakkoofsoota kampileeksii bifaa \"x+yi\" ykn \"x+yj\" galfamani dha."
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"hd_id3151229\n"
+"85\n"
"help.text"
-msgid "Solver"
-msgstr "Furaa"
+msgid "Example"
+msgstr "Fakkeenya"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"bm_id7654652\n"
+"04060116.xhp\n"
+"par_id3148440\n"
+"86\n"
"help.text"
-msgid "<bookmark_value>goal seeking;solver</bookmark_value><bookmark_value>what if operations;solver</bookmark_value><bookmark_value>back-solving</bookmark_value><bookmark_value>solver</bookmark_value>"
-msgstr "<bookmark_value>barbaachisaa galchii;furaa</bookmark_value><bookmark_value>maal yoo dalagoota;furaa</bookmark_value><bookmark_value>duuba-furuu</bookmark_value><bookmark_value>furaa</bookmark_value>"
+msgid "<item type=\"input\">=IMDIV(\"-238+240i\";\"10+24i\")</item> returns 5+12i."
+msgstr "<item type=\"input\">=IMDIV(\"-238+240i\";\"10+24i\")</item> 5+12i kenna."
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"hd_id9216284\n"
+"04060116.xhp\n"
+"bm_id3153039\n"
"help.text"
-msgid "<variable id=\"solver\"><link href=\"text/scalc/01/solver.xhp\">Solver</link></variable>"
-msgstr "<variable id=\"solver\"><link href=\"text/scalc/01/solver.xhp\">Furaa</link></variable>"
+msgid "<bookmark_value>IMEXP function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii IMEXP</bookmark_value>"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id9210486\n"
+"04060116.xhp\n"
+"hd_id3153039\n"
+"87\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the Solver dialog. A solver allows to solve equations with multiple unknown variables by goal seeking methods.</ahelp>"
-msgstr "<ahelp hid=\".\">Qaaqa fura bana.Seerota ga'uumsaa barbaada fayyadamuun qixxaatoota jijjiiraamoota danuu qabu akka furtuuf furaan si eeyyama.</ahelp>"
+msgid "IMEXP"
+msgstr "IMEXP"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id8538773\n"
+"04060116.xhp\n"
+"par_id3144741\n"
+"88\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\"> galtii man'eef wabii man'ee galcha ykn cuqaasa.Dirreen kunis teessoo gatii man'ee guutoola'ee qabata</ahelp>."
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMEXP\">The result is the power of e and the complex number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMEXP\">Firiin e paawoorii fi lakkoofsa kompileeksi dha.</ahelp> Tilmaamaan gatiin dhaabbataa e 2.71828182845904."
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id7564012\n"
+"04060116.xhp\n"
+"hd_id3145591\n"
+"89\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation for a maximum value of the target cell.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gatii ol'aantoo galtii man'ee Qixxaatoota furuuf yaala.</ahelp>"
+msgid "Syntax"
+msgstr "Caasima"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id1186254\n"
+"04060116.xhp\n"
+"par_id3154810\n"
+"90\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation for a minimum value of the target cell.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gatii gad'aantoo galtii man'ee Qixxaatoota furuuf yaala.</ahelp>"
+msgid "IMEXP(\"ComplexNumber\")"
+msgstr "IMSIN(\"lakkoofsa kompileeksii\")"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id7432477\n"
+"04060116.xhp\n"
+"hd_id3148581\n"
+"92\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation to approach a given value of the target cell.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gatii ol'aantoo kenname galtii man'ee Qixxaatoota adeemsa ittiin furaamu yaala.</ahelp>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id7141026\n"
+"04060116.xhp\n"
+"par_id3149253\n"
+"93\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value or a cell reference.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gatii ykn wabii man'ee galchi.</ahelp>"
+msgid "<item type=\"input\">=IMEXP(\"1+j\") </item>returns 1.47+2.29j (rounded)."
+msgstr "<item type=\"input\">=IMEXP(\"1+j\") </item>1.47+2.29j (siksamuun)kenna."
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id8531449\n"
+"04060116.xhp\n"
+"bm_id3149955\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the cell range that can be changed.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hangii man'ee jijjiiramuu danda'u galchi.</ahelp>"
+msgid "<bookmark_value>IMCONJUGATE function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii IMCONJUGATE</bookmark_value>"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id9183935\n"
+"04060116.xhp\n"
+"hd_id3149955\n"
+"94\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a cell reference.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wabii man'ee galchi.</ahelp>"
+msgid "IMCONJUGATE"
+msgstr "IMCONJUGATE"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id946684\n"
+"04060116.xhp\n"
+"par_id3155263\n"
+"95\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select an operator from the list.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ogeejjii tarree keessaa fili.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMCONJUGATE\">The result is the conjugated complex complement to a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMCONJUGATE\">Firiin isaa fallaa kompileeksii konjuugeetii lakkoofsa konphileeksi ta'a.</ahelp>"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id9607226\n"
+"04060116.xhp\n"
+"hd_id3148750\n"
+"96\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a value or a cell reference.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gatii ykn wabii man'ee galchi.</ahelp>"
+msgid "Syntax"
+msgstr "Caasima"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id1939451\n"
+"04060116.xhp\n"
+"par_id3153082\n"
+"97\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to shrink or restore the dialog. You can click or select cells in the sheet. You can enter a cell reference manually in the input box.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Bakkabuusuuf ykn huuqisuuf qaaqa cuqaasi.Man'ee barruu keessa cuqaasuu ykn filuu dandessa.Hujeeqadhaan wabii man'ee sanduuqa naqaatti galchuu dandeessa.</ahelp>"
+msgid "IMCONJUGATE(\"ComplexNumber\")"
+msgstr "IMCONJUGATE(\"Lakkoofsa komphileeksii\")"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id9038972\n"
+"04060116.xhp\n"
+"hd_id3153326\n"
+"99\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to remove the row from the list. Any rows from below this row move up.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tarree tarree keessaa haquuf cuqaasi.tarreen geejjella tarree kanatti argamu ol dhufa.</ahelp>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id2423780\n"
+"04060116.xhp\n"
+"par_id3149688\n"
+"100\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Options dialog.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Qaaqa filaannoowwani bana.</ahelp>"
+msgid "<item type=\"input\">=IMCONJUGATE(\"1+j\")</item> returns 1-j."
+msgstr "<item type=\"input\">=IMCONJUGATE(\"1+j\")</item> 1-j kenna."
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id2569658\n"
+"04060116.xhp\n"
+"bm_id3150898\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to solve the equation with the current settings. The dialog settings are retained until you close the current document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Qindeessiitoota amma fayyadamun qixxaatoo furuuf cuqaasi.galmeewwaan amma hanga cuuftutti qaaqa qindeessitoota tursi.</ahelp>"
+msgid "<bookmark_value>IMLN function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii IMLN</bookmark_value>"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id5474410\n"
+"04060116.xhp\n"
+"hd_id3150898\n"
+"101\n"
"help.text"
-msgid "To solve equations with the solver"
-msgstr "Furaadhan qixxaatoota furuuf"
+msgid "IMLN"
+msgstr "IMLN"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id2216559\n"
+"04060116.xhp\n"
+"par_id3146853\n"
+"102\n"
"help.text"
-msgid "The goal of the solver process is to find those variable values of an equation that result in an optimized value in the <emph>target cell</emph>, also named the \"objective\". You can choose whether the value in the target cell should be a maximum, a minimum, or approaching a given value."
-msgstr "Kayyoon adeemsa furaas gatii jijjiramoota kan qixxaatton gati ol'aantoo <emph>galtii man'ee</emph> akkasuma kan\"kayyoo\" jedhamu barbaaduuf oola. Gatiin galtii man'ee ol'aantoo,gad'aantoo ykn gatii kennameeti kan dhiyaatu keessaa filachuu dandessa."
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMLN\">The result is the natural logarithm (to the base e) of a complex number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLN\">Firiin loogariizimii uumamaa(beezii e'n)lakkoofsa kompileeksiiti.</ahelp> Tilmaamaan gatiin dhaabbataa e 2.71828182845904 ta'a."
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id7869502\n"
+"04060116.xhp\n"
+"hd_id3150008\n"
+"103\n"
"help.text"
-msgid "The initial variable values are inserted in a rectangular cell range that you enter in the <emph>By changing cells</emph> box."
-msgstr "Gatiin jijjiirama jalqaba hangii man'ee reektaangulaawaa kan sanduuqni<emph>Man'eewwwan jijjiirii</emph>keessatti saagama."
+msgid "Syntax"
+msgstr "Caasima"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id9852900\n"
+"04060116.xhp\n"
+"par_id3155954\n"
+"104\n"
"help.text"
-msgid "You can define a series of limiting conditions that set constraints for some cells. For example, you can set the constraint that one of the variables or cells must not be bigger than another variable, or not bigger than a given value. You can also define the constraint that one or more variables must be integers (values without decimals), or binary values (where only 0 and 1 are allowed)."
-msgstr "Man'eewwaan murtaa'oof ittisamoota qindeessuuf walfaannee haloota murteessoo ta'an hikuu dandeessa.Fakkeenyaaf,jijjiramoota ykn man'eewwwaan man'eewwaan biraa kan hin caalle ykn gatii kennamee irra kan hin caalle ittisamootasa qindeessu dandessa. Akkasummas ittisaamoota jijjiramaan isaa tokko ykn isa oli dirqiin intiijera ta'ee(gatiin kan kurnyee hin taane),ykn gatiiwwaan lamee(kan 0 fi 2 qoofti eeyyamamedha)."
+msgid "IMLN(\"ComplexNumber\")"
+msgstr "IMLN(\"lakkoofsa kompileeksii\")"
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id5323953\n"
+"04060116.xhp\n"
+"hd_id3153565\n"
+"106\n"
"help.text"
-msgid "The default solver engine supports only linear equations."
-msgstr "Malli furaa durti qixxaatoo sorooroo qofa deegara."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"par_id3153736\n"
+"107\n"
"help.text"
-msgid "Define Database Range"
-msgstr "Hangii Kuusaa deetaa hiiki"
+msgid "<item type=\"input\">=IMLN(\"1+j\")</item> returns 0.35+0.79j (rounded)."
+msgstr "<item type=\"input\">=IMLN(\"1+j\")</item> 0.35+0.79j (siksamuun) kenna."
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"hd_id3157909\n"
-"1\n"
+"04060116.xhp\n"
+"bm_id3155929\n"
"help.text"
-msgid "Define Database Range"
-msgstr "Hangii Kuusaa Deetaa Hiiki"
+msgid "<bookmark_value>IMLOG10 function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii IMLOG10</bookmark_value>"
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"par_id3155922\n"
-"2\n"
+"04060116.xhp\n"
+"hd_id3155929\n"
+"108\n"
"help.text"
-msgid "<variable id=\"bereichtext\"><ahelp hid=\".uno:DefineDBName\">Defines a database range based on the selected cells in your sheet.</ahelp></variable>"
-msgstr "<variable id=\"bereichtext\"><ahelp hid=\".uno:DefineDBName\">Man'eewwan wardii keessatti filattee irratti hundaa'un hangii kuusaa deetaa hiika.</ahelp></variable>"
+msgid "IMLOG10"
+msgstr "IMLOG10"
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"par_id3149456\n"
-"5\n"
+"04060116.xhp\n"
+"par_id3149882\n"
+"109\n"
"help.text"
-msgid "You can only select a rectangular cell range."
-msgstr "Hangii man'ee reektaangulaawaa qofa filachuu dandeessa."
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMLOG10\">The result is the common logarithm (to the base 10) of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLOG10\">Firiin isaa loogariizimii beekamaa(beezii 10'n) lakkoofsa koompileeksitier.</ahelp>"
-#: 12010000.xhp
-#, fuzzy
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"hd_id3156422\n"
-"3\n"
+"04060116.xhp\n"
+"hd_id3154327\n"
+"110\n"
"help.text"
-msgid "Name"
-msgstr "Maqaa"
+msgid "Syntax"
+msgstr "Caasima"
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"par_id3150770\n"
-"4\n"
+"04060116.xhp\n"
+"par_id3150128\n"
+"111\n"
"help.text"
-msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DBNAMES:ED_NAME\">Enter a name for the database range that you want to define, or select an existing name from the list.</ahelp>"
-msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DBNAMES:ED_NAME\">Hangii kuusaa deetaa hiikuu barbaadduuf maqaa galchi, ykn maqaa duraan tarree keessa jiru fili.</ahelp>"
+msgid "IMLOG10(\"ComplexNumber\")"
+msgstr "IMLOG10(\"Lakkoofsa komphileeksii\")"
-#: 12010000.xhp
-#, fuzzy
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"hd_id3147228\n"
-"6\n"
+"04060116.xhp\n"
+"hd_id3149003\n"
+"113\n"
"help.text"
-msgid "Range"
-msgstr "Hangii"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"par_id3150441\n"
-"7\n"
+"04060116.xhp\n"
+"par_id3151021\n"
+"114\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_DBNAMES:ED_DBAREA\">Displays the selected cell range.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_DBNAMES:ED_DBAREA\">Hangii man'ee filamee agarsiisi.</ahelp>"
+msgid "<item type=\"input\">=IMLOG10(\"1+j\")</item> returns 0.15+0.34j (rounded)."
+msgstr "<item type=\"input\">=IMLOG10(\"1+j\")</item> 0.15+0.34j (siksamuun) kenna."
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"hd_id3153188\n"
-"10\n"
+"04060116.xhp\n"
+"bm_id3155623\n"
"help.text"
-msgid "Add/Modify"
-msgstr "Ida'ii/Fooyyessi"
+msgid "<bookmark_value>IMLOG2 function</bookmark_value>"
+msgstr "<bookmark_value>faankishiniiIMLOG2</bookmark_value>"
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"par_id3153726\n"
-"11\n"
+"04060116.xhp\n"
+"hd_id3155623\n"
+"115\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_DBNAMES:BTN_ADD\">Adds the selected cell range to the database range list, or modifies an existing database range.</ahelp>"
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_DBNAMES:BTN_ADD\">Tarree hangii kuusaa deetaatti hangii man'ee filamee dabala.</ahelp>"
+msgid "IMLOG2"
+msgstr "IMLOG2"
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"hd_id3150010\n"
-"12\n"
+"04060116.xhp\n"
+"par_id3150932\n"
+"116\n"
"help.text"
-msgid "More >>"
-msgstr "Dabala<<"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMLOG2\">The result is the binary logarithm of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLOG2\">Firiin loogariizimii lamee lakkoofsa konphileeksiti.</ahelp>"
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"par_id3153144\n"
-"13\n"
+"04060116.xhp\n"
+"hd_id3153046\n"
+"117\n"
"help.text"
-msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_DBNAMES:BTN_MORE\">Shows additional <link href=\"text/scalc/01/12010100.xhp\" name=\"options\">options</link>.</ahelp>"
-msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_DBNAMES:BTN_MORE\"><link href=\"text/scalc/01/12010100.xhp\" name=\"options\">Dirqalaalee</link>dabalataa agarsiisa.</ahelp>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"par_id3145355\n"
+"118\n"
"help.text"
-msgid "1st, 2nd, 3rd Group"
-msgstr "Garee 1ffaa, 2ffaa, 3ffaa"
+msgid "IMLOG2(\"ComplexNumber\")"
+msgstr "IMLOG2(\"Lakkoofsa komphileeksii\")"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"hd_id3149784\n"
-"1\n"
+"04060116.xhp\n"
+"hd_id3148768\n"
+"120\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12050100.xhp\" name=\"1st, 2nd, 3rd Group\">1st, 2nd, 3rd Group</link>"
-msgstr "<link href=\"text/scalc/01/12050100.xhp\" name=\"1st, 2nd, 3rd Group\">Garee 1ffaa, 2ffaa, 3ffaa</link>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3145068\n"
-"2\n"
+"04060116.xhp\n"
+"par_id3149536\n"
+"121\n"
"help.text"
-msgid "<ahelp hid=\"HID_SCPAGE_SUBT_GROUP1\">Specify the settings for up to three subtotal groups. Each tab has the same layout.</ahelp>"
-msgstr "<ahelp hid=\"HID_SCPAGE_SUBT_GROUP1\">Qindaa'inoota gareewwan Hundamtaa Xiqqaa hamma sadiitti ifteessi.Caancalli hundinuu teessuma walfakkaataa qabu.</ahelp>"
+msgid "<item type=\"input\">=IMLOG2(\"1+j\")</item> returns 0.50+1.13j (rounded)."
+msgstr "<item type=\"input\">=IMLOG2(\"1+j\")</item> 0.50+1.13j (siksamuun) kenna."
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3148797\n"
-"3\n"
+"04060116.xhp\n"
+"bm_id3145626\n"
"help.text"
-msgid "To insert subtotal values into a table:"
-msgstr "gatiiwwan hundamtaa xiqqaa gara gabateetti saaguuf"
+msgid "<bookmark_value>IMPRODUCT function</bookmark_value>"
+msgstr "<bookmark_value>fankishiinii IMPRODUCT</bookmark_value>"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3154908\n"
-"13\n"
+"04060116.xhp\n"
+"hd_id3145626\n"
+"122\n"
"help.text"
-msgid "Ensure that the columns of the table have labels."
-msgstr "Tarjaawwan gabatee akka moggafaman mirkaneessi."
+msgid "IMPRODUCT"
+msgstr "IMPRODUCT"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3153968\n"
-"4\n"
+"04060116.xhp\n"
+"par_id3153545\n"
+"123\n"
"help.text"
-msgid "Select the table or the area in the table that you want to calculate subtotals for, and then choose <emph>Data – Subtotals</emph>."
-msgstr "Gabatee ykn iddoo gabatee keessaa hundamtaa xiqqaa shallaguu barbaaddu fili,sana booda <emph>Deetaa - Hundamta xiqqaa</emph> fili."
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMPRODUCT\">The result is the product of up to 29 complex numbers.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMPRODUCT\">Firii isaa loogariizimii lamee lakkoofsa konphileeksiti.</ahelp>"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3161831\n"
-"5\n"
+"04060116.xhp\n"
+"hd_id3149388\n"
+"124\n"
"help.text"
-msgid "In the <emph>Group By</emph> box, select the column that you want to add the subtotals to."
-msgstr "Sanduuqa<emph>Gurmeessi Kanan</emph> keessaa, tarjaa hundamtaa xiqqaa itti ida'uu barbaaddu fili."
+msgid "Syntax"
+msgstr "Caasima"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3153188\n"
-"6\n"
+"04060116.xhp\n"
+"par_id3149027\n"
+"125\n"
"help.text"
-msgid "In the <emph>Calculate subtotals for</emph> box, select the check boxes for the columns containing the values that you want to subtotal."
-msgstr "Sanduuqa <emph>Hundamtaa xiqqaa shallagiif</emph> keessaa,tarjaawwan gatiiwwan hundamtaa xiqqaa barbaaddufi of keessaa qabuf sanduuqawwan filannoo fili."
+msgid "IMPRODUCT(\"ComplexNumber\"; \"ComplexNumber1\"; ...)"
+msgstr "IMPRODUCT(\"lakkoofsa konphileeksii\"; \"lakkoofsa konphileeksii1\"; ...)"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3152460\n"
-"14\n"
+"04060116.xhp\n"
+"hd_id3153228\n"
+"127\n"
"help.text"
-msgid "In the <emph>Use function</emph> box, select the function that you want to use to calculate the subtotals."
-msgstr "Sanduuqa <emph>Fankishinii fayyadami</emph> keessaa, fankishinii hundamtaa xiqqaa ittin shallaguu barbaaddee fili."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3154321\n"
-"15\n"
+"04060116.xhp\n"
+"par_id3155815\n"
+"128\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "<emph>OK</emph> Cuqaasi."
+msgid "<item type=\"input\">=IMPRODUCT(\"3+4j\";\"5-3j\")</item> returns 27+11j."
+msgstr "<item type=\"input\">=IMPRODUCT(\"3+4j\";\"5-3j\")</item> 27+11j kenna."
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"hd_id3156441\n"
-"7\n"
+"04060116.xhp\n"
+"bm_id3147539\n"
"help.text"
-msgid "Group by"
-msgstr "Gurmeessi kanaan"
+msgid "<bookmark_value>IMREAL function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii IMREAL</bookmark_value>"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3154013\n"
-"8\n"
+"04060116.xhp\n"
+"hd_id3147539\n"
+"129\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SUBT_GROUP\">Select the column that you want to control the subtotal calculation process. If the contents of the selected column change, the subtotals are automatically recalculated.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SUBT_GROUP\">Tarjaa adeemsa shallaggii hundamtaa xiqqaa to'achuu barbadduu fili.Yoo qabiyyeen tarjaa filatamee jijjiramee,hundamtaa xiqqaan ofumaan lamherreegamu.</ahelp>"
+msgid "IMREAL"
+msgstr "IMREAL"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"hd_id3154943\n"
-"9\n"
+"04060116.xhp\n"
+"par_id3155372\n"
+"130\n"
"help.text"
-msgid "Calculate subtotals for"
-msgstr "Hundamtaa xiqqaa shallagi kanaaf"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMREAL\">The result is the real coefficient of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMREAL\">Firii isaa koofisheenti riyaalii lakkoofsa konphileeksiti.</ahelp>"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3147125\n"
-"10\n"
+"04060116.xhp\n"
+"hd_id3154951\n"
+"131\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SUBT_COLS\">Select the column(s) containing the values that you want to subtotal.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SUBT_COLS\">Tarjaa(wwan) hundamtaa xiqqaa barbaddu qabu fili.</ahelp>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"hd_id3156283\n"
-"11\n"
+"04060116.xhp\n"
+"par_id3153927\n"
+"132\n"
"help.text"
-msgid "Use function"
-msgstr "Fankishinii fayyadami"
+msgid "IMREAL(\"ComplexNumber\")"
+msgstr "IMREAL(\"lakkoofsa konphileeksi\")"
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3145647\n"
-"12\n"
+"04060116.xhp\n"
+"hd_id3155409\n"
+"134\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SUBT_FUNC\">Select the mathematical function that you want to use to calculate the subtotals.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_SUBT_FUNC\">Fankishinii herreegaa hundamtaa xiqqaa ittiin shallaguu barbaaddu fili.</ahelp>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"par_id3155986\n"
+"135\n"
"help.text"
-msgid "Create Scenario"
-msgstr "Mul'inoota Uumi"
+msgid "<item type=\"input\">=IMREAL(\"1+3j\")</item> returns 1."
+msgstr "<item type=\"input\">=IMREAL(\"1+3j\")</item> 1 kenna."
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3156023\n"
-"1\n"
+"04060116.xhp\n"
+"bm_id3148431\n"
"help.text"
-msgid "Create Scenario"
-msgstr "Mul'inota Uumi"
+msgid "<bookmark_value>IMSIN function</bookmark_value>"
+msgstr "<bookmark_value>fankishiniiIMSIN</bookmark_value>"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3150541\n"
-"2\n"
+"04060116.xhp\n"
+"hd_id3148431\n"
+"136\n"
"help.text"
-msgid "<variable id=\"szenariotext\"><ahelp hid=\".uno:ScenarioManager\">Defines a scenario for the selected sheet area.</ahelp></variable>"
-msgstr "<variable id=\"szenariotext\"><ahelp hid=\".uno:ScenarioManager\">Bakka wardii filatamaniif mul'inota hiika.</ahelp></variable>"
+msgid "IMSIN"
+msgstr "IMSIN"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_idN10637\n"
+"04060116.xhp\n"
+"par_id3152591\n"
+"137\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/guide/scenario.xhp#scenario\"/>"
-msgstr "<embedvar href=\"text/scalc/guide/scenario.xhp#scenario\"/>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMSIN\">The result is the sine of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSIN\">Firii isaa saayinii lakkoofsa konphileeksiti.</ahelp>"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3156280\n"
-"3\n"
+"04060116.xhp\n"
+"hd_id3149822\n"
+"138\n"
"help.text"
-msgid "Name of scenario"
-msgstr "Maqaa mul'inoota"
+msgid "Syntax"
+msgstr "Caasima"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3151041\n"
-"13\n"
+"04060116.xhp\n"
+"par_id3150387\n"
+"139\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SCENWIN_TOP\">Defines the name for the scenario. Use a clear and unique name so you can easily identify the scenario.</ahelp> You can also modify a scenario name in the Navigator through the <emph>Properties </emph>context menu command."
-msgstr "<ahelp hid=\"HID_SC_SCENWIN_TOP\">Mul'inootaaf maqaa hiiki.Mul'inoota haala salphaan adda basuu akka dandeessuuf haqii ykn maqaa addaa fayyadami.</ahelp> Akkasumaas maqaa mul'inoota Karaa ajaja baafata hanqara <emph>Amaloota</emph> naannessa jedhuun foyyeessuu dandeessa."
+msgid "IMSIN(\"ComplexNumber\")"
+msgstr "IMSIN(\"lakkoofsa konphileeksii\")"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3153954\n"
-"14\n"
+"04060116.xhp\n"
+"hd_id3150613\n"
+"141\n"
"help.text"
-msgid "Comment"
-msgstr "Yaada"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3155411\n"
-"15\n"
+"04060116.xhp\n"
+"par_id3154310\n"
+"142\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SCENWIN_BOTTOM\">Specifies additional information about the scenario. This information will be displayed in the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> when you click the <emph>Scenarios</emph> icon and select the desired scenario.</ahelp> You can also modify this information in the Navigator through the <emph>Properties </emph>context menu command."
-msgstr "<ahelp hid=\"HID_SC_SCENWIN_BOTTOM\">Odeeffanno dabbalataa mul'inootaa ifteessa. Odeeffannoon kunis <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Naanna'aa</link> keessatti kan agarsiifamu yommuu sajoo <emph>Mul'inoota</emph> cuuqastuu fi mul'inoota barbaaddu filtudha. </ahelp> Akkasumaas odeeffannoo kana karaa ajaja baafata hanqara <emph>Amaloota </emph> nanneessa keessatti foyyeessu dandeessa."
+msgid "<item type=\"input\">=IMSIN(\"3+4j\")</item> returns 3.85+27.02j (rounded)."
+msgstr "<item type=\"input\">=IMSIN(\"3+4j\")</item> 3.85+27.02j (siksamuun) kenna."
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3145273\n"
-"16\n"
+"04060116.xhp\n"
+"bm_id3163826\n"
"help.text"
-msgid "Settings"
-msgstr "Qidaa'inoota"
+msgid "<bookmark_value>IMSUB function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii IMSUB</bookmark_value>"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3153364\n"
-"17\n"
+"04060116.xhp\n"
+"hd_id3163826\n"
+"143\n"
"help.text"
-msgid "This section is used to define some of the settings used in the scenario display."
-msgstr "Kutaan kun gariin qindaa'inoota mul'inoota agarsiisuuf oolan hiikuuf fayyada."
+msgid "IMSUB"
+msgstr "IMSUB"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3145367\n"
-"18\n"
+"04060116.xhp\n"
+"par_id3149277\n"
+"144\n"
"help.text"
-msgid "Display border"
-msgstr "Handaara agarsiisaa"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMSUB\">The result is the subtraction of two complex numbers.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSUB\">Firii isaa hir'attoo lakkoofsa konphileeksiti.</ahelp>"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3151073\n"
-"19\n"
+"04060116.xhp\n"
+"hd_id3149264\n"
+"145\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NEWSCENARIO:LB_COLOR\">Highlights the scenario in your table with a border. The color for the border is specified in the field to the right of this option.</ahelp> The border will have a title bar displaying the name of the last scenario. The button on the right of the scenario border offers you an overview of all the scenarios in this area, if several have been defined. You can choose any of the scenarios from this list without restrictions."
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NEWSCENARIO:LB_COLOR\">mil'inoota gabatee kee keessa dangaa waliin jiruu gadii ilaala. haluun dangaa dirreewwan dirqala gara mirgaatti jiran irraatti iftaayee.</ahelp> Handaarri cancala mataduree maqaa mul'inaa dhumaa agarsiisu of keessaa qaba.Yoo baay'een isaa hiikame,qabdoon gara mirgaa handaara mil'inaatti argamu mul'inoota nannoo kanatti argaman akkaa iirra gadii ilaaltuu sii heyyama.Tarree keessa mul'inoota barbaaddee ittisa malee filachuu dandeessa."
+msgid "Syntax"
+msgstr "Caasima"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3149582\n"
-"20\n"
+"04060116.xhp\n"
+"par_id3149710\n"
+"146\n"
"help.text"
-msgid "Copy back"
-msgstr "Duubatti garagalcha"
+msgid "IMSUB(\"ComplexNumber1\"; \"ComplexNumber2\")"
+msgstr "IMSUB(\"lakkoofsa konphileeksii1\"; \"lakkoofsa konphileeksii2\")"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3154942\n"
-"21\n"
+"04060116.xhp\n"
+"hd_id3155833\n"
+"148\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_TWOWAY\">Copies the values of cells that you change into the active scenario. If you do not select this option, the scenario is not changed when you change cell values. The behavior of the <emph>Copy back</emph> setting depends on the cell protection, the sheet protection, and the <emph>Prevent changes</emph> settings.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_TWOWAY\">Gatiiwwan man'eewwanii mul'inoota ka'aatti jijjirtee garagalcha.Yoo dirqaalaa kana filachuu dhiiste,yommuu gatiiwwan man'ee jijjiramu mul'inni hin jijjiramu.Amalli qindaa'inaa <emph>Duubatti Garagalcha</emph> ittisa man'ee, ittisa wardii, fi qindaa'inoota <emph>Jijjiramoota dhorki</emph> irratti hundaa'a.</ahelp>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3149402\n"
-"22\n"
+"04060116.xhp\n"
+"par_id3150963\n"
+"149\n"
"help.text"
-msgid "Copy entire sheet"
-msgstr "Wardii waamaraa garagalchi"
+msgid "<item type=\"input\">=IMSUB(\"13+4j\";\"5+3j\")</item> returns 8+j."
+msgstr "<item type=\"input\">=IMSUB(\"13+4j\";\"5+3j\")</item> 8+j kenna."
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3146969\n"
-"23\n"
+"04060116.xhp\n"
+"bm_id3156312\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_COPYALL\">Copies the entire sheet into an additional scenario sheet. </ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_COPYALL\">Wardii mul'inaa dabalataatti wardii waamaraa garagalcha. </ahelp>"
+msgid "<bookmark_value>IMSUM function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii IMSUM</bookmark_value>"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_idN1075A\n"
+"04060116.xhp\n"
+"hd_id3156312\n"
+"150\n"
"help.text"
-msgid "Prevent changes"
-msgstr "Jijjiramoota dhorki"
+msgid "IMSUM"
+msgstr "IMSUM"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_idN1075E\n"
+"04060116.xhp\n"
+"par_id3153215\n"
+"151\n"
"help.text"
-msgid "<ahelp hid=\"sc:CheckBox:RID_SCDLG_NEWSCENARIO:CB_PROTECT\">Prevents changes to the active scenario. The behavior of the <emph>Copy back</emph> setting depends on the cell protection, the sheet protection, and the <emph>Prevent changes</emph> settings.</ahelp>"
-msgstr "<ahelp hid=\"sc:CheckBox:RID_SCDLG_NEWSCENARIO:CB_PROTECT\">Jijjirama mul'inaa ka'aa dhorka.Amalli qindaa'ina <emph>Duubatti garagalchaa</emph> ittisa man'ee, ittisa wardii, fi qindaa'inoota <emph>Jijjiramoota dhorki</emph> irratti hundaa'a.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMSUM\">The result is the sum of up to 29 complex numbers.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSUM\">Firii isaa ida'ama hanga 29 lakkoofsa konphileeksiti.</ahelp>"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_idN10778\n"
+"04060116.xhp\n"
+"hd_id3156095\n"
+"152\n"
"help.text"
-msgid "You can only change the scenario properties if the <emph>Prevent changes</emph> option is not selected and if the sheet is not protected."
-msgstr "Amaloota mul'inaa jijjiruu kan dandeessu, yoo dirqaalli <emph>Jijjiramoota dhorki</emph> hin filatamnee fi yoo wardiin hin ittisamnee qofaa dha."
+msgid "Syntax"
+msgstr "Caasima"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_idN10780\n"
+"04060116.xhp\n"
+"par_id3152930\n"
+"153\n"
"help.text"
-msgid "You can only edit cell values if the <emph>Prevent changes</emph> option is selected, if the <emph>Copy back</emph> is option is not selected, and if the cells are not protected."
-msgstr "Gatiiwwan man'ee gulaaluu kan dandeessu, yoo dirqaalli<emph>Jijjirama dhorki</emph> filatamee, dirqaalli <emph>Duubatti garagalcha</emph> hin filatamnee fi man'eewwan hin ittisamne qofaa dha."
+msgid "IMSUM(\"ComplexNumber1\"; \"ComplexNumber2\"; ...)"
+msgstr "IMSUM(\"lakkoofsa konphileeksii1\"; \"lakkoofsa konphileeksii2\"; ...)"
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_idN1078C\n"
+"04060116.xhp\n"
+"hd_id3154640\n"
+"155\n"
"help.text"
-msgid "You can only change scenario cell values and write them back into the scenario if the <emph>Prevent changes</emph> option is not selected, if the <emph>Copy back</emph> option is selected, and if the cells are not protected."
-msgstr "Gatiiwwan mul'ina man'ee jijjiruu fi dubatti mul'ina keessatti barreessuu kan dandeessu, yoo dirqaalli<emph>Jijjirama dhorki</emph> hin filatamne, dirqaalli <emph>Duubatti garagalcha</emph> filatamee, fi man'eewwan hin ittisamne qofaa dha."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"par_id3147081\n"
+"156\n"
"help.text"
-msgid "Data Field Options"
-msgstr "Dirqalaalee Dirree Deetaa"
+msgid "<item type=\"input\">=IMSUM(\"13+4j\";\"5+3j\")</item> returns 18+7j."
+msgstr "<item type=\"input\">=IMSUM(\"13+4j\";\"5+3j\")</item> 18+7j kenna."
-#: 12090106.xhp
-#, fuzzy
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"bm_id711386\n"
+"04060116.xhp\n"
+"bm_id3147570\n"
"help.text"
-msgid "<bookmark_value>hiding;data fields, from calculations in pivot table</bookmark_value><bookmark_value>display options in pivot table</bookmark_value><bookmark_value>sorting;options in pivot table</bookmark_value><bookmark_value>data field options for pivot table</bookmark_value>"
-msgstr "<bookmark_value>dhoksu;dirreewwan deetaa,shallagiiwwan qinxaa keessaaf</bookmark_value><bookmark_value>dirqalaalee qinxaa keessaa agarsiisi</bookmark_value><bookmark_value>foo'uu;dirqalaalee qiinxaa keessaa</bookmark_value><bookmark_value>Qinxaaf dirqalaalee dirree deetaa</bookmark_value>"
+msgid "<bookmark_value>IMSQRT function</bookmark_value>"
+msgstr "<bookmark_value>fankishiniiIMSQRT</bookmark_value>"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10542\n"
+"04060116.xhp\n"
+"hd_id3147570\n"
+"167\n"
"help.text"
-msgid "Data Field Options"
-msgstr "Dirqalaalee Dirree Deetaa"
+msgid "IMSQRT"
+msgstr "IMSQRT"
-#: 12090106.xhp
-#, fuzzy
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10546\n"
+"04060116.xhp\n"
+"par_id3156131\n"
+"168\n"
"help.text"
-msgid "You can specify additional options for column, row, and page data fields in the <link href=\"text/scalc/01/12090105.xhp\">pivot table</link>."
-msgstr "<link href=\"text/scalc/01/12090105.xhp\">qinxaa</link>keessatti tarjaa,tarree fi fuula deetaa dirreef dirqalaalee dabalataa ifteessuu dandeessa."
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMSQRT\">The result is the square root of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSQRT\">Firii isaa iskuuwerruutti lakkoofsa konphileeksiti.</ahelp>"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10557\n"
+"04060116.xhp\n"
+"hd_id3145202\n"
+"169\n"
"help.text"
-msgid "Sort by"
-msgstr "Ittiin tartiiba qabsiisi"
+msgid "Syntax"
+msgstr "Caasima"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN1055B\n"
+"04060116.xhp\n"
+"par_id3150760\n"
+"170\n"
"help.text"
-msgid "<ahelp hid=\"1495387653\">Select the data field that you want to sort columns or rows by.</ahelp>"
-msgstr "<ahelp hid=\"1495387653\">Kan deetaa dirree ittiin tarjaawwan ykn tarreewwan isaanii ittiin tartiiba qabsiisnu barbaadduu fili.</ahelp>"
+msgid "IMSQRT(\"ComplexNumber\")"
+msgstr "IMSQRT(\"lakkoofsa konphileeksii\")"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN1055E\n"
+"04060116.xhp\n"
+"hd_id3147268\n"
+"172\n"
"help.text"
-msgid "Ascending"
-msgstr "Olee"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10562\n"
+"04060116.xhp\n"
+"par_id3152807\n"
+"173\n"
"help.text"
-msgid "<ahelp hid=\"1495384580\">Sorts the values from the lowest value to the highest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
-msgstr "<ahelp hid=\"1495384580\">Gatiwwaan gatii gadaantii irraa garaa gatii ol'aantootti tartiiba qabsiisa.Yoo dirreen filamee kun dirree qaaqni isaa banamee, wantootni maqaadhaan tartiiba qabatuu.Yoo dirreen deetaa filame,gatiin dhumaa dirree deetaa filamen,tartibaa qabata.</ahelp>"
+msgid "<item type=\"input\">=IMSQRT(\"3+4i\")</item> returns 2+1i."
+msgstr "<item type=\"input\">=IMSQRT(\"3+4i\")</item>2+1i kenna."
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10565\n"
+"04060116.xhp\n"
+"bm_id3154054\n"
"help.text"
-msgid "Descending"
-msgstr "Gadee"
+msgid "<bookmark_value>COMPLEX function</bookmark_value>"
+msgstr "<bookmark_value>fankishiniiCOMPLEX</bookmark_value>"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10569\n"
+"04060116.xhp\n"
+"hd_id3154054\n"
+"157\n"
"help.text"
-msgid "<ahelp hid=\"1495384581\">Sorts the values descending from the highest value to the lowest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
-msgstr "<ahelp hid=\"1495384581\">Gatiiwwan gadee gatii olaantoo irraa gara gatii gadaantitti tartiiba qabsiisa.Yoo dirreen filamee kun dirree qaaqni isaa banamee, wantootni maqaadhaan tartiiba qabatuu.Yoo dirreen deetaa filame,gatiin dhumaa dirree deetaa filamen,tartibaa qabata.</ahelp>"
+msgid "COMPLEX"
+msgstr "COMPLEX"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN1056C\n"
+"04060116.xhp\n"
+"par_id3156111\n"
+"158\n"
"help.text"
-msgid "Manual"
-msgstr "Hujeeka"
+msgid "<ahelp hid=\"HID_AAI_FUNC_COMPLEX\">The result is a complex number which is returned from a real coefficient and an imaginary coefficient.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COMPLEX\">Firiin isaa lakkoofsa konphileeksi kan kofisheentii riyaalii fi kofisheentii imaajiineerii irraa argame dha.</ahelp>"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10570\n"
+"04060116.xhp\n"
+"hd_id3154744\n"
+"159\n"
"help.text"
-msgid "<ahelp hid=\"1495384582\">Sorts values alphabetically.</ahelp>"
-msgstr "<ahelp hid=\"1495384582\">Gatiiwwan tartiibaan fo'a.</ahelp>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10585\n"
+"04060116.xhp\n"
+"par_id3155999\n"
+"160\n"
"help.text"
-msgid "Display options"
-msgstr "Dirqalaalee agarsiisa"
+msgid "COMPLEX(RealNum; INum; Suffix)"
+msgstr "COMPLEX(RealNum; INum; Dursoo)"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10589\n"
+"04060116.xhp\n"
+"par_id3153626\n"
+"161\n"
"help.text"
-msgid "You can specify the display options for all row fields except for the last, innermost row field."
-msgstr "Dirree tarree keessa irraa kan hafee, dirreewwan tarree hundaaf dirqalaalee agarsiisaa ifteessuu dandeessa."
+msgid "<emph>RealNum</emph> is the real coefficient of the complex number."
+msgstr "<emph>RealNum</emph>'n koofisheenti riyaalii lakkoofsa komphileeksiti."
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN1058C\n"
+"04060116.xhp\n"
+"par_id3149135\n"
+"162\n"
"help.text"
-msgid "Layout"
-msgstr "Teessuma"
+msgid "<emph>INum</emph> is the imaginary coefficient of the complex number."
+msgstr "<emph>INum</emph>'n koofisheenti imaajiineerii lakkoofsa konphileeksiti."
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10590\n"
+"04060116.xhp\n"
+"par_id3155849\n"
+"163\n"
"help.text"
-msgid "<ahelp hid=\"1495387654\">Select the layout mode for the field in the list box.</ahelp>"
-msgstr "<ahelp hid=\"1495387654\">Dirree sanduuqa tarree keessattiif halaata teessumaa fili.</ahelp>"
+msgid "<emph>Suffix</emph> is a list of options, \"i\" or \"j\"."
+msgstr "<emph>Dursoo</emph>'n tarree dirqalaalee , \"i\" ykn \"j\"."
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10593\n"
+"04060116.xhp\n"
+"hd_id3145659\n"
+"164\n"
"help.text"
-msgid "Empty line after each item"
-msgstr "Sarara duwwaa tokko tokkoo wantaa booda"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12090106.xhp
-#, fuzzy
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10597\n"
+"04060116.xhp\n"
+"par_id3143229\n"
+"165\n"
"help.text"
-msgid "<ahelp hid=\"1495385090\">Adds an empty row after the data for each item in the pivot table.</ahelp>"
-msgstr "<ahelp hid=\"1495385090\">Tokko tokko wantaa gabatee qinxaa keessaatiif,deetaa booda tarree duwwaa dabalii.</ahelp>"
+msgid "<item type=\"input\">=COMPLEX(3;4;\"j\")</item> returns 3+4j."
+msgstr "<item type=\"input\">=COMPLEX(3;4;\"j\")</item> 3+4j kenna."
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN1059A\n"
+"04060116.xhp\n"
+"bm_id3155103\n"
"help.text"
-msgid "Show automatically"
-msgstr "Ofuuman agarsiisi"
+msgid "<bookmark_value>OCT2BIN function</bookmark_value> <bookmark_value>converting;octal numbers, into binary numbers</bookmark_value>"
+msgstr "<bookmark_value>fankishinii OCT2BIN</bookmark_value> <bookmark_value>jijjiiruun;lakkoofsota ooktaalii, gara lakkoofsota baayineeritti</bookmark_value>"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN1059E\n"
+"04060116.xhp\n"
+"hd_id3155103\n"
+"217\n"
"help.text"
-msgid "Displays the top or bottom nn items when you sort by a specified field."
-msgstr "Yommuu dirreen iftaayee,toora qabsiiftuun nn wantaa gubbaa fi jalaa agarsiisa."
+msgid "OCT2BIN"
+msgstr "OCT2BIN"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105A1\n"
+"04060116.xhp\n"
+"par_id3146898\n"
+"218\n"
"help.text"
-msgid "Show"
-msgstr "Agarsiisa"
+msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2BIN\">The result is the binary number for the octal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2BIN\">Firiin isaa lakkoofsota ooktaalii galfameef lakkoofsota baayineerii ta'a.</ahelp>"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105A5\n"
+"04060116.xhp\n"
+"hd_id3146088\n"
+"219\n"
"help.text"
-msgid "<ahelp hid=\"1495385091\">Turns on the automatic show feature.</ahelp>"
-msgstr "<ahelp hid=\"1495385091\">Ofumaan agarsiisaa amalaa bana.</ahelp>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105A8\n"
+"04060116.xhp\n"
+"par_id3154303\n"
+"220\n"
"help.text"
-msgid "items"
-msgstr "wantoota"
+msgid "OCT2BIN(Number; Places)"
+msgstr "OCT2BIN(Lakkoofsa; Bakkeewwan)"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105AC\n"
+"04060116.xhp\n"
+"par_id3156013\n"
+"221\n"
"help.text"
-msgid "<ahelp hid=\"1495390209\">Enter the maximum number of items that you want to show automatically.</ahelp>"
-msgstr "<ahelp hid=\"1495390209\">Lakkoofsa ol'aantoo wantootaa ofuumaan akka agarsiisuu barbaadduu galchi.</ahelp>"
+msgid "<emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgstr "<emph>Lakkoofsa</emph> lakkoofsa oktaalii dha.Gatii olaanaa bakkeewwan qadachuu danda'uu 10 dha.Biiin calqaba xiyyoo irra mallattoo biiti taati,biitiiwwan iti aanuun dhufaan gatii kennu.Lakkoofsootni neegaativii akkaa tuuskompiilimeentitti galfamu."
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105AF\n"
+"04060116.xhp\n"
+"par_id3153984\n"
+"222\n"
"help.text"
-msgid "From"
-msgstr "Irraa"
+msgid "<emph>Places</emph> is the number of places to be output."
+msgstr "<emph>Bakkootni</emph> lakkoofsa bakkoota baha ta'uuti."
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105B3\n"
+"04060116.xhp\n"
+"hd_id3147493\n"
+"223\n"
"help.text"
-msgid "<ahelp hid=\"1495387655\">Shows the top or bottom items in the specified sort order.</ahelp>"
-msgstr "<ahelp hid=\"1495387655\">Tartiiba qabsiisaa iftaa'een gubbaa fi jalaa wantootaa agarsiisa.</ahelp>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105B6\n"
+"04060116.xhp\n"
+"par_id3147260\n"
+"224\n"
"help.text"
-msgid "Using field"
-msgstr "Dirree gargaaraamuun"
+msgid "<item type=\"input\">=OCT2BIN(3;3)</item> returns 011."
+msgstr "<item type=\"input\">=OCT2BIN(3;3)</item> 011 kenna."
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105BA\n"
+"04060116.xhp\n"
+"bm_id3152791\n"
"help.text"
-msgid "<ahelp hid=\"1495387656\">Select the data field that you want to sort the data by.</ahelp>"
-msgstr "<ahelp hid=\"1495387656\">Kan deetaa barbaaddu ittiin tartiiba qabsiistuu dirree deetaa fili.</ahelp>"
+msgid "<bookmark_value>OCT2DEC function</bookmark_value> <bookmark_value>converting;octal numbers, into decimal numbers</bookmark_value>"
+msgstr "<bookmark_value>fankishinii OCT2DEC</bookmark_value> <bookmark_value>jijjiiruun;lakkoofsota ooktaalii, gara lakkoofsota deesimaaliitti</bookmark_value>"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105BD\n"
+"04060116.xhp\n"
+"hd_id3152791\n"
+"225\n"
"help.text"
-msgid "Hide items"
-msgstr "Wantoota dhoksuun"
+msgid "OCT2DEC"
+msgstr "OCT2DEC"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105C1\n"
+"04060116.xhp\n"
+"par_id3149199\n"
+"226\n"
"help.text"
-msgid "<ahelp hid=\"59010\">Select the items that you want to hide from the calculations.</ahelp>"
-msgstr "<ahelp hid=\"59010\">Shallagiiwwaan wantoota keessaa dhoksuu barbaadde fili.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2DEZ\">The result is the decimal number for the octal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2DEZ\">Firiin isaa lakkoofsota oktaalii galfameef lakkoofsota deesiimaalii ta'a..</ahelp>"
-#: 12090106.xhp
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105C4\n"
+"04060116.xhp\n"
+"hd_id3159337\n"
+"227\n"
"help.text"
-msgid "Hierarchy"
-msgstr "Sadarkaa"
+msgid "Syntax"
+msgstr "Caasima"
-#: 12090106.xhp
-#, fuzzy
+#: 04060116.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105C8\n"
+"04060116.xhp\n"
+"par_id3153902\n"
+"228\n"
"help.text"
-msgid "<ahelp hid=\"1495387657\">Select the hierarchy that you want to use. The pivot table must be based on an external source data that contains data hierarchies.</ahelp>"
-msgstr "<ahelp hid=\"1495387657\">Sadarkaa fayyadamuu barbaaddu fili.Gabateen qinxaa deetaa madda alaa kan sadarkaawwan of keessa qabanii irratti hunda'u qaba</ahelp>"
+msgid "OCT2DEC(Number)"
+msgstr "OCT2DEC(Lakkoofsa)"
-#: 06080000.xhp
+#: 04060116.xhp
msgctxt ""
-"06080000.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"par_id3155326\n"
+"229\n"
"help.text"
-msgid "Recalculate"
-msgstr "Lamherregi"
+msgid "<emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgstr "<emph>Lakkoofsa</emph> lakkoofsa oktaalii dha.Gatii olaanaa bakkeewwan qadachuu danda'uu 10 dha.Biiin calqaba xiyyoo irra mallattoo biiti taati,biitiiwwan iti aanuun dhufaan gatii kennu.Lakkoofsootni neegaativii akkaa tuuskompiilimeentitti galfamu."
-#: 06080000.xhp
+#: 04060116.xhp
msgctxt ""
-"06080000.xhp\n"
-"bm_id3157909\n"
+"04060116.xhp\n"
+"hd_id3154698\n"
+"230\n"
"help.text"
-msgid "<bookmark_value>recalculating;all formulas in sheets</bookmark_value><bookmark_value>formulas; recalculating manually</bookmark_value><bookmark_value>cell contents; recalculating</bookmark_value>"
-msgstr "<bookmark_value>Lamherreegun;Formulaawwan hundaa kan barruuwwan keessaa</bookmark_value><bookmark_value>formulaawwan; hujeekaan lamherreegii</bookmark_value><bookmark_value>Qabeentoota man'ee; lamherreega</bookmark_value>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 06080000.xhp
+#: 04060116.xhp
msgctxt ""
-"06080000.xhp\n"
-"hd_id3157909\n"
-"1\n"
+"04060116.xhp\n"
+"par_id3154930\n"
+"231\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06080000.xhp\" name=\"Recalculate\">Recalculate</link>"
-msgstr "<link href=\"text/scalc/01/06080000.xhp\" name=\"Recalculate\">Lamherreegaa</link>"
+msgid "<item type=\"input\">=OCT2DEC(144)</item> returns 100."
+msgstr "<item type=\"input\">=OCT2DEC(144)</item> 100 kenna."
-#: 06080000.xhp
+#: 04060116.xhp
msgctxt ""
-"06080000.xhp\n"
-"par_id3154758\n"
-"2\n"
+"04060116.xhp\n"
+"bm_id3155391\n"
"help.text"
-msgid "<ahelp hid=\".uno:Calculate\">Recalculates all changed formulas. If AutoCalculate is enabled, the Recalculate command applies only to formulas like RAND or NOW.</ahelp>"
+msgid "<bookmark_value>OCT2HEX function</bookmark_value> <bookmark_value>converting;octal numbers, into hexadecimal numbers</bookmark_value>"
+msgstr "<bookmark_value>fankishinii OCT2HEX</bookmark_value> <bookmark_value>jijjiiruun;lakkoofsota oktaalii, gara lakkoofsota heeksaadeesimaaliitti</bookmark_value>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3155391\n"
+"232\n"
+"help.text"
+msgid "OCT2HEX"
+msgstr "OCT2HEX"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3148831\n"
+"233\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2HEX\"> The result is the hexadecimal number for the octal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2HEX\">Firiin isaa lakkoofsa oktaalii galfameef lakkoofsa heeksaadeesiimaalii ta'a..</ahelp>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3146988\n"
+"234\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3150523\n"
+"235\n"
+"help.text"
+msgid "OCT2HEX(Number; Places)"
+msgstr "OCT2HEX(Lakkoofsa; Bakkoota)"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3159162\n"
+"236\n"
+"help.text"
+msgid "<emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgstr "<emph>Lakkoofsa</emph> lakkoofsa oktaalii dha.Gatii olaanaa bakkeewwan qadachuu danda'uu 10 dha.Biiin calqaba xiyyoo irra mallattoo biiti taati,biitiiwwan iti aanuun dhufaan gatii kennu.Lakkoofsootni neegaativii akkaa tuuskompiilimeentitti galfamu."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3145420\n"
+"237\n"
+"help.text"
+msgid "<emph>Places</emph> is the number of places to be output."
+msgstr "<emph>Bakkootni</emph> lakkoofsa bakkoota baha ta'uuti."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3150504\n"
+"238\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3148802\n"
+"239\n"
+"help.text"
+msgid "<item type=\"input\">=OCT2HEX(144;4)</item> returns 0064."
+msgstr "<item type=\"input\">=OCT2HEX(144;4)</item> 0064 kenna."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3148446\n"
+"help.text"
+msgid "<bookmark_value>CONVERT_ADD function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii CONVERT_ADD</bookmark_value>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3148446\n"
+"175\n"
+"help.text"
+msgid "CONVERT_ADD"
+msgstr "CONVERT_ADD"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3154902\n"
+"176\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">Converts a value from one unit of measure to the corresponding value in another unit of measure.</ahelp> Enter the units of measures directly as text in quotation marks or as a reference. If you enter the units of measure in cells, they must correspond exactly with the following list which is case sensitive: For example, in order to enter a lower case l (for liter) in a cell, enter the apostrophe ' immediately followed by l."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">n gatii safartuu madalii tokkoo irraa gara gatii madalii safartuu itti aanuu gara birooti jijjiira .</ahelp> Madaalliwwan safartuu akka barruu mallattoo waraabbiti ykn akka wabiiti qixa sirriin galchi. Yoo madallii safartuu man'ee keessaa galchiee, Fakkeenyaaf, gara xiqaa 1 (salphaa) man'ee galchuuf mallattoo hudhaa ' battaluma tokkootti (1) aansudhaan galchi."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153055\n"
+"177\n"
+"help.text"
+msgid "Property"
+msgstr "Amala"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3147234\n"
+"178\n"
+"help.text"
+msgid "Units"
+msgstr "Safartuu"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3147512\n"
+"179\n"
+"help.text"
+msgid "Weight"
+msgstr "Ulfaatina"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3148476\n"
+"180\n"
+"help.text"
+msgid "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight, hweight, shweight, brton"
msgstr ""
-#: 06080000.xhp
+#: 04060116.xhp
msgctxt ""
-"06080000.xhp\n"
-"par_id315475899\n"
+"04060116.xhp\n"
+"par_id3155361\n"
+"181\n"
"help.text"
-msgid "Press F9 to recalculate. Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas in the document."
+msgid "Length"
+msgstr "Dheerina"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3148925\n"
+"182\n"
+"help.text"
+msgid "<emph>m</emph>, mi, Nmi, in, ft, yd, ang, Pica, ell, <emph>parsec</emph>, <emph>lightyear</emph>, survey_mi"
msgstr ""
-#: 06080000.xhp
+#: 04060116.xhp
msgctxt ""
-"06080000.xhp\n"
-"par_id3150793\n"
-"5\n"
+"04060116.xhp\n"
+"par_id3158429\n"
+"183\n"
"help.text"
-msgid "After the document has been recalculated, the display is refreshed. All charts are also refreshed."
-msgstr "Ergaa galmeen lamherreegamee,agarsiisaan ni haroomfama.Akkasumas taattoowwan kamiyyuu barruu keessatti argaman ni hareeffamu."
+msgid "Time"
+msgstr "Yeroo"
-#: 06080000.xhp
+#: 04060116.xhp
msgctxt ""
-"06080000.xhp\n"
-"par_id315475855\n"
+"04060116.xhp\n"
+"par_id3150707\n"
+"184\n"
"help.text"
-msgid "The Add-In functions like RANDBETWEEN currently cannot respond to the Recalculate command or F9. Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas, including the Add-In functions."
+msgid "yr, day, hr, mn, <emph>sec</emph>, <emph>s</emph>"
msgstr ""
-#: 05050000.xhp
+#: 04060116.xhp
msgctxt ""
-"05050000.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"par_id3153238\n"
+"185\n"
"help.text"
-msgid "Sheet"
-msgstr "Wardii"
+msgid "Pressure"
+msgstr "Dhiibaa"
-#: 05050000.xhp
+#: 04060116.xhp
msgctxt ""
-"05050000.xhp\n"
-"bm_id1245460\n"
+"04060116.xhp\n"
+"par_id3166437\n"
+"186\n"
"help.text"
-msgid "<bookmark_value>CTL;right-to-left sheets</bookmark_value><bookmark_value>sheets;right-to-left</bookmark_value><bookmark_value>right-to-left text;spreadsheets</bookmark_value>"
-msgstr "<bookmark_value>CTL;wardiiwwan mirgaa-gara-bitaatti</bookmark_value><bookmark_value>wardiiwwan;mirgaa-gara-bitaatti</bookmark_value><bookmark_value>barruu mirgaa-gara-bitaatti;wardiiwwan</bookmark_value>"
+msgid "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
+msgstr ""
-#: 05050000.xhp
+#: 04060116.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3155923\n"
-"1\n"
+"04060116.xhp\n"
+"par_id3152944\n"
+"187\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05050000.xhp\" name=\"Sheet\">Sheet</link>"
-msgstr "<link href=\"text/scalc/01/05050000.xhp\" name=\"Sheet\">Wardii</link>"
+msgid "Force"
+msgstr "Humna"
-#: 05050000.xhp
+#: 04060116.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_id3154758\n"
-"2\n"
+"04060116.xhp\n"
+"par_id3155582\n"
+"188\n"
"help.text"
-msgid "<ahelp hid=\".\">Sets the sheet name and hides or shows selected sheets.</ahelp>"
-msgstr "<ahelp hid=\".\">Maqaa wardii qindeessun fi wardiiwwan filaman dhoksa ykn mul'isa.</ahelp>"
+msgid "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
+msgstr ""
-#: 05050000.xhp
+#: 04060116.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3156280\n"
-"3\n"
+"04060116.xhp\n"
+"par_id3153686\n"
+"189\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05050100.xhp\" name=\"Rename\">Rename</link>"
-msgstr "<link href=\"text/scalc/01/05050100.xhp\" name=\"Rename\">Maqaa jijjiiri</link>"
+msgid "Energy"
+msgstr "Aniisaa"
-#: 05050000.xhp
+#: 04060116.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3145787\n"
-"4\n"
+"04060116.xhp\n"
+"par_id3153386\n"
+"190\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05050300.xhp\" name=\"Show\">Show</link>"
-msgstr "<link href=\"text/scalc/01/05050300.xhp\" name=\"Show\">Agarsiisi</link>"
+msgid "<emph>J</emph>, <emph>e</emph>, <emph>c</emph>, <emph>cal</emph>, <emph>eV</emph>, <emph>ev</emph>, HPh, <emph>Wh</emph>, <emph>wh</emph>, flb, BTU, btu"
+msgstr ""
-#: 05050000.xhp
+#: 04060116.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_id3150542\n"
-"5\n"
+"04060116.xhp\n"
+"par_id3154100\n"
+"191\n"
"help.text"
-msgid "If a sheet has been hidden, the Show Sheet dialog opens, which allows you to select a sheet to be shown again."
-msgstr "Yoo wardiin dhooksamee ta'e,qaaqa wardii agarsiisaa bana, barruu lama agarsiifamuu akka filattuuf si eeyyama."
+msgid "Power"
+msgstr "Aangoo"
-#: 05050000.xhp
+#: 04060116.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_idN10656\n"
+"04060116.xhp\n"
+"par_id3149915\n"
+"192\n"
"help.text"
-msgid "Right-To-Left"
-msgstr "Mirgaa-Gara-Bitaatti"
+msgid "<emph>W</emph>, <emph>w</emph>, HP, PS"
+msgstr ""
-#: 05050000.xhp
+#: 04060116.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_idN1065A\n"
+"04060116.xhp\n"
+"par_id3148988\n"
+"193\n"
"help.text"
-msgid "<ahelp hid=\".uno:SheetRightToLeft\">Changes the orientation of the current sheet to Right-To-Left if <link href=\"text/shared/optionen/01150300.xhp\">CTL</link> support is enabled.</ahelp>"
-msgstr "<ahelp hid=\".uno:SheetRightToLeft\">yoo gargaarsi<link href=\"text/shared/optionen/01150300.xhp\">CTL</link> hojii eegale, duuraa duubni wardii ammee gara Mirgaa-Gara-Bitaatti jijjiira.</ahelp>"
+msgid "Field strength"
+msgstr "Jabeenyaa dirree"
-#: 05030300.xhp
+#: 04060116.xhp
msgctxt ""
-"05030300.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"par_id3148616\n"
+"194\n"
"help.text"
-msgid "Hide"
-msgstr "Dhoksi"
+msgid "<emph>T</emph>, <emph>ga</emph>"
+msgstr ""
-#: 05030300.xhp
+#: 04060116.xhp
msgctxt ""
-"05030300.xhp\n"
-"bm_id3147265\n"
+"04060116.xhp\n"
+"par_id3151120\n"
+"195\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; hiding functions</bookmark_value><bookmark_value>hiding; rows</bookmark_value><bookmark_value>hiding; columns</bookmark_value><bookmark_value>hiding; sheets</bookmark_value><bookmark_value>sheets;hiding</bookmark_value><bookmark_value>columns;hiding</bookmark_value><bookmark_value>rows;hiding</bookmark_value>"
-msgstr "<bookmark_value>wardii; fankishinoota dhoksuu</bookmark_value><bookmark_value>dhoksuu; tarreewwan</bookmark_value><bookmark_value>dhoksuu; tarjaawwan</bookmark_value><bookmark_value>dhoksuu; wardiiwwan</bookmark_value><bookmark_value>wardiiwwan;Dhoksuu</bookmark_value><bookmark_value>tarjaawwan;dhoksuu</bookmark_value><bookmark_value>tarreewwan;dhoksuu</bookmark_value>"
+msgid "Temperature"
+msgstr "Teempiirechara"
-#: 05030300.xhp
+#: 04060116.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3147265\n"
-"1\n"
+"04060116.xhp\n"
+"par_id3148659\n"
+"196\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05030300.xhp\" name=\"Hide\">Hide</link>"
-msgstr "<link href=\"text/scalc/01/05030300.xhp\" name=\"Hide\">Dhoksi</link>"
+msgid "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
+msgstr ""
-#: 05030300.xhp
+#: 04060116.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3156281\n"
-"2\n"
+"04060116.xhp\n"
+"par_id3154610\n"
+"197\n"
"help.text"
-msgid "<ahelp hid=\".uno:Hide\">Hides selected rows, columns or individual sheets.</ahelp>"
-msgstr "<ahelp hid=\".uno:Hide\">Tarreewwan, tarjaawwan ykn wardiiwwan dhunfaa dhoksa.</ahelp>"
+msgid "Volume"
+msgstr "Qabee"
-#: 05030300.xhp
+#: 04060116.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3148645\n"
-"3\n"
+"04060116.xhp\n"
+"par_id3149423\n"
+"198\n"
"help.text"
-msgid "Select the rows or columns that you want to hide, and then choose <emph>Format - Row - Hide </emph>or<emph> Format - Column - Hide</emph>."
-msgstr "Tarreewwan ykn tarjaawwan dhoksuu barbaaddu fili, itti aansuun <emph>Dhangii - Tarree - Dhoksi </emph>ykn<emph> Dhangii - Tarjaa - Dhoksi</emph> fili."
+msgid "<emph>l</emph>, <emph>L</emph>, <emph>lt</emph>, tsp, tbs, oz, cup, pt, us_pt, qt, gal, <emph>m3</emph>, mi3, Nmi3, in3, ft3, yd3, ang3, Pica3, barrel, bushel, regton, Schooner, Middy, Glass"
+msgstr ""
-#: 05030300.xhp
+#: 04060116.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3147427\n"
-"6\n"
+"04060116.xhp\n"
+"par_id3149244\n"
+"199\n"
"help.text"
-msgid "You can hide a sheet by selecting the sheet tab and then choosing <emph>Format - Sheet - Hide</emph>. Hidden sheets are not printed unless they occur within a <link href=\"text/scalc/01/05080000.xhp\" name=\"print range\">print range</link>."
-msgstr "Wardii caancala wardii irraa filuun dhoksuu dandeessa itti aansuun <emph>Dhangii - Wardii - Dhoksi</emph> filuu dha. Wardiiwwan dhoksaman yoo <link href=\"text/scalc/01/05080000.xhp\" name=\"print range\">hangii maxxansi</link> keessatti argaman malee hin maxxanfaman."
+msgid "Area"
+msgstr "Iddoo"
-#: 05030300.xhp
+#: 04060116.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3153157\n"
-"5\n"
+"04060116.xhp\n"
+"par_id3150425\n"
+"200\n"
"help.text"
-msgid "A break in the row or column header indicates whether the row or column is hidden."
-msgstr "Qurxiinsi irraantoo tarree ykn tarjaa akka tarreen ykn tarjaan dhoksamuu isaa agarsiisa."
+msgid "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
+msgstr ""
-#: 05030300.xhp
+#: 04060116.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3145251\n"
-"4\n"
+"04060116.xhp\n"
+"par_id3150629\n"
+"201\n"
"help.text"
-msgid "To display hidden rows, columns or sheets"
-msgstr "tarreewwan, tarjaawwan ykn wardiiwwan agarsiisuf"
+msgid "Speed"
+msgstr "Saffisa"
-#: 05030300.xhp
+#: 04060116.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id8337046\n"
+"04060116.xhp\n"
+"par_id3159246\n"
+"202\n"
"help.text"
-msgid "Select the range that includes the hidden objects. You can also use the box in the corner above row 1 and beside column A. For sheets, this step is not necessary."
-msgstr "hangi wantoota dhokataa dhunfatan fili. Sanduuqa golee gubbaa tarree 1 fi maddii tarjaa A fayyadamuu dandeessa. kunii wardiiwwaniif adeemsaa barbaachisa miti."
+msgid "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
+msgstr ""
-#: 05030300.xhp
+#: 04060116.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id5532090\n"
+"04060116.xhp\n"
+"par_id3150789\n"
+"201\n"
"help.text"
-msgid "Choose <link href=\"text/scalc/01/05030400.xhp\" name=\"Format - Row/Column - Show\">Format - Row/Column - Show</link> or <link href=\"text/scalc/01/05050300.xhp\" name=\"Format - Sheet - Show\">Format - Sheet - Show</link>."
-msgstr "<link href=\"text/scalc/01/05030400.xhp\" name=\"Format - Row/Column - Show\">Dhangii - Tarree/Tarjaa - mul'isi</link> ykn <link href=\"text/scalc/01/05050300.xhp\" name=\"Format - Sheet - Show\">Dhangii- Wardii - Mul'isii</link>."
+msgid "Information"
+msgstr "Odeeffannoo"
-#: 12090101.xhp
+#: 04060116.xhp
msgctxt ""
-"12090101.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"par_id3159899\n"
+"202\n"
"help.text"
-msgid "Select Data Source"
-msgstr "Madda Deetaa Fili"
+msgid "<emph>bit</emph>, <emph>byte</emph>"
+msgstr ""
-#: 12090101.xhp
+#: 04060116.xhp
msgctxt ""
-"12090101.xhp\n"
-"hd_id3143268\n"
-"1\n"
+"04060116.xhp\n"
+"par_id3143277\n"
+"203\n"
"help.text"
-msgid "Select Data Source"
-msgstr "Madda Deetaa Fili"
+msgid "Units of measure in <emph>bold</emph> can be preceded by a prefix character from the following list:"
+msgstr ""
-#: 12090101.xhp
+#: 04060116.xhp
msgctxt ""
-"12090101.xhp\n"
-"par_id3148552\n"
-"2\n"
+"04060116.xhp\n"
+"par_id3148422\n"
+"204\n"
"help.text"
-msgid "Select the database and the table or query containing the data that you want to use."
-msgstr "Kuusaa deetaa fi gabatee ykn gaafata deetaa ati fayyadamuu barbaaddee qabatee fili"
+msgid "Prefix"
+msgstr ""
-#: 12090101.xhp
+#: 04060116.xhp
msgctxt ""
-"12090101.xhp\n"
-"hd_id3154140\n"
-"3\n"
+"04060116.xhp\n"
+"par_id3148423\n"
"help.text"
-msgid "Selection"
-msgstr "Filannoo"
+msgid "Multiplier"
+msgstr ""
-#: 12090101.xhp
+#: 04060116.xhp
msgctxt ""
-"12090101.xhp\n"
-"par_id3125863\n"
-"4\n"
+"04060116.xhp\n"
+"par_id3149490\n"
"help.text"
-msgid "<ahelp hid=\".\">You can only select databases that are registered in %PRODUCTNAME.</ahelp> To register a data source, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Base - Databases</emph>."
+msgid "Y (yotta)"
msgstr ""
-#: 12090101.xhp
+#: 04060116.xhp
msgctxt ""
-"12090101.xhp\n"
-"hd_id3151041\n"
-"5\n"
+"04060116.xhp\n"
+"par_id3149931\n"
"help.text"
-msgid "Database"
-msgstr "Kuusa Deetaa"
+msgid "10^24"
+msgstr ""
-#: 12090101.xhp
+#: 04060116.xhp
msgctxt ""
-"12090101.xhp\n"
-"par_id3156424\n"
-"6\n"
+"04060116.xhp\n"
+"par_id3149491\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_DATABASE\">Select the database that contains the data source that you want to use.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_DATABASE\">kuusaa deetaa isa madda deetaa ati fayyadamuu barbaadduu of keessatti qabatee fili.</ahelp>"
+msgid "Z (zetta)"
+msgstr ""
-#: 12090101.xhp
+#: 04060116.xhp
msgctxt ""
-"12090101.xhp\n"
-"hd_id3145364\n"
-"7\n"
+"04060116.xhp\n"
+"par_id3149932\n"
"help.text"
-msgid "Data source"
-msgstr "Madda deetaa"
+msgid "10^21"
+msgstr ""
-#: 12090101.xhp
+#: 04060116.xhp
msgctxt ""
-"12090101.xhp\n"
-"par_id3149260\n"
-"8\n"
+"04060116.xhp\n"
+"par_id3149492\n"
"help.text"
-msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DAPIDATA:CB_OBJECT\">Select the data source that you want to use.</ahelp>"
-msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DAPIDATA:CB_OBJECT\">Madda deetaa fayyadamuu barbadduu filadhu.</ahelp>"
+msgid "E (exa)"
+msgstr ""
-#: 12090101.xhp
+#: 04060116.xhp
msgctxt ""
-"12090101.xhp\n"
-"hd_id3147428\n"
-"9\n"
+"04060116.xhp\n"
+"par_id3149933\n"
"help.text"
-msgid "Type"
-msgstr "Akaakuu"
+msgid "10^18"
+msgstr ""
-#: 12090101.xhp
+#: 04060116.xhp
msgctxt ""
-"12090101.xhp\n"
-"par_id3150010\n"
-"10\n"
+"04060116.xhp\n"
+"par_id3149493\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_OBJTYPE\">Click the source type of for the selected data source.</ahelp> You can choose from four source types: \"Table\", \"Query\" and \"SQL\" or SQL (Native)."
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_OBJTYPE\">Madda deetaa filatameef akaakuu maddaa cuqaasi.</ahelp> Akaakuu maddootaa: \"Gabatee\",\"Gaafata\" fi \"SQL\" ykn SQL(dhaloota) arfan keessaa filachuu dandeessa."
+msgid "P (peta)"
+msgstr ""
-#: 12090101.xhp
-#, fuzzy
+#: 04060116.xhp
msgctxt ""
-"12090101.xhp\n"
-"par_id3147348\n"
-"11\n"
+"04060116.xhp\n"
+"par_id3149934\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
-msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"DataPilot dialog\">Qaaqa qinxaa</link>"
+msgid "10^15"
+msgstr ""
-#: 02200000.xhp
+#: 04060116.xhp
msgctxt ""
-"02200000.xhp\n"
+"04060116.xhp\n"
+"par_id3149494\n"
+"help.text"
+msgid "T (tera)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149935\n"
+"help.text"
+msgid "10^12"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149495\n"
+"help.text"
+msgid "G (giga)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149936\n"
+"help.text"
+msgid "10^9"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149496\n"
+"help.text"
+msgid "M (mega)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149937\n"
+"help.text"
+msgid "10^6"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149497\n"
+"help.text"
+msgid "k (kilo)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149938\n"
+"help.text"
+msgid "10^3"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149498\n"
+"help.text"
+msgid "h (hecto)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149939\n"
+"help.text"
+msgid "10^2"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149499\n"
+"help.text"
+msgid "e (deca)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149940\n"
+"help.text"
+msgid "10^1"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149500\n"
+"help.text"
+msgid "d (deci)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3143940\n"
+"help.text"
+msgid "10^-1"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149501\n"
+"help.text"
+msgid "c (centi)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149941\n"
+"help.text"
+msgid "10^-2"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149502\n"
+"help.text"
+msgid "m (milli)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149942\n"
+"help.text"
+msgid "10^-3"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149503\n"
+"help.text"
+msgid "u (micro)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149943\n"
+"help.text"
+msgid "10^-6"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149504\n"
+"help.text"
+msgid "n (nano)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149944\n"
+"help.text"
+msgid "10^-9"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149505\n"
+"help.text"
+msgid "p (pico)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149945\n"
+"help.text"
+msgid "10^-12"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149506\n"
+"help.text"
+msgid "f (femto)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149946\n"
+"help.text"
+msgid "10^-15"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149507\n"
+"help.text"
+msgid "a (atto)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149947\n"
+"help.text"
+msgid "10^-18"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149508\n"
+"help.text"
+msgid "z (zepto)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149948\n"
+"help.text"
+msgid "10^-21"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149509\n"
+"help.text"
+msgid "y (yocto)"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149949\n"
+"help.text"
+msgid "10^-24"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id0908200903061174\n"
+"help.text"
+msgid "Information units \"bit\" and \"byte\" may also be prefixed by one of the following IEC 60027-2 / IEEE 1541 prefixes:"
+msgstr "Safartootni odeeffannoo \"biitii\" and \"baayitii\" kan armaan gadii keessaa tokkoon durfamu dursitoota IEC 60027-2 / IEEE 1541:"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id0908200903090966\n"
+"help.text"
+msgid "ki kibi 1024"
+msgstr "ki kibi 1024"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id0908200903090958\n"
+"help.text"
+msgid "Mi mebi 1048576"
+msgstr "Mi mebi 1048576"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id0908200903090936\n"
+"help.text"
+msgid "Gi gibi 1073741824"
+msgstr "Gi gibi 1073741824"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id0908200903090975\n"
+"help.text"
+msgid "Ti tebi 1099511627776"
+msgstr "Ti tebi 1099511627776"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id0908200903090930\n"
+"help.text"
+msgid "Pi pebi 1125899906842620"
+msgstr "Pi pebi 1125899906842620"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id0908200903091070\n"
+"help.text"
+msgid "Ei exbi 1152921504606850000"
+msgstr "Ei exbi 1152921504606850000"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id0908200903091097\n"
+"help.text"
+msgid "Zi zebi 1180591620717410000000"
+msgstr "Zi zebi 1180591620717410000000"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id0908200903091010\n"
+"help.text"
+msgid "Yi yobi 1208925819614630000000000"
+msgstr "Yi yobi 1208925819614630000000000"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3146125\n"
+"209\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153695\n"
+"210\n"
+"help.text"
+msgid "CONVERT_ADD(Number; \"FromUnit\"; \"ToUnit\")"
+msgstr "CONVERT_ADD(Lakkoofsa; \"SafartuuIrraa\"; \"GaraSafartuu\")"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3147522\n"
+"211\n"
+"help.text"
+msgid "<emph>Number</emph> is the number to be converted."
+msgstr "<emph>lakkoofsi</emph> lakkoofsa jijjirame dha."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3154472\n"
+"212\n"
+"help.text"
+msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
+msgstr "<emph>SafartuuIrraan</emph> safartuu jijjiramni irraati adeemsifamuudha."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153790\n"
+"213\n"
+"help.text"
+msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
+msgstr "<emph>GaraSafartuun</emph> safartuu jijjiramni irraati adeemsifamuudha."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3156270\n"
+"214\n"
+"help.text"
+msgid "Examples"
+msgstr "Fakkeenyawwan"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3156336\n"
+"215\n"
+"help.text"
+msgid "<item type=\"input\">=CONVERT_ADD(10;\"HP\";\"PS\") </item>returns, rounded to two decimal places, 10.14. 10 HP equal 10.14 PS."
+msgstr "<item type=\"input\">=kurnyeeCONVERT_ADD(10;\"HP\";\"PS\") </item>n, gara iddoo kurnyee lamati siksa, 10.14. 10 HP walqixa 10.14 PS kenna."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3154834\n"
+"216\n"
+"help.text"
+msgid "<item type=\"input\">=CONVERT_ADD(10;\"km\";\"mi\") </item>returns, rounded to two decimal places, 6.21. 10 kilometers equal 6.21 miles. The k is the permitted prefix character for the factor 10^3."
+msgstr "<item type=\"input\">=CONVERT_ADD(10;\"km\";\"mi\") </item>n, gara iddoo kurnyee lamati siksa, Kiloomeetiin 6.21. 10 walqixaa 6.21 maayilii kenna. 'K'n hirmaata 10^3tiif arfiilee hundleesoo hayyamama dha."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3147096\n"
+"help.text"
+msgid "<bookmark_value>FACTDOUBLE function</bookmark_value> <bookmark_value>factorials;numbers with increments of two</bookmark_value>"
+msgstr "<bookmark_value>fankishinii FACTDOUBLE</bookmark_value> <bookmark_value>hirmaatota;lakkoofsota laman dabalan</bookmark_value>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3147096\n"
+"36\n"
+"help.text"
+msgid "FACTDOUBLE"
+msgstr "FACTDOUBLE"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3151309\n"
+"37\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">Returns the double factorial of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">n hirmaata lakkoofsa lama kenna.</ahelp>"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3154666\n"
+"38\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155121\n"
+"39\n"
+"help.text"
+msgid "FACTDOUBLE(Number)"
+msgstr "FACTDOUBLE(Lakkoofsa)"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3158440\n"
+"40\n"
+"help.text"
+msgid "Returns <emph>Number</emph> <emph>!!</emph>, the double factorial of <emph>Number</emph>, where <emph>Number</emph> is an integer greater than or equal to zero."
+msgstr "<emph>Number</emph> <emph>!!</emph> kenna, hirmaata lakkoofsa <emph>lam</emph>, yemmuu <emph>lakkofsii</emph> intiijerii irra guddaa ykn walqixaa duwwaa ta'e."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id2480849\n"
+"help.text"
+msgid "For even numbers FACTDOUBLE(n) returns:"
+msgstr "Lakkoofsota guutuuf FACTDOUBLE(n) kenna:"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id4181951\n"
+"help.text"
+msgid "2*4*6*8* ... *n"
+msgstr "2*4*6*8* ... *n"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id2927335\n"
+"help.text"
+msgid "For odd numbers FACTDOUBLE(n) returns:"
+msgstr "Lakkoofsota qaraati FACTDOUBLE(n) kennameeti:"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id2107303\n"
+"help.text"
+msgid "1*3*5*7* ... *n"
+msgstr "1*3*5*7* ... *n"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id4071779\n"
+"help.text"
+msgid "FACTDOUBLE(0) returns 1 by definition."
+msgstr "Hikoodhaan FACTDOUBLE(0)n 1 kenna."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3154622\n"
+"42\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id7844477\n"
+"help.text"
+msgid "<item type=\"input\">=FACTDOUBLE(5)</item> returns 15."
+msgstr "<item type=\"input\">=FACTDOUBLE(5)</item> 15 kenna."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3154116\n"
+"43\n"
+"help.text"
+msgid "<item type=\"input\">=FACTDOUBLE(6)</item> returns 48."
+msgstr "<item type=\"input\">=FACTDOUBLE(6)</item> 48 kenna."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id6478469\n"
+"help.text"
+msgid "<item type=\"input\">=FACTDOUBLE(0)</item> returns 1."
+msgstr "<item type=\"input\">=FACTDOUBLE(0)</item> 1 kenna."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
"tit\n"
"help.text"
-msgid "Sheet"
-msgstr "Wardii"
+msgid "Financial Functions Part Three"
+msgstr "Fankishinoota Maallaqaa kutaa sadi"
-#: 02200000.xhp
+#: 04060118.xhp
msgctxt ""
-"02200000.xhp\n"
-"hd_id3146794\n"
+"04060118.xhp\n"
+"hd_id3146780\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02200000.xhp\" name=\"Sheet\">Sheet</link>"
-msgstr "<link href=\"text/scalc/01/02200000.xhp\" name=\"Sheet\">Wardii</link>"
+msgid "Financial Functions Part Three"
+msgstr "Fankishinoota Maallaqaa kutaa sadi"
-#: 02200000.xhp
+#: 04060118.xhp
msgctxt ""
-"02200000.xhp\n"
-"par_id3149456\n"
-"2\n"
+"04060118.xhp\n"
+"bm_id3145112\n"
"help.text"
-msgid "<ahelp hid=\".\">Edit commands for entire sheets.</ahelp>"
-msgstr "<ahelp hid=\".\">Wardiiwwan hundaaf ajajoota gulaali.</ahelp>"
+msgid "<bookmark_value>ODDFPRICE function</bookmark_value><bookmark_value>prices;securities with irregular first interest date</bookmark_value>"
+msgstr "<bookmark_value>Fankishiinii ODDFPRICE</bookmark_value><bookmark_value>gatiiwwan;ittisa saffisa dhala tokkoffaa idilee hin tane</bookmark_value>"
-#: 02200000.xhp
+#: 04060118.xhp
msgctxt ""
-"02200000.xhp\n"
-"hd_id3150792\n"
-"3\n"
+"04060118.xhp\n"
+"hd_id3145112\n"
+"71\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02180000.xhp\" name=\"Move/Copy\">Move/Copy</link>"
-msgstr "<link href=\"text/scalc/01/02180000.xhp\" name=\"Move/Copy\">Hiiqsi/Garagalchi</link>"
+msgid "ODDFPRICE"
+msgstr "ODDFPRICE"
-#: 02200000.xhp
+#: 04060118.xhp
msgctxt ""
-"02200000.xhp\n"
-"hd_id3153968\n"
-"4\n"
+"04060118.xhp\n"
+"par_id3147250\n"
+"72\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02210000.xhp\" name=\"Select\">Select</link>"
-msgstr "<link href=\"text/scalc/01/02210000.xhp\" name=\"Select\">Filadhu</link>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ODDFPRICE\">Calculates the price per 100 currency units par value of a security, if the first interest date falls irregularly.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDFPRICE\">Akka gatii ittisaatti gatii safartuu sharafaa dhibba irraa shallaga, yoo guyyaan dhala jalqaba idileen ala hir'ate.</ahelp>"
-#: 02200000.xhp
+#: 04060118.xhp
msgctxt ""
-"02200000.xhp\n"
-"hd_id3163708\n"
-"5\n"
+"04060118.xhp\n"
+"hd_id3153074\n"
+"73\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02170000.xhp\" name=\"Delete\">Delete</link>"
-msgstr "<link href=\"text/scalc/01/02170000.xhp\" name=\"Delete\">Haqi</link>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 02200000.xhp
+#: 04060118.xhp
msgctxt ""
-"02200000.xhp\n"
-"hd_id3163733308\n"
+"04060118.xhp\n"
+"par_id3146098\n"
+"74\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">Events</link>"
-msgstr "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">Mudatoota</link>"
+msgid "ODDFPRICE(Settlement; Maturity; Issue; FirstCoupon; Rate; Yield; Redemption; Frequency; Basis)"
+msgstr "ODDPRICE(Qubannoo; Bilchina; keenni; BoonooDursaa; Saffisa; Kenna; Fayyii; Ammamtaa; Hundee)"
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"tit\n"
+"04060118.xhp\n"
+"par_id3153337\n"
+"75\n"
"help.text"
-msgid "AutoInput"
-msgstr "Ofiinaqaa"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"bm_id2486037\n"
+"04060118.xhp\n"
+"par_id3149051\n"
+"76\n"
"help.text"
-msgid "<bookmark_value>entering entries with AutoInput function</bookmark_value><bookmark_value>capital letters;AutoInput function</bookmark_value>"
-msgstr "<bookmark_value> faankishinii Ofiinaqaadhaan galinsa galcha</bookmark_value><bookmark_value>qubeewwan gurguddaa;Fankiishinii Ofiinaqaa</bookmark_value>"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id3148492\n"
-"1\n"
+"04060118.xhp\n"
+"par_id3147297\n"
+"77\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"AutoInput\">AutoInput</link>"
-msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"AutoInput\">Ofiinaqaa</link>"
+msgid "<emph>Issue</emph> is the date of issue of the security."
+msgstr "<emph>Qubannoo</emph>n guyyaa bittaa ittisaati."
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3150793\n"
-"2\n"
+"04060118.xhp\n"
+"par_id3150393\n"
+"78\n"
"help.text"
-msgid "<ahelp hid=\".uno:AutoComplete\">Switches the AutoInput function on and off, which automatically completes entries, based on other entries in the same column.</ahelp> The column is scanned up to a maximum of 2000 cells or 200 different strings."
-msgstr "<ahelp hid=\".uno:AutoComplete\">Fankiishiini Ofiinaqaa dhamsuu fi banuun jijjiraa,tarjaa tokkoo keessaatti galiinsaa biroo irratti hunda'uun, ofumaa galinsaa xumuruu.</ahelp> Tarjaan hangaa man'eewwan 2000 ykn diraawwan garaa garaa 2oo ta'an sirritti barbaada"
+msgid "<emph>FirstCoupon</emph> is the first interest date of the security."
+msgstr "<emph>BoonooDursa</emph>n ittisa dhala aduu jalqabati."
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3156422\n"
-"8\n"
+"04060118.xhp\n"
+"par_id3147402\n"
+"79\n"
"help.text"
-msgid "The completion text is highlighted."
-msgstr "Barruun xumuurame ni shoolama."
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr "<emph>Saffisnii</emph> saffisa dhala waggaati."
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN1065D\n"
+"04060118.xhp\n"
+"par_id3151387\n"
+"80\n"
"help.text"
-msgid "To accept the completion, press <item type=\"keycode\">Enter</item> or a cursor key."
-msgstr "Kan xumuramee fudhachuuf,<item type=\"keycode\">Galchi</item> ykn furtuu qaree dhiibi."
+msgid "<emph>Yield</emph> is the annual yield of the security."
+msgstr "<emph>kennaa</emph> ittisa kenna waggaati."
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN10665\n"
+"04060118.xhp\n"
+"par_id3153023\n"
+"81\n"
"help.text"
-msgid "To append text or to edit the completion, press <item type=\"keycode\">F2</item>."
-msgstr "Barruu miiltessuuf ykn xumura gulaaluuf,<item type=\"keycode\">F2</item>dhiibi."
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr "<emph>Fayyiin</emph> gatii fayyii safartuu ammaa kan gatii harkaa 100 keessaati."
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN1066D\n"
+"04060118.xhp\n"
+"par_id3150539\n"
+"82\n"
"help.text"
-msgid "To view more completions, press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab</item> to scroll forward, or <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Tab</item> to scroll backward."
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Ammamtaa</emph>n lakkoofsa kanfaltiiwwan dhalaa waggaati (1, 2 ykn 4)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3157871\n"
+"help.text"
+msgid "<bookmark_value>ODDFYIELD function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii ODDFYIELD</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3157871\n"
+"87\n"
+"help.text"
+msgid "ODDFYIELD"
+msgstr "ODDFYIELD"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147414\n"
+"88\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ODDFYIELD\">Calculates the yield of a security if the first interest date falls irregularly.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDFYIELD\">n yoo dhalii aduu jalqaba idileen al gadi bu'e ittisa kenna shallaga.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3150651\n"
+"89\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152982\n"
+"90\n"
+"help.text"
+msgid "ODDFYIELD(Settlement; Maturity; Issue; FirstCoupon; Rate; Price; Redemption; Frequency; Basis)"
+msgstr "ODDFYIELD(Qubannoo; Bilchina; keenni; BoonooDursaa; Saffisa; Kenna; Fayyii; Ammamtaa; Hundee)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3157906\n"
+"91\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150026\n"
+"92\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149012\n"
+"93\n"
+"help.text"
+msgid "<emph>Issue</emph> is the date of issue of the security."
+msgstr "<emph>Qubannoo</emph>n guyyaa bittaa ittisaati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148725\n"
+"94\n"
+"help.text"
+msgid "<emph>FirstCoupon</emph> is the first interest period of the security."
+msgstr "<emph>BoonooDursa</emph>n ittisaa dhala yeroo jalqabati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150465\n"
+"95\n"
+"help.text"
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr "<emph>Saffisnii</emph> saffisa dhala waggaati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146940\n"
+"96\n"
+"help.text"
+msgid "<emph>Price</emph> is the price of the security."
+msgstr "<emph>Gatii</emph>n gatii ittisati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149893\n"
+"97\n"
+"help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr "<emph>Fayyiin</emph> gatii fayyii safartuu ammaa kan gatii harkaa 100 keessaati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148888\n"
+"98\n"
+"help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Ammamtaa</emph>n lakkoofsa kanfaltiiwwan dhalaa waggaati (1, 2 ykn 4)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3153933\n"
+"help.text"
+msgid "<bookmark_value>ODDLPRICE function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii ODDLPRICE</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3153933\n"
+"103\n"
+"help.text"
+msgid "ODDLPRICE"
+msgstr "ODDLPRICE"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145145\n"
+"104\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ODDLPRICE\">Calculates the price per 100 currency units par value of a security, if the last interest date falls irregularly.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDLPRICE\">Akka gatii ittisaatti gatii safartuu sharafaa dhibba irraa shallaga, yoo guyyaan dhala xumuraa idileen ala hir'ate.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3152784\n"
+"105\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155262\n"
+"106\n"
+"help.text"
+msgid "ODDLPRICE(Settlement; Maturity; LastInterest; Rate; Yield; Redemption; Frequency; Basis)"
+msgstr "ODDLPRICE(Qubannoo; Bilchina; DhalaaXumura; Saffisa; Kenna; Fayyii; Ammamtaa; Hundee)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149689\n"
+"107\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148753\n"
+"108\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150861\n"
+"109\n"
+"help.text"
+msgid "<emph>LastInterest</emph> is the last interest date of the security."
+msgstr "<emph>DhalaaXumura</emph>n ittisa dhala aduu xumuraati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155831\n"
+"110\n"
+"help.text"
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr "<emph>Saffisnii</emph> saffisa dhala waggaati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153328\n"
+"111\n"
+"help.text"
+msgid "<emph>Yield</emph> is the annual yield of the security."
+msgstr "<emph>kennaa</emph> ittisa kenna waggaati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149186\n"
+"112\n"
+"help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr "<emph>Fayyiin</emph> gatii fayyii safartuu ammaa kan gatii harkaa 100 keessaati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149726\n"
+"113\n"
+"help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Ammamtaa</emph>n lakkoofsa kanfaltiiwwan dhalaa waggaati (1, 2 ykn 4)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3153111\n"
+"114\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152999\n"
+"115\n"
+"help.text"
+msgid "Settlement date: February 7 1999, maturity date: June 15 1999, last interest: October 15 1998. Interest rate: 3.75 per cent, yield: 4.05 per cent, redemption value: 100 currency units, frequency of payments: half-yearly = 2, basis: = 0"
+msgstr "Aduu qubanoo:Bitooteessa 7 1999, aduu bilchinaa: Waxxabajii 15 1999, dhalaa xumuraa: Onkoololeessa 15 1998. Saffisa dhala: paarsantii 3.75, kennaan: paarsantii 4.05, gatiin fayyii: safartuu amma 100, ammamtaa kanfaltiin: walakka waggaati= 2, hundeen:walqixaa 0ti"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148567\n"
+"116\n"
+"help.text"
+msgid "The price per 100 currency units per value of a security, which has an irregular last interest date, is calculated as follows:"
+msgstr "Gatiin safartuu ammaa 100 keessaa ittisa gatii keessaa, kan dhalaa aduu xumuraa idleen alaa, akka armaan gadiiti shallama:"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150332\n"
+"117\n"
+"help.text"
+msgid "=ODDLPRICE(\"1999-02-07\";\"1999-06-15\";\"1998-10-15\"; 0.0375; 0.0405;100;2;0) returns 99.87829."
+msgstr "=ODDLPRICE(\"1999-02-07\";\"1999-06-15\";\"1998-10-15\"; 0.0375; 0.0405;100;2;0) returns 99.87829."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3153564\n"
+"help.text"
+msgid "<bookmark_value>ODDLYIELD function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii ODDLYIELD</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3153564\n"
+"118\n"
+"help.text"
+msgid "ODDLYIELD"
+msgstr "ODDLYIELD"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3158002\n"
+"119\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ODDLYIELD\">Calculates the yield of a security if the last interest date falls irregularly.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDLYIELD\">n yoo dhalii aduu jalqaba idileen al gadi bu'e ittisa kenna shallagameeef.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3147366\n"
+"120\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150018\n"
+"121\n"
+"help.text"
+msgid "ODDLYIELD(Settlement; Maturity; LastInterest; Rate; Price; Redemption; Frequency; Basis)"
+msgstr "ODDLPRICE(Qubannoo; Bilchina; DhalaaXumura; Saffisa; Gatii; Fayyii; Ammamtaa; Hundee)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3159132\n"
+"122\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150134\n"
+"123\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145245\n"
+"124\n"
+"help.text"
+msgid "<emph>LastInterest</emph> is the last interest date of the security."
+msgstr "<emph>DhalaaXumura</emph>n ittisa dhala aduu xumuraati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151014\n"
+"125\n"
+"help.text"
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr "<emph>Saffisnii</emph> saffisa dhala waggaati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149003\n"
+"126\n"
+"help.text"
+msgid "<emph>Price</emph> is the price of the security."
+msgstr "<emph>Gatii</emph>n gatii ittisati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148880\n"
+"127\n"
+"help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr "<emph>Fayyiin</emph> gatii fayyii safartuu ammaa kan gatii harkaa 100 keessaati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155622\n"
+"128\n"
+"help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Ammamtaa</emph>n lakkoofsa kanfaltiiwwan dhalaa waggaati (1, 2 ykn 4)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3145303\n"
+"129\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145350\n"
+"130\n"
+"help.text"
+msgid "Settlement date: April 20 1999, maturity date: June 15 1999, last interest: October 15 1998. Interest rate: 3.75 per cent, price: 99.875 currency units, redemption value: 100 currency units, frequency of payments: half-yearly = 2, basis: = 0"
+msgstr "Aduu qubanoo:Bitooteessa 20 1999, aduu bilchinaa: Waxxabajii 15 1999, dhalaa xumuraa: Onkoololeessa 15 1998. Saffisa dhala: paarsantii 3.75, Gatiin: safartuu amma 99.875, gatiin fayyii: safartuu amma 100, ammamtaan kanfaltii: walakka waggaati= 2, hundeen:walqixaa 0ti"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3157990\n"
+"131\n"
+"help.text"
+msgid "The yield of the security, that has an irregular last interest date, is calculated as follows:"
+msgstr "Kennaaan ittisaa, kan aduu dhala xumura idileen alaa akka armaan gaditi shallagama."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150572\n"
+"132\n"
+"help.text"
+msgid "=ODDLYIELD(\"1999-04-20\";\"1999-06-15\"; \"1998-10-15\"; 0.0375; 99.875; 100;2;0) returns 0.044873 or 4.4873%."
+msgstr "=ODDLYIELD(\"1999-04-20\";\"1999-06-15\"; \"1998-10-15\"; 0.0375; 99.875; 100;2;0) returns 0.044873 or 4.4873%."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3148768\n"
+"help.text"
+msgid "<bookmark_value>calculating;variable declining depreciations</bookmark_value><bookmark_value>depreciations;variable declining</bookmark_value><bookmark_value>VDB function</bookmark_value>"
+msgstr "<bookmark_value>shallaguu;dullatamoota jijjiramaa hir'isuu </bookmark_value><bookmark_value>dullaatamoota;jijjiiramaa hir'isuu</bookmark_value><bookmark_value>fankishinii VDB</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3148768\n"
+"222\n"
+"help.text"
+msgid "VDB"
+msgstr "VDB"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154636\n"
+"223\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VDB\">Returns the depreciation of an asset for a specified or partial period using a variable declining balance method.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VDB\">Toftaa gatii jijjiirama kufaa fayyadamuun dippirisheeshinii qabeenya kan iftaayee ykn gariin yeroof kenna</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3155519\n"
+"224\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149025\n"
+"225\n"
+"help.text"
+msgid "VDB(Cost; Salvage; Life; S; End; Factor; Type)"
+msgstr "VDB(Gaii; Balaarraa kan hafe; Jiruu; S; Dhuma; Murtibaa; Akaakuu)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150692\n"
+"226\n"
+"help.text"
+msgid "<emph>Cost</emph> is the initial value of an asset."
+msgstr "<emph>Gatii</emph>'n Gatii calqabaa qabeenyaati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155369\n"
+"227\n"
+"help.text"
+msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
+msgstr "<emph>Balaarraa kan hafe</emph>Gatii mahaallaqa dhuma Dullatooma ti."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154954\n"
+"228\n"
+"help.text"
+msgid "<emph>Life</emph> is the depreciation duration of the asset."
+msgstr "<emph>Jiruu</emph>'n turtii dullatooma mahallaqati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152817\n"
+"229\n"
+"help.text"
+msgid "<emph>S</emph> is the start of the depreciation. A must be entered in the same date unit as the duration."
+msgstr "<emph>S</emph>'n jalqabaa dullatoomaati. Akkaa turti safaartuu aduu wal qixaa ta'een galfamuu qaba."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153221\n"
+"230\n"
+"help.text"
+msgid "<emph>End</emph> is the end of the depreciation."
+msgstr "<emph>Dhuma</emph>'n dhuma dullatootati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147536\n"
+"231\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the depreciation factor. Factor = 2 is double rate depreciation."
+msgstr "<emph>Murtibaa</emph>'n (dirqaale) murtiba dullatoomati. Murtibaa = 2'n dhalaa dullatoomaa dachaati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154865\n"
+"232\n"
+"help.text"
+msgid "<emph>Type </emph>is an optional parameter. Type = 1 means a switch to linear depreciation. In Type = 0 no switch is made."
+msgstr "<emph>Akaakuu </emph> jijjiramoota dirqaaleeti. Akaakuu = 1'n karaa iti dullatooma sorooro itti jijjiramu dha.Akaakuu = 0 jijjiramni hin ademsiifamu."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_idN10A0D\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3148429\n"
+"233\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153927\n"
+"234\n"
+"help.text"
+msgid "What is the declining-balance double-rate depreciation for a period if the initial cost is 35,000 currency units and the value at the end of the depreciation is 7,500 currency units. The depreciation period is 3 years. The depreciation from the 10th to the 20th period is calculated."
+msgstr "Yeroo tokkoof yoo gatiin calqabaa 35,000 safartuu maallaqan fi gatiin xumuraa dullatooma 7,500 safartuu maallaqaan ta'e,makkiin dachaa diprisheeshinii gadii bu'uunsa qarshii meeqa? Yeroon dullatoomaa waggoota 3 ta'a.Dallatoomni yeroo 10ffaa hamma 20ffaa ni shallagama."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155991\n"
+"235\n"
+"help.text"
+msgid "<item type=\"input\">=VDB(35000;7500;36;10;20;2)</item> = 8603.80 currency units. The depreciation during the period between the 10th and the 20th period is 8,603.80 currency units."
+msgstr "Safartuu mahallaqan<item type=\"input\">=VDB(35000;7500;36;10;20;2)</item> = 8603.80 ta'a. Yommuu dullatoomani yeroo 10ffaa fi 20ffaa gidduu ta'an safartuu mahallaqaa 8,603.80 ta'a."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3147485\n"
+"help.text"
+msgid "<bookmark_value>calculating;internal rates of return, irregular payments</bookmark_value><bookmark_value>internal rates of return;irregular payments</bookmark_value><bookmark_value>XIRR function</bookmark_value>"
+msgstr "<bookmark_value>shallaguun;dhalaawwwan keessa deebi'an,kaffaltiiwwan idileen alaa</bookmark_value><bookmark_value>dhalawwan keessa deebi'aan;kafffaltiiwwan idlee alaa</bookmark_value><bookmark_value>faankishinii XIRR </bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3147485\n"
+"193\n"
+"help.text"
+msgid "XIRR"
+msgstr "XIRR"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145614\n"
+"194\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_XIRR\">Calculates the internal rate of return for a list of payments which take place on different dates.</ahelp> The calculation is based on a 365 days per year basis, ignoring leap years."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_XIRR\">Tarree kafaltiiwwaniif makkii keessaa deebi'u,kan aduwwan adda addaa keessatti bakka fudhatu shallaga.</ahelp> Shallagichis guyyaawwan 365 waggaa keessaa osoo qammee hin dabalatiin irratti hunda'a."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_idN10E62\n"
+"help.text"
+msgid "If the payments take place at regular intervals, use the IRR function."
+msgstr "Yoo kaffaltiiwwan gidu'ii idileen adeeme,IRR fankishinii fayyadami."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3146149\n"
+"195\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149826\n"
+"196\n"
+"help.text"
+msgid "XIRR(Values; Dates; Guess)"
+msgstr "XIRR(Gatiwwan; Aduuwwan; Malaa dhaayi)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3163821\n"
+"197\n"
+"help.text"
+msgid "<emph>Values</emph> and <emph>Dates</emph> refer to a series of payments and the series of associated date values. The first pair of dates defines the start of the payment plan. All other date values must be later, but need not be in any order. The series of values must contain at least one negative and one positive value (receipts and deposits)."
+msgstr "<emph>Gatiiwwan</emph> fi <emph>Aduuwwan</emph> walfaannee kaffaltiwwan fi walfaannee gatii aduu waliin wal qabatee dha.Cimdiin aduuuwwan calqaba karooraa kaffaltii jalqaba hiika.Gatiiwwan aduu hafan huundii booda,garuu ajaja kamiyyu hin barbaadu.Walfaanneen gatiiwwanii yoo xiqaate neegativii tokkoo fi pozeetiivii tokkoo(kaarniiwwan fi kuufamoota) dirqiin of keessatti qabachuu qaba."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149708\n"
+"198\n"
+"help.text"
+msgid "<emph>Guess</emph> (optional) is a guess that can be input for the internal rate of return. The default is 10%."
+msgstr "<emph>Mala-Dhayitii</emph> (Dirqalee) mala dhayitii dhala keessaa deebi'uuf naquu dandeessuu dha. 10% durtii dha."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3145085\n"
+"199\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149273\n"
+"200\n"
+"help.text"
+msgid "Calculation of the internal rate of return for the following five payments:"
+msgstr "Dhala keessaa deebi'uuf shallaggii kafaltiiwwan shan armaan gadii:"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155838\n"
+"305\n"
+"help.text"
+msgid "A"
msgstr ""
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN10679\n"
+"04060118.xhp\n"
+"par_id3152934\n"
+"306\n"
"help.text"
-msgid "To see a list of all available AutoInput text items for the current column, press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Down Arrow</item>."
+msgid "B"
msgstr ""
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3150439\n"
-"3\n"
+"04060118.xhp\n"
+"par_id3154638\n"
+"307\n"
"help.text"
-msgid "When typing formulas using characters that match previous entries, a Help tip will appear listing the last ten functions used from <emph>Function Wizard</emph>, from all defined range names, from all database range names, and from the content of all label ranges."
-msgstr "yommuu arfiilee isaa galinsa duraa waliin wal simu fayyadamnee formulaa barressinuu,fankiishinoota kudhaan darbaan kan <emph>Dhullee</emph> keessaa tarreessun,hangii maqoota hiikame huundaa irraa,hangii maqoota kuusaa deetaa huundaa irraa,fi qabiyyee hangiiwwan moggaafaman huundaa irraa fayyadamun qacceen gargaarsaa ni uumama."
+msgid "C"
+msgstr ""
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3153363\n"
-"5\n"
+"04060118.xhp\n"
+"par_id3147083\n"
+"308\n"
"help.text"
-msgid "AutoInput is case-sensitive. If, for example, you have written \"Total\" in a cell, you cannot enter \"total\" in another cell of the same column without first deactivating AutoInput."
-msgstr "Ofiinaaqan qub-suukanaawaa dha.Fakkeenyaaf yoo man'ee keessatti \" Waliigala\" barreessite,osoo dursa ofiinaaqa kaka'uumsaleessin tarjaa walfakkata keessatti \"waliigala\" kan jedhu man'ee biraa keessatti galchuu hin dandeessu."
+msgid "1"
+msgstr ""
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"tit\n"
+"04060118.xhp\n"
+"par_id3151187\n"
+"309\n"
"help.text"
-msgid "Hyphenation"
-msgstr "Murfisa"
+msgid "2001-01-01"
+msgstr "2001-01-01"
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"bm_id3159399\n"
+"04060118.xhp\n"
+"par_id3145212\n"
+"201\n"
"help.text"
-msgid "<bookmark_value>automatic hyphenation in spreadsheets</bookmark_value><bookmark_value>hyphenation; in spreadsheets</bookmark_value><bookmark_value>syllables in spreadsheets</bookmark_value>"
-msgstr "<bookmark_value>wardii keessaatti murfisa ofiini</bookmark_value><bookmark_value>murfisa; wardii keessaati</bookmark_value><bookmark_value>wardiiwwan keessaatti birsagaalee</bookmark_value>"
+msgid "-<item type=\"input\">10000</item>"
+msgstr "-<item type=\"input\">10000</item>"
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"hd_id3159399\n"
-"1\n"
+"04060118.xhp\n"
+"par_id3146856\n"
+"202\n"
"help.text"
-msgid "Hyphenation"
-msgstr "Murfisa"
+msgid "<item type=\"input\">Received</item>"
+msgstr "<item type=\"input\">Fudhatame</item>"
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3145068\n"
-"2\n"
+"04060118.xhp\n"
+"par_id3153277\n"
+"310\n"
"help.text"
-msgid "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\">The <emph>Hyphenation </emph>command calls the dialog for setting the hyphenation in $[officename] Calc.</ahelp></variable>"
-msgstr "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\">Murfisnii<emph>ajejjaa </emph>murfisa qindaa'inaa$[officename] keessaa shallaguuf qaqaa waama .</ahelp></variable>"
+msgid "2"
+msgstr ""
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3154366\n"
-"3\n"
+"04060118.xhp\n"
+"par_id3154052\n"
+"203\n"
"help.text"
-msgid "You can only turn on the automatic hyphenation in $[officename] Calc when the <link href=\"text/shared/01/05340300.xhp\" name=\"row break\">row break</link> feature is active."
-msgstr "Shallagii $[officename] keessaati ofiin murfisa qofa garagalchuu dandeesa <link href=\"text/shared/01/05340300.xhp\" name=\"row break\">cabni tarree</link> kolatii kaka'aa dha."
+msgid "2001-01-02"
+msgstr "2001-01-02"
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"hd_id3153192\n"
-"4\n"
+"04060118.xhp\n"
+"par_id3151297\n"
+"204\n"
"help.text"
-msgid "Hyphenation for selected cells."
-msgstr "Man'eewwan filameef murfisa."
+msgid "<item type=\"input\">2000</item>"
+msgstr "<item type=\"input\">2000</item>"
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3150868\n"
-"5\n"
+"04060118.xhp\n"
+"par_id3149985\n"
+"205\n"
"help.text"
-msgid "Select the cells for which you want to change the hyphenation."
-msgstr "Man'eewwan murfisa jijjiruu barbaddu fili."
+msgid "<item type=\"input\">Deposited</item>"
+msgstr "<item type=\"input\">Kuusame</item>"
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3150440\n"
-"6\n"
+"04060118.xhp\n"
+"par_id3154744\n"
+"311\n"
"help.text"
-msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
-msgstr "<emph>Meeshaalee - Afaan - Murfisa</emph> fili."
+msgid "3"
+msgstr ""
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3156441\n"
-"7\n"
+"04060118.xhp\n"
+"par_id3153151\n"
+"206\n"
"help.text"
-msgid "The <emph>Format Cells</emph> dialog appears with the <emph>Alignment</emph> tab page open."
-msgstr "Man'eewwan dhangii<emph>n</emph> qaqnii <emph>Hiriira</emph> fuulaa tabii banamee waliin mul'ata."
+msgid "2001-03-15"
+msgstr "2001-03-15"
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3149260\n"
-"12\n"
+"04060118.xhp\n"
+"par_id3145657\n"
+"207\n"
"help.text"
-msgid "Mark the <emph>Wrap text automatically</emph> and <emph>Hyphenation active</emph> check boxes."
-msgstr "<emph>Baruu ofmaan mara</emph> malakata godhiitii sanduuqawwan mirkanneessa <emph>murfisa kakaasa</emph>."
+msgid "2500"
+msgstr "2500"
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"hd_id3153094\n"
-"8\n"
+"04060118.xhp\n"
+"par_id3155101\n"
+"312\n"
"help.text"
-msgid "Hyphenation for Drawing Objects"
-msgstr "Wantootaa Fakkasaf Murfisa"
+msgid "4"
+msgstr ""
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3148577\n"
-"9\n"
+"04060118.xhp\n"
+"par_id3146894\n"
+"208\n"
"help.text"
-msgid "Select a drawing object."
-msgstr "Wantoo fakkasa fili"
+msgid "2001-05-12"
+msgstr "2001-05-12"
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3156285\n"
-"10\n"
+"04060118.xhp\n"
+"par_id3143231\n"
+"209\n"
"help.text"
-msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
-msgstr "<emph>Meeshaalee - Afaan - Murfisa</emph> fili."
+msgid "5000"
+msgstr "5000"
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3147394\n"
-"11\n"
+"04060118.xhp\n"
+"par_id3156012\n"
+"313\n"
"help.text"
-msgid "Each time you call the command you turn the hyphenation for the drawing object on or off. A check mark shows the current status."
-msgstr "Yeroo kamiiyyuu yoo ajejja wamtuu murfisa garagalchuun wantoo fakkasa bani ykn dhaamsi. Haalojiiwwan ammaa mallattoo mirkaneessan mul'isu."
+msgid "5"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149758\n"
+"210\n"
+"help.text"
+msgid "2001-08-10"
+msgstr "2001-08-10"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147495\n"
+"211\n"
+"help.text"
+msgid "1000"
+msgstr "1000"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152793\n"
+"212\n"
+"help.text"
+msgid "=XIRR(B1:B5; A1:A5; 0.1) returns 0.1828."
+msgstr "=XIRR(B1:B5; A1:A5; 0.1) 0.1828 kenna."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3149198\n"
+"help.text"
+msgid "<bookmark_value>XNPV function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii XNPV </bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3149198\n"
+"213\n"
+"help.text"
+msgid "XNPV"
+msgstr "XNPV"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153904\n"
+"214\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_XNPV\">Calculates the capital value (net present value)for a list of payments which take place on different dates.</ahelp> The calculation is based on a 365 days per year basis, ignoring leap years."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_XNPV\">Tarree kafaltiiwwaniif gatii maallaqa jalqabaa(gatii qulkee ammaa)kan aduwwan adda addaa keessatti bakka fudhatu shallaga.</ahelp> Shallagichis guyyaawwan 365 waggaa keessaa osoo qammee hin dabalatiin irratti hunda'a."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_idN11138\n"
+"help.text"
+msgid "If the payments take place at regular intervals, use the NPV function."
+msgstr "Yoo kafaltiiwwan giddu'uuwwan falfakkaatan adeeme,faankishinii NPV fayyadami."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3155323\n"
+"215\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150117\n"
+"216\n"
+"help.text"
+msgid "XNPV(Rate; Values; Dates)"
+msgstr "XNPV(Dhala; Gatiiwwan; Aduuwwan)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153100\n"
+"217\n"
+"help.text"
+msgid "<emph>Rate</emph> is the internal rate of return for the payments."
+msgstr "<emph>Dhalli</emph> kafaltiif dhala kessaa deebisa."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155395\n"
+"218\n"
+"help.text"
+msgid "<emph>Values</emph> and <emph>Dates</emph> refer to a series of payments and the series of associated date values. The first pair of dates defines the start of the payment plan. All other date values must be later, but need not be in any order. The series of values must contain at least one negative and one positive value (receipts and deposits)"
+msgstr "<emph>Gatiiwwan</emph> fi <emph>Aduuwan</emph> walfaannee kaffaltiwwan fi walfaannee gatii aduu waliin wal qabatee dha.Cimdiin aduuuwwan calqaba karooraa kaffaltii jalqaba hiika.Gatiiwwan aduu hafan huundii booda,garuu ajaja kamiyyu hin barbaadu.Walfaanneen gatiiwwanii yoo xiqaate neegativii tokkoo fi pozeetiivii tokkoo(kaarniiwwan fi kuufamoota) dirqiin of keessatti qabachuu qaba."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3148832\n"
+"219\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150525\n"
+"220\n"
+"help.text"
+msgid "Calculation of the net present value for the above-mentioned five payments for a notional internal rate of return of 6%."
+msgstr "dhala keessaa waalta'aaf shallagni gatii qulkee ammaa kan kaffaltiiwwa shanan armaan olitti eeramaniif 6% kenna"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149910\n"
+"221\n"
+"help.text"
+msgid "<item type=\"input\">=XNPV(0.06;B1:B5;A1:A5)</item> returns 323.02."
+msgstr "<item type=\"input\">=XNPV(0.06;B1:B5;A1:A5)</item> 323.02 kenna."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3148822\n"
+"help.text"
+msgid "<bookmark_value>calculating;rates of return</bookmark_value><bookmark_value>RRI function</bookmark_value>"
+msgstr "<bookmark_value>shallaguuf;dhaloota deebi'u</bookmark_value><bookmark_value>faankishinii RRI</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3148822\n"
+"237\n"
+"help.text"
+msgid "RRI"
+msgstr "RRI"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154293\n"
+"238\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZGZ\">Calculates the interest rate resulting from the profit (return) of an investment.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZGZ\">Makkii dhalaa kan bu'aa(kenna) inveestimeentii irraa argamu shallaga.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3148444\n"
+"239\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148804\n"
+"240\n"
+"help.text"
+msgid "RRI(P; PV; FV)"
+msgstr "RRI(P; PV; FV)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154901\n"
+"241\n"
+"help.text"
+msgid "<emph>P</emph> is the number of periods needed for calculating the interest rate."
+msgstr "<emph>P</emph>'n lakkoofsa yeroowwan makkii dhalaaf barbaachisu shallaguu."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3159149\n"
+"242\n"
+"help.text"
+msgid "<emph>PV</emph> is the present (current) value. The cash value is the deposit of cash or the current cash value of an allowance in kind. As a deposit value a positive value must be entered; the deposit must not be 0 or <0."
+msgstr "<emph>PV</emph>gatii ammeeti.Gatiin callaa kuusaa challaa ykn gatii callaa ammee kan akaakuun durgoo ti.Akkaa gatii kuusatti gatii poozeetivii ta'ee dirqiin gala;gatiin kuusaa 0 ykn <0 ta'uu hin qabu."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149771\n"
+"243\n"
+"help.text"
+msgid "<emph>FV</emph> determines what is desired as the cash value of the deposit."
+msgstr "<emph>FV</emph>'n maaltu akka gatii callaa kuusaatti barbaachisa jedhu murteessa"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3148941\n"
+"244\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154212\n"
+"245\n"
+"help.text"
+msgid "For four periods (years) and a cash value of 7,500 currency units, the interest rate of the return is to be calculated if the future value is 10,000 currency units."
+msgstr "Yoroowwan (wagggoota) afuri fi gatiin callaa 7,500 safaruuwwan ammeen,makkiin dhalaa deebi'uu kan shallagamuu yoo gatiin egeree 10,000 safartuuwwan ammeen ta'ee dha."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150775\n"
+"246\n"
+"help.text"
+msgid "<item type=\"input\">=RRI(4;7500;10000)</item> = 7.46 %"
+msgstr "<item type=\"input\">=RRI(4;7500;10000)</item> = 7.46 %"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145413\n"
+"247\n"
+"help.text"
+msgid "The interest rate must be 7.46 % so that 7,500 currency units will become 10,000 currency units."
+msgstr "Makkii dhalaa dirqiin 7.46% ta'uu qaba kanaaf 7,500 safartuuwwan ammeen gara 10,000 safartuu ammeetti ta'a jechuu dha"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3154267\n"
+"help.text"
+msgid "<bookmark_value>calculating;constant interest rates</bookmark_value><bookmark_value>constant interest rates</bookmark_value><bookmark_value>RATE function</bookmark_value>"
+msgstr "<bookmark_value>Shallaguun;makkii dhalaawwan dhaabbataa</bookmark_value><bookmark_value>makkii dhalaawwan dhaabbataa</bookmark_value><bookmark_value>fankiishinii RATE</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3154267\n"
+"249\n"
+"help.text"
+msgid "RATE"
+msgstr "RATE"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151052\n"
+"250\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZINS\">Returns the constant interest rate per period of an annuity.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZINS\">Yeroo yerootti waggaa keessa makkii dhalaa dhaabbataa kenna.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3154272\n"
+"251\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3158423\n"
+"252\n"
+"help.text"
+msgid "RATE(NPer; Pmt; PV; FV; Type; Guess)"
+msgstr "RATE(NPer; Pmt; PV; FV; Type; Guess)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148910\n"
+"253\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which payments are made (payment period)."
+msgstr "<emph>NPer</emph>'n lakkoofsa dimshaasha yeroo,kan kaffaaltiin itti adeemsifamuu dha(yeroo kaffaltii)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148925\n"
+"254\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the constant payment (annuity) paid during each period."
+msgstr "<emph>Pmt</emph>n kaffaltii dhaabbataa(waggaan) kan tokko tokkoo yeroo irratti kaffalamuu dha."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149160\n"
+"255\n"
+"help.text"
+msgid "<emph>PV</emph> is the cash value in the sequence of payments."
+msgstr "<emph>PV</emph>'n gatii callaa duuraa duubaa kaffaltiiti."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3166456\n"
+"256\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value, which is reached at the end of the periodic payments."
+msgstr "<emph>FV</emph>'n (dirqalee) gatii egere ti, kunis dhuma kaffaltiiwwan yeroo itti qaqabuuti."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153243\n"
+"257\n"
+"help.text"
+msgid "<emph>Type</emph> (optional) is the due date of the periodic payment, either at the beginning or at the end of a period."
+msgstr "<emph>Type</emph>'n (dirqaale)guyyaa dhumaa kaffaltii yerooti,jalqaba ykn dhumaa yerooti."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146949\n"
+"258\n"
+"help.text"
+msgid "<emph>Guess</emph> (optional) determines the estimated value of the interest with iterative calculation."
+msgstr "<emph>Mala dhayii</emph>'n (dirqaale) gatii makkii shallaggii deddebi'aan shallaguun tilmaamamee mureessa."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_idN10E2A\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3149791\n"
+"259\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150706\n"
+"260\n"
+"help.text"
+msgid "What is the constant interest rate for a payment period of 3 periods if 10 currency units are paid regularly and the present cash value is 900 currency units."
+msgstr "Yoo gatiin callaa ammee qarshii 900 mallaqa safartuun ta'ee fi qarshii 10 safartu maallaqan idileen kaffalama ta'ee,yeroo kaffaltii 3'f yeroon kaffaltii makkii dhalaa dhaabbataa meeqaa?"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155586\n"
+"261\n"
+"help.text"
+msgid "<item type=\"input\">=RATE(3;10;900)</item> = -121% The interest rate is therefore 121%."
+msgstr "<item type=\"input\">=RATE(3;10;900)</item> = -121% kanaafuu makkiin dhalaa 121% ta'a."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3149106\n"
+"help.text"
+msgid "<bookmark_value>INTRATE function</bookmark_value>"
+msgstr "<bookmark_value>faankiishinii INTRATE</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3149106\n"
+"60\n"
+"help.text"
+msgid "INTRATE"
+msgstr "INTRATE"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149918\n"
+"61\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_INTRATE\">Calculates the annual interest rate that results when a security (or other item) is purchased at an investment value and sold at a redemption value. No interest is paid.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_INTRATE\">yommuu ittisni (ykn wanta gara bira ) gatii inveestimeentiin bitamee fi gatii mugoota kanfaluun gurguramee,makkii dhala waggaa kana argamsiise shallaga.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3149974\n"
+"62\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149800\n"
+"63\n"
+"help.text"
+msgid "INTRATE(Settlement; Maturity; Investment; Redemption; Basis)"
+msgstr "INTRATE(Qubannoo; Gayeessummaa ; Kaawwatii; Mugoota kanfaluu; Hundee)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148618\n"
+"64\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148988\n"
+"65\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security is sold."
+msgstr "<emph>Gayeessummaa</emph>'n guyyaa ittisni itti gurgurame dha."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154604\n"
+"66\n"
+"help.text"
+msgid "<emph>Investment</emph> is the purchase price."
+msgstr "<emph>Kaawwatii</emph>'n gatii bittaati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154337\n"
+"67\n"
+"help.text"
+msgid "<emph>Redemption</emph> is the selling price."
+msgstr "<emph>Mugoota kanfaluu</emph>'n gatii gurgurtaati. the selling price."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3145380\n"
+"68\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149426\n"
+"69\n"
+"help.text"
+msgid "A painting is bought on 1990-01-15 for 1 million and sold on 2002-05-05 for 2 million. The basis is daily balance calculation (basis = 3). What is the average annual level of interest?"
+msgstr "Dibun bara 1990-01-15 miiliyoona 1 bitame bara 2002-05-05 miiliyoona 2 gurgurame.hundee shallaggi haftoo guyyaati (hundee = 3).giduugalli sadarkaa makkii waggaa meeqa?"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151125\n"
+"70\n"
+"help.text"
+msgid "=INTRATE(\"1990-01-15\"; \"2002-05-05\"; 1000000; 2000000; 3) returns 8.12%."
+msgstr "=INTRATE(\"1990-01-15\"; \"2002-05-05\"; 1000000; 2000000; 3) 8.12% kenna."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3148654\n"
+"help.text"
+msgid "<bookmark_value>COUPNCD function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii COUPNCD</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3148654\n"
+"163\n"
+"help.text"
+msgid "COUPNCD"
+msgstr "COUPNCD"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149927\n"
+"164\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPNCD\">Returns the date of the first interest date after the settlement date. Format the result as a date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPNCD\">aduu qubannoo booda guyyaa jalqaba makkiif yeroo kenna.Firii akka aduutti dhangeessi.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3153317\n"
+"165\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150423\n"
+"166\n"
+"help.text"
+msgid "COUPNCD(Settlement; Maturity; Frequency; Basis)"
+msgstr "COUPNCD(Qubannoo; Bilchina; Ammamtaa; Hundee)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150628\n"
+"167\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153536\n"
+"168\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145313\n"
+"169\n"
+"help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Ammamtaa</emph>n lakkoofsa kanfaltiiwwan dhalaa waggaati (1, 2 ykn 4)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3155424\n"
+"170\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154794\n"
+"171\n"
+"help.text"
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) when is the next interest date?"
+msgstr "Ittisni 2001-01-25 bitame; aduun bilchinaa 20001-11-15 ta'a.Shallaga madaala dhala guyyaa (hundee 3) fayyadamuudhan aduun dhala itti aanuu meeqa?"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3159251\n"
+"172\n"
+"help.text"
+msgid "=COUPNCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2001-05-15."
+msgstr "=COUPNCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) 2001-05-15 kenna."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3143281\n"
+"help.text"
+msgid "<bookmark_value>COUPDAYS function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii COUPDAYS</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3143281\n"
+"143\n"
+"help.text"
+msgid "COUPDAYS"
+msgstr "COUPDAYS"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149488\n"
+"144\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYS\">Returns the number of days in the current interest period in which the settlement date falls.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPDAYS\">Lakkoofsa guyyoota dhala yeroo ammaa keessaa kan aduun qubannoo irra oolu kenna.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3148685\n"
+"145\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149585\n"
+"146\n"
+"help.text"
+msgid "COUPDAYS(Settlement; Maturity; Frequency; Basis)"
+msgstr "COUPDAYS(Qubannoo; Bilchina; Ammamtaa; Hundee)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152767\n"
+"147\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151250\n"
+"148\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146126\n"
+"149\n"
+"help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Ammamtaa</emph>n lakkoofsa kanfaltiiwwan dhalaa waggaati (1, 2 ykn 4)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3153705\n"
+"150\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147530\n"
+"151\n"
+"help.text"
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days are there in the interest period in which the settlement date falls?"
+msgstr "Ittisni 2001-01-25 bitame; aduun bilchinaa 20001-11-15 ta'a.Shallaga madaala dhala guyyaa (hundee 3) fayyadamuudhan guyyoota meqatuu yeroo dhalaa kan guyyaan qubannoo irra ooluu keessa jiru?"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3156338\n"
+"152\n"
+"help.text"
+msgid "=COUPDAYS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 181."
+msgstr "=COUPDAYS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) 181 kenna."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3154832\n"
+"help.text"
+msgid "<bookmark_value>COUPDAYSNC function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii COUPDAYSNC</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3154832\n"
+"153\n"
+"help.text"
+msgid "COUPDAYSNC"
+msgstr "COUPDAYSNC"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147100\n"
+"154\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYSNC\">Returns the number of days from the settlement date until the next interest date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPDAYSNC\">Lakkoofsa guyyoota aduu qubannoo hanga aduu dhalaa itti aanutti jiran kenna.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3151312\n"
+"155\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155121\n"
+"156\n"
+"help.text"
+msgid "COUPDAYSNC(Settlement; Maturity; Frequency; Basis)"
+msgstr "COUPDAYSNC(Qubannoo; Bilchina; Ammamtaa; Hundee)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3158440\n"
+"157\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146075\n"
+"158\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154620\n"
+"159\n"
+"help.text"
+msgid "<emph>Frequency </emph>is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Ammamtaa</emph>n lakkoofsa kanfaltiiwwan dhalaa waggaati (1, 2 ykn 4)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3155604\n"
+"160\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148671\n"
+"161\n"
+"help.text"
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days are there until the next interest payment?"
+msgstr "Ittisni 2001-01-25 bitame; aduun bilchinaa 20001-11-15 ta'a.Shallaga madaala dhala guyyaa (hundee 3) fayyadamuudhan hanga aduu dhalaa itti aanuutti guyyoota meeqatuu argamuu?"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3156158\n"
+"162\n"
+"help.text"
+msgid "=COUPDAYSNC(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 110."
+msgstr "=COUPDAYSNC(\"2001-01-25\"; \"2001-11-15\"; 2; 3) 110 kenna."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3150408\n"
+"help.text"
+msgid "<bookmark_value>COUPDAYBS function</bookmark_value><bookmark_value>durations;first interest payment until settlement date</bookmark_value><bookmark_value>securities;first interest payment until settlement date</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii COUPDAYBS </bookmark_value><bookmark_value>Turmaatawwan;kanfaltii dhalaa 1ffaa hanga aduu qubannootti</bookmark_value><bookmark_value>ittisawwan;kanfaltii dhalaa 1fffaa hanga aduu qubannootti</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3150408\n"
+"133\n"
+"help.text"
+msgid "COUPDAYBS"
+msgstr "COUPDAYBS"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146795\n"
+"134\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYBS\">Returns the number of days from the first day of interest payment on a security until the settlement date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPDAYBS\">Lakkoofsa guuyyootaa guyyyaa kanfaltii dhalaa 1ffaa ittisaa irraa kaasee hanga aduu qubannootti kenna.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3156142\n"
+"135\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3159083\n"
+"136\n"
+"help.text"
+msgid "COUPDAYBS(Settlement; Maturity; Frequency; Basis)"
+msgstr "COUPDAYBS(Qubannoo; Bilchina; Ammamtaa; Hundee)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146907\n"
+"137\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3159390\n"
+"138\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154414\n"
+"139\n"
+"help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Ammamtaa</emph>n lakkoofsa kanfaltiiwwan dhalaa waggaati (1, 2 ykn 4)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3153880\n"
+"140\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150592\n"
+"141\n"
+"help.text"
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days is this?"
+msgstr "Ittisni 2001-01-25 bitame; aduun bilchinaa 20001-11-15 ta'a.Dhalli waggaa walakkaatti kanfalama.Shallaga madaala dhala guyyaa (hundee 3) fayyadamuudhan kun guyyoota meeqa?"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151103\n"
+"142\n"
+"help.text"
+msgid "=COUPDAYBS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 71."
+msgstr "=COUPDAYBS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) 71 kenna."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3152957\n"
+"help.text"
+msgid "<bookmark_value>COUPPCD function</bookmark_value><bookmark_value>dates;interest date prior to settlement date</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii COUPPCD</bookmark_value><bookmark_value>aduuwwan;aduu dhalaa aduu qubannoo duraa</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3152957\n"
+"183\n"
+"help.text"
+msgid "COUPPCD"
+msgstr "COUPPCD"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153678\n"
+"184\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPPCD\">Returns the date of the interest date prior to the settlement date. Format the result as a date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPPCD\">aduu aduu dhalaa aduu qubannoo duraa kenna. Bu'aa akka aduutti dhangeessi.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3156269\n"
+"185\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153790\n"
+"186\n"
+"help.text"
+msgid "COUPPCD(Settlement; Maturity; Frequency; Basis)"
+msgstr "COUPNCD(Qubannoo; Bilchina; Ammamtaa; Hundee)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150989\n"
+"187\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154667\n"
+"188\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154569\n"
+"189\n"
+"help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Ammamtaa</emph>n lakkoofsa kanfaltiiwwan dhalaa waggaati (1, 2 ykn 4)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3150826\n"
+"190\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148968\n"
+"191\n"
+"help.text"
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) what was the interest date prior to purchase?"
+msgstr "Ittisni 2001-01-25 bitame; aduun bilchinaa 20001-11-15 ta'a.dhalli waggaa walakkaatti kanfalama (ammamtaan 2).Shallaga madaala dhala guyyaa (hundee 3) fayyadamuudhan aduun dhala bittaa dura jitu kamii?"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149992\n"
+"192\n"
+"help.text"
+msgid "=COUPPCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2000-15-11."
+msgstr "=COUPPCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) 2000-15-11 kenna."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3150673\n"
+"help.text"
+msgid "<bookmark_value>COUPNUM function</bookmark_value><bookmark_value>number of coupons</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii COUPNUM</bookmark_value><bookmark_value>lakkoofsa boonoowwani</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3150673\n"
+"173\n"
+"help.text"
+msgid "COUPNUM"
+msgstr "COUPNUM"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154350\n"
+"174\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPNUM\">Returns the number of coupons (interest payments) between the settlement date and the maturity date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPNUM\">Lakkoofsa boonoowwan (kanfaltiiwwan dhalaa) gidduu aduu qubannoo fi aduu bilchinaatti argaman kenna.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3148400\n"
+"175\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153200\n"
+"176\n"
+"help.text"
+msgid "COUPNUM(Settlement; Maturity; Frequency; Basis)"
+msgstr "COUPNUM(Qubannoo; Bilchina; Ammamtaa; Hundee)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3159406\n"
+"177\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155864\n"
+"178\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154720\n"
+"179\n"
+"help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Ammamtaa</emph>n lakkoofsa kanfaltiiwwan dhalaa waggaati (1, 2 ykn 4)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3149319\n"
+"180\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152460\n"
+"181\n"
+"help.text"
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many interest dates are there?"
+msgstr "Ittisni 2001-01-25 bitame; aduun bilchinaa 20001-11-15 ta'a.Dhalli waggaa walakkaatti kanfalama.Shallaga madaala dhala guyyaa (hundee 3) fayyadamuudhan aduuwwan dhalaa meeqatuu jiraa?"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150640\n"
+"182\n"
+"help.text"
+msgid "=COUPNUM(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2."
+msgstr "=COUPNUM(\"2001-01-25\"; \"2001-11-15\"; 2; 3) 2 kenna."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3149339\n"
+"help.text"
+msgid "<bookmark_value>IPMT function</bookmark_value><bookmark_value>periodic amortizement rates</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii IPMT</bookmark_value><bookmark_value>safffisawwan irradedeebin jala jalaa baasuu</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3149339\n"
+"263\n"
+"help.text"
+msgid "IPMT"
+msgstr "IPMT"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154522\n"
+"264\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZINSZ\">Calculates the periodic amortizement for an investment with regular payments and a constant interest rate.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZINSZ\">Kaawwatii kanfaltii idilee fi saffisa dhala seranaa wajjiniitif irradedeebi jala jalaa baasuu shallaga.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3153266\n"
+"265\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151283\n"
+"266\n"
+"help.text"
+msgid "IPMT(Rate; Period; NPer; PV; FV; Type)"
+msgstr "IPMT(Saffisa; Yeroo; NPer; PV; FV; Akaakuu)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147313\n"
+"267\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>Saffisni</emph> irradedeebi saffisa dhalaati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145158\n"
+"268\n"
+"help.text"
+msgid "<emph>Period</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr "<emph>Yeroo</emph>n yeroo, kan dhalli dhalaa shallagamuufi dha.Yeroo=NPER yoo dhalli dhalaa yeroo dhumaatif shallagame."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147577\n"
+"269\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr "<emph>NPer</emph>n ida'ama lakkoofsa yeroowwanii,kan yommuu galiin waggaa itti kanfalamu."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3156211\n"
+"270\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr "<emph>PV</emph>ntartiiba kanfaltiwwanii keessatti gatii horii callaa ammaati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151213\n"
+"271\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr "<emph>FV</emph> (filannoo) xumura yeroowwanii irratti gatii barbaadamaa (gatii duranaa) dha."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154195\n"
+"272\n"
+"help.text"
+msgid "<emph>Type</emph> is the due date for the periodic payments."
+msgstr "<emph>Akaakuu</emph>n kanfaltiiwwan irradedeebif aduu ta'umsaati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3150102\n"
+"273\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149438\n"
+"274\n"
+"help.text"
+msgid "What is the interest rate during the fifth period (year) if the constant interest rate is 5% and the cash value is 15,000 currency units? The periodic payment is seven years."
+msgstr "Yoo saffisni dhala seranaa 5% fi gatiin horii callaa safartuu sharafaa 15,000 ta'e saffisni dhalaa yeroo shanaffaa(waggaa) hagamii? Irradedebin kanfaltii waggoota torba."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150496\n"
+"275\n"
+"help.text"
+msgid "<item type=\"input\">=IPMT(5%;5;7;15000)</item> = -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr "<item type=\"input\">=IPMT(5%;5;7;15000)</item> = -352.97 safartuu sharafaa. Dhalli dhalaa yeroo shanaffaa (waggaa) safartuu sharafaa 352.97 dha."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3151205\n"
+"help.text"
+msgid "<bookmark_value>calculating;future values</bookmark_value><bookmark_value>future values;constant interest rates</bookmark_value><bookmark_value>FV function</bookmark_value>"
+msgstr "<bookmark_value>shallaguu;gatiiwwan egeree</bookmark_value><bookmark_value>gatiiwwan egeree;saffisawwan dhala seranaa</bookmark_value><bookmark_value>fankishinii FV</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3151205\n"
+"277\n"
+"help.text"
+msgid "FV"
+msgstr "FV"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154140\n"
+"278\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZW\">Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZW\">Irradedeebi, kanfaltiiwwan seranaa fi saffisa dhala seranaa (gatii egeree) irratti hundaa'uudhan gatii egeree kaawwatii kenna.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3155178\n"
+"279\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145215\n"
+"280\n"
+"help.text"
+msgid "FV(Rate; NPer; Pmt; PV; Type)"
+msgstr "FV(Saffisa; NPer; Pmt; PV; Akaakuu)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155136\n"
+"281\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>Saffisni</emph> irradedeebi saffisa dhalaati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3156029\n"
+"282\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr "<emph>NPer</emph>n lakkoofsa ida'ama yeroowwaniiti (yeroo kanfaltii)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151322\n"
+"283\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr "<emph>NPer</emph>n galii dhaabata waggaa yeroo idileetin kanfalamu."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145256\n"
+"284\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr "<emph>NPer</emph> (filannoo) gatii horii callaa (ammaa) kaawwatiiti."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150999\n"
+"285\n"
+"help.text"
+msgid "<emph>Type</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr "<emph>Akaakuu</emph>n (dirqaala) kanfaltiin xumura ykn jalqaba yerootti ta'uusaa qindeessa."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_idN114D8\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3146800\n"
+"286\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146813\n"
+"287\n"
+"help.text"
+msgid "What is the value at the end of an investment if the interest rate is 4% and the payment period is two years, with a periodic payment of 750 currency units. The investment has a present value of 2,500 currency units."
+msgstr "Yoo saffisni dhalaa 4% fi yeroon kanfaltii waggoota lama, kanfaltii irradedeebi safartuu sharafaa 750 ta'e gatiin xumura kaawwatii hagamii? Kawwatiin gatii ammaa safartuu sharafaa 2,500 qaba."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149302\n"
+"288\n"
+"help.text"
+msgid "<item type=\"input\">=FV(4%;2;750;2500) </item>= -4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr "<item type=\"input\">=FV(4%;2;750;2500) </item>= -4234.00 safartuu sharafaa. gatiin xumura kaawwatii safartuu sharafaa 4234.00 ta'a."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3155912\n"
+"help.text"
+msgid "<bookmark_value>FVSCHEDULE function</bookmark_value><bookmark_value>future values;varying interest rates</bookmark_value>"
+msgstr "<bookmark_value>fankishinii FVSCHEDULE</bookmark_value><bookmark_value>gatiiwwan egeree;saffisawwan dhalaa gegeeddara</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3155912\n"
+"51\n"
+"help.text"
+msgid "FVSCHEDULE"
+msgstr "FVSCHEDULE"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3163726\n"
+"52\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_FVSCHEDULE\">Calculates the accumulated value of the starting capital for a series of periodically varying interest rates.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_FVSCHEDULE\">Tartiibawwan saffisawwan dhalaa yeroo yeroon gegeeddaramaniif kaapitaa jaqabaa irraa gatii kuuusame shallaga.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3149571\n"
+"53\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148891\n"
+"54\n"
+"help.text"
+msgid "FVSCHEDULE(Principal; Schedule)"
+msgstr "FVSCHEDULE(Bu'uura; Kurfeessaa)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148904\n"
+"55\n"
+"help.text"
+msgid "<emph>Principal</emph> is the starting capital."
+msgstr "<emph>Bu'uurri</emph> ka'umsa kapitaalati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148562\n"
+"56\n"
+"help.text"
+msgid "<emph>Schedule</emph> is a series of interest rates, for example, as a range H3:H5 or as a (List) (see example)."
+msgstr "<emph>kurfeesaa</emph>n tartiibawwan saffisawwan dhalaati, fakkenyyaf, akka hammngatti H3:h5 ykn akka (tarree) (fakkeenya ilaali)."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3147288\n"
+"57\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148638\n"
+"58\n"
+"help.text"
+msgid "1000 currency units have been invested in for three years. The interest rates were 3%, 4% and 5% per annum. What is the value after three years?"
+msgstr "safartuun sharafaa 1000 waggoota sadiif kaawwatame.Saffisni dhalaa waggaatti 3%, 4% fi 5% dha. waggaa sadi booda gatiin meeqaa?"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3156358\n"
+"59\n"
+"help.text"
+msgid "<item type=\"input\">=FVSCHEDULE(1000;{0.03;0.04;0.05})</item> returns 1124.76."
+msgstr "<item type=\"input\">=FVSCHEDULE(1000;{0.03;0.04;0.05})</item> 1124.76 kenna."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3156435\n"
+"help.text"
+msgid "<bookmark_value>calculating;number of payment periods</bookmark_value><bookmark_value>payment periods;number of</bookmark_value><bookmark_value>number of payment periods</bookmark_value><bookmark_value>NPER function</bookmark_value>"
+msgstr "<bookmark_value>shallaguu;lakkoofsa yeroowwan kanfaltii</bookmark_value><bookmark_value>yeroowwan kanfaltii;lakkofsa</bookmark_value><bookmark_value>lakoofsa yeroowwan kanfaltii</bookmark_value><bookmark_value>fankishinii NPER</bookmark_value>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3156435\n"
+"290\n"
+"help.text"
+msgid "NPER"
+msgstr "NPER"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152363\n"
+"291\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZZR\">Returns the number of periods for an investment based on periodic, constant payments and a constant interest rate.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZZR\">Irradedeebii, kanfatiiwwan seranaa fi saffisa dhala seranaa (gatii egeree) irratti hundaa'uudhan kaawwatiidhaf lakkoofsa yeroowwanii kenna.</ahelp>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3147216\n"
+"292\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155934\n"
+"293\n"
+"help.text"
+msgid "NPER(Rate; Pmt; PV; FV; Type)"
+msgstr "NPER(Saffisa; Pmt; PV; FV; akaakuu)"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155946\n"
+"294\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>Saffisni</emph> irradedeebi saffisa dhalaati."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149042\n"
+"295\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the constant annuity paid in each period."
+msgstr "<emph>Pmt</emph>'n tokkoon tokkoo yeroo kessatti galii waggaa dhabbataa kanfalame dha."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153134\n"
+"296\n"
+"help.text"
+msgid "<emph>PV</emph> is the present value (cash value) in a sequence of payments."
+msgstr "<emph>PV</emph>n tartiiba kanfaltiwwanii keessatti gatii ammaa (horii callaa)ti."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154398\n"
+"297\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value, which is reached at the end of the last period."
+msgstr "<emph>FV</emph> (filannoo) gatii egereeti, kan xumura dhuma yeroo dhaqqabu."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145127\n"
+"298\n"
+"help.text"
+msgid "<emph>Type</emph> (optional) is the due date of the payment at the beginning or at the end of the period."
+msgstr "<emph>Akaakuu</emph>n (dirqaala) xumura ykn jalqaba yeroo keessatti aduu beellama kanfaltiiti."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_idN1166C\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3155795\n"
+"299\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147378\n"
+"300\n"
+"help.text"
+msgid "How many payment periods does a payment period cover with a periodic interest rate of 6%, a periodic payment of 153.75 currency units and a present cash value of 2.600 currency units."
+msgstr "Yeroon kanfaltii dhala irradedeebii 6%, kanfaltii irradedeebii safartuu sharafaa 153.75 fi gatii horii callaa ammaa safartuu sharafaa 2.600 ta'e yeroowwan kanfaltii hammam qaba?"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3156171\n"
+"301\n"
+"help.text"
+msgid "<item type=\"input\">=NPER(6%;153.75;2600)</item> = -12,02. The payment period covers 12.02 periods."
+msgstr "<item type=\"input\">=NPER(6%;153.75;2600)</item> = -12,02. yeroon kanfaltii yeroowwan 12.02 qaba."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150309\n"
+"314\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Back to Financial Functions Part One</link>"
+msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Duubatti gara Fankishinoota maallaqaa kutaa tokkotti</link>"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153163\n"
+"315\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp\" name=\"Back to Financial Functions Part Two\">Back to Financial Functions Part Two</link>"
+msgstr "<link href=\"text/scalc/01/04060119.xhp\" name=\"Back to Financial Functions Part Two\">Duubatti gara Fankishinoota maallaqaa kutaa lamatti</link>"
#: 04060119.xhp
msgctxt ""
@@ -38093,7 +35029,7 @@ msgctxt ""
"343\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Back to Financial Functions Part One</link>"
-msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Duubatti gara fankishinoota Maallaqaa Kutaa Tokkoti</link>"
+msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Duubatti gara Fankishinoota maallaqaa kutaa tokkotti</link>"
#: 04060119.xhp
msgctxt ""
@@ -38155,7 +35091,7 @@ msgctxt ""
"242\n"
"help.text"
msgid "<emph>Rate</emph> is the periodic interest rate."
-msgstr "<emph>Saffisni</emph>saffisa irradedeebii dhalaati."
+msgstr "<emph>Saffisni</emph> irradedeebi saffisa dhalaati."
#: 04060119.xhp
msgctxt ""
@@ -38288,7 +35224,7 @@ msgctxt ""
"256\n"
"help.text"
msgid "<emph>Rate</emph> is the periodic interest rate."
-msgstr "<emph>Saffisni</emph> saffisa irradedeebii dhalaati."
+msgstr "<emph>Saffisni</emph> irradedeebi saffisa dhalaati."
#: 04060119.xhp
msgctxt ""
@@ -38574,7 +35510,7 @@ msgctxt ""
"270\n"
"help.text"
msgid "<emph>Rate</emph> is the periodic interest rate."
-msgstr "<emph>Saffisni</emph>saffisa irradedeebii dhalaati."
+msgstr "<emph>Saffisni</emph> irradedeebi saffisa dhalaati."
#: 04060119.xhp
msgctxt ""
@@ -38583,7 +35519,7 @@ msgctxt ""
"271\n"
"help.text"
msgid "<emph>NPer</emph> is the payment period with the total number of periods. NPER can also be a non-integer value."
-msgstr "<emph>NPer</emph>n yeroo kanfaltii ida'ama lakkoofsa yeroowwani wajjiniiti. Akkasumas NPER gatii intijeeraan alaa ta'uu danda'a."
+msgstr "<emph>NPer</emph> yeroo kanfaltii ida'ama lakkoofsa yeroowwanii waliiniti. Nper gatii intiijeerin alaa ta'uu danda'a."
#: 04060119.xhp
msgctxt ""
@@ -38601,7 +35537,7 @@ msgctxt ""
"273\n"
"help.text"
msgid "<emph>S</emph> is the first period."
-msgstr "<emph>S</emph>n yeroo jalqabaati."
+msgstr "<emph>S</emph> yeroo jalqabaati."
#: 04060119.xhp
msgctxt ""
@@ -38619,7 +35555,7 @@ msgctxt ""
"275\n"
"help.text"
msgid "<emph>Type</emph> is the due date of the payment at the beginning or end of each period."
-msgstr "<emph>Akaakuu</emph>n guyyaa beellama kanfaltii xumura ykn jalqaba tokkoon tokkoo yerooti."
+msgstr "<emph>akaakuu</emph>n aduu beellama kanfaltii jalqaba ykn xumura yeroo kamiiyyuuti."
#: 04060119.xhp
msgctxt ""
@@ -38628,7 +35564,7 @@ msgctxt ""
"276\n"
"help.text"
msgid "Example"
-msgstr "fakkeenya"
+msgstr "Fakkeenya"
#: 04060119.xhp
msgctxt ""
@@ -38699,7 +35635,7 @@ msgctxt ""
"169\n"
"help.text"
msgid "<emph>Rate</emph> is the interest rate for each period."
-msgstr "<emph>Saffisni</emph> saffisa dhalaa tokko tokkoon yerooti."
+msgstr "<emph>Saffisni</emph> saffisa dhalaa tokkoo tokkoon yerooti."
#: 04060119.xhp
msgctxt ""
@@ -38708,7 +35644,7 @@ msgctxt ""
"170\n"
"help.text"
msgid "<emph>NPer</emph> is the total number of payment periods. The rate and NPER must refer to the same unit, and thus both be calculated annually or monthly."
-msgstr "<emph>NPer</emph> lakkoofsa ida'ama yeroowwan kanfaltiiti. NPER fi saffisni safartuu wal fakkaatan waba'uu qabu, akkasumas lamaanuu waggaatti ykn ji'a ji'aan shallagamuu danda'u."
+msgstr "<emph>NPer</emph> ida'ama lakkoofsa yeroowwan kanfaltiiti.NPER fi Saffisni safartuu walfakkaataatti waaba'u qabu, haaluma kanaan ji'aan ykn waggaan shallagamu."
#: 04060119.xhp
msgctxt ""
@@ -38726,7 +35662,7 @@ msgctxt ""
"172\n"
"help.text"
msgid "<emph>StartPeriod</emph> is the first payment period for the calculation."
-msgstr "<emph>YerooJalqabaa</emph>n shallagiidhaf yeroo kanfaltii jalqabaati."
+msgstr "<emph>YerooJalqabaa</emph>n shallagiidhaf yeroo kanfaltii eegalaati."
#: 04060119.xhp
msgctxt ""
@@ -38735,7 +35671,7 @@ msgctxt ""
"173\n"
"help.text"
msgid "<emph>EndPeriod</emph> is the last payment period for the calculation."
-msgstr "<emph>YeooXumuraa</emph>n shallagiidhaf yeroo kanfaltii xumuraatii."
+msgstr "<emph>YerooXumuraa</emph>n shallagiidhaf yeroo kanfaltii xumuraati."
#: 04060119.xhp
msgctxt ""
@@ -38744,7 +35680,7 @@ msgctxt ""
"174\n"
"help.text"
msgid "<emph>Type</emph> is the maturity of a payment at the end of each period (Type = 0) or at the start of the period (Type = 1)."
-msgstr "<emph>Akaakuu</emph>n bilchina kanfaltii xumura tokko tokoon yeroo (Akaakuu = 0) ykn jalqaba yeroo (Akaakuu = 1) dha."
+msgstr "<emph>Akaakuu</emph>n bilchina kanfaltii dhuma yeroo hundaatti (Akaakuu = 0) ykn jalqaba yeroo (Akaakuu = 1) ti."
#: 04060119.xhp
msgctxt ""
@@ -38860,7 +35796,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisaati."
+msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
#: 04060119.xhp
msgctxt ""
@@ -38869,10 +35805,9 @@ msgctxt ""
"14\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Bilchinni</emph> guyyaa ittisni itti bilchaatu (irra darbu)."
+msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
#: 04060119.xhp
-#, fuzzy
msgctxt ""
"04060119.xhp\n"
"par_id3153755\n"
@@ -38888,7 +35823,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "<emph>Yield</emph> is the annual yield of the security."
-msgstr "<emph>Kenna</emph>n kenna waggaa ittisaati."
+msgstr "<emph>kennaa</emph> ittisa kenna waggaati."
#: 04060119.xhp
msgctxt ""
@@ -38897,7 +35832,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
-msgstr "<emph>Fayyii</emph>n gatii fayyii safartuu sharafaa 100 irraati akka gatiitti."
+msgstr "<emph>Fayyiin</emph> gatii fayyii safartuu ammaa kan gatii harkaa 100 keessaati."
#: 04060119.xhp
msgctxt ""
@@ -38906,7 +35841,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
-msgstr "<emph>ammamtaa</emph>n lakkoofsa kanfaltiiwwan dhala waggaa keessatti (1, 2 or 4)."
+msgstr "<emph>Ammamtaa</emph>n lakkoofsa kanfaltiiwwan dhalaa waggaati (1, 2 ykn 4)."
#: 04060119.xhp
msgctxt ""
@@ -38986,7 +35921,7 @@ msgctxt ""
"26\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisaati."
+msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
#: 04060119.xhp
msgctxt ""
@@ -38995,7 +35930,7 @@ msgctxt ""
"27\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Bilchinni</emph> guyyaa ittisni itti bilchaatu (irra darbu)."
+msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
#: 04060119.xhp
msgctxt ""
@@ -39013,7 +35948,7 @@ msgctxt ""
"29\n"
"help.text"
msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
-msgstr "<emph>Fayyii</emph>n gatii fayyii safartuu sharafaa 100 irraa akka gatiitti."
+msgstr "<emph>Fayyiin</emph> gatii fayyii safartuu ammaa kan gatii harkaa 100 keessaati."
#: 04060119.xhp
msgctxt ""
@@ -39093,7 +36028,7 @@ msgctxt ""
"37\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisaati."
+msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
#: 04060119.xhp
msgctxt ""
@@ -39102,7 +36037,7 @@ msgctxt ""
"38\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Bilchinni</emph> aduu ittisni itti bilchaatu (irra darbu)."
+msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
#: 04060119.xhp
msgctxt ""
@@ -39111,7 +36046,7 @@ msgctxt ""
"39\n"
"help.text"
msgid "<emph>Issue</emph> is the date of issue of the security."
-msgstr "<emph>keenni</emph> aduu keennii ittisati."
+msgstr "<emph>Qubannoo</emph>n guyyaa bittaa ittisaati."
#: 04060119.xhp
msgctxt ""
@@ -39129,7 +36064,7 @@ msgctxt ""
"41\n"
"help.text"
msgid "<emph>Yield</emph> is the annual yield of the security."
-msgstr "<emph>kenna</emph>n kenna waggaa ittisaati."
+msgstr "<emph>kennaa</emph> ittisa kenna waggaati."
#: 04060119.xhp
msgctxt ""
@@ -39227,7 +36162,7 @@ msgctxt ""
"285\n"
"help.text"
msgid "<emph>PV</emph> is the present (current) value. The cash value is the deposit of cash or the current cash value of an allowance in kind. As a deposit value a positive value must be entered; the deposit must not be 0 or <0."
-msgstr "<emph>PV</emph>n gatii ammaati. Gatiin horii callaa kuusaa horii callaa ykn gatii horii callaa ammaa kanfaltii ramaddii keessaati.Waan gatiin kuusaa gatii poozatiiviitin galchamuu qabuf, kuusaan dirqama 0 ykn >0 ta'uu qaba"
+msgstr "<emph>PV</emph>gatii ammeeti.Gatiin callaa kuusaa challaa ykn gatii callaa ammee kan akaakuun durgoo ti.Akkaa gatii kuusatti gatii poozeetivii ta'ee dirqiin gala;gatiin kuusaa 0 ykn <0 ta'uu hin qabu."
#: 04060119.xhp
msgctxt ""
@@ -39301,7 +36236,6 @@ msgid "SLN(Cost; Salvage; Life)"
msgstr "SLN(Gatii; Kebaafachuu; Jiruu)"
#: 04060119.xhp
-#, fuzzy
msgctxt ""
"04060119.xhp\n"
"par_id3146955\n"
@@ -39317,7 +36251,7 @@ msgctxt ""
"295\n"
"help.text"
msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
-msgstr "<emph>Kebaafachuu</emph>n gatii bu'aa xumuraa dullatoomaati."
+msgstr "<emph>Balaarraa kan hafe</emph>Gatii mahaallaqa dhuma Dullatooma ti."
#: 04060119.xhp
msgctxt ""
@@ -39406,7 +36340,7 @@ msgctxt ""
"221\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisaati."
+msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
#: 04060119.xhp
msgctxt ""
@@ -39415,7 +36349,7 @@ msgctxt ""
"222\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Bilchinni</emph> aduu ittisni itti bilchaatu (irra darbu)."
+msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
#: 04060119.xhp
msgctxt ""
@@ -39433,7 +36367,7 @@ msgctxt ""
"224\n"
"help.text"
msgid "<emph>Yield</emph> is the annual yield of the security."
-msgstr "<emph>Kenna</emph> kenna waggaa ittisaati."
+msgstr "<emph>kennaa</emph> ittisa kenna waggaati."
#: 04060119.xhp
msgctxt ""
@@ -39887,7 +36821,7 @@ msgctxt ""
"204\n"
"help.text"
msgid "<emph>Fraction</emph> is a whole number that is used as the denominator of the decimal fraction."
-msgstr "<emph>Entaa</emph>n lakkoofsa hundaa kan akka waamsisaa entaa kurnyeetti fayyaduu dha."
+msgstr "<emph>Entaa</emph>n lakkoofsa hundaa akka waamsisaa entaa kurnyeetti fayyada."
#: 04060119.xhp
msgctxt ""
@@ -40056,7 +36990,7 @@ msgctxt ""
"133\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisaati."
+msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
#: 04060119.xhp
msgctxt ""
@@ -40065,7 +36999,7 @@ msgctxt ""
"134\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Bilchinni</emph> aduu ittisni itti bilchaatu (irra darbu)."
+msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
#: 04060119.xhp
msgctxt ""
@@ -40074,7 +37008,7 @@ msgctxt ""
"135\n"
"help.text"
msgid "<emph>Rate</emph> is the annual rate of interest."
-msgstr "<emph>Saffisni</emph> saffisa waggaa kan dhalaati."
+msgstr "<emph>Saffisnii</emph> saffisa dhala waggaati."
#: 04060119.xhp
msgctxt ""
@@ -40092,7 +37026,7 @@ msgctxt ""
"137\n"
"help.text"
msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
-msgstr "<emph>Fayyii</emph>n akka gatiitti gatii fayyii safartuu sharafaa 100 irrati."
+msgstr "<emph>Fayyiin</emph> gatii fayyii safartuu ammaa kan gatii harkaa 100 keessaati."
#: 04060119.xhp
msgctxt ""
@@ -40181,7 +37115,7 @@ msgctxt ""
"146\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisaati."
+msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
#: 04060119.xhp
msgctxt ""
@@ -40190,7 +37124,7 @@ msgctxt ""
"147\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Bilchinni</emph> aduu ittisni itti bilchaatu (irra darbu)."
+msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
#: 04060119.xhp
msgctxt ""
@@ -40208,7 +37142,7 @@ msgctxt ""
"149\n"
"help.text"
msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
-msgstr "<emph>Fayyii</emph>n gatii fayyii safartuu sharafaa 100 irraa akka gatiitti."
+msgstr "<emph>Fayyiin</emph> gatii fayyii safartuu ammaa kan gatii harkaa 100 keessaati."
#: 04060119.xhp
msgctxt ""
@@ -40288,7 +37222,7 @@ msgctxt ""
"157\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisaati."
+msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
#: 04060119.xhp
msgctxt ""
@@ -40297,7 +37231,7 @@ msgctxt ""
"158\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Bilchinni</emph> aduu ittisni itti bilchaatu (irra darbu)."
+msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
#: 04060119.xhp
msgctxt ""
@@ -40306,7 +37240,7 @@ msgctxt ""
"159\n"
"help.text"
msgid "<emph>Issue</emph> is the date of issue of the security."
-msgstr "<emph>Kennii</emph>n aduu kennii ittisaati."
+msgstr "<emph>Qubannoo</emph>n guyyaa bittaa ittisaati."
#: 04060119.xhp
msgctxt ""
@@ -40315,7 +37249,7 @@ msgctxt ""
"160\n"
"help.text"
msgid "<emph>Rate</emph> is the interest rate of the security on the issue date."
-msgstr "<emph>Saffisni</emph> saffisa dhalaa ittisaa kan aduu kenniiti."
+msgstr "<emph>Saffisni</emph>aduu keennii irraatti saffisa dhala ittisati."
#: 04060119.xhp
msgctxt ""
@@ -40404,7 +37338,7 @@ msgctxt ""
"334\n"
"help.text"
msgid "<emph>Rate</emph> is the periodic interest rate."
-msgstr "<emph>Saffisni</emph> saffisa dhala irradedeebiti."
+msgstr "<emph>Saffisni</emph> irradedeebi saffisa dhalaati."
#: 04060119.xhp
msgctxt ""
@@ -40422,7 +37356,7 @@ msgctxt ""
"336\n"
"help.text"
msgid "<emph>PV</emph> is the present value (cash value) in a sequence of payments."
-msgstr "<emph>PV</emph>n tartiiba kanfaltiwwanii keessatti gatii ammaa (gatii horii callaa) ti."
+msgstr "<emph>PV</emph>n tartiiba kanfaltiwwanii keessatti gatii ammaa (horii callaa)ti."
#: 04060119.xhp
msgctxt ""
@@ -40500,8 +37434,8 @@ msgctxt ""
"par_id3154403\n"
"59\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_TBILLEQ\">Calculates the annual return on a treasury bill ().</ahelp> A treasury bill is purchased on the settlement date and sold at the full par value on the maturity date, that must fall within the same year. A discount is deducted from the purchase price."
-msgstr "<ahelp hid=\"HID_AAI_FUNC_TBILLEQ\">Kenna waggaa kan mana maallaqa herretii() shallaga.Herregtiin mana maallaqaa aduu qubannoo bitame fi gatii guutuun aduu bilchinaa gurgurama, kunis waggaa wal fakkaataa keessatti ta'u qaba.Hir'inni gatii gatii bittaa irraa argama.</ahelp> ."
+msgid "<ahelp hid=\"HID_AAI_FUNC_TBILLEQ\">Calculates the annual return on a treasury bill.</ahelp> A treasury bill is purchased on the settlement date and sold at the full par value on the maturity date, that must fall within the same year. A discount is deducted from the purchase price."
+msgstr ""
#: 04060119.xhp
msgctxt ""
@@ -40528,7 +37462,7 @@ msgctxt ""
"62\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisaati."
+msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
#: 04060119.xhp
msgctxt ""
@@ -40537,10 +37471,9 @@ msgctxt ""
"63\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Bilchinni</emph> aduu ittisni itti bilchaatu (irra darbu)."
+msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
#: 04060119.xhp
-#, fuzzy
msgctxt ""
"04060119.xhp\n"
"par_id3150310\n"
@@ -40636,7 +37569,7 @@ msgctxt ""
"73\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisaati."
+msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
#: 04060119.xhp
msgctxt ""
@@ -40645,7 +37578,7 @@ msgctxt ""
"74\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Bilchinni</emph> aduu ittisni itti bilchaatu (irra darbu)."
+msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
#: 04060119.xhp
msgctxt ""
@@ -40743,7 +37676,7 @@ msgctxt ""
"84\n"
"help.text"
msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisaati."
+msgstr "<emph>Qubannoo</emph>n aduu bittaa ittisati."
#: 04060119.xhp
msgctxt ""
@@ -40752,7 +37685,7 @@ msgctxt ""
"85\n"
"help.text"
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "<emph>Bilchinni</emph> aduu ittisni itti bilchaatu (irra darbu)."
+msgstr "<emph>Bilchinni</emph> aduu ittisni bilchatee(dulloome)."
#: 04060119.xhp
msgctxt ""
@@ -40806,7 +37739,7 @@ msgctxt ""
"345\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Back to Financial Functions Part One</link>"
-msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Duubatti gara fankishiniiwwan maallaqaa kutaa tokkootti</link>"
+msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Duubatti gara Fankishinoota maallaqaa kutaa tokkotti</link>"
#: 04060119.xhp
msgctxt ""
@@ -40817,4471 +37750,5375 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Forward to Financial Functions Part Three</link>"
msgstr "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Gara Fankishinoota Maallaqaa Kutaa Sadiitti Dabarsi</link>"
-#: 02190000.xhp
+#: 04060120.xhp
msgctxt ""
-"02190000.xhp\n"
+"04060120.xhp\n"
"tit\n"
"help.text"
-msgid "Delete Manual Breaks"
-msgstr "Citoota Hujeekaa haqi"
+msgid "Bit Operation Functions"
+msgstr ""
-#: 02190000.xhp
+#: 04060120.xhp
msgctxt ""
-"02190000.xhp\n"
-"hd_id3150541\n"
+"04060120.xhp\n"
+"hd_id4149052\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02190000.xhp\" name=\"Delete Manual Breaks\">Delete Manual Break</link>"
-msgstr "<link href=\"text/scalc/01/02190000.xhp\" name=\"Delete Manual Breaks\">Citoota Hujeekaa Haqi</link>"
+msgid "Bit Operation Functions"
+msgstr ""
-#: 02190000.xhp
+#: 04060120.xhp
msgctxt ""
-"02190000.xhp\n"
-"par_id3154365\n"
-"2\n"
+"04060120.xhp\n"
+"bm_id4150026\n"
"help.text"
-msgid "<ahelp hid=\".\">Choose the type of manual break that you want to delete.</ahelp>"
-msgstr "<ahelp hid=\".\">Gosa cita hujeekaa haquu barbvaaddu filadhu.</ahelp>"
+msgid "<bookmark_value>BITAND function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii FI</bookmark_value>"
-#: 05100200.xhp
+#: 04060120.xhp
msgctxt ""
-"05100200.xhp\n"
-"tit\n"
+"04060120.xhp\n"
+"hd_id4150026\n"
+"238\n"
"help.text"
-msgid "Split Cells"
+msgid "BITAND"
msgstr ""
-#: 05100200.xhp
+#: 04060120.xhp
msgctxt ""
-"05100200.xhp\n"
-"hd_id3154654\n"
+"04060120.xhp\n"
+"par_id4146942\n"
+"239\n"
"help.text"
-msgid "Split Cells"
+msgid "<ahelp hid=\"HID_FUNC_BITAND\">Returns a bitwise logical \"and\" of the parameters.</ahelp>"
msgstr ""
-#: 05100200.xhp
+#: 04060120.xhp
msgctxt ""
-"05100200.xhp\n"
-"par_id3083451\n"
+"04060120.xhp\n"
+"hd_id4150459\n"
+"240\n"
"help.text"
-msgid "<ahelp hid=\".\">Splits previously merged cells.</ahelp>"
-msgstr ""
+msgid "Syntax"
+msgstr "Caasima"
-#: 05100200.xhp
+#: 04060120.xhp
msgctxt ""
-"05100200.xhp\n"
-"par_id3154023\n"
+"04060120.xhp\n"
+"par_id4146878\n"
+"241\n"
"help.text"
-msgid "Choose <emph>Format - Merge Cells - Split Cells</emph>"
+msgid "BITAND(number1; number2)"
msgstr ""
-#: 04040000.xhp
-#, fuzzy
-msgctxt ""
-"04040000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Columns"
-msgstr "#-#-#-#-# optionen.po (PACKAGE VERSION) #-#-#-#-#\\nSarjoo\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nTarjaawwan"
-
-#: 04040000.xhp
+#: 04060120.xhp
msgctxt ""
-"04040000.xhp\n"
-"bm_id3155628\n"
+"04060120.xhp\n"
+"par_id4151228\n"
+"242\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; inserting columns</bookmark_value><bookmark_value>inserting; columns</bookmark_value><bookmark_value>columns; inserting</bookmark_value>"
-msgstr "<bookmark_value>wardiiwwan; tarjaawwan saaguu</bookmark_value><bookmark_value>saaguu; tarjaawwan</bookmark_value><bookmark_value>tarjaawwan; saaguu</bookmark_value>"
+msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
+msgstr ""
-#: 04040000.xhp
+#: 04060120.xhp
msgctxt ""
-"04040000.xhp\n"
-"hd_id3155628\n"
-"1\n"
+"04060120.xhp\n"
+"hd_id4148582\n"
+"248\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04040000.xhp\" name=\"Columns\">Columns</link>"
-msgstr "<link href=\"text/scalc/01/04040000.xhp\" name=\"Columns\">Sarjaawwan</link>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04040000.xhp
+#: 04060120.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3150791\n"
-"2\n"
+"04060120.xhp\n"
+"par_id4149246\n"
+"250\n"
"help.text"
-msgid "<ahelp hid=\".uno:InsertColumns\">Inserts a new column to the left of the active cell.</ahelp> The number of columns inserted corresponds to the number of columns selected. The existing columns are moved to the right."
-msgstr "<ahelp hid=\".uno:InsertColumns\">Bita man'ee ka'aatti tarjaa haaraa saaga.</ahelp> Lakkoofsi tarjaawwan saagamanii lakkoofsa tarjaawwan filatamanii bakka bu'a. Tarjaawwan duraan turan gara mirgaatti hiiqu."
+msgid "<item type=\"input\">=BITAND(6;10)</item> returns 2 (0110 & 1010 = 0010)."
+msgstr ""
-#: 12080000.xhp
+#: 04060120.xhp
msgctxt ""
-"12080000.xhp\n"
-"tit\n"
+"04060120.xhp\n"
+"bm_id4146139\n"
"help.text"
-msgid "Group and Outline"
-msgstr "Garee fi Toorii"
+msgid "<bookmark_value>BITOR function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii OR</bookmark_value>"
-#: 12080000.xhp
+#: 04060120.xhp
msgctxt ""
-"12080000.xhp\n"
-"bm_id3152350\n"
+"04060120.xhp\n"
+"hd_id4146139\n"
+"252\n"
"help.text"
-msgid "<bookmark_value>sheets; outlines</bookmark_value><bookmark_value>outlines; sheets</bookmark_value><bookmark_value>hiding; sheet details</bookmark_value><bookmark_value>showing; sheet details</bookmark_value><bookmark_value>grouping;cells</bookmark_value>"
-msgstr "<bookmark_value>wardiiwwan; tooriiwwan</bookmark_value><bookmark_value>Tooriiwwan; wardiiwwan</bookmark_value><bookmark_value>dhoksuu; baldhintaa wardii</bookmark_value><bookmark_value>agarsiisuu; baldhintaa wardii</bookmark_value><bookmark_value>gurmeessuu;man'eewwan</bookmark_value>"
+msgid "BITOR"
+msgstr ""
-#: 12080000.xhp
+#: 04060120.xhp
msgctxt ""
-"12080000.xhp\n"
-"hd_id3152350\n"
-"1\n"
+"04060120.xhp\n"
+"par_id4150140\n"
+"253\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080000.xhp\" name=\"Group and Outline\">Group and Outline</link>"
-msgstr "<link href=\"text/scalc/01/12080000.xhp\" name=\"Group and Outline\">Garee fi Toorii</link>"
+msgid "<ahelp hid=\"HID_FUNC_BITOR\">Returns a bitwise logical \"or\" of the parameters.</ahelp>"
+msgstr ""
-#: 12080000.xhp
+#: 04060120.xhp
msgctxt ""
-"12080000.xhp\n"
-"par_id3150793\n"
-"2\n"
+"04060120.xhp\n"
+"hd_id4149188\n"
+"254\n"
"help.text"
-msgid "You can create an outline of your data and group rows and columns together so that you can collapse and expand the groups with a single click."
-msgstr "Cuqaasii tokkoon gareewwan babal'isuu fi qoncoorsuuf tooroo deetaa fi tarreewwan gurmeessi fi tarjaawwan walittii uumuu ni dandeessa."
+msgid "Syntax"
+msgstr "Caasima"
-#: 12080000.xhp
+#: 04060120.xhp
msgctxt ""
-"12080000.xhp\n"
-"hd_id3147229\n"
-"3\n"
+"04060120.xhp\n"
+"par_id4148733\n"
+"255\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
-msgstr "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Garee</link>"
+msgid "BITOR(number1; number2)"
+msgstr ""
-#: 12080000.xhp
+#: 04060120.xhp
msgctxt ""
-"12080000.xhp\n"
-"hd_id3153188\n"
-"4\n"
+"04060120.xhp\n"
+"par_id4150864\n"
+"256\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
-msgstr "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Garbaasi</link>"
+msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
+msgstr ""
-#: func_year.xhp
+#: 04060120.xhp
msgctxt ""
-"func_year.xhp\n"
-"tit\n"
+"04060120.xhp\n"
+"par_id4149884\n"
+"264\n"
"help.text"
-msgid "YEAR"
-msgstr "YEAR"
+msgid "<item type=\"input\">=BITOR(6;10)</item> returns 14 (0110 | 1010 = 1110)."
+msgstr ""
-#: func_year.xhp
+#: 04060120.xhp
msgctxt ""
-"func_year.xhp\n"
-"bm_id3153982\n"
+"04060120.xhp\n"
+"bm_id4150019\n"
"help.text"
-msgid "<bookmark_value>YEAR function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii YEAR</bookmark_value>"
+msgid "<bookmark_value>BITXOR function</bookmark_value>"
+msgstr "<bookmark_value>Faankishinii OR</bookmark_value>"
-#: func_year.xhp
+#: 04060120.xhp
msgctxt ""
-"func_year.xhp\n"
-"hd_id3153982\n"
-"37\n"
+"04060120.xhp\n"
+"hd_id4150019\n"
+"182\n"
"help.text"
-msgid "<variable id=\"year\"><link href=\"text/scalc/01/func_year.xhp\">YEAR</link></variable>"
-msgstr "<variable id=\"year\"><link href=\"text/scalc/01/func_year.xhp\">YEAR</link></variable>"
+msgid "BITXOR"
+msgstr ""
-#: func_year.xhp
+#: 04060120.xhp
msgctxt ""
-"func_year.xhp\n"
-"par_id3147496\n"
-"38\n"
+"04060120.xhp\n"
+"par_id4145246\n"
+"183\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_JAHR\">Returns the year as a number according to the internal calculation rules.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_JAHR\">Akkaata seera shallagaa keessaattiin waggaa akkaa lakkoofsatti kenna.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_BITXOR\">Returns a bitwise logical \"exclusive or\" of the parameters.</ahelp>"
+msgstr ""
-#: func_year.xhp
+#: 04060120.xhp
msgctxt ""
-"func_year.xhp\n"
-"hd_id3146090\n"
-"39\n"
+"04060120.xhp\n"
+"hd_id4153047\n"
+"184\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: func_year.xhp
-msgctxt ""
-"func_year.xhp\n"
-"par_id3154304\n"
-"40\n"
-"help.text"
-msgid "YEAR(Number)"
-msgstr "YEAR(lakkoofsa)"
-
-#: func_year.xhp
-msgctxt ""
-"func_year.xhp\n"
-"par_id3156013\n"
-"41\n"
-"help.text"
-msgid "<emph>Number</emph> shows the internal date value for which the year is to be returned."
-msgstr "<emph>lakkoofsi</emph> Gatii aduu keessaa mul'isuun waggaa kenna."
-
-#: func_year.xhp
-msgctxt ""
-"func_year.xhp\n"
-"hd_id3152797\n"
-"42\n"
-"help.text"
-msgid "Examples"
-msgstr "Fakkeenyawwan"
-
-#: func_year.xhp
+#: 04060120.xhp
msgctxt ""
-"func_year.xhp\n"
-"par_id3145668\n"
-"43\n"
+"04060120.xhp\n"
+"par_id4157970\n"
+"185\n"
"help.text"
-msgid "<item type=\"input\">=YEAR(1)</item> returns 1899"
-msgstr "<item type=\"input\">=YEAR(1)</item> 1899 kenna"
+msgid "BITXOR(number1; number2)"
+msgstr ""
-#: func_year.xhp
+#: 04060120.xhp
msgctxt ""
-"func_year.xhp\n"
-"par_id3151168\n"
-"44\n"
+"04060120.xhp\n"
+"par_id4145302\n"
+"186\n"
"help.text"
-msgid "<item type=\"input\">=YEAR(2)</item> returns 1900"
-msgstr "<item type=\"input\">=YEAR(2)</item> 1900 kenna"
+msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
+msgstr ""
-#: func_year.xhp
+#: 04060120.xhp
msgctxt ""
-"func_year.xhp\n"
-"par_id3150115\n"
-"45\n"
+"04060120.xhp\n"
+"hd_id4150269\n"
+"192\n"
"help.text"
-msgid "<item type=\"input\">=YEAR(33333.33)</item> returns 1991"
-msgstr "<item type=\"input\">=YEAR(33333.33)</item> 1991 kenna"
+msgid "Example"
+msgstr "Fakkeenya"
-#: func_day.xhp
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"tit\n"
+"04060120.xhp\n"
+"par_id4149394\n"
+"196\n"
"help.text"
-msgid "DAY"
-msgstr "DAY"
+msgid "<item type=\"input\">=BITXOR(6;10)</item> returns 12 (0110 ^ 1010 = 1100)"
+msgstr ""
-#: func_day.xhp
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"bm_id3147317\n"
+"04060120.xhp\n"
+"bm_id4155370\n"
"help.text"
-msgid "<bookmark_value>DAY function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii DAY</bookmark_value>"
+msgid "<bookmark_value>BITLSHIFT function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii BINOMDIST</bookmark_value>"
-#: func_day.xhp
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"hd_id3147317\n"
-"106\n"
+"04060120.xhp\n"
+"hd_id4155370\n"
+"266\n"
"help.text"
-msgid "<variable id=\"day\"><link href=\"text/scalc/01/func_day.xhp\">DAY</link></variable>"
-msgstr "<variable id=\"day\"><link href=\"text/scalc/01/func_day.xhp\">DAY</link></variable>"
+msgid "BITLSHIFT"
+msgstr ""
-#: func_day.xhp
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"par_id3147584\n"
-"107\n"
+"04060120.xhp\n"
+"par_id4158411\n"
+"267\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TAG\">Returns the day of given date value.</ahelp> The day is returned as an integer between 1 and 31. You can also enter a negative date/time value."
-msgstr "<ahelp hid=\"HID_FUNC_TAG\">lakkoofsa guyyaa aduu kenna.</ahelp> Guyyaan kunis intiijeeroota 1 hanga 31 gidduutti argamanin deebi'ama.Akkasumas yeroo ykn guyyaa gatii negaativii qabus galchuu dandeessa."
+msgid "<ahelp hid=\"HID_FUNC_BITLSHIFT\">Shifts a number left by n bits.</ahelp>"
+msgstr ""
-#: func_day.xhp
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"hd_id3150487\n"
-"108\n"
+"04060120.xhp\n"
+"hd_id4155814\n"
+"268\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: func_day.xhp
-msgctxt ""
-"func_day.xhp\n"
-"par_id3149430\n"
-"109\n"
-"help.text"
-msgid "DAY(Number)"
-msgstr "DAY(lakkoofsa)"
-
-#: func_day.xhp
-msgctxt ""
-"func_day.xhp\n"
-"par_id3149443\n"
-"110\n"
-"help.text"
-msgid "<emph>Number</emph>, as a time value, is a decimal, for which the day is to be returned."
-msgstr "<emph>Lakkoofsa</emph>, akka gati yerootti, kurnyee dha,kan guyyaa itti argannu."
-
-#: func_day.xhp
-#, fuzzy
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"hd_id3163809\n"
-"111\n"
+"04060120.xhp\n"
+"par_id4147536\n"
+"269\n"
"help.text"
-msgid "Examples"
-msgstr "Fakkeenyawwan"
+msgid "BITLSHIFT(number; shift)"
+msgstr ""
-#: func_day.xhp
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"par_id3151200\n"
-"112\n"
+"04060120.xhp\n"
+"par_id4150475\n"
+"270\n"
"help.text"
-msgid "DAY(1) returns 31 (since $[officename] starts counting at zero from December 30, 1899)"
-msgstr "DAY(1) 31 kenna (waan $[officename]'n Mudde 30,1899 irra kaasee lakkaawwii 0 irraa eegaluf)"
+msgid "<emph>Number</emph> is a positive integer less than 2 ^ 48 (281 474 976 710 656)."
+msgstr ""
-#: func_day.xhp
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"par_id3154130\n"
-"113\n"
+"04060120.xhp\n"
+"par_id4153921\n"
+"271\n"
"help.text"
-msgid "DAY(NOW()) returns the current day."
-msgstr "DAY(NOW()) guyyaa ammaa kenna."
+msgid "<emph>Shift</emph> is the number of positions the bits will be moved to the left. If shift is negative, it is synonymous with BITRSHIFT (number; -shift)."
+msgstr ""
-#: func_day.xhp
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"par_id3159190\n"
-"114\n"
+"04060120.xhp\n"
+"hd_id4153723\n"
+"276\n"
"help.text"
-msgid "=DAY(C4) returns 5 if you enter 1901-08-05 in cell C4 (the date value might get formatted differently after you press Enter)."
-msgstr "=DAY(C4) yoo man'ee C4 keessa1901-08-05 galchite 5 kenna(erga ENTER dhibde booda addaan dhangaa'u danda'a)"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"tit\n"
+"04060120.xhp\n"
+"par_id4149819\n"
+"278\n"
"help.text"
-msgid "Spreadsheet Functions"
-msgstr "Faankishinoota Wardii"
+msgid "<item type=\"input\">=BITLSHIFT(6;1)</item> returns 12 (0110 << 1 = 1100)."
+msgstr ""
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3148522\n"
+"04060120.xhp\n"
+"bm_id4083280\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; functions</bookmark_value> <bookmark_value>Function Wizard; spreadsheets</bookmark_value> <bookmark_value>functions; spreadsheets</bookmark_value>"
-msgstr "<bookmark_value>wardiiwwan; faankishinoota</bookmark_value> <bookmark_value>Masaka Faankishinii; wardiiwwan</bookmark_value> <bookmark_value>faankishinoota; wardiiwwan</bookmark_value>"
+msgid "<bookmark_value>BITRSHIFT function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii BINOMDIST</bookmark_value>"
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3148522\n"
-"1\n"
+"04060120.xhp\n"
+"hd_id4083280\n"
+"165\n"
"help.text"
-msgid "Spreadsheet Functions"
-msgstr "Faankishinoota Wardii"
+msgid "BITRSHIFT"
+msgstr ""
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3144508\n"
-"2\n"
+"04060120.xhp\n"
+"par_id4152482\n"
+"166\n"
"help.text"
-msgid "<variable id=\"tabelletext\">This section contains descriptions of the <emph>Spreadsheet</emph> functions together with an example.</variable>"
-msgstr "<variable id=\"tabelletext\">Kutaan kun ibsa faankishinoota <emph>Wardii</emph> fakkeenyota wajjiin of keessatti qabata. </variable>"
+msgid "<ahelp hid=\"HID_FUNC_BITRSHIFT\">Shifts a number right by n bits.</ahelp>"
+msgstr ""
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3146968\n"
+"04060120.xhp\n"
+"hd_id4149713\n"
+"167\n"
"help.text"
-msgid "<bookmark_value>ADDRESS function</bookmark_value>"
-msgstr "<bookmark_value>Faankishibii CURRENT</bookmark_value>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3146968\n"
-"3\n"
+"04060120.xhp\n"
+"par_id4145087\n"
+"168\n"
"help.text"
-msgid "ADDRESS"
-msgstr "ADDRESS"
+msgid "BITRSHIFT(number; shift)"
+msgstr ""
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155762\n"
-"4\n"
+"04060120.xhp\n"
+"par_id4149277\n"
+"169\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ADRESSE\">Returns a cell address (reference) as text, according to the specified row and column numbers.</ahelp> You can determine whether the address is interpreted as an absolute address (for example, $A$1) or as a relative address (as A1) or in a mixed form (A$1 or $A1). You can also specify the name of the sheet."
-msgstr "<ahelp hid=\"HID_FUNC_ADRESSE\">Haala lakkoofsota tarree fi tarjaa adda ba'aaniitiin, teessoo (wabii) mandhee akka barruutti kenna.</ahelp>teessoon akka teesssoo sirriitti(fakkeenyaaf $A$1 ) hiikamuu isaa ykn akka teessoo birqabaatti(akka Al) ykn akkaataa walmakaan(A$1 or $A10 murteessuu ni dandeessa .maqaa wardiis adda baasuu ni dandeessa."
+msgid "<emph>Number</emph> is a positive integer less than 2 ^ 48 (281 474 976 710 656)."
+msgstr ""
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802301348\n"
+"04060120.xhp\n"
+"par_id4149270\n"
+"170\n"
"help.text"
-msgid "For interoperability the ADDRESS and INDIRECT functions support an optional parameter to specify whether the R1C1 address notation instead of the usual A1 notation should be used."
-msgstr "Walkeessa hojeechuuf faankishinootni TEESSOO fi SHAFFAXA ulaagaa dirqalaa teessoo R1C1 bakka beekamaa A1 ta'usaa ifteessuuf yaadannoo deeggarsaa kennuuf fayyada."
+msgid "<emph>Shift</emph> is the number of positions the bits will be moved to the right. If shift is negative, it is synonymous with BITLSHIFT (number; -shift)."
+msgstr ""
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802301445\n"
+"04060120.xhp\n"
+"hd_id4152933\n"
+"175\n"
"help.text"
-msgid "In ADDRESS, the parameter is inserted as the fourth parameter, shifting the optional sheet name parameter to the fifth position."
-msgstr "TEESSOO keessatti, ulaagaan akka ulaagaa arfaffaatti saagama, maqaan dirqalaa ulaagaa wardii gara qubannoo shanaffaatti hiqsama."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id102720080230153\n"
+"04060120.xhp\n"
+"par_id4156130\n"
+"179\n"
"help.text"
-msgid "In INDIRECT, the parameter is appended as the second parameter."
-msgstr "SHAFFAXA keessatti, ulaagaan akka ulaagaa lammafaatti dabalama."
+msgid "<item type=\"input\">=BITRSHIFT(6;1)</item> returns 3 (0110 >> 1 = 0011)."
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id102720080230151\n"
+"04060181.xhp\n"
+"tit\n"
"help.text"
-msgid "In both functions, if the argument is inserted with the value 0, then the R1C1 notation is used. If the argument is not given or has a value other than 0, then the A1 notation is used."
-msgstr "Fankishinoota lamaanuu keessatti, yoo qajeelfamni gatii o waliin saagame, yaadannoon R1C1 ni fayyada. Yoo qajeelfamni hin kennamne ta'e ykn gatii o tin ala qabaate, yaadannoon A1 ni fayyada."
+msgid "Statistical Functions Part One"
+msgstr "Fankishinoota Istaatistiksii Kutaa Tokko"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802301556\n"
+"04060181.xhp\n"
+"hd_id3146320\n"
+"1\n"
"help.text"
-msgid "In case of R1C1 notation, ADDRESS returns address strings using the exclamation mark '!' as the sheet name separator, and INDIRECT expects the exclamation mark as sheet name separator. Both functions still use the dot '.' sheet name separator with A1 notation."
-msgstr "Dubbii yaadannoo R1C1 keessatti, TEESSOOn mallattoo raajeffannoo '!' fayyadamuun diraa teessoo akka footuu maqaa wardiitti deebisa, akkasumas SHAFFAXAAn akka wardii maqaa footuutti mallattoo raajeeffannoo eega. Faankishinootni lachanuu ammallee tuqaa '.' akka maqaa footuu wardiitti yaadannoo A1 fayyadamu."
+msgid "<variable id=\"ae\"><link href=\"text/scalc/01/04060181.xhp\">Statistical Functions Part One</link></variable>"
+msgstr "<variable id=\"ae\"><link href=\"text/scalc/01/04060181.xhp\">Fankishinoota Xiinannoo Kutaa Tokko</link></variable>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802301521\n"
+"04060181.xhp\n"
+"bm_id3145632\n"
"help.text"
-msgid "When opening documents from ODF 1.0/1.1 format, the ADDRESS functions that show a sheet name as the fourth paramater will shift that sheet name to become the fifth parameter. A new fourth parameter with the value 1 will be inserted."
-msgstr "Yeroo galmeewwan dhangii ODF 1.0/1.1 irraa banaman, faankishinootni TEESSOO maqaa wardii akka ulaagaa arfaffaatti jiru gara ulaagaa shanaffaatti jijjiiramuumusaa agarsiisa. Ulaagaan haaraa akka ulaagaa arfaffaatti gatii 1 waliin saagama."
+msgid "<bookmark_value>INTERCEPT function</bookmark_value> <bookmark_value>points of intersection</bookmark_value> <bookmark_value>intersections</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii INTERCEPT</bookmark_value> <bookmark_value>xuqaa walkiphawwanii</bookmark_value> <bookmark_value>walkiphawwan</bookmark_value>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802301650\n"
+"04060181.xhp\n"
+"hd_id3145632\n"
+"2\n"
"help.text"
-msgid "When storing a document in ODF 1.0/1.1 format, if ADDRESS functions have a fourth parameter, that parameter will be removed."
-msgstr "Yeroo galmee dhangii ODF 1.0/1.1 keessatti kuufamu, yoo faankishiniin TEESSOO ulaagaa arfaffaa qabaate, ulaagaan sun ni haqama."
+msgid "INTERCEPT"
+msgstr "INTERCEPT"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id102720080230162\n"
+"04060181.xhp\n"
+"par_id3146887\n"
+"3\n"
"help.text"
-msgid "Do not save a spreadsheet in the old ODF 1.0/1.1 format if the ADDRESS function's new fourth parameter was used with a value of 0."
-msgstr "Yoo faankishiniin TEESSOO ulaagaa arfaffaa haaraa gatii 0 waliin faayidaa kenne, dhangii durii ODF 1.0/1.1 irratti wardii hin kuusiin."
+msgid "<ahelp hid=\"HID_FUNC_ACHSENABSCHNITT\">Calculates the point at which a line will intersect the y-values by using known x-values and y-values.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ACHSENABSCHNITT\">Gatiiwwan beekkamoo x fi y fayyamuudhan xuqaa sararri gatiiwwan y itti kiphu shallaga.</ahelp>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802301756\n"
+"04060181.xhp\n"
+"hd_id3150374\n"
+"4\n"
"help.text"
-msgid "The INDIRECT function is saved without conversion to ODF 1.0/1.1 format. If the second parameter was present, an older version of Calc will return an error for that function."
-msgstr "Faankishinii SHAFFAXAA gara dhangii ODF 1.0/1.1 hin jijjiiriin kuufama. Yoo ulaagaan lammaffaa hin jiraatiin, foyya'aan durii Calc faankishinii kanaaf dogoggora deebisa."
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3151196\n"
+"04060181.xhp\n"
+"par_id3149718\n"
"5\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "INTERCEPT(DataY; DataX)"
+msgstr "INTERCEPT(DeetaaY; DeetaaX)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154707\n"
+"04060181.xhp\n"
+"par_id3149947\n"
"6\n"
"help.text"
-msgid "ADDRESS(Row; Column; Abs; A1; \"Sheet\")"
-msgstr "TEESSOO(Tarree ; Tarjaa ; Abs;A1; \"Wardii\")"
+msgid "<emph>DataY</emph> is the dependent set of observations or data."
+msgstr "<emph>DeetaaY</emph>n tuuta hirkataa hubattoowwani ykn deetaati."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147505\n"
+"04060181.xhp\n"
+"par_id3147412\n"
"7\n"
"help.text"
-msgid "<emph>Row</emph> represents the row number for the cell reference"
-msgstr "<emph>Tarree</emph> lakkoofsa tarree wabii mandheetiif bakka bu'a"
+msgid "<emph>DataX</emph> is the independent set of observations or data."
+msgstr "<emph>DeetaaX</emph>n tuuta of danda'aa hubattoowwani ykn deetaati."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3145323\n"
+"04060181.xhp\n"
+"par_id3152983\n"
"8\n"
"help.text"
-msgid "<emph>Column</emph> represents the column number for the cell reference (the number, not the letter)"
-msgstr "<emph>Tarjaan</emph> wabii mandheef lakkoofsa tarjaa bakka buusa (qubicha osoo hin taane, lakkoofsicha)"
+msgid "Names, arrays or references containing numbers must be used here. Numbers can also be entered directly."
+msgstr "Maqaawwan, waraantoowwan ykn wabiiwwan lakkoofsa qaban asitti fayyaduu qabu."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153074\n"
+"04060181.xhp\n"
+"hd_id3157906\n"
"9\n"
"help.text"
-msgid "<emph>Abs</emph> determines the type of reference:"
-msgstr "<emph>Abs</emph>n gosa wabii murteessa:"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153298\n"
+"04060181.xhp\n"
+"par_id3148728\n"
"10\n"
"help.text"
-msgid "1: absolute ($A$1)"
-msgstr "1: ($A$1)sirrii"
+msgid "To calculate the intercept, use cells D3:D9 as the y value and C3:C9 as the x value from the example spreadsheet. Input will be as follows:"
+msgstr "Walkipha shallaguuf, man'eewwan D3:D9 akka gatii y fi C3:C9 akka gatii x wardii fakkeenyaa irraa fayyadami.Naqaan akka armaan gadiiti:"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150431\n"
+"04060181.xhp\n"
+"par_id3149013\n"
"11\n"
"help.text"
-msgid "2: row reference type is absolute; column reference is relative (A$1)"
-msgstr "2: gosni wabii tarree sirriidha; wabiin tarjaa birqabadha (A$1)"
+msgid "<item type=\"input\">=INTERCEPT(D3:D9;C3:C9)</item> = 2.15."
+msgstr "<item type=\"input\">=INTERCEPT(D3:D9;C3:C9)</item> = 2.15."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3146096\n"
-"12\n"
+"04060181.xhp\n"
+"bm_id3148437\n"
"help.text"
-msgid "3: row (relative); column (absolute) ($A1)"
-msgstr "3: tarree (birqaba); tarjaa (sirrii) ($A1)"
+msgid "<bookmark_value>COUNT function</bookmark_value> <bookmark_value>numbers;counting</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii COUNT</bookmark_value> <bookmark_value>lakkoofsota;lakkaawwii</bookmark_value>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153334\n"
+"04060181.xhp\n"
+"hd_id3148437\n"
"13\n"
"help.text"
-msgid "4: relative (A1)"
-msgstr "4: birqaba (Al)"
-
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802465915\n"
-"help.text"
-msgid "<emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used."
-msgstr "<emph>A1</emph> (dirqalee) - 0 tti yoo qindaa'e, yaadannoon R1C1 ni fayyada. Yoo ulaagaan kun hin jiru ta'e ykn gatii 0 tiin alatti qindaa'e, yaadannoon A1 ni fayyada."
+msgid "COUNT"
+msgstr "COUNT"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153962\n"
+"04060181.xhp\n"
+"par_id3150700\n"
"14\n"
"help.text"
-msgid "<emph>Sheet</emph> represents the name of the sheet. It must be placed in double quotes."
-msgstr "<emph>Wardiin</emph> maqaa wardii bakka bu'a. mallattoo waraabbii keessa taa'uu qaba"
+msgid "<ahelp hid=\"HID_FUNC_ANZAHL\">Counts how many numbers are in the list of arguments.</ahelp> Text entries are ignored."
+msgstr "<ahelp hid=\"HID_FUNC_ANZAHL\">Tarree qajeelfamootaa keessa lakkoofsotni hammamii akka jiran lakkaa'a.</ahelp> Galchiiwwan barruu ni tuffatamu."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3147299\n"
+"04060181.xhp\n"
+"hd_id3153930\n"
"15\n"
"help.text"
-msgid "Example:"
-msgstr "Fakkeenya"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148744\n"
+"04060181.xhp\n"
+"par_id3148585\n"
"16\n"
"help.text"
-msgid "<item type=\"input\">=ADDRESS(1;1;2;;\"Sheet2\")</item> returns the following: Sheet2.A$1"
-msgstr "<item type=\"input\">=ADDRESS(1;1;2;\"Wardii2\")</item> Wardii2.A$1 armaan gadii deebisa."
+msgid "COUNT(Value1; Value2; ... Value30)"
+msgstr "COUNT(Gatii1; Gatii2; ... Gatii30)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3159260\n"
+"04060181.xhp\n"
+"par_id3155827\n"
"17\n"
"help.text"
-msgid "If the cell A1 in sheet 2 contains the value <item type=\"input\">-6</item>, you can refer indirectly to the referenced cell using a function in B2 by entering <item type=\"input\">=ABS(INDIRECT(B2))</item>. The result is the absolute value of the cell reference specified in B2, which in this case is 6."
-msgstr "yoo mandheen A1 wardii 2 keessa jiru gatii <item type=\"input\">-6</item> qabaate, faankishinii B2 keessa jiru fayyadamuudhaan <item type=\"input\">=ABS(INDIRECT(B2))</item> galchitee mandhee wabii ta'e kallattiin ala ilaaluu ni dadeessa.Firiin gat sirrii wabii mandhee B2 keessatti adda ba'edha, akkaataa kanaan 6 dha."
+msgid "<emph>Value1; Value2, ...</emph> are 1 to 30 values or ranges representing the values to be counted."
+msgstr "<emph>Gatii1;Gatii2, ...</emph> gatiiwwan 1 hanga 30 ti ykn hangiiwwan gatiiwwan lakkaawaman bakka bu'uu dha."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3150372\n"
+"04060181.xhp\n"
+"hd_id3149254\n"
+"18\n"
"help.text"
-msgid "<bookmark_value>AREAS function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii AREAS</bookmark_value>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3150372\n"
+"04060181.xhp\n"
+"par_id3149953\n"
"19\n"
"help.text"
-msgid "AREAS"
-msgstr "AREAS"
+msgid "The entries 2, 4, 6 and eight in the Value 1-4 fields are to be counted."
+msgstr "Galchiiwwan 2, 4, 6 fi saddeet kan dirreewwan gatii 1-4 keessaa ni lakkaawamu."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150036\n"
+"04060181.xhp\n"
+"par_id3154558\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BEREICHE\">Returns the number of individual ranges that belong to a multiple range.</ahelp> A range can consist of contiguous cells or a single cell."
-msgstr "<ahelp hid=\"HID_FUNC_BEREICHE\">Lakkoofsa hangiiwwan dhuunfaa kan hangii hedduu ta'e deebisa.</ahelp> Hangiin mandheewwan walitti aanan ykn mandhee qeenee qabata."
-
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id061020090307073\n"
-"help.text"
-msgid "The function expects a single argument. If you state multiple ranges, you must enclose them into additional parentheses. Multiple ranges can be entered using the semicolon (;) as divider, but this gets automatically converted to the tilde (~) operator. The tilde is used to join ranges."
-msgstr "Faankishiinin qajeelfama tokko qofa eega. Yoo hangii hedduu ibsite, golbee lakkuu dabaltaa keessa isaan kaa'uu qabda. Hangiiwwan hedduun bufata xinnaa (;) fayyadamuun akka ooftuutti galfamuu danda'u, garuu kun ofumaan gara ogeejjii dalduufaa (~) tti jijjiirama. Dalduufaan hangiiwwan walqbsiisuuf fayyada."
+msgid "<item type=\"input\">=COUNT(2;4;6;\"eight\")</item> = 3. The count of numbers is therefore 3."
+msgstr "<item type=\"input\">=COUNT(2;4;6;\"eight\")</item> = 3. Kanaafuu lakkawwin lakkoofsaa 3 ta'a."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3145222\n"
-"21\n"
+"04060181.xhp\n"
+"bm_id3149729\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<bookmark_value>COUNTA function</bookmark_value> <bookmark_value>number of entries</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii COUNTA</bookmark_value> <bookmark_value>lakkoofsa galchiiwwanii</bookmark_value>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155907\n"
+"04060181.xhp\n"
+"hd_id3149729\n"
"22\n"
"help.text"
-msgid "AREAS(Reference)"
-msgstr "AREAS(Wabii)"
+msgid "COUNTA"
+msgstr "COUNTA"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153118\n"
+"04060181.xhp\n"
+"par_id3150142\n"
"23\n"
"help.text"
-msgid "Reference represents the reference to a cell or cell range."
-msgstr "Wabiin wabii mandhee ykn hangii mandhee bakka bu'a."
+msgid "<ahelp hid=\"HID_FUNC_ANZAHL2\">Counts how many values are in the list of arguments.</ahelp> Text entries are also counted, even when they contain an empty string of length 0. If an argument is an array or reference, empty cells within the array or reference are ignored."
+msgstr "<ahelp hid=\"HID_FUNC_ANZAHL2\">Tarree qajeelfamootaa keessa gatiiwwan hammamii akka jiran lakkaawa.</ahelp> Galchiiwwan barruutis ni lakkaawamu, diraa duwwaa dheerina 0 yoo qabaatan illee. Yoo qajeelfamni waraantoo ykn wabii ta'e, man'eewwan duuwwaa waraantoo keessaa ni tuffatamu."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3148891\n"
+"04060181.xhp\n"
+"hd_id3148573\n"
"24\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149946\n"
+"04060181.xhp\n"
+"par_id3153111\n"
"25\n"
"help.text"
-msgid "<item type=\"input\">=AREAS((A1:B3;F2;G1))</item> returns 3, as it is a reference to three cells and/or areas. After entry this gets converted to =AREAS((A1:B3~F2~G1))."
-msgstr "<item type=\"input\">=AREAS(A1:B3;F2;G1)</item> akka man'eewwan sadiif fi/ykn bal'inootaaf wabii ta'etti, 3 deebisa."
+msgid "COUNTA(Value1; Value2; ... Value30)"
+msgstr "COUNTA(Gatii1; Gatii2; ... Gatii30)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3146820\n"
+"04060181.xhp\n"
+"par_id3150001\n"
"26\n"
"help.text"
-msgid "<item type=\"input\">=AREAS(All)</item> returns 1 if you have defined an area named All under <emph>Data - Define Range</emph>."
-msgstr "<item type=\"input\">=AREAS(All)</item> yoo naannoo maqaan isaa Hunda jala <emph>Hangii - Deetaa ibsu</emph> ibsiteetta ta'e 1 deebisa."
+msgid "<emph>Value1; Value2, ...</emph> are 1 to 30 arguments representing the values to be counted."
+msgstr "<emph>Gatii1;Gatii2, ...</emph> Qajeelfamoota 1 hanga 30 ti ykn hangiiwwan gatiiwwan lakkaawamanii bakka bu'a."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3148727\n"
+"04060181.xhp\n"
+"hd_id3150334\n"
+"27\n"
"help.text"
-msgid "<bookmark_value>DDE function</bookmark_value>"
-msgstr "<bookmark_value>ofaankishinii DDE</bookmark_value>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3148727\n"
+"04060181.xhp\n"
+"par_id3154508\n"
"28\n"
"help.text"
-msgid "DDE"
-msgstr "DDE"
+msgid "The entries 2, 4, 6 and eight in the Value 1-4 fields are to be counted."
+msgstr "Galchiiwwan 2, 4, 6 fi saddeet kan dirreewwan gatii 1-4 keessaa ni lakkaawamu."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149434\n"
+"04060181.xhp\n"
+"par_id3158000\n"
"29\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DDE\">Returns the result of a DDE-based link.</ahelp> If the contents of the linked range or section changes, the returned value will also change. You must reload the spreadsheet or choose <emph>Edit - Links</emph> to see the updated links. Cross-platform links, for example from a <item type=\"productname\">%PRODUCTNAME</item> installation running on a Windows machine to a document created on a Linux machine, are not allowed."
-msgstr "<ahelp hid=\"HID_FUNC_DDE\">Firii walqabsiisa DDE-irratti hundaa'e deebisa.</ahelp> Yoo qabeentotni hangii walqabatanii ykn kutaa jijjiiraman, gatiin deebi'es ni jijjiirama. Walqabsiitota haaromfaman ilaaluuf wardii irra deebitee fe'uu ykn <emph>Gulaali - walqabsiistota</emph> filachuu qabda.Walqabsiistonni gulantiyyaa-qaxxaamuraa, fakkeenyaaf <item type=\"productname\">%PRODUCTNAME</item> galmee maashina Linux irratti uumame maashina foddaawwanii irraatti ijaarsa adeemsisuun, eeyyamamaa miti."
+msgid "<item type=\"input\">=COUNTA(2;4;6;\"eight\")</item> = 4. The count of values is therefore 4."
+msgstr "<item type=\"input\">=COUNTA(2;4;6;\"eight\")</item> = 4. Kanaafuu lakkawwin gatiiwwani 4 ta'a."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3150700\n"
-"30\n"
+"04060181.xhp\n"
+"bm_id3150267\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<bookmark_value>B function</bookmark_value> <bookmark_value>probabilities of samples with binomial distribution</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii B</bookmark_value> <bookmark_value>pirobaabilitii eddattoo faca'iinsa baynoomiyaalii wajjinii</bookmark_value>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148886\n"
+"04060181.xhp\n"
+"hd_id3150267\n"
"31\n"
"help.text"
-msgid "DDE(\"Server\"; \"File\"; \"Range\"; Mode)"
-msgstr "DDE(\"Kaadimaa\"; \"Faayilii\"; \"Hangii\"; Haalata)"
+msgid "B"
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154842\n"
+"04060181.xhp\n"
+"par_id3156061\n"
"32\n"
"help.text"
-msgid "<emph>Server</emph> is the name of a server application. <item type=\"productname\">%PRODUCTNAME</item>applications have the server name \"Soffice\"."
-msgstr "<emph>Haalatni</emph> maqaa hojii haalataadha.<item type=\"productname\">%PRODUCTNAME</item>hojiiwwan maqaa haalataa \"Soffice\" qabu."
+msgid "<ahelp hid=\"HID_FUNC_B\">Returns the probability of a sample with binomial distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_B\">pirobaabilitii eddattoo faca'iinsa baynoomiyaalii wajjinii kenna.</ahelp>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153034\n"
+"04060181.xhp\n"
+"hd_id3150659\n"
"33\n"
"help.text"
-msgid "<emph>File</emph> is the complete file name, including path specification."
-msgstr "<emph>Faayilii</emph>maqaa guutuu faayiliiti, karaa itti baramu dabalatee."
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147472\n"
+"04060181.xhp\n"
+"par_id3148392\n"
"34\n"
"help.text"
-msgid "<emph>Range</emph> is the area containing the data to be evaluated."
-msgstr "<emph>Hangiin</emph> bakka deetaa gamaggamamuu qabu qabate dha."
+msgid "B(Trials; SP; T1; T2)"
+msgstr "B(Yaaliiwwan; SP; T1; T2)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3152773\n"
-"184\n"
+"04060181.xhp\n"
+"par_id3149002\n"
+"35\n"
"help.text"
-msgid "<emph>Mode</emph> is an optional parameter that controls the method by which the DDE server converts its data into numbers."
-msgstr "<emph>Haalata</emph>ulaagaa filannoo mala kaadimaan DDE deetaa isaa gara lakkofsaatti ittiin jijjiiru to'atudha."
+msgid "<emph>Trials</emph> is the number of independent trials."
+msgstr "<emph>Yaaliiwwan</emph> lakkoofsa yaaliwwan adda addaati."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154383\n"
-"185\n"
+"04060181.xhp\n"
+"par_id3148875\n"
+"36\n"
"help.text"
-msgid "<emph>Mode</emph>"
-msgstr "<emph>Haalata</emph>"
+msgid "<emph>SP</emph> is the probability of success on each trial."
+msgstr "<emph>SP</emph> tokko tokkoon yaalii irratti pirobaabilitiilitii argachuuti."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3145146\n"
-"186\n"
+"04060181.xhp\n"
+"par_id3145352\n"
+"37\n"
"help.text"
-msgid "<emph>Effect</emph>"
-msgstr "<emph>Galtee</emph>"
+msgid "<emph>T1</emph> defines the lower limit for the number of trials."
+msgstr "<emph>T1</emph> lakkoofsa yaaliiwwaniitif daangaa gadaanaa qindeessa."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154558\n"
-"187\n"
+"04060181.xhp\n"
+"par_id3149538\n"
+"38\n"
"help.text"
-msgid "0 or missing"
-msgstr "0 ykn haftee"
+msgid "<emph>T2</emph> (optional) defines the upper limit for the number of trials."
+msgstr "<emph>T1</emph> lakkoofsa yaaliiwwaniitif daangaa gubbaa qindeessa."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3145596\n"
-"188\n"
+"04060181.xhp\n"
+"hd_id3148768\n"
+"39\n"
"help.text"
-msgid "Number format from the \"Default\" cell style"
-msgstr "Dhangii lakkoofsaa kan \"Durtii\" haala mandhee"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3152785\n"
-"189\n"
+"04060181.xhp\n"
+"par_id3154633\n"
+"40\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "What is the probability with ten throws of the dice, that a six will come up exactly twice? The probability of a six (or any other number) is 1/6. The following formula combines these factors:"
+msgstr "pirobaabilitiin saddeeqa darbiinsa kudhanii maali, kan jaha sirrumaan yeroo lama mul'atu? pirobaabilitiin jahaa (ykn lakkoofsa biraa kamiiyyuu) 1/6 dha.Formuulaan armaan gadii haalota kana walitti qaba:"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154380\n"
-"190\n"
+"04060181.xhp\n"
+"par_id3149393\n"
+"41\n"
"help.text"
-msgid "Data are always interpreted in the standard format for US English"
-msgstr "Ingiliffa US tiif deetaan yeroo hundumaa dhangii waltaawaadhaan hiikama."
+msgid "<item type=\"input\">=B(10;1/6;2)</item> returns a probability of 29%."
+msgstr "<item type=\"input\">=B(10;1/6;2)</item> pirobaabilitii 29% kenna."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150279\n"
-"191\n"
+"04060181.xhp\n"
+"bm_id3158416\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<bookmark_value>RSQ function</bookmark_value> <bookmark_value>determination coefficients</bookmark_value> <bookmark_value>regression analysis</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii RSQ</bookmark_value> <bookmark_value>maxxantoota dutannoo</bookmark_value> <bookmark_value>xiinxala riigireeshinaa</bookmark_value>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153775\n"
-"192\n"
+"04060181.xhp\n"
+"hd_id3158416\n"
+"43\n"
"help.text"
-msgid "Data are retrieved as text; no conversion to numbers"
-msgstr "Deetaan akka barruutti walitti qabamu; jijjiiramni lakkoofsota irratti hin raawwatu."
+msgid "RSQ"
+msgstr "RSQ"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3149546\n"
-"35\n"
+"04060181.xhp\n"
+"par_id3154949\n"
+"44\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<ahelp hid=\"HID_FUNC_BESTIMMTHEITSMASS\">Returns the square of the Pearson correlation coefficient based on the given values.</ahelp> RSQ (also called determination coefficient) is a measure for the accuracy of an adjustment and can be used to produce a regression analysis."
+msgstr "<ahelp hid=\"HID_FUNC_BESTIMMTHEITSMASS\">Gatiiwwan kennaman irratti hundaa'uudhan iskuuweerii maxxantoo firooma pisan kenna.</ahelp> RSQ (akkasumas maxxantoo dutannoo jedhama) safara sirrummaa mijaa'inaa fi xiinxala rigireeshinii homishuuf fayyada."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148734\n"
-"36\n"
+"04060181.xhp\n"
+"hd_id3152820\n"
+"45\n"
"help.text"
-msgid "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\data1.sxc\";\"sheet1.A1\")</item> reads the contents of cell A1 in sheet1 of the <item type=\"productname\">%PRODUCTNAME</item> Calc spreadsheet data1.sxc."
-msgstr "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\data1.sxc\";\"sheet1.A1\")</item>qabeentota mandhee A1 kanneen wardii1 kan <item type=\"productname\">%PRODUCTNAME</item> Calc wardii deetaa1.sxc."
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153081\n"
-"37\n"
+"04060181.xhp\n"
+"par_id3155822\n"
+"46\n"
"help.text"
-msgid "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\motto.sxw\";\"Today's motto\")</item> returns a motto in the cell containing this formula. First, you must enter a line in the motto.sxw document containing the motto text and define it as the first line of a section named <item type=\"literal\">Today's Motto</item> (in <item type=\"productname\">%PRODUCTNAME</item> Writer under <emph>Insert - Section</emph>). If the motto is modified (and saved) in the <item type=\"productname\">%PRODUCTNAME</item> Writer document, the motto is updated in all <item type=\"productname\">%PRODUCTNAME</item> Calc cells in which this DDE link is defined."
-msgstr "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\motto.sxw\";\"Today's motto\")</item> dhaadannoo mandhee foormulaa kana qabate keessatti deebisa. Jalqaba, galmee dhaadannoo.sxw barruu dhaadannoo qabate galchi dabalataanis akka sarara jalqabaa kutaa <item type=\"literal\">Dhaadannoo Har'aatiin</item> moggaafame (in <item type=\"productname\">%PRODUCTNAME</item> Barreessaa <emph>Saagi - Kutaa</emph>) jalatti ibsi. Yoo dhaadannoon <item type=\"productname\">%PRODUCTNAME</item> keessatti haaromfame (fi ol kaa'ame) Barreessaa dhaadannoo, <item type=\"productname\">%PRODUCTNAME</item> mandheewwan Calc walqabsiistuun DDE kun keessatti ibsame hunda keessatti haaromsama."
+msgid "RSQ(DataY; DataX)"
+msgstr "RSQ(DeetaaY; DeetaaX)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3153114\n"
+"04060181.xhp\n"
+"par_id3150470\n"
+"47\n"
"help.text"
-msgid "<bookmark_value>ERRORTYPE function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii ERRORTYPE</bookmark_value>"
+msgid "<emph>DataY</emph> is an array or range of data points."
+msgstr "<emph>DeetaaY</emph> waraantoo ykn hangii xuqaawwan deetaati."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3153114\n"
-"38\n"
+"04060181.xhp\n"
+"par_id3153181\n"
+"48\n"
"help.text"
-msgid "ERRORTYPE"
-msgstr "ERRORTYPE"
+msgid "<emph>DataX</emph> is an array or range of data points."
+msgstr "<emph>DeetaaX</emph> waraantoo ykn hangii xuqaawwan deetaati."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148568\n"
-"39\n"
+"04060181.xhp\n"
+"hd_id3156258\n"
+"49\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FEHLERTYP\">Returns the number corresponding to an <link href=\"text/scalc/05/02140000.xhp\" name=\"error value\">error value</link> occurring in a different cell.</ahelp> With the aid of this number, you can generate an error message text."
-msgstr "<ahelp hid=\"HID_FUNC_FEHLERTYP\">Lakkoofsa <link href=\"text/scalc/05/02140000.xhp\" name=\"error value\"> gatii dogongoraa </link> man'ee biroo keessatti mul'atu waliin walsimu kenna.</ahelp> Gargaarsa lakkoofsa kanaatiin, barruu ergaa dogoggoraa umuu ni dandeessa."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149877\n"
-"40\n"
+"04060181.xhp\n"
+"par_id3155991\n"
+"50\n"
"help.text"
-msgid "The Status Bar displays the predefined error code from <item type=\"productname\">%PRODUCTNAME</item> if you click the cell containing the error."
-msgstr "Yoo mandhee dogondora qabu cuqaaste Kaballi Haalojii <item type=\"productname\">%PRODUCTNAME</item> irraa lakkaddaa dogongoraa dura ibsame mul'isa."
+msgid "<item type=\"input\">=RSQ(A1:A20;B1:B20)</item> calculates the determination coefficient for both data sets in columns A and B."
+msgstr "<item type=\"input\">=RSQ(A1:A20;B1:B20)</item>Tuutota deetaa tarjaawwan A fi B keessaa lamanifuu maxxantoo firooma shallaga."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3154327\n"
-"41\n"
+"04060181.xhp\n"
+"bm_id3145620\n"
+"help.text"
+msgid "<bookmark_value>BETAINV function</bookmark_value> <bookmark_value>cumulative probability density function;inverse of</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii BETAINV</bookmark_value> <bookmark_value>fankishinii rukkina pirobaabilitii dimshaashaa;garagaltoo</bookmark_value>"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3145620\n"
+"52\n"
+"help.text"
+msgid "BETAINV"
+msgstr "BETAINV"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3149825\n"
+"53\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_BETAINV\">Returns the inverse of the cumulative beta probability density function.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BETAINV\">Garagaltoo fankishinii rukkina pirobaabilitii dimshaashaa kenna.</ahelp>"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3152479\n"
+"54\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3151322\n"
-"42\n"
+"04060181.xhp\n"
+"par_id3156300\n"
+"55\n"
"help.text"
-msgid "ERRORTYPE(Reference)"
-msgstr "ERRORTYPE(Wabii)"
+msgid "BETAINV(Number; Alpha; Beta; Start; End)"
+msgstr "BETAINV(Lakkofsa; Alfaa; Bettaa; Jalqaba; Xumura)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150132\n"
-"43\n"
+"04060181.xhp\n"
+"par_id3149266\n"
+"56\n"
"help.text"
-msgid "<emph>Reference</emph> contains the address of the cell in which the error occurs."
-msgstr "<emph>Wabii</emph>n teessoo mandhee dogongorri keessatti uumamu of keessatti qabata."
+msgid "<emph>Number</emph> is the value between <emph>Start</emph> and <emph>End</emph> at which to evaluate the function."
+msgstr "<emph>Lakkofsi</emph> gatii gidduu <emph>Jalqaba</emph> fi <emph>Xumura</emph> iddoo fankishiniin itti madaalamu."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3145248\n"
-"44\n"
+"04060181.xhp\n"
+"par_id3149710\n"
+"57\n"
+"help.text"
+msgid "<emph>Alpha</emph> is a parameter to the distribution."
+msgstr "<emph>Alfaa</emph>n ulaagaa raabsiiti."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3156306\n"
+"58\n"
+"help.text"
+msgid "<emph>Beta</emph> is a parameter to the distribution."
+msgstr "<emph>Bettaa</emph>n ulaagaa raabsiiti."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3150960\n"
+"59\n"
+"help.text"
+msgid "<emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>."
+msgstr "<emph>Jalqaba</emph>(dirqaala) daangaa gadii <emph>Lakkoofsa</emph> ti."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3151268\n"
+"60\n"
+"help.text"
+msgid "<emph>End</emph> (optional) is the upper bound for <emph>Number</emph>."
+msgstr "<emph>Xumuraa</emph> (dirqaala) daangaa gubbaa <emph>Lakkoofsa</emph> ti."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_idN109DF\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3147077\n"
+"61\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3146904\n"
-"45\n"
+"04060181.xhp\n"
+"par_id3146859\n"
+"62\n"
"help.text"
-msgid "If cell A1 displays Err:518, the function <item type=\"input\">=ERRORTYPE(A1)</item> returns the number 518."
-msgstr "Yoo mandheen A1 Err:518 mul'ise, faankishiniin <item type=\"input\">=ERRORTYPE(A1)</item> lakkoofsa 518 kenna."
+msgid "<item type=\"input\">=BETAINV(0.5;5;10)</item> returns the value 0.33."
+msgstr "<item type=\"input\">=BETAINV(0.5;5;10)</item> gatii 0.33 kenna."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3151221\n"
+"04060181.xhp\n"
+"bm_id3156096\n"
"help.text"
-msgid "<bookmark_value>INDEX function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii INDEX</bookmark_value>"
+msgid "<bookmark_value>BETADIST function</bookmark_value> <bookmark_value>cumulative probability density function;calculating</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii BETADIST</bookmark_value> <bookmark_value>fankishinii rukkina pirobaabilitii dimshaashaa;shallaguu</bookmark_value>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3151221\n"
-"47\n"
+"04060181.xhp\n"
+"hd_id3156096\n"
+"64\n"
"help.text"
-msgid "INDEX"
-msgstr "INDEX"
+msgid "BETADIST"
+msgstr "BETADIST"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150268\n"
-"48\n"
+"04060181.xhp\n"
+"par_id3150880\n"
+"65\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_INDEX\">INDEX returns a sub range, specified by row and column number, or an optional range index. Depending on context, INDEX returns a reference or content.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_INDEX\">INDEXn cita hangii, lakkoofsa tarree fi tarjaadhaan adda ba'e, ykn kasaa hangii dirqaalee deebisa. Halqara irratti hundaa'uudhaan, INDEXn wabii ykn qabeentaa deebisa.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_BETAVERT\">Returns the beta function.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BETAVERT\">Fankishinii rukkina pirobaabilitii dimshaashaa kenna.</ahelp>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3156063\n"
-"49\n"
+"04060181.xhp\n"
+"hd_id3150762\n"
+"66\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149007\n"
-"50\n"
+"04060181.xhp\n"
+"par_id3147571\n"
+"67\n"
"help.text"
-msgid "INDEX(Reference; Row; Column; Range)"
-msgstr "INDEX(Wabii; Tarree; Tarjaa; Hangii)"
+msgid "BETADIST(Number; Alpha; Beta; Start; End; Cumulative)"
+msgstr "BETADIST(Lakkofsa; Alfaa; Bettaa; Jalqaba; Xumura; dimshaasha)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153260\n"
-"51\n"
+"04060181.xhp\n"
+"par_id3156317\n"
+"68\n"
"help.text"
-msgid "<emph>Reference</emph> is a reference, entered either directly or by specifying a range name. If the reference consists of multiple ranges, you must enclose the reference or range name in parentheses."
-msgstr "<emph>Wabii</emph>n wabii, kallattiidhaan ykn maqaa hangii adda baasuudhaan galudha. Yoo wabiin hangiiwwan hedduu qabaate, wabii ykn maqaa hangii cuftuu keessa galchuu qabda."
+msgid "<emph>Number</emph> is the value between <emph>Start</emph> and <emph>End</emph> at which to evaluate the function."
+msgstr "<emph>Lakkofsi</emph> gatii gidduu <emph>Jalqaba</emph> fi <emph>Xumura</emph> iddoo fankishiniin itti madaalamu."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3145302\n"
-"52\n"
+"04060181.xhp\n"
+"par_id3156107\n"
+"69\n"
"help.text"
-msgid "<emph>Row</emph> (optional) represents the row index of the reference range, for which to return a value. In case of zero (no specific row) all referenced rows are returned."
-msgstr "<emph>Tarree</emph>n (dirqaalee) kasaa tarree hangii wabii, gatiin kennamuufii bakka bu'a. Yeroo zeeroo (tarreen adda ba'e hin jiru) tarreewwan wabii ta'an hundi ni deebi'u."
+msgid "<emph>Alpha</emph> is a parameter to the distribution."
+msgstr "<emph>Alfaa</emph>n ulaagaa raabsiiti."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154628\n"
-"53\n"
+"04060181.xhp\n"
+"par_id3153619\n"
+"70\n"
"help.text"
-msgid "<emph>Column</emph> (optional) represents the column index of the reference range, for which to return a value. In case of zero (no specific column) all referenced columns are returned."
-msgstr "<emph>Tarjaa</emph>n (dirqaalee) kasaa tarjaa hangii wabii, gatiin kennamuufii bakka bu'a. Yeroo zeeroo (tarjaan adda ba'e hin jiru) tarjaawwan wabii ta'an hundi ni deebi'u."
+msgid "<emph>Beta</emph> is a parameter to the distribution."
+msgstr "<emph>Bettaa</emph>n ulaagaa raabsiiti."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155514\n"
-"54\n"
+"04060181.xhp\n"
+"par_id3150254\n"
+"71\n"
"help.text"
-msgid "<emph>Range</emph> (optional) represents the index of the subrange if referring to a multiple range."
-msgstr "<emph>Hangii</emph>n (dirqaalee) yoo hangii hedduu agarsiisaa jira ta'e kasaa cita hangii bakka bu'a."
+msgid "<emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>."
+msgstr "<emph>Jalqaba</emph>(dirqaala) daangaa gadii <emph>Lakkoofsa</emph> ti."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3145264\n"
-"55\n"
+"04060181.xhp\n"
+"par_id3149138\n"
+"72\n"
+"help.text"
+msgid "<emph>End</emph> (optional) is the upper bound for <emph>Number</emph>."
+msgstr "<emph>Xumuraa</emph> (dirqaala) daangaa gubbaa <emph>Lakkoofsa</emph> ti."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id012020091254453\n"
+"help.text"
+msgid "<emph>Cumulative</emph> (optional) can be 0 or False to calculate the probability density function. It can be any other value or True or omitted to calculate the cumulative distribution function."
+msgstr "<emph>Walittiqaba</emph> (dirqalee) 0 ykn Soba rukina faankishinii carraa herreeguu danda'a. Gatii abbaa fe'ee ta'uu dand'a ykn Dhugaa ykn faankishinii tamsa'ina walitti qabaa herreeguuf keessaa hafa."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_idN10AB3\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3145649\n"
+"73\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3159112\n"
-"56\n"
+"04060181.xhp\n"
+"par_id3156118\n"
+"74\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(Prices;4;1)</item> returns the value from row 4 and column 1 of the database range defined in <emph>Data - Define</emph> as <emph>Prices</emph>."
-msgstr "<item type=\"input\">=INDEX(Prices;4;1)</item> tarree 4 fi tarjaa 1 hangii kuusdeetaa <emph>Deetaa - Ibsi</emph> akka <emph>Gatiiwwaniitti</emph> keessatti ibsame irraa gatii deebisa."
+msgid "<item type=\"input\">=BETADIST(0.75;3;4)</item> returns the value 0.96"
+msgstr "<item type=\"input\">=BETADIST(0.75;3;4)</item> gatii 0.96 kenna."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150691\n"
-"57\n"
+"04060181.xhp\n"
+"bm_id3143228\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
-msgstr "<item type=\"input\">=INDEX(SumX;4;1)</item> hangii <emph>SumX</emph> tarree 4 fi tarjaa 1 keessa jiru akka <emph>Saagi - Maqoota - Ibsi</emph> tti ibsame irraa gatii deebisa."
+msgid "<bookmark_value>BINOMDIST function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii BINOMDIST</bookmark_value>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id4109012\n"
+"04060181.xhp\n"
+"hd_id3143228\n"
+"76\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(A1:B6;1)</item> returns a reference to the first row of A1:B6."
-msgstr "<item type=\"input\">=INDEX(A1:B6;1)</item> tarree jalqabaa A1:B6 dhaaf wabii deebisa."
+msgid "BINOMDIST"
+msgstr "BINOMDIST"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id9272133\n"
+"04060181.xhp\n"
+"par_id3146897\n"
+"77\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(A1:B6;0;1)</item> returns a reference to the first column of A1:B6."
-msgstr "<item type=\"input\">=INDEX(A1:B6;1)</item> tarjaa jalqabaa A1:B6 dhaaf wabii deebisa."
+msgid "<ahelp hid=\"HID_FUNC_BINOMVERT\">Returns the individual term binomial distribution probability.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BINOMVERT\">Jecha dhuunfaa pirobaabilitii raabsii baynoomiyaalii kenna.</ahelp>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3158419\n"
-"58\n"
+"04060181.xhp\n"
+"hd_id3149289\n"
+"78\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
-msgstr "<item type=\"input\">=INDEX((multi);4;1)</item> gatii tarree 4 fi tarjaa 1 hangii (hedduu) keessa jiru, <emph>Saagi - Maqoota - Qindeessi</emph> jalatti maqaa <emph>baay'ee</emph> jedhu itti moggaaste agarsiisa. Hangii hedduun hangiiwwan rektaangilii hedduu, tokko tokkoon isaanii tarree 4 fi tarjaa 1 qaban of keessatti qabachuu ni danda'a. Yoo garee lamaffaan hangii baay'ee amma waamuu barbaadduu lakkoofsa <item type=\"input\">2</item> akka ulaagaa <emph>hangii</emph> tti saage."
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148595\n"
-"59\n"
+"04060181.xhp\n"
+"par_id3156009\n"
+"79\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(A1:B6;1;1)</item> indicates the value in the upper-left of the A1:B6 range."
-msgstr "<item type=\"input\">=INDEX(A1:B6;1;1)</item> gatii harka bitaa gara olii hangii A1:B6 keessa jiru agarsiisa."
+msgid "BINOMDIST(X; Trials; SP; C)"
+msgstr "BINOMDIST(X; Yaaliiwwan; SP; C)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id9960020\n"
+"04060181.xhp\n"
+"par_id3154304\n"
+"80\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);0;0;2)</item> returns a reference to the second range of the multiple range."
-msgstr "<item type=\"input\">=INDEX((multi);0;0;2)</item> hangii lammaffaa hangii hedduudhaaf wabii kenna."
+msgid "<emph>X</emph> is the number of successes in a set of trials."
+msgstr "<emph>X</emph>n Tuuta yaaliiwwanii keessaa lakkoofsa moo'insaati."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3153181\n"
+"04060181.xhp\n"
+"par_id3147492\n"
+"81\n"
"help.text"
-msgid "<bookmark_value>INDIRECT function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii INDIRECT</bookmark_value>"
+msgid "<emph>Trials</emph> is the number of independent trials."
+msgstr "<emph>Yaaliiwwan</emph> lakkoofsa yaaliwwan adda addaati."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3153181\n"
-"62\n"
+"04060181.xhp\n"
+"par_id3146085\n"
+"82\n"
"help.text"
-msgid "INDIRECT"
-msgstr "INDIRECT"
+msgid "<emph>SP</emph> is the probability of success on each trial."
+msgstr "<emph>SP</emph> tokko tokkoon yaalii irratti pirobaabilitiilitii argachuuti."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147169\n"
-"63\n"
+"04060181.xhp\n"
+"par_id3149760\n"
+"83\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_INDIREKT\">Returns the <emph>reference</emph> specified by a text string.</ahelp> This function can also be used to return the area of a corresponding string."
-msgstr "<ahelp hid=\"HID_FUNC_INDIREKT\"><emph>wabii</emph> diraa barruutiin adda ba'e kenna.</ahelp> Faankishiniin kun naannoo diraa walfaakkatu kennuufis ni gargaara."
+msgid "<emph>C</emph> = 0 calculates the probability of a single event and <emph>C</emph> = 1 calculates the cumulative probability."
+msgstr "<emph>C</emph> = 0 pirobaabilitii mudannoo takkaa shallaga fi <emph>C</emph> = 1 pirobaabilitii dimshaashaa shallaga."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3153717\n"
-"64\n"
+"04060181.xhp\n"
+"hd_id3151171\n"
+"84\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149824\n"
-"65\n"
+"04060181.xhp\n"
+"par_id3145666\n"
+"85\n"
"help.text"
-msgid "INDIRECT(Ref; A1)"
-msgstr "INDIRECT(Ref; A1)"
+msgid "<item type=\"input\">=BINOMDIST(A1;12;0.5;0)</item> shows (if the values <item type=\"input\">0</item> to <item type=\"input\">12</item> are entered in A1) the probabilities for 12 flips of a coin that <emph>Heads</emph> will come up exactly the number of times entered in A1."
+msgstr "<item type=\"input\">=BINOMDIST(A1;12;0.5;0)</item> agarsiisa (yoo gatiiwwan <item type=\"input\">0</item> hanga <item type=\"input\">12</item> A1 keessaatti galchaman) pirobaabilitiin meelchiiwwan faraankaa 12 kan <emph>mataawwan</emph> sirrumaan dhufuu danda'an lakkoofsa bay'isuu galchii A1 ta'a."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154317\n"
-"66\n"
+"04060181.xhp\n"
+"par_id3150120\n"
+"86\n"
"help.text"
-msgid "<emph>Ref</emph> represents a reference to a cell or an area (in text form) for which to return the contents."
-msgstr "<emph>Ref</emph> wabii mandheefii ykn naannoo( bifa barruutiin taa'e) qabeentota deebisuufi qabnuuf bakka bu'a."
+msgid "<item type=\"input\">=BINOMDIST(A1;12;0.5;1)</item> shows the cumulative probabilities for the same series. For example, if A1 = <item type=\"input\">4</item>, the cumulative probability of the series is 0, 1, 2, 3 or 4 times <emph>Heads</emph> (non-exclusive OR)."
+msgstr "<item type=\"input\">=BINOMDIST(A1;12;0.5;1)</item>Tarreewwan walfakkaadhaf pirobaabilitiiwwan dimshaashaa agarsiisa. Fakkeenyaf, yoo A1 = <item type=\"input\">4</item> ta'e pirobaabilitiin dimshaashaa 0, 1, 2, 3 or 4 bay'isuu <emph>mataawwan</emph> (hin hammatamiin yookin)."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802470312\n"
+"04060181.xhp\n"
+"bm_id0119200902432928\n"
"help.text"
-msgid "<emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used."
-msgstr "<emph>A1</emph> (dirqalee) - yoo 0 tti qindaa'e, yaadannoon R1C1 ni fayyada. Yoo ulaagaan kun hin jiru ta'e ykn gatii 0 tiin alatti qindaa'e, yaadannoon A1 ni fayyada."
+msgid "<bookmark_value>CHISQINV function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii CHISQINV</bookmark_value>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN10CAE\n"
+"04060181.xhp\n"
+"hd_id0119200902421451\n"
"help.text"
-msgid "If you open an Excel spreadsheet that uses indirect addresses calculated from string functions, the sheet addresses will not be translated automatically. For example, the Excel address in INDIRECT(\"filename!sheetname\"&B1) is not converted into the Calc address in INDIRECT(\"filename.sheetname\"&B1)."
-msgstr "Yoo wardii Ekseelii teessoo kallattiin alaa faankishinoota diraa irraa shallagame fayyadamu bante, teessoon wardii ofiin hin hiikamu. Fakkeenyaaf, teessoon Ekseelii INDIRECT(\"filename!sheetname\"&B1) keessaa gara teessoo Calc INDIRECT(\"filename.sheetname\"&B1) keessa jiruutti hin jijjiiramu."
+msgid "CHISQINV"
+msgstr "CHISQINV"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3150389\n"
-"67\n"
+"04060181.xhp\n"
+"par_id0119200902421449\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<ahelp hid=\".\">Returns the inverse of CHISQDIST.</ahelp>"
+msgstr "<ahelp hid=\".\">Faallaa CHISQDIST deebisa.</ahelp>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150608\n"
-"68\n"
+"04060181.xhp\n"
+"hd_id0119200902475241\n"
"help.text"
-msgid "<item type=\"input\">=INDIRECT(A1)</item> equals 100 if A1 contains C108 as a reference and cell C108 contains a value of <item type=\"input\">100</item>."
-msgstr "Yoo A1 akka wabiitti C108 of keessatti qabaatee fi mandheen C108 gatii <item type=\"input\">100</item> qabaate <item type=\"input\">=INDIRECT(A1)</item> 100 waliin wal qixa ta'a."
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3083286\n"
-"181\n"
+"04060181.xhp\n"
+"par_id0119200902475286\n"
"help.text"
-msgid "<item type=\"input\">=SUM(INDIRECT(\"a1:\" & ADDRESS(1;3)))</item> totals the cells in the area of A1 up to the cell with the address defined by row 1 and column 3. This means that area A1:C1 is totaled."
-msgstr "<item type=\"input\">=SUM(INDIRECT(\"a1:\" & ADDRESS(1;3)))</item> mandheewwan naannoo A1 keessa jiranii hanga mandhee teessoon isaa tarree 1 fi tarjaa 3n ibsametti hundamteessa. Kana jechuun naannoon A1:C1 hundamtaa'eera."
+msgid "<emph>Probability</emph> is the probability value for which the inverse of the chi-square distribution is to be calculated."
+msgstr "<emph>Carraa</emph> gatii carraa faallaan tamsaasa chaay-iskuweerii herreegamuufii ti."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3154818\n"
+"04060181.xhp\n"
+"par_id0119200902475282\n"
"help.text"
-msgid "<bookmark_value>COLUMN function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii COLUMN</bookmark_value>"
+msgid "<emph>Degrees Of Freedom</emph> is the degrees of freedom for the chi-square function."
+msgstr "<emph>Digirii Biliisummaa</emph> digiriiwwan biliisummaa faankishinii chaay-iskuuweriiti."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3154818\n"
-"70\n"
+"04060181.xhp\n"
+"bm_id3148835\n"
"help.text"
-msgid "COLUMN"
-msgstr "COLUMN"
+msgid "<bookmark_value>CHIINV function</bookmark_value>"
+msgstr "<bookmark_value>CHIINV function</bookmark_value>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149711\n"
-"193\n"
+"04060181.xhp\n"
+"hd_id3148835\n"
+"88\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SPALTE\">Returns the column number of a cell reference.</ahelp> If the reference is a cell the column number of the cell is returned; if the parameter is a cell area, the corresponding column numbers are returned in a single-row <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"array\">array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the COLUMN function with an area reference parameter is not used for an array formula, only the column number of the first cell within the area is determined."
-msgstr "<ahelp hid=\"HID_FUNC_SPALTE\">Lakkoofsa tarjaa wabii man'ee kenna.</ahelp> Yoo wabiin mandhee ta'e lakkoofsi tarjaa mandhichaa ni deebi'a; yoo ulaagaan naannoo mandhee ta'e, lakkoofsonni tarjaa <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"array\">waraantoo</link> tarree-baaqqee keessatti kan kennamu yoo foormulaan <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">akka foormulaa waraantootti</link> galeera ta'e. Yoo faankishiniin COLUMN naannoo ulaagaa wabii keessa jiru foormulaa waraantoof hin fayyadne ta'e, lakkoofsi tarjaa mandhee jalqabaa naannoo sana keessa jiru qofti ni murtaa'a."
+msgid "CHIINV"
+msgstr "CHIINV"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3149283\n"
-"72\n"
+"04060181.xhp\n"
+"par_id3149906\n"
+"89\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_CHIINV\">Returns the inverse of the one-tailed probability of the chi-squared distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_CHIINV\">Garagaltoo pirobaabilitii eege tokkee kan raabsa chaay-iskuweerdii kenna.</ahelp>"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3159157\n"
+"90\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149447\n"
-"73\n"
+"04060181.xhp\n"
+"par_id3150504\n"
+"91\n"
"help.text"
-msgid "COLUMN(Reference)"
-msgstr "COLUMN(Wabii)"
+msgid "CHIINV(Number; DegreesFreedom)"
+msgstr "CHIINV(Lakkoofsa; DigriiBilisaa)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3156310\n"
-"74\n"
+"04060181.xhp\n"
+"par_id3154898\n"
+"92\n"
"help.text"
-msgid "<emph>Reference</emph> is the reference to a cell or cell area whose first column number is to be found."
-msgstr "<emph>Wabii</emph>n wabii mandheef ykn naannoo mandhee lakkoofsi tarjaa jalqabaa barbaadamuu qabuuti."
+msgid "<emph>Number</emph> is the value of the error probability."
+msgstr "<emph>Lakkoofsi</emph> gatii pirobaabilitii dogongoraati."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155837\n"
-"194\n"
+"04060181.xhp\n"
+"par_id3154294\n"
+"93\n"
"help.text"
-msgid "If no reference is entered, the column number of the cell in which the formula is entered is found. <item type=\"productname\">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell."
-msgstr "Yoo wabiin tokkoyyu hin seenne ta'e, lakkoofsi tarjaa mandhee foormulaan keessa seene ni argama. <item type=\"productname\">%PRODUCTNAME</item> Calciin wabii ofumaan gara mandhee ammeetti qindeessa."
+msgid "<emph>DegreesFreedom</emph> is the degrees of freedom of the experiment."
+msgstr "<emph>DigriiBilisaa</emph>n hammaa bilisummaa yaaliiti."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3152932\n"
-"75\n"
+"04060181.xhp\n"
+"hd_id3154208\n"
+"94\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147571\n"
-"76\n"
+"04060181.xhp\n"
+"par_id3150777\n"
+"130\n"
"help.text"
-msgid "<item type=\"input\">=COLUMN(A1)</item> equals 1. Column A is the first column in the table."
-msgstr "<item type=\"input\">=COLUMN(A1)</item> walqixa 1. Tarjaa A n gabatee keessatti tarjaa jalqabaati."
+msgid "A die is thrown 1020 times. The numbers on the die 1 through 6 come up 195, 151, 148, 189, 183 and 154 times (observation values). The hypothesis that the die is not fixed is to be tested."
+msgstr "Saddeqni yeroo 1020 darbatame. Lakkoofsootni 1 hanga 6 saddeqa irraa si'a 195, 151, 148, 189, 183, fi 154 (gatiiwwan hubannoo) ol dhufa. Hedaatin saddeeqni dhaabbataa mitii ni yaalama."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147079\n"
-"77\n"
+"04060181.xhp\n"
+"par_id3153062\n"
+"131\n"
"help.text"
-msgid "<item type=\"input\">=COLUMN(C3:E3)</item> equals 3. Column C is the third column in the table."
-msgstr "<item type=\"input\">=COLUMN(C3:E3)</item> walqixa 3. Tarjaa C n gabatee keessatti tarjaa sadaffaadha."
+msgid "The Chi square distribution of the random sample is determined by the formula given above. Since the expected value for a given number on the die for n throws is n times 1/6, thus 1020/6 = 170, the formula returns a Chi square value of 13.27."
+msgstr "Raabsi chaay iskuweerii kan eddattoo tasaa foormulaa armaan oliitti kennameen murtaawa. Gatii eeggamaan lakkofsoota saddeeqa irratti kennamee n bay'isuu 1/6 waan ta'eef, kanaafuu 1020/6 = 170 ta'a, formulichi gatii chaay iskuuweerii 13.27 kenna."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3146861\n"
-"195\n"
+"04060181.xhp\n"
+"par_id3148806\n"
+"132\n"
"help.text"
-msgid "<item type=\"input\">=COLUMN(D3:G10)</item> returns 4 because column D is the fourth column in the table and the COLUMN function is not used as an array formula. (In this case, the first value of the array is always used as the result.)"
-msgstr "<item type=\"input\">=COLUMN(D3:G10)</item>n 4 kenna sababni isaas tarjaa D n gabatee keessatti tarjaa afraffaadha dabalataan immoo faankishiniin TARJAA akka foormulaa waraantootti hin fayyadne. (Haala kana keessatti, gatiin waraantoo inni jalqabaa yeroo hunda akka firiitti fayyada.)"
+msgid "If the (observed) Chi square is greater than or equal to the (theoretical) Chi square CHIINV, the hypothesis will be discarded, since the deviation between theory and experiment is too great. If the observed Chi square is less that CHIINV, the hypothesis is confirmed with the indicated probability of error."
+msgstr "Yoo chaay iskuuweeriin (hubatame) irraguddaa ykn walqixa CHIINV chaay iskuweerii (tiyoritikaalii) ta'e, maldhawiinsi ni gatama, garaarummaan tiyoorii fi yaalii bay'ee guuddaa waan ta'eefi dha. Yoo chaay iskuweeriin hubatame irra xiqqa CHIINV ta'e, maldhawiinsi ni dogongora pirobaabilitii eerame wajjin raggaasifama."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3156320\n"
-"196\n"
+"04060181.xhp\n"
+"par_id3149763\n"
+"95\n"
"help.text"
-msgid "<item type=\"input\">{=COLUMN(B2:B7)}</item> and <item type=\"input\">=COLUMN(B2:B7)</item> both return 2 because the reference only contains column B as the second column in the table. Because single-column areas have only one column number, it does not make a difference whether or not the formula is used as an array formula."
-msgstr "<item type=\"input\">{=COLUMN(B2:B7)}</item> fi <item type=\"input\">=COLUMN(B2:B7)</item> lamaan isaaniiyyu 2 kennu sababni isaas wabiin tarjaa B qofa akka tarjaa lammaffaa gabatee keessaatti of keessatti qabata. Naannoon tajaa-qeenxee lakkoofsa tarjaa tokko qofa waan qabuuf, foormulaan akka foormulaa waraantootti yoo fayyades fayyaduu baates garaagarummaa hin uumu."
+msgid "<item type=\"input\">=CHIINV(0.05;5)</item> returns 11.07."
+msgstr "<item type=\"input\">=CHIINV(0.05;5)</item> 11.07 kenna."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150872\n"
-"197\n"
+"04060181.xhp\n"
+"par_id3159142\n"
+"133\n"
"help.text"
-msgid "<item type=\"input\">=COLUMN()</item> returns 3 if the formula was entered in column C."
-msgstr "<item type=\"input\">=COLUMN()</item>n yoo foormulaan tarjaa C keessa galeera ta'e 3 kenna."
+msgid "<item type=\"input\">=CHIINV(0.02;5)</item> returns 13.39."
+msgstr "<item type=\"input\">=CHIINV(0.02;5)</item> 13.39 kenna."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153277\n"
-"198\n"
+"04060181.xhp\n"
+"par_id3158401\n"
+"134\n"
"help.text"
-msgid "<item type=\"input\">{=COLUMN(Rabbit)}</item> returns the single-row array (3, 4) if \"Rabbit\" is the named area (C1:D3)."
-msgstr "<item type=\"input\">{=COLUMN(Hilleenttii)}</item> yoo hilleensi maqaa naannoo (C1:D3)tti mogga'e ta'e waraantoo tarree-qeenxee (3, 4) kenna."
+msgid "If the probability of error is 5%, the die is not true. If the probability of error is 2%, there is no reason to believe it is fixed."
+msgstr "Yoo pirobaabilitiin dogongoraa 5% ta'e, saddeeqni dhugaa miti. Yoo pirobaabilitiin dogongoraa 2% ta'e, sababni dhabbataa ta'uu isaa amansiisu hin jiru."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3154643\n"
+"04060181.xhp\n"
+"bm_id3154260\n"
"help.text"
-msgid "<bookmark_value>COLUMNS function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii COLUMNS</bookmark_value>"
+msgid "<bookmark_value>CHITEST function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii CHITEST</bookmark_value>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3154643\n"
-"79\n"
+"04060181.xhp\n"
+"hd_id3154260\n"
+"97\n"
"help.text"
-msgid "COLUMNS"
-msgstr "COLUMN"
+msgid "CHITEST"
+msgstr "CHITEST"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3151182\n"
-"80\n"
+"04060181.xhp\n"
+"par_id3151052\n"
+"98\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SPALTEN\">Returns the number of columns in the given reference.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SPALTEN\">Lakkoofsa tarjaawwanii wabii kenname keessa jiran deebisa.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_CHITEST\">Returns the probability of a deviance from a random distribution of two test series based on the chi-squared test for independence.</ahelp> CHITEST returns the chi-squared distribution of the data."
+msgstr "<ahelp hid=\"HID_FUNC_CHITEST\">Chaay-iskuweerii of danda'inaa irratti hundaa'uudhan piroobabiliitii diviyaansii kan tarreewwan yaalii lamaa raabsa tasaa irraa kenna.</ahelp> CHITEST returns the chi-squared distribution of the data."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3149141\n"
-"81\n"
+"04060181.xhp\n"
+"par_id3148925\n"
+"135\n"
+"help.text"
+msgid "The probability determined by CHITEST can also be determined with CHIDIST, in which case the Chi square of the random sample must then be passed as a parameter instead of the data row."
+msgstr "Pirobaabiliitin CHIEST dhan murtaa'e CHIDIST dhanis murtaa'uu danda'a, kan dubbeen chaay iskuuweerii eddattoo tasaa keessatti akka deetaa dhedhii diisuun akka ulaagatti darbuu qabuu dha."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3154280\n"
+"99\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154047\n"
-"82\n"
+"04060181.xhp\n"
+"par_id3149162\n"
+"100\n"
"help.text"
-msgid "COLUMNS(Array)"
-msgstr "COLUMNS(Waraantoo)"
+msgid "CHITEST(DataB; DataE)"
+msgstr "CHITEST(DeettaB; DeetaaE)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154745\n"
-"83\n"
+"04060181.xhp\n"
+"par_id3158421\n"
+"101\n"
"help.text"
-msgid "<emph>Array</emph> is the reference to a cell range whose total number of columns is to be found. The argument can also be a single cell."
-msgstr "<emph>Waraantoo</emph>n hangii mandhee lakkoofsi tarjaawwan isaa hundi barbaadamuu qabuuf wabiidha. Qajeelfamni mandhee qeenxees ta'uu ni danda'a."
+msgid "<emph>DataB</emph> is the array of the observations."
+msgstr "<emph>DeetaaB</emph>n waraantoo dow'annaawwaniiti."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3153622\n"
-"84\n"
+"04060181.xhp\n"
+"par_id3166453\n"
+"102\n"
+"help.text"
+msgid "<emph>DataE</emph> is the range of the expected values."
+msgstr "<emph>DeetaaE</emph>n hangii gatiiwwan eeggamooti."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3146946\n"
+"103\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149577\n"
-"200\n"
+"04060181.xhp\n"
+"par_id3154096\n"
+"136\n"
"help.text"
-msgid "<item type=\"input\">=COLUMNS(B5)</item> returns 1 because a cell only contains one column."
-msgstr "<item type=\"input\">=COLUMN(B5)</item>n 1 kenna sababni isaaas mandheen tokko tarjaa tokko qofa qabata."
+msgid "Data_B (observed)"
+msgstr "Deetaa_B (hubatamaa)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3145649\n"
-"85\n"
+"04060181.xhp\n"
+"par_id3152948\n"
+"137\n"
"help.text"
-msgid "<item type=\"input\">=COLUMNS(A1:C5)</item> equals 3. The reference comprises three columns."
-msgstr "<item type=\"input\">=COLUMN(A1:C5)</item> walqixa 3. Wabiin tarjaawwan sadii of keessatti qabata."
+msgid "Data_E (expected)"
+msgstr "Deetaa_E (eeggamaa)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155846\n"
-"201\n"
+"04060181.xhp\n"
+"par_id3152876\n"
+"138\n"
"help.text"
-msgid "<item type=\"input\">=COLUMNS(Rabbit)</item> returns 2 if <item type=\"literal\">Rabbit</item> is the named range (C1:D3)."
-msgstr "<item type=\"input\">=COLUMNS(Hilleensi)</item> yoo <item type=\"literal\">Hilleensa</item> maqaa hangiitti moggaafame yoo ta'e (C1:D3) 2 deebisa."
+msgid "1"
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3153152\n"
+"04060181.xhp\n"
+"par_id3159279\n"
+"139\n"
"help.text"
-msgid "<bookmark_value>vertical search function</bookmark_value> <bookmark_value>VLOOKUP function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii barbaadduu sarjaa</bookmark_value> <bookmark_value>faankishinii VLOOKUP</bookmark_value>"
+msgid "<item type=\"input\">195</item>"
+msgstr "<item type=\"input\">195</item>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3153152\n"
-"87\n"
+"04060181.xhp\n"
+"par_id3149105\n"
+"140\n"
"help.text"
-msgid "VLOOKUP"
-msgstr "VLOOKUP"
+msgid "<item type=\"input\">170</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149984\n"
-"88\n"
+"04060181.xhp\n"
+"par_id3149922\n"
+"141\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SVERWEIS\">Vertical search with reference to adjacent cells to the right.</ahelp> This function checks if a specific value is contained in the first column of an array. The function then returns the value in the same row of the column named by <item type=\"literal\">Index</item>. If the <item type=\"literal\">SortOrder</item> parameter is omitted or set to TRUE or one, it is assumed that the data is sorted in ascending order. In this case, if the exact <item type=\"literal\">SearchCriterion</item> is not found, the last value that is smaller than the criterion will be returned. If <item type=\"literal\">SortOrder</item> is set to FALSE or zero, an exact match must be found, otherwise the error <emph>Error: Value Not Available</emph> will be the result. Thus with a value of zero the data does not need to be sorted in ascending order."
-msgstr "<ahelp hid=\"HID_FUNC_SVERWEIS\">Barbaacha sarjaa mandheewwan gara mirgaa wajjiin wabii ta'e.</ahelp> Faankishiniin kun tarjaa waraantoo jalqabaa keessatti gatiin adda ta'e hammatamuu isaa mirkaneessa. Faankishinichi sana booda gatii tarree wal fakkaataa tarjaa keessa jiru <item type=\"literal\">Kasaa</item>dhaan moggaafame deebisa. Yoo ulaagaan <item type=\"literal\">Tartiibaansirreessi</item> haqame ykn DHUGAA ta'e ykn tokko ta'e, deetaan jalaa ol akka tartiiba qabatetti ilaalama. Haala kana keessatti, yoo <item type=\"literal\">UlaagaaBarbaachaa</item> sirriin hin argamne ta'e, gatiin dhumaa ulaagaatii gad ta'e deebi'uu danda'a. Yoo <item type=\"literal\">Tartiibessuun</item> SOBA ykn zeerootti qindaa'e, walsimannaa sirriin argamuu qaba, ta'uu baannaan dogongorri <emph>Dogongora: Gatiin Hin jiru</emph> jedhutu firii ta'uu danda'a. Kanaafuu deetaan gatiin isaa zeeroo ta'e jalaa ol tartiiba'uun isa hin barbaachisu."
+msgid "2"
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3146898\n"
-"89\n"
+"04060181.xhp\n"
+"par_id3148621\n"
+"142\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<item type=\"input\">151</item>"
+msgstr "<item type=\"input\">151</item>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150156\n"
-"90\n"
+"04060181.xhp\n"
+"par_id3148987\n"
+"143\n"
"help.text"
-msgid "=VLOOKUP(SearchCriterion; Array; Index; SortOrder)"
-msgstr "=VLOOKUP(UlaagaaBarbaachaa; Waraantoo; Kasaa; TartiibaQabsiisuuu)"
+msgid "<item type=\"input\">170</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149289\n"
-"91\n"
+"04060181.xhp\n"
+"par_id3149417\n"
+"144\n"
"help.text"
-msgid "<emph>SearchCriterion</emph> is the value searched for in the first column of the array."
-msgstr "<emph>UlaagaanBarbaachaa</emph> gatii jalqaba tarjaa waraantoof barbaadamudha."
+msgid "3"
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153884\n"
-"92\n"
+"04060181.xhp\n"
+"par_id3148661\n"
+"145\n"
"help.text"
-msgid "<emph>Array</emph> is the reference, which is to comprise at least two columns."
-msgstr "<emph>Waraantoo</emph>n wabii, yoo xiqqaate tarjaawwan lama qabatudha."
+msgid "<item type=\"input\">148</item>"
+msgstr "<item type=\"input\">148</item>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3156005\n"
-"93\n"
+"04060181.xhp\n"
+"par_id3151128\n"
+"146\n"
"help.text"
-msgid "<emph>Index</emph> is the number of the column in the array that contains the value to be returned. The first column has the number 1."
-msgstr "<emph>Kasaa</emph>n lakkoofsa tarjaa waraantoo keessa jiru kan gatii kennamuu qabu of keessatti qabatudha. Tarjaan jalqabaa lakkoofsa 1 qaba."
+msgid "<item type=\"input\">170</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3151208\n"
-"94\n"
+"04060181.xhp\n"
+"par_id3148467\n"
+"147\n"
"help.text"
-msgid "<emph>SortOrder</emph> is an optional parameter that indicates whether the first column in the array is sorted in ascending order. Enter the Boolean value FALSE or zero if the first column is not sorted in ascending order. Sorted columns can be searched much faster and the function always returns a value, even if the search value was not matched exactly, if it is between the lowest and highest value of the sorted list. In unsorted lists, the search value must be matched exactly. Otherwise the function will return this message: <emph>Error: Value Not Available</emph>."
-msgstr "<emph>TartiibaQabsiisuu</emph>n ulaagaa dirqalaa tarjaan jalqabaa waraantoo keessa jiru jalaa ol tartiiba'uu isaa kan agarsiisudha.Yoo tarjaan jalqabaa jalaa ol hin tartiibone ta'e gatii Buuliyaanii SOBA ykn zeeroo galchi. Tarjaawwan tartiiba'an saffisa guddaadhaan barbaadamu gatiin barbaachaa sirriitti argamuu baatuyyu faankishiniin yeroo hunda gatii kenna, yoo inni walakkaa gatii guddaa fi xiqqaa tarree tartiiba'anii gidduu ta'e. Tarreewwan hin tartiibofne keessatti, gatiin barbaachaa sirriitti firoomuu qaba. Yoo ta'uu baate faankishinichi ergaa kana kenna: <emph>Dogongora: Gatiin Hin Jiru</emph>."
+msgid "4"
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3147487\n"
-"95\n"
+"04060181.xhp\n"
+"par_id3149237\n"
+"148\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<item type=\"input\">189</item>"
+msgstr "<item type=\"input\">189</item>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154129\n"
-"96\n"
+"04060181.xhp\n"
+"par_id3145304\n"
+"149\n"
"help.text"
-msgid "You want to enter the number of a dish on the menu in cell A1, and the name of the dish is to appear as text in the neighboring cell (B1) immediately. The Number to Name assignment is contained in the D1:E100 array. D1 contains <item type=\"input\">100</item>, E1 contains the name <item type=\"input\">Vegetable Soup</item>, and so forth, for 100 menu items. The numbers in column D are sorted in ascending order; thus, the optional <item type=\"literal\">SortOrder</item> parameter is not necessary."
-msgstr "Baafata mandhee A1 keessa jiru irratti lakkoofsa 'dish' galchuu qabda, maqaan dish akka barruutti yerosuma mandhee (B1) ollaa jiru keessatti mul'ata.Lakkoofsi maqaa moggaasuuf gargaaru waraantoo D1:E100 keessatti qabatama. D1 <item type=\"input\">100</item> qabata, E1 maqaa <item type=\"input\">soup kuduraa fi muduraa</item> qabata, fi wantoota baafataa 100f haaluma kanaan itti fufa.Lakkoofsonni tarjaa D keessaa tartiiba jalaa oliin tartiiba'u; kanaafuu, ulaagaan <item type=\"literal\">Tartiibessuu</item> dirqalaa barbaachisaa miti."
+msgid "<item type=\"input\">170</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3145663\n"
-"97\n"
+"04060181.xhp\n"
+"par_id3149927\n"
+"150\n"
"help.text"
-msgid "Enter the following formula in B1:"
-msgstr "Foormulaa armaan gadii B1 keessa galchi:"
+msgid "5"
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3151172\n"
-"98\n"
+"04060181.xhp\n"
+"par_id3150630\n"
+"151\n"
"help.text"
-msgid "<item type=\"input\">=VLOOKUP(A1;D1:E100;2)</item>"
-msgstr "<item type=\"input\">=VLOOKUP(A1;D1:E100;2)</item>"
+msgid "<item type=\"input\">183</item>"
+msgstr "<item type=\"input\">183</item>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149200\n"
-"99\n"
+"04060181.xhp\n"
+"par_id3150423\n"
+"152\n"
"help.text"
-msgid "As soon as you enter a number in A1 B1 will show the corresponding text contained in the second column of reference D1:E100. Entering a nonexistent number displays the text with the next number down. To prevent this, enter FALSE as the last parameter in the formula so that an error message is generated when a nonexistent number is entered."
-msgstr "Akkuma lakkoofsa A1 keessa galchiteen B1 barruu tarjaa lammaffaa wabii D1:E100 keessa jiru agarsiisa. Lakkoofsa hin jirre galchuun barruu lakkoofsa gadii itti aanu wajjiin mul'issa. Kana ittisuuf, foormulaa keessatti akka ulaagaa dhumaatti SOBA galchi kanaafuu yeroo lakkoofsi hin jirre seenu ergaan dogongoraa ni uumama."
+msgid "<item type=\"input\">170</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3153905\n"
+"04060181.xhp\n"
+"par_id3143275\n"
+"153\n"
"help.text"
-msgid "<bookmark_value>sheet numbers; looking up</bookmark_value> <bookmark_value>SHEET function</bookmark_value>"
-msgstr "<bookmark_value>lakkoofsota wardii; ilaaluu</bookmark_value> <bookmark_value>faankishinii WARDII</bookmark_value>"
+msgid "6"
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3153905\n"
-"215\n"
+"04060181.xhp\n"
+"par_id3144750\n"
+"154\n"
"help.text"
-msgid "SHEET"
-msgstr "SHEET"
+msgid "<item type=\"input\">154</item>"
+msgstr "<item type=\"input\">154</item>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150309\n"
-"216\n"
+"04060181.xhp\n"
+"par_id3153947\n"
+"155\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TABELLE\">Returns the sheet number of a reference or a string representing a sheet name.</ahelp> If you do not enter any parameters, the result is the sheet number of the spreadsheet containing the formula."
-msgstr "<ahelp hid=\"HID_FUNC_TABELLE\">Lakkoofsa wardii wabii ykn diraa maqaa wardii bakka bu'u kenna.</ahelp> Yoo ulaagaalee kamiyyu hin galchine ta'e, firiin lakkoofsa wardii wardii foormulaa qabateedha."
+msgid "<item type=\"input\">170</item>"
+msgstr "<item type=\"input\">170</item>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3148564\n"
-"217\n"
+"04060181.xhp\n"
+"par_id3149481\n"
+"104\n"
+"help.text"
+msgid "<item type=\"input\">=CHITEST(A1:A6;B1:B6)</item> equals 0.02. This is the probability which suffices the observed data of the theoretical Chi-square distribution."
+msgstr "<item type=\"input\">=CHITEST(A1:A6;B1:B6)</item> walqixa 0.02 ti. Kun pirobaabilitii kan deetaa raabsii chaay iskuweerii tiyoorotikaalii gahuu dha."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"bm_id3148690\n"
+"help.text"
+msgid "<bookmark_value>CHIDIST function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii CHIDIST</bookmark_value>"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3148690\n"
+"106\n"
+"help.text"
+msgid "CHIDIST"
+msgstr "CHIDIST"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3156338\n"
+"156\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_CHIVERT\">Returns the probability value from the indicated Chi square that a hypothesis is confirmed.</ahelp> CHIDIST compares the Chi square value to be given for a random sample that is calculated from the sum of (observed value-expected value)^2/expected value for all values with the theoretical Chi square distribution and determines from this the probability of error for the hypothesis to be tested."
+msgstr "<ahelp hid=\"HID_FUNC_CHIVERT\">Chaay iskuweerii eerame kan maldhawiinsi mirkanaa'e irraa gatii pirobaabilitii kenna.</ahelp> CHIDIST gatii chaay iskuweerii eddatto tasaatif kennamu kan ida'ama (gatii hubatame-gatii eeggame)^2/ gatii eeggame irraa gatiiwwan raabsii chaay iskuweerii tiyooritikaalii hundaaf shallaga fi kanarraa dogongora pirobaabilitii kan hedatiin yaalamuuf murteessa."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3151316\n"
+"157\n"
+"help.text"
+msgid "The probability determined by CHIDIST can also be determined by CHITEST."
+msgstr "Pirobaabiliitin HIDIST dhan murtaa'e CHITEST dhanis ni murtaa'a."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3155123\n"
+"108\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153095\n"
-"218\n"
+"04060181.xhp\n"
+"par_id3158439\n"
+"109\n"
"help.text"
-msgid "SHEET(Reference)"
-msgstr "SHEET(Wabii)"
+msgid "CHIDIST(Number; DegreesFreedom)"
+msgstr "CHIDIST(Lakkoofsa; DigriiBilisaa)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154588\n"
-"219\n"
+"04060181.xhp\n"
+"par_id3148675\n"
+"110\n"
"help.text"
-msgid "<emph>Reference</emph> is optional and is the reference to a cell, an area, or a sheet name string."
-msgstr "<emph>Wabiin</emph> dirqalaa fi mandheef, naannoof, ykn diraa maqaa wardiidhaaf wabiidha."
+msgid "<emph>Number</emph> is the chi-square value of the random sample used to determine the error probability."
+msgstr "<emph>Lakkofsi</emph> gatii chaay iskuweerii kan eddattoo tasaa pirobaabiliti dogongoraa murteessuuf fayyaduu dha."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3155399\n"
-"220\n"
+"04060181.xhp\n"
+"par_id3155615\n"
+"111\n"
+"help.text"
+msgid "<emph>DegreesFreedom</emph> are the degrees of freedom of the experiment."
+msgstr "<emph>DigriiBilisaa</emph>n hammaa firidamii yaaliiti."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3146787\n"
+"112\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3146988\n"
-"221\n"
+"04060181.xhp\n"
+"par_id3145774\n"
+"113\n"
"help.text"
-msgid "<item type=\"input\">=SHEET(Sheet2.A1)</item> returns 2 if Sheet2 is the second sheet in the spreadsheet document."
-msgstr "<item type=\"input\">=SHEET(Wardii.A1)</item> yoo wardii2 galmee wardii keessatti wardii lammaffaa ta'e 2 kenna."
+msgid "<item type=\"input\">=CHIDIST(13.27; 5)</item> equals 0.02."
+msgstr "<item type=\"input\">=CHIDIST(13.27; 5)</item> walqixa 0.02 ta'a."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3148829\n"
+"04060181.xhp\n"
+"par_id3156141\n"
+"158\n"
"help.text"
-msgid "<bookmark_value>number of sheets; function</bookmark_value> <bookmark_value>SHEETS function</bookmark_value>"
-msgstr "<bookmark_value>lakkoofsa wardiiwwanii; faankishinii</bookmark_value> <bookmark_value>faankishinii SHEETS</bookmark_value>"
+msgid "If the Chi square value of the random sample is 13.27 and if the experiment has 5 degrees of freedom, then the hypothesis is assured with a probability of error of 2%."
+msgstr "Yoo gatiin chaay iskuweerii kan eddattoon tasaa 13.27 ta'ee fi yaaliin digrii firiidamii 5 qabaate, sana booda hedatiin pirobaabiliitii dogongoraa 2% wajjin mirkaneeffama."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3148829\n"
-"222\n"
+"04060181.xhp\n"
+"bm_id0119200902231887\n"
"help.text"
-msgid "SHEETS"
-msgstr "SHEETS"
+msgid "<bookmark_value>CHISQDIST function</bookmark_value><bookmark_value>chi-square distribution</bookmark_value>"
+msgstr "<bookmark_value>faankishinii CHISQDIST</bookmark_value><bookmark_value>tamsaasa chaay-iskuweerii</bookmark_value>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148820\n"
-"223\n"
+"04060181.xhp\n"
+"hd_id0119200901583452\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TABELLEN\">Determines the number of sheets in a reference.</ahelp> If you do not enter any parameters, it returns the number of sheets in the current document."
-msgstr "<ahelp hid=\"HID_FUNC_TABELLEN\">Lakkoofsa wardiiwwanii wabii keessa jiran murteessa.</ahelp> Yoo ulaagaalee kamiyyu hin galchine ta'e, lakkoofsa wardiiwwanii galmee ammee keessa jiran kenna."
+msgid "CHISQDIST"
+msgstr "CHISQDIST"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3154220\n"
-"224\n"
+"04060181.xhp\n"
+"par_id0119200901583471\n"
+"help.text"
+msgid "<ahelp hid=\".\">Returns the value of the probability density function or the cumulative distribution function for the chi-square distribution.</ahelp>"
+msgstr "<ahelp hid=\".\">Gatii faankishinii rukina carraa deebisa ykn faankishiniin tamsaasaa walittiqabaa tamsaasa chaay-iskuuweriif deebisa.</ahelp>"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id0119200902395520\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150777\n"
-"225\n"
+"04060181.xhp\n"
+"par_id0119200902395679\n"
"help.text"
-msgid "SHEETS(Reference)"
-msgstr "SHEEETS(Wabii)"
+msgid "CHISQDIST(Number; Degrees Of Freedom; Cumulative)"
+msgstr "CHISQDIST(Lakkoofsa; Digiriiwwan Biliisummaa; Walittiqaba)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153060\n"
-"226\n"
+"04060181.xhp\n"
+"par_id011920090239564\n"
"help.text"
-msgid "<emph>Reference</emph> is the reference to a sheet or an area. This parameter is optional."
-msgstr "<emph>Wabii</emph>n wabii wardii ykn naannoo ti. Ulaagaan kun dirqaladha."
+msgid "<emph>Number</emph> is the number for which the function is to be calculated."
+msgstr "<emph>Lakkoofsa</emph> lakkoofsa faankishinichi herreegamuufi dha."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3149766\n"
-"227\n"
+"04060181.xhp\n"
+"par_id0119200902395660\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<emph>Degrees Of Freedom</emph> is the degrees of freedom for the chi-square function."
+msgstr "<emph>Digirii Biliisummaa</emph> digiriiwwan biliisummaa faankishinii chaay-iskuuweriiti."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150507\n"
-"228\n"
+"04060181.xhp\n"
+"par_id0119200902395623\n"
"help.text"
-msgid "<item type=\"input\">=SHEETS(Sheet1.A1:Sheet3.G12)</item> returns 3 if Sheet1, Sheet2, and Sheet3 exist in the sequence indicated."
-msgstr "<item type=\"input\">=SHEETS(Sheet1.A1:Sheet3.G12)</item> yoo wardii1, wardii2, fi wardii3 akka tartiiba agarsiifameetti jiraatan 3 kenna."
+msgid "<emph>Cumulative</emph> (optional): 0 or False calculates the probability density function. Other values or True or omitted calculates the cumulative distribution function."
+msgstr "<emph>Walittiqaba</emph> (dirqalee): 0 ykn Soba faankishinii rukina carraa herreega. Gatiiwwan kanbiroo ykn Dhugaa ykn kan dhiifame faankishinii tamsaasa walittiqabaa herrega."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3158407\n"
+"04060181.xhp\n"
+"bm_id3150603\n"
"help.text"
-msgid "<bookmark_value>MATCH function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii MATCH</bookmark_value>"
+msgid "<bookmark_value>EXPONDIST function</bookmark_value> <bookmark_value>exponential distributions</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii EXPONDIST</bookmark_value> <bookmark_value>raabsiiwwan eksipooneenshiyaalii</bookmark_value>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3158407\n"
-"101\n"
+"04060181.xhp\n"
+"hd_id3150603\n"
+"115\n"
"help.text"
-msgid "MATCH"
-msgstr "MATCH"
+msgid "EXPONDIST"
+msgstr "EXPONDIST"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154896\n"
-"102\n"
+"04060181.xhp\n"
+"par_id3149563\n"
+"116\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VERGLEICH\">Returns the relative position of an item in an array that matches a specified value.</ahelp> The function returns the position of the value found in the lookup_array as a number."
-msgstr "<ahelp hid=\"HID_FUNC_VERGLEICH\">Qubannoo birqabaa wanta waraantoo keessa jiruu kan gatii adda ba'e wajjiin walsimatu kenna.</ahelp> Faankishinichi qubannoo gatii waraantoo_ilaaluu keessatti akka lakkoofsaatti argamu kenna."
+msgid "<ahelp hid=\"HID_FUNC_EXPONVERT\">Returns the exponential distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_EXPONVERT\">Raabsii eksipooneenshiyaalii kenna.</ahelp>"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3153834\n"
-"103\n"
+"04060181.xhp\n"
+"hd_id3153789\n"
+"117\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3159152\n"
-"104\n"
+"04060181.xhp\n"
+"par_id3150987\n"
+"118\n"
"help.text"
-msgid "MATCH(SearchCriterion; LookupArray; Type)"
-msgstr "MATCH(UlaagaaBarbaachaa; WaraantooIlaaluu; Gosa)"
+msgid "EXPONDIST(Number; Lambda; C)"
+msgstr "EXPONDIST(Lakkofsa; Lambda; C)"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149336\n"
-"105\n"
+"04060181.xhp\n"
+"par_id3154663\n"
+"119\n"
"help.text"
-msgid "<emph>SearchCriterion</emph> is the value which is to be searched for in the single-row or single-column array."
-msgstr "<emph>UlaagaanBarbaachaa</emph> gatii waraantoo taree-qeenxee ykn tarjaa-qeenxee keessaa barbaadamuu qabudha."
+msgid "<emph>Number</emph> is the value of the function."
+msgstr "<emph>Lakkofsi</emph> gatii fankishiniiti."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3159167\n"
-"106\n"
+"04060181.xhp\n"
+"par_id3154569\n"
+"120\n"
"help.text"
-msgid "<emph>LookupArray</emph> is the reference searched. A lookup array can be a single row or column, or part of a single row or column."
-msgstr "<emph>WaraantoonIlaaluu</emph> wabii barbaadanedha. Waraantoon ilaaluu tarree ykn tarjaa qeenxee, ykn kutaa tarree ykn tarjaa qeenxee ta'uu ni danda'a."
+msgid "<emph>Lambda</emph> is the parameter value."
+msgstr "<emph>Lambda</emph>n gatii ullagaati."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147239\n"
-"107\n"
+"04060181.xhp\n"
+"par_id3147332\n"
+"121\n"
"help.text"
-msgid "<emph>Type</emph> may take the values 1, 0, or -1. If Type = 1 or if this optional parameter is missing, it is assumed that the first column of the search array is sorted in ascending order. If Type = -1 it is assumed that the column in sorted in descending order. This corresponds to the same function in Microsoft Excel."
-msgstr "<emph>Gosni</emph> gatiiwwan 1, 0, ykn -1 fudhachuu danda'a. Yoo Gosni = 1 ykn yoo ulaagaan dirqalaa kun hafe, tarjaan jalqabaa waraantoo barbaachaa jalaa ol akka tartiibeffametti ilaalama. Yoo Gosni = -1 tarjaan irraa gad akka tartiibeffametti ilaalama. Kun Maaykiroosooft Ekseelii keessatti faankishinii wal fakkaataa ilaallata."
+msgid "<emph>C</emph> is a logical value that determines the form of the function. <emph>C = 0</emph> calculates the density function, and <emph>C = 1</emph> calculates the distribution."
+msgstr "<emph>C</emph>n gatii yaayaa kan akkataa fankishinii murteessu dha.<emph>C = 0</emph> rukkina fankishinii shallaga fi <emph>C = 1</emph> raabsa shallaga.."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154265\n"
-"231\n"
+"04060181.xhp\n"
+"hd_id3146133\n"
+"122\n"
"help.text"
-msgid "If Type = 0, only exact matches are found. If the search criterion is found more than once, the function returns the index of the first matching value. Only if Type = 0 can you search for regular expressions."
-msgstr "Yoo Gosni = 0, walsimannaa sirrii qofti ni argamu. Yoo ulaagaan barbaachaa al tokko caalaa argame, faankishinichi kasaa gatii walsimsiisuu jalqabaa kenna. Yoo Gosni = 0 qofa ibsoota idilee barbaadu dandeessa."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147528\n"
-"232\n"
+"04060181.xhp\n"
+"par_id3150357\n"
+"123\n"
"help.text"
-msgid "If Type = 1 or the third parameter is missing, the index of the last value that is smaller or equal to the search criterion is returned. This applies even when the search array is not sorted. For Type = -1, the first value that is larger or equal is returned."
-msgstr "Yoo Gosa = 1 ykn ulaagaan sadaffaa hafe, kasaan gatii dhumaa ulaagaa barbaachaa wajjiin walqixa ykn irra xiqqaa ta'e ni kennama. Kun Yeroo waraantoon barbaachaa hin tartiibofneyyu faayidaa irra ni oola. Gosa = -1f, lakkoofsi jalqabaa walqixa ykn guddaa ta'e ni keennama."
+msgid "<item type=\"input\">=EXPONDIST(3;0.5;1)</item> returns 0.78."
+msgstr "<item type=\"input\">=EXPONDIST(3;0.5;1)</item> 0.78 kenna."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3155119\n"
-"108\n"
+"04060182.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Statistical Functions Part Two"
+msgstr "Fankishinoota Istaatistiksii Kutaa Lama"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155343\n"
-"109\n"
+"04060182.xhp\n"
+"hd_id3154372\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">=MATCH(200;D1:D100)</item> searches the area D1:D100, which is sorted by column D, for the value 200. As soon as this value is reached, the number of the row in which it was found is returned. If a higher value is found during the search in the column, the number of the previous row is returned."
-msgstr "<item type=\"input\">=MATCH(200;D1:D100)</item> naannoo D1:D100, gatii 200f, tajaa D dhaan tartiiba'e barbaada. Akkuma gatii kana bira ga'ametti, lakkoofsi tarree gatiin kun kun keessaa argame ni deebi'a. Yeroo tarjaa keessa barbaachi adeemsifamu yoo gatii guddaan argame, lakkoofsi tarree duraa ni deebi'a."
+msgid "<variable id=\"fh\"><link href=\"text/scalc/01/04060182.xhp\" name=\"Statistical Functions Part Two\">Statistical Functions Part Two</link></variable>"
+msgstr "<variable id=\"fh\"><link href=\"text/scalc/01/04060182.xhp\" name=\"Statistical Functions Part Two\">Fankishinoota Istaatistiksii Kutaa Lama</link></variable>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3158430\n"
+"04060182.xhp\n"
+"bm_id3145388\n"
"help.text"
-msgid "<bookmark_value>OFFSET function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii OFFSET</bookmark_value>"
+msgid "<bookmark_value>FINV function</bookmark_value> <bookmark_value>inverse F probability distribution</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii FINV</bookmark_value> <bookmark_value>raabsa pirobaabilii F tiif garagaltoo barbaadi</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3158430\n"
-"111\n"
+"04060182.xhp\n"
+"hd_id3145388\n"
+"2\n"
"help.text"
-msgid "OFFSET"
-msgstr "OFFSET"
+msgid "FINV"
+msgstr "FINV"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149167\n"
-"112\n"
+"04060182.xhp\n"
+"par_id3155089\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VERSCHIEBUNG\">Returns the value of a cell offset by a certain number of rows and columns from a given reference point.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_VERSCHIEBUNG\">Gatii iddooda mandhee tarreewwanii fi tarjaawwan murta'aaniin tuqaa wabii kenname keessaa deebisa.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_FINV\">Returns the inverse of the F probability distribution.</ahelp> The F distribution is used for F tests in order to set the relation between two differing data sets."
+msgstr "<ahelp hid=\"HID_FUNC_FINV\">Raabsa pirobaabiliitii F tif garagaltoo kenna.</ahelp> Raabsi F yaaliwwan F tif firummaa qindaa'inoota deetaa garagaraa lama gidduu jiru qindeessuuf fayyada."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3146952\n"
-"113\n"
+"04060182.xhp\n"
+"hd_id3153816\n"
+"4\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3159194\n"
-"114\n"
+"04060182.xhp\n"
+"par_id3153068\n"
+"5\n"
"help.text"
-msgid "OFFSET(Reference; Rows; Columns; Height; Width)"
-msgstr "OFFSET(Wabii; Tarreewwan; Tarjaawwan; Hojjaa; Dalgee)"
+msgid "FINV(Number; DegreesFreedom1; DegreesFreedom2)"
+msgstr "FINV(Lakkofsa; DigriisFiriidam1; DigriisFiridam2)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3152360\n"
-"115\n"
+"04060182.xhp\n"
+"par_id3146866\n"
+"6\n"
"help.text"
-msgid "<emph>Reference</emph> is the reference from which the function searches for the new reference."
-msgstr "<emph>Wabii</emph>n wabii faankishiniin wabii haaraa irraa barbaadudha."
+msgid "<emph>Number</emph> is probability value for which the inverse F distribution is to be calculated."
+msgstr "<emph>Lakkoofsi</emph> gatii pirobaabiliitii kan gargaltoon raabsa F shallagamuufii dha."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3156032\n"
-"116\n"
+"04060182.xhp\n"
+"par_id3153914\n"
+"7\n"
"help.text"
-msgid "<emph>Rows</emph> is the number of rows by which the reference was corrected up (negative value) or down."
-msgstr "<emph>Tarreewwan</emph> lakkoofsa tarreewwanii wabiin ittiin ol(gatii negetiivaa) ykn gad sirraa'edha."
+msgid "<emph>DegreesFreedom1</emph> is the number of degrees of freedom in the numerator of the F distribution."
+msgstr "<emph>DigriisFiridam1</emph> lakkoofsa digrii firidamii waamamaa raabsa F ti."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3166458\n"
-"117\n"
+"04060182.xhp\n"
+"par_id3148607\n"
+"8\n"
"help.text"
-msgid "<emph>Columns</emph> (optional) is the number of columns by which the reference was corrected to the left (negative value) or to the right."
-msgstr "<emph>Tarjaawwan</emph> (dirqala) lakkoofsa tarjaawwanii kan wabiin ittiin gara bitaatti (gatii negetiivaa) ykn gara mirgaatti sirraa'edha."
+msgid "<emph>DegreesFreedom2</emph> is the number of degrees of freedom in the denominator of the F distribution."
+msgstr "<emph>DigriisFiridam2</emph> lakkoofsa digrii firidamii waamsisaa raabsa F ti."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150708\n"
-"118\n"
+"04060182.xhp\n"
+"hd_id3156021\n"
+"9\n"
"help.text"
-msgid "<emph>Height</emph> (optional) is the vertical height for an area that starts at the new reference position."
-msgstr "<emph>Hojjaa</emph>n (dirqala) hojjaa sarjaa bal'ina qubannoo wabii haaraa irratti jalqabuuti."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147278\n"
-"119\n"
+"04060182.xhp\n"
+"par_id3145073\n"
+"10\n"
"help.text"
-msgid "<emph>Width</emph> (optional) is the horizontal width for an area that starts at the new reference position."
-msgstr "<emph>Dalgee</emph>n (dirqala) dalgee surdalaa bal'ina qubannoo wabii haaaraa irratti jalqabuuti."
+msgid "<item type=\"input\">=FINV(0.5;5;10)</item> yields 0.93."
+msgstr "<item type=\"input\">=FINV(0.5;5;10)</item> 0.93 kenna."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id8662373\n"
+"04060182.xhp\n"
+"bm_id3150888\n"
"help.text"
-msgid "Arguments <emph>Rows</emph> and <emph>Columns</emph> must not lead to zero or negative start row or column."
-msgstr "Qajeelfamoonni <emph>Tarreewwan</emph> fi <emph>Tarjaawwan</emph> gara zeerootti ykn tarree jalqabaa negetiiviitti ykn tarjaatti deemsisuu hin qabu."
+msgid "<bookmark_value>FISHER function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii FISHER</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id9051484\n"
+"04060182.xhp\n"
+"hd_id3150888\n"
+"12\n"
"help.text"
-msgid "Arguments <emph>Height</emph> and <emph>Width</emph> must not lead to zero or negative count of rows or columns."
-msgstr "Qajeelfamoonni <emph>Hojjaa</emph> fi <emph>Dalgee</emph> gara zeerootti ykn tarree negetiiviidhaan lakkaawuutti ykn tarjaatti deemsisuu hin qabu."
+msgid "FISHER"
+msgstr "FISHER"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN1104B\n"
+"04060182.xhp\n"
+"par_id3155384\n"
+"13\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "<ahelp hid=\"HID_FUNC_FISHER\">Returns the Fisher transformation for x and creates a function close to a normal distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FISHER\">jijjiirama fishraii x kenna fi fankishinii raabsa baramootti dhihaatu uuma.</ahelp>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3155586\n"
-"120\n"
+"04060182.xhp\n"
+"hd_id3149898\n"
+"14\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3143220\n"
+"15\n"
+"help.text"
+msgid "FISHER(Number)"
+msgstr "FISHER(Lakkoofsa)"
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3159228\n"
+"16\n"
+"help.text"
+msgid "<emph>Number</emph> is the value to be transformed."
+msgstr "<emph>Lakkoofsi</emph> gatii jijjiiramuu dha."
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3154763\n"
+"17\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149744\n"
-"121\n"
+"04060182.xhp\n"
+"par_id3149383\n"
+"18\n"
"help.text"
-msgid "<item type=\"input\">=OFFSET(A1;2;2)</item> returns the value in cell C3 (A1 moved by two rows and two columns down). If C3 contains the value <item type=\"input\">100</item> this function returns the value 100."
-msgstr "<item type=\"input\">=OFFSET(A1;2;2)</item> gatii mandhee C3 (A1 tarreewwan lamaa fi tarjaawwan lamaan gad hiiqe) kenna. Yoo C3n gatii <item type=\"input\">100</item> qabaate faankishiniin kun gatii 100 kenna."
+msgid "<item type=\"input\">=FISHER(0.5)</item> yields 0.55."
+msgstr "<item type=\"input\">=FISHER(0.5)</item> 0.55 kenna."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id7439802\n"
+"04060182.xhp\n"
+"bm_id3155758\n"
"help.text"
-msgid "<item type=\"input\">=OFFSET(B2:C3;1;1)</item> returns a reference to B2:C3 moved down by 1 row and one column to the right (C3:D4)."
-msgstr "<item type=\"input\">=OFFSET(B2:C3;1;1)</item> wabii B2:C3 tarree 1 fi tarjaa tokkoon gad hiiqe gara mirgaatti (C3:D4) kenna."
+msgid "<bookmark_value>FISHERINV function</bookmark_value> <bookmark_value>inverse of Fisher transformation</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii FISHERINV</bookmark_value> <bookmark_value>garagaltoo jijjiirama fiisharii</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3009430\n"
+"04060182.xhp\n"
+"hd_id3155758\n"
+"20\n"
"help.text"
-msgid "<item type=\"input\">=OFFSET(B2:C3;-1;-1)</item> returns a reference to B2:C3 moved up by 1 row and one column to the left (A1:B2)."
-msgstr "<item type=\"input\">=OFFSET(B2:C3;-1;-1)</item> wabii B2:C3 tarree 1 fi tarjaa tokkoon ol hiiqe gara bitaatti (A1:B2) kenna."
+msgid "FISHERINV"
+msgstr "FISHERINV"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id2629169\n"
+"04060182.xhp\n"
+"par_id3154734\n"
+"21\n"
"help.text"
-msgid "<item type=\"input\">=OFFSET(B2:C3;0;0;3;4)</item> returns a reference to B2:C3 resized to 3 rows and 4 columns (B2:E4)."
-msgstr "<item type=\"input\">=OFFSET(B2:C3;0;0;3;4)</item> wabii B2:C3 tarreewwan 3 fi tarjaawwan 4 (B2:E4)tti irra deebi'anii hamamtooman kenna."
+msgid "<ahelp hid=\"HID_FUNC_FISHERINV\">Returns the inverse of the Fisher transformation for x and creates a function close to a normal distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FISHERINV\">Garagaltoo jijjiirama fishraii x kenna fi fankishinii raabsa baramootti dhihaatu uuma.</ahelp>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id6668599\n"
+"04060182.xhp\n"
+"hd_id3155755\n"
+"22\n"
"help.text"
-msgid "<item type=\"input\">=OFFSET(B2:C3;1;0;3;4)</item> returns a reference to B2:C3 moved down by one row resized to 3 rows and 4 columns (B2:E4)."
-msgstr "<item type=\"input\">=OFFSET(B2:C3;1;0;3;4)</item> wabii B2:C3 tarree tokko gara tarreewwan 3 fi tarjaawwan 4tti irra deebi'ee hamamtoomeetiin (B2:E4) gara gadiitti hiiqe kenna."
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153739\n"
-"122\n"
+"04060182.xhp\n"
+"par_id3146108\n"
+"23\n"
"help.text"
-msgid "<item type=\"input\">=SUM(OFFSET(A1;2;2;5;6))</item> determines the total of the area that starts in cell C3 and has a height of 5 rows and a width of 6 columns (area=C3:H7)."
-msgstr "<item type=\"input\">=SUM(OFFSET(A1;2;2;5;6))</item> dimshaasha bal'inaa mandhee C3 keessatti jalqabu murteessa dabalataanis hojjaa tarreewwan 5 fi dalgee tarjaawwan 6 qaba (bal'ina=C3:H7)."
+msgid "FISHERINV(Number)"
+msgstr "FISHERINV(Lakkoofsa)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3159273\n"
+"04060182.xhp\n"
+"par_id3145115\n"
+"24\n"
"help.text"
-msgid "<bookmark_value>LOOKUP function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii LOOKUP</bookmark_value>"
+msgid "<emph>Number</emph> is the value that is to undergo reverse-transformation."
+msgstr "<emph>Lakkofsi</emph> gatii jijjiiramni garagaltoo irratti raawwatamuu dha."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3159273\n"
-"123\n"
+"04060182.xhp\n"
+"hd_id3155744\n"
+"25\n"
"help.text"
-msgid "LOOKUP"
-msgstr "LOOKUP"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153389\n"
-"124\n"
+"04060182.xhp\n"
+"par_id3150432\n"
+"26\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VERWEIS\">Returns the contents of a cell either from a one-row or one-column range.</ahelp> Optionally, the assigned value (of the same index) is returned in a different column and row. As opposed to <link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> and <link href=\"text/scalc/01/04060109.xhp\" name=\"HLOOKUP\">HLOOKUP</link>, search and result vector may be at different positions; they do not have to be adjacent. Additionally, the search vector for the LOOKUP must be sorted ascending, otherwise the search will not return any usable results."
-msgstr "<ahelp hid=\"HID_FUNC_VERWEIS\">Mandhee hangii tarree-tokkoo ykn tarjaa-tokkoo irraa qabeentota kenna.</ahelp> Dirqalaan, gatiin (kasaa walfakkaataa) moggaafame tarjaa fi tarree garaagaraa keessatti kennama. Faallaa <link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> fi <link href=\"text/scalc/01/04060109.xhp\" name=\"HLOOKUP\">HLOOKUP</link>tti, kalqabeen barbaachaa fi firii bakka garaagaraa ta'uu danda'u; isaan wal cinaa ta'uu hin qaban. Dabalataan, kalqabeen barbaachaa LOOKUP jalaa ol tartiibeffamuu qaba, ta'uu baannaan barbaachi firiiwwan faayidaa irra oolan hin kennu."
+msgid "<item type=\"input\">=FISHERINV(0.5)</item> yields 0.46."
+msgstr "<item type=\"input\">=FISHERINV(0.5)</item> 0.46 kenna."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id4484084\n"
+"04060182.xhp\n"
+"bm_id3151390\n"
"help.text"
-msgid "If LOOKUP cannot find the search criterion, it matches the largest value in the search vector that is less than or equal to the search criterion."
-msgstr "Yoo LOOKUP ulaagaa barbaachaa argachuu dadhabe, gatii guddaa kalqabee barbaachaa kan ulaagaa barbaachaa wajjiin walqixa ykn irra xiqqaa ta'e waliin wal simata."
+msgid "<bookmark_value>FTEST function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii FTEST</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3152947\n"
-"125\n"
+"04060182.xhp\n"
+"hd_id3151390\n"
+"28\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "FTEST"
+msgstr "FTEST"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154104\n"
-"126\n"
+"04060182.xhp\n"
+"par_id3150534\n"
+"29\n"
"help.text"
-msgid "LOOKUP(SearchCriterion; SearchVector; ResultVector)"
-msgstr "LOOKUP(UlaagaaBarbaachaa; KalqabeeBarbaachaa; KalqabeeFirii)"
+msgid "<ahelp hid=\"HID_FUNC_FTEST\">Returns the result of an F test.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FTEST\">Bu'aa yaalii F kenna.</ahelp>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150646\n"
-"127\n"
+"04060182.xhp\n"
+"hd_id3166466\n"
+"30\n"
"help.text"
-msgid "<emph>SearchCriterion</emph> is the value to be searched for; entered either directly or as a reference."
-msgstr "<emph>UlaagaanBarbaachaa</emph> gatii barbaadamuu qabudha; kallattiidhaan ykn akka wabiitti galeera."
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154854\n"
-"128\n"
+"04060182.xhp\n"
+"par_id3153024\n"
+"31\n"
"help.text"
-msgid "<emph>SearchVector</emph> is the single-row or single-column area to be searched."
-msgstr "<emph>KalqabeenBarbaachaa</emph> bal'ina tarree-qeenxee ykn tarjaa-qeenxee barbaadamuuf jirudha."
+msgid "FTEST(Data1; Data2)"
+msgstr "FTEST(Deetaa1; Deetaa2)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149925\n"
-"129\n"
+"04060182.xhp\n"
+"par_id3150032\n"
+"32\n"
"help.text"
-msgid "<emph>ResultVector</emph> is another single-row or single-column range from which the result of the function is taken. The result is the cell of the result vector with the same index as the instance found in the search vector."
-msgstr "<emph>KalqabeenFirii</emph> hangii tarree-qeenxee ykn tarjaa-qeenee biraa firiin faankishinii irraa fudhatamudha. Firiin mandhee kalqabee firii kasaa walfakkaataa akka miseensa kalqabee barbaachaa keessaa argameedha."
+msgid "<emph>Data1</emph> is the first record array."
+msgstr "<emph>Deetaa1</emph> waraantoo kuusaa tokkoffaati."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3148624\n"
-"130\n"
+"04060182.xhp\n"
+"par_id3153018\n"
+"33\n"
+"help.text"
+msgid "<emph>Data2</emph> is the second record array."
+msgstr "<emph>Deetaa2</emph> waraantoo kuusaa lammaffaati."
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3153123\n"
+"34\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149809\n"
-"131\n"
+"04060182.xhp\n"
+"par_id3159126\n"
+"35\n"
"help.text"
-msgid "<item type=\"input\">=LOOKUP(A1;D1:D100;F1:F100)</item> searches the corresponding cell in range D1:D100 for the number you entered in A1. For the instance found, the index is determined, for example, the 12th cell in this range. Then, the contents of the 12th cell are returned as the value of the function (in the result vector)."
-msgstr "<item type=\"input\">=LOOKUP(A1;D1:D100;F1:F100)</item> Lakkoofsa A1 keessa galchiteef hangii D1:D100 keessaa mandhee barbaada. Miseensa argameef, kasaan murtaa'eera, fakkeenyaaf, mandhee 12ffaa hangii kana keessaa. Sana booda, qabeentotni mandhee 12ffaa akka gatii faankishinii (kalqabee firii keessaatti) deebi'u."
+msgid "<item type=\"input\">=FTEST(A1:A30;B1:B12)</item> calculates whether the two data sets are different in their variance and returns the probability that both sets could have come from the same total population."
+msgstr "<item type=\"input\">=FTEST(A1:A30;B1:B12)</item> tuutotni deetaa lama variyaansiidhan garagara ta'uu isaanii shallaguudhan pirobaabilitii tuutotni lamaanuu iada'ama populeeshinii walfakkaataa irraa dhufuu danda'uu isaanii kenna."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3149425\n"
+"04060182.xhp\n"
+"bm_id3150372\n"
"help.text"
-msgid "<bookmark_value>STYLE function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii STYLE</bookmark_value>"
+msgid "<bookmark_value>FDIST function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii FDIST</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3149425\n"
-"133\n"
+"04060182.xhp\n"
+"hd_id3150372\n"
+"37\n"
"help.text"
-msgid "STYLE"
-msgstr "STYLE"
+msgid "FDIST"
+msgstr "FDIST"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150826\n"
-"134\n"
+"04060182.xhp\n"
+"par_id3152981\n"
+"38\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VORLAGE\">Applies a style to the cell containing the formula.</ahelp> After a set amount of time, another style can be applied. This function always returns the value 0, allowing you to add it to another function without changing the value. Together with the CURRENT function you can apply a color to a cell regardless of the value. For example: =...+STYLE(IF(CURRENT()>3;\"red\";\"green\")) applies the style \"red\" to the cell if the value is greater than 3, otherwise the style \"green\" is applied. Both cell formats have to be defined beforehand."
-msgstr "<ahelp hid=\"HID_FUNC_VORLAGE\">Mandhee foormulaa qabatetti haala hojii irra oolcha.</ahelp> Yeroo hamma ta'een booda, haalatni biraa hojii irra ooluu danda'a. Faankishiniin kun, gatii osoo hin jijjiiriin akka ati faankisinii biraatti dabaltuuf sii eeyyamuudhaan yeroo hunda gatii 0 kenna. Faankishinii CURRENT wajjiin gatii osoo hin ilaallatiin mandheetti halluu dibuu ni dandeessa. Fakkeenyaaf: =...+SYLE(IF(CURRENT()>3;\"diimaa\";\"magariisa\")) Yoo gatiin irra guddaa 3 ta'e haalata \"diimaa\" mandheetti hojii irra oolcha, ta'uu baannaan haalata \"magariisatu\" hojii irra oola. Dhangiiwwan mandhee lamaanuu duraan ibsamuu qabu."
+msgid "<ahelp hid=\"HID_FUNC_FVERT\">Calculates the values of an F distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FVERT\">Gatiiwwan raabsa F shallaga.</ahelp>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3145373\n"
-"135\n"
+"04060182.xhp\n"
+"hd_id3150484\n"
+"39\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149302\n"
-"136\n"
+"04060182.xhp\n"
+"par_id3145826\n"
+"40\n"
"help.text"
-msgid "STYLE(\"Style\"; Time; \"Style2\")"
-msgstr "STYLE(\"Haalata\"; Yeroo; \"Haalata2\")"
+msgid "FDIST(Number; DegreesFreedom1; DegreesFreedom2)"
+msgstr "FDIST(Lakkofsa; DigriisFiriidam1; DigriisFiridam2)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150596\n"
-"137\n"
+"04060182.xhp\n"
+"par_id3150461\n"
+"41\n"
"help.text"
-msgid "<emph>Style</emph> is the name of a cell style assigned to the cell. Style names must be entered in quotation marks."
-msgstr "<emph>Haalatni</emph> maqaa haalata mandhee mandheetti moggaafameedha. Maqaawwan haalataa mallattoo waraabbii keessa taa'uu qabu."
+msgid "<emph>Number</emph> is the value for which the F distribution is to be calculated."
+msgstr "<emph>Lakkoofsi</emph> gatii kan raabsi F shallagamuufii dha."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3156149\n"
-"138\n"
+"04060182.xhp\n"
+"par_id3150029\n"
+"42\n"
"help.text"
-msgid "<emph>Time</emph> is an optional time range in seconds. If this parameter is missing the style will not be changed after a certain amount of time has passed."
-msgstr "<emph>Yeroon</emph> hangii yeroo sekondiitiinii dirqalaadha. Yoo ulaagaan kun hafe haalatni yeroon murtaa'e erga darbee booda jijjiiramuu hin dandaa'u."
+msgid "<emph>degreesFreedom1</emph> is the degrees of freedom in the numerator in the F distribution."
+msgstr "<emph>DigriisFiridam1</emph> digrii firidamii waamamaa kan raabsa F keessaati."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149520\n"
-"139\n"
+"04060182.xhp\n"
+"par_id3146877\n"
+"43\n"
"help.text"
-msgid "<emph>Style2</emph> is the optional name of a cell style assigned to the cell after a certain amount of time has passed. If this parameter is missing \"Default\" is assumed."
-msgstr "<emph>Haalata2</emph> maqaa dirqalaa haalata mandhee erga yeroon murtaa'ee darbee booda mandheetti moggaafamedha. Yoo ulaagaan kun hafe \"durtiin\" ni tilmaama."
+msgid "<emph>degreesFreedom2</emph> is the degrees of freedom in the denominator in the F distribution."
+msgstr "<emph>DigriisFiridam2</emph> digrii firidamii waamsisaa kan raabsa F keessaati."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN111CA\n"
+"04060182.xhp\n"
+"hd_id3147423\n"
+"44\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3159254\n"
-"140\n"
+"04060182.xhp\n"
+"par_id3150696\n"
+"45\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<item type=\"input\">=FDIST(0.8;8;12)</item> yields 0.61."
+msgstr "<item type=\"input\">=FDIST(0.8;8;12)</item> 0.61 kenna."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3151374\n"
-"141\n"
+"04060182.xhp\n"
+"bm_id0119200903223192\n"
"help.text"
-msgid "<item type=\"input\">=STYLE(\"Invisible\";60;\"Default\")</item> formats the cell in transparent format for 60 seconds after the document was recalculated or loaded, then the Default format is assigned. Both cell formats have to be defined beforehand."
-msgstr "<item type=\"input\">=STYLE(\"Invisible\";60;\"Default\")</item> mandhee dhangii ifaa keessaa erga galmeen fe'amee ykn irra deebi'amee shallagamee booda sekondii 60f dhangi'ama, sana booda dhangiin durtii ni moggaafama. Dhangiiwwan mandhee lamaan isaaniiyyu dura ibsamuu qabu."
+msgid "<bookmark_value>GAMMA function</bookmark_value>"
+msgstr "<bookmark_value>faankishinii GAMMA</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id8056886\n"
+"04060182.xhp\n"
+"hd_id0119200903205393\n"
"help.text"
-msgid "Since STYLE() has a numeric return value of zero, this return value gets appended to a string. This can be avoided using T() as in the following example"
-msgstr "STYLE()n gatii lakkoofsaa deebi'u zeeroo waan qabuuf, gatiin deebi'u kun diraatti miilta'a. KUn akka fakkeenya armaan gadiitti T() fayyadamuudhaan dhorgamuu danda'a."
+msgid "GAMMA"
+msgstr "GAMMA"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3668935\n"
+"04060182.xhp\n"
+"par_id0119200903205379\n"
"help.text"
-msgid "<item type=\"input\">=\"Text\"&T(STYLE(\"myStyle\"))</item>"
-msgstr "<item type=\"input\">=\"Text\"&T(STYLE(\"myStyle\"))</item>"
+msgid "<ahelp hid=\".\">Returns the Gamma function value.</ahelp> Note that GAMMAINV is not the inverse of GAMMA, but of GAMMADIST."
+msgstr "<ahelp hid=\".\">Gatii faankishinii gaammaa deebisa.</ahelp> Note that GAMMAINV is not the inverse of GAMMA, but of GAMMADIST."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3042085\n"
+"04060182.xhp\n"
+"hd_id0119200903271613\n"
"help.text"
-msgid "See also CURRENT() for another example."
-msgstr "Fakkeenya biraaf dabalataan CURRENT()s ilaali."
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3150430\n"
+"04060182.xhp\n"
+"par_id0119200903271614\n"
"help.text"
-msgid "<bookmark_value>CHOOSE function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii CHOOSE</bookmark_value>"
+msgid "<emph>Number</emph> is the number for which the Gamma function value is to be calculated."
+msgstr "<emph>Lakkoofsa</emph> lakkoofa gatiin faankishinii gaammaa herreegamuufi dha."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3150430\n"
-"142\n"
+"04060182.xhp\n"
+"bm_id3154841\n"
"help.text"
-msgid "CHOOSE"
-msgstr "CHOOSE"
+msgid "<bookmark_value>GAMMAINV function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii GAMMAINV</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3143270\n"
-"143\n"
+"04060182.xhp\n"
+"hd_id3154841\n"
+"47\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WAHL\">Uses an index to return a value from a list of up to 30 values.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_WAHL\">Tarree gatiiwwan hanga 30 keessaa gatii deebisuuf kasaa fayyadama.</ahelp>"
+msgid "GAMMAINV"
+msgstr "GAMMAINV"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3153533\n"
-"144\n"
+"04060182.xhp\n"
+"par_id3153932\n"
+"48\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_GAMMAINV\">Returns the inverse of the Gamma cumulative distribution GAMMADIST.</ahelp> This function allows you to search for variables with different distribution."
+msgstr "<ahelp hid=\"HID_FUNC_GAMMAINV\">Garagaltoo GAMMADIST raabsa dimshaasha Gaamaa kenna.</ahelp> Fankishiniin kun jijjiiramaa raabsa garagaraa wajjinii akka barbaaddu sii eeyyama."
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3149949\n"
+"49\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155425\n"
-"145\n"
+"04060182.xhp\n"
+"par_id3155828\n"
+"50\n"
"help.text"
-msgid "CHOOSE(Index; Value1; ...; Value30)"
-msgstr "CHOOSE(Kasaa; Gatii1; ...; Gatii30)"
+msgid "GAMMAINV(Number; Alpha; Beta)"
+msgstr "GAMMAINV(Lakkoofsa; Alfaa; Beettaa)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3144755\n"
-"146\n"
+"04060182.xhp\n"
+"par_id3145138\n"
+"51\n"
"help.text"
-msgid "<emph>Index</emph> is a reference or number between 1 and 30 indicating which value is to be taken from the list."
-msgstr "<emph>Kasaa</emph>n wabii ykn lakkoofsa 1 fi 30 gidduu gatii kamtu tarree keessaa akka fudhatamuu qabu mul'isudha."
+msgid "<emph>Number</emph> is the probability value for which the inverse Gamma distribution is to be calculated."
+msgstr "<emph>Lakkoofsi</emph> gatii pirobaabiliitii kan gargaltoon raabsa Gaamaa shallagamuufii dha."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149939\n"
-"147\n"
+"04060182.xhp\n"
+"par_id3152785\n"
+"52\n"
"help.text"
-msgid "<emph>Value1...Value30</emph> is the list of values entered as a reference to a cell or as individual values."
-msgstr "<emph>Gatii1...Gatii30</emph> tarree gatiiwwanii mandheef akka wabiitti seene ykn akka gatiiwwan mata mataattii dha."
+msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
+msgstr "<emph>Alfaa</emph>n ulaagaa Alfaa kan raabsa Gaamaati."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3151253\n"
-"148\n"
+"04060182.xhp\n"
+"par_id3154561\n"
+"53\n"
+"help.text"
+msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution."
+msgstr "<emph>Beettaa</emph>n ulaagaa Beettaa kan raabsa Gaamaati."
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3148734\n"
+"54\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150625\n"
-"149\n"
+"04060182.xhp\n"
+"par_id3153331\n"
+"55\n"
"help.text"
-msgid "<item type=\"input\">=CHOOSE(A1;B1;B2;B3;\"Today\";\"Yesterday\";\"Tomorrow\")</item>, for example, returns the contents of cell B2 for A1 = 2; for A1 = 4, the function returns the text \"Today\"."
-msgstr "<item type=\"input\">=CHOOSE(A1;B1;B2;B3;\"Har'a\";\"Kaleessa\";\"Boru\")</item>, fakkeenyaf, qabeentoon mandhee B2 A1=2 dhaaf; A1=4 dhaaf, deebisa faankishiniin barruu \"Har'a\" deebisa."
+msgid "<item type=\"input\">=GAMMAINV(0.8;1;1)</item> yields 1.61."
+msgstr "<item type=\"input\">=GAMMAINV(0.8;1;1)</item> 1.61 kenna."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3151001\n"
+"04060182.xhp\n"
+"bm_id3154806\n"
"help.text"
-msgid "<bookmark_value>HLOOKUP function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii HLOOKUP</bookmark_value>"
+msgid "<bookmark_value>GAMMALN function</bookmark_value> <bookmark_value>natural logarithm of Gamma function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii GAMMALN</bookmark_value> <bookmark_value>logarizimii uumamaa fankishinii gaamaa</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3151001\n"
-"151\n"
+"04060182.xhp\n"
+"hd_id3154806\n"
+"57\n"
"help.text"
-msgid "HLOOKUP"
-msgstr "HLOOKUP"
+msgid "GAMMALN"
+msgstr "GAMMALN"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148688\n"
-"152\n"
+"04060182.xhp\n"
+"par_id3148572\n"
+"58\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WVERWEIS\">Searches for a value and reference to the cells below the selected area.</ahelp> This function verifies if the first row of an array contains a certain value. The function returns then the value in a row of the array, named in the <emph>Index</emph>, in the same column."
-msgstr "<ahelp hid=\"HID_FUNC_WVERWEIS\">Mandheewwan naannoo filatamee gad jiraniif gatii fi wabii barbaada.</ahelp> Faankishiniin kun tarreen jalqabaa waraantoo gatii murtaa'e qabaachuu isaa mirkaneessa. Faankishinichi ni deebisa sana booda gatiin tarree waraantoo keessaa, <emph>Kasaa</emph> tarjaa wal fakkaatu, keessatti moggaafama."
+msgid "<ahelp hid=\"HID_FUNC_GAMMALN\">Returns the natural logarithm of the Gamma function: G(x).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GAMMALN\">Logarizimii uumamaa fankishinii Gaamaa kenna: G(x).</ahelp>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3154661\n"
-"153\n"
+"04060182.xhp\n"
+"hd_id3152999\n"
+"59\n"
"help.text"
msgid "Syntax"
-msgstr "Caasim"
+msgstr "Caasima"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3146070\n"
-"154\n"
+"04060182.xhp\n"
+"par_id3153112\n"
+"60\n"
"help.text"
-msgid "HLOOKUP(SearchCriteria; Array; Index; Sorted)"
-msgstr "HLOOKUP(UlaagaaBarbaachaa; Waraantoo; Kasaa; Tartiibeefame)"
+msgid "GAMMALN(Number)"
+msgstr "GAMMALN(Lakkofsa)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148672\n"
-"155\n"
+"04060182.xhp\n"
+"par_id3154502\n"
+"61\n"
"help.text"
-msgid "See also:<link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> (columns and rows are exchanged)"
-msgstr "Akkaasumas:<link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> ilaali (tarjaawwanii fi tarreewwan)"
+msgid "<emph>Number</emph> is the value for which the natural logarithm of the Gamma function is to be calculated."
+msgstr "<emph>Lakkoofsi</emph> gatii kan logarizimiin uumamaa fankishinii Gaamaa shallagamuufii dha."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3147321\n"
+"04060182.xhp\n"
+"hd_id3153568\n"
+"62\n"
"help.text"
-msgid "<bookmark_value>ROW function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii Tarree</bookmark_value>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3147321\n"
-"157\n"
+"04060182.xhp\n"
+"par_id3153730\n"
+"63\n"
"help.text"
-msgid "ROW"
-msgstr "Tarree"
+msgid "<item type=\"input\">=GAMMALN(2)</item> yields 0."
+msgstr "<item type=\"input\">=GAMMALN(2)</item> 0 kenna."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154564\n"
-"203\n"
+"04060182.xhp\n"
+"bm_id3150132\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZEILE\">Returns the row number of a cell reference.</ahelp> If the reference is a cell, it returns the row number of the cell. If the reference is a cell range, it returns the corresponding row numbers in a one-column <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"Array\">Array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the ROW function with a range reference is not used in an array formula, only the row number of the first range cell will be returned."
-msgstr "<ahelp hid=\"HID_FUNC_ZEILE\">Lakkoofsa tarree wabii man'ee kenna.</ahelp> Yoo wabiin mandhee ta'e lakkoofsi tarree mandhichaa ni deebi'a; yoo ulaagaan naannoo mandhee ta'e, yoo foormulaan akka <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"Array\">waraantoo</link> <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">akka foormulaa waraantootti</link> galeera ta'e lakkoofsonni tarree tarjaa qeenxee keessatti kennamu.Yoo faankishiniin ROW naannoo ulaagaa wabii keessa jiru foormulaa waraantoof hin fayyadne ta'e, lakkoofsi tarree man'ee jalqabaa naannoo sana keessa jiru qofti ni murtaa'a."
+msgid "<bookmark_value>GAMMADIST function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii GAMMADIST</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3158439\n"
-"159\n"
+"04060182.xhp\n"
+"hd_id3150132\n"
+"65\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasim"
+msgid "GAMMADIST"
+msgstr "GAMMADIST"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154916\n"
-"160\n"
+"04060182.xhp\n"
+"par_id3155931\n"
+"66\n"
"help.text"
-msgid "ROW(Reference)"
-msgstr "ROW(wabii)"
+msgid "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Returns the values of a Gamma distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Gatiiwwan raabsa Gaamaa kenna.</ahelp>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3156336\n"
-"161\n"
+"04060182.xhp\n"
+"par_id0119200903333675\n"
"help.text"
-msgid "<emph>Reference</emph> is a cell, an area, or the name of an area."
-msgstr "<emph>wabii</emph>n man'ee tokko, iddoo, ykn maqaa iddooti."
+msgid "The inverse function is GAMMAINV."
+msgstr "Faankishiniin faallaa GAMMAINV dha."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3151109\n"
-"204\n"
+"04060182.xhp\n"
+"hd_id3147373\n"
+"67\n"
"help.text"
-msgid "If you do not indicate a reference, the row number of the cell in which the formula is entered will be found. <item type=\"productname\">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell."
-msgstr "Yoo wabii hin agarsiisnee ta'e, lakkoofsi tarree mandhee foormulaan keessa seene ni argama. <item type=\"productname\">%PRODUCTNAME</item> Calciin wabii ofumaan gara mandhee ammeetti qindeessa."
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3155609\n"
-"162\n"
+"04060182.xhp\n"
+"par_id3155436\n"
+"68\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "GAMMADIST(Number; Alpha; Beta; C)"
+msgstr "GAMMADIST(Lakkoofsa; Alfaa; Beettaa; C)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154830\n"
-"205\n"
+"04060182.xhp\n"
+"par_id3150571\n"
+"69\n"
"help.text"
-msgid "<item type=\"input\">=ROW(B3)</item> returns 3 because the reference refers to the third row in the table."
-msgstr "<item type=\"input\">=ROW(B3)</item> 3 deebisa sababni isaas wabiin tarree sadaffaa gabatee keessaa agarsiisa."
+msgid "<emph>Number</emph> is the value for which the Gamma distribution is to be calculated."
+msgstr "<emph>Lakkoofsi</emph> gatii kan raabsi Gaamaa shallagamuufii dha."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147094\n"
-"206\n"
+"04060182.xhp\n"
+"par_id3145295\n"
+"70\n"
"help.text"
-msgid "<item type=\"input\">{=ROW(D5:D8)}</item> returns the single-column array (5, 6, 7, 8) because the reference specified contains rows 5 through 8."
-msgstr "<item type=\"input\">{=ROW(D5:D8)}</item> waraantoo tarjaa-qeenxee (5, 6, 7, 8) deebisa sababni isaas wabiin adda ba'e tarreewwan 5 hanga 8 of keessatti qabata."
+msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
+msgstr "<emph>Alfaa</emph>n ulaagaa Alfaa kan raabsa Gaamaati."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153701\n"
-"207\n"
+"04060182.xhp\n"
+"par_id3151015\n"
+"71\n"
"help.text"
-msgid "<item type=\"input\">=ROW(D5:D8)</item> returns 5 because the ROW function is not used as array formula and only the number of the first row of the reference is returned."
-msgstr "<item type=\"input\">=ROW(D5:D8)</item> 5 deebisa sababni isaaas faankishiniin ROW akka foormulaa waraantootti hin fayyadu dabalataanis lakkoofsi tarree jalqabaa wabii qofti ni deebi'a."
+msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution"
+msgstr "<emph>Beettaa</emph>n ulaagaa Beettaa kan raabsa Gaamaati."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150996\n"
-"208\n"
+"04060182.xhp\n"
+"par_id3157972\n"
+"72\n"
"help.text"
-msgid "<item type=\"input\">{=ROW(A1:E1)}</item> and <item type=\"input\">=ROW(A1:E1)</item> both return 1 because the reference only contains row 1 as the first row in the table. (Because single-row areas only have one row number it does not make any difference whether or not the formula is used as an array formula.)"
-msgstr "<item type=\"input\">{=ROW(A1:E1)}</item> fi <item type=\"input\">=ROW(A1:E1)</item> lamaan isaaniyyu 1 deebisu sababni isaas wabiin gabatee keessatti akka tarjaa jalqabaatti tarree 1 qofa qabata. (Sababni isaas naannoowwan tarree-qeenxee lakkoofsa tarree tokkoo formulaan akka foormulaa waraantootti fayyadus fayyaduu baatus garaagarummaa hin uumne qofa qaba.)"
+msgid "<emph>C</emph> (optional) = 0 or False calculates the density function <emph>C</emph> = 1 or True calculates the distribution."
+msgstr "<emph>C</emph> = 0 fankishinii rukkinaa shallaga <emph>C</emph> = 1 raabsa shallaga."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153671\n"
-"209\n"
+"04060182.xhp\n"
+"hd_id3149535\n"
+"73\n"
"help.text"
-msgid "<item type=\"input\">=ROW()</item> returns 3 if the formula was entered in row 3."
-msgstr "<item type=\"input\">=ROW()</item> yoo foormulaan tarree 3 keessa seene 3 deebisa."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153790\n"
-"210\n"
+"04060182.xhp\n"
+"par_id3145354\n"
+"74\n"
"help.text"
-msgid "<item type=\"input\">{=ROW(Rabbit)}</item> returns the single-column array (1, 2, 3) if \"Rabbit\" is the named area (C1:D3)."
-msgstr "<item type=\"input\">{=ROW(Hilleensi)}</item> yoo \"Hilleensi\" maqaa naannoo (C1:D3) ta'e waraantoo tarjaa-qeenxee (1, 2, 3) deebisa."
+msgid "<item type=\"input\">=GAMMADIST(2;1;1;1)</item> yields 0.86."
+msgstr "<item type=\"input\">=GAMMADIST(2;1;1;1)</item> 0.86 kenna."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3145772\n"
+"04060182.xhp\n"
+"bm_id3150272\n"
"help.text"
-msgid "<bookmark_value>ROWS function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii ROWS</bookmark_value>"
+msgid "<bookmark_value>GAUSS function</bookmark_value> <bookmark_value>normal distribution; standard</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii GAUSS</bookmark_value> <bookmark_value>raabsa baratamoo;waltawaa</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3145772\n"
-"166\n"
+"04060182.xhp\n"
+"hd_id3150272\n"
+"76\n"
"help.text"
-msgid "ROWS"
-msgstr "ROWS"
+msgid "GAUSS"
+msgstr "GAUSS"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148971\n"
-"167\n"
+"04060182.xhp\n"
+"par_id3149030\n"
+"77\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZEILEN\">Returns the number of rows in a reference or array.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZEILEN\">Lakkoofsa tarreewwanii wabii ykn waraantoo keessaa deebisa.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_GAUSS\">Returns the standard normal cumulative distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GAUSS\">Raabsa dimshaashaa baratamoo waltawaa kenna.</ahelp>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3156051\n"
-"168\n"
+"04060182.xhp\n"
+"par_id2059694\n"
+"help.text"
+msgid "It is GAUSS(x)=NORMSDIST(x)-0.5"
+msgstr "Innis GAUSS(x)=NORMSDIST(x)-0.5 dha"
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3153551\n"
+"78\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154357\n"
-"169\n"
+"04060182.xhp\n"
+"par_id3155368\n"
+"79\n"
"help.text"
-msgid "ROWS(Array)"
-msgstr "ROWS(Waraantoo)"
+msgid "GAUSS(Number)"
+msgstr "GAUSS(Lakkoofsa)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155942\n"
-"170\n"
+"04060182.xhp\n"
+"par_id3153228\n"
+"80\n"
"help.text"
-msgid "<emph>Array</emph> is the reference or named area whose total number of rows is to be determined."
-msgstr "<emph>Waraantoo</emph>n wabii ykn naannoo maqaan itti moggaafame lakkoofsi dimshaashaa tarreewwan isaa murtaa'uu qabudha."
+msgid "<emph>Number</emph> is the value for which the value of the standard normal distribution is to be calculated."
+msgstr "<emph>Lakkoofsi</emph> gatii kan gatiin raabsa baratamoo waltawaa shallagamuufii dha."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3155869\n"
-"171\n"
+"04060182.xhp\n"
+"hd_id3150691\n"
+"81\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154725\n"
-"212\n"
+"04060182.xhp\n"
+"par_id3154867\n"
+"82\n"
"help.text"
-msgid "<item type=\"input\">=Rows(B5)</item> returns 1 because a cell only contains one row."
-msgstr "<item type=\"input\">=Rows(B5)</item> 1 deebisa sababni isaas mandheen tarree tokko qofa qabata."
+msgid "<item type=\"input\">=GAUSS(0.19)</item> = 0.08"
+msgstr "<item type=\"input\">=GAUSS(0.19)</item> = 0.08"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150102\n"
-"172\n"
+"04060182.xhp\n"
+"par_id3148594\n"
+"83\n"
"help.text"
-msgid "<item type=\"input\">=ROWS(A10:B12)</item> returns 3."
-msgstr "<item type=\"input\">=ROWS(A10:B12)</item> 3 deebisa."
+msgid "<item type=\"input\">=GAUSS(0.0375)</item> = 0.01"
+msgstr "<item type=\"input\">=GAUSS(0.0375)</item> = 0.01"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155143\n"
-"213\n"
+"04060182.xhp\n"
+"bm_id3148425\n"
"help.text"
-msgid "<item type=\"input\">=ROWS(Rabbit)</item> returns 3 if \"Rabbit\" is the named area (C1:D3)."
-msgstr "<item type=\"input\">=ROWS(Hilleensi)</item> Yoo \"Hilleensi\" maqaa naannoo (C1:D3) ta'e 3 deebisa."
+msgid "<bookmark_value>GEOMEAN function</bookmark_value> <bookmark_value>means;geometric</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii GEOMEAN</bookmark_value> <bookmark_value>miins;ji'omeetiriikii</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id9959410\n"
+"04060182.xhp\n"
+"hd_id3148425\n"
+"85\n"
"help.text"
-msgid "<bookmark_value>HYPERLINK function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii HYPERLINK</bookmark_value>"
+msgid "GEOMEAN"
+msgstr "GEOMEAN"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN11798\n"
+"04060182.xhp\n"
+"par_id3156257\n"
+"86\n"
"help.text"
-msgid "HYPERLINK"
-msgstr "HYPERLINK"
+msgid "<ahelp hid=\"HID_FUNC_GEOMITTEL\">Returns the geometric mean of a sample.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GEOMITTEL\">Miinii ji'omeetirikii eddattoo kenna.</ahelp>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN117F1\n"
+"04060182.xhp\n"
+"hd_id3147167\n"
+"87\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_HYPERLINK\">When you click a cell that contains the HYPERLINK function, the hyperlink opens.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_HYPERLINK\">Yeroo mandhee faankishinii HYPERLINK qabatu cuqaastu, geessituun ni banama.</ahelp>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN11800\n"
+"04060182.xhp\n"
+"par_id3153720\n"
+"88\n"
"help.text"
-msgid "If you use the optional <emph>CellText</emph> parameter, the formula locates the URL, and then displays the text or number."
-msgstr "Yoo ulaagaa <emph>barruu mandhee</emph> dirqalaa fayyadamte, foormulaan URL qubachiisa, sana boodas barruu mul'isa."
+msgid "GEOMEAN(Number1; Number2; ...Number30)"
+msgstr "GEOMEAN(Lakkofsa1; Lakkoofsa2; ...Lakkoofsa30)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN11803\n"
+"04060182.xhp\n"
+"par_id3152585\n"
+"89\n"
"help.text"
-msgid "To open a hyperlinked cell with the keyboard, select the cell, press F2 to enter the Edit mode, move the cursor in front of the hyperlink, press Shift+F10, and then choose <emph>Open Hyperlink</emph>."
-msgstr "Mandhee geessifame gabatee cuqoo wajjiin banuuf, mandhee filadhu, haalata gulaallii galchuuf F2 dhiibi, qaree fuldura geessituu jiru hiiqsi, Shift+F10 dhiibi, fi sana booda <emph>Geessituu Bani</emph> fladhu."
+msgid "<emph>Number1, Number2,...Number30</emph> are numeric arguments or ranges that represent a random sample."
+msgstr "<emph>Lakkofsa1; Lakkoofsa2; ...Lakkoofsa30</emph> qajeelfama lakkoofsati ykn hangii eddattoo tasaa bakka bu'uu dha."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN1180A\n"
+"04060182.xhp\n"
+"hd_id3146146\n"
+"90\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3149819\n"
+"92\n"
+"help.text"
+msgid "<item type=\"input\">=GEOMEAN(23;46;69)</item> = 41.79. The geometric mean value of this random sample is therefore 41.79."
+msgstr "<item type=\"input\">=GEOMEAN(23;46;69)</item> = 41.79. Kanaafuu gatiin miinii ji'oomeetiriikii eddattoo tasaa 41.79 ta'a."
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"bm_id3152966\n"
+"help.text"
+msgid "<bookmark_value>TRIMMEAN function</bookmark_value> <bookmark_value>means;of data set without margin data</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii TRIMMEAN</bookmark_value> <bookmark_value>miiniwwan;kan tuuta deetaa deetaa mudana dhabeessaa</bookmark_value>"
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3152966\n"
+"94\n"
+"help.text"
+msgid "TRIMMEAN"
+msgstr "TRIMMEAN"
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3149716\n"
+"95\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_GESTUTZTMITTEL\">Returns the mean of a data set without the Alpha percent of data at the margins.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GESTUTZTMITTEL\">Tuutota deetaa kan parsantii alfaa deetaa muudana hin qabneetif miinii kenna.</ahelp>"
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3149281\n"
+"96\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN1180E\n"
+"04060182.xhp\n"
+"par_id3154821\n"
+"97\n"
"help.text"
-msgid "HYPERLINK(\"URL\") or HYPERLINK(\"URL\"; \"CellText\")"
-msgstr "HYPERLINK(\"URL\") ykn HYPERLINK(\"URL\"; \"BarruuMandhee\")"
+msgid "TRIMMEAN(Data; Alpha)"
+msgstr "TRIMMEAN(Deetaa; Alfaa)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN11811\n"
+"04060182.xhp\n"
+"par_id3155834\n"
+"98\n"
"help.text"
-msgid "<emph>URL</emph> specifies the link target. The optional <emph>CellText</emph> parameter is the text or a number that is displayed in the cell and will be returned as the result. If the <emph>CellText</emph> parameter is not specified, the <emph>URL</emph> is displayed in the cell text and will be returned as the result."
-msgstr "<emph>URL</emph>n galtee walqabsiiftuu adda baasa. Ulaagaan <emph>BarruuMandhee</emph> dirqalaa barruu mandhee keessatti mul'atee fi firii faankishinii dha. Yoo ulaagaan <emph>BarruuMandhee</emph> adda hin baane ta'e, <emph>URL</emph>iin barruu mandhee fi firii faankishinii keessatti mul'ifama"
+msgid "<emph>Data</emph> is the array of data in the sample."
+msgstr "<emph>Deetaa</emph>n waraantoo deetaa eddattoo keessaati."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id0907200912224576\n"
+"04060182.xhp\n"
+"par_id3156304\n"
+"99\n"
"help.text"
-msgid "The number 0 is returned for empty cells and matrix elements."
-msgstr "Mandheewwan duwwaa fi maalimoota tareentaaf lakkoofsi 0 deebi'a."
+msgid "<emph>Alpha</emph> is the percentage of the marginal data that will not be taken into consideration."
+msgstr "<emph>Alfaa</emph>n dhibbeentaa deetaa mudanaa hedanna keessaa galuu dhiisuu danda'uuti."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN11823\n"
+"04060182.xhp\n"
+"hd_id3151180\n"
+"100\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN11827\n"
+"04060182.xhp\n"
+"par_id3156130\n"
+"101\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\")</item> displays the text \"http://www.example.org\" in the cell and executes the hyperlink http://www.example.org when clicked."
-msgstr "<item type=\"input\">=HYPERLINK(\"http://www.example.org\")</item> yeroo cuqaafamu barruu \"http://www.example.org\" mandhee keessaa ni mul'isa dabalataanis geessituu http://www.example.org hojii irra oolcha."
+msgid "<item type=\"input\">=TRIMMEAN(A1:A50; 0.1)</item> calculates the mean value of numbers in A1:A50, without taking into consideration the 5 percent of the values representing the highest values and the 5 percent of the values representing the lowest ones. The percentage numbers refer to the amount of the untrimmed mean value, not to the number of summands."
+msgstr "<item type=\"input\">=TRIMMEAN(A1:A50; 0.1)</item> osoo parsantii 5 kan gatiiwwanii gatiiwwan olaantoo bakka bu'anii fi parsantii 5 kan gatiiwwanii gatiiwwan gadaantoo bakka bu'u hedannaa keessa hingalchiin, gatii miinii kan lakkoofsota A1:A50 keessa jiranii shallaga."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN1182A\n"
+"04060182.xhp\n"
+"bm_id3153216\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\";\"Click here\")</item> displays the text \"Click here\" in the cell and executes the hyperlink http://www.example.org when clicked."
-msgstr "<item type=\"input\">=HYPERLINK(\"http://www.example.org\";\"Click here\")</item> yeroo cuqaafamu barruu \"as Cuqaasi\" kan mandhee keessa jiru mul'isa dabalataanis geessituu http://www.example.org hojii irra oolcha."
+msgid "<bookmark_value>ZTEST function</bookmark_value>"
+msgstr "<bookmark_value>Fankishnii ZTEST</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id0907200912224534\n"
+"04060182.xhp\n"
+"hd_id3153216\n"
+"103\n"
"help.text"
-msgid "=HYPERLINK(\"http://www.example.org\";12345) displays the number 12345 and executes the hyperlink http://www.example.org when clicked."
-msgstr "=GEESSITUU(\"http://www.example.org\";12345) lakkoofsa 12345 agarsiisa fi yeroo cuqaasamu geessituu http://www.example.org bana."
+msgid "ZTEST"
+msgstr "ZTEST"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN1182D\n"
+"04060182.xhp\n"
+"par_id3150758\n"
+"104\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK($B4)</item> where cell B4 contains <item type=\"input\">http://www.example.org</item>. The function adds http://www.example.org to the URL of the hyperlink cell and returns the same text which is used as formula result."
-msgstr "<item type=\"input\">=HYPERLINK($B4)</item> yeroo mandheen B4 <item type=\"input\">http://www.example.org</item> qabatu. Faankishinichi http://www.example.org URLii mandhee geessituutti dabalee barruu walfakkaataa akka firii foormulaatti gargaaru deebisa."
+msgid "<ahelp hid=\"HID_FUNC_GTEST\">Calculates the probability of observing a z-statistic greater than the one computed based on a sample.</ahelp>"
+msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN11830\n"
+"04060182.xhp\n"
+"hd_id3150872\n"
+"105\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.\";\"Click \") & \"example.org\"</item> displays the text Click example.org in the cell and executes the hyperlink http://www.example.org when clicked."
-msgstr "<item type=\"input\">=HYPERLINK(\"http://www.\";\"Click \") & \"example.org\"</item> yeroo cuqaasamu barruu example.org Cuqaasi jedhu kan mandhee keessa jiru mul'isa dabalataanis hyperlink http://www.example.org hojii irra oolcha."
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id8859523\n"
+"04060182.xhp\n"
+"par_id3153274\n"
+"106\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"#Sheet1.A1\";\"Go to top\")</item> displays the text Go to top and jumps to cell Sheet1.A1 in this document."
-msgstr "<item type=\"input\">=HYPERLINK(\"#Sheet1.A1\";\"Go to top\")</item> barruu gara olii deemi jedhu mul'isa dabalataanis mandhee Wardii1.A1 galmee kanna keessa jirutti utaala."
+msgid "ZTEST(Data; mu; Sigma)"
+msgstr "ZTEST(Deetaa; Lakkofsa; Sigmaa)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id2958769\n"
+"04060182.xhp\n"
+"par_id3156109\n"
+"107\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</item>displays the text Go to Writer bookmark, loads the specified text document and jumps to bookmark \"Specification\"."
-msgstr "<item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</item> barruu gara Writer bookmark deemi jedhu mul'isa, galmee barruu adda ba'e fe'a dabalataanis \"Addabaasuu\" bookmark itti utaala."
+msgid "<emph>Data</emph> is the given sample, drawn from a normally distributed population."
+msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id7682424\n"
+"04060182.xhp\n"
+"par_id3149977\n"
+"108\n"
"help.text"
-msgid "<bookmark_value>GETPIVOTDATA function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii GETPIVOTDATA</bookmark_value>"
+msgid "<emph>mu</emph> is the known mean of the population."
+msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3747062\n"
+"04060182.xhp\n"
+"par_id3154740\n"
+"109\n"
"help.text"
-msgid "GETPIVOTDATA"
-msgstr "GETPIVOTDATA"
+msgid "<emph>Sigma</emph> (optional) is the known standard deviation of the population. If omitted, the standard deviation of the given sample is used."
+msgstr ""
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3593859\n"
+"04060182.xhp\n"
+"par_id0305200911372999\n"
"help.text"
-msgid "<ahelp hid=\".\">The GETPIVOTDATA function returns a result value from a pivot table. The value is addressed using field and item names, so it remains valid if the layout of the pivot table changes.</ahelp>"
-msgstr "<ahelp hid=\".\">Faankishiniin GETPIVOTDATA Gabatee Qiinxaa irraa firii gatii deebisa. Gatichi maqaawwan dirree fi wantaa fayyadamuudhaan teessoon isaa barama, Yoo teessumni Gabatee Qiinxaa jijjiirame gatii qabeessa ta'ee tura.</ahelp>"
+msgid "See also the <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_ZTEST_function\">Wiki page</link>."
+msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id9741508\n"
+"04060182.xhp\n"
+"bm_id3153623\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<bookmark_value>HARMEAN function</bookmark_value> <bookmark_value>means;harmonic</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii HARMEAN</bookmark_value> <bookmark_value>miiniwwan;harmonikii</bookmark_value>"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id909451\n"
+"04060182.xhp\n"
+"hd_id3153623\n"
+"113\n"
"help.text"
-msgid "Two different syntax definitions can be used:"
-msgstr "Ibsoonni caasimaa garaagaraa lama fayyadamamuu danda'u:"
+msgid "HARMEAN"
+msgstr "HARMEAN"
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1665089\n"
+"04060182.xhp\n"
+"par_id3155102\n"
+"114\n"
"help.text"
-msgid "GETPIVOTDATA(TargetField; pivot table; [ Field 1; Item 1; ... ])"
-msgstr "GETPIVOTDATA(DirreeGaltee; GabateeQiinxaa; [ Dirree 1; Wanta 1; ... ])"
+msgid "<ahelp hid=\"HID_FUNC_HARMITTEL\">Returns the harmonic mean of a data set.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_HARMITTEL\">Miinii harmonikii tuuta deetaa kenna.</ahelp>"
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id4997100\n"
+"04060182.xhp\n"
+"hd_id3146900\n"
+"115\n"
"help.text"
-msgid "GETPIVOTDATA(pivot table; Constraints)"
-msgstr "GETPIVOTDATA(GabateeQiinxaa; Hanqinoota)"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1672109\n"
+"04060182.xhp\n"
+"par_id3149287\n"
+"116\n"
"help.text"
-msgid "The second syntax is assumed if exactly two parameters are given, of which the first parameter is a cell or cell range reference. The first syntax is assumed in all other cases. The Function Wizard shows the first syntax."
-msgstr "Yoo sirriitti ulaagaaleen lama kennaman caasimni lammaffaan, ulaagaan isaa tokkoffaa mandhee ykn wabii hangii mandhee ta'e ni tilmaamama. Caasimni tokkoffaan haalota biroo hunda keessatti ni tilmaamama. Masakni Faankishinii caasima tokkoffaa agarsiisa."
+msgid "HARMEAN(Number1; Number2; ...Number30)"
+msgstr "HARMEAN(Lakkofsa1; Lakkoofsa2; ...Lakkoofsa30)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id9464094\n"
+"04060182.xhp\n"
+"par_id3154303\n"
+"117\n"
"help.text"
-msgid "First Syntax"
-msgstr "Caasima Tokkoffaa"
+msgid "<emph>Number1,Number2,...Number30</emph> are up to 30 values or ranges, that can be used to calculate the harmonic mean."
+msgstr "<emph>Lakkofsa1; Lakkoofsa2; ...Lakkoofsa30</emph> gatiiwwan ykn hangiiwwan hanga 30ti, kan miinii harmonikii shallaguuf fayyaduu dha."
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id9302346\n"
+"04060182.xhp\n"
+"hd_id3159179\n"
+"118\n"
"help.text"
-msgid "<emph>TargetField</emph> is a string that selects one of the pivot table's data fields. The string can be the name of the source column, or the data field name as shown in the table (like \"Sum - Sales\")."
-msgstr "<emph>DirreenGaltee</emph> diraa dirreewwan deetaa gabatee qiinxaa tokko filatudha. Diraan maqaa tarjaa maddaa ta'uu danda'a, ykn maqaa dirree deetaa akka gabatee (like \"Sum - Sales\") keessatti agarsiifameetti."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id8296151\n"
+"04060182.xhp\n"
+"par_id3146093\n"
+"120\n"
"help.text"
-msgid "<emph>pivot table</emph> is a reference to a cell or cell range that is positioned within a pivot table or contains a pivot table. If the cell range contains several pivot tables, the table that was created last is used."
-msgstr "<emph>GabateenQiinxaa</emph> mandhee ykn hangii mandhee Gabatee Qiinxaa wajjiin qubate ykn gabatee Gabatee qiinxaa qabatuudhaaf wabiidha. Yoo hangii mandhee gabateewwan Gabatee Qiinxaa hedduu qabaate, gabateen dhuma irratti uumame ni fayyadamama."
+msgid "<item type=\"input\">=HARMEAN(23;46;69)</item> = 37.64. The harmonic mean of this random sample is thus 37.64"
+msgstr "<item type=\"input\">=HARMEAN(23;46;69)</item> = 37.64. Miiniin harmonikii eddatto tasaa kana 37.64 ta'a."
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id4809411\n"
+"04060182.xhp\n"
+"bm_id3152801\n"
"help.text"
-msgid "If no <emph>Field n / Item n</emph> pairs are given, the grand total is returned. Otherwise, each pair adds a constraint that the result must satisfy. <emph>Field n</emph> is the name of a field from the pivot table. <emph>Item n</emph> is the name of an item from that field."
-msgstr "Yoo <emph>Dirree n / Item n</emph> dachaan hin kennamne ta'e, dabaltoon dunneetii ni deebi'a. Yoo ta'uu baate, cimdiin hundi ittisa firiin guutuu qabu ida'a. <emph>Dirreen n</emph> maqaa wantaa Gabatee qiinxaa irraati. <emph>Maalimaan n</emph> maqaa maalimaa dirree sana irraati"
+msgid "<bookmark_value>HYPGEOMDIST function</bookmark_value> <bookmark_value>sampling without replacement</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii HYPGEOMDIST</bookmark_value> <bookmark_value>osoo bakka hin buusin eddateessuu</bookmark_value>"
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id6454969\n"
+"04060182.xhp\n"
+"hd_id3152801\n"
+"122\n"
"help.text"
-msgid "If the pivot table contains only a single result value that fulfills all of the constraints, or a subtotal result that summarizes all matching values, that result is returned. If there is no matching result, or several ones without a subtotal for them, an error is returned. These conditions apply to results that are included in the pivot table."
-msgstr "Yoo gabateen Gabatee Qiinxaa gatii firii qeenxee hanqinoota hunda guutu qofa qabaate, ykn hundamta xiqqaa gatiiwwan walsimatan hunda goolabu, firiin sun ni deebi'a. Yoo firiin walsimatu hin jiru ta'e, ykn tokko hedduu hundamta xiqqaa hin qabne ta'e, dogongorri ni deebi'a. Haalotni kun firiiwwan Gabatee Qiinxaa keessatti hammatamanitti hojii irra oola."
+msgid "HYPGEOMDIST"
+msgstr "HYPGEOMDIST"
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id79042\n"
+"04060182.xhp\n"
+"par_id3159341\n"
+"123\n"
"help.text"
-msgid "If the source data contains entries that are hidden by settings of the pivot table, they are ignored. The order of the Field/Item pairs is not significant. Field and item names are not case-sensitive."
-msgstr "Yoo maddi deetaa galiinsawwan qiindaa'ina Gabatee Qiinxaadhaan dhokatan qabaate, isaan ni dhiifamu. Taartibni cimdii Dirree/Wanta barbaachisaa miti. Maqaawwan dirree fi wantaa qub-sukaanaawoo miti."
+msgid "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Returns the hypergeometric distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Raabsa hayparji'omeetirikii kenna.</ahelp>"
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id7928708\n"
+"04060182.xhp\n"
+"hd_id3154697\n"
+"124\n"
"help.text"
-msgid "If no constraint for a page field is given, the field's selected value is implicitly used. If a constraint for a page field is given, it must match the field's selected value, or an error is returned. Page fields are the fields at the top left of a pivot table, populated using the \"Page Fields\" area of the pivot table layout dialog. From each page field, an item (value) can be selected, which means only that item is included in the calculation."
-msgstr "Yoo dirree fuulaaf ittisni hin kennamne ta'e, gatiin dirree filatame haala gaariin faayidaa irra oola. Yoo dirree fuulaaf ittisni kenname, gatii dirree filatame wajjiin walsimachuu qaba, ykn dogongorri ni kennama. Dirreewwan fuulaa harka bitaa gara olii Gabatee Qiinxaa, naannoo \"Dirreewwan Fuulaa\" qaaqa teessuma Gabatee Qiinxaadhaan baay'atanidha. Dirree fuulaa hunda irraa, wanti(gatiin) filatamuu ni danda'a, kana jechuun wanta sana qofatu shallaggii keessatti hammatama."
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3864253\n"
+"04060182.xhp\n"
+"par_id3155388\n"
+"125\n"
"help.text"
-msgid "Subtotal values from the pivot table are only used if they use the function \"auto\" (except when specified in the constraint, see <item type=\"literal\">Second Syntax</item> below)."
-msgstr "Gatiiwwan hundamta xiqqaa Gabatee Qiinxaa irraa yoo faankishinii \"auto\" fayyadaman qofa fayyadamamu (yeroo ittisa keessatti adda ba'e irraa kan hafe, <item type=\"literal\">Caasima Lammaffaa</item> below) armaan gadii ilaali."
+msgid "HYPGEOMDIST(X; NSample; Successes; NPopulation)"
+msgstr "HYPGEOMDIST(X; eddatooN; argamawwan; PopuleshiniiN)"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3144016\n"
+"04060182.xhp\n"
+"par_id3154933\n"
+"126\n"
"help.text"
-msgid "Second Syntax"
-msgstr "Caasima Lammaffaa"
+msgid "<emph>X</emph> is the number of results achieved in the random sample."
+msgstr "<emph>X</emph>n eddattoo tasaa keessaa lakkoofsa bu'awwan argamaniiti."
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id9937131\n"
+"04060182.xhp\n"
+"par_id3153106\n"
+"127\n"
"help.text"
-msgid "<emph>pivot table</emph> has the same meaning as in the first syntax."
-msgstr "<emph>Gabateen Qiinxaa</emph> akka caasima tokkoffaa keessaatti hiikkaa wal fakkaataa qaba."
+msgid "<emph>NSample</emph> is the size of the random sample."
+msgstr "<emph>eddattooN</emph> hamamtaa eddattoo tasaati."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id5616626\n"
+"04060182.xhp\n"
+"par_id3146992\n"
+"128\n"
"help.text"
-msgid "<emph>Constraints</emph> is a space-separated list. Entries can be quoted (single quotes). The whole string must be enclosed in quotes (double quotes), unless you reference the string from another cell."
-msgstr "<emph>Ittisamoonni</emph> tarree iddoo-adda ba'edha. Galiinsonni waraabbii (mallattoo waraabbii qeenxee) keessa taa'uu danda'u. Diraa mandhee biraa irraa yoo wabeessiteen ala, diraan hundi waraabbiiwwan (mallattoo waraabbi dachaa) keessatti hammatamuu qabu."
+msgid "<emph>Successes</emph> is the number of possible results in the total population."
+msgstr "<emph>Milkiiwwan</emph> lakkoofsa bu'aawwan minaadama hunda keessatti danda'amuuti."
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id4076357\n"
+"04060182.xhp\n"
+"par_id3148826\n"
+"129\n"
"help.text"
-msgid "One of the entries can be the data field name. The data field name can be left out if the pivot table contains only one data field, otherwise it must be present."
-msgstr "Galiinsota keessaa tokko maqaa dirree deetaa ta'uu ni danda'a. Yoo Gabateen Qiinxaa dirree tokko qofa qabaate maqaan dirree deetaa ni dhiisama, ta'uu baannaan jiraachuu qaba."
+msgid "<emph>NPopulation </emph>is the size of the total population."
+msgstr "<emph>MinaadamaN </emph>n hamamtaa ida'ama populeeshiniiti."
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id8231757\n"
+"04060182.xhp\n"
+"hd_id3150529\n"
+"130\n"
"help.text"
-msgid "Each of the other entries specifies a constraint in the form <item type=\"literal\">Field[Item]</item> (with literal characters [ and ]), or only <item type=\"literal\">Item</item> if the item name is unique within all fields that are used in the pivot table."
-msgstr "Tokko tokkoon galiinsota biroo ittisamoota uunka<item type=\"literal\">Field[Item]</item> (arfiiwwan jargiffa wajjiin [ fi ]), ykn <item type=\"literal\">Item</item> yoo maqaan wantaa dirreewwan hunda Gabatee Qiinxaa keessatti fayyadamaman keessatti adda ta'e adda baasa."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3168736\n"
+"04060182.xhp\n"
+"par_id3154904\n"
+"131\n"
"help.text"
-msgid "A function name can be added in the form <emph>Field[Item;Function]</emph>, which will cause the constraint to match only subtotal values which use that function. The possible function names are Sum, Count, Average, Max, Min, Product, Count (Numbers only), StDev (Sample), StDevP (Population), Var (Sample), and VarP (Population), case-insensitive."
-msgstr "Maqaan faankishinii uunka <emph>Dirree[Wanta;Faankishinii]</emph>, ittisama gatiiwwan hundamta xiqqaa faankishini sana fayyadamu wajjiin akka waal simatu taasisu keessatti ida'amuu danda'a. Maqaan faankishinii danda'amu Ida'uu, Lakkaawuu, Gidduugala, Guddaa, Xiqqaa, Baay'ataa, Lakkaawuu (Lakkoofsota qofa), StDev (Fakkeenya), StDev (Baay'ina), Var (Fakkeenya), fi Varp (Baay'ina), qub-sukaanaa'aa kan hin taane."
+msgid "<item type=\"input\">=HYPGEOMDIST(2;2;90;100)</item> yields 0.81. If 90 out of 100 pieces of buttered toast fall from the table and hit the floor with the buttered side first, then if 2 pieces of buttered toast are dropped from the table, the probability is 81%, that both will strike buttered side first."
+msgstr "<item type=\"input\">=HYPGEOMDIST(2;2;90;100)</item> 0.81 kenna. Yoo kutatawwan tostii dibame 100 keessaa 90 minjaala irraa kufani fi jalqaba gama dibameen yoo lafa rukutan, itti aansun kutatawwan 2 tostii dibamee mijaala irraa kufan,pirobaabilitiin 81% ta'a, kan lamaanuu jalqaba gama dibameen tuquu danda'an."
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
+"04060183.xhp\n"
"tit\n"
"help.text"
-msgid "Error Alert"
-msgstr "Dogoggora of eeggannoo"
+msgid "Statistical Functions Part Three"
+msgstr "Fankishinoota Istaatistiksii Kutaa Sadi"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"hd_id3153821\n"
+"04060183.xhp\n"
+"hd_id3166425\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12120300.xhp\" name=\"Error Alert\">Error Alert</link>"
-msgstr "<link href=\"text/scalc/01/12120300.xhp\" name=\"Error Alert\">Dogoggora Of eeggannoo</link>"
+msgid "<variable id=\"kl\"><link href=\"text/scalc/01/04060183.xhp\" name=\"Statistical Functions Part Three\">Statistical Functions Part Three</link></variable>"
+msgstr "<variable id=\"kl\"><link href=\"text/scalc/01/04060183.xhp\" name=\"Statistical Functions Part Three\">Fankishinoota Istaatistiksii Kutaa Sadi </link></variable>"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3153379\n"
-"2\n"
+"04060183.xhp\n"
+"bm_id3149530\n"
"help.text"
-msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_ERROR\">Define the error message that is displayed when invalid data is entered in a cell.</ahelp>"
-msgstr "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_ERROR\">Deetaan Fashalaawaa yommuu man'ee seenee, ergaa dogoggoraa mul'atuu hiiki.</ahelp>"
+msgid "<bookmark_value>LARGE function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii LARGE</bookmark_value>"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3154138\n"
-"25\n"
+"04060183.xhp\n"
+"hd_id3149530\n"
+"2\n"
"help.text"
-msgid "You can also start a macro with an error message. A sample macro is provided at the end of this page."
-msgstr "Ergaa dogoggoraan maakroo eegaluu dandeessa.Eddattoon maakroo umaa fulaa kanaa irratti kennama."
+msgid "LARGE"
+msgstr "LARGE"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"hd_id3156280\n"
+"04060183.xhp\n"
+"par_id3150518\n"
"3\n"
"help.text"
-msgid "Show error message when invalid values are entered."
-msgstr "Yommuu gatiiwwan fashalaawaa galuu ergaa dogoggoraa agarsiisi."
+msgid "<ahelp hid=\"HID_FUNC_KGROESSTE\">Returns the Rank_c-th largest value in a data set.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KGROESSTE\">Sadarka_c gatii guddaa tuuta deetaa keessaa kenna.</ahelp>"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3150768\n"
+"04060183.xhp\n"
+"hd_id3152990\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the error message that you enter in the <emph>Contents</emph> area when invalid data is entered in a cell.</ahelp> If enabled, the message is displayed to prevent an invalid entry."
-msgstr ""
+msgid "Syntax"
+msgstr "Caasima"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3146984\n"
+"04060183.xhp\n"
+"par_id3154372\n"
"5\n"
"help.text"
-msgid "In both cases, if you select \"Stop\", the invalid entry is deleted and the previous value is reentered in the cell. The same applies if you close the \"Warning\" and \"Information\" dialogs by clicking the <emph>Cancel </emph>button. If you close the dialogs with the <emph>OK</emph> button, the invalid entry is not deleted."
-msgstr "Haaloota lameeniti,yoo \"Dhaabbii\" filattee,galmii fashalaawaan baduun gatiin darbee lamataa man'ee seena.Halaama kanaan qaaqoota \"Akeekkachiisa\" fi \"Odeeffannoo\" yoo cuftu qabdoo <emph>Haqii </emph> cuqaasi.Yoo qaaqotaa qabdoo<emph>Eyyee</emph>n cuftee,galmii fashalaawaa hin haqamu."
+msgid "LARGE(Data; RankC)"
+msgstr "LARGE(Deetaa; SadarkaaC)"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"hd_id3152460\n"
+"04060183.xhp\n"
+"par_id3152986\n"
"6\n"
"help.text"
-msgid "Contents"
-msgstr "Qabeentoota"
+msgid "<emph>Data</emph> is the cell range of data."
+msgstr "<emph>Deetaa</emph>n hangii man'ee deetaati."
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"hd_id3148646\n"
+"04060183.xhp\n"
+"par_id3156448\n"
+"7\n"
+"help.text"
+msgid "<emph>RankC</emph> is the ranking of the value."
+msgstr "<emph>SadarkaaC</emph> gatii sadarkaa qabsiisuu dha."
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"hd_id3152889\n"
"8\n"
"help.text"
-msgid "Action"
-msgstr "Gocha"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3151115\n"
+"04060183.xhp\n"
+"par_id3148702\n"
"9\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_ERROR:LB_ACTION\">Select the action that you want to occur when invalid data is entered in a cell.</ahelp> The \"Stop\" action rejects the invalid entry and displays a dialog that you have to close by clicking <emph>OK</emph>. The \"Warning\" and \"Information\" actions display a dialog that can be closed by clicking <emph>OK</emph> or <emph>Cancel</emph>. The invalid entry is only rejected when you click <emph>Cancel</emph>."
-msgstr "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_ERROR:LB_ACTION\">Yommuu deetaan fashalaa man'ee seenu gocha ta'uun barbaachisuu fili.</ahelp> Gochi \"Dhaabbi\" galma fashalaa gatuufi <emph>Tole</emph> cuqaasuudhaan qaqaa haquu barbaadduu agarsiisa.Gochaawwwan \"Akeekkachiisa\" fi \"Odeeffannoo\" qaqoota <emph>Tole</emph> ykn <emph>Dhiisi</emph> cuqaasun cufamuu danda'an agarsiisa.Galmii fashalaawa kan gatamuu yoo <emph>Dhiisi</emph> cuqaaste qofa."
+msgid "<item type=\"input\">=LARGE(A1:C50;2)</item> gives the second largest value in A1:C50."
+msgstr "<item type=\"input\">=LARGE(A1:C50;2)</item> gatii guddaa lammaffaa A1:C50 keessaa kanna."
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"hd_id3156441\n"
-"10\n"
+"04060183.xhp\n"
+"bm_id3154532\n"
"help.text"
-msgid "Browse"
-msgstr "Sakatta’i"
+msgid "<bookmark_value>SMALL function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii SMALL</bookmark_value>"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3153160\n"
+"04060183.xhp\n"
+"hd_id3154532\n"
"11\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:TP_VALIDATION_ERROR:BTN_SEARCH\">Opens the <link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> dialog where you can select the macro that is executed when invalid data is entered in a cell. The macro is executed after the error message is displayed.</ahelp>"
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:TP_VALIDATION_ERROR:BTN_SEARCH\">Qaaqa<link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Maakroo</link> iddoo itti yommuu deetaan fashaalaawee man'ee seenu maakiroo itti filattu bana.Erga eergaan dogoggoraa iftaayee dooba gochii maakiroo rawwata.</ahelp>"
+msgid "SMALL"
+msgstr "SMALL"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"hd_id3153876\n"
+"04060183.xhp\n"
+"par_id3157981\n"
"12\n"
"help.text"
-msgid "Title"
-msgstr "Mataduree"
+msgid "<ahelp hid=\"HID_FUNC_KKLEINSTE\">Returns the Rank_c-th smallest value in a data set.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KKLEINSTE\">Tuuta deetaa keessaa gatii xiqqaa sadarkaa_c kenna.</ahelp>"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3149410\n"
+"04060183.xhp\n"
+"hd_id3154957\n"
"13\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_ERROR:EDT_TITLE\">Enter the title of the macro or the error message that you want to display when invalid data is entered in a cell.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_ERROR:EDT_TITLE\">Mata duree Maakiroo ykn Ergaa doggoggoraa jedhu galchuun deetaan doggoggoraa yommuu man'ee seenuu mul'isuuf oola.</ahelp>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"hd_id3154510\n"
+"04060183.xhp\n"
+"par_id3153974\n"
"14\n"
"help.text"
-msgid "Error message"
-msgstr "Ergaa doggoggoraa"
+msgid "SMALL(Data; RankC)"
+msgstr "SMALL(Deetaa; SadarkaaC)"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3149122\n"
+"04060183.xhp\n"
+"par_id3154540\n"
"15\n"
"help.text"
-msgid "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_ERROR:EDT_ERROR\">Enter the message that you want to display when invalid data is entered in a cell.</ahelp>"
-msgstr "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_ERROR:EDT_ERROR\">Deetaan doggoggoraa yommuu man'ee seenuu ergaa mul'isuu barbaaddu galchi.</ahelp>"
+msgid "<emph>Data</emph> is the cell range of data."
+msgstr "<emph>Deetaa</emph>n hangii man'ee deetaati."
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3150752\n"
+"04060183.xhp\n"
+"par_id3155094\n"
"16\n"
"help.text"
-msgid "<emph>Sample macro:</emph>"
-msgstr "<emph>Maakiroo fakkeenyaa:</emph>"
+msgid "<emph>RankC</emph> is the rank of the value."
+msgstr "<emph>SadarkaaC</emph> sadarkaa gatiiti."
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"tit\n"
+"04060183.xhp\n"
+"hd_id3153247\n"
+"17\n"
"help.text"
-msgid "Goal Seek"
-msgstr "Barbaacha Galchii"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"hd_id3155629\n"
-"1\n"
+"04060183.xhp\n"
+"par_id3149897\n"
+"18\n"
"help.text"
-msgid "Goal Seek"
-msgstr "Barbaacha Galchii"
+msgid "<item type=\"input\">=SMALL(A1:C50;2)</item> gives the second smallest value in A1:C50."
+msgstr "<item type=\"input\">=SMALL(A1:C50;2)</item> A1:C50 keessaa gatii xiqqaa lammaffaa kanna."
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"par_id3145119\n"
-"2\n"
+"04060183.xhp\n"
+"bm_id3153559\n"
"help.text"
-msgid "<variable id=\"zielwertsuchetext\"><ahelp hid=\".uno:GoalSeekDialog\">Opens a dialog where you can solve an equation with a variable.</ahelp></variable> After a successful search, a dialog with the results opens, allowing you to apply the result and the target value directly to the cell."
-msgstr "<variable id=\"zielwertsuchetext\"><ahelp hid=\".uno:GoalSeekDialog\">Bakka itti qixaattoon jijjiramoota waliin itti furu dandeessu qaaqa bana.</ahelp></variable> Barbaacha milkaa'aa boodaa,qaaqa firriiwwan waliin bana,gatii firii galiinsa kallattiin akka man'eetti agarsiistu si eeyyama."
+msgid "<bookmark_value>CONFIDENCE function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii CONFIDENCE</bookmark_value>"
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"hd_id3149656\n"
-"3\n"
+"04060183.xhp\n"
+"hd_id3153559\n"
+"20\n"
"help.text"
-msgid "Default"
-msgstr "Durtii"
+msgid "CONFIDENCE"
+msgstr "CONFIDENCE"
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"par_id3151211\n"
-"4\n"
+"04060183.xhp\n"
+"par_id3153814\n"
+"21\n"
"help.text"
-msgid "In this section, you can define the variables in your formula."
-msgstr "Kutaa kana keessatti,jijjiramoota formuulaa kee keessatti hiiku dandeessa."
+msgid "<ahelp hid=\"HID_FUNC_KONFIDENZ\">Returns the (1-alpha) confidence interval for a normal distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KONFIDENZ\">Raabsa baratamoodhaf intarvaalii konfidansii (l-alfaa )kenna.</ahelp>"
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"hd_id3150869\n"
-"5\n"
+"04060183.xhp\n"
+"hd_id3149315\n"
+"22\n"
"help.text"
-msgid "Formula cell"
-msgstr "formuulaa man'ee"
+msgid "Syntax"
+msgstr "Caasima"
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"par_id3153194\n"
-"6\n"
+"04060183.xhp\n"
+"par_id3147501\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_FORMULACELL\">In the formula cell, enter the reference of the cell which contains the formula. It contains the current cell reference.</ahelp> Click another cell in the sheet to apply its reference to the text box."
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_FORMULACELL\"> formuulaa man'ee keessatti,wabii man'ee kan formuulaa qabatee galchii. wabii man'ee ammaa of keessatti qabata.</ahelp> Wabii man'ee sanduuqni barruu akka fayyadamuuf man'ee gara bira wardii keessa cuqaasi."
+msgid "CONFIDENCE(Alpha; StDev; Size)"
+msgstr "CONFIDENCE(Alfaa; StDev; Hamaamtaa)"
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"hd_id3154685\n"
-"7\n"
+"04060183.xhp\n"
+"par_id3149872\n"
+"24\n"
"help.text"
-msgid "Target value"
-msgstr "Gatii galtee"
+msgid "<emph>Alpha</emph> is the level of the confidence interval."
+msgstr "<emph>Alfaa</emph>n sadarkaa intarvaalii konfidansiiti."
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"par_id3146984\n"
-"8\n"
+"04060183.xhp\n"
+"par_id3145324\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_TARGETVAL\">Specifies the value you want to achieve as a new result.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_TARGETVAL\">Gatii akka bu'aa haraatti argachuu barbaaddu ifteessi.</ahelp>"
+msgid "<emph>StDev</emph> is the standard deviation for the total population."
+msgstr "<emph>StDev</emph> istandaard diviyeeshinii ida'ama poppuleeshiniiti."
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"hd_id3150012\n"
-"9\n"
+"04060183.xhp\n"
+"par_id3153075\n"
+"26\n"
"help.text"
-msgid "Variable cell"
-msgstr "Man'ee jijjiramaa"
+msgid "<emph>Size</emph> is the size of the total population."
+msgstr "<emph>Hamaamtaa</emph>n hamamtaa ida'ama populeeshiniiti."
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"par_id3147427\n"
-"10\n"
+"04060183.xhp\n"
+"hd_id3150435\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_VARCELL\">Specifies the reference for the cell that contains the value you want to adjust in order to reach the target.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_VARCELL\">Wabii man'ee huundaaf man'ee galumsa ga'uuf Gatii sirreessaa barbaaddu qabatee ifteessi.</ahelp>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"tit\n"
+"04060183.xhp\n"
+"par_id3153335\n"
+"28\n"
"help.text"
-msgid "Functions by Category"
-msgstr "Faankishinoota Akaakuudhaan"
+msgid "<item type=\"input\">=CONFIDENCE(0.05;1.5;100)</item> gives 0.29."
+msgstr "<item type=\"input\">=CONFIDENCE(0.05;1.5;100)</item> 0.29 kenna."
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"bm_id3148575\n"
+"04060183.xhp\n"
+"bm_id3148746\n"
"help.text"
-msgid "<bookmark_value>functions;listed by category</bookmark_value> <bookmark_value>categories of functions</bookmark_value> <bookmark_value>list of functions</bookmark_value>"
-msgstr "<bookmark_value>faankishinoota;akaakuudhaan tarreeffaman</bookmark_value> <bookmark_value>akaakuuwwan faankishinootaa</bookmark_value> <bookmark_value>tarree faankishinootaa</bookmark_value>"
+msgid "<bookmark_value>CORREL function</bookmark_value><bookmark_value>coefficient of correlation</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii CORREL</bookmark_value><bookmark_value>kofishantii korrileeshinii</bookmark_value>"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3154944\n"
-"16\n"
+"04060183.xhp\n"
+"hd_id3148746\n"
+"30\n"
"help.text"
-msgid "Functions by Category"
-msgstr "Faankishinoota Akaakkukudhaan"
+msgid "CORREL"
+msgstr "CORREL"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"par_id3149378\n"
-"2\n"
+"04060183.xhp\n"
+"par_id3147299\n"
+"31\n"
"help.text"
-msgid "This section describes the functions of $[officename] Calc. The various functions are divided into categories in the Function Wizard."
-msgstr "Kutaan kun faayidaa $[officename] 'Calc'ii ibsa.Faankishinootni garaagaraa Masaka Faankishinii keessatti akaakuuwwanitti hiramaniiru."
+msgid "<ahelp hid=\"HID_FUNC_KORREL\">Returns the correlation coefficient between two data sets.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KORREL\">kofishantii korrileeshinii tuutota deetaa lama gidduu jiru kenna.</ahelp>"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"par_id0120200910234570\n"
+"04060183.xhp\n"
+"hd_id3156397\n"
+"32\n"
"help.text"
-msgid "You can find detailed explanations, illustrations, and examples of Calc functions <link href=\"http://help.libreoffice.org/Calc/Functions_by_Category\">in the LibreOffice WikiHelp</link>."
-msgstr ""
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3146972\n"
-"3\n"
+"04060183.xhp\n"
+"par_id3153023\n"
+"33\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060101.xhp\" name=\"Database\">Database</link>"
-msgstr "<link href=\"text/scalc/01/04060101.xhp\" name=\"Database\">Kuusdeetaa</link>"
+msgid "CORREL(Data1; Data2)"
+msgstr "CORREL(Deetaa1; Deetaa2)"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3155443\n"
-"4\n"
+"04060183.xhp\n"
+"par_id3150036\n"
+"34\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060102.xhp\" name=\"Date & Time\">Date & Time</link>"
-msgstr "<link href=\"text/scalc/01/04060102.xhp\" name=\"Date & Time\">Guyyaa fi Yeroo</link>"
+msgid "<emph>Data1</emph> is the first data set."
+msgstr "<emph>Deetaa1</emph> tuuta deetaa jalqabaati."
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3147339\n"
-"5\n"
+"04060183.xhp\n"
+"par_id3153021\n"
+"35\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Financial\">Financial</link>"
-msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Financial\">Financial</link>"
+msgid "<emph>Data2</emph> is the second data set."
+msgstr "<emph>Deetaa2</emph> tuuta deetaa lammafaati."
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3153963\n"
-"6\n"
+"04060183.xhp\n"
+"hd_id3149720\n"
+"36\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060104.xhp\" name=\"Information\">Information</link>"
-msgstr "<link href=\"text/scalc/01/04060104.xhp\" name=\"Information\">Odeeffannoo</link>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3146316\n"
-"7\n"
+"04060183.xhp\n"
+"par_id3149941\n"
+"37\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060105.xhp\" name=\"Logical\">Logical</link>"
-msgstr "<link href=\"text/scalc/01/04060105.xhp\" name=\"Logical\">Yaayaa</link>"
+msgid "<item type=\"input\">=CORREL(A1:A50;B1:B50)</item> calculates the correlation coefficient as a measure of the linear correlation of the two data sets."
+msgstr "<item type=\"input\">=CORREL(A1:A50;B1:B50)</item> kofishantii korrileeshinii akka safara korrileeshinii kaltokkee tuutota deetaa lamaatti shallaga."
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3148485\n"
-"8\n"
+"04060183.xhp\n"
+"bm_id3150652\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060106.xhp\" name=\"Mathematical\">Mathematical</link>"
-msgstr "<link href=\"text/scalc/01/04060106.xhp\" name=\"Mathematical\">Herrega</link>"
+msgid "<bookmark_value>COVAR function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii COVAR</bookmark_value>"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3150363\n"
-"9\n"
+"04060183.xhp\n"
+"hd_id3150652\n"
+"39\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060107.xhp\" name=\"Matrix\">Array</link>"
-msgstr "<link href=\"text/scalc/01/04060107.xhp\" name=\"Matrix\">Waraantoo</link>"
+msgid "COVAR"
+msgstr "COVAR"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3150208\n"
-"10\n"
+"04060183.xhp\n"
+"par_id3146875\n"
+"40\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060108.xhp\" name=\"Statistical\">Statistical</link>"
-msgstr "<link href=\"text/scalc/01/04060108.xhp\" name=\"Statistical\">Istaatikaalii</link>"
+msgid "<ahelp hid=\"HID_FUNC_KOVAR\">Returns the covariance of the product of paired deviations.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KOVAR\">Kovaariyansii bay'ataa diviyeeshiniiwwan walqabatan lamaa kenna.</ahelp>"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3166428\n"
-"11\n"
+"04060183.xhp\n"
+"hd_id3149013\n"
+"41\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060109.xhp\" name=\"Spreadsheet\">Spreadsheet</link>"
-msgstr "<link href=\"text/scalc/01/04060109.xhp\" name=\"Spreadsheet\">Wardii</link>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3145585\n"
-"12\n"
+"04060183.xhp\n"
+"par_id3150740\n"
+"42\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060110.xhp\" name=\"Text\">Text</link>"
-msgstr "<link href=\"text/scalc/01/04060110.xhp\" name=\"Text\">Barruu</link>"
+msgid "COVAR(Data1; Data2)"
+msgstr "COVAR(Deetaa1; Deetaa2)"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3156449\n"
-"13\n"
+"04060183.xhp\n"
+"par_id3145827\n"
+"43\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Add-in\">Add-in</link>"
-msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Add-in\">Itti-Ida'i</link>"
+msgid "<emph>Data1</emph> is the first data set."
+msgstr "<emph>Deetaa1</emph> tuuta deetaa jalqabaati."
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"par_id3150715\n"
-"14\n"
+"04060183.xhp\n"
+"par_id3150465\n"
+"44\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operators\">Operators</link> are also available."
-msgstr "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operators\">ogeejjota</link> are also available."
+msgid "<emph>Data2</emph> is the second data set."
+msgstr "<emph>Deetaa2</emph> tuuta deetaa lammafaati."
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"par_id0902200809540918\n"
+"04060183.xhp\n"
+"hd_id3154677\n"
+"45\n"
"help.text"
-msgid "<variable id=\"drking\"><link href=\"http://help.libreoffice.org/Calc/Functions_by_Category\">Calc Functions By Category</link> in the LibreOffice WikiHelp</variable>"
-msgstr ""
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"tit\n"
+"04060183.xhp\n"
+"par_id3144748\n"
+"46\n"
"help.text"
-msgid "Filter"
-msgstr "Gingilchaa"
+msgid "<item type=\"input\">=COVAR(A1:A30;B1:B30)</item>"
+msgstr "<item type=\"input\">=COVAR(A1:A30;B1:B30)</item>"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"hd_id3153970\n"
-"1\n"
+"04060183.xhp\n"
+"bm_id3147472\n"
"help.text"
-msgid "Filter"
-msgstr "Gingilchaa"
+msgid "<bookmark_value>CRITBINOM function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii CRITBINOM</bookmark_value>"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3150448\n"
-"2\n"
+"04060183.xhp\n"
+"hd_id3147472\n"
+"48\n"
"help.text"
-msgid "Set the filtering options for the data."
-msgstr "Deetaadhaf dirqalaalee gingilchaa qindeessi"
+msgid "CRITBINOM"
+msgstr "CRITBINOM"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"hd_id3151043\n"
-"3\n"
+"04060183.xhp\n"
+"par_id3149254\n"
+"49\n"
"help.text"
-msgid "Filter Criteria"
-msgstr "Ulaagaa Gingilchaa"
+msgid "<ahelp hid=\"HID_FUNC_KRITBINOM\">Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KRITBINOM\">Gatii xiqqaa kan raabsi baynoomiyaalii dimshaashaa irra xiqqa ykn irra gudda gatii ulaagaa ta'e kenna.</ahelp>"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3150440\n"
-"4\n"
+"04060183.xhp\n"
+"hd_id3153930\n"
+"50\n"
"help.text"
-msgid "You can define a default filter for the data by filtering, for example, field names, using a combination of logical expressions arguments."
-msgstr "Gingilchuudhan deetaa durtii gingilchaa hikuu dandeessa,fakkenyaaf, maqaaleen dirree, makaa qajeelfamoota himannoowwan yaayaatti fayyadama."
+msgid "Syntax"
+msgstr "Caasima"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"hd_id3159153\n"
-"5\n"
+"04060183.xhp\n"
+"par_id3148586\n"
+"51\n"
"help.text"
-msgid "Operator"
-msgstr "Ogeejjii"
+msgid "CRITBINOM(Trials; SP; Alpha)"
+msgstr "CRITBINOM(Yaaliiwwan; SP; Alfaa)"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3153093\n"
-"6\n"
+"04060183.xhp\n"
+"par_id3145593\n"
+"52\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_OP2\" visibility=\"visible\">Select a logical operator for the filter.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_OP2\" visibility=\"visible\">Gingilchaadhaf ogeejjiii yaayaa fili.</ahelp>"
+msgid "<emph>Trials</emph> is the total number of trials."
+msgstr "<emph>Yaaliiwwan</emph> ida'ama lakkoofsaa kan yaaliiwwaniiti."
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"hd_id3152462\n"
-"7\n"
+"04060183.xhp\n"
+"par_id3153084\n"
+"53\n"
"help.text"
-msgid "Field name"
-msgstr "Maqaa dirree"
+msgid "<emph>SP</emph> is the probability of success for one trial."
+msgstr "<emph>SP</emph> yaalii tokko irratti pirobaabiliitii argachuuti."
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3155306\n"
-"8\n"
+"04060183.xhp\n"
+"par_id3149726\n"
+"54\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_FIELD3\" visibility=\"visible\">Select the field that you want to use in the filter. If field names are not available, the column labels are listed.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_FIELD3\" visibility=\"visible\">Dirree gingilchaa keessatti fayyadamuu barbaadduu filiYoo maqaan dirreee hin jirre moggasotni tarjaa ni tarreeefamu.</ahelp>"
+msgid "<emph>Alpha</emph> is the threshold probability to be reached or exceeded."
+msgstr "<emph>Alfaa</emph>n pirobaabilitii xiqqaa dhaqqabbamuu ykn taramu."
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"hd_id3148575\n"
-"9\n"
+"04060183.xhp\n"
+"hd_id3148752\n"
+"55\n"
"help.text"
-msgid "Condition"
-msgstr "Haala"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3147394\n"
-"10\n"
+"04060183.xhp\n"
+"par_id3148740\n"
+"56\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_COND3\">Select an operator to compare the <emph>Field name</emph> and <emph>Value</emph> entries.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_COND3\">Ogeejjii galchiiwwan <emph>Maqaa Dirree</emph> fi <emph>Gatii</emph> wal madaalchisu fili.</ahelp>"
+msgid "<item type=\"input\">=CRITBINOM(100;0.5;0.1)</item> yields 44."
+msgstr "<item type=\"input\">=CRITBINOM(100;0.5;0.1)</item> 44 kenna."
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3144764\n"
-"11\n"
+"04060183.xhp\n"
+"bm_id3155956\n"
"help.text"
-msgid "The following operators are available:"
-msgstr "Ulaagaaleen armaan gadii ni jiru"
+msgid "<bookmark_value>KURT function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii KURT</bookmark_value>"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3153415\n"
-"12\n"
+"04060183.xhp\n"
+"hd_id3155956\n"
+"58\n"
"help.text"
-msgid "<emph>Conditions:</emph>"
-msgstr "<emph>Haalota:</emph>"
+msgid "KURT"
+msgstr "KURT"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3150324\n"
-"13\n"
+"04060183.xhp\n"
+"par_id3153108\n"
+"59\n"
"help.text"
-msgid "="
-msgstr "="
+msgid "<ahelp hid=\"HID_FUNC_KURT\">Returns the kurtosis of a data set (at least 4 values required).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KURT\">Kurtoosisii tuuta deetaa kenna (yoo xiqqaate gatiiwwan 4 barbaachisa).</ahelp>"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3153714\n"
-"14\n"
+"04060183.xhp\n"
+"hd_id3150334\n"
+"60\n"
"help.text"
-msgid "equal"
-msgstr "walqixa"
+msgid "Syntax"
+msgstr "Caasima"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3154254\n"
-"15\n"
+"04060183.xhp\n"
+"par_id3154508\n"
+"61\n"
"help.text"
-msgid "<"
-msgstr "<"
+msgid "KURT(Number1; Number2; ...Number30)"
+msgstr "KURT(Lakkofsa1; Lakkoofsa2; ...Lakkoofsa30)"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3154703\n"
-"16\n"
+"04060183.xhp\n"
+"par_id3145167\n"
+"62\n"
"help.text"
-msgid "less than"
-msgstr "irra xiqqaa"
+msgid "<emph>Number1,Number2,...Number30</emph> are numeric arguments or ranges representing a random sample of distribution."
+msgstr "<emph>Lakkofsa1; Lakkoofsa2; ...Lakkoofsa30</emph> qajeelfama lakkoofsati ykn hangiiwwan eddattoo tasaa raabsaa kan bakka bu'uu dha."
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3155335\n"
-"17\n"
+"04060183.xhp\n"
+"hd_id3158000\n"
+"63\n"
"help.text"
-msgid ">"
-msgstr ">"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3147003\n"
-"18\n"
+"04060183.xhp\n"
+"par_id3150016\n"
+"64\n"
"help.text"
-msgid "greater than"
-msgstr "irra guddaa"
+msgid "<item type=\"input\">=KURT(A1;A2;A3;A4;A5;A6)</item>"
+msgstr "<item type=\"input\">=KURT(A1;A2;A3;A4;A5;A6)</item>"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3153270\n"
-"19\n"
+"04060183.xhp\n"
+"bm_id3150928\n"
"help.text"
-msgid "<="
-msgstr "<="
+msgid "<bookmark_value>LOGINV function</bookmark_value><bookmark_value>inverse of lognormal distribution</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii LOGINV</bookmark_value><bookmark_value>garagaltoo raabsa lognormaaliiti</bookmark_value>"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3145257\n"
-"20\n"
+"04060183.xhp\n"
+"hd_id3150928\n"
+"66\n"
"help.text"
-msgid "less than or equal to"
-msgstr "irra xiqqaa ykn walqixa"
+msgid "LOGINV"
+msgstr "LOGINV"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3145134\n"
-"21\n"
+"04060183.xhp\n"
+"par_id3145297\n"
+"67\n"
"help.text"
-msgid ">="
-msgstr ">="
+msgid "<ahelp hid=\"HID_FUNC_LOGINV\">Returns the inverse of the lognormal distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LOGINV\">garagaltoo raabsa lognormaalii kenna.</ahelp>"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3151214\n"
-"22\n"
+"04060183.xhp\n"
+"hd_id3151016\n"
+"68\n"
"help.text"
-msgid "greater than or equal to"
-msgstr "irra guddaa ykn walqixa"
+msgid "Syntax"
+msgstr "Caasima"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3150345\n"
-"23\n"
+"04060183.xhp\n"
+"par_id3153049\n"
+"69\n"
"help.text"
-msgid "<>"
-msgstr "<>"
+msgid "LOGINV(Number; Mean; StDev)"
+msgstr "LOGINV(Lakkofsa; Miinii; StDev)"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3159101\n"
-"24\n"
+"04060183.xhp\n"
+"par_id3148390\n"
+"70\n"
"help.text"
-msgid "not equal to"
-msgstr "walqixa miti"
+msgid "<emph>Number</emph> is the probability value for which the inverse standard logarithmic distribution is to be calculated."
+msgstr "<emph>Lakkoofsi</emph> gatii pirobaabiliitii kan gargaltoon raabsa logarizimii baratamoo shallagamuufii dha."
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"hd_id3150886\n"
-"25\n"
+"04060183.xhp\n"
+"par_id3149538\n"
+"71\n"
"help.text"
-msgid "Value"
-msgstr "Gatii"
+msgid "<emph>Mean</emph> is the arithmetic mean of the standard logarithmic distribution."
+msgstr "<emph>Miinii</emph>n miinii artimeetikii kan raabsa logaarizimii baratamooti."
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3155506\n"
-"26\n"
+"04060183.xhp\n"
+"par_id3145355\n"
+"72\n"
"help.text"
-msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_PIVOTFILTER:ED_VAL3\" visibility=\"visible\">Select the value that you want to compare to the selected field.</ahelp>"
-msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_PIVOTFILTER:ED_VAL3\" visibility=\"visible\">Dirree filataame waliin gatii madaaluu barbaadde fili.</ahelp>"
+msgid "<emph>StDev</emph> is the standard deviation of the standard logarithmic distribution."
+msgstr "<emph>StDev</emph> diviyeeshinii baratamoo kan raabsa logarzimii baratamooti."
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"hd_id3146980\n"
-"27\n"
+"04060183.xhp\n"
+"hd_id3148768\n"
+"73\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"More>>\">More>></link>"
-msgstr "<link href=\"text/scalc/01/12090104.xhp\" name=\"More>>\">Dabala>></link>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060111.xhp
+#: 04060183.xhp
msgctxt ""
-"04060111.xhp\n"
-"tit\n"
+"04060183.xhp\n"
+"par_id3155623\n"
+"74\n"
"help.text"
-msgid "Add-in Functions"
-msgstr "Faankishinoota Add-in"
+msgid "<item type=\"input\">=LOGINV(0.05;0;1)</item> returns 0.19."
+msgstr "<item type=\"input\">=LOGINV(0.05;0;1)</item> 0.19 kenna."
-#: 04060111.xhp
+#: 04060183.xhp
msgctxt ""
-"04060111.xhp\n"
-"bm_id3150870\n"
+"04060183.xhp\n"
+"bm_id3158417\n"
"help.text"
-msgid "<bookmark_value>add-ins; functions</bookmark_value><bookmark_value>functions; add-in functions</bookmark_value><bookmark_value>Function Wizard; add-ins</bookmark_value>"
-msgstr "<bookmark_value>add-ins; faankishinoota</bookmark_value><bookmark_value>faankishinoota; faankishinoota add-in</bookmark_value><bookmark_value>Masaka Faankishinii; add-ins</bookmark_value>"
+msgid "<bookmark_value>LOGNORMDIST function</bookmark_value><bookmark_value>cumulative lognormal distribution</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii LOGNORMDIST</bookmark_value><bookmark_value>raabsa lognormaalii dimshaashaati</bookmark_value>"
-#: 04060111.xhp
+#: 04060183.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3150870\n"
+"04060183.xhp\n"
+"hd_id3158417\n"
+"76\n"
+"help.text"
+msgid "LOGNORMDIST"
+msgstr "LOGNORMDIST"
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3154953\n"
+"77\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">Returns the cumulative lognormal distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">raabsa lognormaalii dimshaashaa kenna.</ahelp>"
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"hd_id3150474\n"
+"78\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3150686\n"
+"79\n"
+"help.text"
+msgid "LOGNORMDIST(Number; Mean; StDev; Cumulative)"
+msgstr "LOGNORMDIST(Lakkofsa; Miinii; StDev; Dimshaasha)"
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3154871\n"
+"80\n"
+"help.text"
+msgid "<emph>Number</emph> is the probability value for which the standard logarithmic distribution is to be calculated."
+msgstr "<emph>Lakkoofsi</emph> gatii pirobaabiliitii kan raabsi logarizimii waltawaa shallagamuufii dha."
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3155820\n"
+"81\n"
+"help.text"
+msgid "<emph>Mean</emph> (optional) is the mean value of the standard logarithmic distribution."
+msgstr "<emph>Miinii</emph>n (dirqalee) gatii miinii kan raabsa logaarizimii walawaati."
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3155991\n"
+"82\n"
+"help.text"
+msgid "<emph>StDev</emph> (optional) is the standard deviation of the standard logarithmic distribution."
+msgstr "<emph>StDev</emph> (dirqalee) diviyeeshinii waltawaa kan raabsa logarizimii walawaati."
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3155992\n"
+"help.text"
+msgid "<emph>Cumulative</emph> (optional) = 0 calculates the density function, Cumulative = 1 calculates the distribution."
+msgstr "<emph>Walittiqaba</emph> (optional) = 0 faankishinii rukinaa herrega, Walitti qaba = 1 tamsaasa herrega."
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"hd_id3153178\n"
+"83\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3149778\n"
+"84\n"
+"help.text"
+msgid "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> returns 0.01."
+msgstr "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> 0.01 kenna."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"tit\n"
+"help.text"
+msgid "Statistical Functions Part Four"
+msgstr "Fankishinoota Istaatistiksii Kutaa Afur"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3153415\n"
"1\n"
"help.text"
-msgid "Add-in Functions"
-msgstr "Faankishinoota Add-in"
+msgid "<variable id=\"mq\"><link href=\"text/scalc/01/04060184.xhp\" name=\"Statistical Functions Part Four\">Statistical Functions Part Four</link></variable>"
+msgstr "<variable id=\"mq\"><link href=\"text/scalc/01/04060184.xhp\" name=\"Statistical Functions Part Four\">Fankishinoota Istaatistiksii Kutaa Afur</link></variable>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3147427\n"
+"04060184.xhp\n"
+"bm_id3154511\n"
+"help.text"
+msgid "<bookmark_value>MAX function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii MAX</bookmark_value>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3154511\n"
"2\n"
"help.text"
-msgid "<variable id=\"addintext\">The following describes and lists some of the available add-in functions. </variable>"
-msgstr "<variable id=\"addintext\">Wanti kana gadii faankishinoota add-in jiran ibsas tarreessas. </variable>"
+msgid "MAX"
+msgstr "MAX"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3163713\n"
-"75\n"
+"04060184.xhp\n"
+"par_id3153709\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060112.xhp#addinconcept\">Add-in concept</link>"
-msgstr "<link href=\"text/scalc/01/04060112.xhp#addinconcept\">Yad-rimee Add-in</link>"
+msgid "<ahelp hid=\"HID_FUNC_MAX\">Returns the maximum value in a list of arguments.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MAX\">Tarreewwan qajeelfamootaa keesaa gatii guddaa kenna.</ahelp>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3146120\n"
+"04060184.xhp\n"
+"par_id9282509\n"
+"help.text"
+msgid "Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN(\"string\"), still results in an error."
+msgstr "Hangii(wwan) man'ee akka wabii(wwan) man'eetti moggafaman keessa yoo gatiin lakkoofsaa hin jirree fi dogongorri hin qunnamne 0 kenna. Fankishiniin MINA() fi MAXA() yoo gatiin (lakkoofsa ykn barruu) hin jirree ykn dogongorri hin qunnamne 0 kenna.qajeelfama diraa jargifaa MIN()tti ykn MAX()tti dabarsa, fakkeenya MIN(\"diraa\"), ammayyuu dogongora keessatti argama."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3154256\n"
+"4\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3147340\n"
"5\n"
"help.text"
-msgid "You will also find a <link href=\"text/scalc/01/04060112.xhp\">description of the $[officename] Calc add-in interface</link> in the Help. In addition, important functions and their parameters are described in the Help for the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>$[officename] Calc add-in DLL</defaultinline></switchinline>."
-msgstr "Ibsa <link href=\"text/scalc/01/04060112.xhp\">wal quunnamtii Calc add-in $[officename] gargaarsa</link> keessaa argachuu dandeessa.Dabalataan, faankishinoonnni barbaachisoonii fi ulaagaaleen isaanii <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>$[officename] Calc add-in DLL</defaultinline></switchinline> dhaaf."
+msgid "MAX(Number1; Number2; ...Number30)"
+msgstr "MAX(Lakkofsa1; Lakkoofsa2; ...Lakkoofsa30)"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3151075\n"
+"04060184.xhp\n"
+"par_id3149568\n"
+"6\n"
+"help.text"
+msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
+msgstr "<emph>Lakkoofsa1; Lakkoofsa2;...Lakkoofsa30</emph> gatiiwwan ykn hangiiwwan lakkoofsaati."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3153963\n"
"7\n"
"help.text"
-msgid "Add-ins supplied"
-msgstr "Add-ins dhiyeessame"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3156285\n"
+"04060184.xhp\n"
+"par_id3147343\n"
"8\n"
"help.text"
-msgid "$[officename] contains examples for the add-in interface of $[officename] Calc."
-msgstr "$[officename] Walquunnamtii add-in $[officename] Calciif fakkeenyota qabata."
+msgid "<item type=\"input\">=MAX(A1;A2;A3;50;100;200)</item> returns the largest value from the list."
+msgstr "<item type=\"input\">=MAX(A1;A2;A3;50;100;200)</item> gatii guddaa tarree keessaa kenna."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3159267\n"
-"76\n"
+"04060184.xhp\n"
+"par_id3148485\n"
+"9\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060115.xhp\">Analysis Functions Part One</link>"
-msgstr "<link href=\"text/scalc/01/04060115.xhp\">Faankishinoota Xiinxalaa Kutaa Tokkoffaa</link>"
+msgid "<item type=\"input\">=MAX(A1:B100)</item> returns the largest value from the list."
+msgstr "<item type=\"input\">=MAX(A1:B100)</item> tarree kessaa gatii guddaa kenna."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3154703\n"
-"77\n"
+"04060184.xhp\n"
+"bm_id3166426\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060116.xhp\">Analysis Functions Part Two</link>"
-msgstr "<link href=\"text/scalc/01/04060116.xhp\">Faankishinoota Xiinxalaa Kutaa Lammaffaa</link>"
+msgid "<bookmark_value>MAXA function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii MAXA</bookmark_value>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"bm_id3149566\n"
+"04060184.xhp\n"
+"hd_id3166426\n"
+"139\n"
"help.text"
-msgid "<bookmark_value>ISLEAPYEAR function</bookmark_value><bookmark_value>leap year determination</bookmark_value>"
-msgstr "<bookmark_value>faankishinii ISLEAPYEAR</bookmark_value><bookmark_value>waggaa utaalu murteessuu</bookmark_value>"
+msgid "MAXA"
+msgstr "MAXA"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3149566\n"
-"14\n"
+"04060184.xhp\n"
+"par_id3150363\n"
+"140\n"
"help.text"
-msgid "ISLEAPYEAR"
-msgstr "ISLEAPYEAR"
+msgid "<ahelp hid=\"HID_FUNC_MAXA\">Returns the maximum value in a list of arguments. In opposite to MAX, here you can enter text. The value of the text is 0.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MAXA\">Tarree qajeelfamoota keessaa gatii guddaa kenna. Fallaa MAX tin,asitti barruu galchuu dandeessa. Gatiin barruu 0 dha.</ahelp>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3150297\n"
-"15\n"
+"04060184.xhp\n"
+"par_id7689443\n"
"help.text"
-msgid "<ahelp hid=\".\">Determines whether a year is a leap year.</ahelp> If yes, the function will return the value 1 (TRUE); if not, it will return 0 (FALSE)."
-msgstr "<ahelp hid=\".\">Waggaan waggaa utaalu ta'uu isaa murteessa.</ahelp> Yoo eyyee ta'e, faankishinichi gatii 1(DHUGAA) kenna; yoo ta'uu baate, 0(SOBA) deebisa."
+msgid "The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered."
+msgstr "Yoo gatiin hin jiraane (barruu ykn lakkoofsa) fi dogongori itt hin dhufnee fankishinoonni MINA() fi MAXA() 0 kenna"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3148487\n"
-"16\n"
+"04060184.xhp\n"
+"hd_id3150516\n"
+"141\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3150205\n"
-"17\n"
+"04060184.xhp\n"
+"par_id3166431\n"
+"142\n"
"help.text"
-msgid "ISLEAPYEAR(\"Date\")"
-msgstr "ISLEAPYEAR(\"Aduu\")"
+msgid "MAXA(Value1; Value2; ... Value30)"
+msgstr "MAXA(Gatii1; Gatii2; ... Gatii30)"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3159239\n"
-"18\n"
+"04060184.xhp\n"
+"par_id3150202\n"
+"143\n"
"help.text"
-msgid "<emph>Date</emph> specifies whether a given date falls within a leap year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
-msgstr "<emph>Aduun</emph> aduun kenname waggaa utaalu keesa jiraachuu isaa adda baasa. Haala qindaa'inoota gitoo biyyaa %PRODUCTNAME tiin ulaagaan aduu gatii sirrii ta'uu qaba."
+msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
+msgstr "<emph>Gatii1; Gatii2; ... Gatii30</emph>n gatiiwwanii fi hangiiwwan. Gatiin barruu duwwaa dha."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3149817\n"
-"19\n"
+"04060184.xhp\n"
+"hd_id3156290\n"
+"144\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3150786\n"
-"20\n"
+"04060184.xhp\n"
+"par_id3156446\n"
+"145\n"
"help.text"
-msgid "=ISLEAPYEAR(A1) returns 1, if A1 contains 1968-02-29, the valid date 29th of February 1968 in your locale setting."
-msgstr "Yoo A1,guyyaa sirrii 29 amajjii 1968 qindaa'ina gitoo biyyaa keessaa 1968-02-29 qabaate=ISLEAPYEAR(A1) 1 deebisa."
+msgid "<item type=\"input\">=MAXA(A1;A2;A3;50;100;200;\"Text\")</item> returns the largest value from the list."
+msgstr "<item type=\"input\">=MAXA(A1;A2;A3;50;100;200;\"Barruu\")</item> gatii guddaa tarree keessaa kenna."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_idN107E7\n"
+"04060184.xhp\n"
+"par_id3149404\n"
+"146\n"
"help.text"
-msgid "You may also use =ISLEAPYEAR(\"1968-02-29\") or =ISLEAPYEAR(\"2/29/68\")."
-msgstr "=ISLEAPYEAR(\"1968-02-29\") ykn =ISLEAPYEAR(\"2/29/68\") fayyadamuu ni dandeessa."
+msgid "<item type=\"input\">=MAXA(A1:B100)</item> returns the largest value from the list."
+msgstr "<item type=\"input\">=MAXA(A1:B100)</item> tarree kessaa gatii guddaa kenna."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_idN107EA\n"
+"04060184.xhp\n"
+"bm_id3153820\n"
"help.text"
-msgid "Never use =ISLEAPYEAR(2/29/68), because this would first evaluate 2 divided by 29 divided by 68, and then calculate the ISLEAPYEAR function from this small number as a serial date number."
-msgstr "=ISLEAPYEAR(2/29/68) gonkuma hin fayyadamiin, sababni isaas kun jalqaba 2 hiruu 29f hiruu 68f shallaguu qaba, sana booda faankishinii ISLEAPYEAR lakkoofsa xiqqoo kana irraa akka lakkoofsa guyyaa eenyummaatti shallagi."
+msgid "<bookmark_value>MEDIAN function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii MEDIAN</bookmark_value>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"bm_id3154656\n"
+"04060184.xhp\n"
+"hd_id3153820\n"
+"11\n"
"help.text"
-msgid "<bookmark_value>YEARS function</bookmark_value><bookmark_value>number of years between two dates</bookmark_value>"
-msgstr "<bookmark_value>faankishinii YEARS</bookmark_value><bookmark_value>lakkoofsa waggootaa aduuwwan lama gidduu</bookmark_value>"
+msgid "MEDIAN"
+msgstr "MEDIAN"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3154656\n"
+"04060184.xhp\n"
+"par_id3151241\n"
+"12\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_MEDIAN\">Returns the median of a set of numbers. In a set containing an uneven number of values, the median will be the number in the middle of the set and in a set containing an even number of values, it will be the mean of the two values in the middle of the set.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MEDIAN\">Tuuta lakkoofsota midiyaanii kenna. Tuuta Gatiiwwan lakkoofsa guutuu hin ta'iin qabatan keessaatti, midiyaaniin lakkoofsa gidduugaleessa tuutati fi tuuta gatiiwwan lakkoofsa guutuu qabate keessaatti, aveerejii gatiiwwan lamaa gidduugalessa tuutaa keessatti argamanii ta'a.</ahelp>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3148871\n"
+"13\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3155264\n"
+"14\n"
+"help.text"
+msgid "MEDIAN(Number1; Number2; ...Number30)"
+msgstr "MEDIAN(Lakkofsa1; Lakkoofsa2; ...Lakkoofsa30)"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3150109\n"
+"15\n"
+"help.text"
+msgid "<emph>Number1; Number2;...Number30</emph> are values or ranges, which represent a sample. Each number can also be replaced by a reference."
+msgstr "<emph>Lakkoofsa1; Lakkoofsa2;...Lakkoofsa30</emph>n gatiiwwan ykn hangiiwwanii dha. Tokkoon tokkoon lakkoofsa wabiidhaan bakka bu'uu ni danda'a."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3144506\n"
+"16\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3145078\n"
+"17\n"
+"help.text"
+msgid "for an odd number: <item type=\"input\">=MEDIAN(1;5;9;20;21)</item> returns 9 as the median value."
+msgstr "lakkoofsa qaraatiif: <item type=\"input\">=MEDIAN(1;5;9;20;21)</item>n 9 akka gatii miidiyaaniiti kenna."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3149126\n"
+"165\n"
+"help.text"
+msgid "for an even number: <item type=\"input\">=MEDIAN(1;5;9;20)</item> returns the average of the two middle values 5 and 9, thus 7."
+msgstr "lakkoofsa guutuuf: <item type=\"input\">=MEDIAN(1;5;9;20)</item>n aveereji gatiiwwan gidduugaleessaa 5 fi 9 kenna, innis 7."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3154541\n"
+"help.text"
+msgid "<bookmark_value>MIN function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii MIN</bookmark_value>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3154541\n"
+"19\n"
+"help.text"
+msgid "MIN"
+msgstr "MIN"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3143222\n"
+"20\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_MIN\">Returns the minimum value in a list of arguments.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MIN\">Tarreewwan qajeelfamootaa keesaa gatii xiqqaa kenna.</ahelp>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id2301400\n"
+"help.text"
+msgid "Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN(\"string\"), still results in an error."
+msgstr "Hangii(wwan) man'ee akka wabii(wwan) man'eetti moggafaman keessa yoo gatiin lakkoofsaa hin jirree fi dogongorri hin qunnamne 0 kenna. Fankishiniin MINA() fi MAXA() yoo gatiin (lakkoofsa ykn barruu) hin jirree ykn dogongorri hin qunnamne 0 kenna.qajeelfama diraa jargifaa MIN()tti ykn MAX()tti dabarsa, fakkeenya MIN(\"diraa\"), ammayyuu dogongora keessatti argama."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3154651\n"
"21\n"
"help.text"
-msgid "YEARS"
-msgstr "YEARS"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3150886\n"
+"04060184.xhp\n"
+"par_id3146964\n"
"22\n"
"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFYEARS\">Calculates the difference in years between two dates.</ahelp>"
-msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFYEARS\">Garaagarummaa waggaa aduuwwan lama gidduu jiru shallaga.</ahelp>"
+msgid "MIN(Number1; Number2; ...Number30)"
+msgstr "MIN(Lakkofsa1; Lakkoofsa2; ...Lakkoofsa30)"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3154370\n"
+"04060184.xhp\n"
+"par_id3153486\n"
"23\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
+msgstr "<emph>Lakkoofsa1; Lakkoofsa2;...Lakkoofsa30</emph> gatiiwwan ykn hangiiwwan lakkoofsaati."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3146114\n"
+"04060184.xhp\n"
+"hd_id3155523\n"
"24\n"
"help.text"
-msgid "YEARS(StartDate; EndDate; Type)"
-msgstr "YEARS(AduuJalqabaaStart; AduuDhumaa; Gosa)"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060111.xhp
-#, fuzzy
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3145387\n"
+"04060184.xhp\n"
+"par_id3154734\n"
"25\n"
"help.text"
-msgid "<emph>StartDate</emph> is the first date"
-msgstr "<emph>AduunJalqabaa</emph> aduu duraati."
+msgid "<item type=\"input\">=MIN(A1:B100)</item> returns the smallest value in the list."
+msgstr "<item type=\"input\">=MIN(A1:B100)</item> tarree kessaa gatii xiqqaa kenna."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3156290\n"
-"26\n"
+"04060184.xhp\n"
+"bm_id3147504\n"
"help.text"
-msgid "<emph>EndDate</emph> is the second date"
-msgstr "<emph>AduunDhumaa</emph> aduu lammaffaati"
+msgid "<bookmark_value>MINA function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii MINA</bookmark_value>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3152893\n"
-"27\n"
+"04060184.xhp\n"
+"hd_id3147504\n"
+"148\n"
"help.text"
-msgid "<emph>Type</emph> calculates the type of difference. Possible values are 0 (interval) and 1 (in calendar years)."
-msgstr "<emph>Gosni</emph> gosa garaagarummaa shallaga. Gatiiwwan eeyyamaman 0 (giddu'uu) fi 1 (lakkaawwii waggootaa)."
+msgid "MINA"
+msgstr "MINA"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"bm_id3152898\n"
+"04060184.xhp\n"
+"par_id3147249\n"
+"149\n"
"help.text"
-msgid "<bookmark_value>MONTHS function</bookmark_value><bookmark_value>number of months between two dates</bookmark_value>"
-msgstr "<bookmark_value>faankishinii MONTHS</bookmark_value><bookmark_value>lakkoofsa ji'ootaa guyyoota lama gidduu jiru</bookmark_value>"
+msgid "<ahelp hid=\"HID_FUNC_MINA\">Returns the minimum value in a list of arguments. Here you can also enter text. The value of the text is 0.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MINA\">Tarree qajeelfamoota keessaa gatii guddaa kenna. Asitti barruus galchuu dandeessa. Gatiin barruu 0 dha.</ahelp>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3152898\n"
+"04060184.xhp\n"
+"par_id4294564\n"
+"help.text"
+msgid "The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered."
+msgstr "Yoo gatiin hin jiraane (barruu ykn lakkoofsa) fi dogongori itt hin dhufnee fankishinoonni MINA() fi MAXA() 0 kenna"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3150435\n"
+"150\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153336\n"
+"151\n"
+"help.text"
+msgid "MINA(Value1; Value2; ... Value30)"
+msgstr "MINA(Gatii1; Gatii2; ... Gatii30)"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3146098\n"
+"152\n"
+"help.text"
+msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
+msgstr "<emph>Gatii1; Gatii2; ... Gatii30</emph>n gatiiwwanii fi hangiiwwan. Gatiin barruu duwwaa dha."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3148743\n"
+"153\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3147401\n"
+"154\n"
+"help.text"
+msgid "<item type=\"input\">=MINA(1;\"Text\";20)</item> returns 0."
+msgstr "<item type=\"input\">=MINA(1;\"Barruu\";20)</item> 0 kenna."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3147295\n"
+"155\n"
+"help.text"
+msgid "<item type=\"input\">=MINA(A1:B100)</item> returns the smallest value in the list."
+msgstr "<item type=\"input\">=MINA(A1:B100)</item> tarree kessaa gatii xiqqaa hundamtaa kenna."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3166465\n"
+"help.text"
+msgid "<bookmark_value>AVEDEV function</bookmark_value><bookmark_value>averages;statistical functions</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii AVEDEV</bookmark_value><bookmark_value>aveerajiiwwan;fankishinii istaatiksii</bookmark_value>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3166465\n"
+"27\n"
+"help.text"
+msgid "AVEDEV"
+msgstr "AVEDEV"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3150373\n"
"28\n"
"help.text"
-msgid "MONTHS"
-msgstr "MONTHS"
+msgid "<ahelp hid=\"HID_FUNC_MITTELABW\">Returns the average of the absolute deviations of data points from their mean.</ahelp> Displays the diffusion in a data set."
+msgstr "<ahelp hid=\"HID_FUNC_MITTELABW\">Avereejii diviyeeshiniiwwan gonkaa kan xuqaawwan deetaa miinii isanii irraa kenna.</ahelp> faca'iinsa tuuta deetaa agarsiisa."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3153066\n"
+"04060184.xhp\n"
+"hd_id3150038\n"
"29\n"
"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFMONTHS\">Calculates the difference in months between two dates.</ahelp>"
-msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFMONTHS\">Garaagarummaa ji'ootaa guyyoota lama gidduu jiru shallaga.</ahelp>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3151240\n"
+"04060184.xhp\n"
+"par_id3145636\n"
"30\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "AVEDEV(Number1; Number2; ...Number30)"
+msgstr "AVEDEV(Lakkofsa1; Lakkoofsa2; ...Lakkoofsa30)"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3146869\n"
+"04060184.xhp\n"
+"par_id3157871\n"
"31\n"
"help.text"
-msgid "MONTHS(StartDate; EndDate; Type)"
-msgstr "MONTHS(AduuJalqabaa; AduuDhumaa; Gosa)"
+msgid "<emph>Number1, Number2,...Number30</emph> are values or ranges that represent a sample. Each number can also be replaced by a reference."
+msgstr "<emph>Lakkoofsa1; Lakkoofsa2;...Lakkoofsa30</emph>n gatiiwwan ykn hangiiwwanii dha. Tokkoon tokkoon lakkoofsa wabiidhaan bakka bu'uu ni danda'a."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3145075\n"
+"04060184.xhp\n"
+"hd_id3149725\n"
"32\n"
"help.text"
-msgid "<emph>StartDate</emph> is the first date"
-msgstr "<emph>AduunJalqabaa</emph> aduu duraati"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3157981\n"
+"04060184.xhp\n"
+"par_id3153122\n"
"33\n"
"help.text"
-msgid "<emph>EndDate</emph> is the second date"
-msgstr "<emph>AduunDhumaa</emph> aduu lammaffaati"
-
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3150111\n"
-"34\n"
-"help.text"
-msgid "<emph>Type</emph> calculates the type of difference. Possible values include 0 (interval) and 1 (in calendar months)."
-msgstr "<emph>Gosni</emph> Gosa garaagarummaa shallaga. Gatiiwwan eeyyamaman 0 (giddu'uu) fi 1 (lakkaawwii ji'ootaan)."
+msgid "<item type=\"input\">=AVEDEV(A1:A50)</item>"
+msgstr "<item type=\"input\">=AVEDEV(A1:A50)</item>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"bm_id3159094\n"
+"04060184.xhp\n"
+"bm_id3145824\n"
"help.text"
-msgid "<bookmark_value>ROT13 function</bookmark_value><bookmark_value>encrypting text</bookmark_value>"
-msgstr "<bookmark_value>faankishinii ROT13</bookmark_value><bookmark_value>barruu icciteessuu</bookmark_value>"
+msgid "<bookmark_value>AVERAGE function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii AVERAGE</bookmark_value>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3159094\n"
+"04060184.xhp\n"
+"hd_id3145824\n"
"35\n"
"help.text"
-msgid "ROT13"
-msgstr "ROT13"
+msgid "AVERAGE"
+msgstr "AVERAGE"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3146781\n"
+"04060184.xhp\n"
+"par_id3150482\n"
"36\n"
"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_ROT13\">Encrypts a character string by moving the characters 13 positions in the alphabet.</ahelp> After the letter Z, the alphabet begins again (Rotation). By applying the encryption function again to the resulting code, you can decrypt the text."
-msgstr "<ahelp hid=\"HID_DAI_FUNC_ROT13\">Arfiiwwan tartiiba qubee keessatti iddoowwan 13 tti hiiqsuudhaan diraa arfii icciteessa.</ahelp> Qubee Z booda, tartiibni qubee ammas (naanna'uu) jalqaba. Lakkaddaa uumamutti ammas faankishinii icciteessuu fayyadamuudhaan, icciitii barruu diiguu dandeessa."
+msgid "<ahelp hid=\"HID_FUNC_MITTELWERT\">Returns the average of the arguments.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MITTELWERT\">Avereejii qajeelfamootaa kenna.</ahelp>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3150893\n"
+"04060184.xhp\n"
+"hd_id3146943\n"
"37\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3159205\n"
+"04060184.xhp\n"
+"par_id3154679\n"
"38\n"
"help.text"
-msgid "ROT13(Text)"
-msgstr "ROT13(Barruu)"
+msgid "AVERAGE(Number1; Number2; ...Number30)"
+msgstr "AVERAGE(Lakkofsa1; Lakkoofsa2; ...Lakkoofsa30)"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3153249\n"
+"04060184.xhp\n"
+"par_id3150741\n"
"39\n"
"help.text"
-msgid "<emph>Text</emph> is the character string to be encrypted. ROT13(ROT13(Text)) decrypts the code."
-msgstr "<emph>Barruun</emph> diraa arfii icciteeffamuu qabudha. ROT13(ROT13(Barruun)) lakkaddaa saaxila."
+msgid "<emph>Number1; Number2;...Number 0</emph> are numerical values or ranges."
+msgstr "<emph>Lakkoofsa1; Lakkoofsa2;...Lakkoofsa0</emph> gatiiwwan ykn hangiiwwan lakkoofsaati."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"bm_id3151300\n"
+"04060184.xhp\n"
+"hd_id3153039\n"
+"40\n"
"help.text"
-msgid "<bookmark_value>DAYSINYEAR function</bookmark_value><bookmark_value>number of days; in a specific year</bookmark_value>"
-msgstr "<bookmark_value>faankishinii DAYSINYEAR</bookmark_value><bookmark_value>number of days; in a specific year</bookmark_value>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3151300\n"
+"04060184.xhp\n"
+"par_id3151232\n"
+"41\n"
+"help.text"
+msgid "<item type=\"input\">=AVERAGE(A1:A50)</item>"
+msgstr "<item type=\"input\">=AVERAGE(A1:A50)</item>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3148754\n"
+"help.text"
+msgid "<bookmark_value>AVERAGEA function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii AVERAGEA</bookmark_value>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3148754\n"
+"157\n"
+"help.text"
+msgid "AVERAGEA"
+msgstr "AVERAGEA"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3145138\n"
+"158\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_MITTELWERTA\">Returns the average of the arguments. The value of a text is 0.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MITTELWERTA\">Avereejii qajeelfamootaa kenna. Gatiin barruu 0 dha.</ahelp>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3153326\n"
+"159\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3149734\n"
+"160\n"
+"help.text"
+msgid "AVERAGEA(Value1; Value2; ... Value30)"
+msgstr "AVERAGEA(Gatii1; Gatii2; ... Gatii30)"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3155260\n"
+"161\n"
+"help.text"
+msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
+msgstr "<emph>Gatii1; Gatii2; ... Gatii30</emph>n gatiiwwanii fi hangiiwwan. Gatiin barruu duwwaa dha."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3149504\n"
+"162\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3150864\n"
+"163\n"
+"help.text"
+msgid "<item type=\"input\">=AVERAGEA(A1:A50)</item>"
+msgstr "<item type=\"input\">=AVERAGEA(A1:A50)</item>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3153933\n"
+"help.text"
+msgid "<bookmark_value>MODE function</bookmark_value><bookmark_value>most common value</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii MODE</bookmark_value><bookmark_value>gatii baay'ee baratamoo</bookmark_value>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3153933\n"
"43\n"
"help.text"
-msgid "DAYSINYEAR"
-msgstr "DAYSINYEAR"
+msgid "MODE"
+msgstr "MODE"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3143220\n"
+"04060184.xhp\n"
+"par_id3153085\n"
"44\n"
"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_DAYSINYEAR\">Calculates the number of days of the year in which the date entered occurs.</ahelp>"
-msgstr "<ahelp hid=\"HID_DAI_FUNC_DAYSINYEAR\">Lakkoofsa guyyoota waggaa keessaa kan aduun gale itti argamu shallaga.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_MODALWERT\">Returns the most common value in a data set.</ahelp> If there are several values with the same frequency, it returns the smallest value. An error occurs when a value doesn't appear twice."
+msgstr "<ahelp hid=\"HID_FUNC_MODALWERT\">Gatiiwwan bay'ee baratamoo tuuta deetaa keessaa kenna.</ahelp> Yoo gatiiwwan adda addaa hamamtaa walfakkaataa jiraatan, gatii xiqqaa kenna. Yoo gatiin yeroo lama hin mul'anne dogongorri ni mudata."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3145358\n"
+"04060184.xhp\n"
+"hd_id3153003\n"
"45\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3154651\n"
+"04060184.xhp\n"
+"par_id3155950\n"
"46\n"
"help.text"
-msgid "DAYSINYEAR(Date)"
-msgstr "DAYSINYEAR(Aduu)"
+msgid "MODE(Number1; Number2; ...Number30)"
+msgstr "MODE(Lakkofsa1; Lakkoofsa2; ...Lakkoofsa30)"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3153803\n"
+"04060184.xhp\n"
+"par_id3150337\n"
"47\n"
"help.text"
-msgid "<emph>Date</emph> is any date in the respective year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
-msgstr "<emph>Aduu</emph>n aduu kamiyyuu kan eerame keessaati. Ulaagaan aduu akka qindaa'inoota gitoo biyyaa %PRODUCTNAMEtti aduu gataa'aa ta'u qaba."
+msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
+msgstr "<emph>Lakkoofsa1; Lakkoofsa2;...Lakkoofsa30</emph> gatiiwwan ykn hangiiwwan lakkoofsaati."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3153487\n"
+"04060184.xhp\n"
+"hd_id3153571\n"
"48\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3153811\n"
+"04060184.xhp\n"
+"par_id3153733\n"
"49\n"
"help.text"
-msgid "=DAYSINYEAR(A1) returns 366 days if A1 contains 1968-02-29, a valid date for the year 1968."
-msgstr "=DAYSINYEAR(A1) yoo A1'nin 1968-02-29 qabaate guyyoota 366 qaba, aduu gataa'aa kan bara 1968."
-
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"bm_id3154737\n"
-"help.text"
-msgid "<bookmark_value>DAYSINMONTH function</bookmark_value><bookmark_value>number of days;in a specific month of a year</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii DAYSINMONTH</bookmark_value><bookmark_value>lakkoofsa guyyootaa; kan ji'a murta'aa waggaa keessaa</bookmark_value>"
+msgid "<item type=\"input\">=MODE(A1:A50)</item>"
+msgstr "<item type=\"input\">=MODE(A1:A50)</item>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3154737\n"
-"50\n"
+"04060184.xhp\n"
+"bm_id3149879\n"
"help.text"
-msgid "DAYSINMONTH"
-msgstr "DAYSINMONTH"
+msgid "<bookmark_value>NEGBINOMDIST function</bookmark_value><bookmark_value>negative binomial distribution</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii NEGBINOMDIST</bookmark_value><bookmark_value>raabsa baynomiyaalii negativii</bookmark_value>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3149316\n"
+"04060184.xhp\n"
+"hd_id3149879\n"
"51\n"
"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_DAYSINMONTH\">Calculates the number of days of the month in which the date entered occurs.</ahelp>"
-msgstr "<ahelp hid=\"HID_DAI_FUNC_DAYSINMONTH\">Lakkoofsa guyyoota ji'a keessaa kan aduun gale itti argamu shallaga.</ahelp>"
+msgid "NEGBINOMDIST"
+msgstr "NEGBINOMDIST"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3145114\n"
+"04060184.xhp\n"
+"par_id3155437\n"
"52\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Returns the negative binomial distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Raabsa baynomiyaalii negativii kenna.</ahelp>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3150955\n"
+"04060184.xhp\n"
+"hd_id3145351\n"
"53\n"
"help.text"
-msgid "DAYSINMONTH(Date)"
-msgstr "DAYSINMONH(Aduu)"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3147501\n"
+"04060184.xhp\n"
+"par_id3150935\n"
"54\n"
"help.text"
-msgid "<emph>Date</emph> is any date in the respective month of the desired year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
-msgstr "<emph>Aduu</emph>n aduu kamiyyuu kan eerame ji'a keessaati. Ulaagaan aduu akka qindaa'inoota gitoo biyyaa %PRODUCTNAMEtti aduu dhugaa ta'u qaba."
+msgid "NEGBINOMDIST(X; R; SP)"
+msgstr "NEGBINOMDIST(X; R; SP)"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3149871\n"
+"04060184.xhp\n"
+"par_id3153044\n"
"55\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<emph>X</emph> represents the value returned for unsuccessful tests."
+msgstr "<emph>X</emph>n gatii yaaliiwwan hin milkoofnee bakka bu'a."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3155742\n"
+"04060184.xhp\n"
+"par_id3151018\n"
"56\n"
"help.text"
-msgid "=DAYSINMONTH(A1) returns 29 days if A1 contains 1968-02-17, a valid date for February 1968."
-msgstr "=DAYSINMONTH(A1) yoo A1'nin 1968-02-17 qabaate 29 kenna, aduu gataa'aa kan amajjii 1968ti."
-
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"bm_id3149048\n"
-"help.text"
-msgid "<bookmark_value>WEEKS function</bookmark_value><bookmark_value>number of weeks;between two dates</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii WEEKS</bookmark_value><bookmark_value>lakkoofsa torbeewwan;aduuwwan lama gidduu</bookmark_value>"
+msgid "<emph>R</emph> represents the value returned for successful tests."
+msgstr "<emph>R</emph>n gatii yaaliiwwan hin milkoofnee bakka bu'a."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3149048\n"
+"04060184.xhp\n"
+"par_id3148878\n"
"57\n"
"help.text"
-msgid "WEEKS"
-msgstr "WEEKS"
+msgid "<emph>SP</emph> is the probability of the success of an attempt."
+msgstr "<emph>SP</emph>n pirobaabilitiili milkaa'ina gochaati."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3153340\n"
+"04060184.xhp\n"
+"hd_id3149539\n"
"58\n"
"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFWEEKS\">Calculates the difference in weeks between two dates.</ahelp>"
-msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFWEEKS\">garagarumma torbeewwan aduuwwan lama jiru kenna.</ahelp>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3150393\n"
+"04060184.xhp\n"
+"par_id3148770\n"
"59\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<item type=\"input\">=NEGBINOMDIST(1;1;0.5)</item> returns 0.25."
+msgstr "<item type=\"input\">=NEGBINOMDIST(1;1;0.5)</item> 0.25 kenna."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3147402\n"
-"60\n"
+"04060184.xhp\n"
+"bm_id3155516\n"
"help.text"
-msgid "WEEKS(StartDate; EndDate; Type)"
-msgstr "WEEKS(AduuJalqabaa; AduuXumuraa; Akaakuu)"
+msgid "<bookmark_value>NORMINV function</bookmark_value><bookmark_value>normal distribution;inverse of</bookmark_value>"
+msgstr "<bookmark_value>Fankshinii NORMINV</bookmark_value><bookmark_value>raabsa baratamoo;garagaltoo</bookmark_value>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3151387\n"
+"04060184.xhp\n"
+"hd_id3155516\n"
"61\n"
"help.text"
-msgid "<emph>StartDate</emph> is the first date"
-msgstr "<emph>AduuJalqabaa</emph> aduu duraati."
+msgid "NORMINV"
+msgstr "NORMINV"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3146324\n"
+"04060184.xhp\n"
+"par_id3154634\n"
"62\n"
"help.text"
-msgid "<emph>EndDate</emph> is the second date"
-msgstr "<emph>AduuXumuraa</emph> aduu lammaffaati."
+msgid "<ahelp hid=\"HID_FUNC_NORMINV\">Returns the inverse of the normal cumulative distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NORMINV\">garagaltoo raabsa dimshaashaa baratamoo kenna.</ahelp>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3166467\n"
+"04060184.xhp\n"
+"hd_id3153227\n"
"63\n"
"help.text"
-msgid "<emph>Type</emph> calculates the type of difference. The possible values are 0 (interval) and 1 (in numbers of weeks)."
-msgstr "<emph>Akaakuu</emph>n akaakuu garaagarummaa shallaga. Gatiiwwan ta'uu danda'an 0 (giddu'u) fi 1 (lakkoofsa torbewwani keessatti) dha."
-
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"bm_id3145237\n"
-"help.text"
-msgid "<bookmark_value>WEEKSINYEAR function</bookmark_value><bookmark_value>number of weeks;in a specific year</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii WEEKSINYEAR</bookmark_value><bookmark_value>lakkoofsa torbeewwanii;bara murta'aa keessaa</bookmark_value>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3145237\n"
+"04060184.xhp\n"
+"par_id3147534\n"
"64\n"
"help.text"
-msgid "WEEKSINYEAR"
-msgstr "WEEKSINYEAR"
+msgid "NORMINV(Number; Mean; StDev)"
+msgstr "NORMINV(Lakkofsa; Miinii; StDev)"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3147410\n"
+"04060184.xhp\n"
+"par_id3154950\n"
"65\n"
"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_WEEKSINYEAR\">Calculates the number of weeks of the year in which the date entered occurs.</ahelp> The number of weeks is defined as follows: a week that spans two years is added to the year in which most days of that week occur."
-msgstr "<ahelp hid=\"HID_DAI_FUNC_WEEKSINYEAR\">Lakkoofsa torbeewwan waggaa kan aduun gale itti argamu kenna.</ahelp> Lakkoofsi torbeewwanii akka armaan gadiiti hiikama:torbeen waggoota lama gargar baasu waggaa guyyotni torbee kana keessatti argamutti dabalama."
+msgid "<emph>Number</emph> represents the probability value used to determine the inverse normal distribution."
+msgstr "<emph>Lakkoofsi</emph> gatii pirobaabilitii kan garagaltoo raabsa baratamoo murteessuf fayyadu kenna."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3149719\n"
+"04060184.xhp\n"
+"par_id3150690\n"
"66\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<emph>Mean</emph> represents the mean value in the normal distribution."
+msgstr "<emph>Miinii</emph>n gatii miinii kan raabsa baratamoo keessaa bakka bu'a."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3145638\n"
+"04060184.xhp\n"
+"par_id3148594\n"
"67\n"
"help.text"
-msgid "WEEKSINYEAR(Date)"
-msgstr "WEEKSINYEAR(aduu)"
+msgid "<emph>StDev</emph> represents the standard deviation of the normal distribution."
+msgstr "<emph>StDev</emph> diviyeeshinii waltawaa kan raabsa baratamoo kenna."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3149946\n"
+"04060184.xhp\n"
+"hd_id3155822\n"
"68\n"
"help.text"
-msgid "<emph>Date</emph> is any date in the respective year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
-msgstr "<emph>Aduu</emph>n aduu kamiyyuu kan bara eerame keessaati. Ulaagaan aduu akka qindaa'inoota gitoo biyyaa %PRODUCTNAMEtti aduu dhugaa ta'u qaba."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3150037\n"
+"04060184.xhp\n"
+"par_id3153921\n"
"69\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<item type=\"input\">=NORMINV(0.9;63;5)</item> returns 69.41. If the average egg weighs 63 grams with a standard deviation of 5, then there will be 90% probability that the egg will not be heavier than 69.41g grams."
+msgstr "<item type=\"input\">=NORMINV(0.9;63;5)</item> 69.41 kenna. Yoo hanqaaquun giddugaleessaa diviyeeshinii waltawaa 5 qabu giramii 63 ulfaate, pirobaabilitiin hanqaaqun giraamii 69.41 caala hin ulfaannee 90% ta'uu danda'a."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3147614\n"
-"70\n"
+"04060184.xhp\n"
+"bm_id3153722\n"
"help.text"
-msgid "WEEKSINYEAR(A1) returns 53 if A1 contains 1970-02-17, a valid date for the year 1970."
-msgstr "=WEEKSINYEAR(A1) yoo A1'nin 1970-02-17 qabaate 53 kenna, aduu gataa'aa kan bara 1970."
+msgid "<bookmark_value>NORMDIST function</bookmark_value><bookmark_value>density function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii NORMDIST</bookmark_value><bookmark_value>fankishinii rukkinaa</bookmark_value>"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3157901\n"
+"04060184.xhp\n"
+"hd_id3153722\n"
+"71\n"
+"help.text"
+msgid "NORMDIST"
+msgstr "NORMDIST"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3150386\n"
"72\n"
"help.text"
-msgid "Add-ins through %PRODUCTNAME API"
-msgstr "idaatuwaan %PRODUCTNAME API keessaan"
+msgid "<ahelp hid=\"HID_FUNC_NORMVERT\">Returns the density function or the normal cumulative distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NORMVERT\">fankishinii rukkinaa ykn raabsa dimshaashaa baratamoo kenna.</ahelp>"
-#: 04060111.xhp
-#, fuzzy
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3149351\n"
+"04060184.xhp\n"
+"hd_id3083282\n"
"73\n"
"help.text"
-msgid "Add-ins can also be implemented through the %PRODUCTNAME <link href=\"http://api.libreoffice.org/\">API</link>."
-msgstr "Idaattuun %PRODUCTNAME <link href=\"http://api.openoffice.org/\">API</link> dhan hojjoomuu danda'a."
+msgid "Syntax"
+msgstr "Caasima"
-#: 12080600.xhp
+#: 04060184.xhp
msgctxt ""
-"12080600.xhp\n"
-"tit\n"
+"04060184.xhp\n"
+"par_id3150613\n"
+"74\n"
"help.text"
-msgid "Remove"
-msgstr "Haqi"
+msgid "NORMDIST(Number; Mean; StDev; C)"
+msgstr "NORMDIST(Lakkofsa; Miinii; StDev; C)"
-#: 12080600.xhp
+#: 04060184.xhp
msgctxt ""
-"12080600.xhp\n"
-"hd_id3148947\n"
-"1\n"
+"04060184.xhp\n"
+"par_id3149820\n"
+"75\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080600.xhp\" name=\"Remove\">Remove</link>"
-msgstr "<link href=\"text/scalc/01/12080600.xhp\" name=\"Remove\">Haqi</link>"
+msgid "<emph>Number</emph> is the value of the distribution based on which the normal distribution is to be calculated."
+msgstr "<emph>Lakkoofsi</emph> gatii raabsaa kan raabsi baratamoon irratti hundaa'udhan shallagamuu dha."
-#: 12080600.xhp
+#: 04060184.xhp
msgctxt ""
-"12080600.xhp\n"
-"par_id3149656\n"
-"2\n"
+"04060184.xhp\n"
+"par_id3146063\n"
+"76\n"
"help.text"
-msgid "<ahelp hid=\".uno:ClearOutline\" visibility=\"visible\">Removes the outline from the selected cell range.</ahelp>"
-msgstr "<ahelp hid=\".uno:ClearOutline\" visibility=\"visible\">Hammanga man'ee filatame irraa toorii haqa.</ahelp>"
+msgid "<emph>Mean</emph> is the mean value of the distribution."
+msgstr "<emph>Miinii</emph>n gatii miinii kan raabsati."
-#: 12090000.xhp
-#, fuzzy
+#: 04060184.xhp
msgctxt ""
-"12090000.xhp\n"
-"tit\n"
+"04060184.xhp\n"
+"par_id3156295\n"
+"77\n"
"help.text"
-msgid "Pivot Table"
-msgstr "Gabatee Qiinxaa"
+msgid "<emph>StDev</emph> is the standard deviation of the distribution."
+msgstr "<emph>StDev</emph> istandaard diviyeeshinii raabsati."
-#: 12090000.xhp
-#, fuzzy
+#: 04060184.xhp
msgctxt ""
-"12090000.xhp\n"
-"hd_id3150275\n"
-"1\n"
+"04060184.xhp\n"
+"par_id3145080\n"
+"78\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12090000.xhp\" name=\"Pivot Table\">Pivot Table</link>"
-msgstr "<link href=\"text/shared/01/01100500.xhp\" name=\"Priority Table\">Gabatee Duraanaa</link>"
+msgid "<emph>C</emph> is optional. <emph>C</emph> = 0 calculates the density function, <emph>C</emph> = 1 calculates the distribution."
+msgstr "<emph>C</emph>n dirqalee dha. <emph>C</emph> = 0 fankishinii rukkinaa shallaga, <emph>C</emph> = 1 raabsa shallaga."
-#: 12090000.xhp
-#, fuzzy
+#: 04060184.xhp
msgctxt ""
-"12090000.xhp\n"
-"par_id3153562\n"
-"2\n"
+"04060184.xhp\n"
+"hd_id3152972\n"
+"79\n"
"help.text"
-msgid "A pivot table provides a summary of large amounts of data. You can then rearrange the pivot table to view different summaries of the data."
-msgstr "Gabateen qinxaa goolabaa guddaa deetaa kenna.Goolaba deetaa adda addaa ilaaluuf gabatee qinxaa kee sissireessuu dandeessa."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12090000.xhp
-#, fuzzy
+#: 04060184.xhp
msgctxt ""
-"12090000.xhp\n"
-"hd_id3155923\n"
-"3\n"
+"04060184.xhp\n"
+"par_id3149283\n"
+"80\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12090100.xhp\" name=\"Create\">Create</link>"
-msgstr "<link href=\"text/scalc/01/12090300.xhp\" name=\"Delete\">Haqi</link>"
+msgid "<item type=\"input\">=NORMDIST(70;63;5;0)</item> returns 0.03."
+msgstr "<item type=\"input\">=NORMDIST(70;63;5;0)</item> 0.03 kenna."
-#: 12090000.xhp
-#, fuzzy
+#: 04060184.xhp
msgctxt ""
-"12090000.xhp\n"
-"par_idN105FB\n"
+"04060184.xhp\n"
+"par_id3149448\n"
+"81\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
-msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"DataPilot dialog\">Qaaqa qinxaa</link>"
+msgid "<item type=\"input\">=NORMDIST(70;63;5;1)</item> returns 0.92."
+msgstr "<item type=\"input\">=NORMDIST(70;63;5;1)</item> 0.92 kenna."
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"tit\n"
+"04060184.xhp\n"
+"bm_id3152934\n"
"help.text"
-msgid "Grouping"
-msgstr "Gurmeessuu"
+msgid "<bookmark_value>PEARSON function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii PEARSON</bookmark_value>"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN1054D\n"
+"04060184.xhp\n"
+"hd_id3152934\n"
+"83\n"
"help.text"
-msgid "Grouping"
-msgstr "Gurmeessuu"
+msgid "PEARSON"
+msgstr "PEARSON"
-#: 12090400.xhp
-#, fuzzy
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10551\n"
+"04060184.xhp\n"
+"par_id3153216\n"
+"84\n"
"help.text"
-msgid "Grouping pivot tables displays the <emph>Grouping</emph> dialog for either values or dates."
-msgstr "Aduuwwaan ykn gatiwwaaniif gabateewwaan qinxaa gurmeessuun qaaqa <emph>Gurmeessuu</emph>jedhu agarsiisa."
+msgid "<ahelp hid=\"HID_FUNC_PEARSON\">Returns the Pearson product moment correlation coefficient r.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_PEARSON\">kofishantii korrileeshinii momantii bay'ataa piirsanii kenna.</ahelp>"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10568\n"
+"04060184.xhp\n"
+"hd_id3147081\n"
+"85\n"
"help.text"
-msgid "Start"
-msgstr "Eegali"
+msgid "Syntax"
+msgstr "Caasima"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN1056C\n"
+"04060184.xhp\n"
+"par_id3156133\n"
+"86\n"
"help.text"
-msgid "Specifies the start of the grouping."
-msgstr "Jalqaba gurmeessuu ifteessa."
+msgid "PEARSON(Data1; Data2)"
+msgstr "PEARSON(Deetaa1; Deetaa2)"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN1056F\n"
+"04060184.xhp\n"
+"par_id3151272\n"
+"87\n"
"help.text"
-msgid "Automatically"
-msgstr "Ofumaan"
+msgid "<emph>Data1</emph> represents the array of the first data set."
+msgstr "<emph>Deetaa1</emph> waraantoo tuuta deetaa jalqabaa bakka bu'a."
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10573\n"
+"04060184.xhp\n"
+"par_id3153279\n"
+"88\n"
"help.text"
-msgid "Specifies whether to start grouping at the smallest value."
-msgstr "Gurmeessuun akka gatii isa xiqqaa irraa eegaluu ifteessa."
+msgid "<emph>Data2</emph> represents the array of the second data set."
+msgstr "<emph>Deetaa2</emph> waraantoo tuuta deetaa lammaffaa bakka bu'a."
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10576\n"
+"04060184.xhp\n"
+"hd_id3147567\n"
+"89\n"
"help.text"
-msgid "Manually at"
-msgstr "Hujeekaan bakka"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN1057A\n"
+"04060184.xhp\n"
+"par_id3151187\n"
+"90\n"
"help.text"
-msgid "Specifies whether to enter the start value for grouping yourself."
-msgstr "Akkaa gatii eegala gurmeessuu matakee galchitu ifteessa."
+msgid "<item type=\"input\">=PEARSON(A1:A30;B1:B30)</item> returns the Pearson correlation coefficient of both data sets."
+msgstr "<item type=\"input\">=PEARSON(A1:A30;B1:B30)</item> kofishantii korrileshinii piirsanii kan tuutota deetaa lamaanuu kenna."
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN1057D\n"
+"04060184.xhp\n"
+"bm_id3152806\n"
"help.text"
-msgid "End"
-msgstr "Dhuma"
+msgid "<bookmark_value>PHI function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii PHI</bookmark_value>"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10581\n"
+"04060184.xhp\n"
+"hd_id3152806\n"
+"92\n"
"help.text"
-msgid "Specifies the end of the grouping."
-msgstr "Jalqaba gurmeessuu ifteessa."
+msgid "PHI"
+msgstr "PHI"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10584\n"
+"04060184.xhp\n"
+"par_id3150254\n"
+"93\n"
"help.text"
-msgid "Automatically"
-msgstr "Ofumaan"
+msgid "<ahelp hid=\"HID_FUNC_PHI\">Returns the values of the distribution function for a standard normal distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_PHI\">gatiiwwan fankishinii raabsa kan raabsa baratamoo waltawaa kenna.</ahelp>"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10588\n"
+"04060184.xhp\n"
+"hd_id3154748\n"
+"94\n"
"help.text"
-msgid "Specifies whether to end grouping at the largest value."
-msgstr "Gurmeessuun akka gatii isa guddaa irraatti xumuuramu ifteessa."
+msgid "Syntax"
+msgstr "Caasima"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN1058B\n"
+"04060184.xhp\n"
+"par_id3149976\n"
+"95\n"
"help.text"
-msgid "Manually at"
-msgstr "Hujeekaan"
+msgid "PHI(Number)"
+msgstr "PHI(lakkoofsa)"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN1058F\n"
+"04060184.xhp\n"
+"par_id3156108\n"
+"96\n"
"help.text"
-msgid "Specifies whether to enter the end value for grouping yourself."
-msgstr "Akkaa gatii xumura gurmeessuu matakee galchitu ifteessa."
+msgid "<emph>Number</emph> represents the value based on which the standard normal distribution is calculated."
+msgstr "<emph>Lakkoofsi</emph> gatii kan raabsi baratamoo waltawaa irratti hundaa'uudha shallagamu bakka bu'a."
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10592\n"
+"04060184.xhp\n"
+"hd_id3153621\n"
+"97\n"
"help.text"
-msgid "Group by"
-msgstr "Gurmeessaa"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10596\n"
+"04060184.xhp\n"
+"par_id3155849\n"
+"98\n"
"help.text"
-msgid "Specifies the value range by which every group's limits are calculated."
-msgstr "Tokko tokkoon dangaan gurmuu akkataa itti shallagamu gatii hangii ifteessa."
+msgid "<item type=\"input\">=PHI(2.25) </item>= 0.03"
+msgstr "<item type=\"input\">=PHI(2.25) </item>= 0.03"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10599\n"
+"04060184.xhp\n"
+"par_id3143236\n"
+"99\n"
"help.text"
-msgid "Number of days"
-msgstr "Lakkoofsa guyyoota"
+msgid "<item type=\"input\">=PHI(-2.25)</item> = 0.03"
+msgstr "<item type=\"input\">=PHI(-2.25)</item> = 0.03"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN1059D\n"
+"04060184.xhp\n"
+"par_id3149286\n"
+"100\n"
"help.text"
-msgid "In the case of grouping date values, specifies the number of days to group by."
-msgstr "Yommuu gatii aduu gurmeessinu lakkoofsa guyyoota gurmeessan ifteessa."
+msgid "<item type=\"input\">=PHI(0)</item> = 0.4"
+msgstr "<item type=\"input\">=PHI(0)</item> = 0.4"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN105A0\n"
+"04060184.xhp\n"
+"bm_id3153985\n"
"help.text"
-msgid "Intervals"
-msgstr "Giddu'u"
+msgid "<bookmark_value>POISSON function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii POISSON</bookmark_value>"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN105A4\n"
+"04060184.xhp\n"
+"hd_id3153985\n"
+"102\n"
"help.text"
-msgid "In the case of grouping date values, specifies the intervals to group by."
-msgstr "Yommuu gatii aduu gurmeessinu giddu'u gurmeessa kamii akka ta'e ifteessa."
+msgid "POISSON"
+msgstr "POISSON"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN105B2\n"
+"04060184.xhp\n"
+"par_id3154298\n"
+"103\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/guide/datapilot_grouping.xhp#datapilot_grouping\"/>"
-msgstr "<embedvar href=\"text/scalc/guide/datapilot_grouping.xhp#datapilot_grouping\"/>"
+msgid "<ahelp hid=\"HID_FUNC_POISSON\">Returns the Poisson distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_POISSON\">Raabsa poyzanii kenna.</ahelp>"
-#: 06030700.xhp
+#: 04060184.xhp
msgctxt ""
-"06030700.xhp\n"
-"tit\n"
+"04060184.xhp\n"
+"hd_id3159183\n"
+"104\n"
"help.text"
-msgid "Fill Mode"
-msgstr "Haalata Guuti"
+msgid "Syntax"
+msgstr "Caasima"
-#: 06030700.xhp
+#: 04060184.xhp
msgctxt ""
-"06030700.xhp\n"
-"bm_id3145119\n"
+"04060184.xhp\n"
+"par_id3146093\n"
+"105\n"
"help.text"
-msgid "<bookmark_value>cells; trace fill mode</bookmark_value><bookmark_value>traces; precedents for multiple cells</bookmark_value>"
-msgstr "<bookmark_value>Man'eewwan; halaata guuti sakkatta'i</bookmark_value><bookmark_value>sakkatta'a; man'eewwan baay'eef dursiitoota</bookmark_value>"
+msgid "POISSON(Number; Mean; C)"
+msgstr "POISSON(Lakkoofsa; Miinii; C)"
-#: 06030700.xhp
+#: 04060184.xhp
msgctxt ""
-"06030700.xhp\n"
-"hd_id3145119\n"
-"1\n"
+"04060184.xhp\n"
+"par_id3147253\n"
+"106\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030700.xhp\" name=\"Fill Mode\">Fill Mode</link>"
-msgstr "<link href=\"text/scalc/01/06030700.xhp\" name=\"Fill Mode\">Haalata Guuti</link>"
+msgid "<emph>Number</emph> represents the value based on which the Poisson distribution is calculated."
+msgstr "<emph>Lakkoofsi</emph> gatii kan raabsi poyzanii urratti hundaa'uudhan shallagamu bakka bu'a."
-#: 06030700.xhp
+#: 04060184.xhp
msgctxt ""
-"06030700.xhp\n"
-"par_id3151246\n"
-"2\n"
+"04060184.xhp\n"
+"par_id3151177\n"
+"107\n"
"help.text"
-msgid "<ahelp hid=\".uno:AuditingFillMode\">Activates the Fill Mode in the Detective. The mouse pointer changes to a special symbol, and you can click any cell to see a trace to the precedent cell.</ahelp> To exit this mode, press Escape or click the <emph>End Fill Mode</emph> command in the context menu."
-msgstr "<ahelp hid=\".uno:AuditingFillMode\">Argamatti haalata guuti kakaasa. Akeektuun hantuutee mallattoo addaatti jijjiramu, sakkata'insa man'ee dursaa ilaaluuf man'ee kamiyyuu cuqaasuu dandeessa.</ahelp> Haalata kana keessaa bahuuf, Cufiinsaa dhiibi ykn ajaja <emph>Dhuma Haalata Guuti</emph> baafata halqara keessaa cuqaasi."
+msgid "<emph>Mean</emph> represents the middle value of the Poisson distribution."
+msgstr "<emph>Miinii</emph>n gatii walakkaa raabsa poyzanii bakka bu'a."
-#: 06030700.xhp
+#: 04060184.xhp
msgctxt ""
-"06030700.xhp\n"
-"par_id3151211\n"
-"3\n"
+"04060184.xhp\n"
+"par_id3149200\n"
+"108\n"
"help.text"
-msgid "The <emph>Fill Mode</emph> function is identical to the <link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedent\">Trace Precedent</link> command if you call this mode for the first time. Use the context menu to select further options for the Fill Mode and to exit this mode."
-msgstr "Haalata kana si'aa jalqabaaf yoo waamta ta'ee, faankishiinin <emph>Haalata Guuti</emph> ajaja <link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedent\">Sakkatta'ii Dursaa</link> waliin walfakkaata.Dirqalaalee dabalata haalata guuti fi halaata kana bahii filachuuf bafata halqara fayyadami."
+msgid "<emph>C</emph> (optional) = 0 or False calculates the density function; <emph>C</emph> = 1 or True calculates the distribution. When omitted, the default value True is inserted when you save the document, for best compatibility with other programs and older versions of %PRODUCTNAME."
+msgstr "<emph>C</emph> (dirqalee) = 0 ykn Sobni faankishinii rukkinaa shallaga; <emph>C</emph> = 1 ykn Dhugaan raabsa shallaga. Yeroo dhifamu, gatiin durtii Dhugaa yeroo galmee olkeessu ni saagama, walitti ta'eenya gaarii sagantaa biroo fi fooyya'ina durii %PRODUCTNAME tiif."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3159347\n"
+"109\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3150113\n"
+"110\n"
+"help.text"
+msgid "<item type=\"input\">=POISSON(60;50;1)</item> returns 0.93."
+msgstr "<item type=\"input\">=POISSON(60;50;1)</item> 0.93 kenna."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3153100\n"
+"help.text"
+msgid "<bookmark_value>PERCENTILE function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii PERCENTILE</bookmark_value>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3153100\n"
+"112\n"
+"help.text"
+msgid "PERCENTILE"
+msgstr "PERCENTILE"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3154940\n"
+"113\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_QUANTIL\">Returns the alpha-percentile of data values in an array.</ahelp> A percentile returns the scale value for a data series which goes from the smallest (Alpha=0) to the largest value (alpha=1) of a data series. For <item type=\"literal\">Alpha</item> = 25%, the percentile means the first quartile; <item type=\"literal\">Alpha</item> = 50% is the MEDIAN."
+msgstr "<ahelp hid=\"HID_FUNC_QUANTIL\">parsantayilii-alfaa gatiiwwwan deetaa warantoo keessaa kenna.</ahelp> Parsatayiliin gatii safaraa kan tarreewwan deetaa gatii xiqqaa (Alfaa=0) irraa gara gatii guddaa (alfaa=1)tti deemuu tarreewwandeetaa keessa kenna.<item type=\"literal\">Alpha</item> = 25% dhaf, parsantayilii jechuuun kuwartayilii jalqabaati; <item type=\"literal\">Alpha</item> = 50% midiyaanii dha."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3150531\n"
+"114\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3148813\n"
+"115\n"
+"help.text"
+msgid "PERCENTILE(Data; Alpha)"
+msgstr "PERCENTILE(Deetaa; Alfaa)"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153054\n"
+"116\n"
+"help.text"
+msgid "<emph>Data</emph> represents the array of data."
+msgstr "<emph>Deetaa</emph> waraantoo deetaa bakka bu'a."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3154212\n"
+"117\n"
+"help.text"
+msgid "<emph>Alpha</emph> represents the percentage of the scale between 0 and 1."
+msgstr "<emph>Alfaa</emph>n dhibbeentaa safara gidduu 0 fi 1 jiru bakka bu'a."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3154290\n"
+"118\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3159147\n"
+"119\n"
+"help.text"
+msgid "<item type=\"input\">=PERCENTILE(A1:A50;0.1)</item> represents the value in the data set, which equals 10% of the total data scale in A1:A50."
+msgstr "<item type=\"input\">=PERCENTILE(A1:A50;0.1)</item> gatii tuuta deetaa, kan walqixa 10% safara deetaa dimshaashaa A1:A50 keessaa bakka bu'a."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3148807\n"
+"help.text"
+msgid "<bookmark_value>PERCENTRANK function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii PERCENTRANK</bookmark_value>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3148807\n"
+"121\n"
+"help.text"
+msgid "PERCENTRANK"
+msgstr "PERCENTRANK"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153573\n"
+"122\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_QUANTILSRANG\">Returns the percentage rank of a value in a sample.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_QUANTILSRANG\">Sadrkaa dhibbeentaa kan gatii eddattoo keessaa kenna.</ahelp>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3147512\n"
+"123\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3147238\n"
+"124\n"
+"help.text"
+msgid "PERCENTRANK(Data; Value)"
+msgstr "PERCENTRANK(Deetaa; Gatii)"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3154266\n"
+"125\n"
+"help.text"
+msgid "<emph>Data</emph> represents the array of data in the sample."
+msgstr "<emph>Deetaa</emph>n waraantoo deetaa eddattoo keessaa bakka bu'a."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3148475\n"
+"126\n"
+"help.text"
+msgid "<emph>Value</emph> represents the value whose percentile rank must be determined."
+msgstr "<emph>Gatii</emph>n gatii kan sadarkaan dhibbeentaa murteeffamuufi qabu bakka bu'a."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3155364\n"
+"127\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3149163\n"
+"128\n"
+"help.text"
+msgid "<item type=\"input\">=PERCENTRANK(A1:A50;50)</item> returns the percentage rank of the value 50 from the total range of all values found in A1:A50. If 50 falls outside the total range, an error message will appear."
+msgstr "<item type=\"input\">=PERCENTRANK(A1:A50;50)</item> gatiiwwan hunda kan ida'ama hangii A1:A50 keessaa jiran irraa sadarkaa dhibbeentaa gatii 50 kenna."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3166442\n"
+"help.text"
+msgid "<bookmark_value>QUARTILE function</bookmark_value>"
+msgstr "<bookmark_value>Fankishinii QUARTILE</bookmark_value>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3166442\n"
+"130\n"
+"help.text"
+msgid "QUARTILE"
+msgstr "QUARTILE"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3146958\n"
+"131\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_QUARTILE\">Returns the quartile of a data set.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_QUARTILE\">kuwaartayilii tuuta deetaa kenna.</ahelp>"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3152942\n"
+"132\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153684\n"
+"133\n"
+"help.text"
+msgid "QUARTILE(Data; Type)"
+msgstr "QUARTILE(Deetaa; Akaakuu)"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153387\n"
+"134\n"
+"help.text"
+msgid "<emph>Data</emph> represents the array of data in the sample."
+msgstr "<emph>Deetaa</emph>n waraantoo deetaa eddattoo keessaa bakka bu'a."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3155589\n"
+"135\n"
+"help.text"
+msgid "<emph>Type</emph> represents the type of quartile. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% and 4 = MAX.)"
+msgstr "<emph>Akaakuu</emph>n akaakuu kuwartaayilii bakka bu'a. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% and 4 = MAX.)"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3149103\n"
+"136\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3159276\n"
+"137\n"
+"help.text"
+msgid "<item type=\"input\">=QUARTILE(A1:A50;2)</item> returns the value of which 50% of the scale corresponds to the lowest to highest values in the range A1:A50."
+msgstr "<item type=\"input\">=QUARTILE(A1:A50;2)</item> gatii kan 50% safaraa gatiiwwan xiqqaa gara guddaa hangii A1:A50 keessaa jiraniitti firoomuf kenna."
#: 04060185.xhp
msgctxt ""
@@ -45625,7 +43462,7 @@ msgctxt ""
"35\n"
"help.text"
msgid "Example"
-msgstr "fakkeenya"
+msgstr "Fakkeenya"
#: 04060185.xhp
msgctxt ""
@@ -45767,7 +43604,7 @@ msgctxt ""
"43\n"
"help.text"
msgid "Example"
-msgstr "Fakkenya"
+msgstr "Fakkeenya"
#: 04060185.xhp
msgctxt ""
@@ -45811,7 +43648,7 @@ msgctxt ""
"196\n"
"help.text"
msgid "Syntax"
-msgstr "caasima"
+msgstr "Caasima"
#: 04060185.xhp
msgctxt ""
@@ -45882,7 +43719,7 @@ msgctxt ""
"48\n"
"help.text"
msgid "Syntax"
-msgstr "caasima"
+msgstr "Caasima"
#: 04060185.xhp
msgctxt ""
@@ -45912,7 +43749,6 @@ msgid "<emph>Mean</emph> is the arithmetic mean of the distribution."
msgstr "<emph>Miinii</emph>n gatii miinii artimeetikii raabsati."
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id3148874\n"
@@ -46042,7 +43878,7 @@ msgctxt ""
"par_id8652302\n"
"help.text"
msgid "It is GAUSS(x)=NORMSDIST(x)-0.5"
-msgstr "GAUSS(x)=NORMSDIST(x)-0.5 ta'a"
+msgstr "Innis GAUSS(x)=NORMSDIST(x)-0.5 dha"
#: 04060185.xhp
msgctxt ""
@@ -46558,7 +44394,7 @@ msgctxt ""
"123\n"
"help.text"
msgid "<emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
-msgstr "<emph>DigriisFiridam</emph> lakkoofsa digrii firidamii kan raabsa-t ti."
+msgstr "<emph>DigriisFiridam</emph> lakkoofsa digrii firidamii raabsa-t ti."
#: 04060185.xhp
msgctxt ""
@@ -47277,11615 +45113,13598 @@ msgctxt ""
msgid "See also the <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_WEIBULL_function\">Wiki page</link>."
msgstr ""
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
+"04060199.xhp\n"
"tit\n"
"help.text"
-msgid "Input Help"
-msgstr "Gargaarsa Naqa"
+msgid "Operators in $[officename] Calc"
+msgstr "Ogeejjiiwwan $[officename] Calc keessaa"
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"hd_id3156280\n"
+"04060199.xhp\n"
+"bm_id3156445\n"
+"help.text"
+msgid "<bookmark_value>formulas; operators</bookmark_value><bookmark_value>operators; formula functions</bookmark_value><bookmark_value>division sign, see also operators</bookmark_value><bookmark_value>multiplication sign, see also operators</bookmark_value><bookmark_value>minus sign, see also operators</bookmark_value><bookmark_value>plus sign, see also operators</bookmark_value><bookmark_value>text operators</bookmark_value><bookmark_value>comparisons;operators in Calc</bookmark_value><bookmark_value>arithmetical operators</bookmark_value><bookmark_value>reference operators</bookmark_value>"
+msgstr "<bookmark_value>formulawwan; ogeejjiiwwan</bookmark_value><bookmark_value>ogeejjiiwwan; fankishiniiwwan formula</bookmark_value><bookmark_value>qoyyaba qoodiinsaa, ogeejjiiwwanis ilaali</bookmark_value><bookmark_value>qoyyaba baay'isuu, ogeejjiiwwanis ilaali</bookmark_value><bookmark_value>qoyyaba hir'isuu, ogeejjiiwwanis ilaali</bookmark_value><bookmark_value>qoyyaba ida'uu, ogeejjiiwwanis ilaali</bookmark_value><bookmark_value>ogeejjiiwwan barruu</bookmark_value><bookmark_value>madaalliiwwan;ogeejjiiwwan Calc keessaa</bookmark_value><bookmark_value>ogeejjii artimeetikii</bookmark_value><bookmark_value>ogeejjiiwwan wabii</bookmark_value>"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"hd_id3156445\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12120200.xhp\" name=\"Input Help\">Input Help</link>"
-msgstr "<link href=\"text/scalc/01/12120200.xhp\" name=\"Input Help\">Gargaarsa Naqa</link>"
+msgid "Operators in $[officename] Calc"
+msgstr "Ogeejjiiwwan $[officename] Calc keessaa"
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"par_id3147229\n"
+"04060199.xhp\n"
+"par_id3155812\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_INPUTHELP\">Enter the message that you want to display when the cell or cell range is selected in the sheet.</ahelp>"
-msgstr "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_INPUTHELP\">Yommuu wardii keessatti man'ee ykn hangiin man'ee filatame, ergaa agarsiisuu barbaadduu galchi.</ahelp>"
+msgid "You can use the following operators in $[officename] Calc:"
+msgstr "ogeejjiwwan armaan gadii $[officename] Calc keessatti fayyadamu dandeessa:"
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"hd_id3146986\n"
+"04060199.xhp\n"
+"hd_id3153066\n"
"3\n"
"help.text"
-msgid "Show input help when cell is selected"
-msgstr "Yommuu man'een filatamuu gargaarsa naqa agarsiisi"
+msgid "Arithmetical Operators"
+msgstr "Ogeejjiwwan Herregaa"
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"par_id3153363\n"
+"04060199.xhp\n"
+"par_id3148601\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_INPUTHELP:TSB_HELP\">Displays the message that you enter in the <emph>Contents</emph> box when the cell or cell range is selected in the sheet.</ahelp>"
-msgstr "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_INPUTHELP:TSB_HELP\">Yommuu wardii keessatti man'ee ykn hangiin man'ee filatame,sanduuqni<emph>Qabeentoota</emph>ergaa galchitee agarsiisa.</ahelp>"
+msgid "These operators return numerical results."
+msgstr "Ogeejjiwwan kunnen firiiwwan lakkoofsa kennu."
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"par_id3154730\n"
+"04060199.xhp\n"
+"par_id3144768\n"
"5\n"
"help.text"
-msgid "If you enter text in the <emph>Contents</emph> box of this dialog, and then select and clear this check box, the text will be lost."
-msgstr "Yoo qaaqa sanduuqa<emph>Qabeentoota</emph> keessa barruu galchite,itti ansuun erga filaattee booda sanduuqa mirkaneesaa haqun,barruun ni gatama."
+msgid "Operator"
+msgstr "Ogeejjii"
-#: 12120200.xhp
-#, fuzzy
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"hd_id3147394\n"
+"04060199.xhp\n"
+"par_id3157982\n"
"6\n"
"help.text"
-msgid "Contents"
-msgstr "#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nQabeentoota\\n#-#-#-#-# optionen.po (PACKAGE VERSION) #-#-#-#-#\\nQabiyyeewwan"
+msgid "Name"
+msgstr "Maqaa"
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"hd_id3149582\n"
+"04060199.xhp\n"
+"par_id3159096\n"
+"7\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149126\n"
"8\n"
"help.text"
-msgid "Title"
-msgstr "Mataduree"
+msgid "+ (Plus)"
+msgstr "+ (Ida'uu)"
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"par_id3149400\n"
+"04060199.xhp\n"
+"par_id3150892\n"
"9\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_INPUTHELP:EDT_TITLE\">Enter the title that you want to display when the cell or cell range is selected.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_INPUTHELP:EDT_TITLE\">Yommuu wardii keessatti man'ee ykn hangiin man'ee filatame, mataduree agarsiisuu barbaadduu galchi.</ahelp>"
+msgid "Addition"
+msgstr "Ida'ama"
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"hd_id3149121\n"
+"04060199.xhp\n"
+"par_id3153247\n"
"10\n"
"help.text"
-msgid "Input help"
-msgstr "Gargaarsa Naqa"
+msgid "1+1"
+msgstr "1+1"
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"par_id3150752\n"
+"04060199.xhp\n"
+"par_id3159204\n"
"11\n"
"help.text"
-msgid "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_INPUTHELP:EDT_INPUTHELP\">Enter the message that you want to display when the cell or cell range is selected.</ahelp>"
-msgstr "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_INPUTHELP:EDT_INPUTHELP\">Yommuu wardii keessatti man'ee ykn hangiin man'ee filatame, ergaa agarsiisuu barbaadduu galchi.</ahelp>"
+msgid "- (Minus)"
+msgstr "- (Hir'isuu)"
-#: 02140400.xhp
+#: 04060199.xhp
msgctxt ""
-"02140400.xhp\n"
+"04060199.xhp\n"
+"par_id3145362\n"
+"12\n"
+"help.text"
+msgid "Subtraction"
+msgstr "Hir'isuu"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3153554\n"
+"13\n"
+"help.text"
+msgid "2-1"
+msgstr "2-1"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3153808\n"
+"14\n"
+"help.text"
+msgid "- (Minus)"
+msgstr "- (Hir'isuu)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3151193\n"
+"15\n"
+"help.text"
+msgid "Negation"
+msgstr "Fuggisoo"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3154712\n"
+"16\n"
+"help.text"
+msgid "-5"
+msgstr "-5"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149873\n"
+"17\n"
+"help.text"
+msgid "* (asterisk)"
+msgstr "* (urjoo)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3147504\n"
+"18\n"
+"help.text"
+msgid "Multiplication"
+msgstr "Baay'isuu"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149055\n"
+"19\n"
+"help.text"
+msgid "2*2"
+msgstr "2*2"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3151341\n"
+"20\n"
+"help.text"
+msgid "/ (Slash)"
+msgstr "/ (haxaaroo)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3159260\n"
+"21\n"
+"help.text"
+msgid "Division"
+msgstr "Hiruu"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3153027\n"
+"22\n"
+"help.text"
+msgid "9/3"
+msgstr "9/3"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3156396\n"
+"23\n"
+"help.text"
+msgid "% (Percent)"
+msgstr "% (Parsantii)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150372\n"
+"24\n"
+"help.text"
+msgid "Percent"
+msgstr "Parsantii"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3145632\n"
+"25\n"
+"help.text"
+msgid "15%"
+msgstr "15%"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149722\n"
+"26\n"
+"help.text"
+msgid "^ (Caret)"
+msgstr "^ (arfii hoxxee)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3159127\n"
+"27\n"
+"help.text"
+msgid "Exponentiation"
+msgstr "Mul'iseessuu"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3157873\n"
+"28\n"
+"help.text"
+msgid "3^2"
+msgstr "3^2"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"hd_id3152981\n"
+"29\n"
+"help.text"
+msgid "Comparative operators"
+msgstr "Ogeejjiiwwan dorgii"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3157902\n"
+"30\n"
+"help.text"
+msgid "These operators return either true or false."
+msgstr "Ogeejjiiwwan kunnen dhugaa ykn soba deebisuu."
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149889\n"
+"31\n"
+"help.text"
+msgid "Operator"
+msgstr "Ogeejjii"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150743\n"
+"32\n"
+"help.text"
+msgid "Name"
+msgstr "Maqaa"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3146877\n"
+"33\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3148888\n"
+"34\n"
+"help.text"
+msgid "= (equal sign)"
+msgstr "= (mallattoo wal qixaa)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3154845\n"
+"35\n"
+"help.text"
+msgid "Equal"
+msgstr "walqixa"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3154546\n"
+"36\n"
+"help.text"
+msgid "A1=B1"
+msgstr "A1=B1"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3154807\n"
+"37\n"
+"help.text"
+msgid "> (Greater than)"
+msgstr "> (Irra guddaa)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3148580\n"
+"38\n"
+"help.text"
+msgid "Greater than"
+msgstr "irra guddaa"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3145138\n"
+"39\n"
+"help.text"
+msgid "A1>B1"
+msgstr "A1=B1"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149507\n"
+"40\n"
+"help.text"
+msgid "< (Less than)"
+msgstr "< (Irra xiqqaa)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150145\n"
+"41\n"
+"help.text"
+msgid "Less than"
+msgstr "Irra xiqqaa"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150901\n"
+"42\n"
+"help.text"
+msgid "A1<B1"
+msgstr "A1<B1"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3153078\n"
+"43\n"
+"help.text"
+msgid ">= (Greater than or equal to)"
+msgstr ">= (Irra guddaa ykn walqixa)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150866\n"
+"44\n"
+"help.text"
+msgid "Greater than or equal to"
+msgstr "Irra guddaa ykn walqixa"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3153111\n"
+"45\n"
+"help.text"
+msgid "A1>=B1"
+msgstr "A1>=B1"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3153004\n"
+"46\n"
+"help.text"
+msgid "<= (Less than or equal to)"
+msgstr "<= (irra xiqqaa ykn walqixa)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150335\n"
+"47\n"
+"help.text"
+msgid "Less than or equal to"
+msgstr "Irra xiqqaa ykn walqixa"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3148760\n"
+"48\n"
+"help.text"
+msgid "A1<=B1"
+msgstr "A1<=B1"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3157994\n"
+"49\n"
+"help.text"
+msgid "<> (Inequality)"
+msgstr "<> (Walcaalma))"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150019\n"
+"50\n"
+"help.text"
+msgid "Inequality"
+msgstr "Walcaalma"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149878\n"
+"51\n"
+"help.text"
+msgid "A1<>B1"
+msgstr "A1<>B1"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"hd_id3145241\n"
+"52\n"
+"help.text"
+msgid "Text operators"
+msgstr "Ogeejjiiwwan barruu"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3155438\n"
+"53\n"
+"help.text"
+msgid "The operator combines separate texts into one text."
+msgstr "Ogeejjiin barruuwwan adda addaa gara barruu tokkootti maka."
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150566\n"
+"54\n"
+"help.text"
+msgid "Operator"
+msgstr "Ogeejjii"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3153048\n"
+"55\n"
+"help.text"
+msgid "Name"
+msgstr "Maqaa"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149001\n"
+"56\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3148769\n"
+"57\n"
+"help.text"
+msgid "& (And)"
+msgstr "& (Fi)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"bm_id3157975\n"
+"help.text"
+msgid "<bookmark_value>text concatenation AND</bookmark_value>"
+msgstr "<bookmark_value>walitti fidinsa barruu AND</bookmark_value>"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3157975\n"
+"58\n"
+"help.text"
+msgid "text concatenation AND"
+msgstr "walitti fidinsa barruu AND"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3157993\n"
+"59\n"
+"help.text"
+msgid "\"Sun\" & \"day\" is \"Sunday\""
+msgstr "\"Sun\" Fi \"day\"'n \"Sunday\" ta'a"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"hd_id3153550\n"
+"60\n"
+"help.text"
+msgid "Reference operators"
+msgstr "Wabii ogeejjotaa"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149024\n"
+"61\n"
+"help.text"
+msgid "These operators return a cell range of zero, one or more cells."
+msgstr "Ogeejjootni kunneen hangii man'ee duwwaa,tokko ykn man'eewwan baay'ee kenna."
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id2324900\n"
+"help.text"
+msgid "Range has the highest precedence, then intersection, and then finally union."
+msgstr "Hangiin dursaa olaantoo qaba,itti ansuun walkipha,fi xumura irratti walitti makuu qaba."
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3158416\n"
+"62\n"
+"help.text"
+msgid "Operator"
+msgstr "Ogeejjii"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3152822\n"
+"63\n"
+"help.text"
+msgid "Name"
+msgstr "Maqaa"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3154949\n"
+"64\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenya"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3156257\n"
+"65\n"
+"help.text"
+msgid ": (Colon)"
+msgstr ": (Qabxilamee))"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3153924\n"
+"66\n"
+"help.text"
+msgid "Range"
+msgstr "Hangii"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3148432\n"
+"67\n"
+"help.text"
+msgid "A1:C108"
+msgstr "A1:C108"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3152592\n"
+"68\n"
+"help.text"
+msgid "! (Exclamation point)"
+msgstr "! (Tuqaa raajefannoo)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"bm_id3150606\n"
+"help.text"
+msgid "<bookmark_value>intersection operator</bookmark_value>"
+msgstr "<bookmark_value>ogeejjii walkiphaa</bookmark_value>"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150606\n"
+"69\n"
+"help.text"
+msgid "Intersection"
+msgstr "Walkipha"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3083445\n"
+"70\n"
+"help.text"
+msgid "SUM(A1:B6!B5:C12)"
+msgstr "SUM(A1:B6!B5:C12)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150385\n"
+"71\n"
+"help.text"
+msgid "Calculates the sum of all cells in the intersection; in this example, the result yields the sum of cells B5 and B6."
+msgstr "Ida'amaa man'eewwan walkipha keessaa huundaa shallaga;fakkeenya kana keessatti,firiin ida'ama man'eewwan B5 fi B6 kenna."
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id4003723\n"
+"help.text"
+msgid "~ (Tilde)"
+msgstr "(Dalduufaa)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id838953\n"
+"help.text"
+msgid "Concatenation or union"
+msgstr "Walitti fidinsa ykn walitti makuu"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id2511978\n"
+"help.text"
+msgid "Takes two references and returns a reference list, which is a concatenation of the left reference followed by the right reference. Double entries are referenced twice. See note below this table."
+msgstr "Wabiiwwan lama fudhachuun tarree wabii kenna,kunis walitti fidinsa wabii bitaa kan wabii mirgaan hordofamee fudhata.Galinsii dabalata lama wabeeffama.Yadannoo gabatee armaan gadii jalatti argamu ilaali."
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id181890\n"
+"help.text"
+msgid "Reference concatenation using a tilde character was implemented lately. When a formula with the tilde operator exists in a document that is opened in old versions of the software, an error is returned. A reference list is not allowed inside an array expression."
+msgstr "Walitti fidinsi wabii arfii dalduufaa fayyadamun ogeejjii haraa,OpenOffice.org 3.0 and StarOffice 9 waliin eegaluun jiraata.Yommuu formuulaan ogeejjii dalduufaa galmee kan foyya'oota duraa sooftiweerii banee waliin jiraatee,dogoggorri ni deebisama.Warantoo himannoo keessatti tarreen wabii hin heeyyamamu."
+
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
"tit\n"
"help.text"
-msgid "Left"
-msgstr "Bitaa"
+msgid "Names"
+msgstr "Maqoota"
-#: 02140400.xhp
+#: 04070000.xhp
msgctxt ""
-"02140400.xhp\n"
-"hd_id3153896\n"
+"04070000.xhp\n"
+"hd_id3153951\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02140400.xhp\" name=\"Left\">Left</link>"
-msgstr "<link href=\"text/scalc/01/02140400.xhp\" name=\"Left\">Bitaa</link>"
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
+msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Maqoota</link>"
-#: 02140400.xhp
+#: 04070000.xhp
msgctxt ""
-"02140400.xhp\n"
-"par_id3150793\n"
+"04070000.xhp\n"
+"par_id3145801\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:FillLeft\" visibility=\"visible\">Fills a selected range of at least two columns with the contents of the far right cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:FillLeft\" visibility=\"visible\">Yoo xiqaatee tarjaawwan lama qabeentoota man'ee mirgaa fagatanii argaman waliin hangii filamaneef guuta .</ahelp>"
+msgid "<ahelp hid=\".\">Allows you to name the different sections of your spreadsheet document.</ahelp> By naming the different sections, you can easily <link href=\"text/scalc/01/02110000.xhp\" name=\"navigate\">navigate</link> through the spreadsheet documents and find specific information."
+msgstr "<ahelp hid=\".\">Kutaa adda addaa galmee wardiikeef maqaa akka moggaastuu sif heeyyama.</ahelp> Kutaalee adda adda maqaa moggaasuun, haaala salphaan karaa galmeewwan wardii fi odeeffanno murta'aa barbaadi jedhu <link href=\"text/scalc/01/02110000.xhp\" name=\"navigate\">naanneessuu</link> dandeessa."
-#: 02140400.xhp
+#: 04070000.xhp
msgctxt ""
-"02140400.xhp\n"
-"par_id3156280\n"
+"04070000.xhp\n"
+"hd_id3153878\n"
"3\n"
"help.text"
-msgid "If a selected range has only one row, the content of the far right cell is copied into all other cells of the range. If several rows are selected, the far right cells are copied into the cells to the left."
-msgstr "Yoo hangiin filamee tarree tokko qofa qabaate,qabiyyeen man'ee mirgaa fageenyarra jiru gara man'eewwan gara biraa hangiitti garagalfama.Yoo tarreewan baay'ee filame,man'ee mirgaa fageenyarra gara man'eewwan bitaarra jiranitti garagalfama."
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Define\">Define</link>"
+msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Define\">Hiiki</link>"
-#: 04010200.xhp
+#: 04070000.xhp
msgctxt ""
-"04010200.xhp\n"
+"04070000.xhp\n"
+"hd_id3146969\n"
+"4\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04070200.xhp\" name=\"Insert\">Insert</link>"
+msgstr "<link href=\"text/scalc/01/04070200.xhp\" name=\"Insert\">saagi</link>"
+
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"hd_id3155764\n"
+"5\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04070300.xhp\" name=\"Apply\">Apply</link>"
+msgstr "<link href=\"text/scalc/01/04070300.xhp\" name=\"Apply\">Fayyadami</link>"
+
+#: 04070000.xhp
+msgctxt ""
+"04070000.xhp\n"
+"hd_id3156382\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04070400.xhp\" name=\"Labels\">Labels</link>"
+msgstr "<link href=\"text/scalc/01/04070400.xhp\" name=\"Labels\">Moggaasa</link>"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
"tit\n"
"help.text"
-msgid "Column Break"
-msgstr "Cita Tarjaa"
+msgid "Define Names"
+msgstr "Maqoota Hiiki"
-#: 04010200.xhp
+#: 04070100.xhp
msgctxt ""
-"04010200.xhp\n"
-"bm_id3155923\n"
+"04070100.xhp\n"
+"hd_id3156330\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; inserting column breaks</bookmark_value><bookmark_value>column breaks; inserting</bookmark_value><bookmark_value>inserting; manual column breaks</bookmark_value><bookmark_value>manual column breaks</bookmark_value>"
-msgstr "<bookmark_value>wardiiwwan;citoota tarjaa saaguu</bookmark_value><bookmark_value>citoota tarjaa; saguu</bookmark_value><bookmark_value>saaguu; cioota hujeeka tarjaa</bookmark_value><bookmark_value>citoota hujeeka tarjaa</bookmark_value>"
+msgid "Define Names"
+msgstr "Maqoota Hiiki"
-#: 04010200.xhp
+#: 04070100.xhp
msgctxt ""
-"04010200.xhp\n"
-"hd_id3155923\n"
+"04070100.xhp\n"
+"par_id3154366\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"namenfestlegentext\"><ahelp hid=\".uno:DefineName\">Opens a dialog where you can specify a name for a selected area.</ahelp></variable>"
+msgstr "<variable id=\"namenfestlegentext\"><ahelp hid=\".uno:DefineName\">Bakka filameef qaaqa itti maqaa ifteessituu bana.</ahelp></variable>"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3154123\n"
+"31\n"
+"help.text"
+msgid "Use the mouse to define ranges or type the reference into the <emph>Define Name </emph>dialog fields."
+msgstr "Hangiiwwaan ramaduuf hantuuta fayyadami ykn qaaqa dirreewwan <emph>Maqaa Hiiki </emph> wabii barreessi."
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3155131\n"
+"30\n"
+"help.text"
+msgid "The <emph>Sheet Area</emph> box on the Formula bar contains a list of defined names for the ranges. Click a name from this box to highlight the corresponding reference on the spreadsheet. Names given formulas or parts of a formula are not listed here."
+msgstr "Sanduuqni <emph>Nannoo Wardii</emph> kan kabala formuulaa irraa hangiiwwan tarree maqaa hiikamee of keessatti qabata. wabii wardii irra jiru shooluuf sanduuqa kana keessa maqaa cuqaasi.Formuulaa kenname ykn kutaawwan formuulaa asitti hin tarrefamne moggaasa."
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3151118\n"
+"3\n"
+"help.text"
+msgid "Name"
+msgstr "Maqaa"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3163712\n"
+"29\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/definename/edit\">Enter the name of the area for which you want to define a reference. All area names already defined in the spreadsheet are listed in the text field below.</ahelp> If you click a name on the list, the corresponding reference in the document will be shown with a blue frame. If multiple cell ranges belong to the same area name, they are displayed with different colored frames."
+msgstr "<ahelp hid=\"modules/scalc/ui/definename/edit\">Maqaa nannoo wabii hiikuu barbadduu galchi. Maqaawwan nannoo hundii dursun wardii keessatti hiikaman dirree barru gaditti tarreeffamu.</ahelp> Yoo maqaa tarree keessaa cuqaaste,wabiin galmee keessaa akka goodayya cuqukiisaatti mul'ifama.Yoo hangiiwwan man'ee baay'ee maqaa nannoo wal fakkaata qabaatan, goodayyaawwan halluu adda addaa qabaniin agarsiifama."
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3153728\n"
+"9\n"
+"help.text"
+msgid "Assigned to"
+msgstr "Itti ramadame"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3147435\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/definename/range\">The reference of the selected area name is shown here as an absolute value.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/definename/range\">Wabiin nannoo maqaan filamee akka gat-sirriitti agarsiifama.</ahelp>"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3146986\n"
+"12\n"
+"help.text"
+msgid "To insert a new area reference, place the cursor in this field and use your mouse to select the desired area in any sheet of your spreadsheet document."
+msgstr "Nannoo wabii haraa saaguuf,dirree kana keessaa qaree kaa'i fi wardii nannoo barbaadamee kamiyyu galmee wardii keessaa filachuuf hantuutaa kee fayyadami."
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3154729\n"
+"13\n"
+"help.text"
+msgid "More"
+msgstr "Dabalaa"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3149958\n"
+"14\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/definename/more\">Allows you to specify the <emph>Area type </emph>(optional) for the reference.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/definename/more\">Wabiidhaaf <emph>Nannoo Akaakuu </emph>(filannoo) akka ifteessituu siif heeyyama.</ahelp>"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3147394\n"
+"15\n"
+"help.text"
+msgid "Area type"
+msgstr "Nannoo Akaakuu"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3155416\n"
+"16\n"
+"help.text"
+msgid "Defines additional options related to the type of reference area."
+msgstr "Dirqalaalee dabalataa kan akaakuu nannoo wabii waliti hidhamu hiika."
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3150716\n"
+"17\n"
+"help.text"
+msgid "Print range"
+msgstr "Hangii Maxxansaa"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3150751\n"
+"18\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/definename/printarea\">Defines the area as a print range.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/definename/printarea\">Nannoo akka hangii maxxansatti hiika.</ahelp>"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3153764\n"
+"19\n"
+"help.text"
+msgid "Filter"
+msgstr "Gingilchaa"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3155766\n"
+"20\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/definename/filter\">Defines the selected area to be used in an <link href=\"text/scalc/01/12040300.xhp\" name=\"advanced filter\">advanced filter</link>.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/definename/filter\">Nannoo filamee <link href=\"text/scalc/01/12040300.xhp\" name=\"advanced filter\">gingilchaa ol'aana</link> keessatti akka fayyadamuuf hiika.</ahelp>"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3159267\n"
+"21\n"
+"help.text"
+msgid "Repeat column"
+msgstr "Tarjaa deddeebi'aa"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3149565\n"
+"22\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/definename/colheader\">Defines the area as a repeating column.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/definename/colheader\">Nannoo akka tarjaa deddeebi'aatti hiika.</ahelp>"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3153966\n"
+"23\n"
+"help.text"
+msgid "Repeat row"
+msgstr "Tarree deddeebi'aa"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3150300\n"
+"24\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/definename/rowheader\">Defines the area as a repeating row.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/definename/rowheader\">Nannoo akka tarree deddeebi'aatti hiika.</ahelp>"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3155112\n"
+"27\n"
+"help.text"
+msgid "Add/Modify"
+msgstr "Ida'ii/Fooyyessi"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3159236\n"
+"28\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/managenamesdialog/add\">Click the <emph>Add</emph> button to add the defined name to the list. Click the <emph>Modify</emph> button to enter another name for an already existing name selected from the list.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/managenamesdialog/add\">Tarreetti maqaa hiikamee dabaluuf qabdoo <emph>Ida'ii</emph>cuqaasi.Maqaa duraa tarree keessaa filameef maqaa gara biraa galchuuf qabdoo<emph>Fooyyessi</emph> cuuqaasi.</ahelp>"
+
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert Name"
+msgstr "Maqaa Saagi"
+
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"bm_id3153195\n"
+"help.text"
+msgid "<bookmark_value>cell ranges; inserting named ranges</bookmark_value><bookmark_value>inserting; cell ranges</bookmark_value>"
+msgstr "<bookmark_value>hangiiwwan man'ee; hangiiwwan moggaafaman saagu</bookmark_value><bookmark_value>saagu; hangiiwwan man'ee</bookmark_value>"
+
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"hd_id3153195\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04010200.xhp\" name=\"Column Break\">Column Break</link>"
-msgstr "<link href=\"text/scalc/01/04010200.xhp\" name=\"Column Break\">Cita Tarjaa</link>"
+msgid "Insert Name"
+msgstr "Maqaa Saagi"
-#: 04010200.xhp
+#: 04070200.xhp
msgctxt ""
-"04010200.xhp\n"
-"par_id3150447\n"
+"04070200.xhp\n"
+"par_id3150011\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:InsertColumnBreak\">Inserts a column break (vertical page break) to the left of the active cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:InsertColumnBreak\">Cita tarjaa (cita fuulaa sarjaa)gara bita man'ee ka'aatt saaga.</ahelp>"
+msgid "<variable id=\"nameneinfuegentext\"><ahelp hid=\".uno:InsertName\">Inserts a defined named cell range at the current cursor's position.</ahelp></variable>"
+msgstr "<variable id=\"nameneinfuegentext\"><ahelp hid=\".uno:InsertName\">Bakka qaaree ammeetti hangii man'ee moggaafamee ramadame saaga.</ahelp></variable>"
-#: 04010200.xhp
+#: 04070200.xhp
msgctxt ""
-"04010200.xhp\n"
-"par_id3145171\n"
+"04070200.xhp\n"
+"par_id3149412\n"
+"7\n"
+"help.text"
+msgid "You can only insert a cell area after having defined a name for the area."
+msgstr "Nannoo man'ee saaguu kan dandeessu erga nannoof maqaa moggaaste booda qoofa."
+
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"hd_id3153160\n"
"3\n"
"help.text"
-msgid "The manual column break is indicated by a dark blue vertical line."
-msgstr "Citni hujeeka tarjaa bifa cuquliisa dukkanaawaatiin agarsiifama."
+msgid "Insert name"
+msgstr "Maqaa saagi"
-#: 04030000.xhp
+#: 04070200.xhp
msgctxt ""
-"04030000.xhp\n"
+"04070200.xhp\n"
+"par_id3154944\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NAMES_PASTE:LB_ENTRYLIST\">Lists all defined cell areas. Double-click an entry to insert the named area into the active sheet at the current cursor position.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NAMES_PASTE:LB_ENTRYLIST\">Nannoo man'ee hiikamee huundaa tarreessa.Nannoo hiikame gara wardii ka'aa kan bakki qaree ammee jirutti saaguuf galma lamcuqaasi.</ahelp>"
+
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"hd_id3153418\n"
+"5\n"
+"help.text"
+msgid "Insert All"
+msgstr "Man'eewwan Saagi"
+
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"par_id3155066\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES_PASTE:BTN_ADD\">Inserts a list of all named areas and the corresponding cell references at the current cursor position.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES_PASTE:BTN_ADD\">Bakka qaree ammeetti tarree nannoo moggaafame hunda fi wabiiwwan man'ee saaga.</ahelp>"
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
"tit\n"
"help.text"
-msgid "Rows"
-msgstr "Tarreewwan"
+msgid "Creating Names"
+msgstr "Maqoota Uuma"
-#: 04030000.xhp
+#: 04070300.xhp
msgctxt ""
-"04030000.xhp\n"
-"bm_id3150541\n"
+"04070300.xhp\n"
+"bm_id3147264\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; inserting rows</bookmark_value><bookmark_value>rows; inserting</bookmark_value><bookmark_value>inserting; rows</bookmark_value>"
-msgstr "<bookmark_value>wardiiwwan;tarreewwan saaguu</bookmark_value><bookmark_value>tarreewwan; saaguu</bookmark_value><bookmark_value>saaguu; tarreewwan</bookmark_value>"
+msgid "<bookmark_value>cell ranges;creating names automatically</bookmark_value><bookmark_value>names; for cell ranges</bookmark_value>"
+msgstr "<bookmark_value>hangiiwwan man'ee;Ofumaan maqoota uuma </bookmark_value><bookmark_value>maqoota; hangiiwwan man'eef</bookmark_value>"
-#: 04030000.xhp
+#: 04070300.xhp
msgctxt ""
-"04030000.xhp\n"
-"hd_id3150541\n"
+"04070300.xhp\n"
+"hd_id3147264\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04030000.xhp\" name=\"Rows\">Rows</link>"
-msgstr "<link href=\"text/scalc/01/04030000.xhp\" name=\"Rows\">Tarreewwan</link>"
+msgid "Creating Names"
+msgstr "Maqoota Uuma"
-#: 04030000.xhp
+#: 04070300.xhp
msgctxt ""
-"04030000.xhp\n"
-"par_id3150767\n"
+"04070300.xhp\n"
+"par_id3153969\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:InsertRows\" visibility=\"visible\">Inserts a new row above the active cell.</ahelp> The number of rows inserted correspond to the number of rows selected. The existing rows are moved downward."
-msgstr "<ahelp hid=\".uno:InsertRows\" visibility=\"visible\">Man'ee ka'aa olitti tarree haaraa saaga.</ahelp> Lakkoofsi tarreewwan saagamanii lakkoofsa tarreewwan filatamanii bakka bu'a.Tarreewwan duraan turan gara gadiitti hiiqu."
+msgid "<variable id=\"namenuebernehmentext\"><ahelp hid=\".uno:CreateNames\">Allows you to automatically name multiple cell ranges.</ahelp></variable>"
+msgstr "<variable id=\"namenuebernehmentext\"><ahelp hid=\".uno:CreateNames\">Hangiiwwan man'ee baay'ee ofumaan akka moggastuu si eeyyama.</ahelp></variable>"
-#: 02120100.xhp
+#: 04070300.xhp
msgctxt ""
-"02120100.xhp\n"
+"04070300.xhp\n"
+"par_id3156280\n"
+"13\n"
+"help.text"
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgstr "Nannoo hangiiwwan moggaasuu barbaaddu qabate hundaa fili. Itti aansuun <emph>Saagi - Maqoota - Uumi</emph>fili.Kunis qaaqa <emph>Maqoota Uumi</emph> kan dirqalaalee maqaa barbaadduu keessaa filattu bana"
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"hd_id3151116\n"
+"3\n"
+"help.text"
+msgid "Create names from"
+msgstr "Maqaa Kana Irraa Uuma"
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"par_id3152597\n"
+"4\n"
+"help.text"
+msgid "Defines which part of the spreadsheet is to be used for creating the name."
+msgstr "Maqaa uumudhaaf kutaa wardii isa kamtuu akka fayyadamu hiika."
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"hd_id3153729\n"
+"5\n"
+"help.text"
+msgid "Top row"
+msgstr "Tarree gubbaa"
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"par_id3149263\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/createnamesdialog/top\">Creates the range names from the header row of the selected range.</ahelp> Each column receives a separated name and cell reference."
+msgstr "<ahelp hid=\"modules/scalc/ui/createnamesdialog/top\">Tarree gubbaa hangii filamee irraa maqaawwan hangii uuma.</ahelp> Tokko tokkoo tarjaaf maqaa addaa fi wabii man'ee fudhata."
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"hd_id3146984\n"
+"7\n"
+"help.text"
+msgid "Left Column"
+msgstr "Tarjaa Bitaa"
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"par_id3153190\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/createnamesdialog/left\">Creates the range names from the entries in the first column of the selected sheet range.</ahelp> Each row receives a separated name and cell reference."
+msgstr "<ahelp hid=\"modules/scalc/ui/createnamesdialog/left\">Galiinsa tarjaa jalqabaa hangii wardii filamee irraa maqaawwan hangii uuma.</ahelp> Tokko tokkoon tarjaa maqaa addaa fi wabii man'ee fudhata."
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"hd_id3156284\n"
+"9\n"
+"help.text"
+msgid "Bottom row"
+msgstr "Tarree gadii"
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"par_id3147124\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/createnamesdialog/bottom\">Creates the range names from the entries in the last row of the selected sheet range.</ahelp> Each column receives a separated name and cell reference."
+msgstr "<ahelp hid=\"modules/scalc/ui/createnamesdialog/bottom\">Galiinsa tarree dhumaa wardii filamee irraa maqaawwan hangii uuma.</ahelp> tokko tokkoon tarjaa maqaa addaa fi wabii man'ee fudhata."
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"hd_id3154731\n"
+"11\n"
+"help.text"
+msgid "Right Column"
+msgstr "Tarjaa mirgaa"
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"par_id3153158\n"
+"12\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/createnamesdialog/right\">Creates the range names from the entries in the last column of the selected sheet range.</ahelp> Each row receives a separated name and cell reference."
+msgstr "<ahelp hid=\"modules/scalc/ui/createnamesdialog/right\">Galinsa keessaa tarjaa xumuura hangii wardii filameef hangii maqoota uuma</ahelp> Tokko tokkoon tarree maqaa addaa fi wabii man'ee fudhata."
+
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
"tit\n"
"help.text"
-msgid "Header/Footer"
-msgstr "Irraantoo/Jalaantoo"
+msgid "Define Label Range"
+msgstr "Moggaasa Hangii Hiiki"
-#: 02120100.xhp
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"bm_id3153360\n"
+"04070400.xhp\n"
+"bm_id3150791\n"
"help.text"
-msgid "<bookmark_value>page styles; headers</bookmark_value> <bookmark_value>page styles; footers</bookmark_value> <bookmark_value>headers; defining</bookmark_value> <bookmark_value>footers; defining</bookmark_value> <bookmark_value>file names in headers/footers</bookmark_value> <bookmark_value>changing;dates, automatically</bookmark_value> <bookmark_value>dates;updating automatically</bookmark_value> <bookmark_value>automatic date updates</bookmark_value>"
-msgstr "<bookmark_value>akkaataawwan fuulaa; irraantota</bookmark_value> <bookmark_value>akkaataawwan fuulaa; jalaantota footers</bookmark_value> <bookmark_value>irraantota; ibsuu</bookmark_value> <bookmark_value>jalaantota; ibsuu</bookmark_value> <bookmark_value>maqaa faayilii irraantota/jalaantota keessaa</bookmark_value> <bookmark_value>guyyaa,ofumaan; jijjiiruu</bookmark_value> <bookmark_value>guyyaa; ofumaan haaromsuu</bookmark_value> <bookmark_value>guyyaa ofumaan haaromsa</bookmark_value>"
+msgid "<bookmark_value>sheets; defining label ranges</bookmark_value><bookmark_value>label ranges in sheets</bookmark_value>"
+msgstr "<bookmark_value>wardiiwwan; moggaasa hangiiwwani hiikun</bookmark_value><bookmark_value>hangiiwwan wardii keessaa moggaasa</bookmark_value>"
-#: 02120100.xhp
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3153360\n"
+"04070400.xhp\n"
+"hd_id3150791\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02120100.xhp\" name=\"Header/Footer\">Header/Footer</link>"
-msgstr "<link href=\"text/scalc/01/02120100.xhp\" name=\"Header/Footer\">Irraantoo/Jalaantoo</link>"
+msgid "<variable id=\"define_label_range\"><link href=\"text/scalc/01/04070400.xhp\">Define Label Range</link></variable>"
+msgstr "<variable id=\"define_label_range\"><link href=\"text/scalc/01/04070400.xhp\">Moggaasa Hangii Hiiki</link></variable>"
-#: 02120100.xhp
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3150768\n"
+"04070400.xhp\n"
+"par_id3150868\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_SCPAGE_HFED_FL\">Defines or formats a header or footer for a Page Style.</ahelp>"
-msgstr "<ahelp hid=\"HID_SCPAGE_HFED_FL\">Irraantoo yookiin jalaantoo akkaataa fuulaaf ibsa yookiin dhangi'a.</ahelp>"
+msgid "<variable id=\"beschtext\"><ahelp hid=\".uno:DefineLabelRange\">Opens a dialog in which you can define a label range.</ahelp></variable>"
+msgstr "<variable id=\"beschtext\"><ahelp hid=\".uno:DefineLabelRange\">Qaaqa itti moggaasa hangii itti hiikuu dandeessu bana.</ahelp></variable>"
-#: 02120100.xhp
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3145748\n"
+"04070400.xhp\n"
+"par_id3155411\n"
+"13\n"
+"help.text"
+msgid "The cell contents of a label range can be used like names in formulas - $[officename] recognizes these names in the same manner that it does the predefined names of the weekdays and months. These names are automatically completed when typed into a formula. In addition, the names defined by label ranges will have priority over names defined by automatically generated ranges."
+msgstr "Qabeentootni man'ee moggaasa hangii akka maqaawwan formuulaa- $[officename] fayyadamuu danda'a, maqoota kunneen halaa wal fakkaatuun maqaa guyyoota torbanii fi ji'oota duraa hiikameetti fudhata.Yommuu formuulaatti barreessinu, maqootni kun ofumaan xumuramu.Dabalata,maqaan hangii moggaasan hiikame maqaalee ofumaan hangii uumamee hiikamee irra maqaalee moggaasa hangiiwwanin hiikameetu carraa dursu qaba."
+
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"par_id3147435\n"
+"14\n"
+"help.text"
+msgid "You can set label ranges that contain the same labels on different sheets. $[officename] first searches the label ranges of the current sheet and, following a failed search, the ranges of other sheets."
+msgstr "Wardiiwwan garaa garaa irratti moggaassawwan wal fakkaata kan qabu moggaasa hangiiwwanii qindeessuu dandeessa.$[officename]'n jalqaba wardii ammeef moggaasa hangiiwwanii barbaada, fi barbaacha kufaa itti aansuun,hangiiwwan wardii gara biraaf."
+
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"hd_id3145801\n"
"3\n"
"help.text"
-msgid "Left Area"
-msgstr "Naannoo Bitaa"
+msgid "Range"
+msgstr "Hangii"
-#: 02120100.xhp
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3147434\n"
+"04070400.xhp\n"
+"par_id3154731\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_FLL\">Enter the text to be displayed at the left side of the header or footer.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_HF_FLL\">Barruu mul'achuu qabu harka bitaa irraantoo yookiin jalaantootti galhi.</ahelp>"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_AREA\">Displays the cell reference of each label range.</ahelp> In order to remove a label range from the list box, select it and then click <emph>Delete</emph>."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_AREA\">Tokko tokkoo moggaasa hangiif wabii man'ee agarsiisa.</ahelp> Sanduqa tarree keessaa moggaasa hangii haquuf,isa filun fi itti aansuun<emph>Haqii</emph>cuqaasi."
-#: 02120100.xhp
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3148648\n"
+"04070400.xhp\n"
+"hd_id3149121\n"
"5\n"
"help.text"
-msgid "Center Area"
-msgstr "Naannoo gidduugaleessaa"
+msgid "Contains column labels"
+msgstr "Moggaasota tarjaa of keessatti qabata"
-#: 02120100.xhp
-#, fuzzy
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3163710\n"
+"04070400.xhp\n"
+"par_id3150330\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the text to be displayed at the center of the header or footer.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_HF_FLL\">Barruu mul'achuu qabu harka bitaa irraantoo yookiin jalaantootti galhi.</ahelp>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_COLHEAD\">Includes column labels in the current label range.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_COLHEAD\">Moggaasa hangii ammee keessatti moggaasota tarjaa of keessatti qabata.</ahelp>"
-#: 02120100.xhp
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3154942\n"
+"04070400.xhp\n"
+"hd_id3149020\n"
"7\n"
"help.text"
-msgid "Right Area"
-msgstr "Naannoo Mirgaa"
+msgid "Contains row labels"
+msgstr "Moggaasota tarree of keessatti qabata"
-#: 02120100.xhp
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3147126\n"
+"04070400.xhp\n"
+"par_id3154754\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_FLR\">Enter the text to be displayed at the right side of the header or footer.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_HF_FLR\">Barruu mul'achuu qabu mirga irraantoo yookiin jalaantooti galchi.</ahelp>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ROWHEAD\">Includes row labels in the current label range.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ROWHEAD\">Moggaasa hangii ammee keessatti moggaasota tarree of keessatti qabata.</ahelp>"
-#: 02120100.xhp
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_idN10811\n"
+"04070400.xhp\n"
+"hd_id3159264\n"
+"11\n"
"help.text"
-msgid "Header/Footer"
-msgstr "Irraantoo/Jalaantoo"
+msgid "For data range"
+msgstr "Hangii deetaaf"
-#: 02120100.xhp
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_idN10815\n"
+"04070400.xhp\n"
+"par_id3154703\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\".\">Select a predefined header or footer from the list.</ahelp>"
-msgstr "<ahelp hid=\".\">Irraantoo yookiin jalaantoo durmurtaawe tarree keessaa filadhu.</ahelp>"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_DATA\">Sets the data range for which the selected label range is valid. To modify it, click in the sheet and select another range with the mouse.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_DATA\">Moggaasa hangii filamee gitaa'a ta'uu isaaf hangii deetaa qindeessa Kanuma haroomsuuf, wardii keessa cuqaasuunif hangii gara biraa hantuutaan fili.</ahelp>"
-#: 02120100.xhp
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3154729\n"
+"04070400.xhp\n"
+"hd_id3145789\n"
"9\n"
"help.text"
-msgid "Text attributes"
-msgstr "Amaloota Barruu"
+msgid "Add"
+msgstr "Ida'i"
-#: 02120100.xhp
+#: 04070400.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3150717\n"
+"04070400.xhp\n"
+"par_id3147005\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_TEXT\">Opens a dialog to assign formats to new or selected text.</ahelp> The <emph>Text Attributes </emph>dialog contains the tab pages <link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>, <link href=\"text/shared/01/05020200.xhp\" name=\"Font Effects\">Font Effects</link> and <link href=\"text/shared/01/05020500.xhp\" name=\"Font Position\">Font Position</link>."
-msgstr "<ahelp hid=\"HID_SC_HF_TEXT\">Dhangiiwwan barruu haraa yookiin filatametti moggaasuuf qaaqa bana.</ahelp> Qaaqni <emph>Amaloota Barruu </emph>fuulota caancalaa <link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Bocquu</link>, <link href=\"text/shared/01/05020200.xhp\" name=\"Font Effects\">Galteewwan Bocquu</link> and <link href=\"text/shared/01/05020500.xhp\" name=\"Font Position\">Qubannoo Bocquu</link>of keessatti qaba."
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ADD\">Adds the current label range to the list.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ADD\">Tarreetti moggaasa hangii ammee dabali.</ahelp>"
-#: 02120100.xhp
+#: 04080000.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3159266\n"
+"04080000.xhp\n"
+"tit\n"
"help.text"
-msgid "<image id=\"img_id3156386\" src=\"sc/res/text.png\" width=\"0.1874in\" height=\"0.1665in\"><alt id=\"alt_id3156386\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156386\" src=\"sc/res/text.png\" width=\"0.1874in\" height=\"0.1665in\"><alt id=\"alt_id3156386\">Sajoo</alt></image>"
+msgid "Function List"
+msgstr "Tarree Fankishinii"
-#: 02120100.xhp
+#: 04080000.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3155336\n"
-"25\n"
+"04080000.xhp\n"
+"bm_id3154126\n"
"help.text"
-msgid "Text Attributes"
-msgstr "Amaloota Barruu"
+msgid "<bookmark_value>formula list window</bookmark_value><bookmark_value>function list window</bookmark_value><bookmark_value>inserting functions; function list window</bookmark_value>"
+msgstr "<bookmark_value>foddaa tarree foormulaa</bookmark_value><bookmark_value>foddaa tarree fankishinii</bookmark_value><bookmark_value>fankishiiniwwan saaguun; foddaa tarree fankishinii</bookmark_value>"
-#: 02120100.xhp
-#, fuzzy
+#: 04080000.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3145792\n"
-"11\n"
+"04080000.xhp\n"
+"hd_id3154126\n"
+"1\n"
"help.text"
-msgid "File Name"
-msgstr "Maqaa Faayilii"
+msgid "<link href=\"text/scalc/01/04080000.xhp\" name=\"Function List\">Function List</link>"
+msgstr "<link href=\"text/scalc/01/04080000.xhp\" name=\"Function List\">Tarree Fankishinii</link>"
-#: 02120100.xhp
+#: 04080000.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3150206\n"
-"12\n"
+"04080000.xhp\n"
+"par_id3151118\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_FILE\">Inserts a file name placeholder in the selected area.</ahelp> Click to insert the title. Long-click to select either title, file name or path/file name from the submenu. If a title has not be assigned (see <emph>File - Properties</emph>), the file name will be inserted instead."
-msgstr "<ahelp hid=\"HID_SC_HF_FILE\">Iddooqa maqaa faayilii bakka filatametti galcha.</ahelp> Mata duree galchuuf hantuutee cuqaasi.Cita baafataa keesaa mata duree, maqaa faayilii yookiin maqaa xurree/faayilii filachuuf cuqaasa dheeraa taasisi.Yoo mata dureen hin moggaafamne ta'e (<emph>Faayilii - Amalootsa</emph> ilaali), bakka isaa maqaan faayilii ni seena."
+msgid "<variable id=\"funktionslistetext\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">This command opens the <emph>Function List</emph> window, which displays all functions that can be inserted into your document.</ahelp></variable> The <emph>Function List</emph> window is similar to the <emph>Functions</emph> tab page of the <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Function Wizard</link>. The functions are inserted with placeholders to be replaced with your own values."
+msgstr "<variable id=\"funktionslistetext\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">Ajajni kun foddaa<emph>Tarree Fankishinii</emph>fankishinoota galmee keetti saagaman huunda kan ifteessu dha.</ahelp></variable> Fodddaan <emph>Tarree Fankishinii</emph> caancaala fuulaa<emph>Fankishinii</emph> kan<link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Masakaa Function</link> waliin wal fakkaata.fankishinootni iddooqotan sagaamuun gatii keetii bakka bu'u."
-#: 02120100.xhp
+#: 04080000.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3150369\n"
+"04080000.xhp\n"
+"par_id3152576\n"
+"3\n"
"help.text"
-msgid "<image id=\"img_id3150518\" src=\"res/folderop.png\" width=\"0.1665in\" height=\"0.1252in\"><alt id=\"alt_id3150518\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150518\" src=\"res/folderop.png\" width=\"0.1665in\" height=\"0.1252in\"><alt id=\"alt_id3150518\">Sajoo</alt></image>"
+msgid "The <emph>Function List</emph> window is a resizable <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>. Use it to quickly enter functions in the spreadsheet. By double-clicking an entry in the functions list, the respective function is directly inserted with all parameters."
+msgstr "Foddaan <emph>Tarree Fankishinii</emph> hangii <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">foddaa galma'ee</link> jijjiramu danda'uu.Hatataman fankishinoota wardiiwwanitti galchuuf fayyadami.Galinsa tarree fankishinii keessa lamcuuqaasuun,fankishinii kana kallattiin jijjiramoota isaa huunda waliin sagama."
-#: 02120100.xhp
-#, fuzzy
+#: 04080000.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3154487\n"
-"26\n"
+"04080000.xhp\n"
+"hd_id3145799\n"
+"4\n"
"help.text"
-msgid "File Name"
-msgstr "Maqaa Faayilii"
+msgid "Category List"
+msgstr "Tarree Akaakuu"
-#: 02120100.xhp
+#: 04080000.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3155812\n"
+"04080000.xhp\n"
+"hd_id3153160\n"
+"5\n"
+"help.text"
+msgid "Function List"
+msgstr "Tarree Fankishinii"
+
+#: 04080000.xhp
+msgctxt ""
+"04080000.xhp\n"
+"par_id3149412\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\"SC:LISTBOX:FID_FUNCTION_BOX:LB_FUNC\">Displays the available functions.</ahelp> When you select a function, the area below the list box displays a short description. To insert the selected function double-click it or click the <emph>Insert Function into calculation sheet</emph> icon."
+msgstr "<ahelp hid=\"SC:LISTBOX:FID_FUNCTION_BOX:LB_FUNC\">Fankishinoota jiran agarsiisa.</ahelp> Yommuu fankishinii filattuu,nannoo sanduuqa tarree gaditti ergaa gabaabaa agarsiisa.fankishinii filamee saguuf,fankishinicha lamcuqaasii ykn saajoo <emph>wardii shallaggaatti fankishinii saagii</emph> cuqaasi."
+
+#: 04080000.xhp
+msgctxt ""
+"04080000.xhp\n"
+"hd_id3146971\n"
+"7\n"
+"help.text"
+msgid "Insert Function into calculation sheet"
+msgstr "Wardii shallaggaatti Fankishinii saagi"
+
+#: 04080000.xhp
+msgctxt ""
+"04080000.xhp\n"
+"par_id3150043\n"
+"help.text"
+msgid "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Icon</alt></image>"
+msgstr "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Saajoo</alt></image>"
+
+#: 04080000.xhp
+msgctxt ""
+"04080000.xhp\n"
+"par_id3147345\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"SC:IMAGEBUTTON:FID_FUNCTION_BOX:IMB_INSERT\">Inserts the selected function into the document.</ahelp>"
+msgstr "<ahelp hid=\"SC:IMAGEBUTTON:FID_FUNCTION_BOX:IMB_INSERT\">Fankishinii filamee gara galmeetti saagi.</ahelp>"
+
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Link to External Data"
+msgstr "Deetaa Alaatti Walqunnamsiisi"
+
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"par_id3153192\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Galmee deetaa saaguu barbaaddee qabatee kaa'i.</ahelp>"
+
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"hd_id3145785\n"
+"3\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\">Link to External Data</link>"
+msgstr "<link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\">Deetaa Alaatti Walqunnamsiisi</link>"
+
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"par_id3149262\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\".uno:InsertExternalDataSourc\">Inserts data from an HTML, Calc, or Excel file into the current sheet as a link. The data must be located within a named range.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertExternalDataSourc\">HTML, Calc ykn galmee eekseelii irraa deetaa saaga, ykn .</ahelp>"
+
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"hd_id3146984\n"
+"5\n"
+"help.text"
+msgid "URL of external data source."
+msgstr "URL madda deetaa alaantoo"
+
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"par_id3145366\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">URL ykn maqaa fayila deetaa saaguu barbaadde qabu galchi,sana booda <item type=\"keycode\">Enter</item>dhiibi.</ahelp>"
+
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"hd_id3145251\n"
+"7\n"
+"help.text"
+msgid "Available tables/ranges"
+msgstr "Gabateewwan/hangiiwwan jiran"
+
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"par_id3147397\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Gabatee ykn hangii deetaa saaguu barbaaddu galchi.</ahelp>"
+
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"hd_id3154492\n"
+"9\n"
+"help.text"
+msgid "Update every"
+msgstr "Tokko tokko isaa haaroomsi"
+
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"par_id3154017\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/delay\">Enter the number of seconds to wait before the external data are reloaded into the current document.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/delay\"> osoo deetaan alaa irra deebi'uun galmee ammeetti hin fedhamin lakkoofsa seekondiiwwani eeguu qabu galchi.</ahelp>"
+
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Format Cells"
+msgstr "Man'eewwaan Dhangeessi"
+
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"bm_id3148663\n"
+"help.text"
+msgid "<bookmark_value>cell attributes</bookmark_value><bookmark_value>attributes;cells</bookmark_value><bookmark_value>formatting;cells</bookmark_value><bookmark_value>cells;formatting dialog</bookmark_value>"
+msgstr "<bookmark_value>amaloota man'ee</bookmark_value><bookmark_value>amaloota;man'eewwan</bookmark_value><bookmark_value>dhangeessuu;man'eewwan</bookmark_value><bookmark_value>man'eewwan;qaaqa dhangeessuu</bookmark_value>"
+
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3148663\n"
+"1\n"
+"help.text"
+msgid "Format Cells"
+msgstr "Man'eewwaan Dhangeessi"
+
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3150448\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"zellattributetext\"><ahelp hid=\".uno:FormatCellDialog\">Allows you to specify a variety of formatting options and to apply attributes to the selected cells.</ahelp></variable>"
+msgstr "<variable id=\"zellattributetext\"><ahelp hid=\".uno:FormatCellDialog\">Dirqalaalee dhangeessuu adda addaa akka ifteessitu fi man'eewwan filamanitti amaloota akka fayyadamtuuf si heeyyama.</ahelp></variable>"
+
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3145785\n"
+"3\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Lakkoofsota</link>"
+
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3146119\n"
+"4\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Bocquu</link>"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"tit\n"
+"help.text"
+msgid "Cell Protection"
+msgstr "Hayyisa Man'ee"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"hd_id3145119\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05020600.xhp\" name=\"Cell Protection\">Cell Protection</link>"
+msgstr "<link href=\"text/scalc/01/05020600.xhp\" name=\"Cell Protection\">Hayyisa Man'ee</link>"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"par_id3150398\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/CellProtectionPage\">Defines protection options for selected cells.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/CellProtectionPage\">Man'eewwan filamaniif dirqalaalee ittisaa ramada.</ahelp>"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"hd_id3150447\n"
+"3\n"
+"help.text"
+msgid "Protection"
+msgstr "Hayyisa"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"hd_id3125864\n"
+"9\n"
+"help.text"
+msgid "Hide all"
+msgstr "Hundaa Dhoksi"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"par_id3153768\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHideAll\">Hides formulas and contents of the selected cells.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHideAll\">Formulawwan fi qabeewwan kan man'eewwan filatamanii dhoksa.</ahelp>"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"hd_id3153190\n"
+"5\n"
+"help.text"
+msgid "Protected"
+msgstr "Dhorkame"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"par_id3151119\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkProtected\">Prevents the selected cells from being modified.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkProtected\">Man'een filatamee akka hin foyyoofne dhorka.</ahelp>"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"par_id3156283\n"
+"15\n"
+"help.text"
+msgid "This cell protection only takes effect if you also protect the sheet (<emph>Tools - Protect Document - Sheet</emph>)."
+msgstr "Ittisni kun tarkanfii kan fudhatuu yoo wardii ittiste qofa(<emph>Meshaalee - Galmee Eegi - Wardii</emph>)."
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"hd_id3149377\n"
+"7\n"
+"help.text"
+msgid "Hide formula"
+msgstr "Formulaa Dhoksi"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"par_id3154510\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHideFormula\">Hides formulas in the selected cells.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHideFormula\">Fankishinii man'eewwan filatame keessaa dhoksa.</ahelp>"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"hd_id3155602\n"
+"11\n"
+"help.text"
+msgid "Print"
+msgstr "Maxxansi"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"par_id3153836\n"
+"12\n"
+"help.text"
+msgid "Defines print options for the sheet."
+msgstr "Wardiidhaf dirqalaalee maxxansi jedhu qindeessa"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"hd_id3155065\n"
"13\n"
"help.text"
-msgid "Sheet Name"
-msgstr "Maqaa Wardii"
+msgid "Hide when printing"
+msgstr "Yommuu maxxansaa dhoksi"
-#: 02120100.xhp
+#: 05020600.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3148842\n"
+"05020600.xhp\n"
+"par_id3155443\n"
"14\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_TABLE\">Inserts a placeholder in the selected header/footer area, which is replaced by the sheet name in the header/footer of the actual document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_HF_TABLE\">Iddooqa maqaa wardii irraantoo/jalaantoo galmee sirrii keessa jiruun bakka bu'e irraantoo/jalaantoo filatame keessa galcha.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHidePrinting\">Keeps the selected cells from being printed.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHidePrinting\">Man'eewwan filataman akka hin maxxansamne dhorka.</ahelp>"
-#: 02120100.xhp
+#: 05030000.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3146870\n"
+"05030000.xhp\n"
+"tit\n"
"help.text"
-msgid "<image id=\"img_id3148870\" src=\"sc/res/table.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148870\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148870\" src=\"sc/res/table.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148870\">Sajoo</alt></image>"
+msgid "Row"
+msgstr "Tarree"
-#: 02120100.xhp
+#: 05030000.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3147071\n"
-"27\n"
+"05030000.xhp\n"
+"hd_id3147228\n"
+"1\n"
"help.text"
-msgid "Sheet Name"
-msgstr "Maqaa Wardii"
+msgid "<link href=\"text/scalc/01/05030000.xhp\" name=\"Row\">Row</link>"
+msgstr "<link href=\"text/scalc/01/05030000.xhp\" name=\"Row\">Tarree</link>"
-#: 02120100.xhp
+#: 05030000.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3144768\n"
-"15\n"
+"05030000.xhp\n"
+"par_id3154685\n"
+"2\n"
"help.text"
-msgid "Page"
-msgstr "Fuula"
+msgid "<ahelp hid=\".\">Sets the row height and hides or shows selected rows.</ahelp>"
+msgstr "<ahelp hid=\".\">Dheerina tarree qindeessa akkasumas tarrewwan filtaman dhoksa ykn agarsiisa.</ahelp>"
-#: 02120100.xhp
+#: 05030000.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3154960\n"
-"16\n"
+"05030000.xhp\n"
+"hd_id3155132\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_PAGE\">Inserts a placeholder in the selected header/footer area, which is replaced by page numbering. This allows continuous page numbering in a document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_HF_PAGE\">Iddooqa lakkaawwii fuulaan bakka bu'e naannoo irraantoo/jalaantoo filatame keessa galcha.</ahelp>"
+msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Height\">Height</link>"
+msgstr "<link href=\"text/shared/01/05340100.xhp\" name=\"Height\">Dheerina</link>"
-#: 02120100.xhp
+#: 05030000.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3151304\n"
+"05030000.xhp\n"
+"hd_id3155854\n"
+"4\n"
"help.text"
-msgid "<image id=\"img_id3155386\" src=\"sc/res/page.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155386\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155386\" src=\"sc/res/page.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155386\">sajoo</alt></image>"
+msgid "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal Height\">Optimal Height</link>"
+msgstr "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal Height\">Dheerina gutoolaa</link>"
-#: 02120100.xhp
+#: 05030200.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3150048\n"
-"28\n"
+"05030200.xhp\n"
+"tit\n"
"help.text"
-msgid "Page"
-msgstr "Fuula"
+msgid "Optimal Row Heights"
+msgstr "Dheerinawwan tarree guutolaa"
-#: 02120100.xhp
+#: 05030200.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3146962\n"
-"17\n"
+"05030200.xhp\n"
+"bm_id3148491\n"
"help.text"
-msgid "Pages"
-msgstr "Fuulota"
+msgid "<bookmark_value>sheets; optimal row heights</bookmark_value><bookmark_value>rows; optimal heights</bookmark_value><bookmark_value>optimal row heights</bookmark_value>"
+msgstr "<bookmark_value>wardiiwwan; Dheerinawwan tarree guutolaa</bookmark_value><bookmark_value>tarreewwan; dheerinawwan guutolaa</bookmark_value><bookmark_value>optimal row heights</bookmark_value>"
-#: 02120100.xhp
+#: 05030200.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3153812\n"
-"18\n"
+"05030200.xhp\n"
+"hd_id3148491\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_PAGES\">Inserts a placeholder in the selected header/footer area, which is replaced by the total number of pages in the document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_HF_PAGES\">Iddooqa lakkoofsa fuulotaa galmee keessa jiran hundaan bakka bu'e naannoo irraantoo/jalaantoo filatame keessa galcha.</ahelp>"
+msgid "Optimal Row Heights"
+msgstr "Dheerinawwan tarree guutolaa"
-#: 02120100.xhp
+#: 05030200.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3149315\n"
+"05030200.xhp\n"
+"par_id3154758\n"
+"2\n"
"help.text"
-msgid "<image id=\"img_id3155757\" src=\"sc/res/pages.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155757\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155757\" src=\"sc/res/pages.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155757\">Sajoo</alt></image>"
+msgid "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalRowHeight\">Determines the optimal row height for the selected rows.</ahelp></variable> The optimal row height depends on the font size of the largest character in the row. You can use various <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"units of measure\">units of measure</link>."
+msgstr "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalRowHeight\">Tarreewwan filtamaniif dheerina tarree guutolaa murteessa.</ahelp></variable> Dheerinni guutolaa tarree hammamtaa bocquu kan arfii dheeraa tarree keessaa irratti hundaa'a. <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"units of measure\">safrtuu madaalaa</link>."
-#: 02120100.xhp
+#: 05030200.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3147499\n"
-"29\n"
+"05030200.xhp\n"
+"hd_id3154908\n"
+"3\n"
"help.text"
-msgid "Pages"
-msgstr "Fuulota"
+msgid "Add"
+msgstr "Ida'i"
-#: 02120100.xhp
+#: 05030200.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3149050\n"
-"19\n"
+"05030200.xhp\n"
+"par_id3151044\n"
+"4\n"
"help.text"
-msgid "Date"
-msgstr "Guyyaa"
+msgid "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_ROW_OPT:ED_VALUE\">Sets additional spacing between the largest character in a row and the cell boundaries.</ahelp>"
+msgstr "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_ROW_OPT:ED_VALUE\">Bakka dabalataa gidduu arfii dheraa tarree keessaa fi dangaawwan man'ee jiru qindeessa.</ahelp>"
-#: 02120100.xhp
+#: 05030200.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3153960\n"
-"20\n"
+"05030200.xhp\n"
+"hd_id3150439\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_DATE\">Inserts a placeholder in the selected header/footer area, which is replaced by the current date which will be repeated in the header/footer on each page of the document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_HF_DATE\">Iddooqa guyyaa ammee irraantoo/jalaantoo tokko tokkoo fuula galmee irra jiru keessatti irra deebi'amu,naannoo irraantoo/jalaantoo filatame keessa galcha.</ahelp>"
+msgid "Default value"
+msgstr "Gatii Durtii"
-#: 02120100.xhp
+#: 05030200.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3147299\n"
+"05030200.xhp\n"
+"par_id3146984\n"
+"6\n"
"help.text"
-msgid "<image id=\"img_id3150394\" src=\"sc/res/date.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150394\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150394\" src=\"sc/res/date.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150394\">Sajoo</alt></image>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ROW_OPT:BTN_DEFVAL\">Restores the default value for the optimal row height.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ROW_OPT:BTN_DEFVAL\">Dheerina guutola tarreetif gatii durtii haaromsa.</ahelp>"
-#: 02120100.xhp
+#: 05030300.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3150540\n"
-"30\n"
+"05030300.xhp\n"
+"tit\n"
"help.text"
-msgid "Date"
-msgstr "Guyyaa"
+msgid "Hide"
+msgstr "Dhoksi"
-#: 02120100.xhp
+#: 05030300.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3147610\n"
-"21\n"
+"05030300.xhp\n"
+"bm_id3147265\n"
"help.text"
-msgid "Time"
-msgstr "Yeroo"
+msgid "<bookmark_value>spreadsheets; hiding functions</bookmark_value><bookmark_value>hiding; rows</bookmark_value><bookmark_value>hiding; columns</bookmark_value><bookmark_value>hiding; sheets</bookmark_value><bookmark_value>sheets;hiding</bookmark_value><bookmark_value>columns;hiding</bookmark_value><bookmark_value>rows;hiding</bookmark_value>"
+msgstr "<bookmark_value>wardii; fankishinoota dhoksuu</bookmark_value><bookmark_value>dhoksuu; tarreewwan</bookmark_value><bookmark_value>dhoksuu; tarjaawwan</bookmark_value><bookmark_value>dhoksuu; wardiiwwan</bookmark_value><bookmark_value>wardiiwwan;Dhoksuu</bookmark_value><bookmark_value>tarjaawwan;dhoksuu</bookmark_value><bookmark_value>tarreewwan;dhoksuu</bookmark_value>"
-#: 02120100.xhp
+#: 05030300.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3145638\n"
-"22\n"
+"05030300.xhp\n"
+"hd_id3147265\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_TIME\">Inserts a placeholder in the selected header/footer area, which is replaced by the current time in the header/footer on each page of the document.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_HF_TIME\">Iddooqa yeroo ammee irraantoo/jalaantoo tokko tokkoo fuula galmee irra jiru keessatti bakka bu'e,naannoo irraantoo/jalaantoo filkatame keessa galcha.</ahelp>"
+msgid "<link href=\"text/scalc/01/05030300.xhp\" name=\"Hide\">Hide</link>"
+msgstr "<link href=\"text/scalc/01/05030300.xhp\" name=\"Hide\">Dhoksi</link>"
-#: 02120100.xhp
+#: 05030300.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3153122\n"
+"05030300.xhp\n"
+"par_id3156281\n"
+"2\n"
"help.text"
-msgid "<image id=\"img_id3146884\" src=\"sc/res/time.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146884\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146884\" src=\"sc/res/time.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146884\">Sajoo</alt></image>"
+msgid "<ahelp hid=\".uno:Hide\">Hides selected rows, columns or individual sheets.</ahelp>"
+msgstr "<ahelp hid=\".uno:Hide\">Tarreewwan, tarjaawwan ykn wardiiwwan dhunfaa dhoksa.</ahelp>"
-#: 02120100.xhp
+#: 05030300.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3157904\n"
-"31\n"
+"05030300.xhp\n"
+"par_id3148645\n"
+"3\n"
"help.text"
-msgid "Time"
-msgstr "Yeroo"
+msgid "Select the rows or columns that you want to hide, and then choose <emph>Format - Row - Hide </emph>or<emph> Format - Column - Hide</emph>."
+msgstr "Tarreewwan ykn tarjaawwan dhoksuu barbaaddu fili, itti aansuun <emph>Dhangii - Tarree - Dhoksi </emph>ykn<emph> Dhangii - Tarjaa - Dhoksi</emph> fili."
-#: 04050100.xhp
+#: 05030300.xhp
msgctxt ""
-"04050100.xhp\n"
+"05030300.xhp\n"
+"par_id3147427\n"
+"6\n"
+"help.text"
+msgid "You can hide a sheet by selecting the sheet tab and then choosing <emph>Format - Sheet - Hide</emph>. Hidden sheets are not printed unless they occur within a <link href=\"text/scalc/01/05080000.xhp\" name=\"print range\">print range</link>."
+msgstr "Wardii caancala wardii irraa filuun dhoksuu dandeessa itti aansuun <emph>Dhangii - Wardii - Dhoksi</emph> filuu dha. Wardiiwwan dhoksaman yoo <link href=\"text/scalc/01/05080000.xhp\" name=\"print range\">hangii maxxansi</link> keessatti argaman malee hin maxxanfaman."
+
+#: 05030300.xhp
+msgctxt ""
+"05030300.xhp\n"
+"par_id3153157\n"
+"5\n"
+"help.text"
+msgid "A break in the row or column header indicates whether the row or column is hidden."
+msgstr "Qurxiinsi irraantoo tarree ykn tarjaa akka tarreen ykn tarjaan dhoksamuu isaa agarsiisa."
+
+#: 05030300.xhp
+msgctxt ""
+"05030300.xhp\n"
+"par_id3145251\n"
+"4\n"
+"help.text"
+msgid "To display hidden rows, columns or sheets"
+msgstr "tarreewwan, tarjaawwan ykn wardiiwwan agarsiisuf"
+
+#: 05030300.xhp
+msgctxt ""
+"05030300.xhp\n"
+"par_id8337046\n"
+"help.text"
+msgid "Select the range that includes the hidden objects. You can also use the box in the corner above row 1 and beside column A. For sheets, this step is not necessary."
+msgstr "hangi wantoota dhokataa dhunfatan fili. Sanduuqa golee gubbaa tarree 1 fi maddii tarjaa A fayyadamuu dandeessa. kunii wardiiwwaniif adeemsaa barbaachisa miti."
+
+#: 05030300.xhp
+msgctxt ""
+"05030300.xhp\n"
+"par_id5532090\n"
+"help.text"
+msgid "Choose <link href=\"text/scalc/01/05030400.xhp\" name=\"Format - Row/Column - Show\">Format - Row/Column - Show</link> or <link href=\"text/scalc/01/05050300.xhp\" name=\"Format - Sheet - Show\">Format - Sheet - Show</link>."
+msgstr "<link href=\"text/scalc/01/05030400.xhp\" name=\"Format - Row/Column - Show\">Dhangii - Tarree/Tarjaa - mul'isi</link> ykn <link href=\"text/scalc/01/05050300.xhp\" name=\"Format - Sheet - Show\">Dhangii- Wardii - Mul'isii</link>."
+
+#: 05030400.xhp
+msgctxt ""
+"05030400.xhp\n"
"tit\n"
"help.text"
-msgid "Sheet from file"
-msgstr "Faayilii irraa wardii"
+msgid "Show"
+msgstr "Mul'isi"
-#: 04050100.xhp
+#: 05030400.xhp
msgctxt ""
-"04050100.xhp\n"
-"par_idN105C1\n"
+"05030400.xhp\n"
+"bm_id3147264\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04050100.xhp\">Sheet from file</link>"
-msgstr "<link href=\"text/scalc/01/04050100.xhp\">Faayilii irraa wardii</link>"
+msgid "<bookmark_value>spreadsheets; showing columns</bookmark_value><bookmark_value>showing; columns</bookmark_value><bookmark_value>showing; rows</bookmark_value>"
+msgstr "<bookmark_value>wardiiwwan;tarjaawwan mul'isuu</bookmark_value><bookmark_value>mul'isuu; tarjaawwan</bookmark_value><bookmark_value>mul'isuu; tarreewwan</bookmark_value>"
-#: 04050100.xhp
+#: 05030400.xhp
msgctxt ""
-"04050100.xhp\n"
-"par_idN105D1\n"
+"05030400.xhp\n"
+"hd_id3147264\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"26275\">Inserts a sheet from a different spreadsheet file.</ahelp>"
-msgstr "<ahelp hid=\"26275\">Faayilii wardii garaagaraa irraa wardii saaga.</ahelp>"
+msgid "<link href=\"text/scalc/01/05030400.xhp\" name=\"Show\">Show</link>"
+msgstr "<link href=\"text/scalc/01/05030400.xhp\" name=\"Show\">mul'isa</link>"
-#: 04050100.xhp
+#: 05030400.xhp
msgctxt ""
-"04050100.xhp\n"
-"par_idN105F7\n"
+"05030400.xhp\n"
+"par_id3150447\n"
+"2\n"
"help.text"
-msgid "Use the <link href=\"text/shared/01/01020000.xhp\">File - Open</link> dialog to locate the spreadsheet."
-msgstr "Wardii qubachiisuuf qaaqa <link href=\"text/shared/01/01020000.xhp\">Faayilii - Bani</link> fayyadami."
+msgid "<ahelp hid=\".uno:ShowColumn\">Choose this command to show previously hidden rows or columns.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowColumn\">Tarreewwan ykn tarjaawwan duraan dhokatan mul'isuuf ajaja fili .</ahelp>"
-#: 04050100.xhp
+#: 05030400.xhp
msgctxt ""
-"04050100.xhp\n"
-"par_idN10609\n"
+"05030400.xhp\n"
+"par_id3155131\n"
+"3\n"
"help.text"
-msgid "In the <link href=\"text/scalc/01/04050000.xhp\">Insert Sheet</link> dialog, select the sheet that you want to insert."
-msgstr "Wardii saaguu barbaaddu qaaqa <link href=\"text/scalc/01/04050000.xhp\">Wardii Saagi</link> keessaa filadhu."
+msgid "To show a column or row, select the range of rows or columns containing the hidden elements, then choose <emph>Format - Row - Show</emph> or <emph>Format - Column - Show</emph>."
+msgstr "tarja ykn tarree mul'isuuf, hangii tarreewwan ykn tarjaawwan miseensota dhokata qabatanii fili, itti aansuun <emph>Dhangii - Tarree - Mul'isi</emph> ykn <emph>Dhangii - tarjaa - mul'isa</emph>."
-#: 12040201.xhp
+#: 05030400.xhp
msgctxt ""
-"12040201.xhp\n"
+"05030400.xhp\n"
+"par_id3145748\n"
+"4\n"
+"help.text"
+msgid "To show all hidden cells, first click in the field in the upper left corner. This selects all cells of the table."
+msgstr "Man'eewwan dhokataa hunda mul'isuf, jalqaba gubbaa bitaa golee cuqaasi. kuni man'eewwan gabatee hundaa fila."
+
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
"tit\n"
"help.text"
-msgid "More"
-msgstr "Dabala"
+msgid "Column"
+msgstr "Tarjaa"
-#: 12040201.xhp
+#: 05040000.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3148492\n"
+"05040000.xhp\n"
+"hd_id3155628\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
-msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">Dabala</link>"
+msgid "<link href=\"text/scalc/01/05040000.xhp\" name=\"Column\">Column</link>"
+msgstr "<link href=\"text/scalc/01/05040000.xhp\" name=\"Column\">Tarjaa</link>"
-#: 12040201.xhp
+#: 05040000.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3159400\n"
+"05040000.xhp\n"
+"par_id3148946\n"
"2\n"
"help.text"
-msgid "<variable id=\"zusaetzetext\"><ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_SPEC_FILTER:BTN_MORE\">Shows additional filter options.</ahelp></variable>"
-msgstr "<variable id=\"zusaetzetext\"><ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_SPEC_FILTER:BTN_MORE\">Filannoowwan gingilchaa dabalataa agarsiisa.</ahelp></variable>"
+msgid "<ahelp hid=\".\">Sets the column width and hides or shows selected columns.</ahelp>"
+msgstr "<ahelp hid=\".\">Dagaleen tarjaa fi dhokataan ykn tarjaa filame kan mul'suu qindeesa.</ahelp>"
-#: 12040201.xhp
+#: 05040000.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3150791\n"
+"05040000.xhp\n"
+"hd_id3150398\n"
"3\n"
"help.text"
-msgid "Options"
-msgstr "Dirqalaalee"
+msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Width\">Width</link>"
+msgstr "<link href=\"text/shared/01/05340200.xhp\" name=\"Width\">Dagalee</link>"
-#: 12040201.xhp
+#: 05040000.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3154138\n"
+"05040000.xhp\n"
+"hd_id3145171\n"
+"4\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal Width\">Optimal Width</link>"
+msgstr "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal Width\">Dagalee murta'aa</link>"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Optimal Column Width"
+msgstr "Dagalee tarjaa guutolaa"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"bm_id3155628\n"
+"help.text"
+msgid "<bookmark_value>spreadsheets; optimal column widths</bookmark_value><bookmark_value>columns; optimal widths</bookmark_value><bookmark_value>optimal column widths</bookmark_value>"
+msgstr "<bookmark_value>wardiiwwan; dagaleewwan tarja guutolaa</bookmark_value><bookmark_value>tarjaawwan; dagaleewwan guutolaa</bookmark_value><bookmark_value>tarja dagaleewwan guutolaa</bookmark_value>"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"hd_id3155628\n"
+"1\n"
+"help.text"
+msgid "Optimal Column Width"
+msgstr "Dagalee tarjaa guutolaa"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"par_id3145068\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalColumnWidthDi\">Defines the optimal column width for selected columns.</ahelp></variable> The optimal column width depends on the longest entry within a column. You can choose from the available <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"measurement units\">measurement units</link>."
+msgstr "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalColumnWidthDi\">Tarjaa filameef dagalee guutolaa tarjaa hikaa.</ahelp></variable> Tarjaan dagalee guutolaa galmaa dheeraa tarjaa keessaa irrati hunda'aa. safartuuwwan madallii<link href=\"text/shared/00/00000003.xhp#metrik\" name=\"measurement units\">jiran keessaa filuu dandeessaa</link>."
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"hd_id3150767\n"
+"3\n"
+"help.text"
+msgid "Add"
+msgstr "Ida'i"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"par_id3150449\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_COL_OPT:ED_VALUE\">Defines additional spacing between the longest entry in a column and the vertical column borders.</ahelp>"
+msgstr "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_COL_OPT:ED_VALUE\">adda fageenya dabalata galumsaa eeraa tarjaa keessaa fi tarjaa handaarawwan sarjaa giduu jiruu ramada.</ahelp>"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"hd_id3145785\n"
"5\n"
"help.text"
-msgid "Case sensitive"
-msgstr "Qub-suukanaawaa"
+msgid "Default value"
+msgstr "Gatii Durtii"
-#: 12040201.xhp
+#: 05040200.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3147228\n"
+"05040200.xhp\n"
+"par_id3146120\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_CASE\">Distinguishes between uppercase and lowercase letters when filtering the data.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_CASE\">Yommu deetaan gingilchamu qubee xixiqqaa fii qubee gguddaa addabaasa.</ahelp>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_COL_OPT:BTN_DEFVAL\">Defines the optimal column width in order to display the entire contents of the column.</ahelp> The additional spacing for the optimal column width is preset to 0.1 in."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_COL_OPT:BTN_DEFVAL\">gutummaa qabeentoota tarjaa agarsiisuuf bal'ina gootala tarjaa hiika.</ahelp> Bal'inni tarjaa gootala adda fageenya dabalata 0.1 waliin duraqinda'aa."
-#: 12040201.xhp
+#: 05050000.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3154908\n"
-"7\n"
+"05050000.xhp\n"
+"tit\n"
"help.text"
-msgid "Range contains column labels"
-msgstr "Hammangaan moggaasa tarjaa qaba"
+msgid "Sheet"
+msgstr "Uumi"
-#: 12040201.xhp
+#: 05050000.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3153768\n"
-"8\n"
+"05050000.xhp\n"
+"bm_id1245460\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_HEADER\">Includes the column labels in the first row of a cell range.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_HEADER\">moggaasa tarjaa hammangaa man'ee tarree tkkoffaa dabalata.</ahelp>"
+msgid "<bookmark_value>CTL;right-to-left sheets</bookmark_value><bookmark_value>sheets;right-to-left</bookmark_value><bookmark_value>right-to-left text;spreadsheets</bookmark_value>"
+msgstr "<bookmark_value>CTL;wardiiwwan mirgaa-gara-bitaatti</bookmark_value><bookmark_value>wardiiwwan;mirgaa-gara-bitaatti</bookmark_value><bookmark_value>barruu mirgaa-gara-bitaatti;wardiiwwan</bookmark_value>"
-#: 12040201.xhp
+#: 05050000.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3155306\n"
-"9\n"
+"05050000.xhp\n"
+"hd_id3155923\n"
+"1\n"
"help.text"
-msgid "Copy results to"
-msgstr "Firiiwwan garagalchi gara"
+msgid "<link href=\"text/scalc/01/05050000.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr "<link href=\"text/scalc/01/05050000.xhp\" name=\"Sheet\">Wardii</link>"
-#: 12040201.xhp
+#: 05050000.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3154319\n"
-"10\n"
+"05050000.xhp\n"
+"par_id3154758\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_COPY_AREA\">Select the check box, and then select the cell range where you want to display the filter results.</ahelp> You can also select a named range from the list."
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_COPY_AREA\">sanduuqa filannoo fili,itti aansuun hammangaa man'ee iddoo firiiwwan gingilchaa itti agarsiistu fili.</ahelp> Akkasumas hammangawwan moggafaman tarree keesaa filuu ni dandeessa."
+msgid "<ahelp hid=\".\">Sets the sheet name and hides or shows selected sheets.</ahelp>"
+msgstr "<ahelp hid=\".\">Maqaa wardii qindeessun fi wardiiwwan filaman dhoksa ykn mul'isa.</ahelp>"
-#: 12040201.xhp
+#: 05050000.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3145272\n"
-"11\n"
+"05050000.xhp\n"
+"hd_id3156280\n"
+"3\n"
"help.text"
-msgid "Regular expression"
-msgstr "Himannoo idilee"
+msgid "<link href=\"text/scalc/01/05050100.xhp\" name=\"Rename\">Rename</link>"
+msgstr "<link href=\"text/scalc/01/05050100.xhp\" name=\"Rename\">Maqaa jijjiiri</link>"
-#: 12040201.xhp
+#: 05050000.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3152576\n"
-"12\n"
+"05050000.xhp\n"
+"hd_id3145787\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_REGEXP\">Allows you to use wildcards in the filter definition.</ahelp> For a list of the regular expressions that $[officename] supports, click <link href=\"text/shared/01/02100001.xhp\" name=\"here\">here</link>."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_REGEXP\">Hiika gingilchaa kessatti akka turbaawwan abbaalaa fayyadamtu eeyyama.</ahelp> Tarree himannoowwan idilee $[officename]n gargaaru argachuuf, <link href=\"text/shared/01/02100001.xhp\" name=\"here\">here</link> cuqaasi."
+msgid "<link href=\"text/scalc/01/05050300.xhp\" name=\"Show\">Show</link>"
+msgstr "<link href=\"text/scalc/01/05050300.xhp\" name=\"Show\">Agarsiisi</link>"
-#: 12040201.xhp
+#: 05050000.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3149377\n"
-"33\n"
+"05050000.xhp\n"
+"par_id3150542\n"
+"5\n"
"help.text"
-msgid "If the <emph>Regular Expressions</emph> check box is selected, you can use regular expressions in the Value field if the Condition list box is set to '=' EQUAL or '<>' UNEQUAL. This also applies to the respective cells that you reference for an advanced filter."
-msgstr "Yoo sanduuqni <emph>Himannoowwan Idilee</emph>filatame, yoo sanduuqni tarree '=' EQUAL ykn '<>' UNEQUAL tin qindaa'e himannoowwan idilee fayyadamuu danddeessa."
+msgid "If a sheet has been hidden, the Show Sheet dialog opens, which allows you to select a sheet to be shown again."
+msgstr "Yoo wardiin dhooksamee ta'e,qaaqa wardii agarsiisaa bana, barruu lama agarsiifamuu akka filattuuf si eeyyama."
-#: 12040201.xhp
+#: 05050000.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3149958\n"
-"34\n"
+"05050000.xhp\n"
+"par_idN10656\n"
"help.text"
-msgid "No duplication"
-msgstr "Bayyisuun hinjiru"
+msgid "Right-To-Left"
+msgstr "Mirgaa-Gara-Bitaatti"
-#: 12040201.xhp
+#: 05050000.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3153876\n"
-"35\n"
+"05050000.xhp\n"
+"par_idN1065A\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_UNIQUE\">Excludes duplicate rows in the list of filtered data.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_UNIQUE\">Deetaa gingilchame keessaa bayyisuu tarreewwan tokkoffaa hin dabalatu.</ahelp>"
+msgid "<ahelp hid=\".uno:SheetRightToLeft\">Changes the orientation of the current sheet to Right-To-Left if <link href=\"text/shared/optionen/01150300.xhp\">CTL</link> support is enabled.</ahelp>"
+msgstr "<ahelp hid=\".uno:SheetRightToLeft\">yoo gargaarsi<link href=\"text/shared/optionen/01150300.xhp\">CTL</link> hojii eegale, duuraa duubni wardii ammee gara Mirgaa-Gara-Bitaatti jijjiira.</ahelp>"
-#: 12040201.xhp
+#: 05050100.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3154018\n"
-"40\n"
+"05050100.xhp\n"
+"tit\n"
"help.text"
-msgid "Keep filter criteria"
-msgstr "Ulaagaalee gingilchaa kaa'i"
+msgid "Rename Sheet"
+msgstr "Maqaa Waardii Jijjiiri"
-#: 12040201.xhp
+#: 05050100.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3149123\n"
-"41\n"
+"05050100.xhp\n"
+"bm_id3147336\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FILTER:BTN_DEST_PERS\">Select the <emph>Copy results to</emph> check box, and then specify the destination range where you want to display the filtered data. If this box is checked, the destination range remains linked to the source range. You must have defined the source range under <emph>Data - Define range</emph> as a database range.</ahelp> Following this, you can reapply the defined filter at any time as follows: click into the source range, then choose <emph>Data - Refresh Range</emph>."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FILTER:BTN_DEST_PERS\">Sanduuqa filannootti <emph>firiwwan gargalchi</emph> fili,itti aansuun hammangaa ga'umsaa bakka deetaa gingilchame itti agarsiisuu barbaaddee ifteessi.Yoo sanduuqni kun mirkaneeffame,hammangaan ga'umsaa hammangaa maddaatti kornyatee tura.Hammangaa maddaa <emph>Deetaa - Hangii hiikaa</emph> jalaa jiran akka hammangaa kuusaa deetaatti qindeessuu qabda.</ahelp> Kanatti fufuun,yeroo kamiyyuu gingilchaa qindaa'e akka armaan gaditti dabaldhiyeeffachuu dandeessa: hammangaa maddaa cuqaasi,irraan <emph>Deetaa - Hangii Haaromsi</emph> fili."
+msgid "<bookmark_value>worksheet names</bookmark_value><bookmark_value>changing; sheet names</bookmark_value><bookmark_value>sheets; renaming</bookmark_value>"
+msgstr "<bookmark_value>maqaa wardii hojii</bookmark_value><bookmark_value>jijjiiruun; maqoota wardii</bookmark_value><bookmark_value>wardiiwwan; maqaa jijjiiruu</bookmark_value>"
-#: 12040201.xhp
+#: 05050100.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3149018\n"
-"36\n"
+"05050100.xhp\n"
+"hd_id3147336\n"
+"1\n"
"help.text"
-msgid "Data range"
-msgstr "Hammanga Deetaa"
+msgid "Rename Sheet"
+msgstr "Maqaa Waardii Jijjiiri"
-#: 12040201.xhp
+#: 05050100.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3150042\n"
-"37\n"
+"05050100.xhp\n"
+"par_id3150792\n"
+"2\n"
"help.text"
-msgid "Displays the cell range or the name of the cell range that you want to filter."
-msgstr "Hammangaa man'ee ykn maqaa hammangaa man'ee gingilchuu barbaaddee agarsiisa."
+msgid "<variable id=\"umbenennentext\"><ahelp hid=\".uno:RenameTable\">This command opens a dialog where you can assign a different name to the current sheet.</ahelp></variable>"
+msgstr "<variable id=\"umbenennentext\"><ahelp hid=\".uno:RenameTable\">Ajajni kun qaaqa itti wardii ammeef maqaa adda addaa itti ramadamu bana.</ahelp></variable>"
-#: 04060181.xhp
+#: 05050100.xhp
msgctxt ""
-"04060181.xhp\n"
+"05050100.xhp\n"
+"hd_id3153968\n"
+"3\n"
+"help.text"
+msgid "Name"
+msgstr "Maqaa"
+
+#: 05050100.xhp
+msgctxt ""
+"05050100.xhp\n"
+"par_id3155131\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_APPEND_NAME\">Enter a new name for the sheet here.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_APPEND_NAME\">Bakka kanatti maqaa wardii haaraa galchi.</ahelp>"
+
+#: 05050100.xhp
+msgctxt ""
+"05050100.xhp\n"
+"par_id3153092\n"
+"5\n"
+"help.text"
+msgid "You can also open the<emph> Rename Sheet </emph>dialog through the context menu by positioning the mouse pointer over a sheet tab at the bottom of the window and <switchinline select=\"sys\"><caseinline select=\"MAC\">clicking while pressing Control</caseinline><defaultinline>clicking the right mouse button</defaultinline></switchinline>."
+msgstr "Akeektuu hantuutee caancala wardii kan foddaa garaa gaditi argmu karaa barruu halqara keessaan irra ka'uun Qaaqa <emph>Maqaa Wardii Jijjiiri</emph> banuu dandeessa, yommuu too'anna<switchinline select=\"sys\"><caseinline select=\"MAC\">to'annaa dhiibaa cuqaasuu</caseinline><defaultinline>qabdoo hantuutee mirgaa cuqaasuu</defaultinline></switchinline> cuuqaasi."
+
+#: 05050100.xhp
+msgctxt ""
+"05050100.xhp\n"
+"par_id3147396\n"
+"6\n"
+"help.text"
+msgid "Alternatively, click the sheet tab while pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Alt</defaultinline></switchinline> key. Now you can change the name directly. <switchinline select=\"sys\"><caseinline select=\"UNIX\"><embedvar href=\"text/shared/00/00000099.xhp#winmanager\"/></caseinline></switchinline>"
+msgstr "Karaa biraan, yommuu furtuu <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Alt</defaultinline></switchinline> dhiibdu, caancalaa wardii cuqaasi. Ammaa maqaa kallatidhaan jijjiruu dandeessa. <switchinline select=\"sys\"><caseinline select=\"UNIX\"><embedvar href=\"text/shared/00/00000099.xhp#winmanager\"/></caseinline></switchinline>"
+
+#: 05050300.xhp
+msgctxt ""
+"05050300.xhp\n"
"tit\n"
"help.text"
-msgid "Statistical Functions Part One"
-msgstr "Fankishinoota Istaatistiksii Kutaa Tokko"
+msgid "Show Sheet"
+msgstr "Wardii Agarsiisi"
-#: 04060181.xhp
+#: 05050300.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3146320\n"
+"05050300.xhp\n"
+"bm_id3148946\n"
+"help.text"
+msgid "<bookmark_value>sheets; displaying</bookmark_value><bookmark_value>displaying; sheets</bookmark_value>"
+msgstr "<bookmark_value>barruuwwan; agarsiisun</bookmark_value><bookmark_value>agarsiisuun; barruuwwan</bookmark_value>"
+
+#: 05050300.xhp
+msgctxt ""
+"05050300.xhp\n"
+"hd_id3148946\n"
"1\n"
"help.text"
-msgid "<variable id=\"ae\"><link href=\"text/scalc/01/04060181.xhp\">Statistical Functions Part One</link></variable>"
-msgstr "<variable id=\"ae\"><link href=\"text/scalc/01/04060181.xhp\">Fankishinoota Xiinannoo Kutaa Tokko</link></variable>"
+msgid "Show Sheet"
+msgstr "Wardii Agarsiisi"
-#: 04060181.xhp
+#: 05050300.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3145632\n"
+"05050300.xhp\n"
+"par_id3148799\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>INTERCEPT function</bookmark_value> <bookmark_value>points of intersection</bookmark_value> <bookmark_value>intersections</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii INTERCEPT</bookmark_value> <bookmark_value>xuqaa walkiphawwanii</bookmark_value> <bookmark_value>walkiphawwan</bookmark_value>"
+msgid "<variable id=\"tabeintext\"><ahelp visibility=\"visible\" hid=\".uno:Show\">Displays sheets that were previously hidden with the <emph>Hide</emph> command.</ahelp></variable> Select one sheet only to call the command. The current sheet is always selected. If a sheet other than the current sheet is selected, you can deselect it by pressing <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> while clicking the corresponding sheet tab at the bottom of the window."
+msgstr "<variable id=\"tabeintext\"><ahelp visibility=\"visible\" hid=\".uno:Show\">Barruuwwan duraa ajaja <emph>Dhoksi</emph> dhokatan agarsiisa.</ahelp></variable> Ajaja waamuuf wardii tokko qofa fili.Wardii ammee yeroo hundaa filama.yoo wardii ammeen ala filattee ta'ee,yommuu caancala wardii foddaa gadiitti argamu cuqaastu, <switchinline select=\"sys\"> <caseinline select=\"MAC\">Ajaja</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> dhiibuun filachuu gadhisisuu dandeessa."
-#: 04060181.xhp
+#: 05050300.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3145632\n"
+"05050300.xhp\n"
+"hd_id3151112\n"
+"3\n"
+"help.text"
+msgid "Hidden sheets"
+msgstr "Wardiiwwan dhoktan"
+
+#: 05050300.xhp
+msgctxt ""
+"05050300.xhp\n"
+"par_id3145273\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_SHOW_TAB:LB_ENTRYLIST\" visibility=\"visible\">Displays a list of all hidden sheets in your spreadsheet document.</ahelp> To show a certain sheet, click the corresponding entry on the list and confirm with OK."
+msgstr "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_SHOW_TAB:LB_ENTRYLIST\" visibility=\"visible\">Galmee wardii kee keessatti tarree wardiiwwan dhokatan hundaa agarsiisa.</ahelp> Barruu ta'ee agarsiisuuf,tarree irra galuumsa armaan gadii cuqaasun fi OK dhaan dhugoomsi."
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Merge and Center Cells"
+msgstr ""
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"hd_id3149785\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05060000.xhp\" name=\"Merge and Center Cells\">Merge and Center Cells</link>"
+msgstr ""
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id3151246\n"
"2\n"
"help.text"
-msgid "INTERCEPT"
-msgstr "INTERCEPT"
+msgid "<ahelp hid=\".\">Combines the selected cells into a single cell or splits merged cells. Aligns cell content centered.</ahelp>"
+msgstr ""
-#: 04060181.xhp
+#: 05060000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3146887\n"
+"05060000.xhp\n"
+"par_id3154020\n"
+"18\n"
+"help.text"
+msgid "Choose <emph>Format - Merge Cells - Merge and Center Cells</emph>"
+msgstr ""
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id3148552\n"
+"4\n"
+"help.text"
+msgid "The merged cell receives the name of the first cell of the original cell range. Merged cells cannot be merged a second time with other cells. The range must form a rectangle, multiple selection is not supported."
+msgstr "Man'een makamee maqaa jalqaba man'ee kan hangii man'ee xabboo fudha.Man'eewwan makaman man'eewwan gara biraa waliin lammata hin makaman.Hangiin dirqiin reektaangilii keessaa ta'uu qaba,filannoowwan baay'een hin deeggaramu."
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id3149665\n"
"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ACHSENABSCHNITT\">Calculates the point at which a line will intersect the y-values by using known x-values and y-values.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ACHSENABSCHNITT\">Gatiiwwan beekkamoo x fi y fayyamuudhan xuqaa sararri gatiiwwan y itti kiphu shallaga.</ahelp>"
+msgid "If the cells to be merged have any contents, a security dialog is shown."
+msgstr "Yoo man'eewwan makaman qabeentota hamma fedhe qabaatanii,qaaqni ittisaa ni agarsiifama."
-#: 04060181.xhp
+#: 05060000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3150374\n"
+"05060000.xhp\n"
+"par_id3153718\n"
+"help.text"
+msgid "Merging cells can lead to calculation errors in formulas in the table."
+msgstr "Mandheewwan makuun yeroo foormulaa gabatee keessatti dogoggora shallaggii akka argannuuf fayyada."
+
+#: 05070000.xhp
+msgctxt ""
+"05070000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Page Style"
+msgstr "Akkaataa Fuulaa"
+
+#: 05070000.xhp
+msgctxt ""
+"05070000.xhp\n"
+"hd_id3157910\n"
+"1\n"
+"help.text"
+msgid "Page Style"
+msgstr "Akkaataa Fuulaa"
+
+#: 05070000.xhp
+msgctxt ""
+"05070000.xhp\n"
+"par_id3156023\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:PageFormatDialog\" visibility=\"visible\">Opens a dialog where you can define the appearance of all pages in your document.</ahelp></variable>"
+msgstr "<variable id=\"seitetext\"><ahelp hid=\".uno:PageFormatDialog\" visibility=\"visible\">Qaaqa mul'ina fuulootaa galmee kee keessaa huunda hiiktu bana.</ahelp></variable>"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Sheet"
+msgstr "Uumi"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"bm_id3150542\n"
+"help.text"
+msgid "<bookmark_value>pages; order when printing</bookmark_value><bookmark_value>printing; page order</bookmark_value>"
+msgstr "<bookmark_value>fuuloota; ajaja yommuu maxxansituu</bookmark_value><bookmark_value>maxxansuu; Tartiiba fuulaa</bookmark_value>"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3156329\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05070500.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr "<link href=\"text/scalc/01/05070500.xhp\" name=\"Sheet\">Wardii</link>"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3151384\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/SheetPrintPage\">Specifies the elements to be included in the printout of all sheets with the current Page Style. Additionally, you can set the print order, the first page number, and the page scale.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/SheetPrintPage\">Akkaataalee fuulaa ammeen wardiiwwan huundaa keessatti miseensota hammatamuu qabu ifteessa.Dabalata, ajaja dabalata, lakkoofsa fuulaa duraa, fi safara fuulaa qindeessuu dandeessa.</ahelp>"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3150542\n"
+"3\n"
+"help.text"
+msgid "Print"
+msgstr "Maxxansi"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3125863\n"
"4\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Defines which elements of the spreadsheet are to be printed."
+msgstr "Miseensa wardii keessaa kan maxxanfamu hiiki."
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149718\n"
+"05070500.xhp\n"
+"hd_id3151041\n"
"5\n"
"help.text"
-msgid "INTERCEPT(DataY; DataX)"
-msgstr "INTERCEPT(DeetaaY; DeetaaX)"
+msgid "Column and row headers"
+msgstr "Irraantoo tarjaa fi tarree"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149947\n"
+"05070500.xhp\n"
+"par_id3147228\n"
"6\n"
"help.text"
-msgid "<emph>DataY</emph> is the dependent set of observations or data."
-msgstr "<emph>DeetaaY</emph>n tuuta hirkataa hubattoowwani ykn deetaati."
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_HEADER\">Specifies whether you want the column and row headers to be printed.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_HEADER\">Irraantoo tarjaa fi tarree maxxansuu akka barbadduu ifteessi.</ahelp>"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3147412\n"
+"05070500.xhp\n"
+"hd_id3150439\n"
"7\n"
"help.text"
-msgid "<emph>DataX</emph> is the independent set of observations or data."
-msgstr "<emph>DeetaaX</emph>n tuuta of danda'aa hubattoowwani ykn deetaati."
+msgid "Grid"
+msgstr "Tarsaa"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3152983\n"
+"05070500.xhp\n"
+"par_id3147436\n"
"8\n"
"help.text"
-msgid "Names, arrays or references containing numbers must be used here. Numbers can also be entered directly."
-msgstr "Maqaawwan, waraantoowwan ykn wabiiwwan lakkoofsa qaban asitti fayyaduu qabu."
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_GRID\">Prints out the borders of the individual cells as a grid.</ahelp> For the view on screen, make your choice under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"View\"><emph>View</emph></link> - <emph>Grid lines</emph>."
+msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3157906\n"
+"05070500.xhp\n"
+"hd_id3145750\n"
"9\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Comments"
+msgstr "Yaadota"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148728\n"
+"05070500.xhp\n"
+"par_id3150010\n"
"10\n"
"help.text"
-msgid "To calculate the intercept, use cells D3:D9 as the y value and C3:C9 as the x value from the example spreadsheet. Input will be as follows:"
-msgstr "Walkipha shallaguuf, man'eewwan D3:D9 akka gatii y fi C3:C9 akka gatii x wardii fakkeenyaa irraa fayyadami.Naqaan akka armaan gadiiti:"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_NOTES\">Prints the comments defined in your spreadsheet.</ahelp> They will be printed on a separate page, along with the corresponding cell reference."
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_NOTES\">Yaadannoo wardii kee keesssatti hiikame maxxansa.</ahelp> Wabii man'ee waliin, fuula gara biraa irratti ni maxxanfama."
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149013\n"
+"05070500.xhp\n"
+"hd_id3154944\n"
"11\n"
"help.text"
-msgid "<item type=\"input\">=INTERCEPT(D3:D9;C3:C9)</item> = 2.15."
-msgstr "<item type=\"input\">=INTERCEPT(D3:D9;C3:C9)</item> = 2.15."
+msgid "Objects/graphics"
+msgstr "Wantoota/Saxaatoo"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3148437\n"
+"05070500.xhp\n"
+"par_id3149581\n"
+"12\n"
"help.text"
-msgid "<bookmark_value>COUNT function</bookmark_value> <bookmark_value>numbers;counting</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii COUNT</bookmark_value> <bookmark_value>lakkoofsota;lakkaawwii</bookmark_value>"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_OBJECTS\">Includes all inserted objects (if printable) and graphics with the printed document.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_OBJECTS\">Wantoota(yoo maxxanfama ta'ee) fi saxaatoo galmee maxxanfama waliin sagamee huundaa of keessaatti hammata.</ahelp>"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3148437\n"
+"05070500.xhp\n"
+"hd_id3149377\n"
"13\n"
"help.text"
-msgid "COUNT"
-msgstr "COUNT"
+msgid "Charts"
+msgstr "Taattoowwan"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150700\n"
+"05070500.xhp\n"
+"par_id3148455\n"
"14\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ANZAHL\">Counts how many numbers are in the list of arguments.</ahelp> Text entries are ignored."
-msgstr "<ahelp hid=\"HID_FUNC_ANZAHL\">Tarree qajeelfamootaa keessa lakkoofsotni hammamii akka jiran lakkaa'a.</ahelp> Galchiiwwan barruu ni tuffatamu."
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_CHARTS\">Prints the charts that have been inserted into your spreadsheet.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_CHARTS\">Chartiiwwan wardii keessatti saagde maxxansa.</ahelp>"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3153930\n"
+"05070500.xhp\n"
+"hd_id3153418\n"
"15\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Drawing Objects"
+msgstr "Miseensota Fakkasa"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148585\n"
+"05070500.xhp\n"
+"par_id3149122\n"
"16\n"
"help.text"
-msgid "COUNT(Value1; Value2; ... Value30)"
-msgstr "COUNT(Gatii1; Gatii2; ... Gatii30)"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_DRAWINGS\">Includes all drawing objects in the printed document.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_DRAWINGS\">galmee maxxanfama keessatti miseensota fakkasa huunda of keessatti qabata.</ahelp>"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3155827\n"
+"05070500.xhp\n"
+"hd_id3150330\n"
"17\n"
"help.text"
-msgid "<emph>Value1; Value2, ...</emph> are 1 to 30 values or ranges representing the values to be counted."
-msgstr "<emph>Gatii1;Gatii2, ...</emph> gatiiwwan 1 hanga 30 ti ykn hangiiwwan gatiiwwan lakkaawaman bakka bu'uu dha."
+msgid "Formulas"
+msgstr "Foormulaawwan"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3149254\n"
+"05070500.xhp\n"
+"par_id3153715\n"
"18\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_FORMULAS\">Prints the formulas contained in the cells, instead of the results.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_FORMULAS\">Firiiwwan irraaa formulaa man'eewwan keessatti argamu maxxansa.</ahelp>"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149953\n"
+"05070500.xhp\n"
+"hd_id3156385\n"
"19\n"
"help.text"
-msgid "The entries 2, 4, 6 and eight in the Value 1-4 fields are to be counted."
-msgstr "Galchiiwwan 2, 4, 6 fi saddeet kan dirreewwan gatii 1-4 keessaa ni lakkaawamu."
+msgid "Zero Values"
+msgstr "Gatiiwwan Duwwaa"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154558\n"
+"05070500.xhp\n"
+"par_id3149258\n"
"20\n"
"help.text"
-msgid "<item type=\"input\">=COUNT(2;4;6;\"eight\")</item> = 3. The count of numbers is therefore 3."
-msgstr "<item type=\"input\">=COUNT(2;4;6;\"eight\")</item> = 3. Kanaafuu lakkawwin lakkoofsaa 3 ta'a."
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_NULLVALS\">Specifies that cells with a zero value are printed.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_NULLVALS\">Man'eewwan gatii duwwaa kun akka maxxanfamee ifteessi.</ahelp>"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3149729\n"
+"05070500.xhp\n"
+"hd_id3154022\n"
+"21\n"
"help.text"
-msgid "<bookmark_value>COUNTA function</bookmark_value> <bookmark_value>number of entries</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii COUNTA</bookmark_value> <bookmark_value>lakkoofsa galchiiwwanii</bookmark_value>"
+msgid "Page Order"
+msgstr "Tartiiba fuulaa"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3149729\n"
+"05070500.xhp\n"
+"par_id3166423\n"
"22\n"
"help.text"
-msgid "COUNTA"
-msgstr "COUNTA"
+msgid "Defines the order in which data in a sheet is numbered and printed when it does not fit on one printed page."
+msgstr "Yommuu maxxansaa fuulaa tokkoo irratti taasisuu hin dandenye,tartiiba itti deetaan wardii keessa lakka'amuu fi maxxanfamuu hiika."
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150142\n"
+"05070500.xhp\n"
+"hd_id3152580\n"
"23\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ANZAHL2\">Counts how many values are in the list of arguments.</ahelp> Text entries are also counted, even when they contain an empty string of length 0. If an argument is an array or reference, empty cells within the array or reference are ignored."
-msgstr "<ahelp hid=\"HID_FUNC_ANZAHL2\">Tarree qajeelfamootaa keessa gatiiwwan hammamii akka jiran lakkaawa.</ahelp> Galchiiwwan barruutis ni lakkaawamu, diraa duwwaa dheerina 0 yoo qabaatan illee. Yoo qajeelfamni waraantoo ykn wabii ta'e, man'eewwan duuwwaa waraantoo keessaa ni tuffatamu."
+msgid "Top to bottom, then right"
+msgstr "Gubbaa gara gaditti,itti aansuun harkaa mirgaa"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3148573\n"
+"05070500.xhp\n"
+"par_id3150205\n"
"24\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/radioBTN_TOPDOW\">Prints vertically from the left column to the bottom of the sheet.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/radioBTN_TOPDOW\">Tarjaa bitaa irraa gara jalaa wardiitti sarjinaan maxxansa.</ahelp>"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3153111\n"
+"05070500.xhp\n"
+"hd_id3150786\n"
"25\n"
"help.text"
-msgid "COUNTA(Value1; Value2; ... Value30)"
-msgstr "COUNTA(Gatii1; Gatii2; ... Gatii30)"
+msgid "Left to right, then down"
+msgstr "Bitaa garaa mirgaatti,itti aansuun garaa gadiitti"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150001\n"
+"05070500.xhp\n"
+"par_id3154657\n"
"26\n"
"help.text"
-msgid "<emph>Value1; Value2, ...</emph> are 1 to 30 arguments representing the values to be counted."
-msgstr "<emph>Gatii1;Gatii2, ...</emph> Qajeelfamoota 1 hanga 30 ti ykn hangiiwwan gatiiwwan lakkaawamanii bakka bu'a."
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/radioBTN_LEFTRIGHT\">Prints horizontally from the top row of the sheet to the right column.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/radioBTN_LEFTRIGHT\">Tarree gubbee wardii irraa gara tarjaa mirgaatti sardinaan maxxansa.</ahelp>"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3150334\n"
+"05070500.xhp\n"
+"hd_id3150887\n"
"27\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "First page number"
+msgstr "Lakkoofsa fuulaa duraa"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154508\n"
+"05070500.xhp\n"
+"par_id3155378\n"
"28\n"
"help.text"
-msgid "The entries 2, 4, 6 and eight in the Value 1-4 fields are to be counted."
-msgstr "Galchiiwwan 2, 4, 6 fi saddeet kan dirreewwan gatii 1-4 keessaa ni lakkaawamu."
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_PAGENO\">Select this option if you want the first page to start with a number other than 1.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_PAGENO\">Yoo fuulli duraa lakkoofsa 1 irraan adda ta'ee irraa akka eegaluu barbaaddee dirqalaa kana fili.</ahelp>"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3158000\n"
+"05070500.xhp\n"
+"par_id3145389\n"
+"35\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_PAGENO\">Enter the number of the first page.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_PAGENO\">Lakkoofsa fuula duraa galchi.</ahelp>"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3146978\n"
"29\n"
"help.text"
-msgid "<item type=\"input\">=COUNTA(2;4;6;\"eight\")</item> = 4. The count of values is therefore 4."
-msgstr "<item type=\"input\">=COUNTA(2;4;6;\"eight\")</item> = 4. Kanaafuu lakkawwin gatiiwwani 4 ta'a."
+msgid "Scale"
+msgstr "Safara"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3150267\n"
+"05070500.xhp\n"
+"par_id3149408\n"
+"30\n"
"help.text"
-msgid "<bookmark_value>B function</bookmark_value> <bookmark_value>probabilities of samples with binomial distribution</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii B</bookmark_value> <bookmark_value>pirobaabilitii eddattoo faca'iinsa baynoomiyaalii wajjinii</bookmark_value>"
+msgid "Defines a page scale for the printed spreadsheet."
+msgstr "Wardii maxxanfameef safara fuulaa hiika."
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3150267\n"
+"05070500.xhp\n"
+"par_idN1096D\n"
+"help.text"
+msgid "Scaling mode"
+msgstr "Halaata safaruu"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN10971\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/comboLB_SCALEMODE\">Select a scaling mode from the list box. Appropriate controls will be shown at the side of the list box.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/comboLB_SCALEMODE\">Sanduuqa tarree keessaa halaata safartuu fili. Karaa sanduuqa tarree to'annaawwan barbaachisoo ta'aan ni agarsiifamu.</ahelp>"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3155089\n"
"31\n"
"help.text"
-msgid "B"
-msgstr "B"
+msgid "Reduce/enlarge printout"
+msgstr "Alaatti maxxansaa hir'isii/guddisi"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156061\n"
+"05070500.xhp\n"
+"par_id3159171\n"
"32\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_B\">Returns the probability of a sample with binomial distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_B\">pirobaabilitii eddattoo faca'iinsa baynoomiyaalii wajjinii kenna.</ahelp>"
+msgid "Specifies a scaling factor to scale all printed pages."
+msgstr "Fulaawwan maxxanfaman safaruuf murtibaa safartuu ifteessa."
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3150659\n"
+"05070500.xhp\n"
+"par_idN1099A\n"
+"help.text"
+msgid "Scaling factor"
+msgstr "Murtibaa safartuu"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_id3152899\n"
+"36\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEALL\" visibility=\"hidden\">Enter a scaling factor. Factors less than 100 reduce the pages, higher factors enlarge the pages.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEALL\" visibility=\"hidden\">Murtibaa safartuu galchi Murtibni 100 gadii fuulotaa xiqqeessa,murtibni baay'een fuula guddisa.</ahelp>"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109B2\n"
+"help.text"
+msgid "Fit print range(s) to width/height"
+msgstr "Hangii(wwan) maxxansa gara bal'ina/hojjaatti taasisi"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109B5\n"
+"help.text"
+msgid "Specifies the maximum number of pages horizontally (width) and vertically (height) on which every sheet with the current Page Style is to be printed."
+msgstr "Sarjinaan(bal'ina) fi sardinaan(hojjaa)lakkoofsa fuula isaa olaantoo kan tokko tokko wardii akkaataaleen fuulaa ammee itti maxxanfamuu ifteessa."
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109BB\n"
+"help.text"
+msgid "The print ranges are always scaled proportionally, so the resulting number of pages may be less than specified."
+msgstr "Hangiiwwan maxxansaa yeroo hundaa gita'aan safarama,kanaafuu lakkoofsi fuulootaa argamani kun lakkoofsa iftaa'ee gaditti ta'a."
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109BF\n"
+"help.text"
+msgid "You may clear one of the boxes, then the unspecified dimension will use as many pages as necessary."
+msgstr "Sanduuqota keessaa tokkoo haquu dandeessa,itti aansuun addaan fageenyi hin iftoofne fuulota baay'ee akkaa barbaachiseetti fayyadama."
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109C3\n"
+"help.text"
+msgid "If you clear both boxes, this will result in a scaling factor of 100%."
+msgstr "Yoo sanduuqoota lamaan haqxee,martibaa safartuun 100% ta'a."
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109CE\n"
+"help.text"
+msgid "Width in pages"
+msgstr "Bal'inaa fuloota keessatti"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109D1\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGEWIDTH\">Enter the maximum number of pages to be printed horizontally across.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGEWIDTH\">Lakkoofsa ol'aantoo fulootaa karaaa sarjinaan maxxansamu galchi.</ahelp>"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109E8\n"
+"help.text"
+msgid "Height in pages"
+msgstr "Hojjaa fuloota keessatti"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"par_idN109EB\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGEHEIGHT\">Enter the maximum number of pages to be printed vertically stacked.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGEHEIGHT\">Lakkoofsa olaantoo fuulootaa karaa sardinaan maxxansamu galchi.</ahelp>"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3148868\n"
"33\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Fit print range(s) on number of pages"
+msgstr "Hangii(wwan) maxxansa lakkoosa fuulootatti taasisi"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148392\n"
+"05070500.xhp\n"
+"par_id3145074\n"
"34\n"
"help.text"
-msgid "B(Trials; SP; T1; T2)"
-msgstr "B(Yaaliiwwan; SP; T1; T2)"
+msgid "Specifies the maximum number of pages on which every sheet with the current Page Style is to be printed. The scale will be reduced as necessary to fit the defined number of pages."
+msgstr "Lakkoofsa olaantoo fuuloota tokko tokkoon barruu akkataa fuula ammee itti maxxansamuu ifteessa.Safarri akka barbaachiseetti hir'isamuun lakkoofsa fuulootaa hiikame waliin tasifama."
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149002\n"
-"35\n"
+"05070500.xhp\n"
+"par_idN10A26\n"
"help.text"
-msgid "<emph>Trials</emph> is the number of independent trials."
-msgstr "<emph>Yaaliiwwan</emph> lakkoofsa yaaliwwan adda addaati."
+msgid "Number of pages"
+msgstr "Lakkoofsa guyyoota"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148875\n"
-"36\n"
+"05070500.xhp\n"
+"par_id3144507\n"
+"37\n"
"help.text"
-msgid "<emph>SP</emph> is the probability of success on each trial."
-msgstr "<emph>SP</emph> tokko tokkoon yaalii irratti pirobaabilitiilitii argachuuti."
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGENUM\">Enter the maximum number of pages to be printed.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGENUM\">lakkoofsa olaantoo fuulootaa maxxansamuuu galchi.</ahelp>"
-#: 04060181.xhp
+#: 05080000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3145352\n"
-"37\n"
+"05080000.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>T1</emph> defines the lower limit for the number of trials."
-msgstr "<emph>T1</emph> lakkoofsa yaaliiwwaniitif daangaa gadaanaa qindeessa."
+msgid "Print Ranges"
+msgstr "Hangiiwwan Maxxansi"
-#: 04060181.xhp
+#: 05080000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149538\n"
-"38\n"
+"05080000.xhp\n"
+"hd_id3154013\n"
+"1\n"
"help.text"
-msgid "<emph>T2</emph> (optional) defines the upper limit for the number of trials."
-msgstr "<emph>T1</emph> lakkoofsa yaaliiwwaniitif daangaa gubbaa qindeessa."
+msgid "<link href=\"text/scalc/01/05080000.xhp\" name=\"Print Ranges\">Print Ranges</link>"
+msgstr "<link href=\"text/scalc/01/05080000.xhp\" name=\"Print Ranges\">Hangiiwwan Maxxansi</link>"
-#: 04060181.xhp
+#: 05080000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3148768\n"
-"39\n"
+"05080000.xhp\n"
+"par_id3155855\n"
+"2\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<ahelp hid=\".\">Manages print ranges. Only cells within the print ranges will be printed.</ahelp>"
+msgstr "<ahelp hid=\".\">Hangiiwwan maxxansi taliiga. Man'eewwan hangiiwwan maxxansa keeessa jiran qofatu maxxanfama.</ahelp>"
-#: 04060181.xhp
+#: 05080000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154633\n"
-"40\n"
+"05080000.xhp\n"
+"par_id3146119\n"
+"4\n"
"help.text"
-msgid "What is the probability with ten throws of the dice, that a six will come up exactly twice? The probability of a six (or any other number) is 1/6. The following formula combines these factors:"
-msgstr "pirobaabilitiin saddeeqa darbiinsa kudhanii maali, kan jaha sirrumaan yeroo lama mul'atu? pirobaabilitiin jahaa (ykn lakkoofsa biraa kamiiyyuu) 1/6 dha.Formuulaan armaan gadii haalota kana walitti qaba:"
+msgid "If you do not define any print range manually, Calc assigns an automatic print range to include all the cells that are not empty."
+msgstr "yoo hujeekaan hangii maxxansa hin qindeessine, man'eewwan duwwaa hin ta'iin hunda of keessatti haammachuuf shallaggin ofumaan hangii maxxansa ramada."
-#: 04060181.xhp
+#: 05080000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149393\n"
-"41\n"
+"05080000.xhp\n"
+"hd_id3154729\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">=B(10;1/6;2)</item> returns a probability of 29%."
-msgstr "<item type=\"input\">=B(10;1/6;2)</item> pirobaabilitii 29% kenna."
+msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Edit\">Edit</link>"
+msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"Edit\">Gulaali</link>"
-#: 04060181.xhp
+#: 05080100.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3158416\n"
+"05080100.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>RSQ function</bookmark_value> <bookmark_value>determination coefficients</bookmark_value> <bookmark_value>regression analysis</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii RSQ</bookmark_value> <bookmark_value>maxxantoota dutannoo</bookmark_value> <bookmark_value>xiinxala riigireeshinaa</bookmark_value>"
+msgid "Define"
+msgstr "Hiiki"
-#: 04060181.xhp
+#: 05080100.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3158416\n"
-"43\n"
+"05080100.xhp\n"
+"hd_id3145673\n"
+"1\n"
"help.text"
-msgid "RSQ"
-msgstr "RSQ"
+msgid "<link href=\"text/scalc/01/05080100.xhp\" name=\"Define\">Define</link>"
+msgstr "<link href=\"text/scalc/01/05080100.xhp\" name=\"Define\">Hiiki</link>"
-#: 04060181.xhp
+#: 05080100.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154949\n"
-"44\n"
+"05080100.xhp\n"
+"par_id3153896\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BESTIMMTHEITSMASS\">Returns the square of the Pearson correlation coefficient based on the given values.</ahelp> RSQ (also called determination coefficient) is a measure for the accuracy of an adjustment and can be used to produce a regression analysis."
-msgstr "<ahelp hid=\"HID_FUNC_BESTIMMTHEITSMASS\">Gatiiwwan kennaman irratti hundaa'uudhan iskuuweerii maxxantoo firooma pisan kenna.</ahelp> RSQ (akkasumas maxxantoo dutannoo jedhama) safara sirrummaa mijaa'inaa fi xiinxala rigireeshinii homishuuf fayyada."
+msgid "<ahelp hid=\".uno:DefinePrintArea\">Defines an active cell or selected cell area as the print range.</ahelp>"
+msgstr "<ahelp hid=\".uno:DefinePrintArea\">Akka hangii maxxansaatti bakka man'ee ka'aa ykn man'ee filamaa ramada.</ahelp>"
-#: 04060181.xhp
+#: 05080200.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3152820\n"
-"45\n"
+"05080200.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Remove"
+msgstr "Haqi"
-#: 04060181.xhp
+#: 05080200.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3155822\n"
-"46\n"
+"05080200.xhp\n"
+"hd_id3153562\n"
+"1\n"
"help.text"
-msgid "RSQ(DataY; DataX)"
-msgstr "RSQ(DeetaaY; DeetaaX)"
+msgid "<link href=\"text/scalc/01/05080200.xhp\" name=\"Remove\">Remove</link>"
+msgstr "<link href=\"text/scalc/01/05080200.xhp\" name=\"Remove\">Haqi</link>"
-#: 04060181.xhp
+#: 05080200.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150470\n"
-"47\n"
+"05080200.xhp\n"
+"par_id3148550\n"
+"2\n"
"help.text"
-msgid "<emph>DataY</emph> is an array or range of data points."
-msgstr "<emph>DeetaaY</emph> waraantoo ykn hangii xuqaawwan deetaati."
+msgid "<ahelp hid=\".uno:DeletePrintArea\">Removes the defined print area.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeletePrintArea\">Bakkaa maxxansa kaa'amee haqi.</ahelp>"
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3153181\n"
-"48\n"
+"05080300.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>DataX</emph> is an array or range of data points."
-msgstr "<emph>DeetaaX</emph> waraantoo ykn hangii xuqaawwan deetaati."
+msgid "Edit Print Ranges"
+msgstr "Hangiiwwan Maxxansa Gulaali"
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3156258\n"
-"49\n"
+"05080300.xhp\n"
+"hd_id3153088\n"
+"1\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Edit Print Ranges"
+msgstr "Hangiiwwan Maxxansa Gulaali"
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3155991\n"
-"50\n"
+"05080300.xhp\n"
+"par_id3159488\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=RSQ(A1:A20;B1:B20)</item> calculates the determination coefficient for both data sets in columns A and B."
-msgstr "<item type=\"input\">=RSQ(A1:A20;B1:B20)</item>Tuutota deetaa tarjaawwan A fi B keessaa lamanifuu maxxantoo firooma shallaga."
+msgid "<variable id=\"druckbereichetext\"><ahelp hid=\".uno:EditPrintArea\">Opens a dialog where you can specify the print range.</ahelp></variable> You can also set the rows or columns which are to be repeated in every page."
+msgstr "<variable id=\"druckbereichetext\"><ahelp hid=\".uno:EditPrintArea\">Qaaqa itti hangii maxxansa itti ifteessitu dandeessu bana.</ahelp></variable> Akkasumaas tarreewwan ykn tarjaawwan tokko tokkoo fuulaa keessatti deddebi'uu qindeeessuu dandeessa."
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3145620\n"
+"05080300.xhp\n"
+"par_idN105AE\n"
"help.text"
-msgid "<bookmark_value>BETAINV function</bookmark_value> <bookmark_value>cumulative probability density function;inverse of</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii BETAINV</bookmark_value> <bookmark_value>fankishinii rukkina pirobaabilitii dimshaashaa;garagaltoo</bookmark_value>"
+msgid "<embedvar href=\"text/scalc/guide/printranges.xhp#printranges\"/>"
+msgstr "<embedvar href=\"text/scalc/guide/printranges.xhp#printranges\"/>"
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3145620\n"
-"52\n"
+"05080300.xhp\n"
+"hd_id3156281\n"
+"3\n"
"help.text"
-msgid "BETAINV"
-msgstr "BETAINV"
+msgid "Print range"
+msgstr "Hangii Maxxansaa"
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149825\n"
-"53\n"
+"05080300.xhp\n"
+"par_id3147228\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BETAINV\">Returns the inverse of the cumulative beta probability density function.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_BETAINV\">Garagaltoo fankishinii rukkina pirobaabilitii dimshaashaa kenna.</ahelp>"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_PRINTAREA\">Allows you to modify a defined print range.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_PRINTAREA\">Hangii Maxxansaa ramadaee akka foyyeesituu si heeyyama.</ahelp>"
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3152479\n"
-"54\n"
+"05080300.xhp\n"
+"par_id3145174\n"
+"5\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgstr "Wardii ammaaf hangii maxxansa ramadamee haquuf <emph>-Homaa-</emph> fili.Wardii ammaa akkaa hangii maxxansatti qindeessuuf <emph>-wardii waamaraa-</emph> fili. Bakka wardiin filame akkaa hangii maxxansatti ramaduuf <emph>-Filannoo-</emph> fili.<emph>-Hiika Fayyadamaa-</emph> filuun, akka duraa ajaja <emph>Dhangii - hangiiwwan maxxansuu - ramadi</emph> fayyadamteen hangii maxxansaa ramaduu dandeessa.Yoo maqaan hangii ajaja <emph>Saagi - Maqoota - Hiiki</emph> fayyadamuun kenname,maqaan kun agarsifamun sanduuqa tarree keessa filamu danda'a."
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156300\n"
-"55\n"
+"05080300.xhp\n"
+"par_id3145272\n"
+"6\n"
"help.text"
-msgid "BETAINV(Number; Alpha; Beta; Start; End)"
-msgstr "BETAINV(Lakkofsa; Alfaa; Bettaa; Jalqaba; Xumura)"
+msgid "In the right-hand text box, you can enter a print range by reference or by name. If the cursor is in the <emph>Print range</emph> text box, you can also select the print range in the spreadsheet with your mouse."
+msgstr "Harkaa mirgaa sanduuqa barruutti,maqaan ykn wabiin hangii maxxansa galchuu dandeessa.Yoo qareen sanduuqa barruu<emph>Hangii Maxxansa</emph> keessa taate,hantuutee keetiin wardii keessatti hangii maxxansa filachuu dandessa."
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149266\n"
-"56\n"
+"05080300.xhp\n"
+"hd_id3149260\n"
+"7\n"
"help.text"
-msgid "<emph>Number</emph> is the value between <emph>Start</emph> and <emph>End</emph> at which to evaluate the function."
-msgstr "<emph>Lakkofsi</emph> gatii gidduu <emph>Jalqaba</emph> fi <emph>Xumura</emph> iddoo fankishiniin itti madaalamu."
+msgid "Rows to repeat"
+msgstr "Tarrewwan irradeebi'amuu"
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149710\n"
-"57\n"
+"05080300.xhp\n"
+"par_id3147426\n"
+"8\n"
"help.text"
-msgid "<emph>Alpha</emph> is a parameter to the distribution."
-msgstr "<emph>Alfaa</emph>n ulaagaa raabsiiti."
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATROW\">Choose one or more rows to print on every page. In the right text box enter the row reference, for example, \"1\" or \"$1\" or \"$2:$3\".</ahelp> The list box displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating row."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATROW\">Tokko tokko fuulaa irratti maxxansuuf tarrewwan tokko ykn isaa olii fili. Sanduuqa barruu sirrii keeessatti wabii tarree galchii, fakkeenyaaf, \"1\" ykn \"$1\" ykn \"$2:$3\".</ahelp> sanduuqni tarree <emph>-Hiika Fayyadamaa-</emph> agarsiisa. Akkaasumaas tarree deddebi'aa hiikamee haquuf<emph>-homa-</emph> filachuu dandeessa."
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156306\n"
-"58\n"
+"05080300.xhp\n"
+"par_id3155418\n"
+"9\n"
"help.text"
-msgid "<emph>Beta</emph> is a parameter to the distribution."
-msgstr "<emph>Bettaa</emph>n ulaagaa raabsiiti."
+msgid "You can also define repeating rows by dragging the mouse in the spreadsheet, if the cursor is in the <emph>Rows to repeat</emph> text field in the dialog."
+msgstr "Akkasumas wardii irraa hantuutee harkisuun tarreewwaan deddebi'aa hikamee ramaduu dandeessa,yoo qareen qaaqa dirree barruu<emph>Tarrewwan irradeebi'amuu</emph> keessa taate."
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150960\n"
-"59\n"
+"05080300.xhp\n"
+"hd_id3149581\n"
+"10\n"
"help.text"
-msgid "<emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>."
-msgstr "<emph>Jalqaba</emph>(dirqaala) daangaa gadii <emph>Lakkoofsa</emph> ti."
+msgid "Columns to repeat"
+msgstr "Tarjaawwan irradeebi'amuu"
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3151268\n"
-"60\n"
+"05080300.xhp\n"
+"par_id3155602\n"
+"11\n"
"help.text"
-msgid "<emph>End</emph> (optional) is the upper bound for <emph>Number</emph>."
-msgstr "<emph>Xumuraa</emph> (dirqaala) daangaa gubbaa <emph>Lakkoofsa</emph> ti."
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATCOL\">Choose one or more columns to print on every page. In the right text box enter the column reference, for example, \"A\" or \"AB\" or \"$C:$E\".</ahelp> The list box then displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating column."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATCOL\">Tokko tokko fuulaa irratti maxxansuuf tarjaawwan tokko ykn isaa olii filiSanduuqa barruu sirrii keeessatti wabii tarjaa galchii,fakkeenyaaf,\"A\" ykn \"AB\" ykn \"$c:$E\".</ahelp> Sanduuqni tarjaa <emph>-Hiika Fayyadamaa-</emph> agarsiisa.Akkaasumaas tarjaa deddebi'aa hiikamee haquuf<emph>-homa-</emph> filachuu dandeessa"
-#: 04060181.xhp
+#: 05080300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_idN109DF\n"
+"05080300.xhp\n"
+"par_id3150749\n"
+"12\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "You can also define repeating columns by dragging the mouse in the spreadsheet, if the cursor is in the <emph>Columns to repeat</emph> text field in the dialog."
+msgstr "Akkasumas wardii irraa hantuutee harkisuun tarjaawwaan deddebi'aa hikamee ramaduu dandeessa,yoo qareen qaaqa dirree barruu<emph>tarjaawwan irradeebi'amuu</emph> keessa taate."
-#: 04060181.xhp
+#: 05080400.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3147077\n"
-"61\n"
+"05080400.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Add"
+msgstr "Ida'i"
-#: 04060181.xhp
+#: 05080400.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3146859\n"
-"62\n"
+"05080400.xhp\n"
+"hd_id3149457\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">=BETAINV(0.5;5;10)</item> returns the value 0.33."
-msgstr "<item type=\"input\">=BETAINV(0.5;5;10)</item> gatii 0.33 kenna."
+msgid "<link href=\"text/scalc/01/05080400.xhp\" name=\"Add\">Add</link>"
+msgstr "<link href=\"text/scalc/01/05080400.xhp\" name=\"Add\">Ida'i</link>"
-#: 04060181.xhp
+#: 05080400.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3156096\n"
+"05080400.xhp\n"
+"par_id3156423\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>BETADIST function</bookmark_value> <bookmark_value>cumulative probability density function;calculating</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii BETADIST</bookmark_value> <bookmark_value>fankishinii rukkina pirobaabilitii dimshaashaa;shallaguu</bookmark_value>"
+msgid "<ahelp hid=\".uno:AddPrintArea\">Adds the current selection to the defined print areas.</ahelp>"
+msgstr "<ahelp hid=\".uno:AddPrintArea\">Filannoowwan ammaa bakkaa maxxansaa hiikametti dabali.</ahelp>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3156096\n"
-"64\n"
+"05100000.xhp\n"
+"tit\n"
"help.text"
-msgid "BETADIST"
-msgstr "BETADIST"
+msgid "Styles and Formatting"
+msgstr "Akkaataalee fi Dhangeessuu"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150880\n"
-"65\n"
+"05100000.xhp\n"
+"bm_id3150447\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BETAVERT\">Returns the beta function.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_BETAVERT\">Fankishinii rukkina pirobaabilitii dimshaashaa kenna.</ahelp>"
+msgid "<bookmark_value>Stylist, see Styles and Formatting window</bookmark_value> <bookmark_value>Styles and Formatting window</bookmark_value> <bookmark_value>formats; Styles and Formatting window</bookmark_value> <bookmark_value>formatting; Styles and Formatting window</bookmark_value> <bookmark_value>paint can for applying styles</bookmark_value>"
+msgstr "<bookmark_value>Bashaadaa, bashaadaa ilaaluu fifoddaa dhangeessuu</bookmark_value> <bookmark_value>bashaadaa ilaaluu fi foddaa dhangeessu</bookmark_value> <bookmark_value>Dhangeessa; Foddaa Akkaatessuu fi Dhangeessuu</bookmark_value> <bookmark_value>dhangeessuu; Foddaa Akkaatessuu fi Dhangeessuu</bookmark_value> <bookmark_value>fakkaastuun akkaataalee agarsiisuuf </bookmark_value>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3150762\n"
-"66\n"
+"05100000.xhp\n"
+"hd_id3150447\n"
+"1\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<link href=\"text/scalc/01/05100000.xhp\" name=\"Styles and Formatting\">Styles and Formatting</link>"
+msgstr "<link href=\"text/scalc/01/05100000.xhp\" name=\"Styles and Formatting\">Akkaataa fi Dhangeessuu</link>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3147571\n"
-"67\n"
+"05100000.xhp\n"
+"par_id3147434\n"
+"2\n"
"help.text"
-msgid "BETADIST(Number; Alpha; Beta; Start; End; Cumulative)"
-msgstr "BETADIST(Lakkofsa; Alfaa; Bettaa; Jalqaba; Xumura; dimshaasha)"
+msgid "Use the Styles and Formatting window to assign styles to objects and text sections. You can update Styles, modify existing Styles or create new Styles."
+msgstr "Akkaataa fi Dhangeessuu foddaa fayyadamuun akkaataalee wantoota fi kutaalee barruuf ramaduuf. Akkaataalee haaromsuu dandeessa, akkaataalee jiran fooyyessi ykn akkaataalee haaraa uumi."
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156317\n"
-"68\n"
+"05100000.xhp\n"
+"par_id3149665\n"
+"30\n"
"help.text"
-msgid "<emph>Number</emph> is the value between <emph>Start</emph> and <emph>End</emph> at which to evaluate the function."
-msgstr "<emph>Lakkofsi</emph> gatii gidduu <emph>Jalqaba</emph> fi <emph>Xumura</emph> iddoo fankishiniin itti madaalamu."
+msgid "The Styles and Formatting <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link> can remain open while editing the document."
+msgstr "Akkaatalee fi dhangeessuu<link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>yemmuu galmeen gulaalamu banaa ta'uu danda'a."
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156107\n"
-"69\n"
+"05100000.xhp\n"
+"hd_id3150012\n"
+"36\n"
"help.text"
-msgid "<emph>Alpha</emph> is a parameter to the distribution."
-msgstr "<emph>Alfaa</emph>n ulaagaa raabsiiti."
+msgid "How to apply a cell style:"
+msgstr "Akkaataa man'ee akkatalee itti fayyadamnuu:"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3153619\n"
-"70\n"
+"05100000.xhp\n"
+"par_id3159155\n"
+"37\n"
"help.text"
-msgid "<emph>Beta</emph> is a parameter to the distribution."
-msgstr "<emph>Bettaa</emph>n ulaagaa raabsiiti."
+msgid "Select the cell or cell range."
+msgstr "Man'ee ykn hangii man'ee fili."
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150254\n"
-"71\n"
+"05100000.xhp\n"
+"par_id3145749\n"
+"38\n"
"help.text"
-msgid "<emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>."
-msgstr "<emph>Jalqaba</emph>(dirqaala) daangaa gadii <emph>Lakkoofsa</emph> ti."
+msgid "Double-click the style in the Styles and Formatting window."
+msgstr "Akkaataa foddaa dhangeessuu fi akkaataalee keessaa lama cuqqaasi."
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149138\n"
-"72\n"
+"05100000.xhp\n"
+"hd_id3153877\n"
+"4\n"
"help.text"
-msgid "<emph>End</emph> (optional) is the upper bound for <emph>Number</emph>."
-msgstr "<emph>xumura</emph> (dirqaala) daangaa gubbaa <emph>Lakkoofsa</emph> ti."
+msgid "Cell Styles"
+msgstr "Akkaataalee Man'ee"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id012020091254453\n"
+"05100000.xhp\n"
+"par_id3145801\n"
+"6\n"
"help.text"
-msgid "<emph>Cumulative</emph> (optional) can be 0 or False to calculate the probability density function. It can be any other value or True or omitted to calculate the cumulative distribution function."
-msgstr "<emph>Walittiqaba</emph> (dirqalee) 0 ykn Soba rukina faankishinii carraa herreeguu danda'a. Gatii abbaa fe'ee ta'uu dand'a ykn Dhugaa ykn faankishinii tamsa'ina walitti qabaa herreeguuf keessaa hafa."
+msgid "<ahelp hid=\".uno:ParaStyle\">Displays the list of the available Cell Styles for <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"indirect cell formatting\">indirect cell formatting</link>.</ahelp>"
+msgstr "<ahelp hid=\".uno:ParaStyle\">akkaataalee tarree man'ee jiru<link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"indirect cell formatting\">indirect cell formatting</link>kanaaf agarsiisi.</ahelp>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_idN10AB3\n"
+"05100000.xhp\n"
+"par_id3150751\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "<image id=\"img_id3153714\" src=\"sc/res/sf01.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153714\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153714\" src=\"sc/res/sf01.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153714\">Sajoo</alt></image>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3145649\n"
-"73\n"
+"05100000.xhp\n"
+"par_id3154255\n"
+"5\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Cell Styles"
+msgstr "Akkaataalee Man'ee"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156118\n"
-"74\n"
+"05100000.xhp\n"
+"hd_id3153963\n"
+"7\n"
"help.text"
-msgid "<item type=\"input\">=BETADIST(0.75;3;4)</item> returns the value 0.96"
-msgstr "<item type=\"input\">=BETADIST(0.75;3;4)</item> gatii 0.96 kenna."
+msgid "Page Styles"
+msgstr "Akkaataalee Fuulaa"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3143228\n"
+"05100000.xhp\n"
+"par_id3147003\n"
+"9\n"
"help.text"
-msgid "<bookmark_value>BINOMDIST function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii BINOMDIST</bookmark_value>"
+msgid "<ahelp hid=\".uno:PageStyle\">Displays the Page Styles available for indirect page formatting.</ahelp>"
+msgstr "<ahelp hid=\".uno:PageStyle\">Fuula akkaataalee jiran fuula dhangeessuu naannootiif agarsisii.</ahelp>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3143228\n"
-"76\n"
+"05100000.xhp\n"
+"par_id3159100\n"
"help.text"
-msgid "BINOMDIST"
-msgstr "BINOMDIST"
+msgid "<image id=\"img_id3149814\" src=\"sw/imglst/sf04.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149814\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149814\" src=\"sw/imglst/sf04.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149814\">Sajoo</alt></image>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3146897\n"
-"77\n"
+"05100000.xhp\n"
+"par_id3150361\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BINOMVERT\">Returns the individual term binomial distribution probability.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_BINOMVERT\">Jecha dhuunfaa pirobaabilitii raabsii baynoomiyaalii kenna.</ahelp>"
+msgid "Page Styles"
+msgstr "Akkaataalee Fuulaa"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3149289\n"
-"78\n"
+"05100000.xhp\n"
+"hd_id3150202\n"
+"10\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Fill Format Mode"
+msgstr "Haalata Dhangii Guutii"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156009\n"
-"79\n"
+"05100000.xhp\n"
+"par_id3155531\n"
+"12\n"
"help.text"
-msgid "BINOMDIST(X; Trials; SP; C)"
-msgstr "BINOMDIST(X; Yaaliiwwan; SP; C)"
+msgid "<ahelp hid=\"HID_TEMPLDLG_WATERCAN\">Turns the Fill Format mode on and off. Use the paint can to assign the Style selected in the Styles and Formatting window.</ahelp>"
+msgstr "<ahelp hid=\"HID_TEMPLDLG_WATERCAN\">Haalata dhangii guutii banuu ykn dhaamsuun garagalchi. Foddaa Akkaataalee fi Dhangeessuu keessaatti filatame hundeessuuf gaanoo diba fayyadami .</ahelp>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154304\n"
-"80\n"
+"05100000.xhp\n"
+"par_id3155087\n"
"help.text"
-msgid "<emph>X</emph> is the number of successes in a set of trials."
-msgstr "<emph>X</emph>n Tuuta yaaliiwwanii keessaa lakkoofsa moo'insaati."
+msgid "<image id=\"img_id3153068\" src=\"cmd/sc_fillstyle.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153068\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153068\" src=\"cmd/sc_fillstyle.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153068\">Sajoo</alt></image>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3147492\n"
-"81\n"
+"05100000.xhp\n"
+"par_id3156198\n"
+"11\n"
"help.text"
-msgid "<emph>Trials</emph> is the number of independent trials."
-msgstr "<emph>Yaaliiwwan</emph> lakkoofsa yaaliwwan adda addaati."
+msgid "Fill Format Mode"
+msgstr "Haalata Dhangii Guutii"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3146085\n"
-"82\n"
+"05100000.xhp\n"
+"hd_id3148870\n"
+"13\n"
"help.text"
-msgid "<emph>SP</emph> is the probability of success on each trial."
-msgstr "<emph>SP</emph> tokko tokkoon yaalii irratti pirobaabilitii argachuuti."
+msgid "How to apply a new style with the paint can:"
+msgstr "Gaanoo dibaan akkaataa haraa akkamiin fayyadama:"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149760\n"
-"83\n"
+"05100000.xhp\n"
+"par_id3145078\n"
+"27\n"
"help.text"
-msgid "<emph>C</emph> = 0 calculates the probability of a single event and <emph>C</emph> = 1 calculates the cumulative probability."
-msgstr "<emph>C</emph> = 0 pirobaabilitii mudannoo takkaa shallaga fi <emph>C</emph> = 1 pirobaabilitii dimshaashaa shallaga."
+msgid "Select the desired style from the Styles and Formatting window."
+msgstr "Foddaa Akkaataalee Dhangeessuu keessaa akkaataa barbaadame fili."
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3151171\n"
-"84\n"
+"05100000.xhp\n"
+"par_id3159098\n"
+"28\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Click the <emph>Fill Format Mode</emph> icon."
+msgstr "Sajoo<emph>Haalata Dhangii Guutii</emph> cuqqaasi."
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3145666\n"
-"85\n"
+"05100000.xhp\n"
+"par_id3148609\n"
+"15\n"
"help.text"
-msgid "<item type=\"input\">=BINOMDIST(A1;12;0.5;0)</item> shows (if the values <item type=\"input\">0</item> to <item type=\"input\">12</item> are entered in A1) the probabilities for 12 flips of a coin that <emph>Heads</emph> will come up exactly the number of times entered in A1."
-msgstr "<item type=\"input\">=BINOMDIST(A1;12;0.5;0)</item> agarsiisa (yoo gatiiwwan <item type=\"input\">0</item> hanga <item type=\"input\">12</item> A1 keessaatti galchaman) pirobaabilitiin meelchiiwwan faraankaa 12 kan <emph>mataawwan</emph> sirrumaan dhufuu danda'an lakkoofsa bay'isuu galchii A1 ta'a."
+msgid "Click a cell to format it, or drag your mouse over a certain range to format the whole range. Repeat this action for other cells and ranges."
+msgstr "Kana dhangeessuuf man'ee cuqqaasi,ykn hantuutee kee gara hangii murta'eeti harkisuun hangii dimshaashaa dhangeessi.Man'eewwanii fi Hangiiwwan biraatif gocha kana irra deebi'i."
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150120\n"
-"86\n"
+"05100000.xhp\n"
+"par_id3149438\n"
+"29\n"
"help.text"
-msgid "<item type=\"input\">=BINOMDIST(A1;12;0.5;1)</item> shows the cumulative probabilities for the same series. For example, if A1 = <item type=\"input\">4</item>, the cumulative probability of the series is 0, 1, 2, 3 or 4 times <emph>Heads</emph> (non-exclusive OR)."
-msgstr "<item type=\"input\">=BINOMDIST(A1;12;0.5;1)</item>Tarreewwan walfakkaadhaf pirobaabilitiiwwan dimshaashaa agarsiisa. Fakkeenyaf, yoo A1 = <item type=\"input\">4</item> ta'e pirobaabilitiin dimshaashaa 0, 1, 2, 3 or 4 bay'isuu <emph>mataawwan</emph> (hin hammatamiin yookin)."
+msgid "Click the <emph>Fill Format Mode</emph> again to exit this mode."
+msgstr "Haalata Dhangii Guutii<emph>lamata haalata kana keessaa bahuuf</emph> cuqqaasi."
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id0119200902432928\n"
+"05100000.xhp\n"
+"hd_id3153975\n"
+"16\n"
"help.text"
-msgid "<bookmark_value>CHISQINV function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii CHISQINV</bookmark_value>"
+msgid "New Style from Selection"
+msgstr "Akkaataa Haaraa Filannoorraa"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id0119200902421451\n"
+"05100000.xhp\n"
+"par_id3149499\n"
+"18\n"
"help.text"
-msgid "CHISQINV"
-msgstr "CHISQINV"
+msgid "<ahelp hid=\"HID_TEMPLDLG_NEWBYEXAMPLE\">Creates a new style based on the formatting of a selected object.</ahelp> Assign a name for the style in the <link href=\"text/shared/01/05140100.xhp\" name=\"Create Style\">Create Style</link> dialog."
+msgstr "<ahelp hid=\"HID_TEMPLDLG_NEWBYEXAMPLE\">Dhangeessuu wantoo filatamee irratti hunda'uudhaan akkaataa haraa uumii.</ahelp> Akkaataa <link href=\"text/shared/01/05140100.xhp\" name=\"Create Style\">n maqaa moggaasi. Akkaataa Qaaqa</link> uumii."
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id0119200902421449\n"
+"05100000.xhp\n"
+"par_id3150050\n"
"help.text"
-msgid "<ahelp hid=\".\">Returns the inverse of CHISQDIST.</ahelp>"
-msgstr "<ahelp hid=\".\">Faallaa CHISQDIST deebisa.</ahelp>"
+msgid "<image id=\"img_id3154649\" src=\"cmd/sc_stylenewbyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154649\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154649\" src=\"cmd/sc_stylenewbyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154649\">Sajoo</alt></image>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id0119200902475241\n"
+"05100000.xhp\n"
+"par_id3146963\n"
+"17\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "New Style from Selection"
+msgstr "Akkaataa Haaraa Filannoorraa"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id0119200902475286\n"
+"05100000.xhp\n"
+"hd_id3153813\n"
+"19\n"
"help.text"
-msgid "<emph>Probability</emph> is the probability value for which the inverse of the chi-square distribution is to be calculated."
-msgstr "<emph>Carraa</emph> gatii carraa faallaan tamsaasa chaay-iskuweerii herreegamuufii ti."
+msgid "Update Style"
+msgstr "Akkaataa Haaromsi"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id0119200902475282\n"
+"05100000.xhp\n"
+"par_id3154707\n"
+"21\n"
"help.text"
-msgid "<emph>Degrees Of Freedom</emph> is the degrees of freedom for the chi-square function."
-msgstr "<emph>Digirii Biliisummaa</emph> digiriiwwan biliisummaa faankishinii chaay-iskuuweriiti."
+msgid "<ahelp hid=\"HID_TEMPLDLG_UPDATEBYEXAMPLE\">Updates the Style selected in the Styles and Formatting window with the current formatting of the selected object.</ahelp>"
+msgstr "<ahelp hid=\"HID_TEMPLDLG_UPDATEBYEXAMPLE\">Foddaa akkaataalee fi dhangeessuu keessaati wantoon filatame dhangeessuu ammee waliin akkaataan filamee haromfama.</ahelp>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3148835\n"
+"05100000.xhp\n"
+"par_id3145118\n"
"help.text"
-msgid "<bookmark_value>CHIINV function</bookmark_value>"
-msgstr "<bookmark_value>CHIINV function</bookmark_value>"
+msgid "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155754\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155754\">Sajoo</alt></image>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3148835\n"
-"88\n"
+"05100000.xhp\n"
+"par_id3147501\n"
+"20\n"
"help.text"
-msgid "CHIINV"
-msgstr "CHIINV"
+msgid "Update Style"
+msgstr "Akkaataa Haaromsi"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149906\n"
-"89\n"
+"05100000.xhp\n"
+"par_idN109BE\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_CHIINV\">Returns the inverse of the one-tailed probability of the chi-squared distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_CHIINV\">Garagaltoo pirobaabilitii eege tokkee kan raabsa chaay-iskuweerdii kenna.</ahelp>"
+msgid "Style List"
+msgstr "Tarree Akkaataa"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3159157\n"
-"90\n"
+"05100000.xhp\n"
+"par_idN109C2\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\"HID_TEMPLATE_FMT\">Displays the list of the styles from the selected style category.</ahelp>"
+msgstr "<ahelp hid=\"HID_TEMPLATE_FMT\">Akakuu Akkaataa filame keessaa tarree akkaataalee agarsiisa .</ahelp>"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150504\n"
-"91\n"
+"05100000.xhp\n"
+"par_idN109D1\n"
"help.text"
-msgid "CHIINV(Number; DegreesFreedom)"
-msgstr "CHIINV(Lakkoofsa; DigriiBilisaa)"
+msgid "In the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> you can choose commands to create a new style, delete a user-defined style, or change the selected style."
+msgstr "<link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">Baafata halqara</link> keessaati akkaataa haaa uumuuf ajejja filuu dandeessa, akkaataa fayyadaman hikkamuu haqi, ykn akkaataa filatamee jijjijri."
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154898\n"
-"92\n"
+"05100000.xhp\n"
+"hd_id3149053\n"
+"24\n"
"help.text"
-msgid "<emph>Number</emph> is the value of the error probability."
-msgstr "<emph>Lakkoofsi</emph> gatii pirobaabilitii dogongoraati."
+msgid "Style Groups"
+msgstr "Gartuuwwan Akkaataa"
-#: 04060181.xhp
+#: 05100000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154294\n"
-"93\n"
+"05100000.xhp\n"
+"par_id3147299\n"
+"25\n"
"help.text"
-msgid "<emph>DegreesFreedom</emph> is the degrees of freedom of the experiment."
-msgstr "<emph>DigriiBilisaa</emph>n hammaa bilisummaa yaaliiti."
+msgid "<ahelp hid=\"HID_TEMPLATE_FILTER\">Lists the available style groups.</ahelp>"
+msgstr "<ahelp hid=\"HID_TEMPLATE_FILTER\">Gartuuwwan jiran tarreessa.</ahelp>"
-#: 04060181.xhp
+#: 05100100.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3154208\n"
-"94\n"
+"05100100.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Merge Cells"
+msgstr "Man'eewwan Makii"
-#: 04060181.xhp
+#: 05100100.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150777\n"
-"130\n"
+"05100100.xhp\n"
+"hd_id3154765\n"
"help.text"
-msgid "A die is thrown 1020 times. The numbers on the die 1 through 6 come up 195, 151, 148, 189, 183 and 154 times (observation values). The hypothesis that the die is not fixed is to be tested."
-msgstr "Saddeqni yeroo 1020 darbatame. Lakkoofsootni 1 hanga 6 saddeqa irraa si'a 195, 151, 148, 189, 183, fi 154 (gatiiwwan hubannoo) ol dhufa. Hedaatin saddeeqni dhaabbataa mitii ni yaalama."
+msgid "Merge Cells"
+msgstr "Man'eewwan Makii"
-#: 04060181.xhp
+#: 05100100.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3153062\n"
-"131\n"
+"05100100.xhp\n"
+"par_id3147406\n"
"help.text"
-msgid "The Chi square distribution of the random sample is determined by the formula given above. Since the expected value for a given number on the die for n throws is n times 1/6, thus 1020/6 = 170, the formula returns a Chi square value of 13.27."
-msgstr "Raabsi chaay iskuweerii kan eddattoo tasaa foormulaa armaan oliitti kennameen murtaawa. Gatii eeggamaan lakkofsoota saddeeqa irratti kennamee n bay'isuu 1/6 waan ta'eef, kanaafuu 1020/6 = 170 ta'a, formulichi gatii chaay iskuuweerii 13.27 kenna."
+msgid "<ahelp hid=\".\">Combines the contents of the selected cells into a single cell.</ahelp>"
+msgstr ""
-#: 04060181.xhp
+#: 05100100.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148806\n"
-"132\n"
+"05100100.xhp\n"
+"par_id3154351\n"
"help.text"
-msgid "If the (observed) Chi square is greater than or equal to the (theoretical) Chi square CHIINV, the hypothesis will be discarded, since the deviation between theory and experiment is too great. If the observed Chi square is less that CHIINV, the hypothesis is confirmed with the indicated probability of error."
-msgstr "Yoo chaay iskuuweeriin (hubatame) irraguddaa ykn walqixa CHIINV chaay iskuweerii (tiyoritikaalii) ta'e, maldhawiinsi ni gatama, garaarummaan tiyoorii fi yaalii bay'ee guuddaa waan ta'eefi dha. Yoo chaay iskuweeriin hubatame irra xiqqa CHIINV ta'e, maldhawiinsi ni dogongora pirobaabilitii eerame wajjin raggaasifama."
+msgid "Choose <emph>Format - Merge Cells - Merge Cells</emph>"
+msgstr ""
-#: 04060181.xhp
+#: 05100200.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149763\n"
-"95\n"
+"05100200.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=CHIINV(0.05;5)</item> returns 11.07."
-msgstr "<item type=\"input\">=CHIINV(0.05;5)</item> 11.07 kenna."
+msgid "Split Cells"
+msgstr "Mandheewwan Adda Baasuu"
-#: 04060181.xhp
+#: 05100200.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3159142\n"
-"133\n"
+"05100200.xhp\n"
+"hd_id3154654\n"
"help.text"
-msgid "<item type=\"input\">=CHIINV(0.02;5)</item> returns 13.39."
-msgstr "<item type=\"input\">=CHIINV(0.02;5)</item> 13.39 kenna."
+msgid "Split Cells"
+msgstr "Mandheewwan Adda Baasuu"
-#: 04060181.xhp
+#: 05100200.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3158401\n"
-"134\n"
+"05100200.xhp\n"
+"par_id3083451\n"
"help.text"
-msgid "If the probability of error is 5%, the die is not true. If the probability of error is 2%, there is no reason to believe it is fixed."
-msgstr "Yoo pirobaabilitiin dogongoraa 5% ta'e, saddeeqni dhugaa miti. Yoo pirobaabilitiin dogongoraa 2% ta'e, sababni dhabbataa ta'uu isaa amansiisu hin jiru."
+msgid "<ahelp hid=\".\">Splits previously merged cells.</ahelp>"
+msgstr ""
-#: 04060181.xhp
+#: 05100200.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3154260\n"
+"05100200.xhp\n"
+"par_id3154023\n"
"help.text"
-msgid "<bookmark_value>CHITEST function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii CHITEST</bookmark_value>"
+msgid "Choose <emph>Format - Merge Cells - Split Cells</emph>"
+msgstr ""
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3154260\n"
-"97\n"
+"05110000.xhp\n"
+"tit\n"
"help.text"
-msgid "CHITEST"
-msgstr "CHITEST"
+msgid "AutoFormat"
+msgstr "OfDhangi'aa"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3151052\n"
-"98\n"
+"05110000.xhp\n"
+"hd_id3149666\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_CHITEST\">Returns the probability of a deviance from a random distribution of two test series based on the chi-squared test for independence.</ahelp> CHITEST returns the chi-squared distribution of the data."
-msgstr "<ahelp hid=\"HID_FUNC_CHITEST\">Chaay-iskuweerii of danda'inaa irratti hundaa'uudhan piroobabiliitii diviyaansii kan tarreewwan yaalii lamaa raabsa tasaa irraa kenna.</ahelp> CHITEST returns the chi-squared distribution of the data."
+msgid "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat</link></variable>"
+msgstr "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">OfDhangi'aa</link></variable>"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148925\n"
-"135\n"
+"05110000.xhp\n"
+"par_id3145367\n"
+"2\n"
"help.text"
-msgid "The probability determined by CHITEST can also be determined with CHIDIST, in which case the Chi square of the random sample must then be passed as a parameter instead of the data row."
-msgstr "Pirobaabiliitin CHIEST dhan murtaa'e CHIDIST dhanis murtaa'uu danda'a, kan dubbeen chaay iskuuweerii eddattoo tasaa keessatti akka deetaa dhedhii diisuun akka ulaagatti darbuu qabuu dha."
+msgid "<variable id=\"autoformattext\"><ahelp hid=\".\">Use this command to apply an AutoFormat to a selected sheet area or to define your own AutoFormats.</ahelp></variable>"
+msgstr "<variable id=\"autoformattext\"><ahelp hid=\".\">Ajajja kana fayyadamuun ofdhangi iddoo wardii filatamee fayyadama ykn Ofdhangiwwan mata keetii ibsuuf.</ahelp></variable>"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3154280\n"
-"99\n"
+"05110000.xhp\n"
+"hd_id3148455\n"
+"3\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Format"
+msgstr "Dhangii"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149162\n"
-"100\n"
+"05110000.xhp\n"
+"par_id3145799\n"
+"4\n"
"help.text"
-msgid "CHITEST(DataB; DataE)"
-msgstr "CHITEST(DeettaB; DeetaaE)"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_AUTOFORMAT:LB_FORMAT\">Choose a predefined AutoFormat to apply to a selected area in your sheet.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_AUTOFORMAT:LB_FORMAT\">Wardii kee keessaati iddoo filatame fayyadamuuf OfDhangii dursee hikame fili.</ahelp>"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3158421\n"
-"101\n"
+"05110000.xhp\n"
+"hd_id3149410\n"
+"5\n"
"help.text"
-msgid "<emph>DataB</emph> is the array of the observations."
-msgstr "<emph>DeetaaB</emph>n waraantoo dow'annaawwaniiti."
+msgid "Add"
+msgstr "Ida'i"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3166453\n"
-"102\n"
+"05110000.xhp\n"
+"par_id3154017\n"
+"6\n"
"help.text"
-msgid "<emph>DataE</emph> is the range of the expected values."
-msgstr "<emph>DeetaaE</emph>n hangii gatiiwwan eeggamooti."
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_AUTOFORMAT:BTN_ADD\">Allows you to add the current formatting of a range of at least 4 x 4 cells to the list of predefined AutoFormats.</ahelp> The <link href=\"text/shared/01/05150101.xhp\" name=\"Add AutoFormat\">Add AutoFormat</link> dialog then appears."
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_AUTOFORMAT:BTN_ADD\">n akka dhangeessuu ammee hangii yoo xiqqate Man'eewwan 4 x 4 ida'uu hayyama.</ahelp> <link href=\"text/shared/01/05150101.xhp\" name=\"Add AutoFormat\">Qaqnii</link> OfDhangii ida'uu itti aansudhan ni mul'ata."
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3146946\n"
-"103\n"
+"05110000.xhp\n"
+"par_id3153708\n"
+"29\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<ahelp hid=\"HID_SC_AUTOFMT_NAME\">Enter a name and click <emph>OK</emph>. </ahelp>"
+msgstr "<ahelp hid=\"HID_SC_AUTOFMT_NAME\"> Maqaa galchuun <emph>EEYYE</emph> cuqaasi. </ahelp>"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154096\n"
-"136\n"
+"05110000.xhp\n"
+"hd_id3150044\n"
+"7\n"
"help.text"
-msgid "Data_B (observed)"
-msgstr "Deetaa_B (hubatamaa)"
+msgid "More"
+msgstr "Dabalaa"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3152948\n"
-"137\n"
+"05110000.xhp\n"
+"par_id3146920\n"
+"8\n"
"help.text"
-msgid "Data_E (expected)"
-msgstr "Deetaa_E (eeggamaa)"
+msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_AUTOFORMAT:BTN_MORE\">Opens the <emph>Formatting</emph> section, which displays the formatting overrides that can be applied to the spreadsheet. Deselecting an option keeps the format of the current spreadsheet for that format type.</ahelp>"
+msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_AUTOFORMAT:BTN_MORE\">Kutaa <emph>Dhangeessuu</emph> bana, Kan dhangeessuu dhoksuu agarsiisu wardii fayyadamuu danda'a. Dirqala filachu dhisuun akaakuu dhangitiif wardii ammee dhangii eega.</ahelp>"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3152876\n"
-"138\n"
+"05110000.xhp\n"
+"hd_id3155961\n"
+"9\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "Formatting"
+msgstr "Dhangeessuu"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3159279\n"
-"139\n"
+"05110000.xhp\n"
+"par_id3153965\n"
+"10\n"
"help.text"
-msgid "<item type=\"input\">195</item>"
-msgstr "<item type=\"input\">195</item>"
+msgid "In this section you can select or deselect the available formatting options. If you want to keep any of the settings currently in your spreadsheet, deselect the corresponding option."
+msgstr "Kutaa kana keessaati dirqalaale dhangeessuu jiran filuu ykn filuu dhisuu dandeessa. Yoo qindaa'ina ammaa kamiyyuu wardii kee keessaati eegu barbaddee, dirqalaalee walfakkatu hin filin."
-#: 04060181.xhp
-#, fuzzy
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149105\n"
-"140\n"
+"05110000.xhp\n"
+"hd_id3154021\n"
+"11\n"
"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
+msgid "Number format"
+msgstr "Dhangii Lakkofsaa"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149922\n"
-"141\n"
+"05110000.xhp\n"
+"par_id3159239\n"
+"12\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_NUMFORMAT\">When marked, specifies that you want to retain the number format of the selected format.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_NUMFORMAT\">Yemmu mallata'ee, lakkoofsa dhangii filatamee irraa deebi'u yoo barbadee ifteessi.</ahelp>"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148621\n"
-"142\n"
+"05110000.xhp\n"
+"hd_id3149530\n"
+"13\n"
"help.text"
-msgid "<item type=\"input\">151</item>"
-msgstr "<item type=\"input\">151</item>"
+msgid "Borders"
+msgstr "Handaaraalee"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148987\n"
-"143\n"
+"05110000.xhp\n"
+"par_id3145259\n"
+"14\n"
"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_BORDER\">When marked, specifies that you want to retain the border of the selected format.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_BORDER\">Yemmu mallata'ee, lakkoofsa dhangii filatamee irraa deebi'u yoo barbadee ifteessi.</ahelp>"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149417\n"
-"144\n"
+"05110000.xhp\n"
+"hd_id3154657\n"
+"15\n"
"help.text"
-msgid "3"
-msgstr "3"
+msgid "Font"
+msgstr "Bocquu"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148661\n"
-"145\n"
+"05110000.xhp\n"
+"par_id3152990\n"
+"16\n"
"help.text"
-msgid "<item type=\"input\">148</item>"
-msgstr "<item type=\"input\">148</item>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_FONT\">When marked, specifies that you want to retain the font of the selected format.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_FONT\">Yemmu mallata'ee, lakkoofsa dhangii filatamee irraa deebi'u yoo barbadee ifteessi.</ahelp>"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3151128\n"
-"146\n"
+"05110000.xhp\n"
+"hd_id3155379\n"
+"17\n"
"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
+msgid "Pattern"
+msgstr "Sarxaa"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148467\n"
-"147\n"
+"05110000.xhp\n"
+"par_id3150368\n"
+"18\n"
"help.text"
-msgid "4"
-msgstr "4"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_PATTERN\">When marked, specifies that you want to retain the pattern of the selected format.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_PATTERN\">Yemmu mallata'ee, lakkoofsa dhangii filatamee irraa deebi'u yoo barbadee ifteessi.</ahelp>"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149237\n"
-"148\n"
+"05110000.xhp\n"
+"hd_id3146115\n"
+"19\n"
"help.text"
-msgid "<item type=\"input\">189</item>"
-msgstr "<item type=\"input\">189</item>"
+msgid "Alignment"
+msgstr "Hiriira"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3145304\n"
-"149\n"
+"05110000.xhp\n"
+"par_id3156445\n"
+"20\n"
"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ALIGNMENT\">When marked, specifies that you want to retain the alignment of the selected format.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ALIGNMENT\">Yemmu mallata'ee, lakkoofsa dhangii filatamee irraa deebi'u yoo barbadee ifteessi.</ahelp>"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149927\n"
-"150\n"
+"05110000.xhp\n"
+"hd_id3155811\n"
+"21\n"
"help.text"
-msgid "5"
-msgstr "5"
+msgid "AutoFit width and height"
+msgstr "Oftaasisaa dagalee fi dheerinaa"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150630\n"
-"151\n"
+"05110000.xhp\n"
+"par_id3148703\n"
+"22\n"
"help.text"
-msgid "<item type=\"input\">183</item>"
-msgstr "<item type=\"input\">183</item>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ADJUST\">When marked, specifies that you want to retain the width and height of the selected cells of the selected format.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ADJUST\">Yemmu mallata'ee, lakkoofsa dhangii filatamee irraa deebi'u yoo barbadee ifteessi.</ahelp>"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150423\n"
-"152\n"
+"05110000.xhp\n"
+"hd_id3159223\n"
+"26\n"
"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
+msgid "Rename"
+msgstr "Maqaa Jijjiira"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3143275\n"
-"153\n"
+"05110000.xhp\n"
+"par_id3153064\n"
+"27\n"
"help.text"
-msgid "6"
-msgstr "6"
+msgid "<ahelp hid=\"HID_SC_RENAME_AUTOFMT\">Opens a dialog where you can change the specification of the selected AutoFormat.</ahelp> The button is only visible if you clicked the <emph>More</emph> button."
+msgstr "<ahelp hid=\"HID_SC_RENAME_AUTOFMT\">Iddoo iftoomini jijjiramuu danda'uuti Ofdhangii filameef qaaqa bani.</ahelp> Qabdoon kan mul'atuu yoo <emph>Dabala</emph> cuqaaste qofa."
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3144750\n"
-"154\n"
+"05110000.xhp\n"
+"par_id3153912\n"
+"28\n"
"help.text"
-msgid "<item type=\"input\">154</item>"
-msgstr "<item type=\"input\">154</item>"
+msgid "The <emph>Rename AutoFormat</emph> dialog opens.<ahelp hid=\"HID_SC_REN_AFMT_NAME\"> Enter the new name of the AutoFormat here.</ahelp>"
+msgstr "<emph>n qaqnii</emph> Ofdhangiin Maqaa Jijjiraa ni banama.<ahelp hid=\"HID_SC_REN_AFMT_NAME\"> Ofdhangii maqaa haraa asitti galchi.</ahelp>"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3153947\n"
-"155\n"
+"05110000.xhp\n"
+"hd_id3155264\n"
+"23\n"
"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
+msgid "More"
+msgstr "Dabalaa"
-#: 04060181.xhp
+#: 05110000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149481\n"
-"104\n"
+"05110000.xhp\n"
+"par_id3159094\n"
+"24\n"
"help.text"
-msgid "<item type=\"input\">=CHITEST(A1:A6;B1:B6)</item> equals 0.02. This is the probability which suffices the observed data of the theoretical Chi-square distribution."
-msgstr "<item type=\"input\">=CHITEST(A1:A6;B1:B6)</item> walqixa 0.02 ti. Kun pirobaabilitii kan deetaa raabsii chaay iskuweerii tiyoorotikaalii gahuu dha."
+msgid "Closes the <emph>Formatting</emph> options section, if it is currently open."
+msgstr "Dirqalaalee kutaa <emph>Dhangeessuu</emph> cufi, yoo ammaati banaa ta'ee."
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3148690\n"
+"05120000.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>CHIDIST function</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii CHIDIST</bookmark_value>"
+msgid "Conditional Formatting"
+msgstr "Dhangeessa Otoola"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3148690\n"
-"106\n"
+"05120000.xhp\n"
+"hd_id3155132\n"
+"1\n"
"help.text"
-msgid "CHIDIST"
-msgstr "CHIDIST"
+msgid "Conditional Formatting"
+msgstr "Dhangeessa Otoola"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156338\n"
-"156\n"
+"05120000.xhp\n"
+"par_id3163710\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_CHIVERT\">Returns the probability value from the indicated Chi square that a hypothesis is confirmed.</ahelp> CHIDIST compares the Chi square value to be given for a random sample that is calculated from the sum of (observed value-expected value)^2/expected value for all values with the theoretical Chi square distribution and determines from this the probability of error for the hypothesis to be tested."
-msgstr "<ahelp hid=\"HID_FUNC_CHIVERT\">Chaay iskuweerii eerame kan maldhawiinsi mirkanaa'e irraa gatii pirobaabilitii kenna.</ahelp> CHIDIST gatii chaay iskuweerii eddatto tasaatif kennamu kan ida'ama (gatii hubatame-gatii eeggame)^2/ gatii eeggame irraa gatiiwwan raabsii chaay iskuweerii tiyooritikaalii hundaaf shallaga fi kanarraa dogongora pirobaabilitii kan hedatiin yaalamuuf murteessa."
+msgid "<variable id=\"bedingtetext\"><ahelp hid=\".uno:ConditionalFormatDialog\">Choose <emph>Conditional Formatting</emph> to define format styles depending on certain conditions.</ahelp></variable> If a style was already assigned to a cell, it remains unchanged. The style entered here is then evaluated. You can enter three conditions that query the contents of cell values or formulas. The conditions are evaluated from 1 to 3. If the condition 1 matches the condition, the defined style will be used. Otherwise, condition 2 is evaluated, and its defined style used. If this style does not match, condition 3 is evaluated."
+msgstr "<variable id=\"bedingtetext\"><ahelp hid=\".uno:ConditionalFormatDialog\">Otoolee murta'an irrati hunda'udhaan <emph>Dhangeessa Otoola</emph> fili.</ahelp></variable> yoo akkaataan man'eedhaaf hundeefame, akkuma dura osoo hin jijjiramin ta'a. Akkaataan asiti galchamee itti aansun ni qormatama,. Otoolee sadii kan gatiiwwan man'ee ykn foormuulawwan gafata qabeentoota galchuu dandeessa. Otoolee 1 hanga 3tti ni qormaatama. Yoo otoola 1ffaan otoolatti firoomee, akkaataan hikakkamee fayyadamamee jira. Garaa biraatin, otooli 2ffaan ni qormaatama, akkasumas akkaataan isaa hikkamee fayyadamamee jira. Yoo akkaataan kun hin firoomnee, otooli 3ffaan ni qormaatama."
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3151316\n"
-"157\n"
+"05120000.xhp\n"
+"par_id2414014\n"
"help.text"
-msgid "The probability determined by CHIDIST can also be determined by CHITEST."
-msgstr "Pirobaabiliitin HIDIST dhan murtaa'e CHITEST dhanis ni murtaa'a."
+msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose Tools - Cell Contents - AutoCalculate (you see a check mark next to the command when AutoCalculate is enabled)."
+msgstr "Otoola dhangeessuu fayyadamuuf,Ofiinshallagiin kakafamuu qaba. Meeshaalee-qabeentota man'ee-Ofiinshallagii fili.(Yommuu ofiin shallagiin kakaafamee ajejjatti aansuun malkata mirkannefame ilaalta)"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3155123\n"
-"108\n"
+"05120000.xhp\n"
+"bm_id3153189\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<bookmark_value>conditional formatting; conditions</bookmark_value>"
+msgstr "<bookmark_value>dhangeessuu otoola; otoolalee</bookmark_value>"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3158439\n"
-"109\n"
+"05120000.xhp\n"
+"hd_id3153189\n"
+"18\n"
"help.text"
-msgid "CHIDIST(Number; DegreesFreedom)"
-msgstr "CHIDIST(Lakkoofsa; DigriiBilisaa)"
+msgid "Condition 1/2/3"
+msgstr "Otoola 1/2/3"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148675\n"
-"110\n"
+"05120000.xhp\n"
+"par_id3149413\n"
+"4\n"
"help.text"
-msgid "<emph>Number</emph> is the chi-square value of the random sample used to determine the error probability."
-msgstr "<emph>Lakkofsi</emph> gatii chaay iskuweerii kan eddattoo tasaa pirobaabiliti dogongoraa murteessuuf fayyaduu dha."
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONDFORMAT:CBX_COND3\">Mark the boxes corresponding to each condition and enter the corresponding condition.</ahelp> To close the dialog, click <emph>OK</emph>."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONDFORMAT:CBX_COND3\">Tokkoon tokkoo sanduuqawwan otoolatiif malkata kennuun tokkoon tokkoo otoola galdhii.</ahelp> Qaqaa cufuf, <emph>EEYYE</emph>cuqaasi."
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3155615\n"
-"111\n"
+"05120000.xhp\n"
+"hd_id3147394\n"
+"5\n"
"help.text"
-msgid "<emph>DegreesFreedom</emph> are the degrees of freedom of the experiment."
-msgstr "<emph>DigriiBilisaa</emph>n hammaa firidamii yaaliiti."
+msgid "Cell Value / Formula"
+msgstr "Foormulaa/ Gatii Man,ee"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3146787\n"
-"112\n"
+"05120000.xhp\n"
+"par_id3155602\n"
+"6\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_1\">Specifies if conditional formatting is dependent on a cell value or a formula.</ahelp> If you select a formula as a reference, the <emph>Cell Value Condition</emph> box is displayed to the right of the <emph>Cell value/Formula</emph> field. If the condition is \"Formula is\", enter a cell reference. If the cell reference is a value other than zero, the condition matches."
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_1\">Yoo dhangeessuun otoola gatii man'ee ykn foormulaa irratti hunda'a ta'ee ifteessi.</ahelp> Yoo foormulaa akka wabiitti filtee, Otooli Gatii Man'ee <emph>sanduuqnii</emph> gara mirgaa dirree<emph>Foormulaa/ Gatii Man'ee</emph> mul'ata. Yoo otooli \"Foormula dha\" ta'e, man'ee akka wabiitti galchi. Yoo gatiin wabii man'ee zeeroodha alaa ta'ee, otooli ni firooma."
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3145774\n"
-"113\n"
+"05120000.xhp\n"
+"hd_id3153709\n"
+"7\n"
"help.text"
-msgid "<item type=\"input\">=CHIDIST(13.27; 5)</item> equals 0.02."
-msgstr "<item type=\"input\">=CHIDIST(13.27; 5)</item> walqixa 0.02 ta'a."
+msgid "Cell Value Condition"
+msgstr "Otoola Gatii Man'ee"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156141\n"
-"158\n"
+"05120000.xhp\n"
+"par_id3153764\n"
+"8\n"
"help.text"
-msgid "If the Chi square value of the random sample is 13.27 and if the experiment has 5 degrees of freedom, then the hypothesis is assured with a probability of error of 2%."
-msgstr "Yoo gatiin chaay iskuweerii kan eddattoon tasaa 13.27 ta'ee fi yaaliin digrii firiidamii 5 qabaate, sana booda hedatiin pirobaabiliitii dogongoraa 2% wajjin mirkaneeffama."
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_2\">Choose a condition for the format to be applied to the selected cells.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_2\">Dhangii man'eewwan filameef fayyadamuuf otoola fili.</ahelp>"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id0119200902231887\n"
+"05120000.xhp\n"
+"hd_id3156384\n"
+"9\n"
"help.text"
-msgid "<bookmark_value>CHISQDIST function</bookmark_value><bookmark_value>chi-square distribution</bookmark_value>"
-msgstr "<bookmark_value>faankishinii CHISQDIST</bookmark_value><bookmark_value>tamsaasa chaay-iskuweerii</bookmark_value>"
+msgid "Cell Style"
+msgstr "Haalataa Man'ee"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id0119200901583452\n"
+"05120000.xhp\n"
+"par_id3145228\n"
+"10\n"
"help.text"
-msgid "CHISQDIST"
-msgstr "CHISQDIST"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_TEMPLATE\">Choose the style to be applied if the specified condition matches.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_TEMPLATE\">Yoo otooli iftoome firoome akkaataa fayyadamamuu fili.</ahelp>"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id0119200901583471\n"
+"05120000.xhp\n"
+"hd_id0509200913175331\n"
"help.text"
-msgid "<ahelp hid=\".\">Returns the value of the probability density function or the cumulative distribution function for the chi-square distribution.</ahelp>"
-msgstr "<ahelp hid=\".\">Gatii faankishinii rukina carraa deebisa ykn faankishiniin tamsaasaa walittiqabaa tamsaasa chaay-iskuuweriif deebisa.</ahelp>"
+msgid "New Style"
+msgstr "Haalata Haaraa"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id0119200902395520\n"
+"05120000.xhp\n"
+"par_id0509200913175368\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\".\">If you haven't already defined a style to be used, you can click New Style to open the Organizer tab page of the Cell Style dialog. Define a new style there and click OK.</ahelp>"
+msgstr "<ahelp hid=\".\">Haalata fayyadamtu yoo hin qinddeessine ta'e, caanacala fuula qindeessaa mandhee qaaqa haalataa banuuf haalata haaraa cuqaasi. Haalata haaraa bakka kanatti qindeessi itti aansuun TOLEE cuqaasi.</ahelp>"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id0119200902395679\n"
+"05120000.xhp\n"
+"hd_id3146316\n"
+"11\n"
"help.text"
-msgid "CHISQDIST(Number; Degrees Of Freedom; Cumulative)"
-msgstr "CHISQDIST(Lakkoofsa; Digiriiwwan Biliisummaa; Walittiqaba)"
+msgid "Parameter field"
+msgstr "Dirree Ulaagaa"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id011920090239564\n"
+"05120000.xhp\n"
+"par_id3155114\n"
+"12\n"
"help.text"
-msgid "<emph>Number</emph> is the number for which the function is to be calculated."
-msgstr "<emph>Lakkoofsa</emph> lakkoofsa faankishinichi herreegamuufi dha."
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONDFORMAT:EDT_COND3_2\" visibility=\"hidden\">Enter a reference, value or formula.</ahelp> Enter a reference, value or formula in the parameter field, or in both parameter fields if you have selected a condition that requires two parameters. You can also enter formulas containing relative references."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONDFORMAT:EDT_COND3_2\" visibility=\"hidden\">gatii ykn foormulaa, Wabii galchii.</ahelp> Gatii ykn foormulaa keessaatti dirree ulaagaa, wabii galchi, ykn dirreewwan ulaagaa lamaan keessaatti yoo otooli filatamee ulaagaalee lama barbaadee. Akkaasumas foormulaawwan ulaagaa lama qaban filu dandeessa."
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id0119200902395660\n"
+"05120000.xhp\n"
+"par_id3145257\n"
+"13\n"
"help.text"
-msgid "<emph>Degrees Of Freedom</emph> is the degrees of freedom for the chi-square function."
-msgstr "<emph>Digiriiwwan Biliisummaa</emph> digiriiwwan biliisummaa faankishinii chii-iskuuweriiti."
+msgid "Once the parameters have been defined, the condition is complete. It may appear as:"
+msgstr "Al tokkoo yoo ulaagaaleen hikkamee, otooli ni xumurama. Innis akkanatti mul'achuu danda'a:"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id0119200902395623\n"
+"05120000.xhp\n"
+"par_id3150784\n"
+"14\n"
"help.text"
-msgid "<emph>Cumulative</emph> (optional): 0 or False calculates the probability density function. Other values or True or omitted calculates the cumulative distribution function."
-msgstr "<emph>Walittiqaba</emph> (dirqalee): 0 ykn Soba faankishinii rukina carraa herreega. Gatiiwwan kanbiroo ykn Dhugaa ykn kan dhiifame faankishinii tamsaasa walittiqabaa herrega."
+msgid "Cell value is equal 0: Cell style Null value (You must have already defined a cell style with this name before assigning it to a condition)."
+msgstr "Gatiin man'ee 0 dha: .Gatii duwwaa akkaataa man'ee (Akkaataan man'ee maqaa kana waliin osoo hin hundeesin hikuu qabda)"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3150603\n"
+"05120000.xhp\n"
+"par_id3150365\n"
+"15\n"
"help.text"
-msgid "<bookmark_value>EXPONDIST function</bookmark_value> <bookmark_value>exponential distributions</bookmark_value>"
-msgstr "<bookmark_value>Fankishinii EXPONDIST</bookmark_value> <bookmark_value>raabsiiwwan eksipooneenshiyaalii</bookmark_value>"
+msgid "Cell value is between $B$20 and $B$21: Cell style Result (The corresponding value limits must already exist in cells B20 and B21)."
+msgstr "Gatiin man'ee $B$20 fi $B$21 jidduu dha: Gatii akkaataa Kenna(Gatiin itti aanuu man'ee B20 fi B21 kan durumaan jiraniin murtaa'a)"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3150603\n"
-"115\n"
+"05120000.xhp\n"
+"par_id3152992\n"
+"16\n"
"help.text"
-msgid "EXPONDIST"
-msgstr "EXPONDIST"
+msgid "Formula is SUM($A$1:$A$5)=10: Cell style Result (The selected cells are formatted with the Result style if the sum of the contents in cells A1 to A5 is equal to 10)."
+msgstr "Foormulaan SUM($A$1:$A$5)=10 dha: Gatii akkaataa Kenna(Yoo ida'amni qabeentota man'eewwan A1 fi A5 walqixa 10 ta'e man'eewwan filataman ni dhanga'amu )"
-#: 04060181.xhp
+#: 05120000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149563\n"
-"116\n"
+"05120000.xhp\n"
+"par_idN107E1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_EXPONVERT\">Returns the exponential distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_EXPONVERT\">Raabsii eksipooneenshiyaalii kenna.</ahelp>"
+msgid "<embedvar href=\"text/scalc/guide/cellstyle_conditional.xhp#cellstyle_conditional\"/>"
+msgstr "<embedvar href=\"text/scalc/guide/cellstyle_conditional.xhp#cellstyle_conditional\"/>"
-#: 04060181.xhp
+#: 06020000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3153789\n"
-"117\n"
+"06020000.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Hyphenation"
+msgstr "Murfisa"
-#: 04060181.xhp
+#: 06020000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150987\n"
-"118\n"
+"06020000.xhp\n"
+"bm_id3159399\n"
"help.text"
-msgid "EXPONDIST(Number; Lambda; C)"
-msgstr "EXPONDIST(Lakkofsa; Lambda; C)"
+msgid "<bookmark_value>automatic hyphenation in spreadsheets</bookmark_value><bookmark_value>hyphenation; in spreadsheets</bookmark_value><bookmark_value>syllables in spreadsheets</bookmark_value>"
+msgstr "<bookmark_value>wardii keessaatti murfisa ofiini</bookmark_value><bookmark_value>murfisa; wardii keessaati</bookmark_value><bookmark_value>wardiiwwan keessaatti birsagaalee</bookmark_value>"
-#: 04060181.xhp
+#: 06020000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154663\n"
-"119\n"
+"06020000.xhp\n"
+"hd_id3159399\n"
+"1\n"
"help.text"
-msgid "<emph>Number</emph> is the value of the function."
-msgstr "<emph>Lakkofsi</emph> gatii fankishiniiti."
+msgid "Hyphenation"
+msgstr "Murfisa"
-#: 04060181.xhp
+#: 06020000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154569\n"
-"120\n"
+"06020000.xhp\n"
+"par_id3145068\n"
+"2\n"
"help.text"
-msgid "<emph>Lambda</emph> is the parameter value."
-msgstr "<emph>Lambda</emph>n gatii ullagaati."
+msgid "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\">The <emph>Hyphenation </emph>command calls the dialog for setting the hyphenation in $[officename] Calc.</ahelp></variable>"
+msgstr "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\">Murfisnii<emph>ajejjaa </emph>murfisa qindaa'inaa$[officename] keessaa shallaguuf qaqaa waama .</ahelp></variable>"
-#: 04060181.xhp
+#: 06020000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3147332\n"
-"121\n"
+"06020000.xhp\n"
+"par_id3154366\n"
+"3\n"
"help.text"
-msgid "<emph>C</emph> is a logical value that determines the form of the function. <emph>C = 0</emph> calculates the density function, and <emph>C = 1</emph> calculates the distribution."
-msgstr "<emph>C</emph>n gatii yaayaa kan akkataa fankishinii murteessu dha.<emph>C = 0</emph> rukkina fankishinii shallaga fi <emph>C = 1</emph> raabsa shallaga.."
+msgid "You can only turn on the automatic hyphenation in $[officename] Calc when the <link href=\"text/shared/01/05340300.xhp\" name=\"row break\">row break</link> feature is active."
+msgstr "Shallagii $[officename] keessaati ofiin murfisa qofa garagalchuu dandeesa <link href=\"text/shared/01/05340300.xhp\" name=\"row break\">cabni tarree</link> kolatii kaka'aa dha."
-#: 04060181.xhp
+#: 06020000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3146133\n"
-"122\n"
+"06020000.xhp\n"
+"hd_id3153192\n"
+"4\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Hyphenation for selected cells."
+msgstr "Man'eewwan filameef murfisa."
-#: 04060181.xhp
+#: 06020000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150357\n"
-"123\n"
+"06020000.xhp\n"
+"par_id3150868\n"
+"5\n"
"help.text"
-msgid "<item type=\"input\">=EXPONDIST(3;0.5;1)</item> returns 0.78."
-msgstr "<item type=\"input\">=EXPONDIST(3;0.5;1)</item> 0.78 kenna."
+msgid "Select the cells for which you want to change the hyphenation."
+msgstr "Man'eewwan murfisa jijjiruu barbaddu fili."
-#: 12040400.xhp
+#: 06020000.xhp
msgctxt ""
-"12040400.xhp\n"
+"06020000.xhp\n"
+"par_id3150440\n"
+"6\n"
+"help.text"
+msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
+msgstr "<emph>Meeshaalee - Afaan - Murfisa</emph> fili."
+
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"par_id3156441\n"
+"7\n"
+"help.text"
+msgid "The <emph>Format Cells</emph> dialog appears with the <emph>Alignment</emph> tab page open."
+msgstr "Man'eewwan dhangii<emph>n</emph> qaqnii <emph>Hiriira</emph> fuulaa tabii banamee waliin mul'ata."
+
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"par_id3149260\n"
+"12\n"
+"help.text"
+msgid "Mark the <emph>Wrap text automatically</emph> and <emph>Hyphenation active</emph> check boxes."
+msgstr "<emph>Baruu ofmaan mara</emph> malakata godhiitii sanduuqawwan mirkanneessa <emph>murfisa kakaasa</emph>."
+
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"hd_id3153094\n"
+"8\n"
+"help.text"
+msgid "Hyphenation for Drawing Objects"
+msgstr "Wantootaa Fakkasaf Murfisa"
+
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"par_id3148577\n"
+"9\n"
+"help.text"
+msgid "Select a drawing object."
+msgstr "Wantoo fakkasa fili"
+
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"par_id3156285\n"
+"10\n"
+"help.text"
+msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
+msgstr "<emph>Meeshaalee - Afaan - Murfisa</emph> fili."
+
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"par_id3147394\n"
+"11\n"
+"help.text"
+msgid "Each time you call the command you turn the hyphenation for the drawing object on or off. A check mark shows the current status."
+msgstr "Yeroo kamiiyyuu yoo ajejja wamtuu murfisa garagalchuun wantoo fakkasa bani ykn dhaamsi. Haalojiiwwan ammaa mallattoo mirkaneessan mul'isu."
+
+#: 06030000.xhp
+msgctxt ""
+"06030000.xhp\n"
"tit\n"
"help.text"
-msgid "Remove Filter"
-msgstr "Gingilchaa Haqi"
+msgid "Detective"
+msgstr "Argama"
-#: 12040400.xhp
+#: 06030000.xhp
msgctxt ""
-"12040400.xhp\n"
-"hd_id3153087\n"
+"06030000.xhp\n"
+"bm_id3151245\n"
+"help.text"
+msgid "<bookmark_value>cell links search</bookmark_value> <bookmark_value>searching; links in cells</bookmark_value> <bookmark_value>traces;precedents and dependents</bookmark_value> <bookmark_value>Formula Auditing,see Detective</bookmark_value> <bookmark_value>Detective</bookmark_value>"
+msgstr ""
+
+#: 06030000.xhp
+msgctxt ""
+"06030000.xhp\n"
+"hd_id3151245\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040400.xhp\" name=\"Remove Filter\">Remove Filter</link>"
-msgstr "<link href=\"text/scalc/01/12040400.xhp\" name=\"Remove Filter\">Gingilchaa haqi</link>"
+msgid "<link href=\"text/scalc/01/06030000.xhp\" name=\"Detective\">Detective</link>"
+msgstr "<link href=\"text/scalc/01/06030000.xhp\" name=\"Detective\">Argama</link>"
-#: 12040400.xhp
+#: 06030000.xhp
msgctxt ""
-"12040400.xhp\n"
-"par_id3154760\n"
+"06030000.xhp\n"
+"par_id3151211\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:DataFilterRemoveFilter\">Removes the filter from the selected cell range. To enable this command, click inside the cell area where the filter was applied.</ahelp>"
-msgstr "<ahelp hid=\".uno:DataFilterRemoveFilter\">Hammanga man'ee filataman irra gingilchaa haqa. Ajaja kana dandeessisuuf, naannoo mandhee iddoo gingilchaan irrattii dalagame keessaatti cuqaasi.</ahelp>"
+msgid "This command activates the Spreadsheet Detective. With the Detective, you can trace the dependencies from the current formula cell to the cells in the spreadsheet."
+msgstr "Ajajnii kun Argama Wardii kakaasa. Argama kanan, hirkattoota man'ee formulaa ammaa irraa man'eewwan wardii sakkatta'u dandeessa."
-#: func_edate.xhp
+#: 06030000.xhp
msgctxt ""
-"func_edate.xhp\n"
-"tit\n"
+"06030000.xhp\n"
+"par_id3150447\n"
+"3\n"
"help.text"
-msgid "EDATE"
-msgstr "EDATE"
+msgid "Once you have defined a trace, you can point with the mouse cursor to the trace. The mouse cursor will change its shape. Double-click the trace with this cursor to select the referenced cell at the end of the trace."
+msgstr "Yoo altokkoo hordoffii hiiktee, qaree hantuutteetin hordooffii agarsiisu dandeessa. Qareen hantuuttee boca isaa ni jijjira. Man'een wabeefamee dhuma irratti Sakatta'uuf hordoffii qaree lamacuqaasi."
-#: func_edate.xhp
+#: 06030100.xhp
msgctxt ""
-"func_edate.xhp\n"
-"bm_id3151184\n"
+"06030100.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>EDATE function</bookmark_value>"
-msgstr "<bookmark_value>fankishinii EDATE</bookmark_value>"
+msgid "Trace Precedents"
+msgstr "Dursitoota Sakatta'i"
-#: func_edate.xhp
+#: 06030100.xhp
msgctxt ""
-"func_edate.xhp\n"
-"hd_id3151184\n"
-"213\n"
+"06030100.xhp\n"
+"bm_id3155628\n"
"help.text"
-msgid "<variable id=\"edate\"><link href=\"text/scalc/01/func_edate.xhp\">EDATE</link></variable>"
-msgstr "<variable id=\"edate\"><link href=\"text/scalc/01/func_edate.xhp\">EDATE</link></variable>"
+msgid "<bookmark_value>cells; tracing precedents</bookmark_value><bookmark_value>formula cells;tracing precedents</bookmark_value>"
+msgstr "<bookmark_value>man'eewwan; dursitoota sakkatuu</bookmark_value><bookmark_value>man'eewwan foormulaa;dursitoota hordoofsisu</bookmark_value>"
-#: func_edate.xhp
+#: 06030100.xhp
msgctxt ""
-"func_edate.xhp\n"
-"par_id3150880\n"
-"214\n"
+"06030100.xhp\n"
+"hd_id3155628\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_EDATE\">The result is a date which is a number of m<emph>onths</emph> away from the <emph>start date</emph>. Only months are considered; days are not used for calculation.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_EDATE\">Firiin guyyaa <emph>ji'oota</emph> bay'ee <emph>aduu jalqabaa</emph> irraa fagaatu ta'a.Ji'oota qofa irratti xiyyefanna,guyyootni shallagiif hin barbachisaan.</ahelp>"
+msgid "<link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedents\">Trace Precedents</link>"
+msgstr "<link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedents\">dursitoota sakata'ii</link>"
-#: func_edate.xhp
+#: 06030100.xhp
msgctxt ""
-"func_edate.xhp\n"
-"hd_id3154647\n"
-"215\n"
+"06030100.xhp\n"
+"par_id3153542\n"
+"2\n"
"help.text"
-msgid "Syntax"
-msgstr "caasima"
+msgid "<ahelp hid=\".uno:ShowPrecedents\">This function shows the relationship between the current cell containing a formula and the cells used in the formula.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowPrecedents\">Fankishiniin kun hariiroo man'ee ammaa foormulaa qabatee fi man'eewwan foormulaa keessaatti fayyadaman agarsiisa.</ahelp>"
-#: func_edate.xhp
+#: 06030100.xhp
msgctxt ""
-"func_edate.xhp\n"
-"par_id3153212\n"
-"216\n"
+"06030100.xhp\n"
+"par_id3147265\n"
+"4\n"
"help.text"
-msgid "EDATE(StartDate; Months)"
-msgstr "EDATE(AduuJalqabaa; Ji'oota)"
+msgid "Traces are displayed in the sheet with marking arrows. At the same time, the range of all the cells contained in the formula of the current cell is highlighted with a blue frame."
+msgstr "Hordoffiin wardii keessaatti xiyyaalee mallatteesuu waliin mul'ata. Yerooma wal fakkattuuti, hangiin man'eewwanii kan foormulaa man'ee ammaa keessaatti qabatame godayyaa cuquleen shoolama."
-#: func_edate.xhp
+#: 06030100.xhp
msgctxt ""
-"func_edate.xhp\n"
-"par_id3146860\n"
-"217\n"
+"06030100.xhp\n"
+"par_id3154321\n"
+"3\n"
"help.text"
-msgid "<emph>StartDate</emph> is a date."
-msgstr "<emph>AduuJalqabaa</emph> aduu dha."
+msgid "This function is based on a principle of layers. For example, if the precedent cell to a formula is already indicated with a tracer arrow, when you repeat this command, the tracer arrows are drawn to the precedent cells of this cell."
+msgstr "Fankishiniin kun kaayoo dilgatoota irrati hunda'a. Fakkeenyaaf, yoo dursaan man'ee foormulaa durumaan xiyyaa hordofiittin agarsiifamee, yemmuu ajajja kana irra deebitu, xiyyyaan hordoffii dursittoota man'ee man'ee kanaf ni kafama."
-#: func_edate.xhp
+#: 06030200.xhp
msgctxt ""
-"func_edate.xhp\n"
-"par_id3152929\n"
-"218\n"
+"06030200.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
-msgstr "<emph>Ji'oota</emph> jechuun lakkoofsa ji'oota guyyaa jalqabaa duraa(negativii) ykn boodaa(pozaativii) ti."
+msgid "Remove Precedents"
+msgstr "Dursitoota haqi"
-#: func_edate.xhp
+#: 06030200.xhp
msgctxt ""
-"func_edate.xhp\n"
-"hd_id3151289\n"
-"219\n"
+"06030200.xhp\n"
+"bm_id3155628\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<bookmark_value>cells; removing precedents</bookmark_value><bookmark_value>formula cells;removing precedents</bookmark_value>"
+msgstr "<bookmark_value>man'eewwan; dursitoota haquu</bookmark_value><bookmark_value>man'eewwan foormulaa;dursitoota haquu</bookmark_value>"
-#: func_edate.xhp
+#: 06030200.xhp
msgctxt ""
-"func_edate.xhp\n"
-"par_id3155845\n"
-"220\n"
+"06030200.xhp\n"
+"hd_id3155628\n"
+"1\n"
"help.text"
-msgid "What date is one month prior to 3.31.2001?"
-msgstr "Aduun ji'a tokko 3.31.2001 dura jiru meeqa?"
+msgid "<link href=\"text/scalc/01/06030200.xhp\" name=\"Remove Precedents\">Remove Precedents</link>"
+msgstr "<link href=\"text/scalc/01/06030200.xhp\" name=\"Remove Precedents\">dursitoota haqii</link>"
-#: func_edate.xhp
+#: 06030200.xhp
msgctxt ""
-"func_edate.xhp\n"
-"par_id3155999\n"
-"221\n"
+"06030200.xhp\n"
+"par_id3149456\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=EDATE(3.31.2001;-1)</item> returns 2.28.2001."
-msgstr "<item type=\"input\">=EDATE(3.31.2001;-1)</item> 2.28.2001 kenna."
+msgid "<ahelp hid=\".uno:ClearArrowPrecedents\">Deletes one level of the trace arrows that were inserted with the <emph>Trace Precedents</emph> command.</ahelp>"
+msgstr "<ahelp hid=\".uno:ClearArrowPrecedents\">Deletes one level of the trace arrows that were inserted with the <emph>Trace Precedents</emph> command.</ahelp>"
-#: 12030100.xhp
+#: 06030300.xhp
msgctxt ""
-"12030100.xhp\n"
+"06030300.xhp\n"
"tit\n"
"help.text"
-msgid "Sort Criteria"
-msgstr "Ulaagaa Tartiiba Qabsiisa"
+msgid "Trace Dependents"
+msgstr "Hirkattoota sakkatta'i"
-#: 12030100.xhp
+#: 06030300.xhp
msgctxt ""
-"12030100.xhp\n"
-"bm_id3152350\n"
+"06030300.xhp\n"
+"bm_id3153252\n"
"help.text"
-msgid "<bookmark_value>sorting; sort criteria for database ranges</bookmark_value>"
-msgstr "<bookmark_value>tartiiba qabsiisa;hangiiwwan kuusaa deetaaf ulaagaa tartiibaa qabsiisaa</bookmark_value>"
+msgid "<bookmark_value>cells; tracing dependents</bookmark_value>"
+msgstr "<bookmark_value>man'eewwan; hirkatoota sakkatta'uu</bookmark_value>"
-#: 12030100.xhp
+#: 06030300.xhp
msgctxt ""
-"12030100.xhp\n"
-"hd_id3152350\n"
+"06030300.xhp\n"
+"hd_id3153252\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12030100.xhp\" name=\"Sort Criteria\">Sort Criteria</link>"
-msgstr "<link href=\"text/scalc/01/12030100.xhp\" name=\"Sort Criteria\">Ulaagaa Tartiiba Qabsiisaa</link>"
+msgid "<link href=\"text/scalc/01/06030300.xhp\" name=\"Trace Dependents\">Trace Dependents</link>"
+msgstr "<link href=\"text/scalc/01/06030300.xhp\" name=\"Trace Dependents\">hirkatoota sakkatta'i</link>"
-#: 12030100.xhp
+#: 06030300.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3151385\n"
+"06030300.xhp\n"
+"par_id3156024\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortcriteria/SortCriteriaPage\">Specify the sorting options for the selected range.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sortcriteria/SortCriteriaPage\">Hangii filameef dirqalaalee tartiiba qabsiisan ifteessi.</ahelp>"
+msgid "<ahelp hid=\".uno:ShowDependents\" visibility=\"visible\">Draws tracer arrows to the active cell from formulas that depend on values in the active cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowDependents\" visibility=\"visible\">n man'ee kaka'aan kan gatiiwwan man'ee kaka'aa irrati hundaa'u xiyyaalee hordoffii ni kaasa.</ahelp>"
-#: 12030100.xhp
+#: 06030300.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3152462\n"
-"24\n"
+"06030300.xhp\n"
+"par_id3148948\n"
+"4\n"
"help.text"
-msgid "Ensure that you include any row and column titles in the selection."
-msgstr "Matadureewwan tarjaa fi tarree kamiyyu filannoo kana keessaatti akka haammatamu mirkaneessi."
+msgid "The area of all cells that are used together with the active cell in a formula is highlighted by a blue frame."
+msgstr "Iddoon man'eewwanii hundii man'ee kaka'aa foormulaa keessaa waliin godayyaa cuquleen shoolama."
-#: 12030100.xhp
+#: 06030300.xhp
msgctxt ""
-"12030100.xhp\n"
-"hd_id3147428\n"
+"06030300.xhp\n"
+"par_id3151112\n"
"3\n"
"help.text"
-msgid "Sort by"
-msgstr "Ittiin tartiiba qabsiisi"
+msgid "This function works per level. For instance, if one level of traces has already been activated to show the precedents (or dependents), then you would see the next dependency level by activating the <emph>Trace</emph> function again."
+msgstr "Fankishiniin kun akka sadarkaati hojjeta. Fakkeenyaaf,yoo hordoffiin sadarkaa tokkoon dursiitoota mul'isuuf dursee kaka'ee(ykn hirkattoota), kanati aansuudhaan fankishiniin <emph>Hordofii</emph> kakasuun sadarkaa hirkatina illaali."
-#: 12030100.xhp
+#: 06030400.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3155854\n"
-"4\n"
+"06030400.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortkey/sortlb\">Select the column that you want to use as the primary sort key.</ahelp>"
-msgstr ""
+msgid "Remove Dependents"
+msgstr "Hirkattoota Haqi"
-#: 12030100.xhp
+#: 06030400.xhp
msgctxt ""
-"12030100.xhp\n"
-"hd_id3146121\n"
-"5\n"
+"06030400.xhp\n"
+"bm_id3147335\n"
"help.text"
-msgid "Ascending"
-msgstr "Gadee"
+msgid "<bookmark_value>cells; removing dependents</bookmark_value>"
+msgstr "<bookmark_value>Man'eewwan; hirkattoota haquun</bookmark_value>"
-#: 12030100.xhp
+#: 06030400.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3148645\n"
-"6\n"
+"06030400.xhp\n"
+"hd_id3147335\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortkey/up\">Sorts the selection from the lowest value to the highest value. The sorting rules are given by the locale. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages."
-msgstr ""
+msgid "<link href=\"text/scalc/01/06030400.xhp\" name=\"Remove Dependents\">Remove Dependents</link>"
+msgstr "<link href=\"text/scalc/01/06030400.xhp\" name=\"Remove Dependents\">Hirkattoota Haqi</link>"
-#: 12030100.xhp
+#: 06030400.xhp
msgctxt ""
-"12030100.xhp\n"
-"hd_id3155411\n"
-"7\n"
+"06030400.xhp\n"
+"par_id3148663\n"
+"2\n"
"help.text"
-msgid "Descending"
-msgstr "Gadee"
+msgid "<ahelp visibility=\"visible\" hid=\".uno:ClearArrowDependents\">Deletes one level of tracer arrows created with <emph>Trace Dependents</emph>.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:ClearArrowDependents\">Sadarkaa tokko xiyyoota faaneesaa <emph>Hirkattoota Sakkatta'i</emph> waliin uumame haqi.</ahelp>"
-#: 12030100.xhp
+#: 06030500.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3151075\n"
-"8\n"
+"06030500.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortkey/down\">Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages."
-msgstr ""
+msgid "Remove All Traces"
+msgstr "Hordoffii Mara Haqi"
-#: 12030100.xhp
+#: 06030500.xhp
msgctxt ""
-"12030100.xhp\n"
-"hd_id3154492\n"
-"9\n"
+"06030500.xhp\n"
+"bm_id3153088\n"
"help.text"
-msgid "Then by"
-msgstr "Sanaa booda kanaan"
+msgid "<bookmark_value>cells; removing traces</bookmark_value>"
+msgstr "<bookmark_value>Man'eewwan; hirkattoota haquun</bookmark_value>"
-#: 12030100.xhp
+#: 06030500.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3156283\n"
-"10\n"
+"06030500.xhp\n"
+"hd_id3153088\n"
+"1\n"
"help.text"
-msgid "Select the column that you want to use as the secondary sort key."
-msgstr ""
+msgid "<link href=\"text/scalc/01/06030500.xhp\" name=\"Remove All Traces\">Remove All Traces</link>"
+msgstr "<link href=\"text/scalc/01/06030500.xhp\" name=\"Remove All Traces\">Hordoffii Mara Haqi</link>"
-#: 12030100.xhp
+#: 06030500.xhp
msgctxt ""
-"12030100.xhp\n"
-"hd_id3149413\n"
-"11\n"
+"06030500.xhp\n"
+"par_id3151246\n"
+"2\n"
"help.text"
-msgid "Ascending"
-msgstr "Olee"
+msgid "<ahelp hid=\".uno:ClearArrows\" visibility=\"visible\">Removes all tracer arrows from the spreadsheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:ClearArrows\" visibility=\"visible\">Wardii keessaa xiyyoota faaneessaa hunda haqi.</ahelp>"
-#: 12030100.xhp
+#: 06030600.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3154018\n"
-"12\n"
+"06030600.xhp\n"
+"tit\n"
"help.text"
-msgid "Sorts the selection from the lowest value to the highest value. You can define the sort rules on Data - Sort - Options. You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
-msgstr ""
+msgid "Trace Error"
+msgstr "Dogoggora Sakkatta'i"
-#: 12030100.xhp
+#: 06030600.xhp
msgctxt ""
-"12030100.xhp\n"
-"hd_id3146972\n"
-"13\n"
+"06030600.xhp\n"
+"bm_id3153561\n"
"help.text"
-msgid "Descending"
-msgstr "Gadee"
+msgid "<bookmark_value>cells; tracing errors</bookmark_value><bookmark_value>tracing errors</bookmark_value><bookmark_value>error tracing</bookmark_value>"
+msgstr "<bookmark_value>Man'eewwan; dogoggoroota sakkatta'u</bookmark_value><bookmark_value>dogoggoroota sakkatta'u</bookmark_value><bookmark_value>sakkatta'insa dogoggoraa</bookmark_value>"
-#: 12030100.xhp
+#: 06030600.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3145640\n"
-"14\n"
+"06030600.xhp\n"
+"hd_id3153561\n"
+"1\n"
"help.text"
-msgid "Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options. You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
-msgstr ""
+msgid "<link href=\"text/scalc/01/06030600.xhp\" name=\"Trace Error\">Trace Error</link>"
+msgstr "<link href=\"text/scalc/01/06030600.xhp\" name=\"Trace Error\">Dogoggora Sakkatta'i</link>"
-#: 12030100.xhp
+#: 06030600.xhp
msgctxt ""
-"12030100.xhp\n"
-"hd_id3150300\n"
-"21\n"
+"06030600.xhp\n"
+"par_id3148550\n"
+"2\n"
"help.text"
-msgid "Sort Ascending/Descending"
-msgstr "Olee/Gadee Foo'i"
+msgid "<ahelp hid=\".uno:ShowErrors\" visibility=\"visible\">Draws tracer arrows to all precedent cells which cause an error value in a selected cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowErrors\" visibility=\"visible\">Man'eewwan dursaa hundaa gatii dogoggoraa man'ee filameetti kan fiduuf sababa ta'u xiyyoota faanessaa kaachisa.</ahelp>"
-#: 12030100.xhp
+#: 06030700.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3158212\n"
-"22\n"
+"06030700.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".uno:SortDescending\"><variable id=\"sytext\">Sorts the selection from the highest to the lowest value, or from the lowest to the highest value. Number fields are sorted by size and text fields by the order of the characters. You can define the sort rules on Data - Sort - Options.</variable></ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
-msgstr ""
+msgid "Fill Mode"
+msgstr "Haalata Guuti"
-#: 12030100.xhp
+#: 06030700.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3159236\n"
-"25\n"
+"06030700.xhp\n"
+"bm_id3145119\n"
"help.text"
-msgid "Icons on the <emph>Standard</emph> toolbar"
-msgstr "Sajoowwan kamshaa <emph>Waaltina</emph> irraa"
+msgid "<bookmark_value>cells; trace fill mode</bookmark_value><bookmark_value>traces; precedents for multiple cells</bookmark_value>"
+msgstr "<bookmark_value>Man'eewwan; halaata guuti sakkatta'i</bookmark_value><bookmark_value>sakkatta'a; man'eewwan baay'eef dursiitoota</bookmark_value>"
-#: 04010100.xhp
+#: 06030700.xhp
msgctxt ""
-"04010100.xhp\n"
+"06030700.xhp\n"
+"hd_id3145119\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06030700.xhp\" name=\"Fill Mode\">Fill Mode</link>"
+msgstr "<link href=\"text/scalc/01/06030700.xhp\" name=\"Fill Mode\">Haalata Guuti</link>"
+
+#: 06030700.xhp
+msgctxt ""
+"06030700.xhp\n"
+"par_id3151246\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:AuditingFillMode\">Activates the Fill Mode in the Detective. The mouse pointer changes to a special symbol, and you can click any cell to see a trace to the precedent cell.</ahelp> To exit this mode, press Escape or click the <emph>End Fill Mode</emph> command in the context menu."
+msgstr "<ahelp hid=\".uno:AuditingFillMode\">Argamatti haalata guuti kakaasa. Akeektuun hantuutee mallattoo addaatti jijjiramu, sakkata'insa man'ee dursaa ilaaluuf man'ee kamiyyuu cuqaasuu dandeessa.</ahelp> Haalata kana keessaa bahuuf, Cufiinsaa dhiibi ykn ajaja <emph>Dhuma Haalata Guuti</emph> baafata halqara keessaa cuqaasi."
+
+#: 06030700.xhp
+msgctxt ""
+"06030700.xhp\n"
+"par_id3151211\n"
+"3\n"
+"help.text"
+msgid "The <emph>Fill Mode</emph> function is identical to the <link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedent\">Trace Precedent</link> command if you call this mode for the first time. Use the context menu to select further options for the Fill Mode and to exit this mode."
+msgstr "Haalata kana si'aa jalqabaaf yoo waamta ta'ee, faankishiinin <emph>Haalata Guuti</emph> ajaja <link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedent\">Sakkatta'ii Dursaa</link> waliin walfakkaata.Dirqalaalee dabalata haalata guuti fi halaata kana bahii filachuuf bafata halqara fayyadami."
+
+#: 06030800.xhp
+msgctxt ""
+"06030800.xhp\n"
"tit\n"
"help.text"
-msgid "Row Break"
-msgstr "Cita Tarree"
+msgid "Mark Invalid Data"
+msgstr "Deetaa Fashaalaawaa Mallatteessi"
-#: 04010100.xhp
+#: 06030800.xhp
msgctxt ""
-"04010100.xhp\n"
+"06030800.xhp\n"
"bm_id3153821\n"
"help.text"
-msgid "<bookmark_value>sheets; inserting row breaks</bookmark_value><bookmark_value>row breaks; inserting</bookmark_value><bookmark_value>inserting; manual row breaks</bookmark_value><bookmark_value>manual row breaks</bookmark_value>"
-msgstr "<bookmark_value>wardiiwwan;citoota tarree saaguu</bookmark_value><bookmark_value>citoota tarree;saaguu</bookmark_value><bookmark_value>saaguu;citoota hujeeka tarree</bookmark_value><bookmark_value>citoota hujeeka tarree</bookmark_value>"
+msgid "<bookmark_value>cells; invalid data</bookmark_value><bookmark_value>data; showing invalid data</bookmark_value><bookmark_value>invalid data;marking</bookmark_value>"
+msgstr "<bookmark_value>Man'eewwan; deetaa fashaalaawaa</bookmark_value><bookmark_value>deetaa; deetaa fashaalaawaa agarsiisuu</bookmark_value><bookmark_value>deetaa fashaalaawaa; mallatteessuu</bookmark_value>"
-#: 04010100.xhp
+#: 06030800.xhp
msgctxt ""
-"04010100.xhp\n"
+"06030800.xhp\n"
"hd_id3153821\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04010100.xhp\" name=\"Row Break\">Row Break</link>"
-msgstr "<link href=\"text/scalc/01/04010100.xhp\" name=\"Row Break\">Cita Tarree</link>"
+msgid "<link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\">Mark Invalid Data</link>"
+msgstr "<link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\">Deetaa Fashaalaawaa Mallaatteessi</link>"
-#: 04010100.xhp
+#: 06030800.xhp
msgctxt ""
-"04010100.xhp\n"
-"par_id3149656\n"
+"06030800.xhp\n"
+"par_id3147264\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:InsertRowBreak\">Inserts a row break (horizontal page break) above the selected cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:InsertRowBreak\">Man'ee filatamee olitti cita tarree (cita fuulaa surdalaa) saaga.</ahelp>"
+msgid "<ahelp hid=\".uno:ShowInvalid\" visibility=\"visible\">Marks all cells in the sheet that contain values outside the validation rules.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowInvalid\" visibility=\"visible\">Barruu keessatti gatiiwwan man'eewwanii seerota mirkaaneessaa alaa ta'aa hundaa mallatteessi.</ahelp>"
-#: 04010100.xhp
+#: 06030800.xhp
msgctxt ""
-"04010100.xhp\n"
-"par_id3156422\n"
+"06030800.xhp\n"
+"par_id3151211\n"
"3\n"
"help.text"
-msgid "The manual row break is indicated by a dark blue horizontal line."
-msgstr "Citni hujeeka tarree sarara surdalaa bifa cuquliisa dukkanaawaatiin mul'ata."
+msgid "The <link href=\"text/scalc/01/12120000.xhp\" name=\"validity rules\">validity rules</link> restrict the input of numbers, dates, time values and text to certain values. However, it is possible to enter invalid values or copy invalid values into the cells if the <emph>Stop</emph> option is not selected. When you assign a validity rule, existing values in a cell will not be modified."
+msgstr "<link href=\"text/scalc/01/12120000.xhp\" name=\"validity rules\">Seeroota Mkirkanneessaa</link>naqaan lakkoofsota,aduuwwan,gatii yeroo, fi barruu gara gatii murta'atti ittisa.Hata'uu malee, yoo dirqalli <emph>Dhaabi</emph> hin filatamnee,gatiiwwan fashaalaawaa ykn garagalcha gatiiwwan fashaalaawaa gara man'eewwanitti galchuun ni danda'ama.Yommuu seera mirkanneessa keessu,gatiin duraa man'ee keessaa jiru hin harromfamu."
-#: 04060101.xhp
+#: 06030900.xhp
msgctxt ""
-"04060101.xhp\n"
+"06030900.xhp\n"
"tit\n"
"help.text"
-msgid "Database Functions"
-msgstr "Faankishinoota Kuusdeetaa"
+msgid "Refresh Traces"
+msgstr "Hordoffii Haroomsi"
-#: 04060101.xhp
+#: 06030900.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3148946\n"
+"06030900.xhp\n"
+"bm_id3152349\n"
"help.text"
-msgid "<bookmark_value>Function Wizard; databases</bookmark_value> <bookmark_value>functions; database functions</bookmark_value> <bookmark_value>databases; functions in $[officename] Calc</bookmark_value>"
-msgstr "<bookmark_value>Masaka Faankishinii; kuusdeetaa</bookmark_value> <bookmark_value>faankishinoota; faankishinoota kuusdeetaa</bookmark_value> <bookmark_value>kuusdeetota; faankishinoota $[officename] Calc</bookmark_value> keessaa"
+msgid "<bookmark_value>cells; refreshing traces</bookmark_value><bookmark_value>traces; refreshing</bookmark_value><bookmark_value>updating;traces</bookmark_value>"
+msgstr "<bookmark_value>Man'eewwan; hordooffii haroomsuu</bookmark_value><bookmark_value>hordooffii;haroomsuu</bookmark_value><bookmark_value>ammayyomsu; hordoffii</bookmark_value>"
-#: 04060101.xhp
+#: 06030900.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3148946\n"
+"06030900.xhp\n"
+"hd_id3152349\n"
"1\n"
"help.text"
-msgid "Database Functions"
-msgstr "Faankishinoota kuusdeetaa"
+msgid "<link href=\"text/scalc/01/06030900.xhp\" name=\"Refresh Traces\">Refresh Traces</link>"
+msgstr "<link href=\"text/scalc/01/06030900.xhp\" name=\"Refresh Traces\">Hordoffii Haroomsi</link>"
-#: 04060101.xhp
+#: 06030900.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145173\n"
+"06030900.xhp\n"
+"par_id3148947\n"
"2\n"
"help.text"
-msgid "<variable id=\"datenbanktext\">This section deals with functions used with data organized as one row of data for one record. </variable>"
-msgstr "<variable id=\"datenbanktext\">kutaan kun faankkishinoota deetaa akka deetaa tarree tokkotti galmee tokkoof gurmaa'e waliin fayyadamaman ibsa.</variable>"
+msgid "<ahelp hid=\".uno:RefreshArrows\">Redraws all traces in the sheet. Formulas modified when traces are redrawn are taken into account.</ahelp>"
+msgstr "<ahelp hid=\".uno:RefreshArrows\">Hordoffii mara barruu keessatti lamkaasi. Yommuu hordooffiwwan hojii irra oolan, foormulaawwan ni haarefamu.</ahelp>"
-#: 04060101.xhp
+#: 06030900.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154016\n"
-"186\n"
+"06030900.xhp\n"
+"par_id3148798\n"
+"3\n"
"help.text"
-msgid "The Database category may be confused with a database integrated in $[officename]. However, there is no connection between a database in $[officename] and the Database category in $[officename] Calc."
-msgstr "Akaakuun kuusdeetaa,kuusdeetaa$[officename] keessatti tokkummaa'eetiin jaanja'uu ni danda'a.Haata'u malee,kuusdeetaa $[officename] keessa jiruu fi akaakuu kuusdeetaa $[officename] Calc keessa jiru gidduu wal quunnamtiin hin jiru."
+msgid "Detective arrows in the document are updated under the following circumstances:"
+msgstr "Argamni xiyyoowwani galmee keesaa haloota armaan gadii irratti hunda'uun hareefama:"
-#: 04060101.xhp
+#: 06030900.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3150329\n"
-"190\n"
+"06030900.xhp\n"
+"par_id3153192\n"
+"4\n"
"help.text"
-msgid "Example Data:"
-msgstr "Fakkeenya Deetaa"
+msgid "Starting <emph>Tools - Detective - Update Refresh Traces</emph>"
+msgstr "<emph>Meeshaalee - Argama - Hordoffiiwwan Haroomsi Ammayyoomsi</emph> eegaluun"
-#: 04060101.xhp
+#: 06030900.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153713\n"
-"191\n"
+"06030900.xhp\n"
+"par_id3151041\n"
+"5\n"
"help.text"
-msgid "The following data will be used in some of the function description examples:"
-msgstr "Deetaan armaan gadii fakkeenyota ibsa faankishinii muraasa keessatti fayyaduu ni danda'a."
+msgid "If <emph>Tools - Detective - Update Automatically</emph> is turned on, every time formulas are changed in the document."
+msgstr "Yoo <emph>Meeshaalee - Argama - Ofumaan haaroomsi</emph> banamee,yeroo hundaa formulaawwan galmee keessa ni jijjiramu."
-#: 04060101.xhp
+#: 06031000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155766\n"
+"06031000.xhp\n"
+"tit\n"
+"help.text"
+msgid "AutoRefresh"
+msgstr "OfiinHaroomsaa"
+
+#: 06031000.xhp
+msgctxt ""
+"06031000.xhp\n"
+"bm_id3154515\n"
+"help.text"
+msgid "<bookmark_value>cells; autorefreshing traces</bookmark_value><bookmark_value>traces; autorefreshing</bookmark_value>"
+msgstr "<bookmark_value>Man'eewwan; hordoffii ofiinharoomsa</bookmark_value><bookmark_value>Hordoffiiwwan; ofiinhaaroomsa</bookmark_value>"
+
+#: 06031000.xhp
+msgctxt ""
+"06031000.xhp\n"
+"hd_id3154515\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06031000.xhp\" name=\"AutoRefresh\">AutoRefresh</link>"
+msgstr "<link href=\"text/scalc/01/06031000.xhp\" name=\"AutoRefresh\">Ofiinharoomsa</link>"
+
+#: 06031000.xhp
+msgctxt ""
+"06031000.xhp\n"
+"par_id3147264\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:AutoRefreshArrows\" visibility=\"visible\">Automatically refreshes all the traces in the sheet whenever you modify a formula.</ahelp>"
+msgstr "<ahelp hid=\".uno:AutoRefreshArrows\" visibility=\"visible\">Yommuu formulaa foyyeessitu,hordoffiiwwan galmee keesssaa huunda ofumaan hareessa.</ahelp>"
+
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Goal Seek"
+msgstr "Barbaacha Galchii"
+
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"hd_id3155629\n"
+"1\n"
+"help.text"
+msgid "Goal Seek"
+msgstr "Barbaacha Galchii"
+
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"par_id3145119\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"zielwertsuchetext\"><ahelp hid=\".uno:GoalSeekDialog\">Opens a dialog where you can solve an equation with a variable.</ahelp></variable> After a successful search, a dialog with the results opens, allowing you to apply the result and the target value directly to the cell."
+msgstr "<variable id=\"zielwertsuchetext\"><ahelp hid=\".uno:GoalSeekDialog\">Bakka itti qixaattoon jijjiramoota waliin itti furu dandeessu qaaqa bana.</ahelp></variable> Barbaacha milkaa'aa boodaa,qaaqa firriiwwan waliin bana,gatii firii galiinsa kallattiin akka man'eetti agarsiistu si eeyyama."
+
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"hd_id3149656\n"
"3\n"
"help.text"
-msgid "The range A1:E10 lists the children invited to Joe's birthday party. The following information is given for each entry: column A shows the name, B the grade, then age in years, distance to school in meters and weight in kilograms."
-msgstr "Hangiin A1:E10 daa'imman kabaja guyyaa dhaloota 'Joe'f afeeraman tarreessa.Odeeffannoon armaan gadii tokko tokkkoo galiinsaaf kennama:tarjaan A maqaa agarsiisa, Bn kutaa, sana booda ummurii waggaadhaan, fageenya mana barumsaattii meetiraan fi ulfaatina kiloogiraamaan."
+msgid "Default"
+msgstr "Durtii"
-#: 04060101.xhp
+#: 06040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145232\n"
+"06040000.xhp\n"
+"par_id3151211\n"
"4\n"
"help.text"
-msgid "A"
-msgstr "A"
+msgid "In this section, you can define the variables in your formula."
+msgstr "Kutaa kana keessatti,jijjiramoota formuulaa kee keessatti hiiku dandeessa."
-#: 04060101.xhp
+#: 06040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3146316\n"
+"06040000.xhp\n"
+"hd_id3150869\n"
"5\n"
"help.text"
-msgid "B"
-msgstr "B"
+msgid "Formula cell"
+msgstr "formuulaa man'ee"
-#: 04060101.xhp
+#: 06040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150297\n"
+"06040000.xhp\n"
+"par_id3153194\n"
"6\n"
"help.text"
-msgid "C"
-msgstr "C"
+msgid "<ahelp hid=\"modules/scalc/ui/goalseekdlg/formulaedit\">In the formula cell, enter the reference of the cell which contains the formula. It contains the current cell reference.</ahelp> Click another cell in the sheet to apply its reference to the text box."
+msgstr "<ahelp hid=\"modules/scalc/ui/goalseekdlg/formulaedit\"> formuulaa man'ee keessatti,wabii man'ee kan formuulaa qabatee galchii. wabii man'ee ammaa of keessatti qabata.</ahelp> Wabii man'ee sanduuqni barruu akka fayyadamuuf man'ee gara bira wardii keessa cuqaasi."
-#: 04060101.xhp
+#: 06040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150344\n"
+"06040000.xhp\n"
+"hd_id3154685\n"
"7\n"
"help.text"
-msgid "D"
-msgstr "D"
+msgid "Target value"
+msgstr "Gatii galtee"
-#: 04060101.xhp
+#: 06040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150785\n"
+"06040000.xhp\n"
+"par_id3146984\n"
"8\n"
"help.text"
-msgid "E"
-msgstr "E"
+msgid "<ahelp hid=\"modules/scalc/ui/goalseekdlg/target\">Specifies the value you want to achieve as a new result.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/goalseekdlg/target\">Gatii akka bu'aa haraatti argachuu barbaaddu ifteessi.</ahelp>"
-#: 04060101.xhp
+#: 06040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150090\n"
+"06040000.xhp\n"
+"hd_id3150012\n"
"9\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "Variable cell"
+msgstr "Man'ee jijjiramaa"
-#: 04060101.xhp
+#: 06040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3152992\n"
+"06040000.xhp\n"
+"par_id3147427\n"
"10\n"
"help.text"
-msgid "<item type=\"input\">Name</item>"
-msgstr "<item type=\"input\">Maqaa</item>"
+msgid "<ahelp hid=\"modules/scalc/ui/goalseekdlg/varedit\">Specifies the reference for the cell that contains the value you want to adjust in order to reach the target.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/goalseekdlg/varedit\">Wabii man'ee huundaaf man'ee galumsa ga'uuf Gatii sirreessaa barbaaddu qabatee ifteessi.</ahelp>"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155532\n"
-"11\n"
+"06050000.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">Grade</item>"
-msgstr "<item type=\"input\">Kutaa</item>"
+msgid "Create Scenario"
+msgstr "Mul'inoota Uumi"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3156448\n"
-"12\n"
+"06050000.xhp\n"
+"hd_id3156023\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">Age</item>"
-msgstr "<item type=\"input\">Umurii</item>"
+msgid "Create Scenario"
+msgstr "Mul'inoota Uumi"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154486\n"
+"06050000.xhp\n"
+"par_id3150541\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"szenariotext\"><ahelp hid=\".uno:ScenarioManager\">Defines a scenario for the selected sheet area.</ahelp></variable>"
+msgstr "<variable id=\"szenariotext\"><ahelp hid=\".uno:ScenarioManager\">Bakka wardii filatamaniif mul'inota hiika.</ahelp></variable>"
+
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_idN10637\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/guide/scenario.xhp#scenario\"/>"
+msgstr "<embedvar href=\"text/scalc/guide/scenario.xhp#scenario\"/>"
+
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"hd_id3156280\n"
+"3\n"
+"help.text"
+msgid "Name of scenario"
+msgstr "Maqaa mul'inoota"
+
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_id3151041\n"
"13\n"
"help.text"
-msgid "<item type=\"input\">Distance to School</item>"
-msgstr "<item type=\"input\">Fageenya Mana barumsaattii</item>"
+msgid "<ahelp hid=\"HID_SC_SCENWIN_TOP\">Defines the name for the scenario. Use a clear and unique name so you can easily identify the scenario.</ahelp> You can also modify a scenario name in the Navigator through the <emph>Properties </emph>context menu command."
+msgstr "<ahelp hid=\"HID_SC_SCENWIN_TOP\">Mul'inootaaf maqaa hiiki.Mul'inoota haala salphaan adda basuu akka dandeessuuf haqii ykn maqaa addaa fayyadami.</ahelp> Akkasumaas maqaa mul'inoota Karaa ajaja baafata hanqara <emph>Amaloota</emph> naannessa jedhuun foyyeessuu dandeessa."
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3152899\n"
+"06050000.xhp\n"
+"hd_id3153954\n"
"14\n"
"help.text"
-msgid "<item type=\"input\">Weight</item>"
-msgstr "<item type=\"input\">Ulfaatina</item>"
+msgid "Comment"
+msgstr "Yaada"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153816\n"
+"06050000.xhp\n"
+"par_id3155411\n"
"15\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<ahelp hid=\"HID_SC_SCENWIN_BOTTOM\">Specifies additional information about the scenario. This information will be displayed in the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> when you click the <emph>Scenarios</emph> icon and select the desired scenario.</ahelp> You can also modify this information in the Navigator through the <emph>Properties </emph>context menu command."
+msgstr "<ahelp hid=\"HID_SC_SCENWIN_BOTTOM\">Odeeffanno dabbalataa mul'inootaa ifteessa. Odeeffannoon kunis <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Naanna'aa</link> keessatti kan agarsiifamu yommuu sajoo <emph>Mul'inoota</emph> cuuqastuu fi mul'inoota barbaaddu filtudha. </ahelp> Akkasumaas odeeffannoo kana karaa ajaja baafata hanqara <emph>Amaloota </emph> nanneessa keessatti foyyeessu dandeessa."
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3151240\n"
+"06050000.xhp\n"
+"hd_id3145273\n"
"16\n"
"help.text"
-msgid "<item type=\"input\">Andy</item>"
-msgstr "<item type=\"input\">Andy</item>"
+msgid "Settings"
+msgstr "Qidaa'inoota"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3156016\n"
+"06050000.xhp\n"
+"par_id3153364\n"
"17\n"
"help.text"
-msgid "<item type=\"input\">3</item>"
-msgstr "<item type=\"input\">3</item>"
+msgid "This section is used to define some of the settings used in the scenario display."
+msgstr "Kutaan kun gariin qindaa'inoota mul'inoota agarsiisuuf oolan hiikuuf fayyada."
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145073\n"
+"06050000.xhp\n"
+"hd_id3145367\n"
"18\n"
"help.text"
-msgid "<item type=\"input\">9</item>"
-msgstr "<item type=\"input\">9</item>"
+msgid "Display border"
+msgstr "Handaara agarsiisaa"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154956\n"
+"06050000.xhp\n"
+"par_id3151073\n"
"19\n"
"help.text"
-msgid "<item type=\"input\">150</item>"
-msgstr "<item type=\"input\">150</item>"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NEWSCENARIO:LB_COLOR\">Highlights the scenario in your table with a border. The color for the border is specified in the field to the right of this option.</ahelp> The border will have a title bar displaying the name of the last scenario. The button on the right of the scenario border offers you an overview of all the scenarios in this area, if several have been defined. You can choose any of the scenarios from this list without restrictions."
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NEWSCENARIO:LB_COLOR\">mil'inoota gabatee kee keessa dangaa waliin jiruu gadii ilaala. haluun dangaa dirreewwan dirqala gara mirgaatti jiran irraatti iftaayee.</ahelp> Handaarri cancala mataduree maqaa mul'inaa dhumaa agarsiisu of keessaa qaba.Yoo baay'een isaa hiikame,qabdoon gara mirgaa handaara mil'inaatti argamu mul'inoota nannoo kanatti argaman akkaa iirra gadii ilaaltuu sii heyyama.Tarree keessa mul'inoota barbaaddee ittisa malee filachuu dandeessa."
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153976\n"
+"06050000.xhp\n"
+"hd_id3149582\n"
"20\n"
"help.text"
-msgid "<item type=\"input\">40</item>"
-msgstr "<item type=\"input\">40</item>"
+msgid "Copy back"
+msgstr "Duubatti garagalcha"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150894\n"
+"06050000.xhp\n"
+"par_id3154942\n"
"21\n"
"help.text"
-msgid "3"
-msgstr "3"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_TWOWAY\">Copies the values of cells that you change into the active scenario. If you do not select this option, the scenario is not changed when you change cell values. The behavior of the <emph>Copy back</emph> setting depends on the cell protection, the sheet protection, and the <emph>Prevent changes</emph> settings.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_TWOWAY\">Gatiiwwan man'eewwanii mul'inoota ka'aatti jijjirtee garagalcha.Yoo dirqaalaa kana filachuu dhiiste,yommuu gatiiwwan man'ee jijjiramu mul'inni hin jijjiramu.Amalli qindaa'inaa <emph>Duubatti Garagalcha</emph> ittisa man'ee, ittisa wardii, fi qindaa'inoota <emph>Jijjiramoota dhorki</emph> irratti hundaa'a.</ahelp>"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3152870\n"
+"06050000.xhp\n"
+"hd_id3149402\n"
"22\n"
"help.text"
-msgid "<item type=\"input\">Betty</item>"
-msgstr "<item type=\"input\">Betty</item>"
+msgid "Copy entire sheet"
+msgstr "Wardii waamaraa garagalchi"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149692\n"
+"06050000.xhp\n"
+"par_id3146969\n"
"23\n"
"help.text"
-msgid "<item type=\"input\">4</item>"
-msgstr "<item type=\"input\">4</item>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_COPYALL\">Copies the entire sheet into an additional scenario sheet. </ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_COPYALL\">Wardii mul'inaa dabalataatti wardii waamaraa garagalcha. </ahelp>"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154652\n"
-"24\n"
+"06050000.xhp\n"
+"par_idN1075A\n"
"help.text"
-msgid "<item type=\"input\">10</item>"
-msgstr "<item type=\"input\">10</item>"
+msgid "Prevent changes"
+msgstr "Jijjiramoota dhorki"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149381\n"
-"25\n"
+"06050000.xhp\n"
+"par_idN1075E\n"
"help.text"
-msgid "<item type=\"input\">1000</item>"
-msgstr "<item type=\"input\">1000</item>"
+msgid "<ahelp hid=\"sc:CheckBox:RID_SCDLG_NEWSCENARIO:CB_PROTECT\">Prevents changes to the active scenario. The behavior of the <emph>Copy back</emph> setting depends on the cell protection, the sheet protection, and the <emph>Prevent changes</emph> settings.</ahelp>"
+msgstr "<ahelp hid=\"sc:CheckBox:RID_SCDLG_NEWSCENARIO:CB_PROTECT\">Jijjirama mul'inaa ka'aa dhorka.Amalli qindaa'ina <emph>Duubatti garagalchaa</emph> ittisa man'ee, ittisa wardii, fi qindaa'inoota <emph>Jijjiramoota dhorki</emph> irratti hundaa'a.</ahelp>"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153812\n"
-"26\n"
+"06050000.xhp\n"
+"par_idN10778\n"
"help.text"
-msgid "<item type=\"input\">42</item>"
-msgstr "<item type=\"input\">42</item>"
+msgid "You can only change the scenario properties if the <emph>Prevent changes</emph> option is not selected and if the sheet is not protected."
+msgstr "Amaloota mul'inaa jijjiruu kan dandeessu, yoo dirqaalli <emph>Jijjiramoota dhorki</emph> hin filatamnee fi yoo wardiin hin ittisamnee qofaa dha."
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3146965\n"
-"27\n"
+"06050000.xhp\n"
+"par_idN10780\n"
"help.text"
-msgid "4"
-msgstr "4"
+msgid "You can only edit cell values if the <emph>Prevent changes</emph> option is selected, if the <emph>Copy back</emph> is option is not selected, and if the cells are not protected."
+msgstr "Gatiiwwan man'ee gulaaluu kan dandeessu, yoo dirqaalli<emph>Jijjirama dhorki</emph> filatamee, dirqaalli <emph>Duubatti garagalcha</emph> hin filatamnee fi man'eewwan hin ittisamne qofaa dha."
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155596\n"
-"28\n"
+"06050000.xhp\n"
+"par_idN1078C\n"
"help.text"
-msgid "<item type=\"input\">Charles</item>"
-msgstr "<item type=\"input\">Charles</item>"
+msgid "You can only change scenario cell values and write them back into the scenario if the <emph>Prevent changes</emph> option is not selected, if the <emph>Copy back</emph> option is selected, and if the cells are not protected."
+msgstr "Gatiiwwan mul'ina man'ee jijjiruu fi dubatti mul'ina keessatti barreessuu kan dandeessu, yoo dirqaalli<emph>Jijjirama dhorki</emph> hin filatamne, dirqaalli <emph>Duubatti garagalcha</emph> filatamee, fi man'eewwan hin ittisamne qofaa dha."
-#: 04060101.xhp
+#: 06060000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3147244\n"
-"29\n"
+"06060000.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">3</item>"
-msgstr "<item type=\"input\">3</item>"
+msgid "Protect Document"
+msgstr "Galmee eeguu"
-#: 04060101.xhp
+#: 06060000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149871\n"
-"30\n"
+"06060000.xhp\n"
+"hd_id3148946\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">10</item>"
-msgstr "<item type=\"input\">10</item>"
+msgid "<link href=\"text/scalc/01/06060000.xhp\" name=\"Protect Document\">Protect Document</link>"
+msgstr "<link href=\"text/scalc/01/06060000.xhp\" name=\"Protect Document\">Galmee Eeguu</link>"
-#: 04060101.xhp
+#: 06060000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155752\n"
-"31\n"
+"06060000.xhp\n"
+"par_id3153362\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">300</item>"
-msgstr "<item type=\"input\">300</item>"
+msgid "The<emph> Protect Document </emph>command prevents changes from being made to cells in the sheets or to sheets in a document. As an option, you can define a password. If a password is defined, removal of the protection is only possible if the user enters the correct password."
+msgstr "Ajajni<emph> Galmee Eeguu </emph> jijjiramoota man'eewwanitti wardiiwwan ykn wardii galmee keessaan dhufu iittisa.Akkaa filannootti ittigaa hiiki.Yoo ittigaan hiikame,haqinsii eeginsaa kan danda'amuu yoo fayyadamaan ittigaa sirri galche qofa."
-#: 04060101.xhp
+#: 06060000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149052\n"
-"32\n"
+"06060000.xhp\n"
+"hd_id3147228\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">51</item>"
-msgstr "<item type=\"input\">51</item>"
+msgid "<link href=\"text/scalc/01/06060100.xhp\" name=\"Sheets\">Sheets</link>"
+msgstr "<link href=\"text/scalc/01/06060100.xhp\" name=\"Sheets\">Wardiiwwan</link>"
-#: 04060101.xhp
+#: 06060000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3146097\n"
-"33\n"
+"06060000.xhp\n"
+"hd_id3153768\n"
+"4\n"
"help.text"
-msgid "5"
-msgstr "5"
+msgid "<link href=\"text/scalc/01/06060200.xhp\" name=\"Documents\">Documents</link>"
+msgstr "<link href=\"text/scalc/01/06060200.xhp\" name=\"Documents\">Galmeewwan</link>"
-#: 04060101.xhp
+#: 06060000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3147296\n"
-"34\n"
+"06060000.xhp\n"
+"par_idN10622\n"
"help.text"
-msgid "<item type=\"input\">Daniel</item>"
-msgstr "<item type=\"input\">Daniel</item>"
+msgid "<embedvar href=\"text/scalc/guide/cell_protect.xhp#cell_protect\"/>"
+msgstr "<embedvar href=\"text/scalc/guide/cell_protect.xhp#cell_protect\"/>"
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150393\n"
-"35\n"
+"06060100.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">5</item>"
-msgstr "<item type=\"input\">5</item>"
+msgid "Protecting Sheet"
+msgstr "Wardii Eegaa"
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145236\n"
-"36\n"
+"06060100.xhp\n"
+"hd_id3153087\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">11</item>"
-msgstr "<item type=\"input\">11</item>"
+msgid "Protecting Sheet"
+msgstr "Wardii Eegaa"
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150534\n"
-"37\n"
+"06060100.xhp\n"
+"par_id3148664\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">1200</item>"
-msgstr "<item type=\"input\">1200</item>"
+msgid "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">Protects the cells in the current sheet from being modified.</ahelp></variable> Choose <emph>Tools - Protect Document - Sheet</emph> to open the <emph>Protect Sheet</emph> dialog in which you then specify sheet protection with or without a password."
+msgstr "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">man'eewwan wardii ammaa keessatti akka hin jijjiramneef eega.</ahelp></variable> Qaaqa<emph>Wardii Eegaa</emph> kan ittiin ittigaa qabachuu ykn dhiisuu isaa itti ifteessitu banuuf<emph>Meeshaalee - Galmee Eegaa - Wardii</emph> fili."
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150375\n"
-"38\n"
+"06060100.xhp\n"
+"par_id3149664\n"
+"5\n"
"help.text"
-msgid "<item type=\"input\">48</item>"
-msgstr "<item type=\"input\">48</item>"
+msgid "To protect cells from further editing, the <emph>Protected</emph> check box must be checked on the <link href=\"text/scalc/01/05020600.xhp\" name=\"Format - Cells - Cell Protection\"><emph>Format - Cells - Cell Protection</emph></link> tab page or on the <emph>Format Cells</emph> context menu."
+msgstr "Man'eewwan gulaaltu dabalataa irraa ittisuuf,sanduuqni mirkaneessaa <emph>Kan Eegamee</emph>fuula caancalaa <link href=\"text/scalc/01/05020600.xhp\" name=\"Format - Cells - Cell Protection\"><emph>Dhangii - Man'eewwwan - Eeginsa Man'ee</emph></link> ykn baafata halqara irraa <emph>Dhangii Man'eewwan</emph> mirkaneessuun dirqi dha."
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3159121\n"
-"39\n"
+"06060100.xhp\n"
+"par_id3154490\n"
+"8\n"
"help.text"
-msgid "6"
-msgstr "6"
+msgid "Unprotected cells or cell ranges can be set up on a protected sheet by using the <emph>Tools - Protect Document - Sheet</emph> and <emph>Format - Cells - Cell Protection</emph> menus:"
+msgstr "Bafatoota <emph>Meeshaalee - Galmee Eega - Barruu</emph> fi <emph>Dhangii - Man'eewwan - Hayyisa Man'ee </emph> fayyadamuun man'ewwan ykn hangiiwwan man'ee hin eegamnee barruu eegamee irratti qindeessu danda'a."
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150456\n"
-"40\n"
+"06060100.xhp\n"
+"par_id3149123\n"
+"16\n"
"help.text"
-msgid "<item type=\"input\">Eva</item>"
-msgstr "<item type=\"input\">Eva</item>"
+msgid "Select the cells that will be unprotected"
+msgstr "Man'eewwan hin eegamin fili"
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3146886\n"
-"41\n"
+"06060100.xhp\n"
+"par_id3150329\n"
+"17\n"
"help.text"
-msgid "<item type=\"input\">2</item>"
-msgstr "<item type=\"input\">2</item>"
+msgid "Select <emph>Format - Cells - Cell Protection</emph>. Unmark the <emph>Protected</emph> box and click <emph>OK</emph>."
+msgstr "<emph>Dhangii - Man'eewwan - Hayyisa Man'ee</emph>fili.Sanduuqa <emph>Kan Eegame</emph> hin mallatteessin itti ansuun <emph>Eeyyee</emph>cuqaasi."
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149945\n"
-"42\n"
+"06060100.xhp\n"
+"par_id3156384\n"
+"18\n"
"help.text"
-msgid "<item type=\"input\">8</item>"
-msgstr "<item type=\"input\">8</item>"
+msgid "On the <emph>Tools - Protect Document - Sheet</emph> menu, activate protection for the sheet. Effective immediately, only the cell range you selected in step 1 can be edited."
+msgstr "Barrruu <emph>Meeshaalee - Galmee Eegaa - Barruu</emph>tti,barruuf eeginsa kakaasi.Ful'aa hatataman, hangii man'ee isa sadarkaa 1ffaatti filattee qofa gulaalamuu danda'a."
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3157904\n"
-"43\n"
+"06060100.xhp\n"
+"par_id3149566\n"
+"9\n"
"help.text"
-msgid "<item type=\"input\">650</item>"
-msgstr "<item type=\"input\">650</item>"
+msgid "To later change an unprotected area to a protected area, select the range. Next, on the <emph>Format - Cells - Cell Protection</emph> tab page, check the <emph>Protected</emph> box. Finally, choose the <emph>Tools - Protect Document - Sheet </emph>menu. The previously editable range is now protected."
+msgstr "Boodaa bakka hin eegamnee gara bakka eegameetti jijjiruuf,hangii fili.Itti ansuun fuula caancala<emph>Dhangii - Man'eewwan - Hayyisa Man'ee</emph> irraa sanduuqa<emph>Kan Eegame</emph> mirkaneessi.Dhumarratti barruu<emph>Meeshaalee - Galmee Eegaa - Barruu </emph> fili.Hangiin duraan gulaalamee amma hin xuqaman."
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149352\n"
-"44\n"
+"06060100.xhp\n"
+"par_id3153964\n"
+"10\n"
"help.text"
-msgid "<item type=\"input\">33</item>"
-msgstr "<item type=\"input\">33</item>"
+msgid "Sheet protection also affects the context menu of the sheet tabs at the bottom of the screen. The <emph>Delete</emph> and <emph>Rename</emph> commands cannot be selected."
+msgstr "Ittisni wardii baafata halqara caancaloota wardii kan argii gadiitti argamaniis ni dhiibbeesssu.Ajaajni <emph>Haqii</emph> fi <emph>Siiqsi/Garagalchi</emph> filamuu hin danda'aan."
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150028\n"
-"45\n"
+"06060100.xhp\n"
+"par_id3150301\n"
+"19\n"
"help.text"
-msgid "7"
-msgstr "7"
+msgid "If a sheet is protected, you will not be able to modify or delete any Cell Styles."
+msgstr "Yoo wardiin ittifamee,akkaataalee man'ee haroomsuu ykn haquun hin dandeessu."
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145826\n"
-"46\n"
+"06060100.xhp\n"
+"par_id3154656\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">F</item><item type=\"input\">rank</item>"
-msgstr "<item type=\"input\">F</item><item type=\"input\">sadarka</item>"
+msgid "A protected sheet or cell range can no longer be modified until this protection is disabled. To disable the protection, choose the <emph>Tools - Protect Document - Sheet</emph> command. If no password was set, the sheet protection is immediately disabled. If the sheet was password protected, the <emph>Remove Protection</emph> dialog opens, where you must enter the password."
+msgstr "Hangaa ittisinni kun hojii dhiisuutti barruu ykn hangii man'ee ittisamee lammata hin haaromfamuu.Ittisa kana hojii dhaabsiisuuf ajaja<emph>Meeshaalee - Galmee eegame - Wardii</emph> fili.Yoo ittigaa hin qindeessine,barruun ittisaa hatattamaan agarsiifama.yoo barruun ittigaan eegamadha ta'ee,qaaqni <emph>Ittisni Haqii</emph> bakka iitti ittigaa galchitu ni banama."
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150743\n"
-"47\n"
+"06060100.xhp\n"
+"par_id3149815\n"
+"11\n"
"help.text"
-msgid "<item type=\"input\">2</item>"
-msgstr "<item type=\"input\">2</item>"
+msgid "Once saved, protected sheets can only be saved again by using the <emph>File - Save As</emph> command."
+msgstr "Takka ol keenyaan,barruuwwan ittisaman ajaja<emph>Faayilii - Akkaa olkaa'i</emph>qoofa lammata olka'aamu."
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154844\n"
-"48\n"
+"06060100.xhp\n"
+"hd_id3150206\n"
+"4\n"
"help.text"
-msgid "<item type=\"input\">7</item>"
-msgstr "<item type=\"input\">7</item>"
+msgid "Password (optional)"
+msgstr "Ittigaa (Dirqaala)"
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148435\n"
-"49\n"
+"06060100.xhp\n"
+"par_id3152990\n"
+"7\n"
"help.text"
-msgid "<item type=\"input\">3</item><item type=\"input\">00</item>"
-msgstr "<item type=\"input\">3</item><item type=\"input\">00</item>"
+msgid "<ahelp hid=\".uno:Protect\">Allows you to enter a password to protect the sheet from unauthorized changes.</ahelp>"
+msgstr "<ahelp hid=\".uno:Protect\">barruu jijjiraamoota heyyaman alaa irraa ittisuuf ittigaa akka galchituuf si heeyyama.</ahelp>"
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148882\n"
-"50\n"
+"06060100.xhp\n"
+"par_id3148700\n"
+"12\n"
"help.text"
-msgid "<item type=\"input\">4</item><item type=\"input\">2</item>"
-msgstr "<item type=\"input\">4</item><item type=\"input\">2</item>"
+msgid "Complete protection of your work can be achieved by combining both options on the <emph>Tools - Protect Document</emph> menu, including password protection. To prohibit opening the document altogether, in the <emph>Save</emph> dialog mark the <emph>Save with password</emph> box before you click the <emph>Save</emph> button."
+msgstr "Gutummaa ittisa hojiikee kan argamu dirqalaalee laman ittisa ittigaa dabalachuun, baafata<emph>Meeshaalee -Galmee Eega</emph> irratti walitti makuun.Galmeewwan altokkoon wal faana banuu irraa dhorkuuf,qaaqa<emph>Olka'ii</emph>keessatti osoo qabdoo<emph>Olka'ii</emph>hin cuqaasin,sanduuqa<emph>Ittigaa waliin olkaa'ii</emph> mallatteessi."
-#: 04060101.xhp
+#: 06060200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150140\n"
-"51\n"
+"06060200.xhp\n"
+"tit\n"
"help.text"
-msgid "8"
-msgstr "8"
+msgid "Protecting document"
+msgstr "Galmee eeguu"
-#: 04060101.xhp
+#: 06060200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3146137\n"
-"52\n"
+"06060200.xhp\n"
+"hd_id3150541\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">Greta</item>"
-msgstr "<item type=\"input\">Greta</item>"
+msgid "Protecting document"
+msgstr "Galmee eeguu"
-#: 04060101.xhp
+#: 06060200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148739\n"
-"53\n"
+"06060200.xhp\n"
+"par_id3145172\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">1</item>"
-msgstr "<item type=\"input\">1</item>"
+msgid "<variable id=\"dokumenttext\"><ahelp hid=\".uno:ToolProtectionDocument\">Protects the sheet structure of your document from modifications. It is impossible to insert, delete, rename, move or copy sheets.</ahelp></variable> Open the <emph>Protect document</emph> dialog with <emph>Tools - Protect Document - Document</emph>. Optionally enter a password and click OK."
+msgstr "<variable id=\"dokumenttext\"><ahelp hid=\".uno:ToolProtectionDocument\">Caasa wardii kee haroomsamuu irraa ittisa.Wardiiwwan saaguu, haquu, irraa deebuun moggaasuu, siksuu ykn garagalchuu hin danda'amu..</ahelp></variable>Qaaqa <emph>Galmee eeguu</emph> <emph>Meeshaalee - Galmee Eeguu - Galmee</emph> waliin bana.Akka filannootti ittigaa galchuun OK cuuqaasi."
-#: 04060101.xhp
+#: 06060200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148583\n"
-"54\n"
+"06060200.xhp\n"
+"par_id3153188\n"
+"6\n"
"help.text"
-msgid "<item type=\"input\">7</item>"
-msgstr "<item type=\"input\">7</item>"
+msgid "The structure of protected spreadsheet documents can be changed only if the <emph>Protect</emph> option is disabled. On the context menus for the spreadsheet tabs at the lower graphic border, only the menu item <emph>Select All Sheets</emph> can be activated. All other menu items are deactivated. To remove the protection, call up the command <emph>Tools - Protect Document - Document</emph> again. If no password is assigned, protection is immediately removed. If you were assigned a password, the <emph>Remove Spreadsheet Protection</emph> dialog appears, in which you must enter the password. Only then can you remove the check mark specifying that protection is active."
+msgstr "Caasan galmeewwwaan wardii eegamee kan jijjiiramuu danda'uu,yoo dirqalli<emph>Eeguu</emph> hojii dhiisee qofa. Bafatawwan halqara Caancaloota barruuf saxaatoo handaaraa gara gadii,bafataa wantaa <emph>Barruuwwan Hundaa Fili</emph> qoofatu kaafama.Barruuwwan wantoota kan biroo hin kaafaman.Eeginsa haquuf,ajaaja<emph>Meeshaalee - Galmee Eegi - Galmee</emph> lammata waami.Yoo ittigaan hin rammadamnee ta'ee,eeginsi yerooma sana haqama.Yoo ittigni kennamee,qaaqni<emph>Eeginsi Haqa Wardii</emph> kan itti ittigaa dirqiin galchitu ni mul'ata.Itti aansuun mallattoo mirkaaneessa haquu kan dandeesu eeginsii kun ka'aa ta'uu isaa ifteessuun qofa."
-#: 04060101.xhp
+#: 06060200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154556\n"
-"55\n"
+"06060200.xhp\n"
+"par_id3145750\n"
+"7\n"
"help.text"
-msgid "<item type=\"input\">200</item>"
-msgstr "<item type=\"input\">200</item>"
+msgid "A protected document, once saved, can only be saved again with the <emph>File - Save As</emph> menu command."
+msgstr "Galmeen eegame,takkaa ol ka'aamnaan,ajaajaa baafataa<emph>faayilii- Akka olkaa'i</emph>lammata olka'aama."
-#: 04060101.xhp
+#: 06060200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155255\n"
-"56\n"
+"06060200.xhp\n"
+"hd_id3152596\n"
+"4\n"
"help.text"
-msgid "<item type=\"input\">36</item>"
-msgstr "<item type=\"input\">36</item>"
+msgid "Password (optional)"
+msgstr "Ittigaa (Dirqaala)"
-#: 04060101.xhp
+#: 06060200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145141\n"
-"57\n"
+"06060200.xhp\n"
+"par_id3155412\n"
+"5\n"
"help.text"
-msgid "9"
-msgstr "9"
+msgid "You can create a password to protect your document against unauthorized or accidental modifications."
+msgstr "Galmeekee foyyii tasaa ykn angoon alaa irraa eeguuf ittigaa uumu dandeessa."
-#: 04060101.xhp
+#: 06060200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153078\n"
-"58\n"
+"06060200.xhp\n"
+"par_id3150717\n"
+"9\n"
"help.text"
-msgid "<item type=\"input\">Harry</item>"
-msgstr "<item type=\"input\">Harry</item>"
+msgid "You can completely protect your work by combining both options from <emph>Tools - Protect Document</emph>, including password entry. If you want to prevent the document from being opened by other users, select <emph>Save With Password </emph>and click the <emph>Save</emph> button. The <emph>Enter Password</emph> dialog appears. Consider carefully when choosing a password; if you forget it after you close a document you will be unable to access the document."
+msgstr "Dirqalaalee <emph>Meeshaalee - Galmee Eegaa</emph>lamaan walitti qabun hojii kee guutummaan eegu dandeessa,galmaa ittigaa dabalachuun.yoo galmeen kee fayyadamtoota biraan akkaa hin banamnee barbaaddee <emph>Ittigaa Waliin Olka'ii </emph>filuun qabdoo<emph>Olkaa'i</emph> cuqaasi.Qaaqni <emph>Ittigaa Galchii</emph> ni mul'ata.Yommuu ittigaa filattu of eegannon ilaali;erga galmee kee cuftee yoo irraanfatte galmee kee banachuu hin dandeessu."
-#: 04060101.xhp
+#: 06070000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149955\n"
-"59\n"
+"06070000.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">3</item>"
-msgstr "<item type=\"input\">3</item>"
+msgid "AutoCalculate"
+msgstr "OfiinHerreegaa"
-#: 04060101.xhp
+#: 06070000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150005\n"
-"60\n"
+"06070000.xhp\n"
+"bm_id3145673\n"
"help.text"
-msgid "<item type=\"input\">9</item>"
-msgstr "<item type=\"input\">9</item>"
+msgid "<bookmark_value>calculating; auto calculating sheets</bookmark_value><bookmark_value>recalculating;auto calculating sheets</bookmark_value><bookmark_value>AutoCalculate function in sheets</bookmark_value><bookmark_value>correcting sheets automatically</bookmark_value><bookmark_value>formulas;AutoCalculate function</bookmark_value><bookmark_value>cell contents;AutoCalculate function</bookmark_value>"
+msgstr "<bookmark_value>herreguun; barrulee ofiinherreegaa</bookmark_value><bookmark_value>lamherregun;barruulee ofiinherreegaa</bookmark_value><bookmark_value>Barruu keessatti faankishinii ofiinherreegaa</bookmark_value><bookmark_value>barruulee ofumaan sirreessa</bookmark_value><bookmark_value>Formulaawwan; faankishinii ofiinherreegaa</bookmark_value><bookmark_value>qabeentoota man'ee;Faankishiinii ofiinherreegaa</bookmark_value>"
-#: 04060101.xhp
+#: 06070000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155951\n"
-"61\n"
+"06070000.xhp\n"
+"hd_id3145673\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">1200</item>"
-msgstr "<item type=\"input\">1200</item>"
+msgid "<link href=\"text/scalc/01/06070000.xhp\" name=\"AutoCalculate\">AutoCalculate</link>"
+msgstr "<link href=\"text/scalc/01/06070000.xhp\" name=\"AutoCalculate\">Ofiinherreegaa </link>"
-#: 04060101.xhp
+#: 06070000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145169\n"
-"62\n"
+"06070000.xhp\n"
+"par_id3148798\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">44</item>"
-msgstr "<item type=\"input\">44</item>"
+msgid "<ahelp hid=\".uno:AutomaticCalculation\">Automatically recalculates all formulas in the document.</ahelp>"
+msgstr "<ahelp hid=\".uno:AutomaticCalculation\">Formulaawwan hundaa kan galmee keessaa ofuumaan lamherreega.</ahelp>"
-#: 04060101.xhp
+#: 06070000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153571\n"
-"63\n"
+"06070000.xhp\n"
+"par_id3145173\n"
+"3\n"
"help.text"
-msgid "10"
-msgstr "10"
+msgid "All cells are recalculated after a sheet cell has been modified. Any charts in the sheet will also be refreshed."
+msgstr "Erga man'ee barruu jijjiramee man'eewwan hundi lamherregama.Taattowwan kamiyyuu kan barruu keessaa jiru ni haroomfama."
-#: 04060101.xhp
+#: 06080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148761\n"
-"64\n"
+"06080000.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">Irene</item>"
-msgstr "<item type=\"input\">Irene</item>"
+msgid "Recalculate"
+msgstr "Lamherregi"
-#: 04060101.xhp
+#: 06080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149877\n"
-"65\n"
+"06080000.xhp\n"
+"bm_id3157909\n"
"help.text"
-msgid "<item type=\"input\">2</item>"
-msgstr "<item type=\"input\">2</item>"
+msgid "<bookmark_value>recalculating;all formulas in sheets</bookmark_value><bookmark_value>formulas; recalculating manually</bookmark_value><bookmark_value>cell contents; recalculating</bookmark_value>"
+msgstr "<bookmark_value>Lamherreegun;Formulaawwan hundaa kan barruuwwan keessaa</bookmark_value><bookmark_value>formulaawwan; hujeekaan lamherreegii</bookmark_value><bookmark_value>Qabeentoota man'ee; lamherreega</bookmark_value>"
-#: 04060101.xhp
+#: 06080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154327\n"
-"66\n"
+"06080000.xhp\n"
+"hd_id3157909\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">8</item>"
-msgstr "<item type=\"input\">8</item>"
+msgid "<link href=\"text/scalc/01/06080000.xhp\" name=\"Recalculate\">Recalculate</link>"
+msgstr "<link href=\"text/scalc/01/06080000.xhp\" name=\"Recalculate\">Lamherreegaa</link>"
-#: 04060101.xhp
+#: 06080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155435\n"
-"67\n"
+"06080000.xhp\n"
+"par_id3154758\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">1000</item>"
-msgstr "<item type=\"input\">1000</item>"
+msgid "<ahelp hid=\".uno:Calculate\">Recalculates all changed formulas. If AutoCalculate is enabled, the Recalculate command applies only to formulas like RAND or NOW.</ahelp>"
+msgstr ""
-#: 04060101.xhp
+#: 06080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145353\n"
-"68\n"
+"06080000.xhp\n"
+"par_id315475899\n"
"help.text"
-msgid "<item type=\"input\">42</item>"
-msgstr "<item type=\"input\">42</item>"
+msgid "Press F9 to recalculate. Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas in the document."
+msgstr ""
-#: 04060101.xhp
+#: 06080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150662\n"
-"69\n"
+"06080000.xhp\n"
+"par_id3150793\n"
+"5\n"
"help.text"
-msgid "11"
-msgstr "11"
+msgid "After the document has been recalculated, the display is refreshed. All charts are also refreshed."
+msgstr "Ergaa galmeen lamherreegamee,agarsiisaan ni haroomfama.Akkasumas taattoowwan kamiyyuu barruu keessatti argaman ni hareeffamu."
-#: 04060101.xhp
+#: 06080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150568\n"
-"70\n"
+"06080000.xhp\n"
+"par_id315475855\n"
"help.text"
-msgid "12"
-msgstr "12"
+msgid "The Add-In functions like RANDBETWEEN currently cannot respond to the Recalculate command or F9. Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas, including the Add-In functions."
+msgstr ""
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149393\n"
-"71\n"
+"06130000.xhp\n"
+"tit\n"
"help.text"
-msgid "13"
-msgstr "13"
+msgid "AutoInput"
+msgstr "Ofiinaqaa"
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153544\n"
-"72\n"
+"06130000.xhp\n"
+"bm_id2486037\n"
"help.text"
-msgid "<item type=\"input\">Name</item>"
-msgstr "<item type=\"input\">Maqaa</item>"
+msgid "<bookmark_value>entering entries with AutoInput function</bookmark_value><bookmark_value>capital letters;AutoInput function</bookmark_value>"
+msgstr "<bookmark_value> faankishinii Ofiinaqaadhaan galinsa galcha</bookmark_value><bookmark_value>qubeewwan gurguddaa;Fankiishinii Ofiinaqaa</bookmark_value>"
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3158414\n"
-"73\n"
+"06130000.xhp\n"
+"hd_id3148492\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">Grade</item>"
-msgstr "<item type=\"input\">Kutaa</item>"
+msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"AutoInput\">AutoInput</link>"
+msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"AutoInput\">Ofiinaqaa</link>"
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3152820\n"
-"74\n"
+"06130000.xhp\n"
+"par_id3150793\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">Age</item>"
-msgstr "<item type=\"input\">Umurii</item>"
+msgid "<ahelp hid=\".uno:AutoComplete\">Switches the AutoInput function on and off, which automatically completes entries, based on other entries in the same column.</ahelp> The column is scanned up to a maximum of 2000 cells or 200 different strings."
+msgstr "<ahelp hid=\".uno:AutoComplete\">Fankiishiini Ofiinaqaa dhamsuu fi banuun jijjiraa,tarjaa tokkoo keessaatti galiinsaa biroo irratti hunda'uun, ofumaa galinsaa xumuruu.</ahelp> Tarjaan hangaa man'eewwan 2000 ykn diraawwan garaa garaa 2oo ta'an sirritti barbaada"
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154866\n"
-"75\n"
+"06130000.xhp\n"
+"par_id3156422\n"
+"8\n"
"help.text"
-msgid "<item type=\"input\">Distance to School</item>"
-msgstr "<item type=\"input\">Fageenya Manabarumsaattii</item>"
+msgid "The completion text is highlighted."
+msgstr "Barruun xumuurame ni shoolama."
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150471\n"
-"76\n"
+"06130000.xhp\n"
+"par_idN1065D\n"
"help.text"
-msgid "<item type=\"input\">Weight</item>"
-msgstr "<item type=\"input\">Ulfaatinat</item>"
+msgid "To accept the completion, press <item type=\"keycode\">Enter</item> or a cursor key."
+msgstr "Kan xumuramee fudhachuuf,<item type=\"keycode\">Galchi</item> ykn furtuu qaree dhiibi."
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153920\n"
-"77\n"
+"06130000.xhp\n"
+"par_idN10665\n"
"help.text"
-msgid "14"
-msgstr "14"
+msgid "To append text or to edit the completion, press <item type=\"keycode\">F2</item>."
+msgstr "Barruu miiltessuuf ykn xumura gulaaluuf,<item type=\"keycode\">F2</item>dhiibi."
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148429\n"
-"78\n"
+"06130000.xhp\n"
+"par_idN1066D\n"
"help.text"
-msgid "<item type=\"input\">>600</item>"
-msgstr "<item type=\"input\">>600</item>"
+msgid "To view more completions, press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab</item> to scroll forward, or <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Tab</item> to scroll backward."
+msgstr ""
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3152588\n"
-"79\n"
+"06130000.xhp\n"
+"par_idN10679\n"
"help.text"
-msgid "15"
-msgstr "15"
+msgid "To see a list of all available AutoInput text items for the current column, press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Down Arrow</item>."
+msgstr ""
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3083286\n"
-"80\n"
+"06130000.xhp\n"
+"par_id3150439\n"
+"3\n"
"help.text"
-msgid "16"
-msgstr "16"
+msgid "When typing formulas using characters that match previous entries, a Help tip will appear listing the last ten functions used from <emph>Function Wizard</emph>, from all defined range names, from all database range names, and from the content of all label ranges."
+msgstr "yommuu arfiilee isaa galinsa duraa waliin wal simu fayyadamnee formulaa barressinuu,fankiishinoota kudhaan darbaan kan <emph>Dhullee</emph> keessaa tarreessun,hangii maqoota hiikame huundaa irraa,hangii maqoota kuusaa deetaa huundaa irraa,fi qabiyyee hangiiwwan moggaafaman huundaa irraa fayyadamun qacceen gargaarsaa ni uumama."
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3163823\n"
-"81\n"
+"06130000.xhp\n"
+"par_id3153363\n"
+"5\n"
"help.text"
-msgid "<item type=\"input\">DCOUNT</item>"
-msgstr "<item type=\"input\">DCOUNT</item>"
+msgid "AutoInput is case-sensitive. If, for example, you have written \"Total\" in a cell, you cannot enter \"total\" in another cell of the same column without first deactivating AutoInput."
+msgstr "Ofiinaaqan qub-suukanaawaa dha.Fakkeenyaaf yoo man'ee keessatti \" Waliigala\" barreessite,osoo dursa ofiinaaqa kaka'uumsaleessin tarjaa walfakkata keessatti \"waliigala\" kan jedhu man'ee biraa keessatti galchuu hin dandeessu."
-#: 04060101.xhp
+#: 06990000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145083\n"
-"82\n"
+"06990000.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">5</item>"
-msgstr "<item type=\"input\">5</item>"
+msgid "Cell Contents"
+msgstr "Qabeentoota Man'ee"
-#: 04060101.xhp
+#: 06990000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149282\n"
-"83\n"
+"06990000.xhp\n"
+"hd_id3153087\n"
+"1\n"
"help.text"
-msgid "The formula in cell B16 is =DCOUNT(A1:E10;0;A13:E14)"
-msgstr "Foormulaan mandhee B16 keessaa =DCOUNT(A1:E10;0;A13:E14)"
+msgid "<link href=\"text/scalc/01/06990000.xhp\" name=\"Cell Contents\">Cell Contents</link>"
+msgstr "<link href=\"text/scalc/01/06990000.xhp\" name=\"Cell Contents\">Qabeentoota Man'ee</link>"
-#: 04060101.xhp
+#: 06990000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3150962\n"
-"192\n"
+"06990000.xhp\n"
+"par_id3145674\n"
+"2\n"
"help.text"
-msgid "Database Function Parameters:"
-msgstr "Ulaagaalee Kuusdeetaa Faankishinii"
+msgid "Opens a submenu with commands to calculate tables and activate AutoInput."
+msgstr "Baafata xiqqaa kan ajajjawwan gabateewwan shallaguuf ofiinaqaa kakaasu jedhaman bana."
-#: 04060101.xhp
+#: 07080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155837\n"
-"84\n"
+"07080000.xhp\n"
+"tit\n"
"help.text"
-msgid "The following items are the parameter definitions for all database functions:"
-msgstr "Wantootni armaan gadii faankishinoota kuusdeetaa hundaaf hiikota ulaagaati."
+msgid "Split"
+msgstr "Addabaasi"
-#: 04060101.xhp
+#: 07080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149453\n"
-"85\n"
+"07080000.xhp\n"
+"hd_id3163800\n"
+"1\n"
"help.text"
-msgid "<emph>Database</emph> is the cell range defining the database."
-msgstr "<emph>Kuusdeetaan</emph> hammanga ma'ee kuusaa deetaa ibsa."
+msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"Split\">Split</link>"
+msgstr "<link href=\"text/scalc/01/07080000.xhp\" name=\"Split\">Addabaasi</link>"
-#: 04060101.xhp
+#: 07080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3151272\n"
-"86\n"
+"07080000.xhp\n"
+"par_id3150084\n"
+"2\n"
"help.text"
-msgid "<emph>DatabaseField</emph> specifies the column where the function operates on after the search criteria of the first parameter is applied and the data rows are selected. It is not related to the search criteria itself. Use the number 0 to specify the whole data range. <variable id=\"quotes\">To reference a column by means of the column header name, place quotation marks around the header name. </variable>"
-msgstr "<emph>Dirreen kuusdeetaa</emph> tarjaa iddoo funkishiniin eda ulaagaan bani jedhu hojiira oole fi deetaa tarree filatame adda baasa.ulaagaa bani jedhu wajjin hidhata hin qabu.Deetaa hammangaa hundaa adda baasuu lakkooofsaa 0 fayyadamaa. <variable id=\"quotes\">Tarjaa mala matduree tarjaatiin wabii gochuuf,mallattoo waraabbii matduree irratti olkaa'i.</variable>"
+msgid "<ahelp hid=\".uno:SplitWindow\" visibility=\"visible\">Divides the current window at the top left corner of the active cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:SplitWindow\" visibility=\"visible\">Foddaa ammaa kan xiyyoo harkaa bitaa gara gubbaa man'ee ka'aa hiraa.</ahelp>"
-#: 04060101.xhp
+#: 07080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3147083\n"
-"87\n"
+"07080000.xhp\n"
+"par_id3154910\n"
+"3\n"
"help.text"
-msgid "<emph>SearchCriteria</emph> is the cell range containing search criteria. If you write several criteria in one row they are connected by AND. If you write the criteria in different rows they are connected by OR. Empty cells in the search criteria range will be ignored."
-msgstr "<emph>Ulaagaa barbaadi</emph>jedhu hammanga man'ee ulaagaa barbaadi jedhu of keessaa qaba.Yoo ulaagaa baay'ee tarree tokko keessatti barreessitan AND walqabatu.Yoo ulaagaa tarree adda addaa keessatti barreessitan OR dhaan walqabata.Man'ee duuwwan ulaagaa barbaadi jedhu keessaa hin fayyadamnu."
+msgid "You can also use the mouse to split the window horizontally or vertically. To do this, drag the thick black line located directly above the vertical scrollbar or directly to the right of the horizontal scrollbar into the window. A thick black line will show where the window is split."
+msgstr "Foddaa sardalaan ykn sarjinaan addabaasuuf Hantuutee fayyadamuu dandeessa.Kana dalaguuf,sarara furdaa gurraacha kan qixaan kabala maraa sarjinaa olitti argamuu ykn qixaa mirgaa kabala maraa sardinaala gara foddaati harkisi.Sararri furdaa gurraachii bakka foddaan itti addaba'uu mul'isa."
-#: 04060101.xhp
+#: 07080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3151188\n"
-"188\n"
+"07080000.xhp\n"
+"par_id3149263\n"
+"4\n"
"help.text"
-msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\">%PRODUCTNAME Calc - Calculate</link> to define how $[officename] Calc acts when searching for identical entries."
-msgstr ""
+msgid "A split window has its own scrollbars in each partial section; by contrast, <link href=\"text/scalc/01/07090000.xhp\" name=\"fixed window sections\">fixed window sections</link> are not scrollable."
+msgstr "Tokko tokkoon walakkaa kutaa keessatti foddaan addabaasa kabala maraa mataasa qaba;Addaadoodhaan,, <link href=\"text/scalc/01/07090000.xhp\" name=\"fixed window sections\">kutaalee foddaa murta'aa</link> hin marfaman."
-#: 04060101.xhp
+#: 07090000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3882869\n"
+"07090000.xhp\n"
+"tit\n"
"help.text"
-msgid "See also the Wiki page about <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Conditional_Counting_and_Summation\">Conditional Counting and Summation</link>."
-msgstr ""
+msgid "Freeze"
+msgstr "Dhaabi"
-#: 04060101.xhp
+#: 07090000.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3150882\n"
+"07090000.xhp\n"
+"hd_id3150517\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>DCOUNT function</bookmark_value> <bookmark_value>counting rows;with numeric values</bookmark_value>"
-msgstr "<bookmark_value>Funkishiniin DCOUNT</bookmark_value> <bookmark_value>tarreewwan lakkaa'uu;gatii lakkoofsaa wajjin</bookmark_value>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"Freeze\">Freeze</link>"
+msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Freeze\">Dhaabi</link>"
-#: 04060101.xhp
+#: 07090000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3150882\n"
-"88\n"
+"07090000.xhp\n"
+"par_id3156289\n"
+"2\n"
"help.text"
-msgid "DCOUNT"
-msgstr "DCOUNT"
+msgid "<ahelp hid=\".uno:FreezePanes\" visibility=\"visible\">Divides the sheet at the top left corner of the active cell and the area to the top left is no longer scrollable.</ahelp>"
+msgstr "<ahelp hid=\".uno:FreezePanes\" visibility=\"visible\">Barruu xiyyoo gubbaa harka bitaa man'ee ka'aa jiru hiruun bakki gubbaa harkaa mirgaa lammata hin marfamuu.</ahelp>"
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3156133\n"
-"89\n"
+"12010000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBANZAHL\">DCOUNT counts the number of rows (records) in a database that match the specified search criteria and contain numerical values.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DBANZAHL\">DCOUNT tiin baay'ina tarreewwanii kan kuusdeetaa keessa jiru,kan ulaagaa barbaadi fi gatii lakkoofsaa of keessaa qabu lakkaa'a..</ahelp>"
+msgid "Define Database Range"
+msgstr "Hangii Kuusaa deetaa hiiki"
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3156099\n"
-"90\n"
+"12010000.xhp\n"
+"hd_id3157909\n"
+"1\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Define Database Range"
+msgstr "Hangii Kuusaa deetaa hiiki"
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153218\n"
-"91\n"
+"12010000.xhp\n"
+"par_id3155922\n"
+"2\n"
"help.text"
-msgid "DCOUNT(Database; DatabaseField; SearchCriteria)"
-msgstr "DCOUNT(Kuusdeetaa;Dirree kuusdeetaa;Ulaagaa sakata'aa)"
+msgid "<variable id=\"bereichtext\"><ahelp hid=\".uno:DefineDBName\">Defines a database range based on the selected cells in your sheet.</ahelp></variable>"
+msgstr "<variable id=\"bereichtext\"><ahelp hid=\".uno:DefineDBName\">Man'eewwan wardii keessatti filattee irratti hundaa'un hangii kuusaa deetaa hiika.</ahelp></variable>"
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153273\n"
-"187\n"
+"12010000.xhp\n"
+"par_id3149456\n"
+"5\n"
"help.text"
-msgid "For the DatabaseField parameter you can enter a cell to specify the column, or enter the number 0 for the entire database. The parameter cannot be empty. <embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
-msgstr "Ulaagaa dirree kuusdeetaatiif man'ee tarjaa ibsametti galchuuf ni dandeessu.Ykn kuusdeetaa hundaaf lakkoofsa 0 galchi.Jijjiiramaan duwwaa ta'uu hin danda'u.<embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
+msgid "You can only select a rectangular cell range."
+msgstr "Hangii man'ee reektaangulaawaa qofa filachuu dandeessa."
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3154743\n"
-"92\n"
+"12010000.xhp\n"
+"hd_id3156422\n"
+"3\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Name"
+msgstr "Maqaa"
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153623\n"
-"93\n"
+"12010000.xhp\n"
+"par_id3150770\n"
+"4\n"
"help.text"
-msgid "In the example above (scroll up, please), we want to know how many children have to travel more than 600 meters to school. The result is to be stored in cell B16. Set the cursor in cell B16. Enter the formula <item type=\"input\">=DCOUNT(A1:E10;0;A13:E14)</item> in B16. The <emph>Function Wizard</emph> helps you to input ranges."
-msgstr "Fakkeenya armaan olii keessatti (olmari,maaloo),wanti beekuu barbaannu daa'imti tokko meetira 600 mana baruumsaa hammam deemu danda'a.Firiin argame man'ee B16 keessatti kuufama.Qaree man'ee B16 keessatti qindeessi.Foormullaa<item type=\"input\">=DCOUNT(A1:E10;0;A13:E14)</item> B16 keessatti galchi.Funkishiniin wizardii<emph>hammanga naquuf</emph>isin fayyada."
+msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DBNAMES:ED_NAME\">Enter a name for the database range that you want to define, or select an existing name from the list.</ahelp>"
+msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DBNAMES:ED_NAME\">Hangii kuusaa deetaa hiikuu barbaadduuf maqaa galchi, ykn maqaa duraan tarree keessa jiru fili.</ahelp>"
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149142\n"
-"94\n"
+"12010000.xhp\n"
+"hd_id3147228\n"
+"6\n"
"help.text"
-msgid "<emph>Database</emph> is the range of data to be evaluated, including its headers: in this case A1:E10. <emph>DatabaseField</emph> specifies the column for the search criteria: in this case, the whole database. <emph>SearchCriteria</emph> is the range where you can enter the search parameters: in this case, A13:E14."
-msgstr "<emph>Kuusdeetaan</emph> hammanga deetaa,matduree dabalatee as keessatti A1:E10 isa madaalamuudha. <emph>Dirreen kuusdeetaa</emph>tarjaa ulaagaa sakata'uu adda baasa.As keessatti,kuusdaata hunda.<emph>ulaagaan barbaachaa</emph> hammanga iddoo jijjiiramaa barbaadnu itti galchinuudha.As keessatti, A13:E14 dha."
+msgid "Range"
+msgstr "Hangii"
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145652\n"
-"95\n"
+"12010000.xhp\n"
+"par_id3150441\n"
+"7\n"
"help.text"
-msgid "To learn how many children in second grade are over 7 years of age, delete the entry >600 in cell D14 and enter <item type=\"input\">2</item> in cell B14 under Grade, and enter <item type=\"input\">>7</item> in cell C14 to the right. The result is 2. Two children are in second grade and over 7 years of age. As both criteria are in the same row, they are connected by AND."
-msgstr "Daa'imman waggaa 7 olii meeqa akka ta'an baruuf man'ee D14 keessaa galfata >600 haquu fi man'ee <item type=\"input\"> B14</item> keessatti 2 galchuu fi man'ee <item type=\"input\">>gara</item> mirgaatti 7 galchuudha.Firiin 2 ta'a.Daa'imman waggaa 7 olii lama kutaa lammaffaadha.Ulaagaan lammeenuu waan tarree tokko keessa ta'aniif AND dhaan walqabatu."
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_DBNAMES:ED_DBAREA\">Displays the selected cell range.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_DBNAMES:ED_DBAREA\">Hangii man'ee filamee agarsiisi.</ahelp>"
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3156123\n"
+"12010000.xhp\n"
+"hd_id3153188\n"
+"10\n"
"help.text"
-msgid "<bookmark_value>DCOUNTA function</bookmark_value> <bookmark_value>records;counting in Calc databases</bookmark_value> <bookmark_value>counting rows;with numeric or alphanumeric values</bookmark_value>"
-msgstr "<bookmark_value>Faankishiniin DCOUNTA </bookmark_value> <bookmark_value>galmeessuu;kuusdeetaa calc lakkaa'uu</bookmark_value> <bookmark_value>tarreewwan lakkaa'uu;gatii lakkoofsaa ykn qub-lakkoofsaa wajjin</bookmark_value>"
+msgid "Add/Modify"
+msgstr "Ida'ii/Fooyyessi"
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3156123\n"
-"97\n"
+"12010000.xhp\n"
+"par_id3153726\n"
+"11\n"
"help.text"
-msgid "DCOUNTA"
-msgstr "DCOUNTA"
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_DBNAMES:BTN_ADD\">Adds the selected cell range to the database range list, or modifies an existing database range.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_DBNAMES:BTN_ADD\">Tarree hangii kuusaa deetaatti hangii man'ee filamee dabala.</ahelp>"
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3156110\n"
-"98\n"
+"12010000.xhp\n"
+"hd_id3150010\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBANZAHL2\">DCOUNTA counts the number of rows (records) in a database that match the specified search conditions, and contain numeric or alphanumeric values.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DBANZAHL2\">DCOUNTA tarreewwan (kuusaawwan)kuusdeetaa ulaagaalee barbaadi jedhu wajjin walgitu fi gatii lakkoofsa ykn kottoonfachiisa of keessaa qabu lakkaa'a.</ahelp>"
+msgid "More >>"
+msgstr "Dabala>>"
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3143228\n"
-"99\n"
+"12010000.xhp\n"
+"par_id3153144\n"
+"13\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_DBNAMES:BTN_MORE\">Shows additional <link href=\"text/scalc/01/12010100.xhp\" name=\"options\">options</link>.</ahelp>"
+msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_DBNAMES:BTN_MORE\"><link href=\"text/scalc/01/12010100.xhp\" name=\"options\">Dirqalaalee</link>dabalataa agarsiisa.</ahelp>"
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3146893\n"
-"100\n"
+"12010100.xhp\n"
+"tit\n"
"help.text"
-msgid "DCOUNTA(Database; DatabaseField; SearchCriteria)"
-msgstr "DCOUNT(Kuusdeetaa;Dirree kuusdeetaa;Ulaagaa sakata'aa)"
+msgid "Options"
+msgstr "Dirqalaalee"
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3149751\n"
-"101\n"
+"12010100.xhp\n"
+"hd_id3154760\n"
+"1\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Options"
+msgstr "Dirqalaalee"
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153982\n"
-"102\n"
+"12010100.xhp\n"
+"hd_id3153379\n"
+"3\n"
"help.text"
-msgid "In the example above (scroll up, please), you can search for the number of children whose name starts with an E or a subsequent letter. Edit the formula in B16 to read <item type=\"input\">=DCOUNTA(A1:E10;\"Name\";A13:E14)</item>. Delete the old search criteria and enter <item type=\"input\">>=E</item> under Name in field A14. The result is 5. If you now delete all number values for Greta in row 8, the result changes to 4. Row 8 is no longer included in the count because it does not contain any values. The name Greta is text, not a value. Note that the DatabaseField parameter must point to a column that can contain values."
-msgstr "Fakkeenya armaan olii keessatti (olmari,maaloo),ijjoollee maqaan isaanii E ykn qubee itti aanuun jalqabu baay'ina isaanii beekuu dandeenya.<item type=\"input\">=DCOUNTA(A1:E10;\"Age\";A13:E14)</item>dubbisuudhaaf foormullaa B16 keessa jiru gulaalaa. Ulaagaa barbaachaa duraa fi <item type=\"input\">>=E</item> maqaa dirree A14 jala jiru haqa.Firiin 5 ta'a. Yoo amma gatii lakkoofsa hundaa Greta tarree 8 keessa jiruuf, firiin isaa gara 4 tti jijjiirama. Tarreen 8 asitti hin dabalamu sababni isaas gatii hin qabu. Maqaan Greta jedhu barruudha,gatii miti. Hub dirreen kuusdeetaa tarjaa gatii qabu agarsiisuu qaba."
+msgid "Contains column labels"
+msgstr "Moggaasota tarjaa of keessatti qabata"
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3147256\n"
+"12010100.xhp\n"
+"par_id3148798\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>DGET function</bookmark_value> <bookmark_value>cell contents;searching in Calc databases</bookmark_value> <bookmark_value>searching;cell contents in Calc databases</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii DGET </bookmark_value> <bookmark_value>qabeentota man'ee;kuusdeetaa calc keessa sakata'uu</bookmark_value> <bookmark_value>sakata'uu;qabeentota man'ee kuusdeetaa calc keessa</bookmark_value>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_HEADER\" visibility=\"visible\">Selected cell ranges contains labels.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_HEADER\" visibility=\"visible\">Hangiiwwan man'ee filatamee moggaasa of keessa qaba.</ahelp>"
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3147256\n"
-"104\n"
+"12010100.xhp\n"
+"hd_id3153970\n"
+"5\n"
"help.text"
-msgid "DGET"
-msgstr "DGET"
+msgid "Insert or delete cells"
+msgstr "Man'eewwan haqi ykn galchi"
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3152801\n"
-"105\n"
+"12010100.xhp\n"
+"par_id3154684\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBAUSZUG\">DGET returns the contents of the referenced cell in a database which matches the specified search criteria.</ahelp> In case of an error, the function returns either #VALUE! for no row found, or Err502 for more than one cell found."
-msgstr "<ahelp hid=\"HID_FUNC_DBAUSZUG\">DGET man'ee qabeentootaa wabii ta'ee kuusdeeta keessa kan ulaagaa sakata'aa ibsaa.</ahelp> Yeroo dogoogoraa ,faankishiniin #VALUE!kan tarree hin qabneef ykn Err502 man'ee tokkoo oliif deebisa."
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_SIZE\" visibility=\"visible\">Automatically inserts new rows and columns into the database range in your document when new records are added to the database.</ahelp> To manually update the database range, choose <emph>Data - Refresh</emph> <emph>Range</emph>."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_SIZE\" visibility=\"visible\">Yommuu galmeen haraan kuusaa deetaatti dabalamu,tarreewwaniifi tarjaawwan haraan ofuumaan hangii kuusaa deetaa kan galmee kee keessatti saagama.</ahelp>hujeekan hangi kuusaa deetaa haroomsuuf,<emph>Deetaa-Haroomsi</emph> <emph>Hangii</emph>fili."
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3159344\n"
-"106\n"
+"12010100.xhp\n"
+"hd_id3153768\n"
+"7\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Keep formatting"
+msgstr "Dhangeessuu kaa'i"
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154696\n"
-"107\n"
+"12010100.xhp\n"
+"par_id3147435\n"
+"8\n"
"help.text"
-msgid "DGET(Database; DatabaseField; SearchCriteria)"
-msgstr "DGET(Kuusdeetaa;Dirree kuusdeetaa;Ulaagaa sakata'aa)"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_FORMAT\" visibility=\"visible\">Applies the existing cell format of headers and first data row to the whole database range.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_FORMAT\" visibility=\"visible\">Dhangii man'ee irraantoota kan duraan jiru fi tarree deetaa jalqabaa gara hangii hundee deetaa hundaa jirutti fayyadama.</ahelp>"
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3153909\n"
-"108\n"
+"12010100.xhp\n"
+"hd_id3155856\n"
+"9\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Don't save imported data"
+msgstr "Deetaa alaaguu ol hin ka'iin"
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155388\n"
-"109\n"
+"12010100.xhp\n"
+"par_id3153363\n"
+"10\n"
"help.text"
-msgid "In the above example (scroll up, please), we want to determine what grade a child is in, whose name was entered in cell A14. The formula is entered in cell B16 and differs slightly from the earlier examples because only one column (one database field) can be entered for <emph>DatabaseField</emph>. Enter the following formula:"
-msgstr "Fakkeenya armaa olii keessatti (olmari,maaloo)warreen maqaan isaanii man'ee A14 keessa galan kutaa isaanii murteessuu barbaanne.Foormullaan man'ee B16 keessa gala.Fakkeenya darberraa xiqqoo adda kunis sababa dirreen kuusdeetaatiif tarjaan tokko qofa galuufi.<emph>DatabaseField</emph>Foormullaa armaan gadii galchi:"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_STRIPDATA\" visibility=\"visible\">Only saves a reference to the database, and not the contents of the cells.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_STRIPDATA\" visibility=\"visible\">Kuusaa deetaa qofa wabii ol kaa'a,qabeentota man'eewwanii hin dabalatu.</ahelp>"
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153096\n"
-"110\n"
+"12010100.xhp\n"
+"hd_id3147428\n"
+"11\n"
"help.text"
-msgid "<item type=\"input\">=DGET(A1:E10;\"Grade\";A13:E14)</item>"
-msgstr "<item type=\"input\">=DGET(A1:E10;\"Grade\";A13:E14)</item>"
+msgid "Source:"
+msgstr "Madda"
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150524\n"
-"111\n"
+"12010100.xhp\n"
+"par_id3148576\n"
+"12\n"
"help.text"
-msgid "Enter the name <item type=\"input\">Frank</item> in A14, and you see the result 2. Frank is in second grade. Enter <item type=\"input\">\"Age\"</item> instead of \"Grade\" and you will get Frank's age."
-msgstr "Maqaa <item type=\"input\">Frank</item>A14 galchi,kanaafis firii 2 argata.Frank kutaa lammaffaadha.Iddoo <item type=\"input\">\"Kutaa\"</item> \"umurii\" yoo buufte umurii Frank argatta."
+msgid "Displays information about the current database source and any existing operators."
+msgstr "Oddeeffanno madda kuusaa deetaa ammee fi oggeejjiiwwan jiran kamiyyu agarsisa."
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148833\n"
-"112\n"
+"12010100.xhp\n"
+"hd_id3146976\n"
+"13\n"
"help.text"
-msgid "Or enter the value <item type=\"input\">11</item> in cell C14 only, and delete the other entries in this row. Edit the formula in B16 as follows:"
-msgstr "Ykn gatii<item type=\"input\">11</item> man'ee C14 keessa qofa galchi.Achumaanis galfata tarree keessaa hunda haqi.Foormulaa B11 keessaa akka armaan gadiitti gulaalaa:"
+msgid "More <<"
+msgstr "Dabala>>"
-#: 04060101.xhp
+#: 12010100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149912\n"
-"113\n"
+"12010100.xhp\n"
+"par_id3149664\n"
+"14\n"
"help.text"
-msgid "<item type=\"input\">=DGET(A1:E10;\"Name\";A13:E14)</item>"
-msgstr "<item type=\"input\">=DGET(A1:E10;\"Maqaa\";A13:E14)</item>"
+msgid "Hides the additional options."
+msgstr "Dirqalaalee dabalataa dhoksa."
-#: 04060101.xhp
+#: 12020000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148813\n"
-"114\n"
+"12020000.xhp\n"
+"tit\n"
"help.text"
-msgid "Instead of the grade, the name is queried. The answer appears at once: Daniel is the only child aged 11."
-msgstr "Iddoo kutaa ,maqaatu gaafatama.Deebiin altakka mul'ata:Daniel qofatu daa'ima umurii 11 ti."
+msgid "Select Database Range"
+msgstr "Hangii kuusaa deetaa fili."
-#: 04060101.xhp
+#: 12020000.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3149766\n"
+"12020000.xhp\n"
+"bm_id3145068\n"
"help.text"
-msgid "<bookmark_value>DMAX function</bookmark_value> <bookmark_value>maximum values in Calc databases</bookmark_value> <bookmark_value>searching;maximum values in columns</bookmark_value>"
-msgstr "<bookmark_value>Faankishiniin DMAX </bookmark_value> <bookmark_value>gatii guddaa kuusdeetaa calc keessaa</bookmark_value> <bookmark_value>sakata'uu;gatii guddaa tarjaawwan keessaa</bookmark_value>"
+msgid "<bookmark_value>databases; selecting (Calc)</bookmark_value>"
+msgstr "<bookmark_value>kuusaa deetootaa; (shallaggii)filachuu</bookmark_value>"
-#: 04060101.xhp
+#: 12020000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3149766\n"
-"115\n"
+"12020000.xhp\n"
+"hd_id3145068\n"
+"1\n"
"help.text"
-msgid "DMAX"
-msgstr "DMAX"
+msgid "Select Database Range"
+msgstr "Hangii kuusaa deetaa fili."
-#: 04060101.xhp
+#: 12020000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154903\n"
-"116\n"
+"12020000.xhp\n"
+"par_id3149655\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBMAX\">DMAX returns the maximum content of a cell (field) in a database (all records) that matches the specified search conditions.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DBMAX\">DMAX qabeentaa guddaa man'ee kuusdeetaa keessa jiru kan haala barbaachaa deebisa.</ahelp>"
+msgid "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">Selects a database range that you defined under <link href=\"text/scalc/01/12010000.xhp\" name=\"Data - Define Range\">Data - Define Range</link>.</ahelp></variable>"
+msgstr "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">Hangii kuusaa deetaa isaa <link href=\"text/scalc/01/12010000.xhp\" name=\"Data - Define Range\">Deetaa - Hangii hiiki</link>.</ahelp></variable> jelatti hiikame fila."
-#: 04060101.xhp
+#: 12020000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3150771\n"
-"117\n"
+"12020000.xhp\n"
+"hd_id3153192\n"
+"3\n"
"help.text"
-msgid "Syntax"
-msgstr "caasima"
+msgid "Ranges"
+msgstr "Hangiiwwan"
-#: 04060101.xhp
+#: 12020000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3159157\n"
-"118\n"
+"12020000.xhp\n"
+"par_id3154684\n"
+"4\n"
"help.text"
-msgid "DMAX(Database; DatabaseField; SearchCriteria)"
-msgstr "DMAX(Kuusdeetaa;Dirree kuusdeetaa;Ulaagaa sakata'aa)"
+msgid "<ahelp hid=\"modules/scalc/ui/selectrange/treeview\">Lists the available database ranges. To select a database range, click its name, and then click <emph>OK</emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/selectrange/treeview\">Hangiiwwan kuusaa deetaa jiran tarreessa.Hangii kuusaa deetaa filuuf maqaa isaa cuqaasii,itti ansuun<emph>Eyyee</emph>cuqaasi.</ahelp>"
-#: 04060101.xhp
+#: 12030000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3145420\n"
-"119\n"
+"12030000.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Sort"
+msgstr "Fooyi"
-#: 04060101.xhp
+#: 12030000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148442\n"
-"120\n"
+"12030000.xhp\n"
+"hd_id3150275\n"
+"1\n"
"help.text"
-msgid "To find out how much the heaviest child in each grade weighed in the above example (scroll up, please), enter the following formula in B16:"
-msgstr "Fakkeenya armaa olii keessaa(maaloo,olmari) tokko tokkoo kutaa irraa ulfaatina daa'ima baay'ee ulfaatuu barbaaduuf,foormulaa armaan gadii B16 keessa galchaa."
+msgid "Sort"
+msgstr "Fooyi"
-#: 04060101.xhp
+#: 12030000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148804\n"
-"121\n"
+"12030000.xhp\n"
+"par_id3155922\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=DMAX(A1:E10;\"Weight\";A13:E14)</item>"
-msgstr "<item type=\"input\">=DMAX(A1:E10;\"Ulfaatina\";A13:E14)</item>"
+msgid "<variable id=\"sorttext\"><ahelp hid=\".uno:DataSort\">Sorts the selected rows according to the conditions that you specify.</ahelp></variable> $[officename] automatically recognizes and selects database ranges."
+msgstr "<variable id=\"sorttext\"><ahelp hid=\".uno:DataSort\">Akkaataa ulaagaalee ifteesiteen tarreewwan filaman tartiiba qabsiisi.</ahelp></variable> $[officename] Ofumaan addabasuun hangiiwwan kuusaa deetaa fila."
-#: 04060101.xhp
+#: 12030000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150510\n"
-"122\n"
+"12030000.xhp\n"
+"par_id3147428\n"
+"4\n"
"help.text"
-msgid "Under Grade, enter <item type=\"input\">1, 2, 3,</item> and so on, one after the other. After entering a grade number, the weight of the heaviest child in that grade appears."
-msgstr "Kutaa jallati, enter <item type=\"input\">1, 2, 3,</item> fi kkf,duraa dubaan galchi.Edda lakkoofsa kutaa galchitee booda, ulfaatina daa'ima kutaa sana keessatti hundarra ulfaatu argatta."
+msgid "You cannot sort data if the <link href=\"text/shared/01/02230000.xhp\" name=\"Record changes\">Record changes</link> options is enabled."
+msgstr "Yoo dirqalaaleen <link href=\"text/shared/01/02230000.xhp\" name=\"Record changes\">Jijjiiramoota galmee</link> hojii eegalu,deetaa tartiiba qabsiisuu hin dandeessu."
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3159141\n"
+"12030100.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>DMIN function</bookmark_value> <bookmark_value>minimum values in Calc databases</bookmark_value> <bookmark_value>searching;minimum values in columns</bookmark_value>"
-msgstr "<bookmark_value>Faankishiniin DMAX </bookmark_value> <bookmark_value>gatii xiqqaa kuusdeetaa calc keessaa</bookmark_value> <bookmark_value>sakata'uu;gatii guddaa tarjaawwan keessaa</bookmark_value>"
+msgid "Sort Criteria"
+msgstr "Ulaagaa Tartiiba Qabsiisa"
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3159141\n"
-"123\n"
+"12030100.xhp\n"
+"bm_id3152350\n"
"help.text"
-msgid "DMIN"
-msgstr "DMIN"
+msgid "<bookmark_value>sorting; sort criteria for database ranges</bookmark_value>"
+msgstr "<bookmark_value>tartiiba qabsiisa;hangiiwwan kuusaa deetaaf ulaagaa tartiibaa qabsiisaa</bookmark_value>"
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154261\n"
-"124\n"
+"12030100.xhp\n"
+"hd_id3152350\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBMIN\">DMIN returns the minimum content of a cell (field) in a database that matches the specified search criteria.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DBMIN\">DMAX qabeentaa xiqqaa man'ee(dirree) kuusdeetaa keessa jiru kan ulaagaa barbaachaan walgitu deebisa.</ahelp>"
+msgid "<link href=\"text/scalc/01/12030100.xhp\" name=\"Sort Criteria\">Sort Criteria</link>"
+msgstr "<link href=\"text/scalc/01/12030100.xhp\" name=\"Sort Criteria\">Ulaagaa Tartiiba Qabsiisaa</link>"
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3147238\n"
-"125\n"
+"12030100.xhp\n"
+"par_id3151385\n"
+"2\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\"modules/scalc/ui/sortcriteria/SortCriteriaPage\">Specify the sorting options for the selected range.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sortcriteria/SortCriteriaPage\">Hangii filameef dirqalaalee tartiiba qabsiisan ifteessi.</ahelp>"
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148479\n"
-"126\n"
+"12030100.xhp\n"
+"par_id3152462\n"
+"24\n"
"help.text"
-msgid "DMIN(Database; DatabaseField; SearchCriteria)"
-msgstr "DMIN(Kuusdeetaa;Dirree kuusdeetaa;Ulaagaa sakata'aa)"
+msgid "Ensure that you include any row and column titles in the selection."
+msgstr "Matadureewwan tarjaa fi tarree kamiyyu filannoo kana keessaatti akka haammatamu mirkaneessi."
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3151050\n"
-"127\n"
+"12030100.xhp\n"
+"hd_id3147428\n"
+"3\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Sort by"
+msgstr "Ittiin tartiiba qabsiisi"
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148925\n"
-"128\n"
+"12030100.xhp\n"
+"par_id3155854\n"
+"4\n"
"help.text"
-msgid "To find the shortest distance to school for the children in each grade in the above example (scroll up, please), enter the following formula in B16:"
-msgstr "Fakkeenya armaan olii keessaa(maaloo,olmari) tokko tokkoon kutaa irraa daa'imman mana baruumsaatti baay'ee dhiyaatan barbaaduuf,foormulaa armaan gadii B16 keessa galchaa:"
+msgid "<ahelp hid=\"modules/scalc/ui/sortkey/sortlb\">Select the column that you want to use as the primary sort key.</ahelp>"
+msgstr ""
-#: 04060101.xhp
+#: 12030100.xhp
+#, fuzzy
msgctxt ""
-"04060101.xhp\n"
-"par_id3149161\n"
-"129\n"
+"12030100.xhp\n"
+"hd_id3146121\n"
+"5\n"
"help.text"
-msgid "<item type=\"input\">=DMIN(A1:E10;\"Distance to School\";A13:E14)</item>"
-msgstr "<item type=\"input\">=DMIN(A1:E10;\"Fageenya gara mana baruumsaa\";A13:E14)</item>"
+msgid "Ascending"
+msgstr "#-#-#-#-# autopi.po (PACKAGE VERSION) #-#-#-#-#\\nDabaluu\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nOlee"
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148917\n"
-"130\n"
+"12030100.xhp\n"
+"par_id3148645\n"
+"6\n"
"help.text"
-msgid "In row 14, under Grade, enter <item type=\"input\">1, 2, 3,</item> and so on, one after the other. The shortest distance to school for each grade appears."
-msgstr "Tarree 14, kutaa jalatti,<item type=\"input\">1, 2, 3,</item> fi kkf,walduraa duubaan galcha.Kutaa hundaa fageenyi baay'ee gabaabaa ta'e ni argama."
+msgid "<ahelp hid=\"modules/scalc/ui/sortkey/up\">Sorts the selection from the lowest value to the highest value. The sorting rules are given by the locale. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages."
+msgstr ""
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3154274\n"
+"12030100.xhp\n"
+"hd_id3155411\n"
+"7\n"
"help.text"
-msgid "<bookmark_value>DAVERAGE function</bookmark_value> <bookmark_value>averages; in Calc databases</bookmark_value> <bookmark_value>calculating;averages in Calc databases</bookmark_value>"
-msgstr "<bookmark_value>Faankishiniin DAVERAGE </bookmark_value> <bookmark_value>giddugala; kuusdeeta calc keessaa</bookmark_value> <bookmark_value>shallaguu;giddugala kuusdeetaa calc keessaa</bookmark_value>"
+msgid "Descending"
+msgstr "Gadee"
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3154274\n"
-"131\n"
+"12030100.xhp\n"
+"par_id3151075\n"
+"8\n"
"help.text"
-msgid "DAVERAGE"
-msgstr "DAVERAGE"
+msgid "<ahelp hid=\"modules/scalc/ui/sortkey/down\">Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages."
+msgstr ""
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3166453\n"
-"132\n"
+"12030100.xhp\n"
+"hd_id3154492\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBMITTELWERT\">DAVERAGE returns the average of the values of all cells (fields) in all rows (database records) that match the specified search criteria.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DBMITTELWERT\">DAVERAGE giddugala gatii man'eewwan hundaa tarreewwan hundaa(galmee kuusdeetaa)kan ulaagaa barbaachaa murtaa'e waliin walgitan deebisa.</ahelp>"
+msgid "Then by"
+msgstr "Sanaa booda kanaan"
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3146955\n"
-"133\n"
+"12030100.xhp\n"
+"par_id3156283\n"
+"10\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Select the column that you want to use as the secondary sort key."
+msgstr ""
-#: 04060101.xhp
+#: 12030100.xhp
+#, fuzzy
msgctxt ""
-"04060101.xhp\n"
-"par_id3150710\n"
-"134\n"
+"12030100.xhp\n"
+"hd_id3149413\n"
+"11\n"
"help.text"
-msgid "DAVERAGE(Database; DatabaseField; SearchCriteria)"
-msgstr "DAVERAGE(Kuusdeetaa;Dirree kuusdeetaa;Ulaagaa sakata'aa)"
+msgid "Ascending"
+msgstr "#-#-#-#-# autopi.po (PACKAGE VERSION) #-#-#-#-#\\nDabaluu\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nOlee"
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3152943\n"
-"135\n"
+"12030100.xhp\n"
+"par_id3154018\n"
+"12\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Sorts the selection from the lowest value to the highest value. You can define the sort rules on Data - Sort - Options. You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
+msgstr ""
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149104\n"
-"136\n"
+"12030100.xhp\n"
+"hd_id3146972\n"
+"13\n"
"help.text"
-msgid "To find the average weight of all children of the same age in the above example (scroll up, please), enter the following formula in B16:"
-msgstr "Fakkeenya armaan olii keessaa giddugala ulfaatina daa'imman waggaa walqixaa barbaaduuf foormulaa armaan gadii B16 keessa galchaa:"
+msgid "Descending"
+msgstr "Gadee"
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153688\n"
-"137\n"
+"12030100.xhp\n"
+"par_id3145640\n"
+"14\n"
"help.text"
-msgid "<item type=\"input\">=DAVERAGE(A1:E10;\"Weight\";A13:E14)</item>"
-msgstr "<item type=\"input\">=DAVERAGE(A1:E10;\"Ulfaatina\";A13:E14)</item>"
+msgid "Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options. You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
+msgstr ""
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155587\n"
-"138\n"
+"12030100.xhp\n"
+"hd_id3150300\n"
+"21\n"
"help.text"
-msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The average weight of all children of the same age appears."
-msgstr "Tarree 14 keessa, Umrii jalatti, <item type=\"input\">7, 8, 9,</item> kkf, walduubaa dura galchi. Umriin jiddugaleessaa daa'imman umrii walfakkaataa qaban maraa ni mul'ata."
+msgid "Sort Ascending/Descending"
+msgstr "Olee/Gadee Foo'i"
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3159269\n"
+"12030100.xhp\n"
+"par_id3158212\n"
+"22\n"
"help.text"
-msgid "<bookmark_value>DPRODUCT function</bookmark_value> <bookmark_value>multiplying;cell contents in Calc databases</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii DPRODUCT</bookmark_value> <bookmark_value>qabeentaa man'ee kuusdeeta calc keessa jiru ;baay'isuu</bookmark_value>"
+msgid "<ahelp hid=\".uno:SortDescending\"><variable id=\"sytext\">Sorts the selection from the highest to the lowest value, or from the lowest to the highest value. Number fields are sorted by size and text fields by the order of the characters. You can define the sort rules on Data - Sort - Options.</variable></ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
+msgstr ""
-#: 04060101.xhp
+#: 12030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3159269\n"
-"139\n"
+"12030100.xhp\n"
+"par_id3159236\n"
+"25\n"
"help.text"
-msgid "DPRODUCT"
-msgstr "DPRODUCT"
+msgid "Icons on the <emph>Standard</emph> toolbar"
+msgstr "Sajoowwan kamshaa <emph>Waaltina</emph> irraa"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3152879\n"
-"140\n"
+"12030200.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBPRODUKT\">DPRODUCT multiplies all cells of a data range where the cell contents match the search criteria.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DBPRODUKT\">DPRODUCT man'eewwan hundaa kan hammanga deetaa qabeentoonni man'ee ulaagaa barbaachaan walgitan baay'isa.</ahelp>"
+msgid "Options"
+msgstr "Dirqalaalee"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3149966\n"
-"141\n"
+"12030200.xhp\n"
+"bm_id3147228\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<bookmark_value>sorting; options for database ranges</bookmark_value><bookmark_value>sorting;Asian languages</bookmark_value><bookmark_value>Asian languages;sorting</bookmark_value><bookmark_value>phonebook sorting rules</bookmark_value><bookmark_value>natural sort algorithm</bookmark_value>"
+msgstr "<bookmark_value>foo'iinsa;dirqalaalee Hammanga Kuusa Deetaatiif</bookmark_value><bookmark_value>foo'iinsa; Afaanota Eeshiyaa</bookmark_value><bookmark_value>Afaanota Eeshiyaa; foo'iinsa</bookmark_value><bookmark_value>seerota foo'iinsa Baafata bilbilaa</bookmark_value><bookmark_value>seermurtoo foo'iinsa uumamaa</bookmark_value>"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154854\n"
-"142\n"
+"12030200.xhp\n"
+"hd_id3147228\n"
+"1\n"
"help.text"
-msgid "DPRODUCT(Database; DatabaseField; SearchCriteria)"
-msgstr "DPRODUCT(Kuusaa;Dirree kuusdeetaa;Ulaagaa sakata'aa)"
+msgid "<link href=\"text/scalc/01/12030200.xhp\" name=\"Options\"> Options</link>"
+msgstr "<link href=\"text/scalc/01/12030200.xhp\" name=\"Options\">Dirqalaalee</link>"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3149802\n"
-"143\n"
+"12030200.xhp\n"
+"par_id3153770\n"
+"2\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/SortOptionsPage\"> Sets additional sorting options.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/SortOptionsPage\"> Dirqalaalee foo'iinsaa dabalataa qindeessa.</ahelp>"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148986\n"
-"144\n"
+"12030200.xhp\n"
+"hd_id3146976\n"
+"3\n"
"help.text"
-msgid "With the birthday party example above (scroll up, please), there is no meaningful application of this function."
-msgstr "Fakkeenya armaan olii keessatti (maaloo,olmari)qophiin guyyaa dhalootaa ,fankishinii kanaaf faayidaa hin qabu."
+msgid "Case Sensitivity"
+msgstr "Qub-suukanaawiina"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3148462\n"
+"12030200.xhp\n"
+"par_id3153091\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>DSTDEV function</bookmark_value> <bookmark_value>standard deviations in databases;based on a sample</bookmark_value>"
-msgstr "<bookmark_value>Faankiniin DSTDEV </bookmark_value> <bookmark_value>Istaandaardii diveeshinii kan kuusdeetaa keessa jiru;fakkeenya kenname irratti hundaa'a</bookmark_value>"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/case\"> Sorts first by uppercase letters and then by lowercase letters. For Asian languages, special handling applies.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/case\">Jalqaba quboota xixiqqoodhaan ittaansee quboota guguddoodhaan foo'a. Afaanota Eeshiyaatif qabannoo addaatu tajaajila.</ahelp>"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3148462\n"
-"145\n"
+"12030200.xhp\n"
+"par_idN10637\n"
"help.text"
-msgid "DSTDEV"
-msgstr "DSTDEV"
+msgid "Note for Asian languages: Check <emph>Case Sensitivity</emph> to apply multi-level collation. With multi-level collation, entries are first compared in their primitive forms with their cases and diacritics ignored. If they evaluate as the same, their diacritics are taken into account for the second-level comparison. If they still evaluate as the same, their cases, character widths, and Japanese Kana difference are considered for the third-level comparison."
+msgstr "Yaadannoo afaanota Eeshiyaatif: Foyyadeenya sadarkaa hedduu fayyadamuuf <emph>Qub-suukanaawiina</emph> mirkaneessi.Foyyadeenya sadarkaa hedduutin, haalota fii gubjaltoo tuffachuudhan galchiwwan jalqaba dakoo isaani waliin madaalamu.Yoo wal fakkatan, foyyadeenyi isaani wal madaallii sadarkaa lammaffaatif ni fayyada.Ammas yoo wal fakkaatan, akkaatan qubeewwan isaani, yabbinii arfiilee, fii kanan jaapaanii wal madaallii sadarkaa sadaffaatif ni tajaajiluu."
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154605\n"
-"146\n"
+"12030200.xhp\n"
+"hd_id3155856\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBSTDABW\">DSTDEV calculates the standard deviation of a population based on a sample, using the numbers in a database column that match the given conditions.</ahelp> The records are treated as a sample of data. That means that the children in the example represent a cross section of all children. Note that a representative result can not be obtained from a sample of less than one thousand."
-msgstr "<ahelp hid=\"HID_FUNC_DBSTDABW\">DSTDEV Istaandaardii diveeshinii ummataa fakkeenya irratti hundaa'udhaan ,lakkoofsota,kuusdeetaa tarjaa keessaa fayyadamuudhaan haala walgituun shallaga.</ahelp> Kuusaan akka fakkeenya deetaatti eegama.kana jechuun daa'imman fakkeenya irratti fudhataman amala daa'imman hundaa qabu.Hub.firiin bakka bu'u fakkeenya 1000 gad ta'uu hin qabu."
+msgid "Range contains column/row labels"
+msgstr "Hammangaan moggaasa tarjaa/tarree qaba"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3149427\n"
-"147\n"
+"12030200.xhp\n"
+"par_id3154014\n"
+"6\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/header\"> Omits the first row or the first column in the selection from the sort.</ahelp> The <emph>Direction</emph> setting at the bottom of the dialog defines the name and function of this check box."
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/header\"> Fooyinsa kessaa tarree tokkoffaa ykn tarjaa tokkoffaa filataman dhiisa.</ahelp> Qindeessaan <emph>Kallattii</emph> jala qaaqatti argamu maqaa fii fankishinii sanduuqa mirkaneessituu hiika."
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148661\n"
-"148\n"
+"12030200.xhp\n"
+"hd_id3147436\n"
+"7\n"
"help.text"
-msgid "DSTDEV(Database; DatabaseField; SearchCriteria)"
-msgstr "DSTDEV(Kuusdeetaa;Dirree kuusdeetaa;Ulaagaa sakata'aa)"
+msgid "Include formats"
+msgstr "Dhangiiwwan dabali"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3153945\n"
-"149\n"
+"12030200.xhp\n"
+"par_id3149377\n"
+"8\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/formats\"> Preserves the current cell formatting.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/formats\">Dhanga'ina man'ee olkaawa.</ahelp>"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149934\n"
-"150\n"
+"12030200.xhp\n"
+"hd_id3147438\n"
"help.text"
-msgid "To find the standard deviation of the weight for all children of the same age in the example (scroll up, please), enter the following formula in B16:"
-msgstr "Fakkeenya armaan oliitiif(maaloo,olmari) istaandaardii diveeshinii ulfaatina daa'imman hundaa kan umuriin walqixaa barbaaduuf foormulaa armaan gadii B16 keessatti galchaa."
+msgid "Enable natural sort"
+msgstr ""
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150630\n"
-"151\n"
+"12030200.xhp\n"
+"par_id3149378\n"
"help.text"
-msgid "<item type=\"input\">=DSTDEV(A1:E10;\"Weight\";A13:E14)</item>"
-msgstr "<item type=\"input\">=DSTDEV(A1:E10;\"Ulfaatina\";A13:E14)</item>"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/naturalsort\">Natural sort is a sort algorithm that sorts string-prefixed numbers based on the value of the numerical element in each sorted number, instead of the traditional way of sorting them as ordinary strings.</ahelp> For instance, let's assume you have a series of values such as, A1, A2, A3, A4, A5, A6, ..., A19, A20, A21. When you put these values into a range of cells and run the sort, it will become A1, A11, A12, A13, ..., A19, A2, A20, A21, A3, A4, A5, ..., A9. While this sorting behavior may make sense to those who understand the underlying sorting mechanism, to the rest of the population it seems completely bizarre, if not outright inconvenient. With the natural sort feature enabled, values such as the ones in the above example get sorted \"properly\", which improves the convenience of sorting operations in general."
+msgstr ""
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153536\n"
-"152\n"
+"12030200.xhp\n"
+"hd_id3153878\n"
+"10\n"
"help.text"
-msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The result shown is the standard deviation of the weight of all children of this age."
-msgstr "Tarree 14, kutaa jalatti,<item type=\"input\">7, 8, 9,</item> fi kkf,walduraa duubaan galcha.Firiin argamu istaandaardii diveeshii ulfaatina daa'imman hundaa ta'a."
+msgid "Copy sort results to:"
+msgstr "Firiiwwan fooyinsaa garagalchi gara:"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3150429\n"
+"12030200.xhp\n"
+"par_id3156286\n"
+"11\n"
"help.text"
-msgid "<bookmark_value>DSTDEVP function</bookmark_value> <bookmark_value>standard deviations in databases;based on populations</bookmark_value>"
-msgstr "<bookmark_value>Faankishiniin DSTDEVP</bookmark_value> <bookmark_value>istaandaardii diveeshinii kuusootadeeta keessa;baay'ina ummataa irratti hundaa'udhaan</bookmark_value>"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/copyresult\"> Copies the sorted list to the cell range that you specify.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/copyresult\">Tarreewwan fooyaman hammangaa man'ee ifteessiteetti garagalcha.</ahelp>"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3150429\n"
-"153\n"
+"12030200.xhp\n"
+"hd_id3153418\n"
+"12\n"
"help.text"
-msgid "DSTDEVP"
-msgstr "DSTDEVP"
+msgid "Sort results"
+msgstr "Firiiwwan fooi"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145598\n"
-"154\n"
+"12030200.xhp\n"
+"par_id3155602\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBSTDABWN\">DSTDEVP calculates the standard deviation of a population based on all cells of a data range which match the search criteria.</ahelp> The records from the example are treated as the whole population."
-msgstr "<ahelp hid=\"HID_FUNC_DBSTDABWN\">DSTDEVP man'ee hammanga deetaa hunda irratti hundaa'uudhaan istaandaardii diveeshinii ulaagaa barbaachaa wajjin walgitu shallaga.</ahelp> Galmeen fakkeenya irraa argamu akka ummata walii galaatti tajaajila."
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outarealb\"> Select a named <link href=\"text/scalc/01/12010000.xhp\" name=\"cell range\"> cell range</link> where you want to display the sorted list, or enter a cell range in the input box.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outarealb\"> Moggafamaa fili<link href=\"text/scalc/01/12010000.xhp\" name=\"cell range\"> hammngaa man'ee</link> iddoo tarreewwwan fooyaman itti agarsiisuu barbaaddu ykn sanduuqa naqaatti hammangaa man'ee galchi.</ahelp>"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3145307\n"
-"155\n"
+"12030200.xhp\n"
+"hd_id3153707\n"
+"14\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Sort results"
+msgstr "Firiiwwan fooi"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149484\n"
-"156\n"
+"12030200.xhp\n"
+"par_id3145642\n"
+"15\n"
"help.text"
-msgid "DSTDEVP(Database; DatabaseField; SearchCriteria)"
-msgstr "DSTDEVP(Kuusdeetaa;Dirree kuusdeetaa;Ulaagaa sakata'aa)"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outareaed\"> Enter the cell range where you want to display the sorted list, or select a named range from the list.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outareaed\"> Iddoo tarree fooyame itti agarsiisuu barbaaddutti hammangaa man'ee galchi ykn hammangaa moggafaame tarree kessaa fili.</ahelp>"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3153322\n"
-"157\n"
+"12030200.xhp\n"
+"hd_id3155445\n"
+"16\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Custom sort order"
+msgstr "Tartiiba fooyi mammiloo"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155431\n"
-"158\n"
+"12030200.xhp\n"
+"par_id3156385\n"
+"17\n"
"help.text"
-msgid "To find the standard deviation of the weight for all children of the same age at Joe's birthday party (scroll up, please), enter the following formula in B16:"
-msgstr "Guyyaa dhaloota Joe irratti istaandaardii diveeshinii ulfaatina daa'imman hundaa umurii walqixa qabanii barbaaduuf (maaloo,olmari),foormulaa armaan gadii B16 keessa galchaa."
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuser\"> Click here and then select the custom sort order that you want.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuser\"> Iddoo kana cuqaasi irraan Tartiiba fooyi mammiloo barbaaddu fili.</ahelp>"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148411\n"
-"159\n"
+"12030200.xhp\n"
+"hd_id3154704\n"
+"18\n"
"help.text"
-msgid "<item type=\"input\">=DSTDEVP(A1:E10;\"Weight\";A13:E14)</item>"
-msgstr "<item type=\"input\">=DSTDEV(A1:E10;\"Ulfaatina\";A13:E14)</item>"
+msgid "Custom sort order"
+msgstr "Tartiiba fooyi mammiloo"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3143271\n"
-"160\n"
+"12030200.xhp\n"
+"par_id3155962\n"
+"19\n"
"help.text"
-msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The result is the standard deviation of the weight for all same-aged children whose weight was checked."
-msgstr "Tarree 14, kutaa jalatti,<item type=\"input\">7, 8, 9,</item> fi kkf,walduraa duubaan galchaa.Firiin argamu istaandaardii deveeshinii ulfaatina daa'imman hunda umurii walqixa qabanii ta'a."
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuserlb\"> Select the custom sort order that you want to apply. To define a custom sort order, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060400.xhp\" name=\"%PRODUCTNAME Calc - Sort Lists\">%PRODUCTNAME Calc - Sort Lists</link> .</ahelp>"
+msgstr ""
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3154794\n"
+"12030200.xhp\n"
+"hd_id3149257\n"
+"28\n"
"help.text"
-msgid "<bookmark_value>DSUM function</bookmark_value> <bookmark_value>calculating;sums in Calc databases</bookmark_value> <bookmark_value>sums;cells in Calc databases</bookmark_value>"
-msgstr "<bookmark_value>Faankishii DSUM </bookmark_value> <bookmark_value>shallaguu;ida'ama kuusdeetaa calc keessa</bookmark_value> <bookmark_value>ida'ama;man'eewwan kuusdeetaa keessa</bookmark_value>"
+msgid "Language"
+msgstr "Afaan"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3154794\n"
-"161\n"
+"12030200.xhp\n"
+"hd_id3147004\n"
+"29\n"
"help.text"
-msgid "DSUM"
-msgstr "DSUM"
+msgid "Language"
+msgstr "Afaan"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149591\n"
-"162\n"
+"12030200.xhp\n"
+"par_id3150787\n"
+"32\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBSUMME\">DSUM returns the total of all cells in a database field in all rows (records) that match the specified search criteria.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DBSUMME\">DSUM man'eewwan walii galaa hunda kan dirree kuusdeetaa tarreewwan hundaa(galmee )keessaa ulaagaa barbaachaa murtaa'e waliin walgitan deebisa.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/language\"> Select the language for the sorting rules.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/language\"> Seerota fooyinsaaf afaan fili.</ahelp>"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3146128\n"
-"163\n"
+"12030200.xhp\n"
+"hd_id3150344\n"
+"30\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Options"
+msgstr "Dirqalaalee"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150989\n"
-"164\n"
+"12030200.xhp\n"
+"par_id3155113\n"
+"33\n"
"help.text"
-msgid "DSUM(Database; DatabaseField; SearchCriteria)"
-msgstr "DSUM(Kuusdeetaa;Dirree kuusdeetaa;Ulaagaa sakata'aa)"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/algorithmlb\"> Select a sorting option for the language.</ahelp> For example, select the \"phonebook\" option for German to include the umlaut special character in the sorting."
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/algorithmlb\"> Afaani filachuuf filannoo fooyinsaa fili.</ahelp> Fakkenyaaf, afaan Jarmaniitiif arfii addaa fooyinsa keessaa unmault dabaluuf filannoo \"baafatabilbilaa\" fili."
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3159079\n"
-"165\n"
+"12030200.xhp\n"
+"hd_id3152580\n"
+"20\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Direction"
+msgstr "Kallattii"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3152766\n"
-"166\n"
+"12030200.xhp\n"
+"hd_id3154201\n"
+"22\n"
"help.text"
-msgid "To find the length of the combined distance to school of all children at Joe's birthday party (scroll up, please) who are in second grade, enter the following formula in B16:"
-msgstr "Guyyaa dhalootaa Joe irratti fageenya walii galaa daa'imman kutaa lammaffaa hundaa hanga mana baruumsaatti barbaaduuf (maaloo,olmari)foormulaa armaan gadi B16 keessatti galchaa."
+msgid "Top to Bottom (Sort Rows)"
+msgstr "Gubbaa gara Jalaattii(Tarreewwan Fooyi)"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3151312\n"
-"167\n"
+"12030200.xhp\n"
+"par_id3166430\n"
+"23\n"
"help.text"
-msgid "<item type=\"input\">=DSUM(A1:E10;\"Distance to School\";A13:E14)</item>"
-msgstr "<item type=\"input\">=DSUM(A1:E10;\"Fageenya gara mana baruumsatti\";A13:E14)</item>"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/topdown\"> Sorts rows by the values in the active columns of the selected range.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/topdown\">Tarreewwan gatii tarjaawwan ka'aa keessaa hammangaa filatameen fooya.</ahelp>"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150596\n"
-"168\n"
+"12030200.xhp\n"
+"hd_id3145588\n"
+"24\n"
"help.text"
-msgid "Enter <item type=\"input\">2</item> in row 14 under Grade. The sum (1950) of the distances to school of all the children who are in second grade is displayed."
-msgstr "Tarree 14 keessatti <item type=\"input\">2</item>kutaa jalatti galchaa.Ida'amni(1950)fageenya daa'imman hundaa kutaa lammaffaa ni mul'ata."
+msgid "Left to Right (Sort Columns)"
+msgstr "Bitaa gara Mirgaatti(Tarjaawwan Fooyi)"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3155614\n"
+"12030200.xhp\n"
+"par_id3154370\n"
+"25\n"
"help.text"
-msgid "<bookmark_value>DVAR function</bookmark_value> <bookmark_value>variances;based on samples</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii DVAR </bookmark_value> <bookmark_value>vaariyaansii;eddattoo irratti hundaa'udhaan</bookmark_value>"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/leftright\"> Sorts columns by the values in the active rows of the selected range.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/leftright\">Tarjaawwan gatii tarreewwan ka'aa keessaa hammangaa filatameen fooya.</ahelp>"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3155614\n"
-"170\n"
+"12030200.xhp\n"
+"hd_id3156290\n"
+"26\n"
"help.text"
-msgid "DVAR"
-msgstr "DVAR"
+msgid "Data area"
+msgstr "Iddoo deetaa"
-#: 04060101.xhp
+#: 12030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154418\n"
-"171\n"
+"12030200.xhp\n"
+"par_id3156446\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBVARIANZ\">DVAR returns the variance of all cells of a database field in all records that match the specified search criteria.</ahelp> The records from the example are treated as a sample of data. A representative result cannot be obtained from a sample population of less than one thousand."
-msgstr "<ahelp hid=\"HID_FUNC_DBVARIANZ\">DVAR vaaraansii man'ee hundaa kan dirree kuusdeetaa galmee hundaa keessa jiru kan ulaagaa barbaachisaan wal gitu deebisa.</ahelp> Galmeen fakkeenya irraa argame akka fakkeenyatti ilaalama.Firiin bakka bu'u fakkeenya ummataa 1000 gadi ta'uu hin qabu."
+msgid "Displays the cell range that you want to sort."
+msgstr "Hammangaa man'ee fooyu barbaaddee agarsiisa."
-#: 04060101.xhp
+#: 12040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3154825\n"
-"172\n"
+"12040000.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Filter"
+msgstr "Gingilchaa"
-#: 04060101.xhp
+#: 12040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3156138\n"
-"173\n"
+"12040000.xhp\n"
+"hd_id3150767\n"
+"1\n"
"help.text"
-msgid "DVAR(Database; DatabaseField; SearchCriteria)"
-msgstr "DVAR(Kuusdeetaa;Dirree kuusdeetaa;Ulaagaa sakata'aa)"
+msgid "<link href=\"text/scalc/01/12040000.xhp\" name=\"Filter\">Filter</link>"
+msgstr "<link href=\"text/scalc/01/12040000.xhp\" name=\"Filter\">Gingilchaa</link>"
-#: 04060101.xhp
+#: 12040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3151257\n"
-"174\n"
+"12040000.xhp\n"
+"par_id3155131\n"
+"2\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<ahelp hid=\".\">Shows commands to filter your data.</ahelp>"
+msgstr "<ahelp hid=\".\">deetaa kee gingilchuuf ajajawwan agarsiisa.</ahelp>"
-#: 04060101.xhp
+#: 12040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153701\n"
-"175\n"
+"12040000.xhp\n"
+"par_id3146119\n"
+"7\n"
"help.text"
-msgid "To find the variance of the weight of all children of the same age of the above example (scroll up, please), enter the following formula in B16:"
-msgstr "Fakkeenya armaan olii keessaa vaariyaansii ulfaatina daa'imman waggaa walqixaa barbaaduuf foormulaa armaan gadii B16 keessa galchaa:"
+msgid "$[officename] automatically recognizes predefined database ranges."
+msgstr "$[officename]n hammangaawwan kuusa deetaa dura hiikaman ofumaan addabaasa."
-#: 04060101.xhp
+#: 12040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153676\n"
-"176\n"
+"12040000.xhp\n"
+"par_id3153363\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">=DVAR(A1:E10;\"Weight\";A13:E14)</item>"
-msgstr "<item type=\"input\">=DVAR(A1:E10;\"Ulfaatina\";A13:E14)</item>"
+msgid "The following filtering options are available:"
+msgstr "Filannoowwan gingilchaa armaan gadi jiru:"
-#: 04060101.xhp
+#: 12040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153798\n"
-"177\n"
+"12040000.xhp\n"
+"hd_id3153728\n"
+"4\n"
"help.text"
-msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. You will see as a result the variance of the weight values for all children of this age."
-msgstr "Tarree 14, kutaa jalatti,<item type=\"input\">7, 8, 9,</item> fi kkf,walduraa duubaan galchaa.Firiin argamu vaariyaansii ulfaatina daa'imman hunda umurii walqixa qabanii ta'a."
+msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Standard filter\">Standard filter</link>"
+msgstr "<link href=\"text/shared/02/12090000.xhp\" name=\"Standard filter\">Gingilchaa waltiina</link>"
-#: 04060101.xhp
+#: 12040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3153880\n"
+"12040000.xhp\n"
+"hd_id3159153\n"
+"5\n"
"help.text"
-msgid "<bookmark_value>DVARP function</bookmark_value> <bookmark_value>variances;based on populations</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii DVAR </bookmark_value> <bookmark_value>vaariyaansii;fakkeenya ummataa irratti hundaa'udhaan</bookmark_value>"
+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 ol'aanaa</link>"
-#: 04060101.xhp
+#: 12040100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3153880\n"
-"178\n"
+"12040100.xhp\n"
+"tit\n"
"help.text"
-msgid "DVARP"
-msgstr "DVARP"
+msgid "AutoFilter"
+msgstr "OfGingilchaa"
-#: 04060101.xhp
+#: 12040100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155119\n"
-"179\n"
+"12040100.xhp\n"
+"hd_id3153541\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBVARIANZEN\">DVARP calculates the variance of all cell values in a database field in all records that match the specified search criteria.</ahelp> The records are from the example are treated as an entire population."
-msgstr "<ahelp hid=\"HID_FUNC_DBVARIANZEN\">DVAR vaaraansii man'ee hundaa kan dirree kuusdeetaa galmee hundaa keessa jiru kan ulaagaa barbaachisaan wal gitu deebisa.</ahelp> Galmeen fakkeenya irraa argame akka ummata walii galaatti tajaajila."
+msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link>"
+msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">OfGingilchaa</link>"
-#: 04060101.xhp
+#: 12040100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3145774\n"
-"180\n"
+"12040100.xhp\n"
+"par_id3148550\n"
+"2\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\".uno:DataFilterAutoFilter\">Automatically filters the selected cell range, and creates one-row list boxes where you can choose the items that you want to display.</ahelp>"
+msgstr "<ahelp hid=\".uno:DataFilterAutoFilter\">Ofumaan hammangaa man'ee filatamanii gingilcha,itti aansuun sanduqawwan tarree tar-tokkee iddoo wantoota agasiisuu barbaaddee itti filachu dandeessuu uuma.</ahelp>"
-#: 04060101.xhp
+#: 12040100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153776\n"
-"181\n"
+"12040100.xhp\n"
+"par_id3145171\n"
+"3\n"
"help.text"
-msgid "DVARP(Database; DatabaseField; SearchCriteria)"
-msgstr "DVARP(Kuusdeetaa;Dirree kuusdeetaa;Ulaagaa sakata'aa)"
+msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Default filter\">Default filter</link>"
+msgstr "<link href=\"text/shared/02/12090000.xhp\" name=\"Default filter\">Gingilchaa durtii</link>"
-#: 04060101.xhp
+#: 12040201.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3151110\n"
-"182\n"
+"12040201.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "More"
+msgstr "Dabalaa"
-#: 04060101.xhp
+#: 12040201.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3147099\n"
-"183\n"
+"12040201.xhp\n"
+"hd_id3148492\n"
+"1\n"
"help.text"
-msgid "To find the variance of the weight for all children of the same age at Joe's birthday party (scroll up, please), enter the following formula in B16:"
-msgstr "Guyyaa dhaloota Joe irratti vaariyaansii ulfaatina daa'imman hundaa umurii walqixa qabanii barbaaduuf (maaloo,olmari),foormulaa armaan gadii B16 keessa galchaa."
+msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
+msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">Dabalata</link>"
-#: 04060101.xhp
+#: 12040201.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3147322\n"
-"184\n"
+"12040201.xhp\n"
+"par_id3159400\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=DVARP(A1:E10;\"Weight\";A13:E14)</item>"
-msgstr "<item type=\"input\">=DVARP(A1:E10;\"Ulfaatina\";A13:E14)</item>"
+msgid "<variable id=\"zusaetzetext\"><ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_SPEC_FILTER:BTN_MORE\">Shows additional filter options.</ahelp></variable>"
+msgstr "<variable id=\"zusaetzetext\"><ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_SPEC_FILTER:BTN_MORE\">Filannoowwan gingilchaa dabalataa agarsiisa.</ahelp></variable>"
-#: 04060101.xhp
+#: 12040201.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3146902\n"
-"185\n"
+"12040201.xhp\n"
+"hd_id3150791\n"
+"3\n"
"help.text"
-msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The variance of the weight values for all children of this age attending Joe's birthday party appears."
-msgstr "Tarree 14, kutaa jalatti,<item type=\"input\">7, 8, 9,</item> fi kkf,walduraa duubaan galchaa. vaariyaansii ulfaatina daa'imman hunda umurii walqixa qabanii kan qophii guyyaa dhaloota Joe irratti argamaniitu mul'ata."
+msgid "Options"
+msgstr "Dirqalaalee"
-#: 05100100.xhp
+#: 12040201.xhp
msgctxt ""
-"05100100.xhp\n"
-"tit\n"
+"12040201.xhp\n"
+"hd_id3154138\n"
+"5\n"
"help.text"
-msgid "Merge Cells"
-msgstr "Man'eewwan Makii"
+msgid "Case sensitive"
+msgstr "Qub-suukanaawaa"
-#: 05100100.xhp
+#: 12040201.xhp
msgctxt ""
-"05100100.xhp\n"
-"hd_id3154765\n"
+"12040201.xhp\n"
+"par_id3147228\n"
+"6\n"
"help.text"
-msgid "Merge Cells"
-msgstr "Man'eewwan Makii"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_CASE\">Distinguishes between uppercase and lowercase letters when filtering the data.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_CASE\">Yommu deetaan gingilchamu qubee xixiqqaa fii qubee gguddaa addabaasa.</ahelp>"
-#: 05100100.xhp
+#: 12040201.xhp
msgctxt ""
-"05100100.xhp\n"
-"par_id3147406\n"
+"12040201.xhp\n"
+"hd_id3154908\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\".\">Combines the contents of the selected cells into a single cell.</ahelp>"
-msgstr ""
+msgid "Range contains column labels"
+msgstr "Hammangaan moggaasa tarjaa qaba"
-#: 05100100.xhp
+#: 12040201.xhp
msgctxt ""
-"05100100.xhp\n"
-"par_id3154351\n"
+"12040201.xhp\n"
+"par_id3153768\n"
+"8\n"
"help.text"
-msgid "Choose <emph>Format - Merge Cells - Merge Cells</emph>"
-msgstr ""
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_HEADER\">Includes the column labels in the first row of a cell range.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_HEADER\">moggaasa tarjaa hammangaa man'ee tarree tkkoffaa dabalata.</ahelp>"
-#: 04060000.xhp
+#: 12040201.xhp
msgctxt ""
-"04060000.xhp\n"
-"tit\n"
+"12040201.xhp\n"
+"hd_id3155306\n"
+"9\n"
"help.text"
-msgid "Function Wizard"
-msgstr "Masaka Faankishinii"
+msgid "Copy results to"
+msgstr "Bu'aawwan garagalchi gara"
-#: 04060000.xhp
+#: 12040201.xhp
msgctxt ""
-"04060000.xhp\n"
-"bm_id3147426\n"
+"12040201.xhp\n"
+"par_id3154319\n"
+"10\n"
"help.text"
-msgid "<bookmark_value>inserting functions; Function Wizard</bookmark_value><bookmark_value>functions;Function Wizard</bookmark_value><bookmark_value>wizards; functions</bookmark_value>"
-msgstr "<bookmark_value>faankishinii saaguu; Massaka Faankishinii</bookmark_value><bookmark_value>faankishinoota;Masaka Faankishinii</bookmark_value><bookmark_value>masakoota; faankishinoota</bookmark_value>"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_COPY_AREA\">Select the check box, and then select the cell range where you want to display the filter results.</ahelp> You can also select a named range from the list."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_COPY_AREA\">sanduuqa filannoo fili,itti aansuun hammangaa man'ee iddoo firiiwwan gingilchaa itti agarsiistu fili.</ahelp> Akkasumas hammangawwan moggafaman tarree keesaa filuu ni dandeessa."
-#: 04060000.xhp
+#: 12040201.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3147426\n"
-"1\n"
+"12040201.xhp\n"
+"hd_id3145272\n"
+"11\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Function Wizard</link>"
-msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Masaka Faankishinii</link>"
+msgid "Regular expression"
+msgstr "Himannoo idilee"
-#: 04060000.xhp
+#: 12040201.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3145271\n"
-"2\n"
+"12040201.xhp\n"
+"par_id3152576\n"
+"12\n"
"help.text"
-msgid "<variable id=\"funktionsautopilottext\"><ahelp hid=\".uno:FunctionDialog\">Opens the <emph>Function Wizard</emph>, which helps you to interactively create formulas.</ahelp></variable> Before you start the Wizard, select a cell or a range of cells from the current sheet, in order to determine the position at which the formula will be inserted."
-msgstr "<variable id=\"funktionsautopilottext\"><ahelp hid=\".uno:FunctionDialog\"><emph>Masaka Faankishinii</emph>bana, foormulaawwan uumuf si gargaaru bana.</ahelp></variable> Bakkatti foormulaan saagamu murteessuuf masaka eegaluu keen dura man'ee yookiin hangii man'eewwanii wardii irraa filadhu."
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_REGEXP\">Allows you to use wildcards in the filter definition.</ahelp> For a list of the regular expressions that $[officename] supports, click <link href=\"text/shared/01/02100001.xhp\" name=\"here\">here</link>."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_REGEXP\">Hiika gingilchaa kessatti akka turbaawwan abbaalaa fayyadamtu eeyyama.</ahelp> Tarree himannoowwan idilee $[officename]n gargaaru argachuuf, <link href=\"text/shared/01/02100001.xhp\" name=\"here\">here</link> cuqaasi."
-#: 04060000.xhp
+#: 12040201.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id8007446\n"
+"12040201.xhp\n"
+"par_id3149377\n"
+"33\n"
"help.text"
-msgid "You can download the complete ODFF (OpenDocument Format Formula) specification from the <link href=\"http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula\">OASIS</link> web site."
-msgstr "You can download the complete ODFF (OpenDocument Format Formula) specification from the <link href=\"http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula\">OASIS</link> web site irraa ODFF (OpenDocument Format Formula) hundaa naqachuu dandeessa."
+msgid "If the <emph>Regular Expressions</emph> check box is selected, you can use regular expressions in the Value field if the Condition list box is set to '=' EQUAL or '<>' UNEQUAL. This also applies to the respective cells that you reference for an advanced filter."
+msgstr "Yoo sanduuqni <emph>Himannoowwan Idilee</emph>filatame, yoo sanduuqni tarree '=' EQUAL ykn '<>' UNEQUAL tin qindaa'e himannoowwan idilee fayyadamuu danddeessa."
-#: 04060000.xhp
+#: 12040201.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3159153\n"
-"60\n"
+"12040201.xhp\n"
+"hd_id3149958\n"
+"34\n"
"help.text"
-msgid "The <emph>Function Wizard</emph> has two tabs: <emph>Functions</emph> is used to create formulas, and <emph>Structure</emph> is used to check the formula build."
-msgstr "<emph>Masakni Faankishinii</emph> caancaloota lama qaba. <emph>Faankishinoonni</emph> foormulaa uumuuf gargaara, <emph>CaasaanStructure</emph> immoo foormulaa ijaarame mirkaneessuuf gargaara."
+msgid "No duplication"
+msgstr "Bayyisuun hinjiru"
-#: 04060000.xhp
+#: 12040201.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3154490\n"
-"3\n"
+"12040201.xhp\n"
+"par_id3153876\n"
+"35\n"
"help.text"
-msgid "Functions Tab"
-msgstr "Caancala Faankishinootaa"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_UNIQUE\">Excludes duplicate rows in the list of filtered data.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_UNIQUE\">Deetaa gingilchame keessaa bayyisuu tarreewwan tokkoffaa hin dabalatu.</ahelp>"
-#: 04060000.xhp
+#: 12040201.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3149378\n"
-"5\n"
+"12040201.xhp\n"
+"hd_id3154018\n"
+"40\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
-msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">Tarree Akaakuuwwanii fi Faankishinootaa</link>"
+msgid "Keep filter criteria"
+msgstr "Ulaagaalee gingilchaa kaa'i"
-#: 04060000.xhp
+#: 12040201.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3154730\n"
+"12040201.xhp\n"
+"par_id3149123\n"
+"41\n"
+"help.text"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FILTER:BTN_DEST_PERS\">Select the <emph>Copy results to</emph> check box, and then specify the destination range where you want to display the filtered data. If this box is checked, the destination range remains linked to the source range. You must have defined the source range under <emph>Data - Define range</emph> as a database range.</ahelp> Following this, you can reapply the defined filter at any time as follows: click into the source range, then choose <emph>Data - Refresh Range</emph>."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FILTER:BTN_DEST_PERS\">Sanduuqa filannootti <emph>firiwwan gargalchi</emph> fili,itti aansuun hammangaa ga'umsaa bakka deetaa gingilchame itti agarsiisuu barbaaddee ifteessi.Yoo sanduuqni kun mirkaneeffame,hammangaan ga'umsaa hammangaa maddaatti kornyatee tura.Hammangaa maddaa <emph>Deetaa - Hangii hiikaa</emph> jalaa jiran akka hammangaa kuusaa deetaatti qindeessuu qabda.</ahelp> Kanatti fufuun,yeroo kamiyyuu gingilchaa qindaa'e akka armaan gaditti dabaldhiyeeffachuu dandeessa: hammangaa maddaa cuqaasi,irraan <emph>Deetaa - Hangii Haaromsi</emph> fili."
+
+#: 12040201.xhp
+msgctxt ""
+"12040201.xhp\n"
+"hd_id3149018\n"
"36\n"
"help.text"
-msgid "Category"
-msgstr "Akaakuu"
+msgid "Data range"
+msgstr "Hammanga Deetaa"
-#: 04060000.xhp
+#: 12040201.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3153417\n"
+"12040201.xhp\n"
+"par_id3150042\n"
"37\n"
"help.text"
-msgid "<variable id=\"kategorienliste\"><ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_CATEGORY\">Lists all the categories to which the different functions are assigned. Select a category to view the appropriate functions in the list field below.</ahelp> Select \"All\" to view all functions in alphabetical order, irrespective of category. \"Last Used\" lists the functions you have most recently used. </variable>"
-msgstr "<variable id=\"kategorienliste\"><ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_CATEGORY\">Akaakuuwwan Faankishinoonni garagaraa itti mogga'an hunda tarreessa.Faankishinii sirrii dirree tarree armaan gadii keessa jiru agarsiisuuf akaakuu filadhu.</ahelp> Faankishinoota hunda tartiiba ABtiin akaakuu malee agarsiisuuf \"Hunda\" filadhu.\"Maayii kan fayyadamame\" faankishinoota yeroo dhihootti fayyadamte tarreessa. </variable>"
+msgid "Displays the cell range or the name of the cell range that you want to filter."
+msgstr "Hammangaa man'ee ykn maqaa hammangaa man'ee gingilchuu barbaaddee agarsiisa."
-#: 04060000.xhp
+#: 12040300.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3150749\n"
-"6\n"
+"12040300.xhp\n"
+"tit\n"
"help.text"
-msgid "Function"
-msgstr "Faankishinii"
+msgid "Advanced Filter"
+msgstr "Gingilchaa ol'aanaa"
-#: 04060000.xhp
+#: 12040300.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3155445\n"
-"7\n"
+"12040300.xhp\n"
+"hd_id3158394\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_FUNCTION\">Displays the functions found under the selected category. Double-click to select a function.</ahelp> A single-click displays a short function description."
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_FUNCTION\">Faankishinoota akaakuu filatame jala jiran mul'isa.Faankkishinii filachuuf hantuutee lama-cuqaasi.</ahelp> Cuqaasni al tokkee ibsa gabaabaa faankishinii mul'isa."
+msgid "Advanced Filter"
+msgstr "Gingilchaa ol'aanaa"
-#: 04060000.xhp
+#: 12040300.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3159264\n"
-"8\n"
+"12040300.xhp\n"
+"par_id3156281\n"
+"2\n"
"help.text"
-msgid "Array"
-msgstr "Waraantoo"
+msgid "<variable id=\"spezialfilter\"><ahelp hid=\".uno:DataFilterSpecialFilter\">Defines an advanced filter.</ahelp></variable>"
+msgstr "<variable id=\"spezialfilter\"><ahelp hid=\".uno:DataFilterSpecialFilter\">Gingilchaa ol'aanaa qinddeessa.</ahelp></variable>"
-#: 04060000.xhp
+#: 12040300.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3149566\n"
-"9\n"
+"12040300.xhp\n"
+"par_idN105EB\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FORMULA:BTN_MATRIX\">Specifies that the selected function is inserted into the selected cell range as an array formula. </ahelp> Array formulas operate on multiple cells. Each cell in the array contains the formula, not as a copy but as a common formula shared by all matrix cells."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FORMULA:BTN_MATRIX\">Faankishiniin filatame akka waraantoo foormulaatti hangii man'ee filatamee keessatti saagamuu isaa adda baasa. </ahelp> Foormuloonni waraantoo man'ee hedduu irratti hojjetu.Man'een hundi waraantoo keessa jiru foormulaa foormulaa akka garagalchaatti osoo hin taane akka foormulaa baratamaa man'eewwan tarreentaa hundaan hiramaniitti of keessatti qabata."
+msgid "<embedvar href=\"text/scalc/guide/filters.xhp#filters\"/>"
+msgstr "<embedvar href=\"text/scalc/guide/filters.xhp#filters\"/>"
-#: 04060000.xhp
+#: 12040300.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3155959\n"
-"61\n"
+"12040300.xhp\n"
+"hd_id3153771\n"
+"25\n"
"help.text"
-msgid "The <emph>Array</emph> option is identical to the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter command, which is used to enter and confirm formulas in the sheet. The formula is inserted as a matrix formula indicated by two braces { }."
-msgstr "Filannoon <emph>Waraantoo</emph> ajaja<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter foormuloota galchuufi dhugoomsuuf gargaaru wajjiin walfakkaata. Foormulaan akka foormulaa tarreentaa sadalga lamaan mul'ifametti saagama { }."
+msgid "Read filter criteria from"
+msgstr "Ulaagaalee gingilchaa dubbisi kanarraa"
-#: 04060000.xhp
+#: 12040300.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3152993\n"
-"40\n"
+"12040300.xhp\n"
+"par_id3147426\n"
+"26\n"
"help.text"
-msgid "The maximum size of an array range is 128 by 128 cells."
-msgstr "Hammantaa guddaan hangii waraantoo man'eewwan 128 128tiini dha."
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_CRITERIA_AREA\">Select the named range, or enter the cell range that contains the filter criteria that you want to use.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_CRITERIA_AREA\">Hammanga moggaafame fili, ykn hammangaa man'ee ulaagaalee itti fayyadamuu barbaaddee of keessaa qabu galchi.</ahelp>"
-#: 04060000.xhp
+#: 12040300.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3150367\n"
-"41\n"
+"12040300.xhp\n"
+"hd_id3153188\n"
+"27\n"
"help.text"
-msgid "Argument Input Fields"
-msgstr "Dirreewwan Qajeelfama Naqan"
+msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
+msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">Dabalata</link>"
-#: 04060000.xhp
+#: 12040400.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3145587\n"
-"15\n"
+"12040400.xhp\n"
+"tit\n"
"help.text"
-msgid "When you double-click a function, the argument input field(s) appear on the right side of the dialog. To select a cell reference as an argument, click directly into the cell, or drag across the required range on the sheet while holding down the mouse button. You can also enter numerical and other values or references directly into the corresponding fields in the dialog. When using <link href=\"text/scalc/01/04060102.xhp\" name=\"date entries\">date entries</link>, make sure you use the correct format. Click OK to insert the result into the spreadsheet."
-msgstr "Yeroo faankishinii lama-cuqaastu,dirree(wwan)qajeelfama galchan harka mirga qaaqaatti mul'atu.Wabii man'ee akka qajeelfamaatti filachuudhaaf,yerooqabduu hantuutee gaqqabdu kallattiidhaan man'ee keessa cuqaasi,ykn hangii barbaadame wardii irra jiru harkisi.Gatiiwwan lakkoofsaa fi biroo ykn wabiiwwan kallattiidhaan gita dirreewwanii qaaqa keessa jiranittis galchuu ni dandeessa.Yeroo <link href=\"text/scalc/01/04060102.xhp\" name=\"date entries\">galiinsa guyyaa</link>fayyadamtu,dhangii sirrii fayyadamuu ke mirkaneessi.Firii wardii keessatti saaguuf OK cuqaasi."
+msgid "Remove Filter"
+msgstr "Gingilchaa Haqi"
-#: 04060000.xhp
+#: 12040400.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3149408\n"
-"18\n"
+"12040400.xhp\n"
+"hd_id3153087\n"
+"1\n"
"help.text"
-msgid "Function Result"
-msgstr "Firii Faankishinii"
+msgid "<link href=\"text/scalc/01/12040400.xhp\" name=\"Remove Filter\">Remove Filter</link>"
+msgstr "<link href=\"text/scalc/01/12040400.xhp\" name=\"Remove Filter\">Gingilchaa haqi</link>"
-#: 04060000.xhp
+#: 12040400.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3155809\n"
-"19\n"
+"12040400.xhp\n"
+"par_id3154760\n"
+"2\n"
"help.text"
-msgid "As soon you enter arguments in the function, the result is calculated. This preview informs you if the calculation can be carried out with the arguments given. If the arguments result in an error, the corresponding <link href=\"text/scalc/05/02140000.xhp\" name=\"error code\">error code</link> is displayed."
-msgstr "Akkuma qajeelfamoota faankishinii keessa galchiteen, firiin ni shallagama.Durargiin kun qajeelfamoota kennamaniin hojjetamuu isaa sitti hima.yoo qajeelfamootni dogoggorri isaan mudate,gitni<link href=\"text/scalc/05/02140000.xhp\" name=\"error code\">lakkadaa dogoggoraae</link> ni mul'ata."
+msgid "<ahelp hid=\".uno:DataFilterRemoveFilter\">Removes the filter from the selected cell range. To enable this command, click inside the cell area where the filter was applied.</ahelp>"
+msgstr "<ahelp hid=\".uno:DataFilterRemoveFilter\">Hammanga man'ee filataman irra gingilchaa haqa. Ajaja kana dandeessisuuf, naannoo mandhee iddoo gingilchaan irrattii dalagame keessaatti cuqaasi.</ahelp>"
-#: 04060000.xhp
+#: 12040500.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3148700\n"
-"23\n"
+"12040500.xhp\n"
+"tit\n"
"help.text"
-msgid "The required arguments are indicated by names in bold print."
-msgstr "Qajeelfamootni barbaadaman maqaa maxxansaa yabbuu keessa jiruun mul'ifamu."
+msgid "Hide AutoFilter"
+msgstr "OfGingilchaa Dhoksi"
-#: 04060000.xhp
+#: 12040500.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3153064\n"
-"22\n"
+"12040500.xhp\n"
+"bm_id3150276\n"
"help.text"
-msgid "f(x) (depending on the selected function)"
-msgstr "f(X) (faankishinii filatame irratti hundaa'uun)"
+msgid "<bookmark_value>database ranges; hiding AutoFilter</bookmark_value>"
+msgstr "<bookmark_value>hammangawwaan kuusaa deetaa; ofgingilchaa dhoksuu</bookmark_value>"
-#: 04060000.xhp
+#: 12040500.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3157980\n"
-"24\n"
+"12040500.xhp\n"
+"hd_id3150276\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_FAP_BTN_FX4\">Allows you to access a subordinate level of the <emph>Function Wizard</emph> in order to nest another function within the function, instead of a value or reference.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_FAP_BTN_FX4\">Jalee <emph>Faankishinii wiizaardii</emph> faankishinii keessatti faankishinii biraa ijaaruuf akka argattu siif eeyyama, iddoo gatii ykn wabii.</ahelp>"
+msgid "<link href=\"text/scalc/01/12040500.xhp\" name=\"Hide AutoFilter\">Hide AutoFilter</link>"
+msgstr "<link href=\"text/scalc/01/12040500.xhp\" name=\"Hide AutoFilter\">OfGingilchaa dhoksi</link>"
-#: 04060000.xhp
+#: 12040500.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3145076\n"
-"25\n"
+"12040500.xhp\n"
+"par_id3156326\n"
+"2\n"
"help.text"
-msgid "Argument/Parameter/Cell Reference (depending on the selected function)"
-msgstr "Qajeelfama/Ulaagaa/Wabii Man'ee (faankishinii filatame irratti hundaa'uun)"
+msgid "<ahelp hid=\".uno:DataFilterHideAutoFilter\" visibility=\"visible\">Hides the AutoFilter buttons in the selected cell range.</ahelp>"
+msgstr "<ahelp hid=\".uno:DataFilterHideAutoFilter\" visibility=\"visible\">hammanga man'ee keessaa qabdoota ofgingilchaa dhoksa.</ahelp>"
-#: 04060000.xhp
+#: 12050000.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3159097\n"
-"26\n"
+"12050000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FORMULA:ED_REF\">The number of visible text fields depends on the function. Enter arguments either directly into the argument fields or by clicking a cell in the table.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_FORMULA:ED_REF\">Lakkoofsi dirreewwan barruu mul'atanii faankishinii irratti hundaa'a.Qajeelfama kallattiidhaan ykn man'ee gabatee keessa jiru cuqaasuudhaan dirreewwan qajeelfamaatti galchi.</ahelp>"
+msgid "Subtotals"
+msgstr "Hundamtaa xiqqaa"
-#: 04060000.xhp
+#: 12050000.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3154957\n"
-"51\n"
+"12050000.xhp\n"
+"hd_id3153822\n"
+"1\n"
"help.text"
-msgid "Result"
-msgstr "Firii"
+msgid "Subtotals"
+msgstr "Hundamtaa xiqqaa"
-#: 04060000.xhp
+#: 12050000.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3150211\n"
-"52\n"
+"12050000.xhp\n"
+"par_id3145119\n"
+"2\n"
"help.text"
-msgid "Displays the calculation result or an error message."
-msgstr "Firii shallaggii ykn ergaa dogoggoraa mul'isa"
+msgid "<variable id=\"teilergebnisse\"><ahelp hid=\".uno:DataSubTotals\" visibility=\"visible\">Calculates subtotals for the columns that you select.</ahelp></variable> $[officename] uses the SUM function to automatically calculate the subtotal and grand total values in a labeled range. You can also use other functions to perform the calculation. $[officename] automatically recognizes a defined database area when you place the cursor in it."
+msgstr "<variable id=\"teilergebnisse\"><ahelp hid=\".uno:DataSubTotals\" visibility=\"visible\">Tarjaawwan filateef hundamtaa xiqqaahundamtaa xiqqaa herreega.Hammangaa moggafame keessatti</ahelp></variable> $[officename]n hundamtaa xiqqaa fii dabaltoo dunneetii ofumaan herreeguuf fankishinii SUM jedhamutti fayyadama.Akkasumas fankishinoota biraa shallaggif fayyadamuu ni dandeessa.$[officename] n yommuu qareen naannawa kuusaa deetaa qindeessa irraa agarsiiftu $[officename] n ofumaan addada isaan baasa."
-#: 04060000.xhp
+#: 12050000.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3151304\n"
-"43\n"
+"12050000.xhp\n"
+"par_id3153896\n"
+"3\n"
"help.text"
-msgid "Formula"
-msgstr "Foormulaa"
+msgid "For example, you can generate a sales summary for a certain postal code based on data from a client database."
+msgstr "Fakkeenyaaf, lakkada poostaa murtawoodhaf deetaa kuusaa deetaa maamila irratti hundaa'udhan gurgurtaa dimshashaa uumuu dandeessa."
-#: 04060000.xhp
+#: 12050000.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3149898\n"
-"44\n"
+"12050000.xhp\n"
+"hd_id3163708\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_FAP_FORMULA\">Displays the created formula. Type your entries directly, or create the formula using the wizard.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_FAP_FORMULA\">Foormulaa uumame mul'isa.Galfata ke kallattiidhaan barreessi,ykn masaka fayyadamuudhaan foormmulaa uumi.</ahelp>"
+msgid "Delete"
+msgstr "Haqi"
-#: 04060000.xhp
+#: 12050000.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3153249\n"
-"45\n"
+"12050000.xhp\n"
+"par_id3154125\n"
+"5\n"
"help.text"
-msgid "Back"
-msgstr "Duuba"
+msgid "Deletes the subtotal rows in the selected area."
+msgstr "iddoo filataman keessaa tarreewwan Hundamtaa Xiqqaa haqa."
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3152869\n"
-"53\n"
+"12050100.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_BACKWARD\">Moves the focus back through the formula components, marking them as it does so.</ahelp>"
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_BACKWARD\">Xiyyeeffannoo,akka ofii hojjetetti isaan mallatteessuudhaan,qaamota foormulaa keessa gara duubaatti deemsisa.</ahelp>"
+msgid "1st, 2nd, 3rd Group"
+msgstr "Garee 1ffaa, 2ffaa, 3ffaa"
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3146966\n"
-"56\n"
+"12050100.xhp\n"
+"hd_id3149784\n"
+"1\n"
"help.text"
-msgid "To select a single function from a complex formula consisting of several functions, double-click the function in the formula window."
-msgstr "Foormulaa wal-xaxaa faankishinii hedduu of keessatti qabu irra faankishinii tokko filachuuf,faankishinii foddaa foormulaa keessa jiru lama-cuqaasi."
+msgid "<link href=\"text/scalc/01/12050100.xhp\" name=\"1st, 2nd, 3rd Group\">1st, 2nd, 3rd Group</link>"
+msgstr "<link href=\"text/scalc/01/12050100.xhp\" name=\"1st, 2nd, 3rd Group\">Garee 1ffaa, 2ffaa, 3ffaa</link>"
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3155762\n"
-"54\n"
+"12050100.xhp\n"
+"par_id3145068\n"
+"2\n"
"help.text"
-msgid "Next"
-msgstr "Itti Aanee"
+msgid "<ahelp hid=\"HID_SCPAGE_SUBT_GROUP1\">Specify the settings for up to three subtotal groups. Each tab has the same layout.</ahelp>"
+msgstr "<ahelp hid=\"HID_SCPAGE_SUBT_GROUP1\">Qindaa'inoota gareewwan Hundamtaa Xiqqaa hamma sadiitti ifteessi.Caancalli hundinuu teessuma walfakkaataa qabu.</ahelp>"
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3149316\n"
-"55\n"
+"12050100.xhp\n"
+"par_id3148797\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_FORWARD\">Moves forward through the formula components in the formula window.</ahelp> This button can also be used to assign functions to the formula. If you select a function and click the <emph>Next </emph>button, the selection appears in the formula window."
-msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_FORWARD\">Qaamota foormulaa foddaa foormulaa keessa jiran keessa gara fulduraatti deema.</ahelp> Qabduun kun faankishinoota gara foormulaatti moggaasuufis ni gargaara. Yoo faankishinii filattee qabduu <emph>Ittaanee </emph>"
+msgid "To insert subtotal values into a table:"
+msgstr "gatiiwwan hundamtaa xiqqaa gara gabateetti saaguuf"
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3159262\n"
-"57\n"
+"12050100.xhp\n"
+"par_id3154908\n"
+"13\n"
"help.text"
-msgid "Double-click a function in the selection window to transfer it to the formula window."
-msgstr "Faankishinii foddaa filannoo keessa jiru gara foddaa foormulaatti dabarsuuf ,faankishinii foddaa filannoo keessa jiru lama cuqaasi."
+msgid "Ensure that the columns of the table have labels."
+msgstr "Tarjaawwan gabatee akka moggafaman mirkaneessi."
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3148745\n"
-"58\n"
+"12050100.xhp\n"
+"par_id3153968\n"
+"4\n"
"help.text"
-msgid "Cancel"
-msgstr "Dhiisi"
+msgid "Select the table or the area in the table that you want to calculate subtotals for, and then choose <emph>Data – Subtotals</emph>."
+msgstr "Gabatee ykn iddoo gabatee keessaa hundamtaa xiqqaa shallaguu barbaaddu fili,sana booda <emph>Deetaa - Hundamta xiqqaa</emph> fili."
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3147402\n"
-"59\n"
+"12050100.xhp\n"
+"par_id3161831\n"
+"5\n"
"help.text"
-msgid "Closes the dialog without implementing the formula."
-msgstr "Foormulaa hojii irra osoo hin oolchiin qaaqa cufa."
+msgid "In the <emph>Group By</emph> box, select the column that you want to add the subtotals to."
+msgstr "Sanduuqa<emph>Gurmeessi Kanan</emph> keessaa, tarjaa hundamtaa xiqqaa itti ida'uu barbaaddu fili."
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3150534\n"
-"32\n"
+"12050100.xhp\n"
+"par_id3153188\n"
+"6\n"
"help.text"
-msgid "OK"
-msgstr "OK"
+msgid "In the <emph>Calculate subtotals for</emph> box, select the check boxes for the columns containing the values that you want to subtotal."
+msgstr "Sanduuqa <emph>Hundamtaa xiqqaa shallagiif</emph> keessaa,tarjaawwan gatiiwwan hundamtaa xiqqaa barbaaddufi of keessaa qabuf sanduuqawwan filannoo fili."
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3153029\n"
-"33\n"
+"12050100.xhp\n"
+"par_id3152460\n"
+"14\n"
"help.text"
-msgid "Ends the <emph>Function Wizard</emph>, and transfers the formula to the selected cells."
-msgstr "<emph>Masaka faankishinii</emph>xumuree, foormulaa mandheewwan filatamanitti dabarsa."
+msgid "In the <emph>Use function</emph> box, select the function that you want to use to calculate the subtotals."
+msgstr "Sanduuqa <emph>Fankishinii fayyadami</emph> keessaa, fankishinii hundamtaa xiqqaa ittin shallaguu barbaaddee fili."
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3156400\n"
-"34\n"
+"12050100.xhp\n"
+"par_id3154321\n"
+"15\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
-msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">Tarree Akaakuwwaniifi Faankishinootaa</link>"
+msgid "Click <emph>OK</emph>."
+msgstr "<emph>Eyyee</emph> cuqaasi."
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3147610\n"
-"47\n"
+"12050100.xhp\n"
+"hd_id3156441\n"
+"7\n"
"help.text"
-msgid "Structure tab"
-msgstr "Caancala Caasaa"
+msgid "Group by"
+msgstr "Gurmeessi kanaan"
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3153122\n"
-"48\n"
+"12050100.xhp\n"
+"par_id3154013\n"
+"8\n"
"help.text"
-msgid "On this page, you can view the structure of the function."
-msgstr "Fuula kanarratti,caasa faankishinii mul'isuu ni dandeessa"
+msgid "<ahelp hid=\"HID_SC_SUBT_GROUP\">Select the column that you want to control the subtotal calculation process. If the contents of the selected column change, the subtotals are automatically recalculated.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_SUBT_GROUP\">Tarjaa adeemsa shallaggii hundamtaa xiqqaa to'achuu barbadduu fili.Yoo qabiyyeen tarjaa filatamee jijjiramee,hundamtaa xiqqaan ofumaan lamherreegamu.</ahelp>"
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3149350\n"
-"4\n"
+"12050100.xhp\n"
+"hd_id3154943\n"
+"9\n"
"help.text"
-msgid "If you start the <emph>Function Wizard</emph> while the cell cursor is positioned in a cell that already contains a function, the <emph>Structure</emph> tab is opened and shows the composition of the current formula."
-msgstr "Osoo <emph>Masaka Faankishinii</emph> yeroo qareen mandhee,mandhee durumaan faankishinii of keessatti qabu keessa qubate eegalte,caancalli <emph>Caasaa</emph> ni banama,qabiyyee foormulaa ammees ni mul'isa."
+msgid "Calculate subtotals for"
+msgstr "Hundamtaa xiqqaa shallagi kanaaf"
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3149014\n"
-"49\n"
+"12050100.xhp\n"
+"par_id3147125\n"
+"10\n"
"help.text"
-msgid "Structure"
-msgstr "Caasaa"
+msgid "<ahelp hid=\"HID_SC_SUBT_COLS\">Select the column(s) containing the values that you want to subtotal.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_SUBT_COLS\">Tarjaa(wwan) hundamtaa xiqqaa barbaddu qabu fili.</ahelp>"
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3150481\n"
-"50\n"
+"12050100.xhp\n"
+"hd_id3156283\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_FAP_STRUCT\">Displays a hierarchical representation of the current function.</ahelp> You can hide or show the arguments by a click on the plus or minus sign in front."
-msgstr "<ahelp hid=\"HID_SC_FAP_STRUCT\">Sadarkaa Bakka bu'iinsa faankishinii ammee mul'isa.</ahelp> Mallattoo ida'uu ykn hir'isuu fuldura jiru cuqaasuun qajeelfamoota dhoksuu ykn agarsiisuu ni dandeessa."
+msgid "Use function"
+msgstr "Fankishinii fayyadami"
-#: 04060000.xhp
+#: 12050100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3148886\n"
-"63\n"
+"12050100.xhp\n"
+"par_id3145647\n"
+"12\n"
"help.text"
-msgid "Blue dots denote correctly entered arguments. Red dots indicate incorrect data types. For example: if the SUM function has one argument entered as text, this is highlighted in red as SUM only permits number entries."
-msgstr "Tuqaa cuquliisni qajeelfamoota sirnaan galan bakka bu'a.Tuqaa diimaan gosoota deetaa sirrii hin taan mul'isa.Fakkeenyaaf: osoo faankishiniin IDA'UU qajeelfama akka barruutti gale toko qabaate, kun akka IDA'UUn galiinsa lakkoofsaa qofa eeyyamutti diimaadhaan shoolama."
+msgid "<ahelp hid=\"HID_SC_SUBT_FUNC\">Select the mathematical function that you want to use to calculate the subtotals.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_SUBT_FUNC\">Fankishinii herreegaa hundamtaa xiqqaa ittiin shallaguu barbaaddu fili.</ahelp>"
-#: 12080300.xhp
+#: 12050200.xhp
msgctxt ""
-"12080300.xhp\n"
+"12050200.xhp\n"
"tit\n"
"help.text"
-msgid "Group"
-msgstr "Garee"
+msgid "Options"
+msgstr "Dirqalaalee"
-#: 12080300.xhp
+#: 12050200.xhp
msgctxt ""
-"12080300.xhp\n"
-"hd_id3153088\n"
+"12050200.xhp\n"
+"bm_id3154758\n"
+"help.text"
+msgid "<bookmark_value>subtotals; sorting options</bookmark_value>"
+msgstr "<bookmark_value>undamtaa xiqqaa; Dirqalaalee Fooyinsaa</bookmark_value>"
+
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"hd_id3154758\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
-msgstr "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Garee</link>"
+msgid "<link href=\"text/scalc/01/12050200.xhp\" name=\"Options\">Options</link>"
+msgstr "<link href=\"text/scalc/01/12050200.xhp\" name=\"Options\">Dirqalaalee</link>"
-#: 12080300.xhp
+#: 12050200.xhp
msgctxt ""
-"12080300.xhp\n"
-"par_id3153821\n"
+"12050200.xhp\n"
+"par_id3154124\n"
"2\n"
"help.text"
-msgid "<variable id=\"gruppierung\"><ahelp hid=\".uno:Group\" visibility=\"visible\">Defines the selected cell range as a group of rows or columns.</ahelp></variable>"
-msgstr "<variable id=\"gruppierung\"><ahelp hid=\".uno:Group\" visibility=\"visible\">Hammanga man'ee filatamee akka gurmiiwwan tarreewwaniitti ykn tarjaawwaniitti qindeessa.</ahelp></variable>"
+msgid "<ahelp hid=\"HID_SCPAGE_SUBT_OPTIONS\">Specify the settings for calculating and presenting subtotals.</ahelp>"
+msgstr "<ahelp hid=\"HID_SCPAGE_SUBT_OPTIONS\">Qindaa'inoota hundamtaa xiqqaa shallaguu fi dhiyyeessu ifteessi.</ahelp>"
-#: 12080300.xhp
+#: 12050200.xhp
msgctxt ""
-"12080300.xhp\n"
-"par_id3145069\n"
+"12050200.xhp\n"
+"hd_id3156422\n"
"3\n"
"help.text"
-msgid "When you group a cell range, and outline icon appears in the margins next to the group. To hide or show the group, click the icon. To ungroup the selection, choose <emph>Data – Outline -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\"><emph>Ungroup</emph></link>."
-msgstr "Yoo hammanga man'ee gurmeessitu, sajoon toorii mudaa garee itti aanu keessatti mul'ata.Garee dhoksuuf ykn agarsiisuuf sajoo cuqaasi.Filannoo garbaasuuf kannen cuqaasi, <emph>Deetaa - Toorii -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\"><emph>Garbaasi</emph></link>."
+msgid "Page break between groups"
+msgstr "kutaa fuulaa gareewan gidduutti"
-#: 12080300.xhp
+#: 12050200.xhp
msgctxt ""
-"12080300.xhp\n"
-"hd_id3125863\n"
+"12050200.xhp\n"
+"par_id3147317\n"
"4\n"
"help.text"
-msgid "Include"
-msgstr "qaba"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_PAGEBREAK\">Inserts a new page after each group of subtotaled data.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_PAGEBREAK\">Gurmii deetaa hundamtaa xiqqaan shallagameef hundaa dhumarratti fuula haaraa saaga.</ahelp>"
-#: 12080300.xhp
+#: 12050200.xhp
msgctxt ""
-"12080300.xhp\n"
-"hd_id3150448\n"
+"12050200.xhp\n"
+"hd_id3146985\n"
+"5\n"
+"help.text"
+msgid "Case sensitive"
+msgstr "Qub-suukanaawaa"
+
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"par_id3153190\n"
"6\n"
"help.text"
-msgid "Rows"
-msgstr "Tarreewwaan"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_CASE\">Recalculates subtotals when you change the case of a data label.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_CASE\">Yommuu haala qubee moggaasa deetaa jijjiirtu hundamtaa xiqqaa lamherreega.</ahelp>"
-#: 12080300.xhp
+#: 12050200.xhp
msgctxt ""
-"12080300.xhp\n"
-"par_id3153194\n"
+"12050200.xhp\n"
+"hd_id3151119\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_GROUP_ROWS\" visibility=\"visible\">Groups the selected rows.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_GROUP_ROWS\" visibility=\"visible\">Tarreewwan filataman gurmeessa.</ahelp>"
+msgid "Pre-sort area according to groups"
+msgstr "Akkaata gareewwaniitti iddoo dursa fooyinsaa"
-#: 12080300.xhp
+#: 12050200.xhp
msgctxt ""
-"12080300.xhp\n"
-"hd_id3145786\n"
+"12050200.xhp\n"
+"par_id3149664\n"
"8\n"
"help.text"
-msgid "Columns"
-msgstr "Tarjaawwan"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_SORT\">Sorts the area that you selected in the <emph>Group by</emph> box of the Group tabs according to the columns that you selected.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_SORT\">Iddoo garee cancaalotaa <emph>Ittiin Gurmeessi</emph> filatae akkataa tarjaawwan filteetti fooya.</ahelp>"
-#: 12080300.xhp
+#: 12050200.xhp
msgctxt ""
-"12080300.xhp\n"
-"par_id3146984\n"
+"12050200.xhp\n"
+"hd_id3153951\n"
"9\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_GROUP_COLS\" visibility=\"visible\">Groups the selected columns.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_GROUP_COLS\" visibility=\"visible\">Tarjaawwan filataman gurmeessa.</ahelp>"
+msgid "Sort"
+msgstr "Fooyi"
-#: 05040200.xhp
+#: 12050200.xhp
msgctxt ""
-"05040200.xhp\n"
-"tit\n"
+"12050200.xhp\n"
+"hd_id3145252\n"
+"11\n"
"help.text"
-msgid "Optimal Column Width"
-msgstr "Dagalee tarjaa guutolaa"
+msgid "Include formats"
+msgstr "Dhangiiwwan dabali"
-#: 05040200.xhp
+#: 12050200.xhp
msgctxt ""
-"05040200.xhp\n"
-"bm_id3155628\n"
+"12050200.xhp\n"
+"par_id3147125\n"
+"12\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; optimal column widths</bookmark_value><bookmark_value>columns; optimal widths</bookmark_value><bookmark_value>optimal column widths</bookmark_value>"
-msgstr "<bookmark_value>wardiiwwan; dagaleewwan tarja guutolaa</bookmark_value><bookmark_value>tarjaawwan; dagaleewwan guutolaa</bookmark_value><bookmark_value>tarja dagaleewwan guutolaa</bookmark_value>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_FORMATS\">Considers formatting attributes when sorting.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_FORMATS\">Yommuu fooyinsaa amaloota dhangii ni dabalata.</ahelp>"
-#: 05040200.xhp
+#: 12050200.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3155628\n"
-"1\n"
+"12050200.xhp\n"
+"hd_id3155418\n"
+"13\n"
"help.text"
-msgid "Optimal Column Width"
-msgstr "Dagalee tarjaa murta'a"
+msgid "Custom sort order"
+msgstr "Tartiiba fooyi mammiloo"
-#: 05040200.xhp
+#: 12050200.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3145068\n"
-"2\n"
+"12050200.xhp\n"
+"par_id3149400\n"
+"14\n"
"help.text"
-msgid "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalColumnWidthDi\">Defines the optimal column width for selected columns.</ahelp></variable> The optimal column width depends on the longest entry within a column. You can choose from the available <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"measurement units\">measurement units</link>."
-msgstr "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalColumnWidthDi\">Tarjaa filameef dagalee guutolaa tarjaa hikaa.</ahelp></variable> Tarjaan dagalee guutolaa galmaa dheeraa tarjaa keessaa irrati hunda'aa. safartuuwwan madallii<link href=\"text/shared/00/00000003.xhp#metrik\" name=\"measurement units\">jiran keessaa filuu dandeessaa</link>."
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SUBT_OPTIONS:LB_USERDEF\">Uses a custom sorting order that you defined in the Options dialog box at <emph>%PRODUCTNAME Calc - Sort Lists</emph>.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SUBT_OPTIONS:LB_USERDEF\">Tartiiba fooyi maamiloo <emph>meshaalee - Dirqalaalee - %PRODUCTNAME Calc - Tarreewwan fooyi</emph> jalatti qindeessiteetti fayyadama.</ahelp>"
-#: 05040200.xhp
+#: 12050200.xhp
+#, fuzzy
msgctxt ""
-"05040200.xhp\n"
-"hd_id3150767\n"
-"3\n"
+"12050200.xhp\n"
+"hd_id3149121\n"
+"15\n"
"help.text"
-msgid "Add"
-msgstr "Ida'i"
+msgid "Ascending"
+msgstr "#-#-#-#-# autopi.po (PACKAGE VERSION) #-#-#-#-#\\nDabaluu\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nOlee"
-#: 05040200.xhp
+#: 12050200.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3150449\n"
-"4\n"
+"12050200.xhp\n"
+"par_id3155068\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_COL_OPT:ED_VALUE\">Defines additional spacing between the longest entry in a column and the vertical column borders.</ahelp>"
-msgstr "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_COL_OPT:ED_VALUE\">adda fageenya dabalata galumsaa eeraa tarjaa keessaa fi tarjaa handaarawwan sarjaa giduu jiruu ramada.</ahelp>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_ASCENDING\">Sorts beginning with the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on Tools - Options - Language settings - Languages."
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_ASCENDING\">Gatii xiqqaa irraa eegaluun fooya.Seerota fooyinsaa Deetaa - Fooyi - Dirqalaalee irraa qindessuu dandeessa.Durtii Meeshaalee - Dirqalaalee - Qindaa'inoota Afaanii - Afaanota irraa qindeessita.</ahelp>"
-#: 05040200.xhp
+#: 12050200.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3145785\n"
-"5\n"
+"12050200.xhp\n"
+"hd_id3155443\n"
+"17\n"
"help.text"
-msgid "Default value"
-msgstr "Gatii durtii"
+msgid "Descending"
+msgstr "Gadee"
-#: 05040200.xhp
+#: 12050200.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3146120\n"
-"6\n"
+"12050200.xhp\n"
+"par_id3153766\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_COL_OPT:BTN_DEFVAL\">Defines the optimal column width in order to display the entire contents of the column.</ahelp> The additional spacing for the optimal column width is preset to 0.1 in."
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_COL_OPT:BTN_DEFVAL\">gutummaa qabeentoota tarjaa agarsiisuuf bal'ina gootala tarjaa hiika.</ahelp> Bal'inni tarjaa gootala adda fageenya dabalata 0.1 waliin duraqinda'aa."
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_DESCENDING\">Sorts beginning with the highest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on Tools - Options - Language settings - Languages."
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_DESCENDING\">Gatii guddaa irraa eegaluun fooya.Seerota fooyinsaa Deetaa - Fooyi - Dirqalaalee irraa qindessuu dandeessa.Durtii Meeshaalee - Dirqalaalee - Qindaa'inoota Afaanii - Afaanota irraa qindeessita.</ahelp>"
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
+"12060000.xhp\n"
"tit\n"
"help.text"
-msgid "Mathematical Functions"
-msgstr "Faankishinii herreegaa"
-
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3147124\n"
-"help.text"
-msgid "<bookmark_value>mathematical functions</bookmark_value><bookmark_value>Function Wizard; mathematical</bookmark_value><bookmark_value>functions; mathematical functions</bookmark_value><bookmark_value>trigonometric functions</bookmark_value>"
-msgstr "<bookmark_value>faankishinii herreegaa</bookmark_value><bookmark_value>Faankishinii wiizaardii; herreega</bookmark_value><bookmark_value>faankishinoota; faankishinii herreegaa</bookmark_value><bookmark_value>faankishinii tiriginomeetirii</bookmark_value>"
+msgid "Multiple Operations"
+msgstr "Qooyyaboota Hedduu"
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3147124\n"
+"12060000.xhp\n"
+"hd_id3153381\n"
"1\n"
"help.text"
-msgid "Mathematical Functions"
-msgstr "Faankishinii herreegaa"
+msgid "Multiple Operations"
+msgstr "Qooyyaboota Hedduu"
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154943\n"
+"12060000.xhp\n"
+"par_id3154140\n"
"2\n"
"help.text"
-msgid "<variable id=\"mathematiktext\">This category contains the <emph>Mathematical</emph> functions for Calc.</variable> To open the <emph>Function Wizard</emph>, choose <link href=\"text/scalc/01/04060000.xhp\" name=\"Insert - Function\"><emph>Insert - Function</emph></link>."
-msgstr "<variable id=\"mathematiktext\">Akaakuun kun faankishinii <emph>Herreegaa</emph> calc of keessaa qaba.</variable> <emph>Masaka Faankishinii</emph> banuuf, <link href=\"text/scalc/01/04060000.xhp\" name=\"Insert - Function\"><emph>Saagi - Faankishinii</emph></link> fili."
+msgid "<variable id=\"mehrfachoperationen\"><ahelp hid=\".uno:TableOperationDialog\">Applies the same formula to different cells, but with different parameter values.</ahelp></variable>"
+msgstr "<variable id=\"mehrfachoperationen\"><ahelp hid=\".uno:TableOperationDialog\">Formulaa wal fakkaataa man'eewwan garagaraaif fayyadama, garuu ulaagaa gatiiwwan garagaraatin.</ahelp></variable>"
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3146944\n"
+"12060000.xhp\n"
+"par_id3152598\n"
+"5\n"
"help.text"
-msgid "<bookmark_value>ABS function</bookmark_value><bookmark_value>absolute values</bookmark_value><bookmark_value>values;absolute</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii ABS</bookmark_value><bookmark_value>gatii of danda'aa</bookmark_value><bookmark_value>gatii;of danda'aa</bookmark_value>"
+msgid "The <emph>Row</emph> or <emph>Column</emph> box must contain a reference to the first cell of the selected range."
+msgstr "Sanduuqqni<emph>Tarree</emph> ykn <emph>Tarjaa</emph>wabii hammanga man'ee tokkoffaa filatamee qabaachuu qaba."
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3146944\n"
-"33\n"
+"12060000.xhp\n"
+"par_id3154011\n"
+"16\n"
"help.text"
-msgid "ABS"
-msgstr "ABS"
+msgid "If you export a spreadsheet containing multiple operations to Microsoft Excel, the location of the cells containing the formula must be fully defined relative to the data range."
+msgstr "Yoo wardii Qooyyaboota Hedduu Ekseelii Maykiroosooftiitti aleergite, bakki man'ee formulaa of kessaa qabu gutumaan gutuutti sadhaatawaa hamanga deetaatti hiikuu qabda."
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154546\n"
-"34\n"
+"12060000.xhp\n"
+"hd_id3156441\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ABS\">Returns the absolute value of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ABS\">Gatii of danda'aa lakkoofsaa deebisa.</ahelp>"
+msgid "Defaults"
+msgstr "Durtiiwwan"
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154843\n"
-"35\n"
+"12060000.xhp\n"
+"hd_id3154492\n"
+"6\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Formulas"
+msgstr "Foormulaawwan"
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147475\n"
-"36\n"
+"12060000.xhp\n"
+"par_id3151073\n"
+"7\n"
"help.text"
-msgid "ABS(Number)"
-msgstr "ABS(Lakkoofsa)"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_FORMULARANGE\">Enter the cell references for the cells containing the formulas that you want to use in the multiple operation.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_FORMULARANGE\">Man'eewwan foormulaa qoyyaba baay'ee of keessaa qabaniif wabii man'ee galchi.</ahelp>"
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148438\n"
-"37\n"
+"12060000.xhp\n"
+"hd_id3154729\n"
+"8\n"
"help.text"
-msgid "<emph>Number</emph> is the number whose absolute value is to be calculated. The absolute value of a number is its value without the +/- sign."
-msgstr "<emph>Lakkoofsi</emph> lakkoofsa gatiin of danda'aan isaa shallagamuudha.Lakkoofsi gatii of danda'aan gatii mallattoo +/- ala qabaatudha."
+msgid "Row"
+msgstr "Tarree"
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155823\n"
-"38\n"
+"12060000.xhp\n"
+"par_id3148456\n"
+"9\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_ROWCELL\">Enter the input cell reference that you want to use as a variable for the rows in the data table.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_ROWCELL\">Gabatee deetaa keessa naqaa wabii man'ee akka jijjiramaa tarreewwanitti fayyadamuu barbaadde galchi.</ahelp>"
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152787\n"
-"39\n"
+"12060000.xhp\n"
+"hd_id3150718\n"
+"14\n"
"help.text"
-msgid "<item type=\"input\">=ABS(-56)</item> returns 56."
-msgstr "<item type=\"input\">=ABS(-56)</item>56 deebisa."
+msgid "Column"
+msgstr "Tarjaa"
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148752\n"
-"40\n"
+"12060000.xhp\n"
+"par_id3150327\n"
+"15\n"
"help.text"
-msgid "<item type=\"input\">=ABS(12)</item> returns 12."
-msgstr "<item type=\"input\">=ABS(12)</item> deebisa."
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_COLCELL\">Enter the input cell reference that you want to use as a variable for the columns in the data table.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_COLCELL\">Gabatee deetaa keessa naqaa wabii man'ee akka jijjiramaa tarjaawwaniitti fayyadamuu barbaadde galchi.</ahelp>"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id320139\n"
+"12070000.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=ABS(0)</item> returns 0."
-msgstr "<item type=\"input\">=ABS(0)</item> 0 deebisa."
+msgid "Consolidate"
+msgstr "Gamteessi"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3150896\n"
+"12070000.xhp\n"
+"hd_id3148946\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>COUNTBLANK function</bookmark_value><bookmark_value>counting;empty cells</bookmark_value><bookmark_value>empty cells;counting</bookmark_value>"
-msgstr "<bookmark_value>Faankishiniin COUNTBLANK</bookmark_value><bookmark_value>lakkaa'uu;man'eewwan duuwwaa</bookmark_value><bookmark_value>man'eewwan duuwwaa;lakkaa'uu</bookmark_value>"
+msgid "Consolidate"
+msgstr "Gamteessi"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150896\n"
-"42\n"
+"12070000.xhp\n"
+"par_id3148798\n"
+"2\n"
"help.text"
-msgid "COUNTBLANK"
-msgstr "COUNTBLANK"
+msgid "<variable id=\"konsolidieren\"><ahelp hid=\".uno:DataConsolidate\">Combines data from one or more independent cell ranges and calculates a new range using the function that you specify.</ahelp></variable>"
+msgstr "<variable id=\"konsolidieren\"><ahelp hid=\".uno:DataConsolidate\">Deetaa hangiiwwan man'ee qofagaloo tokko ykn tokkoo oli makuun, fankishinii ifteessitetti fayyadamuun hammangaa haaraa shallaga.</ahelp></variable>"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155260\n"
-"43\n"
+"12070000.xhp\n"
+"hd_id3150010\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ANZAHLLEEREZELLEN\">Returns the number of empty cells.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ANZAHLLEEREZELLEN\">Man'eewwan duuwwaa deebisa.</ahelp>"
+msgid "Function"
+msgstr "Fankishinii"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145144\n"
-"44\n"
+"12070000.xhp\n"
+"par_id3149377\n"
+"9\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONSOLIDATE:LB_FUNC\">Select the function that you want to use to consolidate the data.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONSOLIDATE:LB_FUNC\">fankishinii deetaa gamteessuu barbaaddee fili.</ahelp>"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153931\n"
-"45\n"
+"12070000.xhp\n"
+"hd_id3147127\n"
+"10\n"
"help.text"
-msgid "COUNTBLANK(Range)"
-msgstr "COUNTBLANK(Hammangaa)"
+msgid "Consolidation ranges"
+msgstr "Hammanga gamtoominaa"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149512\n"
-"46\n"
+"12070000.xhp\n"
+"par_id3151075\n"
+"11\n"
"help.text"
-msgid "Returns the number of empty cells in the cell range <emph>Range</emph>."
-msgstr "Lakkoofsa man'eewwan duuwwaa hammangaa man'ee keessa jiranii deebisa.<emph>Range</emph>."
+msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_CONSOLIDATE:LB_CONSAREAS\">Displays the cell ranges that you want to consolidate.</ahelp>"
+msgstr "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_CONSOLIDATE:LB_CONSAREAS\">Hangii man'ee gamteessuu barbaaddee agarsiisa.</ahelp>"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3146139\n"
-"47\n"
+"12070000.xhp\n"
+"hd_id3147397\n"
+"12\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Source data range"
+msgstr "Hammanga deetaa maddaa"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148586\n"
-"48\n"
+"12070000.xhp\n"
+"par_id3153836\n"
+"13\n"
"help.text"
-msgid "<item type=\"input\">=COUNTBLANK(A1:B2)</item> returns 4 if cells A1, A2, B1, and B2 are all empty."
-msgstr "<item type=\"input\">=COUNTBLANK(A1:B2)</item> Yoo man'eewwan A1, A2, B1, and B2 duuwwaa ta'an 4 deebisa."
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DATA_AREA\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DATA_AREA\">Hammanga man'ee kan hammangawwan man'ee sanduuqa <emph>Hammanga gamtaa'inaa</emph> keessatti tarreeffan wajjin gamteessuu barbaaddee ifteessa.Hammanga man'ee wardii kessaa fili,sana booda<emph>ida'i</emph> cuqaasi.Akkasumas maqaa man'ee durmurtawaa tarree <emph>Hammanga deetaa maddaa</emph> irraa filuu dandeessa.</ahelp>"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3153114\n"
+"12070000.xhp\n"
+"hd_id3155768\n"
+"15\n"
"help.text"
-msgid "<bookmark_value>ACOS function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii ACOS </bookmark_value>"
+msgid "Copy results to"
+msgstr "Bu'aawwan garagalchi gara"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153114\n"
-"50\n"
+"12070000.xhp\n"
+"par_id3147341\n"
+"16\n"
"help.text"
-msgid "ACOS"
-msgstr "ACOS"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DEST_AREA\">Displays the first cell in the range where the consolidation results will be displayed.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DEST_AREA\">Man'ee duraa iddoo bu'aawwan gamtaa'inaa itti agrsiifaman agarsiisa.</ahelp>"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145163\n"
-"51\n"
+"12070000.xhp\n"
+"hd_id3147345\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCCOS\">Returns the inverse trigonometric cosine of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARCCOS\">Garagalcha cosine tiriginomeetirii lakkoofsaa deebisa.</ahelp>"
+msgid "Add"
+msgstr "Ida'i"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153565\n"
-"52\n"
+"12070000.xhp\n"
+"par_id3155335\n"
+"18\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_CONSOLIDATE:BTN_ADD\">Adds the cell range specified in the <emph>Source data range</emph> box to the <emph>Consolidation ranges </emph>box.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_CONSOLIDATE:BTN_ADD\">Hammanga man'ee sanduuqa <emph>Hammanga deetaa maddaa</emph> fi sanduuqa <emph>hammngawwan gamtaa'inaa</emph>keessatti ifteessaman walitti ida'a.</ahelp>"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150020\n"
-"53\n"
+"12070000.xhp\n"
+"hd_id3148630\n"
+"19\n"
"help.text"
-msgid "ACOS(Number)"
-msgstr "ACOS(Lakkoofsa)"
+msgid "More >>"
+msgstr "Dabala>>"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3159134\n"
-"54\n"
+"12070000.xhp\n"
+"par_id3159239\n"
+"20\n"
"help.text"
-msgid "This function returns the inverse trigonometric cosine of <emph>Number</emph>, that is the angle (in radians) whose cosine is Number. The angle returned is between 0 and PI."
-msgstr "Faankishiniin kun cosine tiriginomeetirii <emph>lakkoofsaa</emph>,kan kofaa(raadiyaanidhaan)kan cosine isaa lakkoofsa ta'e.Kofti deebi'u 0 fi PI gidduudha."
+msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_CONSOLIDATE:BTN_MORE\">Shows additional <link href=\"text/scalc/01/12070100.xhp\" name=\"options\">options</link>.</ahelp>"
+msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_CONSOLIDATE:BTN_MORE\">Dirqalaalee dabalataa <link href=\"text/scalc/01/12070100.xhp\" name=\"options\">agarsiisa</link>.</ahelp>"
-#: 04060106.xhp
-#, fuzzy
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id679647\n"
+"12070100.xhp\n"
+"tit\n"
"help.text"
-msgid "To return the angle in degrees, use the DEGREES function."
-msgstr "Kofa deegridhaan deebisuuf,faankishinii DEGREE fayyadamaa."
+msgid "Consolidate by"
+msgstr "Gamtaa'i kanaan"
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3149882\n"
-"55\n"
+"12070100.xhp\n"
+"hd_id3151210\n"
+"1\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Consolidate by"
+msgstr "Gamtaa'i kanaan"
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150128\n"
-"56\n"
+"12070100.xhp\n"
+"hd_id3125864\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=ACOS(-1)</item> returns 3.14159265358979 (PI radians)"
-msgstr "<item type=\"input\">=ACOS(-1)</item> 3.14159265358979 deebisa(PI raadiyaanidhaan)"
+msgid "Consolidate by"
+msgstr "Gamtaa'i kanaan"
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8792382\n"
+"12070100.xhp\n"
+"par_id3154909\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">=DEGREES(ACOS(0.5))</item> returns 60. The cosine of 60 degrees is 0.5."
-msgstr "<item type=\"input\">=DEGREES(ACOS(0.5))</item> 60 deebisa.Cosine 60 0.5 ta'a."
+msgid "Use this section if the cell ranges that you want to consolidate contain labels. You only need to select these options if the consolidation ranges contain similar labels and the data arranged is arranged differently."
+msgstr "Hammangawwan man'ee gamteessuu barbaadde yoo moggasawwan qabaatan kkutaa kana fayyadami.Dirqalaalee kana kan filachuun si barbaachisu hammangaan gamtaa'inaa moggaasa wal fakkataa fi deetaan qindaa'e akka garagaraatin qindaa'e qofaa dha."
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3145355\n"
+"12070100.xhp\n"
+"hd_id3153968\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>ACOSH function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii ACOSH </bookmark_value>"
+msgid "Row labels"
+msgstr "Asxaalee tarree"
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145355\n"
-"60\n"
+"12070100.xhp\n"
+"par_id3150441\n"
+"5\n"
"help.text"
-msgid "ACOSH"
-msgstr "ACOSH"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYROW\" visibility=\"visible\">Uses the row labels to arrange the consolidated data.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYROW\" visibility=\"visible\">Deetaawwan gamtaa'an qindeessuuf moggaasawwan tarree fayyadama.</ahelp>"
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157993\n"
-"61\n"
+"12070100.xhp\n"
+"hd_id3146976\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCOSHYP\">Returns the inverse hyperbolic cosine of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARCOSHYP\">Kosaayinii haayperpoolikii lakkoofsaa deebisa.</ahelp>"
+msgid "Column labels"
+msgstr "Moggaasa tarjaa"
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145295\n"
-"62\n"
+"12070100.xhp\n"
+"par_id3155411\n"
+"7\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYCOL\" visibility=\"visible\">Uses the column labels to arrange the consolidated data.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYCOL\" visibility=\"visible\">Deetaawwan gamtaa'an qindeessuuf moggaasawwan tarjaa fayyadama.</ahelp>"
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151017\n"
-"63\n"
+"12070100.xhp\n"
+"hd_id3153191\n"
+"12\n"
"help.text"
-msgid "ACOSH(Number)"
-msgstr "ACOSH(Lakkoofsa)"
+msgid "Options"
+msgstr "Dirqalaalee"
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149000\n"
-"64\n"
+"12070100.xhp\n"
+"hd_id3159154\n"
+"8\n"
"help.text"
-msgid "This function returns the inverse hyperbolic cosine of <emph>Number</emph>, that is the number whose hyperbolic cosine is Number."
-msgstr "Faankishiniin kun garagalcha cosine haayperpoolikii <emph>Lakkoofsaa</emph>deebisa,lakkoofsi sun cosine haayperpoolikiin isaa lakkoofsa ta'eedha."
+msgid "Link to source data"
+msgstr "Deetaa maddaatti kornyeessi"
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6393932\n"
+"12070100.xhp\n"
+"par_id3146986\n"
+"9\n"
"help.text"
-msgid "Number must be greater than or equal to 1."
-msgstr "Lakkoofsa dirqama 1 waliin walqixa ykn caaluu qaba."
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_REFS\" visibility=\"visible\">Links the data in the consolidation range to the source data, and automatically updates the results of the consolidation when the source data is changed.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_REFS\" visibility=\"visible\">Deetaa hammanga gamtaa'inaa keessaa deetaa maddaatti kornyeessa, fi yommuu deetaan maddaa jijjiiramu ofumaan bu'aawwan gamtaa'inaa haaromsa.</ahelp>"
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150566\n"
-"65\n"
+"12070100.xhp\n"
+"hd_id3163708\n"
+"10\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "More <<"
+msgstr "Dabala>>"
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145629\n"
-"66\n"
+"12070100.xhp\n"
+"par_id3151118\n"
+"11\n"
"help.text"
-msgid "<item type=\"input\">=ACOSH(1)</item> returns 0."
-msgstr "<item type=\"input\">=ACOSH(1)</item> 0 deebisa."
+msgid "Hides the additional options."
+msgstr "Dirqalaalee dabalataa dhoksa."
-#: 04060106.xhp
+#: 12080000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id951567\n"
+"12080000.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=ACOSH(COSH(4))</item> returns 4."
-msgstr "<item type=\"input\">=ACOSH(COSH(4))</item> 4 deebisa."
+msgid "Group and Outline"
+msgstr "Garee fi Toorii"
-#: 04060106.xhp
+#: 12080000.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3149027\n"
+"12080000.xhp\n"
+"bm_id3152350\n"
"help.text"
-msgid "<bookmark_value>ACOT function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii ACOT</bookmark_value>"
+msgid "<bookmark_value>sheets; outlines</bookmark_value><bookmark_value>outlines; sheets</bookmark_value><bookmark_value>hiding; sheet details</bookmark_value><bookmark_value>showing; sheet details</bookmark_value><bookmark_value>grouping;cells</bookmark_value>"
+msgstr "<bookmark_value>wardiiwwan; tooriiwwan</bookmark_value><bookmark_value>Tooriiwwan; wardiiwwan</bookmark_value><bookmark_value>dhoksuu; baldhintaa wardii</bookmark_value><bookmark_value>agarsiisuu; baldhintaa wardii</bookmark_value><bookmark_value>gurmeessuu;man'eewwan</bookmark_value>"
-#: 04060106.xhp
+#: 12080000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3149027\n"
-"70\n"
+"12080000.xhp\n"
+"hd_id3152350\n"
+"1\n"
"help.text"
-msgid "ACOT"
-msgstr "ACOT"
+msgid "<link href=\"text/scalc/01/12080000.xhp\" name=\"Group and Outline\">Group and Outline</link>"
+msgstr "<link href=\"text/scalc/01/12080000.xhp\" name=\"Group and Outline\">Garee fi Toorii</link>"
-#: 04060106.xhp
+#: 12080000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155818\n"
-"71\n"
+"12080000.xhp\n"
+"par_id3150793\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCCOT\">Returns the inverse cotangent (the arccotangent) of the given number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARCCOT\">Garagaltoo cotangent (the arccotangent) lakkoofsa kennamee deebisa.</ahelp>"
+msgid "You can create an outline of your data and group rows and columns together so that you can collapse and expand the groups with a single click."
+msgstr "Cuqaasii tokkoon gareewwan babal'isuu fi qoncoorsuuf tooroo deetaa fi tarreewwan gurmeessi fi tarjaawwan walittii uumuu ni dandeessa."
-#: 04060106.xhp
+#: 12080000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153225\n"
-"72\n"
+"12080000.xhp\n"
+"hd_id3147229\n"
+"3\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
+msgstr "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Garee</link>"
-#: 04060106.xhp
+#: 12080000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158419\n"
-"73\n"
+"12080000.xhp\n"
+"hd_id3153188\n"
+"4\n"
"help.text"
-msgid "ACOT(Number)"
-msgstr "ACOT(Lakkoofsa)"
+msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
+msgstr "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Garbaasi</link>"
-#: 04060106.xhp
+#: 12080100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154948\n"
-"74\n"
+"12080100.xhp\n"
+"tit\n"
"help.text"
-msgid "This function returns the inverse trigonometric cotangent of <emph>Number</emph>, that is the angle (in radians) whose cotangent is Number. The angle returned is between 0 and PI."
-msgstr "Faankishiniin kun garagaltoo cotangent tiriiginoomeetirii <emph>Number</emph>,kan kofti(raadiyaanidhaan) cotangent isaa lakkoofsa ta'e deebisa.Kofti deebi'u 0 fi PI gidduudha."
+msgid "Hide Details"
+msgstr "Baldhintaa Dhoksi"
-#: 04060106.xhp
+#: 12080100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5834528\n"
+"12080100.xhp\n"
+"bm_id3155628\n"
"help.text"
-msgid "To return the angle in degrees, use the DEGREES function."
-msgstr "Kofa diigriidhaan deebisuuf,faankishinii DEGREE fayyadamaaa."
+msgid "<bookmark_value>sheets; hiding details</bookmark_value>"
+msgstr "<bookmark_value>wardiiwwan; baldhhintaa dhoksuu</bookmark_value>"
-#: 04060106.xhp
+#: 12080100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3147538\n"
-"75\n"
+"12080100.xhp\n"
+"hd_id3155628\n"
+"1\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\">Hide Details</link>"
+msgstr "<link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\">baldhintaa dhoksi</link>"
-#: 04060106.xhp
+#: 12080100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155375\n"
-"76\n"
+"12080100.xhp\n"
+"par_id3154515\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=ACOT(1)</item> returns 0.785398163397448 (PI/4 radians)."
-msgstr "<item type=\"input\">=ACOT(1)</item> 0.785398163397448 (PI/4 raadiyaanii)deebisa."
+msgid "<ahelp hid=\".uno:HideDetail\" visibility=\"visible\">Hides the details of the grouped row or column that contains the cursor. To hide all of the grouped rows or columns, select the outlined table, and then choose this command.</ahelp>"
+msgstr "<ahelp hid=\".uno:HideDetail\" visibility=\"visible\">Baldhiintaa tarree gurmaa'ee ykn tarjaa qaree qabuu dhoksa.Tarreewwan ykn tarjaawwan gurmaa'an hunda dhoksuuf, gabatee toora'e fili,sana booda ajaja kana fili.</ahelp>"
-#: 04060106.xhp
+#: 12080100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8589434\n"
+"12080100.xhp\n"
+"par_id3153252\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">=DEGREES(ACOT(1))</item> returns 45. The tangent of 45 degrees is 1."
-msgstr "<item type=\"input\">=DEGREES(ACOT(1))</item> 45 deebisa.Tangent tiin diigrii 45 1."
+msgid "To show all hidden groups, select the outlined table, and then choose <emph>Data - Group and Outline –</emph> <link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\"><emph>Show Details</emph></link>."
+msgstr ""
-#: 04060106.xhp
+#: 12080200.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3148426\n"
+"12080200.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>ACOTH function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii ACOTH </bookmark_value>"
+msgid "Show Details"
+msgstr "Baldhintaa agarsiisi"
-#: 04060106.xhp
+#: 12080200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3148426\n"
-"80\n"
+"12080200.xhp\n"
+"bm_id3153561\n"
"help.text"
-msgid "ACOTH"
-msgstr "ACOTH"
+msgid "<bookmark_value>tables; showing details</bookmark_value>"
+msgstr "<bookmark_value>gabatee; baldhintaa agarsiisa</bookmark_value>"
-#: 04060106.xhp
+#: 12080200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147478\n"
-"81\n"
+"12080200.xhp\n"
+"hd_id3153561\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCOTHYP\">Returns the inverse hyperbolic cotangent of the given number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARCOTHYP\">Garagaltoo cotangentii haayperpoolokii lakkoofsa kennamee deebisa.</ahelp>"
+msgid "<link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\">Show Details</link>"
+msgstr "<link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\">Baldhintaa agarsiisa</link>"
-#: 04060106.xhp
+#: 12080200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152585\n"
-"82\n"
+"12080200.xhp\n"
+"par_id3153822\n"
+"2\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\".uno:ShowDetail\">Shows the details of the grouped row or column that contains the cursor. To show the details of all of the grouped rows or columns, select the outlined table, and then choose this command.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowDetail\">Baldhiintaa tarree gurmaa'ee ykn tarjaa qaree qabuu agarsiisa.Tarreewwan ykn tarjaawwan gurmaa'an hunda agarsiisuuf, gabatee toora'e fili,sana booda ajaja kana fili.</ahelp>"
-#: 04060106.xhp
+#: 12080200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147172\n"
-"83\n"
+"12080200.xhp\n"
+"par_id3155922\n"
+"3\n"
"help.text"
-msgid "ACOTH(Number)"
-msgstr "ACOTH(Lakkoofsa)"
+msgid "To hide a selected group, choose <emph>Data - Group and Outline – </emph><link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\"><emph>Hide Details</emph></link>."
+msgstr ""
-#: 04060106.xhp
+#: 12080200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3146155\n"
-"84\n"
+"12080200.xhp\n"
+"par_id6036561\n"
"help.text"
-msgid "This function returns the inverse hyperbolic cotangent of <emph>Number</emph>, that is the number whose hyperbolic cotangent is Number."
-msgstr "Faankishiniin kun garagaltoo cotangentii <emph>lakkoofsa</emph> kennamee deebisa, sunis lakkoofsa kan cotangentii haayperbooliikii lakkoofsa ta'eedha."
+msgid "<link href=\"text/scalc/01/12080700.xhp\">Show Details command in pivot tables</link>"
+msgstr "<link href=\"text/scalc/01/12080700.xhp\">Gabateewwan GabateeQinxaa keessatti iftoomina ajajaa agarsiisi</link>"
-#: 04060106.xhp
+#: 12080300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5818659\n"
+"12080300.xhp\n"
+"tit\n"
"help.text"
-msgid "An error results if Number is between -1 and 1 inclusive."
-msgstr "Yoo lakkoofsi -1 fi 1 dabalee gidduu kana ta'e dogogorri ni uumama."
+msgid "Group"
+msgstr "Garee"
-#: 04060106.xhp
+#: 12080300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3083452\n"
-"85\n"
+"12080300.xhp\n"
+"hd_id3153088\n"
+"1\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
+msgstr "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Garee</link>"
-#: 04060106.xhp
+#: 12080300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150608\n"
-"86\n"
+"12080300.xhp\n"
+"par_id3153821\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=ACOTH(1.1)</item> returns inverse hyperbolic cotangent of 1.1, approximately 1.52226."
-msgstr "<item type=\"input\">=ACOTH(1.1)</item> Garagalcha cotangentii haayperpoolikii 1.1,tilmaamaan 1.52226 deebisa."
+msgid "<variable id=\"gruppierung\"><ahelp hid=\".uno:Group\" visibility=\"visible\">Defines the selected cell range as a group of rows or columns.</ahelp></variable>"
+msgstr "<variable id=\"gruppierung\"><ahelp hid=\".uno:Group\" visibility=\"visible\">Hammanga man'ee filatamee akka gurmiiwwan tarreewwaniitti ykn tarjaawwaniitti qindeessa.</ahelp></variable>"
-#: 04060106.xhp
+#: 12080300.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3145084\n"
+"12080300.xhp\n"
+"par_id3145069\n"
+"3\n"
"help.text"
-msgid "<bookmark_value>ASIN function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii ASIN</bookmark_value>"
+msgid "When you group a cell range, and outline icon appears in the margins next to the group. To hide or show the group, click the icon. To ungroup the selection, choose <emph>Data – Outline -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\"><emph>Ungroup</emph></link>."
+msgstr "Yoo hammanga man'ee gurmeessitu, sajoon toorii mudaa garee itti aanu keessatti mul'ata.Garee dhoksuuf ykn agarsiisuuf sajoo cuqaasi.Filannoo garbaasuuf kannen cuqaasi, <emph>Deetaa - Toorii -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\"><emph>Garbaasi</emph></link>."
-#: 04060106.xhp
+#: 12080300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145084\n"
-"90\n"
+"12080300.xhp\n"
+"hd_id3125863\n"
+"4\n"
"help.text"
-msgid "ASIN"
-msgstr "ASIN"
+msgid "Include"
+msgstr "qaba"
-#: 04060106.xhp
+#: 12080300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156296\n"
-"91\n"
+"12080300.xhp\n"
+"hd_id3150448\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCSIN\">Returns the inverse trigonometric sine of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARCSIN\">Garagaltoo sine tirignoomeetirii lakkoofsaa deebisa.</ahelp>"
+msgid "Rows"
+msgstr "Tarreewwaan"
-#: 04060106.xhp
+#: 12080300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3149716\n"
-"92\n"
+"12080300.xhp\n"
+"par_id3153194\n"
+"7\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\"HID_SC_GROUP_ROWS\" visibility=\"visible\">Groups the selected rows.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_GROUP_ROWS\" visibility=\"visible\">Tarreewwan filataman gurmeessa.</ahelp>"
-#: 04060106.xhp
+#: 12080300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156305\n"
-"93\n"
+"12080300.xhp\n"
+"hd_id3145786\n"
+"8\n"
"help.text"
-msgid "ASIN(Number)"
-msgstr "ASIN(Lakkoofsa)"
+msgid "Columns"
+msgstr "Tarjaawwan"
-#: 04060106.xhp
+#: 12080300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150964\n"
-"94\n"
+"12080300.xhp\n"
+"par_id3146984\n"
+"9\n"
"help.text"
-msgid "This function returns the inverse trigonometric sine of <emph>Number</emph>, that is the angle (in radians) whose sine is Number. The angle returned is between -PI/2 and +PI/2."
-msgstr "Faankishiniin kun garagaltoo sine tiriignoomeetirii <emph>Lakkoofsaa</emph>,sine kofti isaa lakkoofsaan ta'e deebisa.Kofti deebiu -PI/2 fi +PI/2 gidduu jira."
+msgid "<ahelp hid=\"HID_SC_GROUP_COLS\" visibility=\"visible\">Groups the selected columns.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_GROUP_COLS\" visibility=\"visible\">Tarjaawwan filataman gurmeessa.</ahelp>"
-#: 04060106.xhp
+#: 12080400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id203863\n"
+"12080400.xhp\n"
+"tit\n"
"help.text"
-msgid "To return the angle in degrees, use the DEGREES function."
-msgstr "Kofa diigriidhaan deebisuuf,faankishinii DEGREE fayyadamaa."
+msgid "Ungroup"
+msgstr "Garbaasi"
-#: 04060106.xhp
+#: 12080400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3149448\n"
-"95\n"
+"12080400.xhp\n"
+"hd_id3148492\n"
+"1\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
+msgstr "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Garbaasi</link>"
-#: 04060106.xhp
+#: 12080400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156100\n"
-"96\n"
+"12080400.xhp\n"
+"par_id3151384\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=ASIN(0)</item> returns 0."
-msgstr "<item type=\"input\">=ASIN(0)</item> 0 deebisa. returns 0."
+msgid "<variable id=\"gruppierungauf\"><ahelp hid=\".uno:Ungroup\" visibility=\"visible\">Ungroups the selection. In a nested group, the last rows or columns that were added are removed from the group.</ahelp></variable>"
+msgstr "<variable id=\"gruppierungauf\"><ahelp hid=\".uno:Ungroup\" visibility=\"visible\">Filatamoo garbaasa.Garee walxaxaa keessatti tarjaawwan ykn tarreewwan xumura irratti dabalaman garee keessaa ni haaqamu.</ahelp></variable>"
-#: 04060106.xhp
+#: 12080400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6853846\n"
+"12080400.xhp\n"
+"hd_id3151210\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">=ASIN(1)</item> returns 1.5707963267949 (PI/2 radians)."
-msgstr "<item type=\"input\">=ASIN(1)</item> 1.5707963267949 (PI/2 raadiyaanidhaan)deebisa."
+msgid "Deactivate for"
+msgstr "kaka'uumsala kanaaf"
-#: 04060106.xhp
+#: 12080400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8772240\n"
+"12080400.xhp\n"
+"hd_id3156280\n"
+"5\n"
"help.text"
-msgid "<item type=\"input\">=DEGREES(ASIN(0.5))</item> returns 30. The sine of 30 degrees is 0.5."
-msgstr "<item type=\"input\">=DEGREES(ASIN(0.5))</item> 30 deebisa.Sine diigrii 30 0.5 ta'a."
+msgid "Rows"
+msgstr "Tarreewwaan"
-#: 04060106.xhp
+#: 12080400.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3151266\n"
+"12080400.xhp\n"
+"par_id3125864\n"
+"6\n"
"help.text"
-msgid "<bookmark_value>ASINH function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii ASINH</bookmark_value>"
+msgid "Removes selected rows from a group."
+msgstr "Garee keessaa tarreewwan filataman haaqa."
-#: 04060106.xhp
+#: 12080400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3151266\n"
-"100\n"
+"12080400.xhp\n"
+"hd_id3147230\n"
+"7\n"
"help.text"
-msgid "ASINH"
-msgstr "ASINH"
+msgid "Columns"
+msgstr "Tarjaawwan"
-#: 04060106.xhp
+#: 12080400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147077\n"
-"101\n"
+"12080400.xhp\n"
+"par_id3154685\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARSINHYP\">Returns the inverse hyperbolic sine of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARSINHYP\">Garagaltoo sine haayperpoolikii lakkoofsaa deebisa.</ahelp>"
+msgid "Removes selected columns from a group."
+msgstr "Garee keessaa tarjaawwan filataman haaqa."
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150763\n"
-"102\n"
+"12080500.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "AutoOutline"
+msgstr "TooriiUfmaa"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150882\n"
-"103\n"
+"12080500.xhp\n"
+"hd_id3150275\n"
+"1\n"
"help.text"
-msgid "ASINH(Number)"
-msgstr "ASINH(Lakkoofsa)"
+msgid "<link href=\"text/scalc/01/12080500.xhp\" name=\"AutoOutline\">AutoOutline</link>"
+msgstr "<link href=\"text/scalc/01/12080500.xhp\" name=\"AutoOutline\">TooriiUfmaa</link>"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147621\n"
-"104\n"
+"12080500.xhp\n"
+"par_id3145069\n"
+"2\n"
"help.text"
-msgid "This function returns the inverse hyperbolic sine of <emph>Number</emph>, that is the number whose hyperbolic sine is Number."
-msgstr "Faankishiniin kun garagaltoo sine haayperpoolikii <emph>Lakkoofsaa</emph>,lakkoofsa sine haayperpoolikii isaa lakkoofsa deebisa."
+msgid "<ahelp hid=\".uno:AutoOutline\">If the selected cell range contains formulas or references, $[officename] automatically outlines the selection.</ahelp>"
+msgstr "<ahelp hid=\".uno:AutoOutline\">Yoo hammangan man'eewwan filatamee formulaawwan ykn wabiiwwan qabaate, $[officename]n filatamoowwan ofumaan tooressa.</ahelp>"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153212\n"
-"105\n"
+"12080500.xhp\n"
+"par_id3148798\n"
+"10\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "For example, consider the following table:"
+msgstr "Fakkenyaaf, gabatee armaan gadii hubadhu:"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156120\n"
-"106\n"
+"12080500.xhp\n"
+"par_id3154123\n"
+"11\n"
"help.text"
-msgid "<item type=\"input\">=ASINH(-90)</item> returns approximately -5.1929877."
-msgstr "<item type=\"input\">=ASINH(-90)</item> tilmaamaan -5.1929877 deebisa."
+msgid "January"
+msgstr "Amajjii"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id4808496\n"
+"12080500.xhp\n"
+"par_id3154011\n"
+"12\n"
"help.text"
-msgid "<item type=\"input\">=ASINH(SINH(4))</item> returns 4."
-msgstr "<item type=\"input\">=ASINH(SINH(4))</item> 4 deebisa."
+msgid "February"
+msgstr "Guraandhala"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3155996\n"
+"12080500.xhp\n"
+"par_id3152460\n"
+"13\n"
"help.text"
-msgid "<bookmark_value>ATAN function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii ATAN</bookmark_value>"
+msgid "March"
+msgstr "Bitootessa"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155996\n"
-"110\n"
+"12080500.xhp\n"
+"par_id3146119\n"
+"14\n"
"help.text"
-msgid "ATAN"
-msgstr "ATAN"
+msgid "1st Quarter"
+msgstr "Nuusa 1ffaa"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149985\n"
-"111\n"
+"12080500.xhp\n"
+"par_id3155854\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCTAN\">Returns the inverse trigonometric tangent of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARCTAN\">Garagaltoo tangentii tiriignoomeetirii lakkoofsaa deebisa.</ahelp>"
+msgid "April"
+msgstr "Eebla"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3151294\n"
-"112\n"
+"12080500.xhp\n"
+"par_id3148575\n"
+"16\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "May"
+msgstr "Caamsaa"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150261\n"
-"113\n"
+"12080500.xhp\n"
+"par_id3145271\n"
+"17\n"
"help.text"
-msgid "ATAN(Number)"
-msgstr "ATAN(Lakkoofsa)"
+msgid "June"
+msgstr "waxabajjii"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147267\n"
-"114\n"
+"12080500.xhp\n"
+"par_id3145648\n"
+"18\n"
"help.text"
-msgid "This function returns the inverse trigonometric tangent of <emph>Number</emph>, that is the angle (in radians) whose tangent is Number. The angle returned is between -PI/2 and PI/2."
-msgstr "Faankishiniin kun garagaltoo tangentii tiriignoomeetirii <emph>Lakkoofsaa</emph>,tangentii kofti isaa lakkoofsaan ta'e deebisa.Kofti deebiu -PI/2 fi +PI/2 gidduu jira."
+msgid "2nd Quarter"
+msgstr "Nuusa 1ffaa"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6293527\n"
+"12080500.xhp\n"
+"par_id3153876\n"
+"19\n"
"help.text"
-msgid "To return the angle in degrees, use the DEGREES function."
-msgstr "Kofa diigriidhaan deebisuuf,faankishinii DEGREE fayyadamaa."
+msgid "100"
+msgstr "100"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154054\n"
-"115\n"
+"12080500.xhp\n"
+"par_id3145251\n"
+"20\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "120"
+msgstr "120"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143229\n"
-"116\n"
+"12080500.xhp\n"
+"par_id3149400\n"
+"21\n"
"help.text"
-msgid "<item type=\"input\">=ATAN(1)</item> returns 0.785398163397448 (PI/4 radians)."
-msgstr "<item type=\"input\">=ATAN(1)</item> 0.785398163397448 (PI/4 raadiyaanii)deebisa."
+msgid "130"
+msgstr "130"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8746299\n"
+"12080500.xhp\n"
+"par_id3150328\n"
+"22\n"
"help.text"
-msgid "<item type=\"input\">=DEGREES(ATAN(1))</item> returns 45. The tangent of 45 degrees is 1."
-msgstr "<item type=\"input\">=DEGREES(ATAN(1))</item> 45 deebisa.Tangentiin deegrii 45 1 ta'a."
+msgid "350"
+msgstr "350"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3153983\n"
+"12080500.xhp\n"
+"par_id3155443\n"
+"23\n"
"help.text"
-msgid "<bookmark_value>ATAN2 function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii ATAN2</bookmark_value>"
+msgid "100"
+msgstr "100"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153983\n"
-"120\n"
+"12080500.xhp\n"
+"par_id3153713\n"
+"24\n"
"help.text"
-msgid "ATAN2"
-msgstr "ATAN2"
+msgid "100"
+msgstr "100"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154297\n"
-"121\n"
+"12080500.xhp\n"
+"par_id3156385\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCTAN2\">Returns the inverse trigonometric tangent of the specified x and y coordinates.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARCTAN2\">Garagaltoo tangentii tiriignoomeetirii koordineetii x fi y adda ba'ee deebisa.</ahelp>"
+msgid "200"
+msgstr "200"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3149758\n"
-"122\n"
+"12080500.xhp\n"
+"par_id3145230\n"
+"26\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "400"
+msgstr "400"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156013\n"
-"123\n"
+"12080500.xhp\n"
+"par_id3147363\n"
+"27\n"
"help.text"
-msgid "ATAN2(NumberX; NumberY)"
-msgstr "ATAN2(LakkoofsaX; LakkoofsaY)"
+msgid "The cells for the 1st and 2nd quarters each contain a sum formula for the three cells to their left. If you apply the <emph>AutoOutline</emph> command, the table is grouped into two quarters."
+msgstr "Man'eewwan nuusa tokkoffaa fi lammaffaa tokkoon tokkoo isaanii formulaa ida'ama man'eewwan sadii gara harka bitaa isaaniitti argamuu qabu.Yoo ajaja <emph>TooriiOfuman</emph> fayyadamte,gabateen nuusawwan lamatti gurmaa'a."
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151168\n"
-"124\n"
+"12080500.xhp\n"
+"par_id3146918\n"
+"9\n"
"help.text"
-msgid "<emph>NumberX</emph> is the value of the x coordinate."
-msgstr "<emph>LakkoofsiX</emph> gatii koordineetii x ti."
+msgid "To remove the outline, select the table, and then choose <link href=\"text/scalc/01/12080600.xhp\" name=\"Data - Group and Outline - Remove\">Data - Group and Outline - Remove</link>."
+msgstr "Toorii haquuf, gabatee fili,sana booda kanneen fili<link href=\"text/scalc/01/12080600.xhp\" name=\"Data - Group and Outline - Remove\">Deetaa - Gurmii fi Toorii - haqi</link>."
-#: 04060106.xhp
+#: 12080600.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152798\n"
-"125\n"
+"12080600.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>NumberY</emph> is the value of the y coordinate."
-msgstr "<emph>LakkoofsaY</emph> gatii coordineetii y ta'a."
+msgid "Remove"
+msgstr "Haqi"
-#: 04060106.xhp
+#: 12080600.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5036164\n"
+"12080600.xhp\n"
+"hd_id3148947\n"
+"1\n"
"help.text"
-msgid "ATAN2 returns the inverse trigonometric tangent, that is, the angle (in radians) between the x-axis and a line from point NumberX, NumberY to the origin. The angle returned is between -PI and PI."
-msgstr "ATAN2 garagaltoo tangentii tiriignoomeetirii,kunis,kofa(raadiyaaniidhaan) x-axisii fi sarara xuqaa LakkoofsaX ,gara LakkoofsaY ti deebisa.Kofti deebi'u -PI fi PI gidduu ta'a."
+msgid "<link href=\"text/scalc/01/12080600.xhp\" name=\"Remove\">Remove</link>"
+msgstr "<link href=\"text/scalc/01/12080600.xhp\" name=\"Remove\">Haqi</link>"
-#: 04060106.xhp
+#: 12080600.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3001800\n"
+"12080600.xhp\n"
+"par_id3149656\n"
+"2\n"
"help.text"
-msgid "To return the angle in degrees, use the DEGREES function."
-msgstr "Kofa diigriidhaan deebisuuf,faankishinii DEGREE fayyadamaa."
+msgid "<ahelp hid=\".uno:ClearOutline\" visibility=\"visible\">Removes the outline from the selected cell range.</ahelp>"
+msgstr "<ahelp hid=\".uno:ClearOutline\" visibility=\"visible\">Hammanga man'ee filatame irraa toorii haqa.</ahelp>"
-#: 04060106.xhp
+#: 12080700.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145663\n"
-"126\n"
+"12080700.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Show Details (Pivot Table)"
+msgstr "Baldhiintaa agarsiisi(qinxaa)"
-#: 04060106.xhp
+#: 12080700.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154692\n"
-"127\n"
+"12080700.xhp\n"
+"hd_id3344523\n"
"help.text"
-msgid "<item type=\"input\">=ATAN2(20;20)</item> returns 0.785398163397448 (PI/4 radians)."
-msgstr "<item type=\"input\">=ATAN2(20;20)</item> 0.785398163397448 (PI/4 raadiyaanii)deebisa."
+msgid "<link href=\"text/scalc/01/12080700.xhp\">Show Details (Pivot Table)</link>"
+msgstr "<link href=\"text/scalc/01/12080700.xhp\">Baldhiintaa agarsiisi(qinxaa)</link>"
-#: 04060106.xhp
+#: 12080700.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1477095\n"
+"12080700.xhp\n"
+"par_id871303\n"
"help.text"
-msgid "<item type=\"input\">=DEGREES(ATAN2(12.3;12.3))</item> returns 45. The tangent of 45 degrees is 1."
-msgstr "<item type=\"input\">=DEGREES(ATAN2(12.3;12.3))</item> 45 deebisa.Tangentiin diigrii 45 1 ta'a."
+msgid "<ahelp hid=\".\">Inserts a new \"drill-down\" sheet with more information about the current pivot table cell. You can also double-click a pivot table cell to insert the \"drill-down\" sheet. The new sheet shows a subset of rows from the original data source that constitutes the result data displayed in the current cell.</ahelp>"
+msgstr "<ahelp hid=\".\">Wardii\"drill-down\" haaraa odeeffannoo dabalataa wa'ee man'ee qinxaa waliin saaga. Wardii \"drill-down\" saaguf man'ee qinxaa lama cuqaasuu dandeessa. Wardii haraan tarreewwan cita tuutaa madda deetaa jalqabaa kan bu'aa deetaa man'ee ammaa keessatti agarsiifame agarsiisa.</ahelp>"
-#: 04060106.xhp
+#: 12080700.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3155398\n"
+"12080700.xhp\n"
+"par_id7132480\n"
"help.text"
-msgid "<bookmark_value>ATANH function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii ATANH</bookmark_value>"
+msgid "Hidden items are not evaluated, the rows for the hidden items are included. Show Details is available only for pivot tables that are based on cell ranges or database data."
+msgstr "Wantootni dhokataan hin madaalaman,tarreen wantoota dhokatee keessatti ni hammatama. Agarsiisan baldhiintaa kan argamuu gabateewwan qinxaa kan hangiiwwan man'ee ykn kuusaa deetaa irratti hunda'uu qofaafi."
-#: 04060106.xhp
+#: 12090000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155398\n"
-"130\n"
+"12090000.xhp\n"
+"tit\n"
"help.text"
-msgid "ATANH"
-msgstr "ATANH"
+msgid "Pivot Table"
+msgstr "Gabatee Qiinxaa"
-#: 04060106.xhp
+#: 12090000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148829\n"
-"131\n"
+"12090000.xhp\n"
+"hd_id3150275\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARTANHYP\">Returns the inverse hyperbolic tangent of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARTANHYP\">Garagaltoo tangentii tiriignoomeetirii lakkoofsaa deebisa.</ahelp>"
+msgid "<link href=\"text/scalc/01/12090000.xhp\" name=\"Pivot Table\">Pivot Table</link>"
+msgstr "<link href=\"text/shared/01/01100500.xhp\" name=\"Priority Table\">Gabatee Duraanaa</link>"
-#: 04060106.xhp
+#: 12090000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3146997\n"
-"132\n"
+"12090000.xhp\n"
+"par_id3153562\n"
+"2\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "A pivot table provides a summary of large amounts of data. You can then rearrange the pivot table to view different summaries of the data."
+msgstr "Gabateen qinxaa goolabaa guddaa deetaa kenna.Goolaba deetaa adda addaa ilaaluuf gabatee qinxaa kee sissireessuu dandeessa."
-#: 04060106.xhp
+#: 12090000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149912\n"
-"133\n"
+"12090000.xhp\n"
+"hd_id3155923\n"
+"3\n"
"help.text"
-msgid "ATANH(Number)"
-msgstr "ATANH(Lakkoofsa)"
+msgid "<link href=\"text/scalc/01/12090100.xhp\" name=\"Create\">Create</link>"
+msgstr "<link href=\"text/scalc/01/12090300.xhp\" name=\"Delete\">Haqi</link>"
-#: 04060106.xhp
+#: 12090000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150521\n"
-"134\n"
+"12090000.xhp\n"
+"par_idN105FB\n"
"help.text"
-msgid "This function returns the inverse hyperbolic tangent of <emph>Number</emph>, that is the number whose hyperbolic tangent is Number."
-msgstr "Faankishiniin kun garagaltoo tangentii tiriignoomeetirii <emph>Lakkoofsaa</emph>,kana jechuun lakkoofsa tangentiin haayperpoolikiin isaanii lakkoofsa ta'e deebisa jechuudha."
+msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
+msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"DataPilot dialog\">Qaaqa qinxaa</link>"
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9357280\n"
+"12090100.xhp\n"
+"tit\n"
"help.text"
-msgid "Number must obey the condition -1 < number < 1."
-msgstr "Lakkoofsi haala -1 < lakkoofsa < 1 kana dirqama fudhachuu qaba."
+msgid "Select Source"
+msgstr "Madda Fili"
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3148450\n"
-"135\n"
+"12090100.xhp\n"
+"hd_id3153663\n"
+"1\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Select Source"
+msgstr "Madda Fili"
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145419\n"
-"136\n"
+"12090100.xhp\n"
+"par_id3145119\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=ATANH(0)</item> returns 0."
-msgstr "<item type=\"input\">=ATANH(0)</item> 0 deebisa."
+msgid "<ahelp hid=\".uno:DataDataPilotRun\">Opens a dialog where you can select the source for your pivot table, and then create your table.</ahelp>"
+msgstr "<ahelp hid=\".uno:DataDataPilotRun\">Gabatee qinxaa bakkaa itti madda filtu qaaqa bana,itti aansuun gabatee kee uumi.</ahelp>"
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3153062\n"
+"12090100.xhp\n"
+"hd_id3154760\n"
+"5\n"
"help.text"
-msgid "<bookmark_value>COS function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii COS </bookmark_value>"
+msgid "Selection"
+msgstr "Filannoo"
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153062\n"
-"149\n"
+"12090100.xhp\n"
+"par_id3150543\n"
+"6\n"
"help.text"
-msgid "COS"
-msgstr "COS"
+msgid "Select a data source for the pivot table."
+msgstr "Gabatee qinxaaf madda deetaa fili."
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148803\n"
-"150\n"
+"12090100.xhp\n"
+"hd_id3148799\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_COS\">Returns the cosine of the given angle (in radians).</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_COS\">Cosine kofa kennamee deebisa.</ahelp>"
+msgid "Current Selection"
+msgstr "Fillannoo ammee"
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150779\n"
-"151\n"
+"12090100.xhp\n"
+"par_id3125865\n"
+"8\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\".\">Uses the selected cells as the data source for the pivot table.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DAPITYPE:BTN_SELECTION\">Gabatee qinxaaf man'eewwan filamaan akka madda deetaatti fayyadama.</ahelp>"
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154213\n"
-"152\n"
+"12090100.xhp\n"
+"par_id3150011\n"
+"13\n"
"help.text"
-msgid "COS(Number)"
-msgstr "COS(Lakkoofsa)"
+msgid "The data columns in the pivot table use the same number format as the first data row in the current selection."
+msgstr "Fillannoo ammmee keessatti, tarjaawwan deetaa gabatee keessa akkuma tarree deetaa jalqabaa lakkoofsa dhangii wal fakkaata fayyadama."
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154285\n"
-"153\n"
+"12090100.xhp\n"
+"hd_id3147348\n"
+"9\n"
"help.text"
-msgid "Returns the (trigonometric) cosine of <emph>Number</emph>, the angle in radians."
-msgstr "Cosine tiriignoomeetirii<emph>lakkoofsaa</emph>,kofa raadiyaanidhaan deebisa."
+msgid "Data source registered in $[officename]"
+msgstr "$[officename] madda deetaa galmaa'ee"
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id831019\n"
+"12090100.xhp\n"
+"par_id3145271\n"
+"10\n"
"help.text"
-msgid "To return the cosine of an angle in degrees, use the RADIANS function."
-msgstr "Cosine kofaa diigriidhaan deebisuuf,faankishinii RADIAN fayyadamaa."
+msgid "<ahelp hid=\".\">Uses a table or query in a database that is registered in $[officename] as the data source for the pivot table.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DAPITYPE:BTN_DATABASE\">Gabatee ykn gaffii kuusdeetaa $[officename] keessatti galmaa'ee akkaa madda deetaa gabatee qinxaatti fayyadama.</ahelp>"
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153579\n"
-"154\n"
+"12090100.xhp\n"
+"hd_id3146119\n"
+"11\n"
"help.text"
-msgid "Examples"
-msgstr "Fakkeenya"
+msgid "External source/interface"
+msgstr "Madda alaantoo/walqunnama"
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147240\n"
-"155\n"
+"12090100.xhp\n"
+"par_id3145647\n"
+"12\n"
"help.text"
-msgid "<item type=\"input\">=COS(PI()/2)</item> returns 0, the cosine of PI/2 radians."
-msgstr "<item type=\"input\">=COS(PI()/2)</item> 0 deebisa,cosine PI/2 raadiyaanidhaani."
+msgid "<ahelp hid=\".\">Opens the <emph>External Source</emph> dialog where you can select the OLAP data source for the pivot table.</ahelp>"
+msgstr "<ahelp hid=\".uno:DiagramData\">Bani<emph> Gabatee Deetaa </emph>qaaqaq yeroo deetaa taattoo gulaalu dandeesuudha.</ahelp>"
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147516\n"
-"156\n"
+"12090100.xhp\n"
+"par_idN10670\n"
"help.text"
-msgid "<item type=\"input\">=COS(RADIANS(60))</item> returns 0.5, the cosine of 60 degrees."
-msgstr "<item type=\"input\">=COS(RADIANS(60))</item> cosine diigrii 60,0.5 deebisa."
+msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
+msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"DataPilot dialog\">Qaaqa qinxaa</link>"
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3154277\n"
+"12090101.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>COSH function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii COSH </bookmark_value>"
+msgid "Select Data Source"
+msgstr "Madda Deetaa Fili"
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154277\n"
-"159\n"
+"12090101.xhp\n"
+"hd_id3143268\n"
+"1\n"
"help.text"
-msgid "COSH"
-msgstr "COSH"
+msgid "Select Data Source"
+msgstr "Madda Deetaa Fili"
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3146946\n"
-"160\n"
+"12090101.xhp\n"
+"par_id3148552\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_COSHYP\">Returns the hyperbolic cosine of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_COSHYP\">Cosine haayiperpoolikii lakkoofsaa deebisa.</ahelp>"
+msgid "Select the database and the table or query containing the data that you want to use."
+msgstr "Kuusaa deetaa fi gabatee ykn gaafata deetaa ati fayyadamuu barbaaddee qabatee fili"
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3149792\n"
-"161\n"
+"12090101.xhp\n"
+"hd_id3154140\n"
+"3\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Selection"
+msgstr "Filannoo"
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3166440\n"
-"162\n"
+"12090101.xhp\n"
+"par_id3125863\n"
+"4\n"
"help.text"
-msgid "COSH(Number)"
-msgstr "COSH(Lakkoofsa)"
+msgid "<ahelp hid=\".\">You can only select databases that are registered in %PRODUCTNAME.</ahelp> To register a data source, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Base - Databases</emph>."
+msgstr ""
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150710\n"
-"163\n"
+"12090101.xhp\n"
+"hd_id3151041\n"
+"5\n"
"help.text"
-msgid "Returns the hyperbolic cosine of <emph>Number</emph>."
-msgstr "Cosine haayperpoolikii <emph>lakkoofsaa</emph>deebisa."
+msgid "Database"
+msgstr "Kuusa Deetaa"
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153234\n"
-"164\n"
+"12090101.xhp\n"
+"par_id3156424\n"
+"6\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_DATABASE\">Select the database that contains the data source that you want to use.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_DATABASE\">kuusaa deetaa isa madda deetaa ati fayyadamuu barbaadduu of keessatti qabatee fili.</ahelp>"
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154099\n"
-"165\n"
+"12090101.xhp\n"
+"hd_id3145364\n"
+"7\n"
"help.text"
-msgid "<item type=\"input\">=COSH(0)</item> returns 1, the hyperbolic cosine of 0."
-msgstr "<item type=\"input\">=COSH(0)</item> haayiperpoolikii zero 1 deebisa."
+msgid "Data source"
+msgstr "Madda deetaa"
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3152888\n"
+"12090101.xhp\n"
+"par_id3149260\n"
+"8\n"
"help.text"
-msgid "<bookmark_value>COT function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii COT</bookmark_value>"
+msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DAPIDATA:CB_OBJECT\">Select the data source that you want to use.</ahelp>"
+msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DAPIDATA:CB_OBJECT\">Madda deetaa fayyadamuu barbadduu filadhu.</ahelp>"
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152888\n"
-"169\n"
+"12090101.xhp\n"
+"hd_id3147428\n"
+"9\n"
"help.text"
-msgid "COT"
-msgstr "COT"
+msgid "Type"
+msgstr "Akaakuu"
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153679\n"
-"170\n"
+"12090101.xhp\n"
+"par_id3150010\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_COT\">Returns the cotangent of the given angle (in radians).</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_COT\">Kotaanjantii kofa(raadiyaanidhaan) kennamee deebisa.</ahelp>"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_OBJTYPE\">Click the source type of for the selected data source.</ahelp> You can choose from four source types: \"Table\", \"Query\" and \"SQL\" or SQL (Native)."
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_OBJTYPE\">Madda deetaa filatameef akaakuu maddaa cuqaasi.</ahelp> Akaakuu maddootaa: \"Gabatee\",\"Gaafata\" fi \"SQL\" ykn SQL(dhaloota) arfan keessaa filachuu dandeessa."
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152943\n"
-"171\n"
+"12090101.xhp\n"
+"par_id3147348\n"
+"11\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
+msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"DataPilot dialog\">Qaaqa qinxaa</link>"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154856\n"
-"172\n"
+"12090102.xhp\n"
+"tit\n"
"help.text"
-msgid "COT(Number)"
-msgstr "COT(Lakkoofsa)"
+msgid "Pivot Table"
+msgstr "Gabatee Qiinxaa"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149969\n"
-"173\n"
+"12090102.xhp\n"
+"bm_id2306894\n"
"help.text"
-msgid "Returns the (trigonometric) cotangent of <emph>Number</emph>, the angle in radians."
-msgstr "Kotaanjantii <emph>Lakkoofsaa</emph>, kofa raadiyaanidhaan deebisa."
+msgid "<bookmark_value>pivot table function;show details</bookmark_value><bookmark_value>pivot table function;drill down</bookmark_value>"
+msgstr "<bookmark_value>Fankaashinii qinxaa;Liixaa Mul'isi</bookmark_value> <bookmark_value>Fankaashinii qinxaa;gadi uraa</bookmark_value>"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3444624\n"
+"12090102.xhp\n"
+"hd_id3149165\n"
+"1\n"
"help.text"
-msgid "To return the cotangent of an angle in degrees, use the RADIANS function."
-msgstr "Kootaanjantii kofaa diigriidhaan deebisuuf,faankishinii RADIAN fayyadamaa."
+msgid "Pivot Table"
+msgstr "Gabatee Qiinxaa"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6814477\n"
+"12090102.xhp\n"
+"par_id3155922\n"
+"13\n"
"help.text"
-msgid "The cotangent of an angle is equivalent to 1 divided by the tangent of that angle."
-msgstr "Kootaanjantiin kofaa 1 kan taanjantiidhaan hirameen walqixa."
+msgid "<ahelp hid=\".uno:DataPilotExec\">Specify the layout of the table that is generated by the pivot table.</ahelp>"
+msgstr "<ahelp hid=\".uno:DataPilotExec\">Teessuma gabatee qixaan uumamee ifteessi.</ahelp>"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3149800\n"
-"174\n"
+"12090102.xhp\n"
+"par_id3148798\n"
+"34\n"
"help.text"
-msgid "Examples:"
-msgstr "Fakkeenya"
+msgid "The pivot table displays data fields as buttons which you can drag and drop to define the pivot table."
+msgstr "Qinxaan dirreewwan deetaa akka qabdoowwan harkisuu fi kawuu gabatee qinxaa qindeessuuf dandeesisan agarsiisa."
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148616\n"
-"175\n"
+"12090102.xhp\n"
+"hd_id3154908\n"
+"18\n"
"help.text"
-msgid "<item type=\"input\">=COT(PI()/4)</item> returns 1, the cotangent of PI/4 radians."
-msgstr "<item type=\"input\">=COT(PI()/4)</item> kootaanjantii PI/4 raadiyaaniidhaaf,1 deebisa."
+msgid "Layout"
+msgstr "Teessuma"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148986\n"
-"176\n"
+"12090102.xhp\n"
+"par_id3150768\n"
+"19\n"
"help.text"
-msgid "<item type=\"input\">=COT(RADIANS(45))</item> returns 1, the cotangent of 45 degrees."
-msgstr "<item type=\"input\">=COT(RADIANS(45))</item> kootaanjantii diigrii 45,1 deebisa."
+msgid "<ahelp hid=\"HID_SC_DPLAY_SELECT\">To define the layout of a pivot table, drag and drop data field buttons onto the <emph>Page Fields, Row Fields, Column Fields, </emph>and<emph> Data Fields </emph>areas.</ahelp> You can also use drag and drop to rearrange the data fields on a pivot table."
+msgstr "<ahelp hid=\"HID_SC_DPLAY_SELECT\">Teessuma gabatee qinxaa qindeessuuf, qabdoowwan dirree deetaa naannoowwan <emph>Dirreewwan Fuulaa, Dirreewwan Tarree, Dirreewwan Tarjaa, </emph>fi<emph> Dirreewwan Deetaa </emph> harkisuu fi kawuu dha.</ahelp> Akkasumas dirreewwan deetaa gabatee qinxaa irra jiru irra deebitee qindeessuf harkisuu fi kawuu filachuu dandeessa."
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3154337\n"
+"12090102.xhp\n"
+"par_id3147229\n"
+"20\n"
"help.text"
-msgid "<bookmark_value>COTH function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii COTH </bookmark_value>"
+msgid "$[officename] automatically adds a caption to buttons that are dragged into the <emph>Data Fields </emph>area. The caption contains the name of the data field as well as the formula that created the data."
+msgstr "$[officename]'n ofumaan qabdoowwan kan naannoo <emph>Dirreewwan Deetaa</emph>tti harkisamanitti goodayyaa dabala.Goodayyaan maqoota dirreewwan deetaa akkasumas formulaa deetaa uume qaba."
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154337\n"
-"178\n"
+"12090102.xhp\n"
+"par_id3145749\n"
+"21\n"
"help.text"
-msgid "COTH"
-msgstr "COTH"
+msgid "To change the function that is used by a data field, double-click a button in the <emph>Data Fields</emph> area to open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\">Data Field</link> dialog. You can also double-click buttons in the <emph>Row Fields</emph> or <emph>Column Fields</emph> areas."
+msgstr "fankishiniiwwan Dirreewwan deetaa fayyadamee jijjiiruuf, qabduu nannoo <emph>Dirree Deetaa</emph> irratti lamcuqaasuudhaan qaaqa <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\">Dirree Deetaa</link> bani. Akkasumaas qabdoowwan nannnoo <emph>Dirreewwan Tarree</emph> ykn <emph>Dirreewwan Tarjaa</emph> keessa jiraan lacuqaasuu dandeessa."
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149419\n"
-"179\n"
+"12090102.xhp\n"
+"hd_id3149260\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_COTHYP\">Returns the hyperbolic cotangent of a given number (angle).</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_COTHYP\">Kootaanjantii haayperpoolikii lakkoofsa (kofaan)kennamee deebisa</ahelp>"
+msgid "Remove"
+msgstr "Haqi"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3149242\n"
-"180\n"
+"12090102.xhp\n"
+"par_id3150010\n"
+"27\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_REMOVE\">Removes the selected data field from the table layout.</ahelp>"
+msgstr "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_REMOVE\">Dirree deetaa filatamee teessuma gabatee irraa haqa.</ahelp>"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143280\n"
-"181\n"
+"12090102.xhp\n"
+"hd_id3145273\n"
+"26\n"
"help.text"
-msgid "COTH(Number)"
-msgstr "COTH(Lakkoofsa)"
+msgid "Options"
+msgstr "Dirqalaalee"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154799\n"
-"182\n"
+"12090102.xhp\n"
+"par_id3146120\n"
+"25\n"
"help.text"
-msgid "Returns the hyperbolic cotangent of <emph>Number</emph>."
-msgstr "Kootaanjantii haayiperpoolikii <emph>Lakkoofsaa</emph> deebisa."
+msgid "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_OPTIONS\">Opens the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog where you can change the function that is associated with the selected field.</ahelp>"
+msgstr "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_OPTIONS\">Qaaqa <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Dirree Deetaa</emph></link> iddoo itti fankishinii dirree filamaanin firooman itti jijjiruu dandeenyu bana.</ahelp>"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155422\n"
-"183\n"
+"12090102.xhp\n"
+"hd_id3154944\n"
+"22\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "More"
+msgstr "Dabalaa"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144754\n"
-"184\n"
+"12090102.xhp\n"
+"par_id3145647\n"
+"23\n"
"help.text"
-msgid "<item type=\"input\">=COTH(1)</item> returns the hyperbolic cotangent of 1, approximately 1.3130."
-msgstr "<item type=\"input\">=COTH(1)</item> Kootaanjanii haayiperpoolikii 1,tilmaamaan 1.3130 deebisa."
+msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_PIVOT_LAYOUT:BTN_MORE\">Displays or hides additional options for defining the pivot table.</ahelp>"
+msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_PIVOT_LAYOUT:BTN_MORE\">Dirqalaalee dabalata Gabatee qinxa qindessuuf fayyadu agarsiisa ykn dhoksa.</ahelp>"
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id6110552\n"
+"12090102.xhp\n"
+"hd_id3151073\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>CSC function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii ASC</bookmark_value>"
+msgid "Result"
+msgstr "Bu'aa"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id9523234\n"
-"149\n"
+"12090102.xhp\n"
+"par_id3155417\n"
+"3\n"
"help.text"
-msgid "CSC"
-msgstr ""
+msgid "Specify the settings for displaying the results of the pivot table."
+msgstr "Qindaa'inoota bu'aa gabatee qinxaa agarsiisu ifteessi."
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id4896433\n"
-"150\n"
+"12090102.xhp\n"
+"hd_id0509200913025625\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_COSECANT\">Returns the cosecant of the given angle (in radians). The cosecant of an angle is equivalent to 1 divided by the sine of that angle</ahelp>"
-msgstr ""
+msgid "Selection from"
+msgstr "Irraa filachuu"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3534032\n"
-"151\n"
+"12090102.xhp\n"
+"par_id0509200913025615\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\".\">Select the area that contains the data for the current pivot table.</ahelp>"
+msgstr "<ahelp hid=\".\">Gabatee gabateeqinxaa ammeetiif naannoo deetaa qabate fili.</ahelp>"
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id4571344\n"
-"152\n"
+"12090102.xhp\n"
+"hd_id3155603\n"
+"4\n"
"help.text"
-msgid "CSC(Number)"
-msgstr "COSH(Lakkoofsa)"
+msgid "Results to"
+msgstr "Gara bu'aawwanitti"
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9859164\n"
-"153\n"
+"12090102.xhp\n"
+"par_id3153838\n"
+"5\n"
"help.text"
-msgid "Returns the (trigonometric) cosecant of <emph>Number</emph>, the angle in radians."
-msgstr "Cosine tiriignoomeetirii<emph>lakkoofsaa</emph>,kofa raadiyaanidhaan deebisa."
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_PIVOT_LAYOUT:ED_OUTAREA\">Select the area where you want to display the results of the pivot table.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_PIVOT_LAYOUT:ED_OUTAREA\">Iddoo bu'aawwaan gabate qinxaa itti agarsiisuu barbaaddu fili.</ahelp>"
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3428494\n"
+"12090102.xhp\n"
+"par_id3155961\n"
+"6\n"
"help.text"
-msgid "To return the cosecant of an angle in degrees, use the RADIANS function."
-msgstr "Cosine kofaa diigriidhaan deebisuuf,faankishinii RADIAN fayyadamaa."
+msgid "If the selected area contains data, the pivot table overwrites the data. To prevent the loss of existing data, let the pivot table automatically select the area to display the results."
+msgstr "Yoo iddoon filamee deetaa qabaate,qinxaan deetaa irratti barreessa.Kasaaraa deetaa jiraataa ittisuuf, Qinxaan ofuumaan bakkaa bu'aawwan itti agarsiisu filatu heyyami."
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id2577161\n"
-"154\n"
+"12090102.xhp\n"
+"hd_id3147364\n"
+"7\n"
"help.text"
-msgid "Examples"
-msgstr "Fakkeenyawwan"
+msgid "Ignore empty rows"
+msgstr "Tarreewwan duwwaa haqi"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3736803\n"
-"155\n"
+"12090102.xhp\n"
+"par_id3154022\n"
+"8\n"
"help.text"
-msgid "<item type=\"input\">=CSC(PI()/4)</item> returns approximately 1.4142135624, the inverse of the sine of PI/4 radians."
-msgstr ""
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_IGNEMPTYROWS\">Ignores empty fields in the data source.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_IGNEMPTYROWS\">Madda deetaa keessa dirreewwan duwwaa haqa.</ahelp>"
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6016818\n"
-"156\n"
+"12090102.xhp\n"
+"hd_id3155114\n"
+"9\n"
"help.text"
-msgid "<item type=\"input\">=CSC(RADIANS(30))</item> returns 2, the cosecant of 30 degrees."
-msgstr "<item type=\"input\">=COS(RADIANS(60))</item> cosine diigrii 60,0.5 deebisa."
+msgid "Identify categories"
+msgstr "Akaakuuwwan adda baasi"
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id9288877\n"
+"12090102.xhp\n"
+"par_id3145257\n"
+"10\n"
"help.text"
-msgid "<bookmark_value>CSCH function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii ASC</bookmark_value>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_DETECTCAT\">Automatically assigns rows without labels to the category of the row above.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_DETECTCAT\">Akka moggaasa tarreetiin ifteessametti tarreewwan moggaasa malee jiran gara akaakuu ol'aantootti ofuumaan ramada.</ahelp>"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id4325650\n"
-"159\n"
+"12090102.xhp\n"
+"hd_id3149207\n"
+"14\n"
"help.text"
-msgid "CSCH"
-msgstr ""
+msgid "Total columns"
+msgstr "Tarjaalee ida'amaa"
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id579916\n"
-"160\n"
+"12090102.xhp\n"
+"par_id3166426\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_COSECANTHYP\">Returns the hyperbolic cosecant of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_COSHYP\">Cosine haayiperpoolikii lakkoofsaa deebisa.</ahelp>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALCOL\">Calculates and displays the grand total of the column calculation.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALCOL\">Dabaltoo dunneetii shallaggii tarjaa shallaguun agarsiisa.</ahelp>"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id5336768\n"
-"161\n"
+"12090102.xhp\n"
+"hd_id3150364\n"
+"16\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Total rows"
+msgstr "Ida'aa tarreewwaani"
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3108851\n"
-"162\n"
+"12090102.xhp\n"
+"par_id3152583\n"
+"17\n"
"help.text"
-msgid "CSCH(Number)"
-msgstr "COSH(Lakkoofsa)"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALROW\">Calculates and displays the grand total of the row calculation.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALROW\">Dabaltoo dunneetii shallaggii tarree shallaguun agarsiisa.</ahelp>"
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1394188\n"
-"163\n"
+"12090102.xhp\n"
+"par_idN10897\n"
"help.text"
-msgid "Returns the hyperbolic cosecant of <emph>Number</emph>."
-msgstr "Cosine haayperpoolikii <emph>lakkoofsaa</emph>deebisa."
+msgid "Add filter"
+msgstr "Gingilchaa dabali"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id6037477\n"
-"164\n"
+"12090102.xhp\n"
+"par_idN1089B\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<ahelp hid=\".\">Adds a Filter button to pivot tables that are based on spreadsheet data.</ahelp>"
+msgstr "<ahelp hid=\".\">Gabateewwan qinxaa Wardii deetaa irratti hunda'aniif qabdu gingilchaa dabala.</ahelp>"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5426085\n"
-"165\n"
+"12090102.xhp\n"
+"par_idN108B2\n"
"help.text"
-msgid "<item type=\"input\">=CSCH(1)</item> returns approximately 0.8509181282, the hyperbolic cosecant of 1."
-msgstr ""
+msgid "<ahelp hid=\".\">Opens the Filter dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Qaaqa gingilchaa bana.</ahelp>"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3145314\n"
+"12090102.xhp\n"
+"par_idN108C9\n"
"help.text"
-msgid "<bookmark_value>DEGREES function</bookmark_value><bookmark_value>converting;radians, into degrees</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii DEGREES </bookmark_value><bookmark_value>jijjiiruu;raadiyaanii,gara diigriitii</bookmark_value>"
+msgid "Enable drill to details"
+msgstr "Urtuu bal'inatti dandeessisi"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145314\n"
-"188\n"
+"12090102.xhp\n"
+"par_idN108CD\n"
"help.text"
-msgid "DEGREES"
-msgstr "DEGREES"
+msgid "<ahelp hid=\".\">Select this check box and double-click an item label in the table to show or hide details for the item. Clear this check box and double-click a cell in the table to edit the contents of the cell.</ahelp>"
+msgstr "<ahelp hid=\".\">Filqiiwwaan wanta keessa jiraan agarsiisuuf ykn dhoksuuf sanduuqa filannoo kana filuudhaan moggaasa wantaa gabatee keessaa lama cuqaasi.Qaabiyyeewwaan man'ee gulaaluuf sanduuqa filannoo haquun man'ee gabatee keessaa lama cuqaasi.</ahelp>"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149939\n"
-"189\n"
+"12090102.xhp\n"
+"par_idN108DC\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DEG\">Converts radians into degrees.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DEG\">Raadiyaanii gara diigriitti jijjiira.</ahelp>"
+msgid "To examine details inside a pivot table"
+msgstr "Filqiiwwan gabatee keessaa qoruudhaf"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150623\n"
-"190\n"
+"12090102.xhp\n"
+"par_idN108E0\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Do one of the following:"
+msgstr "Kan armaan gadii keessaa tokko dalagi:"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145600\n"
-"191\n"
+"12090102.xhp\n"
+"par_idN108E6\n"
"help.text"
-msgid "DEGREES(Number)"
-msgstr "DEGREES(Lakkoofsa)"
+msgid "Select a range of cells and choose <emph>Data - Group and Outline - Show Details</emph>."
+msgstr "Hangii man'eewwanii filuudhaan <emph>Deetaa - Gurmii fi Toorii - Fiqiiwwan Agarsiisi</emph>."
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149484\n"
-"192\n"
+"12090102.xhp\n"
+"par_idN108EE\n"
"help.text"
-msgid "<emph>Number</emph> is the angle in radians to be converted to degrees."
-msgstr "<emph>Lakkoofsi</emph> kofa raadiyaanii gara diigriitti jijjiiramuudha."
+msgid "Double-click a field in the table."
+msgstr "Dirree gabatee keessaa lama cuqaasi."
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3669545\n"
+"12090102.xhp\n"
+"par_idN108F1\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "If you double-click a field which has adjacent fields at the same level, the <emph>Show Detail</emph> dialog opens:"
+msgstr "Yoo dirree dirreewwan wal cinaa moggaasa wal fakkaata qabuu lama cuqaaste, qaaqa <emph>Filqii Agarsiisi</emph> bana:"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3459578\n"
+"12090102.xhp\n"
+"par_idN10900\n"
"help.text"
-msgid "<item type=\"input\">=DEGREES(PI())</item> returns 180 degrees."
-msgstr "<item type=\"input\">=DEGREES(PI())</item> diigrii 180 deebisa."
+msgid "Show Detail"
+msgstr "Filqii Agarsiisi"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3148698\n"
+"12090102.xhp\n"
+"par_idN10904\n"
"help.text"
-msgid "<bookmark_value>EXP function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii EXP </bookmark_value>"
+msgid "<ahelp hid=\".\">Choose the field that you want to view the details for.</ahelp>"
+msgstr "<ahelp hid=\".\">Filqiiwwan dirree ilaaluu barbaadduu fili.</ahelp>"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3148698\n"
-"198\n"
+"12090102.xhp\n"
+"par_id3149817\n"
+"35\n"
"help.text"
-msgid "EXP"
-msgstr "EXP"
+msgid "<link href=\"text/scalc/04/01020000.xhp\" name=\"Pivot table shortcut keys\">Pivot table shortcut keys</link>"
+msgstr "<link href=\"text/scalc/04/01020000.xhp\" name=\"DataPilot shortcut keys\">Furtuuwwan karaa gabaabduu qinxaa</link>"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150592\n"
-"199\n"
+"12090103.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_EXP\">Returns e raised to the power of a number.</ahelp> The constant e has a value of approximately 2.71828182845904."
-msgstr "<ahelp hid=\"HID_FUNC_EXP\"> e expoonentii lakkoofsaa deebisa.</ahelp> e tilmaamaan 2.71828182845904."
+msgid "Filter"
+msgstr "Gingilchaa"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150351\n"
-"200\n"
+"12090103.xhp\n"
+"hd_id3153970\n"
+"1\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Filter"
+msgstr "Gingilchaa"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3146786\n"
-"201\n"
+"12090103.xhp\n"
+"par_id3150448\n"
+"2\n"
"help.text"
-msgid "EXP(Number)"
-msgstr "EXP(Lakkoofsa)"
+msgid "Set the filtering options for the data."
+msgstr "Deetaadhaf dirqalaalee gingilchaa qindeessi"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155608\n"
-"202\n"
+"12090103.xhp\n"
+"hd_id3151043\n"
+"3\n"
"help.text"
-msgid "<emph>Number</emph> is the power to which e is to be raised."
-msgstr "<emph>Lakkoofsi</emph> paaworii e ittiin ka'uudha."
+msgid "Filter Criteria"
+msgstr "Ulaagaa Gingilchaa"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154418\n"
-"203\n"
+"12090103.xhp\n"
+"par_id3150440\n"
+"4\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "You can define a default filter for the data by filtering, for example, field names, using a combination of logical expressions arguments."
+msgstr "Gingilchuudhan deetaa durtii gingilchaa hikuu dandeessa,fakkenyaaf, maqaaleen dirree, makaa qajeelfamoota himannoowwan yaayaatti fayyadama."
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156340\n"
-"204\n"
+"12090103.xhp\n"
+"hd_id3159153\n"
+"5\n"
"help.text"
-msgid "<item type=\"input\">=EXP(1)</item> returns 2.71828182845904, the mathematical constant e to Calc's accuracy."
-msgstr "<item type=\"input\">=EXP(1)</item> 2.71828182845904,herreegni dhaabataan e kun sirrummaa calc tiifi."
+msgid "Operator"
+msgstr "Ogeejjii"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3145781\n"
+"12090103.xhp\n"
+"par_id3153093\n"
+"6\n"
"help.text"
-msgid "<bookmark_value>FACT function</bookmark_value><bookmark_value>factorials;numbers</bookmark_value>"
-msgstr "<bookmark_value>Faankishiniin FACT </bookmark_value><bookmark_value>faaktooriyaalii;lakkoofsotaa</bookmark_value>"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_OP2\" visibility=\"visible\">Select a logical operator for the filter.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_OP2\" visibility=\"visible\">Gingilchaadhaf ogeejjiii yaayaa fili.</ahelp>"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145781\n"
-"208\n"
+"12090103.xhp\n"
+"hd_id3152462\n"
+"7\n"
"help.text"
-msgid "FACT"
-msgstr "FACT"
+msgid "Field name"
+msgstr "Maqaa dirree"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151109\n"
-"209\n"
+"12090103.xhp\n"
+"par_id3155306\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FAKULTAET\">Returns the factorial of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FAKULTAET\">Faaktooriyaalii lakkoofsaa deebisa.</ahelp>"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_FIELD3\" visibility=\"visible\">Select the field that you want to use in the filter. If field names are not available, the column labels are listed.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_FIELD3\" visibility=\"visible\">Dirree gingilchaa keessatti fayyadamuu barbaadduu filiYoo maqaan dirreee hin jirre moggasotni tarjaa ni tarreeefamu.</ahelp>"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3146902\n"
-"210\n"
+"12090103.xhp\n"
+"hd_id3148575\n"
+"9\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Condition"
+msgstr "Haala"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154661\n"
-"211\n"
+"12090103.xhp\n"
+"par_id3147394\n"
+"10\n"
"help.text"
-msgid "FACT(Number)"
-msgstr "FACT(Lakkoofsaa)"
+msgid "<ahelp visibility=\"visible\" hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_COND3\">Select an operator to compare the <emph>Field name</emph> and <emph>Value</emph> entries.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_COND3\">Ogeejjii galchiiwwan <emph>Maqaa Dirree</emph> fi <emph>Gatii</emph> wal madaalchisu fili.</ahelp>"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152952\n"
-"212\n"
+"12090103.xhp\n"
+"par_id3144764\n"
+"11\n"
"help.text"
-msgid "Returns Number!, the factorial of <emph>Number</emph>, calculated as 1*2*3*4* ... * Number."
-msgstr "Lakkoofsa deebisa!, faaktooriyaaliin <emph>lakkoofsaa</emph>, akka lakkoofsa 1*2*3*4* ... * shallagama."
+msgid "The following operators are available:"
+msgstr "Ulaagaaleen armaan gadii ni jiru"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3834650\n"
+"12090103.xhp\n"
+"par_id3153415\n"
+"12\n"
"help.text"
-msgid "=FACT(0) returns 1 by definition."
-msgstr "=FACT(0) akka hiikaatti 1 deebisa."
+msgid "<emph>Conditions:</emph>"
+msgstr "<emph>Haalota:</emph>"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8429517\n"
+"12090103.xhp\n"
+"par_id3150324\n"
+"13\n"
"help.text"
-msgid "The factorial of a negative number returns the \"invalid argument\" error."
-msgstr "Faaktooriyaaniin lakkoofsa negatiivii\"qoccolloo fashalaawaa\" dogogora deebisa."
+msgid "="
+msgstr ""
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154569\n"
-"213\n"
+"12090103.xhp\n"
+"par_id3153714\n"
+"14\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "equal"
+msgstr "walqixa"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154476\n"
-"216\n"
+"12090103.xhp\n"
+"par_id3154254\n"
+"15\n"
"help.text"
-msgid "<item type=\"input\">=FACT(3)</item> returns 6."
-msgstr "<item type=\"input\">=FACT(3)</item> 6 deebisa."
+msgid "<"
+msgstr ""
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147525\n"
-"214\n"
+"12090103.xhp\n"
+"par_id3154703\n"
+"16\n"
"help.text"
-msgid "<item type=\"input\">=FACT(0)</item> returns 1."
-msgstr "<item type=\"input\">=FACT(0)</item> 1 deebisa."
+msgid "less than"
+msgstr "irra xiqqaa"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3159084\n"
+"12090103.xhp\n"
+"par_id3155335\n"
+"17\n"
"help.text"
-msgid "<bookmark_value>INT function</bookmark_value><bookmark_value>numbers;rounding down to next integer</bookmark_value><bookmark_value>rounding;down to next integer</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii INT </bookmark_value><bookmark_value>lakkoofsota;gara intijarii itti aanutti gadi siqsa</bookmark_value><bookmark_value>naannessuu;gara intijarii gadiitti siqsuu</bookmark_value>"
+msgid ">"
+msgstr ""
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3159084\n"
-"218\n"
+"12090103.xhp\n"
+"par_id3147003\n"
+"18\n"
"help.text"
-msgid "INT"
-msgstr "INT"
+msgid "greater than"
+msgstr "irra guddaa"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158441\n"
-"219\n"
+"12090103.xhp\n"
+"par_id3153270\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GANZZAHL\">Rounds a number down to the nearest integer.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GANZZAHL\">Lakkoofsa gara intijajii itti aanutti gadi siiqsa.</ahelp>"
+msgid "<="
+msgstr "<="
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3146132\n"
-"220\n"
+"12090103.xhp\n"
+"par_id3145257\n"
+"20\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "less than or equal to"
+msgstr "irra xiqqaa ykn walqixa"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156146\n"
-"221\n"
+"12090103.xhp\n"
+"par_id3145134\n"
+"21\n"
"help.text"
-msgid "INT(Number)"
-msgstr "INT(Lakkoofsa)"
+msgid ">="
+msgstr ">="
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154117\n"
-"222\n"
+"12090103.xhp\n"
+"par_id3151214\n"
+"22\n"
"help.text"
-msgid "Returns <emph>Number</emph> rounded down to the nearest integer."
-msgstr "Lakkoofsa<emph>gara</emph> intijarii gadi siqeetti deebisa."
+msgid "greater than or equal to"
+msgstr "irra guddaa ykn walqixa"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id153508\n"
+"12090103.xhp\n"
+"par_id3150345\n"
+"23\n"
"help.text"
-msgid "Negative numbers round down to the integer below."
-msgstr "Lakkoofsonni negatiifiin gara negatiivii gadiitti siqa."
+msgid "<>"
+msgstr "<>"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155118\n"
-"223\n"
+"12090103.xhp\n"
+"par_id3159101\n"
+"24\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "not equal to"
+msgstr "walqixa miti"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156267\n"
-"224\n"
+"12090103.xhp\n"
+"hd_id3150886\n"
+"25\n"
"help.text"
-msgid "<item type=\"input\">=INT(5.7)</item> returns 5."
-msgstr "<item type=\"input\">=INT(5.7)</item> 5 deebisa."
+msgid "Value"
+msgstr "Gatii"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147323\n"
-"225\n"
+"12090103.xhp\n"
+"par_id3155506\n"
+"26\n"
"help.text"
-msgid "<item type=\"input\">=INT(-1.3)</item> returns -2."
-msgstr "<item type=\"input\">=INT(-1.3)</item>-2 deebisa."
+msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_PIVOTFILTER:ED_VAL3\" visibility=\"visible\">Select the value that you want to compare to the selected field.</ahelp>"
+msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_PIVOTFILTER:ED_VAL3\" visibility=\"visible\">Dirree filataame waliin gatii madaaluu barbaadde fili.</ahelp>"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3150938\n"
+"12090103.xhp\n"
+"hd_id3146980\n"
+"27\n"
"help.text"
-msgid "<bookmark_value>EVEN function</bookmark_value><bookmark_value>numbers;rounding up/down to even integers</bookmark_value><bookmark_value>rounding;up/down to even integers</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii EVEN </bookmark_value><bookmark_value>lakkoofsota;siqsuu;ol/gadi gara intijerii guutuutti</bookmark_value><bookmark_value>siiqsuu;ol/gadi gara intijarii guututti</bookmark_value>"
+msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"More>>\">More>></link>"
+msgstr "<link href=\"text/scalc/01/12090104.xhp\" name=\"More>>\">Dabala>></link>"
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150938\n"
-"227\n"
+"12090104.xhp\n"
+"tit\n"
"help.text"
-msgid "EVEN"
-msgstr "EVEN"
+msgid "Options"
+msgstr "Dirqalaalee"
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149988\n"
-"228\n"
+"12090104.xhp\n"
+"hd_id3149119\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GERADE\">Rounds a positive number up to the next even integer and a negative number down to the next even integer.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GERADE\">Lakkoofsa positiivii hanga intijarii guutuu itti aanuuttii fi lakkoofsa negatiivii gadi gara intijarii guutuu itti aanuutti siqsa.</ahelp>"
+msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"Options\">Options</link>"
+msgstr "<link href=\"text/scalc/01/12090104.xhp\" name=\"Options\">Dirqalaalee</link>"
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3148401\n"
-"229\n"
+"12090104.xhp\n"
+"par_id3147102\n"
+"2\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<variable id=\"zusaetzetext\"><ahelp hid=\"\" visibility=\"visible\">Displays or hides additional filtering options.</ahelp></variable>"
+msgstr "<variable id=\"zusaetzetext\"><ahelp hid=\"\" visibility=\"visible\">Dirqalaalee gingilchaa dabalataa agarsiisa ykn dhoksa.</ahelp></variable>"
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150830\n"
-"230\n"
+"12090104.xhp\n"
+"hd_id3147008\n"
+"3\n"
"help.text"
-msgid "EVEN(Number)"
-msgstr "EVEN(Lakkoofsa)"
+msgid "Options"
+msgstr "Dirqalaalee"
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153350\n"
-"231\n"
+"12090104.xhp\n"
+"hd_id3153662\n"
+"5\n"
"help.text"
-msgid "Returns <emph>Number</emph> rounded to the next even integer up, away from zero."
-msgstr "Lakkoofsa<emph>gara</emph> intijarii guutuutti ol,zero irraa deebisa."
+msgid "Case sensitive"
+msgstr "Qub-suukanaawaa"
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155508\n"
-"232\n"
+"12090104.xhp\n"
+"par_id3145673\n"
+"6\n"
"help.text"
-msgid "Examples"
-msgstr "Fakkeenya"
+msgid "Distinguishes between uppercase and lowercase letters."
+msgstr "Qubeewwan gugudddaa fi xixiqqaa adda baasa."
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154361\n"
-"233\n"
+"12090104.xhp\n"
+"hd_id3156327\n"
+"7\n"
"help.text"
-msgid "<item type=\"input\">=EVEN(2.3)</item> returns 4."
-msgstr "<item type=\"input\">=EVEN(2.3)</item> 4 deebisa."
+msgid "Regular Expression"
+msgstr "Himannoo Idilee"
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8477736\n"
+"12090104.xhp\n"
+"par_id3151245\n"
+"8\n"
"help.text"
-msgid "<item type=\"input\">=EVEN(2)</item> returns 2."
-msgstr "<item type=\"input\">=EVEN(2)</item> 2 deebisa."
+msgid "Allows you to use wildcards in the filter definition."
+msgstr "Hiikaa gingilchaa kessatti turbaawwan abbaalaa akka fayyaadamtu sii heyyama."
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id159611\n"
+"12090104.xhp\n"
+"par_id3147264\n"
+"29\n"
"help.text"
-msgid "<item type=\"input\">=EVEN(0)</item> returns 0."
-msgstr "<item type=\"input\">=EVEN(0)</item> 0 deebisa."
+msgid "If the <emph>Regular Expression</emph> check box is selected, you can use EQUAL (=) and NOT EQUAL (<>) also in comparisons. You can also use the following functions: DCOUNTA, DGET, MATCH, COUNTIF, SUMIF, LOOKUP, VLOOKUP and HLOOKUP."
+msgstr "Yoo sanduuqni filanoo<emph>Himannoo Idilee</emph> filame, wal madalchisuu keessatti EQUAL (=) ykn NOT EQUAL (<>) fayyadamuu dandeessa.Akkssumas fankishinoota: DCOUNTA, DGET, MATCH, COUNTIF, SUMIF, LOOKUP, VLOOKUP and HLOOKUP fayyadamuu dandeessa."
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6097598\n"
+"12090104.xhp\n"
+"hd_id3153379\n"
+"30\n"
"help.text"
-msgid "<item type=\"input\">=EVEN(-0.5)</item> returns -2."
-msgstr "<item type=\"input\">=EVEN(-0.5)</item> -2 deebisa."
+msgid "Unique records only"
+msgstr "Kuusaawwan addataa qofa"
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3147356\n"
+"12090104.xhp\n"
+"par_id3154138\n"
+"31\n"
"help.text"
-msgid "<bookmark_value>GCD function</bookmark_value><bookmark_value>greatest common divisor</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii HWG </bookmark_value><bookmark_value>hirmaataa walii guddicha</bookmark_value>"
+msgid "Excludes duplicate rows in the list of filtered data."
+msgstr "Tarreewwan deetaa gingilfamanii keessaa bayyisuu tarreewwani dhiisa."
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3147356\n"
-"237\n"
+"12090104.xhp\n"
+"hd_id3156282\n"
+"32\n"
"help.text"
-msgid "GCD"
-msgstr "GCD"
+msgid "Data area"
+msgstr "Iddoo deetaa"
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152465\n"
-"238\n"
+"12090104.xhp\n"
+"par_id3150768\n"
+"33\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GGT\">Returns the greatest common divisor of two or more integers.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GGT\">Hirmaataa walii guddicha kan intijaroota lamaa ykn lamaa ol ta'an deebisa.</ahelp>"
+msgid "Displays the name of the filtered data area in the table."
+msgstr "Gabatee keessaa deetaa gingilfamee agarsiisa."
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id2769249\n"
+"12090104.xhp\n"
+"hd_id3156424\n"
+"34\n"
"help.text"
-msgid "The greatest common divisor is the positive largest integer which will divide, without remainder, each of the given integers."
-msgstr "Hirmaataa walii guddichi intijarii posotiivii guddicha kan intijaroota kennaman hundaa haftee malee hiraniidha."
+msgid "More<<"
+msgstr "Dabala<<"
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150643\n"
-"239\n"
+"12090104.xhp\n"
+"par_id3125864\n"
+"35\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Hides the additional options."
+msgstr "Dirqalaalee dabalataa dhoksa."
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154524\n"
-"240\n"
+"12090104.xhp\n"
+"par_id3154011\n"
"help.text"
-msgid "GCD(Integer1; Integer2; ...; Integer30)"
-msgstr "GCD(Intijarii1;Intijarii2;...;Intijarii30)"
+msgid "<link href=\"text/shared/01/02100001.xhp\" name=\"List of Regular Expressions\">List of Regular Expressions</link>"
+msgstr "<link href=\"text/shared/01/02100001.xhp\" name=\"List of Regular Expressions\">Tarree Himannoowwan Idilee</link>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149340\n"
-"241\n"
+"12090105.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Integer1 To 30</emph> are up to 30 integers whose greatest common divisor is to be calculated."
-msgstr "<emph>Intijariin1 haga 30</emph>intijaroota haga 30 jiraniif hirmaataa walii guddaan ni shallagama."
+msgid "Data field"
+msgstr "Dirree Deetaa"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3147317\n"
-"242\n"
+"12090105.xhp\n"
+"bm_id7292397\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<bookmark_value>calculating;pivot table</bookmark_value>"
+msgstr "<bookmark_value>shallaggii;Qinxaa</bookmark_value>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151285\n"
-"243\n"
+"12090105.xhp\n"
+"hd_id3150871\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">=GCD(16;32;24) </item>gives the result 8, because 8 is the largest number that can divide 16, 24 and 32 without a remainder."
-msgstr "<item type=\"input\">=GCD(16;32;24) </item> firii 8 kenna,sababiin isaas 8 lakkoofsa guddaa kan 16, 24 fi 32 haftee malee hiruu danda'uudha."
+msgid "Data field"
+msgstr "Dirree Deetaa"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1604663\n"
+"12090105.xhp\n"
+"par_id3154124\n"
+"16\n"
"help.text"
-msgid "<item type=\"input\">=GCD(B1:B3)</item> where cells B1, B2, B3 contain <item type=\"input\">9</item>, <item type=\"input\">12</item>, <item type=\"input\">9</item> gives 3."
-msgstr "<item type=\"input\">=HWG(B1:B3)</item> iddoo man'eewwan B1, B2, B3 <item type=\"input\">9</item>, <item type=\"input\">12</item> of keessaa qabaniidha , <item type=\"input\">9</item>3 kenna."
+msgid "The contents of this dialog is different for data fields in the <emph>Data</emph> area, and data fields in the <emph>Row</emph> or <emph>Column</emph> area of the <link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table\">Pivot Table</link> dialog."
+msgstr "Qabiyyeewwan qaaqa kanaa dirreewwan deetaa iddoo <emph>Deetaa</emph> keessaa jiranii garagara, bakka dirreewwan deetaa <emph>Tarree</emph> ykn <emph>Tarjaa</emph> qaaqa <link href=\"text/scalc/01/12090102.xhp\" name=\"DataPilot\">Qinxaaa</link> keessatti argamani."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3151221\n"
+"12090105.xhp\n"
+"hd_id3152596\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>GCD_ADD function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii GCD_ADD</bookmark_value>"
+msgid "Subtotals"
+msgstr "Hundamtaa xiqqaa"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3151221\n"
-"677\n"
+"12090105.xhp\n"
+"par_id3151113\n"
+"3\n"
"help.text"
-msgid "GCD_ADD"
-msgstr "GCD_ADD"
+msgid "<ahelp hid=\"HID_SC_PIVOTSUBT\">Specify the subtotals that you want to calculate.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_PIVOTSUBT\">Hundamtaa xiqqaa shallaguu barbaadduu ifteessi.</ahelp>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153257\n"
-"678\n"
+"12090105.xhp\n"
+"hd_id3145366\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_GCD\"> The result is the greatest common divisor of a list of numbers.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_GCD\"> Firiin argamu hirmaataa walii guddicha lakkoofsota tarreeffamanii ta'a.</ahelp>"
+msgid "None"
+msgstr "Homaa"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3147548\n"
-"679\n"
+"12090105.xhp\n"
+"par_id3152576\n"
+"5\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_NONE\">Does not calculate subtotals.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_NONE\">Hundaamtaa xiqqaa hin shallaguu.</ahelp>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156205\n"
-"680\n"
+"12090105.xhp\n"
+"hd_id3154012\n"
+"6\n"
"help.text"
-msgid "GCD_ADD(Number(s))"
-msgstr "GCD_ADD(Lakkoofsa(oota))"
+msgid "Automatic"
+msgstr "Ofumaan"
-#: 04060106.xhp
-#, fuzzy
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145150\n"
-"681\n"
+"12090105.xhp\n"
+"par_id3155856\n"
+"7\n"
"help.text"
-msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
-msgstr "<emph>Lakkoofsi(onni))</emph> lakkoofsota haga 30tti tarreeffamaniidha."
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_AUTO\">Automatically calculates subtotals.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_AUTO\">Hundaamtaa xiqqaa ofumaan shallaga.</ahelp>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150239\n"
-"682\n"
+"12090105.xhp\n"
+"hd_id3155411\n"
+"8\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "User-defined"
+msgstr "Hiika-fayyadamaa"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3159192\n"
-"683\n"
+"12090105.xhp\n"
+"par_id3149581\n"
+"9\n"
"help.text"
-msgid "<item type=\"input\">=GCD_ADD(5;15;25)</item> returns 5."
-msgstr "<item type=\"input\">=GCD_ADD(5;15;25)</item> 5 deebsa."
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_USER\">Select this option, and then click the type of subtotal that you want to calculate in the list.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_USER\">dirqalaalee kana fili,itti ansuun tarree keessaa akaakuu hundaamta xiqqaa shallaguu barbaadduu cuqaasi.</ahelp>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3156048\n"
+"12090105.xhp\n"
+"hd_id3147124\n"
+"10\n"
"help.text"
-msgid "<bookmark_value>ISEVEN function</bookmark_value><bookmark_value>even integers</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii ISEVEN </bookmark_value><bookmark_value>intijarii guutuu</bookmark_value>"
+msgid "Function"
+msgstr "Fankishinii"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3156048\n"
-"245\n"
+"12090105.xhp\n"
+"par_id3154490\n"
+"11\n"
"help.text"
-msgid "ISEVEN"
-msgstr "ISEVEN"
+msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_PIVOTSUBT:LB_FUNC\">Click the type of subtotal that you want to calculate. This option is only available if the <emph>User-defined</emph> option is selected.</ahelp>"
+msgstr "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_PIVOTSUBT:LB_FUNC\">Akaakuu hundamtaa xiqqaa shallaguu barbaadduu cuqaasi.Dirqaalli kun yoo dirqaala <emph>Hiika-fayyadamaa</emph> jedhuu filatte qofa argama.</ahelp>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149169\n"
-"246\n"
+"12090105.xhp\n"
+"hd_id3154944\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ISTGERADE\">Returns TRUE if the value is an even integer, or FALSE if the value is odd.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ISTGERADE\">Yoo gatiin intijarii guutuu ta'e TRUE ,ykn yoo gatiin qara ta'e FALSE deebisa.</ahelp>"
+msgid "Show elements without data"
+msgstr "Miseensota deetaa hin qabne agarsiisi"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3146928\n"
-"247\n"
+"12090105.xhp\n"
+"par_id3149403\n"
+"15\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOTSUBT:CB_SHOWALL\">Includes empty columns and rows in the results table.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOTSUBT:CB_SHOWALL\"> Gabateen firiiwwanii tarjaawwan duwwaa fi tarreewwan duwwaa of keessatti hammata.</ahelp>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151203\n"
-"248\n"
+"12090105.xhp\n"
+"hd_id3149122\n"
+"12\n"
"help.text"
-msgid "ISEVEN(Value)"
-msgstr "ISEVEN(Gatii)"
+msgid "Name:"
+msgstr "Maqaa:"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150491\n"
-"249\n"
+"12090105.xhp\n"
+"par_id3150749\n"
+"13\n"
"help.text"
-msgid "<emph>Value</emph> is the value to be checked."
-msgstr "<emph>Gatiin</emph>gatii mirkanaa'edha."
+msgid "Lists the name of the selected data field."
+msgstr "Maqaa dirree deetaa filatamee tarreessa."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3445844\n"
+"12090105.xhp\n"
+"par_idN106EC\n"
"help.text"
-msgid "If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored."
-msgstr "Yoo gatiin intijarii ta'uu baate,lakkoofsi kamiyyuu tuqaa deesimaaliin boodaa ni hafu.Mallattoon gatiis ni hafa."
+msgid "More"
+msgstr "Dabalaa"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154136\n"
-"250\n"
+"12090105.xhp\n"
+"par_idN106F0\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<ahelp hid=\".\">Expands or reduces the dialog. The <emph>More</emph> button is visible for data fields only.</ahelp>"
+msgstr "<ahelp hid=\".\">Qaaqa bal'isaykn xinneessa.Qaabdoon <emph>Dabala</emph> dirreewwan deetaa qofatti mul'ata.</ahelp>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163813\n"
-"251\n"
+"12090105.xhp\n"
+"par_idN106F3\n"
"help.text"
-msgid "<item type=\"input\">=ISEVEN(48)</item> returns TRUE"
-msgstr "<item type=\"input\">=ISEVEN(48)</item> TRUE deebisa."
+msgid "Options"
+msgstr "Dirqalaalee"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8378856\n"
+"12090105.xhp\n"
+"par_idN106F7\n"
"help.text"
-msgid "<item type=\"input\">=ISEVEN(33)</item> returns FALSE"
-msgstr "<item type=\"input\">=ISEVEN(33)</item> FALSE deebisa."
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/scalc/01/12090106.xhp\">Data Field Options</link> dialog. The <emph>Options</emph> button is visible for column, row, or page fields only.</ahelp>"
+msgstr "<ahelp hid=\".\">Qaaqa <link href=\"text/scalc/01/12090106.xhp\">Dirqalaalee Dirree Deetaa</link>bana.Qaabdoon <emph>dirqalaalee</emph> dirreewwan tarjaa,tarree ykn fulaa qofatti mul'ata.</ahelp>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id7154759\n"
+"12090105.xhp\n"
+"par_idN10708\n"
"help.text"
-msgid "<item type=\"input\">=ISEVEN(0)</item> returns TRUE"
-msgstr "<item type=\"input\">=ISEVEN(0)</item>TRUE deebisa."
+msgid "If the dialog is expanded by the <emph>More</emph> button, the following items are added to the dialog:"
+msgstr "Yoo qaaqni qabdoo <emph>Dabala</emph>tin babal'ate,wantootni armaan gadii qaaqatti dabalamu:"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1912289\n"
+"12090105.xhp\n"
+"par_idN1070B\n"
"help.text"
-msgid "<item type=\"input\">=ISEVEN(-2.1)</item> returns TRUE"
-msgstr "<item type=\"input\">=ISEVEN(-2.1)</item> TRUE deebisa."
+msgid "Displayed value"
+msgstr "Gatii agarsiifamee"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5627307\n"
+"12090105.xhp\n"
+"par_idN1070F\n"
"help.text"
-msgid "<item type=\"input\">=ISEVEN(3.999)</item> returns FALSE"
-msgstr "<item type=\"input\">=ISEVEN(3.999)</item> FALSE deebisa."
+msgid "<ahelp hid=\".\">For each data field, you can select the type of display.</ahelp> For some types you can select additional information for a base field and a base item."
+msgstr "<ahelp hid=\".\">Tokkon tokkoo dirree deetaatif,akaakuu agarsiisaa filuu dandeessa.</ahelp> Akaakuuwwan murtaawoo ta'aniif hundee dirreee fi hundee wantaaf odeeffannoo dabalataa filuu dandeessa."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3156034\n"
+"12090105.xhp\n"
+"par_idN10712\n"
"help.text"
-msgid "<bookmark_value>ISODD function</bookmark_value><bookmark_value>odd integers</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii ISODD</bookmark_value><bookmark_value>intijaroota qaraa</bookmark_value>"
+msgid "Type"
+msgstr "Akaakuu"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3156034\n"
-"255\n"
+"12090105.xhp\n"
+"par_idN10716\n"
"help.text"
-msgid "ISODD"
-msgstr "ISODD"
+msgid "<ahelp hid=\"1495371266\">Select the type of calculating of the displayed value for the data field.</ahelp>"
+msgstr "<ahelp hid=\"1495371266\">Dirree deetaa akaakuu shallaggii gatii agarsiifamee fili.</ahelp>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155910\n"
-"256\n"
+"12090105.xhp\n"
+"par_idN10724\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ISTUNGERADE\">Returns TRUE if the value is odd, or FALSE if the number is even.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ISTUNGERADE\">Yoo gatiin qara ta'e DHUGAA ,ykn yoo lakkoofsi guutuu ta'e SOBA deebisa.</ahelp>"
+msgid "Type"
+msgstr "Akaakuu"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3151006\n"
-"257\n"
+"12090105.xhp\n"
+"par_idN1072A\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Displayed value"
+msgstr "Gatii agarsiifamee"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151375\n"
-"258\n"
+"12090105.xhp\n"
+"par_idN10731\n"
"help.text"
-msgid "ISODD(value)"
-msgstr "ISODD(Gatii)"
+msgid "Normal"
+msgstr "Baratamoo"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155139\n"
-"259\n"
+"12090105.xhp\n"
+"par_idN10737\n"
"help.text"
-msgid "<emph>Value</emph> is the value to be checked."
-msgstr "<emph>Gatiin</emph> gatii mirkanaa'edha."
+msgid "Results are shown unchanged"
+msgstr "Bu'aawwan osoo hin jijjiramiin agarsiifaman"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9027680\n"
+"12090105.xhp\n"
+"par_idN1073E\n"
"help.text"
-msgid "If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored."
-msgstr "Yoo gatiin intijarii ta'uu baate,lakkoofsi kamiyyuu tuqaa deesimaaliin boodaa ni hafu.Mallattoon gatiis ni hafa."
+msgid "Difference from"
+msgstr "Garaagarumma kanarraa"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163723\n"
-"260\n"
+"12090105.xhp\n"
+"par_idN10744\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "From each result, its reference value (see below) is subtracted, and the difference is shown. Totals outside of the base field are shown as empty results."
+msgstr "Bu'aa tokko tokkoo irraa, gatiin wabii isaa(kana gadi ilaali) ni hir'isama, fi garaagarummaan ni agrsiifama. Ida'amtootni hundee dirreetin alaa akka bu'aawwan duwwaatti agrsiifamu."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155345\n"
-"261\n"
+"12090105.xhp\n"
+"par_idN10747\n"
"help.text"
-msgid "<item type=\"input\">=ISODD(33)</item> returns TRUE"
-msgstr "<item type=\"input\">=ISODD(33)</item> TRUE deebisa."
+msgid "<emph>Named item</emph>"
+msgstr "<emph>Wanta moggaasame</emph>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9392986\n"
+"12090105.xhp\n"
+"par_idN1074C\n"
"help.text"
-msgid "<item type=\"input\">=ISODD(48)</item> returns FALSE"
-msgstr "<item type=\"input\">=ISODD(48)</item> FALSE deebisa."
+msgid "If a base item name is specified, the reference value for a combination of field items is the result where the item in the base field is replaced by the specified base item."
+msgstr "Yoo maqaan hundee wantaa ifteesstee,gatiin wabii dirree wantoota walitti makamanii firiin bakka wantii dirree hundee keessaa hundee wantaa ifta'een bakka bu'aamudha"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5971251\n"
+"12090105.xhp\n"
+"par_idN1074F\n"
"help.text"
-msgid "<item type=\"input\">=ISODD(3.999)</item> returns TRUE"
-msgstr "<item type=\"input\">=ISODD(3.999)</item> TRUE deebisa."
+msgid "<emph>Previous item or Next item</emph>"
+msgstr "<emph>Wanta duraanii ykn Wanta itti aanuu</emph>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id4136478\n"
+"12090105.xhp\n"
+"par_idN10754\n"
"help.text"
-msgid "<item type=\"input\">=ISODD(-3.1)</item> returns TRUE"
-msgstr "<item type=\"input\">=ISODD(-3.1)</item> TRUE deebisa."
+msgid "If \"previous item\" or \"next item\" is specified as the base item, the reference value is the result for the next visible member of the base field, in the base field's sort order."
+msgstr "Yoo \"wanti duraanii\" ykn \"wanta itti aanuu\" akka hundee wantaatti ifteessite,hundee dirree durduuba tartiiba qabsiisaa keessatti, gatiin wabii bu'aa miseensa hundee dirree kan itti anuun mul'atuti."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3145213\n"
+"12090105.xhp\n"
+"par_idN1075B\n"
"help.text"
-msgid "<bookmark_value>LCM function</bookmark_value><bookmark_value>least common multiples</bookmark_value><bookmark_value>lowest common multiples</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii LCM</bookmark_value><bookmark_value>Hiramaa walii xiqqicha</bookmark_value><bookmark_value>Hiramaa walii xiqqicha</bookmark_value>"
+msgid "% Of"
+msgstr "% tii"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145213\n"
-"265\n"
+"12090105.xhp\n"
+"par_idN10761\n"
"help.text"
-msgid "LCM"
-msgstr "LCM"
+msgid "Each result is divided by its reference value. The reference value is determined in the same way as for \"Difference from\". Totals outside of the base field are shown as empty results."
+msgstr "Tokko tokkoo firii gatii wabii isaatiin hiramaa.Gatiin wabii akkumaa \"Garaagarumma kanarraa\" tin tilmaamaama.Ida'amtoonni hundee dirree tiin alaa akkaa bu'aawwaan duwwaatti mul'atu."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3146814\n"
-"266\n"
+"12090105.xhp\n"
+"par_idN1076A\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KGV\">Returns the least common multiple of one or more integers.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KGV\">Hirmaataa walii guddicha kan intijaroota lamaa ykn lamaa ol ta'an deebisa.</ahelp>"
+msgid "% Difference from"
+msgstr "% Garaagarumma kanarraa"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3148632\n"
-"267\n"
+"12090105.xhp\n"
+"par_idN10770\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "From each result, its reference value is subtracted, and the difference is divided by the reference value. The reference value is determined in the same way as for \"Difference from\". Totals outside of the base field are shown as empty results."
+msgstr "Tokko tokkoo firiif, gatiin wabii isaa irra hir'isuudhaan isaa hir'aatee kana immoo gatii wabitiif hiruudha.Gatiin wabii akkumaa \"Garaagarumma kanarraa\" tin tilmaamaama.Ida'amtoonni hundee dirree tiin alaa akkaa bu'aawwaan duwwaatti mul'atu."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147279\n"
-"268\n"
+"12090105.xhp\n"
+"par_idN10777\n"
"help.text"
-msgid "LCM(Integer1; Integer2; ...; Integer30)"
-msgstr "LCM(Intijarii1;Intijarii2;...;Intijarii30)"
+msgid "Running total in"
+msgstr "Waliigala kaasuu keessatti"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156348\n"
-"269\n"
+"12090105.xhp\n"
+"par_idN1077D\n"
"help.text"
-msgid "<emph>Integer1 to 30</emph> are up to 30 integers whose lowest common multiple is to be calculated."
-msgstr "<emph>Intijariin1 haga 30</emph>intijaroota haga 30 jiraniif hirmaataa walii guddaan ni shallagama."
+msgid "Each result is added to the sum of the results for preceding items in the base field, in the base field's sort order, and the total sum is shown."
+msgstr "Hundee dirree keessatti tokko tokkoon bu'aa ida'amaa bu'aawwaan wanta duraa irratti ida'amu, hundee dirree keessatti Durduubni Tartiiba Qabiinsaa, fi ida'aamni walii galaa agarsiifama."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3156431\n"
-"270\n"
+"12090105.xhp\n"
+"par_idN10780\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Results are always summed, even if a different summary function was used to get each result."
+msgstr "Tokko tokkoon bu'aa argachuuf yoo fankishinii ida'amaa garaagaraa fayyadamuullee, bu'aawwaan yeroo hundaa ni ida'amu."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154914\n"
-"271\n"
+"12090105.xhp\n"
+"par_idN10787\n"
"help.text"
-msgid "If you enter the numbers <item type=\"input\">512</item>;<item type=\"input\">1024</item> and <item type=\"input\">2000</item> in the Integer 1;2 and 3 text boxes, 128000 will be returned as the result."
-msgstr "Yoo lakkoofsota <item type=\"input\">512</item>;<item type=\"input\">1024</item> fi <item type=\"input\">2000</item> intijarii 1;2 fi 3 sanduuqa barruu, 128000 akka firiitti deebi'a."
+msgid "% of row"
+msgstr "% tii tarree"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3154230\n"
+"12090105.xhp\n"
+"par_idN1078D\n"
"help.text"
-msgid "<bookmark_value>LCM_ADD function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii HWX_ADD </bookmark_value>"
+msgid "Each result is divided by the total result for its row in the pivot table. If there are several data fields, the total for the result's data field is used. If there are subtotals with manually selected summary functions, the total with the data field's summary function is still used."
+msgstr "Tokko tokkoon bu'aa, ida'amaa bu'aa taree gabatee qinxaa keessatiif hiramu.Yoo dirreewwan deetaa garagaraa jiraatan,walii galli dirree deetaaf ni fayyada.Yoo hunduumta xiqqa ida'amaa fankishinoota hujeekan filamee,walii galli ida'aan fankishinii dirree deetaa ammaas ni fayyada."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154230\n"
-"684\n"
+"12090105.xhp\n"
+"par_idN10794\n"
"help.text"
-msgid "LCM_ADD"
-msgstr "LCM_ADD"
+msgid "% of column"
+msgstr "% tii tarjaa"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149036\n"
-"685\n"
+"12090105.xhp\n"
+"par_idN1079A\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_LCM\"> The result is the lowest common multiple of a list of numbers.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_LCM\"> Firiin argamu hiramaa walii xiqqicha lakkoofsota tarreeffamanii ta'a.</ahelp>"
+msgid "Same as \"% of row\", but the total for the result's column is used."
+msgstr "Akkuma \"% tii tarree\"ti,garuu walii galli bu'aa tarjaa ni fayyada."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153132\n"
-"686\n"
+"12090105.xhp\n"
+"par_idN107A1\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "% of total"
+msgstr "% tii walii galaa"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154395\n"
-"687\n"
+"12090105.xhp\n"
+"par_idN107A7\n"
"help.text"
-msgid "LCM_ADD(Number(s))"
-msgstr "LCM_ADD(Lakkoofsa(oota))"
+msgid "Same as \"% of row\", but the grand total for the result's data field is used."
+msgstr "Akkuma \"% tii tarree\"ti,garuu dabaltoo dunneettii bu'aa dirre deetaa ni fayyadama."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147377\n"
-"688\n"
+"12090105.xhp\n"
+"par_idN107AE\n"
"help.text"
-msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
-msgstr "<emph>Lakkoofsi(oonni)</emph> lakkoofsota haga 30 tti tarreeffamaniidha."
+msgid "Index"
+msgstr "Kasaa"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145122\n"
-"689\n"
+"12090105.xhp\n"
+"par_idN107B4\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "The row and column totals and the grand total, following the same rules as above, are used to calculate the following expression:"
+msgstr "Dunneettiin tarjaa, tarree fi dabaltoo, akkuuma seera armaan olii hordoofun, himannoo armaan gadii shallaguuf oola."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145135\n"
-"690\n"
+"12090105.xhp\n"
+"par_idN107B7\n"
"help.text"
-msgid "<item type=\"input\">=LCM_ADD(5;15;25)</item> returns 75."
-msgstr "<item type=\"input\">=HWX_ADD(5;15;25)</item> 75 deebisa."
+msgid "( original result * grand total ) / ( row total * column total )"
+msgstr "(bu'aa kan bu'uuraa*dabaltoo duneeetti)/(tarree duneetti*tarjaa duneetti)"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3155802\n"
+"12090105.xhp\n"
+"par_idN107BA\n"
"help.text"
-msgid "<bookmark_value>COMBIN function</bookmark_value><bookmark_value>number of combinations</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii COMBIN </bookmark_value><bookmark_value>lakkoofsa makaa</bookmark_value>"
+msgid "Base field"
+msgstr "Dirree Deetaa"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155802\n"
-"273\n"
+"12090105.xhp\n"
+"par_idN107BE\n"
"help.text"
-msgid "COMBIN"
-msgstr "COMBIN"
+msgid "<ahelp hid=\"1495371267\">Select the field from which the respective value is taken as base for the calculation.</ahelp>"
+msgstr "<ahelp hid=\"1495371267\">Dirree gatiin akka gatii hundee shallaggiitti oolu fili.</ahelp>"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156172\n"
-"274\n"
+"12090105.xhp\n"
+"par_idN107C1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KOMBINATIONEN\">Returns the number of combinations for elements without repetition.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KOMBINATIONEN\">lakkoofsa makaa tuutaaf osoo irra hin deebi'ini deebisa.</ahelp>"
+msgid "Base item"
+msgstr "Wanta hundee"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3156193\n"
-"275\n"
+"12090105.xhp\n"
+"par_idN107C5\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\"1495371268\">Select the item of the base field from which the respective value is taken as base for the calculation.</ahelp>"
+msgstr "<ahelp hid=\"1495371268\">Wanta huundee dirreewwanii gatiin akka gatii hundee shallaggiitti oolu fili.</ahelp>"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150223\n"
-"276\n"
+"12090106.xhp\n"
+"tit\n"
"help.text"
-msgid "COMBIN(Count1; Count2)"
-msgstr "COMBIN(Lakkaawwii1; Lakkaawwii2)"
+msgid "Data Field Options"
+msgstr "Dirqalaalee Dirree Deetaa"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150313\n"
-"277\n"
+"12090106.xhp\n"
+"bm_id711386\n"
"help.text"
-msgid "<emph>Count1</emph> is the number of items in the set."
-msgstr "<emph>Lakkaawwiin1</emph> lakkoofsa maalimaa tuutaa keessati."
+msgid "<bookmark_value>hiding;data fields, from calculations in pivot table</bookmark_value><bookmark_value>display options in pivot table</bookmark_value><bookmark_value>sorting;options in pivot table</bookmark_value><bookmark_value>data field options for pivot table</bookmark_value>"
+msgstr "<bookmark_value>dhoksu;dirreewwan deetaa,shallagiiwwan qinxaa keessaaf</bookmark_value><bookmark_value>dirqalaalee qinxaa keessaa agarsiisi</bookmark_value><bookmark_value>foo'uu;dirqalaalee qiinxaa keessaa</bookmark_value><bookmark_value>Qinxaaf dirqalaalee dirree deetaa</bookmark_value>"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153830\n"
-"278\n"
+"12090106.xhp\n"
+"par_idN10542\n"
"help.text"
-msgid "<emph>Count2</emph> is the number of items to choose from the set."
-msgstr "<emph>Lakkaawwii2</emph> lakkoofsa maalimaa tuuta irraa filamuudha."
+msgid "Data Field Options"
+msgstr "Dirqalaalee Dirree Deetaa"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6807458\n"
+"12090106.xhp\n"
+"par_idN10546\n"
"help.text"
-msgid "COMBIN returns the number of ordered ways to choose these items. For example if there are 3 items A, B and C in a set, you can choose 2 items in 3 different ways, namely AB, AC and BC."
-msgstr "COMBIN lakkoofsa karaa maamila filachuuf ta'u deebisa. Fakkeenyaaf, yoo maalimoonni 3 A, B fi C tuuta keessa jiraatan, maalimoota 2 karaa adda addaa 3 filachuu dandeessa, isaanis AB, AC fi BC dha."
+msgid "You can specify additional options for column, row, and page data fields in the <link href=\"text/scalc/01/12090105.xhp\">pivot table</link>."
+msgstr "<link href=\"text/scalc/01/12090105.xhp\">qinxaa</link>keessatti tarjaa,tarree fi fuula deetaa dirreef dirqalaalee dabalataa ifteessuu dandeessa."
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id7414471\n"
+"12090106.xhp\n"
+"par_idN10557\n"
"help.text"
-msgid "COMBIN implements the formula: Count1!/(Count2!*(Count1-Count2)!)"
-msgstr "COMBIN foormulaa hojjoomuu: lakkaawwii1!/(lakkaawwii2!*(lakkaawwii1-lakkaawwii2)!)"
+msgid "Sort by"
+msgstr "Ittiin tartiiba qabsiisi"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153171\n"
-"279\n"
+"12090106.xhp\n"
+"par_idN1055B\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<ahelp hid=\"1495387653\">Select the data field that you want to sort columns or rows by.</ahelp>"
+msgstr "<ahelp hid=\"1495387653\">Kan deetaa dirree ittiin tarjaawwan ykn tarreewwan isaanii ittiin tartiiba qabsiisnu barbaadduu fili.</ahelp>"
-#: 04060106.xhp
+#: 12090106.xhp
+#, fuzzy
msgctxt ""
-"04060106.xhp\n"
-"par_id3153517\n"
-"280\n"
+"12090106.xhp\n"
+"par_idN1055E\n"
"help.text"
-msgid "<item type=\"input\">=COMBIN(3;2)</item> returns 3."
-msgstr "<item type=\"input\">=COMBIN(3;2)</item> 3 deebisa."
+msgid "Ascending"
+msgstr "#-#-#-#-# autopi.po (PACKAGE VERSION) #-#-#-#-#\\nDabaluu\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nOlee"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3150284\n"
+"12090106.xhp\n"
+"par_idN10562\n"
"help.text"
-msgid "<bookmark_value>COMBINA function</bookmark_value><bookmark_value>number of combinations with repetitions</bookmark_value>"
-msgstr "<bookmark_value>faankishinii COMBINA</bookmark_value><bookmark_value>lakkoofsa makaa irra deddeebii wajjin</bookmark_value>"
+msgid "<ahelp hid=\"1495384580\">Sorts the values from the lowest value to the highest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
+msgstr "<ahelp hid=\"1495384580\">Gatiwwaan gatii gadaantii irraa garaa gatii ol'aantootti tartiiba qabsiisa.Yoo dirreen filamee kun dirree qaaqni isaa banamee, wantootni maqaadhaan tartiiba qabatuu.Yoo dirreen deetaa filame,gatiin dhumaa dirree deetaa filamen,tartibaa qabata.</ahelp>"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150284\n"
-"282\n"
+"12090106.xhp\n"
+"par_idN10565\n"
"help.text"
-msgid "COMBINA"
-msgstr "COMBINA"
+msgid "Descending"
+msgstr "Gadee"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157894\n"
-"283\n"
+"12090106.xhp\n"
+"par_idN10569\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KOMBINATIONEN2\">Returns the number of combinations of a subset of items including repetitions.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KOMBINATIONEN2\">Lakkoofsa makaa maalimaa cita tuutaa irra deebii dabalatee deebisa.</ahelp>"
+msgid "<ahelp hid=\"1495384581\">Sorts the values descending from the highest value to the lowest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
+msgstr "<ahelp hid=\"1495384581\">Gatiiwwan gadee gatii olaantoo irraa gara gatii gadaantitti tartiiba qabsiisa.Yoo dirreen filamee kun dirree qaaqni isaa banamee, wantootni maqaadhaan tartiiba qabatuu.Yoo dirreen deetaa filame,gatiin dhumaa dirree deetaa filamen,tartibaa qabata.</ahelp>"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145752\n"
-"284\n"
+"12090106.xhp\n"
+"par_idN1056C\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Manual"
+msgstr "Hujeeka"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145765\n"
-"285\n"
+"12090106.xhp\n"
+"par_idN10570\n"
"help.text"
-msgid "COMBINA(Count1; Count2)"
-msgstr "COMBINA(Lakkaawwii1;Lakkaawwii2)"
+msgid "<ahelp hid=\"1495384582\">Sorts values alphabetically.</ahelp>"
+msgstr "<ahelp hid=\"1495384582\">Gatiiwwan tartiibaan fo'a.</ahelp>"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153372\n"
-"286\n"
+"12090106.xhp\n"
+"par_idN10585\n"
"help.text"
-msgid "<emph>Count1</emph> is the number of items in the set."
-msgstr "<emph>Lakkaawwiin1</emph> lakkoofsa maalimaa tuuta keessati."
+msgid "Display options"
+msgstr "Dirqalaalee agarsiisa"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155544\n"
-"287\n"
+"12090106.xhp\n"
+"par_idN10589\n"
"help.text"
-msgid "<emph>Count2</emph> is the number of items to choose from the set."
-msgstr "<emph>Lakkaawwii2</emph> lakkoofsa maalimaa tuuta keessaa filamuudha. is the number of items to choose from the set."
+msgid "You can specify the display options for all row fields except for the last, innermost row field."
+msgstr "Dirree tarree keessa irraa kan hafee, dirreewwan tarree hundaaf dirqalaalee agarsiisaa ifteessuu dandeessa."
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1997131\n"
+"12090106.xhp\n"
+"par_idN1058C\n"
"help.text"
-msgid "COMBINA returns the number of unique ways to choose these items, where the order of choosing is irrelevant, and repetition of items is allowed. For example if there are 3 items A, B and C in a set, you can choose 2 items in 6 different ways, namely AA, AB, AC, BB, BC and CC."
-msgstr "COMBINA lakkoofsa karaa maalimoota kana filatu, iddoo tartiibni filachuu barbaachisu deebisa, achiin irradeebiin maalimoota ni eyyamama. Fakkeenyaf, yoo maalimoonni 3 A, B fi Cn tuuta keessa jiratan, maalimoota 2 karaa adda addaa 6 filachuu dandeessa, isaanis AB, BA, AC, CA, BC fi CB dha."
+msgid "Layout"
+msgstr "Teessuma"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id2052064\n"
+"12090106.xhp\n"
+"par_idN10590\n"
"help.text"
-msgid "COMBINA implements the formula: (Count1+Count2-1)! / (Count2!(Count1-1)!)"
-msgstr "COMBINA foormulaa hojjoomuu: (lakkaawwii1+lakkaawwii2-1)! /(lakkaawwii2! (lakkaawwii1-1)!)"
+msgid "<ahelp hid=\"1495387654\">Select the layout mode for the field in the list box.</ahelp>"
+msgstr "<ahelp hid=\"1495387654\">Dirree sanduuqa tarree keessattiif halaata teessumaa fili.</ahelp>"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154584\n"
-"288\n"
+"12090106.xhp\n"
+"par_idN10593\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Empty line after each item"
+msgstr "Sarara duwwaa tokko tokkoo wantaa booda"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152904\n"
-"289\n"
+"12090106.xhp\n"
+"par_idN10597\n"
"help.text"
-msgid "<item type=\"input\">=COMBINA(3;2)</item> returns 6."
-msgstr "<item type=\"input\">=COMBINA(3;2)</item> 6 deebisa."
+msgid "<ahelp hid=\"1495385090\">Adds an empty row after the data for each item in the pivot table.</ahelp>"
+msgstr "<ahelp hid=\"1495385090\">Tokko tokko wantaa gabatee qinxaa keessaatiif,deetaa booda tarree duwwaa dabalii.</ahelp>"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3156086\n"
+"12090106.xhp\n"
+"par_idN1059A\n"
"help.text"
-msgid "<bookmark_value>TRUNC function</bookmark_value><bookmark_value>decimal places;cutting off</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii TRUNC </bookmark_value><bookmark_value>iddoo deesimaalii;muruu</bookmark_value>"
+msgid "Show automatically"
+msgstr "Ofuuman agarsiisi"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3156086\n"
-"291\n"
+"12090106.xhp\n"
+"par_idN1059E\n"
"help.text"
-msgid "TRUNC"
-msgstr "TRUNC"
+msgid "Displays the top or bottom nn items when you sort by a specified field."
+msgstr "Yommuu dirreen iftaayee,toora qabsiiftuun nn wantaa gubbaa fi jalaa agarsiisa."
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157866\n"
-"292\n"
+"12090106.xhp\n"
+"par_idN105A1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KUERZEN\">Truncates a number by removing decimal places.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KUERZEN\">Iddoo deesimaalii irraa kutuudhaan lakkoofsa gabaabsa.</ahelp>"
+msgid "Show"
+msgstr "Mul'isi"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3148499\n"
-"293\n"
+"12090106.xhp\n"
+"par_idN105A5\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\"1495385091\">Turns on the automatic show feature.</ahelp>"
+msgstr "<ahelp hid=\"1495385091\">Ofumaan agarsiisaa amalaa bana.</ahelp>"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148511\n"
-"294\n"
+"12090106.xhp\n"
+"par_idN105A8\n"
"help.text"
-msgid "TRUNC(Number; Count)"
-msgstr "TRUNC(Lakkoofsa;lakkaa'uu)"
+msgid "items"
+msgstr "wantoota"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150796\n"
-"295\n"
+"12090106.xhp\n"
+"par_idN105AC\n"
"help.text"
-msgid "Returns <emph>Number</emph> with at most <emph>Count</emph> decimal places. Excess decimal places are simply removed, irrespective of sign."
-msgstr "Lakkoofsa<emph>iddoo deesimaalii</emph> isa guddaa<emph>lakkaa'u</emph> deebisa.Iddoon deesimaalaa irra darbaan mallattoo osoo ilaalcha keessa hin galchin calisee murama."
+msgid "<ahelp hid=\"1495390209\">Enter the maximum number of items that you want to show automatically.</ahelp>"
+msgstr "<ahelp hid=\"1495390209\">Lakkoofsa ol'aantoo wantootaa ofuumaan akka agarsiisuu barbaadduu galchi.</ahelp>"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150816\n"
-"296\n"
+"12090106.xhp\n"
+"par_idN105AF\n"
"help.text"
-msgid "<item type=\"literal\">TRUNC(Number; 0)</item> behaves as <item type=\"literal\">INT(Number)</item> for positive numbers, but effectively rounds towards zero for negative numbers."
-msgstr "<item type=\"literal\">TRUNC(Lakkoofsa; 0)</item> lakkoofsota posotiiviitiif akka <item type=\"literal\">INT(Lakkoofsa)</item> bakka bu'a,garuu lakkoofsota negatiiviitiif haala gaariin gara zeerootti siqa."
+msgid "From"
+msgstr "Irraa"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148548\n"
-"557\n"
+"12090106.xhp\n"
+"par_idN105B3\n"
"help.text"
-msgid "The <emph>visible</emph> decimal places of the result are specified in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - Calculate</link>."
-msgstr ""
+msgid "<ahelp hid=\"1495387655\">Shows the top or bottom items in the specified sort order.</ahelp>"
+msgstr "<ahelp hid=\"1495387655\">Tartiiba qabsiisaa iftaa'een gubbaa fi jalaa wantootaa agarsiisa.</ahelp>"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152555\n"
-"297\n"
+"12090106.xhp\n"
+"par_idN105B6\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Using field"
+msgstr "Dirree gargaaraamuun"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152569\n"
-"298\n"
+"12090106.xhp\n"
+"par_idN105BA\n"
"help.text"
-msgid "<item type=\"input\">=TRUNC(1.239;2)</item> returns 1.23. The 9 is lost."
-msgstr "<item type=\"input\">=TRUNC(1.239;2)</item> 1.23 deebisa.9 ni bada."
+msgid "<ahelp hid=\"1495387656\">Select the data field that you want to sort the data by.</ahelp>"
+msgstr "<ahelp hid=\"1495387656\">Kan deetaa barbaaddu ittiin tartiiba qabsiistuu dirree deetaa fili.</ahelp>"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id7050080\n"
+"12090106.xhp\n"
+"par_idN105BD\n"
"help.text"
-msgid "<item type=\"input\">=TRUNC(-1.234999;3)</item> returns -1.234. All the 9s are lost."
-msgstr "<item type=\"input\">=TRUNC(-1.234999;3)</item> -1.234 deebisa.Lakkoofsi 9 hunduu ni badu."
+msgid "Hide items"
+msgstr "Wantoota dhoksuun"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3153601\n"
+"12090106.xhp\n"
+"par_idN105C1\n"
"help.text"
-msgid "<bookmark_value>LN function</bookmark_value><bookmark_value>natural logarithm</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii LN</bookmark_value><bookmark_value>logaarizimii uumamaa</bookmark_value>"
+msgid "<ahelp hid=\"59010\">Select the items that you want to hide from the calculations.</ahelp>"
+msgstr "<ahelp hid=\"59010\">Shallagiiwwaan wantoota keessaa dhoksuu barbaadde fili.</ahelp>"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153601\n"
-"301\n"
+"12090106.xhp\n"
+"par_idN105C4\n"
"help.text"
-msgid "LN"
-msgstr "LN"
+msgid "Hierarchy"
+msgstr "Sadarkaa"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154974\n"
-"302\n"
+"12090106.xhp\n"
+"par_idN105C8\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_LN\">Returns the natural logarithm based on the constant e of a number.</ahelp> The constant e has a value of approximately 2.71828182845904."
-msgstr "<ahelp hid=\"HID_FUNC_LN\">Lakkoofsa dhaabataa e irratti hundaa'udhaan logaarizimii uumamaa deebisa.</ahelp> e dhaabataa tilmaamaa gatii 2.71828182845904 qaba."
+msgid "<ahelp hid=\"1495387657\">Select the hierarchy that you want to use. The pivot table must be based on an external source data that contains data hierarchies.</ahelp>"
+msgstr "<ahelp hid=\"1495387657\">Sadarkaa fayyadamuu barbaaddu fili.Gabateen qinxaa deetaa madda alaa kan sadarkaawwan of keessa qabanii irratti hunda'u qaba</ahelp>"
-#: 04060106.xhp
+#: 12090200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154993\n"
-"303\n"
+"12090200.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Refresh"
+msgstr "Haroomsi"
-#: 04060106.xhp
+#: 12090200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155284\n"
-"304\n"
+"12090200.xhp\n"
+"hd_id3151385\n"
+"1\n"
"help.text"
-msgid "LN(Number)"
-msgstr "LN(Lakkoofsa)"
+msgid "<link href=\"text/scalc/01/12090200.xhp\" name=\"Refresh\">Refresh</link>"
+msgstr "<link href=\"text/scalc/01/12090200.xhp\" name=\"Refresh\">Haroomsi</link>"
-#: 04060106.xhp
+#: 12090200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155297\n"
-"305\n"
+"12090200.xhp\n"
+"par_id3149456\n"
+"2\n"
"help.text"
-msgid "<emph>Number</emph> is the value whose natural logarithm is to be calculated."
-msgstr "<emph>Lakkoofsi</emph> gatii logaarizimiin uumamaa shallagamuudha."
+msgid "<ahelp hid=\".uno:RecalcPivotTable\">Updates the pivot table.</ahelp>"
+msgstr "<ahelp hid=\".uno:RecalcPivotTable\">Gabatee qinxaa haroomsa.</ahelp>"
-#: 04060106.xhp
+#: 12090200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153852\n"
-"306\n"
+"12090200.xhp\n"
+"par_id3150400\n"
+"3\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "After you import an Excel spreadsheet that contains a pivot table, click in the table, and then choose <emph>Data - Pivot Table - Refresh</emph>."
+msgstr "Erga barruu eekseeli isaa gabatee qinxaa qabatee alaagdee booda, gabatee keessa cuqaasun<emph>Deetaa- qinxaa-Haroomsi</emph>filadhu."
-#: 04060106.xhp
+#: 12090300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153866\n"
-"307\n"
+"12090300.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=LN(3)</item> returns the natural logarithm of 3 (approximately 1.0986)."
-msgstr "<item type=\"input\">=LN(3)</item> logaarizimii uumaamaa kan 3 tilmaamaan 1.0986 ta'a."
+msgid "Delete"
+msgstr "Haqi"
-#: 04060106.xhp
+#: 12090300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5747245\n"
+"12090300.xhp\n"
+"hd_id3150276\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">=LN(EXP(321))</item> returns 321."
-msgstr "<item type=\"input\">=LN(EXP(321))</item>321 deebisa."
+msgid "<link href=\"text/scalc/01/12090300.xhp\" name=\"Delete\">Delete</link>"
+msgstr "<link href=\"text/scalc/01/12090300.xhp\" name=\"Delete\">Haqi</link>"
-#: 04060106.xhp
+#: 12090300.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3109813\n"
+"12090300.xhp\n"
+"par_id3159400\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>LOG function</bookmark_value><bookmark_value>logarithms</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii LOG </bookmark_value><bookmark_value>loogaariizimii</bookmark_value>"
+msgid "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Deletes the selected pivot table.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Gabatee qinxaa filaatamoo haqa.</ahelp>"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3109813\n"
-"311\n"
+"12090400.xhp\n"
+"tit\n"
"help.text"
-msgid "LOG"
-msgstr "LOG"
+msgid "Grouping"
+msgstr "Gurmeessuu"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3109841\n"
-"312\n"
+"12090400.xhp\n"
+"par_idN1054D\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_LOG\">Returns the logarithm of a number to the specified base.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_LOG\">Logaarizimii lakkoofsaa gara beezii beekamaatti deebisa.</ahelp>"
+msgid "Grouping"
+msgstr "Gurmeessuu"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144719\n"
-"313\n"
+"12090400.xhp\n"
+"par_idN10551\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Grouping pivot tables displays the <emph>Grouping</emph> dialog for either values or dates."
+msgstr "Aduuwwaan ykn gatiwwaaniif gabateewwaan qinxaa gurmeessuun qaaqa <emph>Gurmeessuu</emph>jedhu agarsiisa."
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144732\n"
-"314\n"
+"12090400.xhp\n"
+"par_idN10568\n"
"help.text"
-msgid "LOG(Number; Base)"
-msgstr "LOG(Lakkoofsa;Beezii)"
+msgid "Start"
+msgstr "Eegala"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144746\n"
-"315\n"
+"12090400.xhp\n"
+"par_idN1056C\n"
"help.text"
-msgid "<emph>Number</emph> is the value whose logarithm is to be calculated."
-msgstr "<emph>Lakkoofsi</emph> gatii logaarizimiin uumamaa shallagamuudha."
+msgid "Specifies the start of the grouping."
+msgstr "Jalqaba gurmeessuu ifteessa."
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152840\n"
-"316\n"
+"12090400.xhp\n"
+"par_idN1056F\n"
"help.text"
-msgid "<emph>Base</emph> (optional) is the base for the logarithm calculation. If omitted, Base 10 is assumed."
-msgstr "<emph>Beeziin</emph> beezii logaariizimii shallaguudhaaf ta'uudha. Yoo dhiifame, Baazii 10 yaadama."
+msgid "Automatically"
+msgstr "Ofumaan"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152860\n"
-"317\n"
+"12090400.xhp\n"
+"par_idN10573\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Specifies whether to start grouping at the smallest value."
+msgstr "Gurmeessuun akka gatii isa xiqqaa irraa eegaluu ifteessa."
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154429\n"
-"318\n"
+"12090400.xhp\n"
+"par_idN10576\n"
"help.text"
-msgid "<item type=\"input\">=LOG(10;3)</item> returns the logarithm to base 3 of 10 (approximately 2.0959)."
-msgstr "<item type=\"input\">=LOG(10;3)</item> logaariizimii gara beezii 3 kan 10 (tilmaamaan 2.0959) deebisa."
+msgid "Manually at"
+msgstr "Hujeekaan bakka"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5577562\n"
+"12090400.xhp\n"
+"par_idN1057A\n"
"help.text"
-msgid "<item type=\"input\">=LOG(7^4;7)</item> returns 4."
-msgstr "<item type=\"input\">=LOG(7^4;7)</item> 4 deebsa."
+msgid "Specifies whether to enter the start value for grouping yourself."
+msgstr "Akkaa gatii eegala gurmeessuu matakee galchitu ifteessa."
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3154187\n"
+"12090400.xhp\n"
+"par_idN1057D\n"
"help.text"
-msgid "<bookmark_value>LOG10 function</bookmark_value><bookmark_value>base-10 logarithm</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii LOG10 </bookmark_value><bookmark_value>logaarizimii beezii-10 </bookmark_value>"
+msgid "End"
+msgstr "Xumura"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154187\n"
-"322\n"
+"12090400.xhp\n"
+"par_idN10581\n"
"help.text"
-msgid "LOG10"
-msgstr "LOG10"
+msgid "Specifies the end of the grouping."
+msgstr "Jalqaba gurmeessuu ifteessa."
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155476\n"
-"323\n"
+"12090400.xhp\n"
+"par_idN10584\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_LOG10\">Returns the base-10 logarithm of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_LOG10\">lakkoofsaa logaarizimii beezii-10 deebisa.</ahelp>"
+msgid "Automatically"
+msgstr "Ofumaan"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155494\n"
-"324\n"
+"12090400.xhp\n"
+"par_idN10588\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Specifies whether to end grouping at the largest value."
+msgstr "Gurmeessuun akka gatii isa guddaa irraatti xumuuramu ifteessa."
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3159294\n"
-"325\n"
+"12090400.xhp\n"
+"par_idN1058B\n"
"help.text"
-msgid "LOG10(Number)"
-msgstr "LOG10(Lakkoofsa)"
+msgid "Manually at"
+msgstr "Hujeekaan bakka"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3159308\n"
-"326\n"
+"12090400.xhp\n"
+"par_idN1058F\n"
"help.text"
-msgid "Returns the logarithm to base 10 of <emph>Number</emph>."
-msgstr "Logaarizimii gara lakkoofsa beezii-10 <emph> ti deebisa</emph>."
+msgid "Specifies whether to enter the end value for grouping yourself."
+msgstr "Akkaa gatii xumura gurmeessuu matakee galchitu ifteessa."
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3159328\n"
-"327\n"
+"12090400.xhp\n"
+"par_idN10592\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Group by"
+msgstr "Gurmeessi kanaan"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157916\n"
-"328\n"
+"12090400.xhp\n"
+"par_idN10596\n"
"help.text"
-msgid "<item type=\"input\">=LOG10(5)</item> returns the base-10 logarithm of 5 (approximately 0.69897)."
-msgstr "<item type=\"input\">=LOG10(5)</item> logaarizimii 5 beezii-10 tilmaamaan 0.69897 deebisa."
+msgid "Specifies the value range by which every group's limits are calculated."
+msgstr "Tokko tokkoon dangaan gurmuu akkataa itti shallagamu gatii hangii ifteessa."
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3152518\n"
+"12090400.xhp\n"
+"par_idN10599\n"
"help.text"
-msgid "<bookmark_value>CEILING function</bookmark_value><bookmark_value>rounding;up to multiples of significance</bookmark_value>"
-msgstr "<bookmark_value>faankishinii CEILING </bookmark_value><bookmark_value>siiqsuu;haga hirmaannee siignifikaantii</bookmark_value>"
+msgid "Number of days"
+msgstr "Lakkoofsa guyyoota"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152518\n"
-"332\n"
+"12090400.xhp\n"
+"par_idN1059D\n"
"help.text"
-msgid "CEILING"
-msgstr "CEILING"
+msgid "In the case of grouping date values, specifies the number of days to group by."
+msgstr "Yommuu gatii aduu gurmeessinu lakkoofsa guyyoota gurmeessan ifteessa."
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153422\n"
-"558\n"
+"12090400.xhp\n"
+"par_idN105A0\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_OBERGRENZE\">Rounds a number up to the nearest multiple of Significance.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_OBERGRENZE\">Lakkoofsa haga hirmaannee siignifikaantii itti dhinootti siqsa.</ahelp>"
+msgid "Intervals"
+msgstr "Giddu'u"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153440\n"
-"334\n"
+"12090400.xhp\n"
+"par_idN105A4\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "In the case of grouping date values, specifies the intervals to group by."
+msgstr "Yommuu gatii aduu gurmeessinu giddu'u gurmeessa kamii akka ta'e ifteessa."
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153454\n"
-"335\n"
+"12090400.xhp\n"
+"par_idN105B2\n"
"help.text"
-msgid "CEILING(Number; Significance; Mode)"
-msgstr "CEILING(Lakkoofsa;siignifikaantii;Moodii)"
+msgid "<embedvar href=\"text/scalc/guide/datapilot_grouping.xhp#datapilot_grouping\"/>"
+msgstr "<embedvar href=\"text/scalc/guide/datapilot_grouping.xhp#datapilot_grouping\"/>"
-#: 04060106.xhp
+#: 12100000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153467\n"
-"336\n"
+"12100000.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Number</emph> is the number that is to be rounded up."
-msgstr "<emph>Lakkoofsi</emph> lakkoofsa ol siiqfamuudha."
+msgid "Refresh Range"
+msgstr "Hangii haroomsi"
-#: 04060106.xhp
+#: 12100000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155000\n"
-"337\n"
+"12100000.xhp\n"
+"bm_id3153662\n"
"help.text"
-msgid "<emph>Significance</emph> is the number to whose multiple the value is to be rounded up."
-msgstr "<emph>siignifikaantiin</emph> lakkoofsa hirmaanneen gatii isaa ol siiqfameedha."
+msgid "<bookmark_value>database ranges; refreshing</bookmark_value>"
+msgstr "<bookmark_value>hangiiwwan kuusaa deetaa; haroomsu</bookmark_value>"
-#: 04060106.xhp
+#: 12100000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155020\n"
-"559\n"
+"12100000.xhp\n"
+"hd_id3153662\n"
+"1\n"
"help.text"
-msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of Number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter."
-msgstr "<emph>Moodiin</emph> gatii diirqalaati.Yoo gatiin moodii kenname fi zeeroodhaan walqixa hin taane,fi yoo lakkoofsi fi siignifikaansiin negatiivii ta'an,gatsirrii lakkoofsaa irratti hundaa'udhaan siiqsuun ta'a.Jijjiiramaan kun akka Excel tti gara MS Excel yeroo alergamu irradarbama,jijjiiramaa sadaffaa hin beeku."
+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 Haroomsi</link>"
-#: 04060106.xhp
+#: 12100000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163792\n"
-"629\n"
+"12100000.xhp\n"
+"par_id3153088\n"
+"2\n"
"help.text"
-msgid "If both parameters Number and Significance are negative and the Mode value is equal to zero or is not given, the results in $[officename] and Excel will differ after the import has been completed. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc."
-msgstr "Yoo lakkoofsi jijjiiramaa fi siignifikaansiin lachuu negatiifii ta'an fi gatiin moodii zeeroodhaan walqixa ta'an ykn yoo hin kennamne,firiin %[officename] fi Exseeliin adda ta'a edda alaaguun dhumeen booda.Yoo wardii gara Exseelitti alerginu,firii walfakkaatu EXseelii calc keessatti ilaaluuf, Moodii=1 fayyadami."
+msgid "<variable id=\"aktualisieren\"><ahelp hid=\".uno:DataAreaRefresh\" visibility=\"visible\">Updates a data range that was inserted from an external database. The data in the sheet is updated to match the data in the external database.</ahelp></variable>"
+msgstr "<variable id=\"aktualisieren\"><ahelp hid=\".uno:DataAreaRefresh\" visibility=\"visible\">Hangii deetaa kan kuusaa deetaa alaa galee sana haroomsi.Deetaa Kuusaa deetaa alaa galee waliin wal simsiisuuf deetaa wordii irra turee haroomsa.</ahelp></variable>Hangii"
-#: 04060106.xhp
+#: 12120000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145697\n"
-"338\n"
+"12120000.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Validity"
+msgstr "Gataa'insa"
-#: 04060106.xhp
+#: 12120000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145710\n"
-"339\n"
+"12120000.xhp\n"
+"hd_id3156347\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">=CEILING(-11;-2)</item> returns -10"
-msgstr "<item type=\"input\">=CEILING(-11;-2)</item> -10 deebisa."
+msgid "Validity"
+msgstr "Gataa'insa"
-#: 04060106.xhp
+#: 12120000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145725\n"
-"340\n"
+"12120000.xhp\n"
+"par_id3153252\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=CEILING(-11;-2;0)</item> returns -10"
-msgstr "<item type=\"input\">=CEILING(-11;-2;0)</item> -10 deebisa"
+msgid "<variable id=\"gueltigkeit\"><ahelp hid=\".uno:Validation\">Defines what data is valid for a selected cell or cell range.</ahelp></variable>"
+msgstr "<variable id=\"gueltigkeit\"><ahelp hid=\".uno:Validation\">Man'ee ykn dhangii man'ee filameef deetaa gitaa'aa ta'ee hiiki.</ahelp></variable>"
-#: 04060106.xhp
+#: 12120000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145740\n"
-"341\n"
+"12120000.xhp\n"
+"par_idN105D1\n"
"help.text"
-msgid "<item type=\"input\">=CEILING(-11;-2;1)</item> returns -12"
-msgstr "<item type=\"input\">=CEILING(-11;-2;1)</item> -12 deebisa"
+msgid "You can also insert a list box from the Controls toolbar and link the list box to a cell. This way you can specify the valid values on the <link href=\"text/shared/02/01170102.xhp\">Data</link> page of the list box properties window."
+msgstr "To'annoowwan kamshaalee keessa sanduuqa tarree galchuu dandeesa akkasumas sanduuqa tarree man'eetti geessi.Karaan kun karaa itti <link href=\"text/shared/02/01170102.xhp\">Deetaa</link> fuulaa amalootni foddaa tarree ittiin ifteessinudha."
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3157762\n"
+"12120100.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>PI function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii PI </bookmark_value>"
+msgid "Criteria"
+msgstr "Ulaagaalee"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3157762\n"
-"343\n"
+"12120100.xhp\n"
+"bm_id1464278\n"
"help.text"
-msgid "PI"
-msgstr "PI"
+msgid "<bookmark_value>selection lists;validity</bookmark_value>"
+msgstr "<bookmark_value>tarreewwaan filanno;Gataa'insa</bookmark_value>"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157790\n"
-"344\n"
+"12120100.xhp\n"
+"hd_id3153032\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_PI\">Returns 3.14159265358979, the value of the mathematical constant PI to 14 decimal places.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_PI\">Gatii herreegaa dhaabataa PI gara iddoo deesimaalaa 3.14159265358979 deebisa.</ahelp>"
+msgid "<link href=\"text/scalc/01/12120100.xhp\" name=\"Criteria\">Criteria</link>"
+msgstr "<link href=\"text/scalc/01/12120100.xhp\" name=\"Criteria\">Ulaagaalee</link>"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3157809\n"
-"345\n"
+"12120100.xhp\n"
+"par_id3156327\n"
+"2\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_VALUES\">Specify the validation rules for the selected cell(s).</ahelp>"
+msgstr "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_VALUES\">man'ee(wwaan) filatamoof seera gitaa'insa ifteessi.</ahelp>"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157822\n"
-"346\n"
+"12120100.xhp\n"
+"par_id3155923\n"
+"4\n"
"help.text"
-msgid "PI()"
-msgstr "PI()"
+msgid "For example, you can define criteria such as: \"Numbers between 1 and 10\" or \"Texts that are no more than 20 characters\"."
+msgstr "Fakkeenyaaf,ulaagaalee kan akka:\"Lakkoofsota 1 fi 10 giddu\" ykn \"Barrruuwwaan arfiilee 20 olii hin qabne\" hiiku dandessa."
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3157836\n"
-"347\n"
+"12120100.xhp\n"
+"hd_id3153896\n"
+"5\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Allow"
+msgstr "Heyyami"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152370\n"
-"348\n"
+"12120100.xhp\n"
+"par_id3150400\n"
+"6\n"
"help.text"
-msgid "<item type=\"input\">=PI()</item> returns 3.14159265358979."
-msgstr "<item type=\"input\">=PI()</item> 3.14159265358979 deebisa."
+msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_ALLOW\">Click a validation option for the selected cell(s).</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_ALLOW\">man'ee(wwaan) filatamoof dirqaqla gitaa'insa cuqaasi.</ahelp>"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3152418\n"
+"12120100.xhp\n"
+"par_id3148797\n"
+"17\n"
"help.text"
-msgid "<bookmark_value>MULTINOMIAL function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii MULTINOMIAL </bookmark_value>"
+msgid "The following conditions are available:"
+msgstr "Ulaagaaleen armaan gadii ni jiru"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152418\n"
-"635\n"
+"12120100.xhp\n"
+"par_id3150447\n"
+"18\n"
"help.text"
-msgid "MULTINOMIAL"
-msgstr "MULTINOMIAL"
+msgid "Condition"
+msgstr "Haala"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152454\n"
-"636\n"
+"12120100.xhp\n"
+"par_id3155854\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_MULTINOMIAL\"> Returns the factorial of the sum of the arguments divided by the product of the factorials of the arguments.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_MULTINOMIAL\"> Faaktooriyaalii ida'amaa qoccolloo baay'ataa faaktooriyaalitiif hirame deebise.</ahelp>"
+msgid "Effect"
+msgstr "Galtee"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155646\n"
-"637\n"
+"12120100.xhp\n"
+"par_id3153092\n"
+"20\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "All values"
+msgstr "Gatiiwwaan hunda"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155660\n"
-"638\n"
+"12120100.xhp\n"
+"par_id3155411\n"
+"21\n"
"help.text"
-msgid "MULTINOMIAL(Number(s))"
-msgstr "MULTINOMIAL(Lakkoofsa(ota))"
+msgid "No limitation."
+msgstr "Hin daangeffamne."
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155673\n"
-"639\n"
+"12120100.xhp\n"
+"par_id3147434\n"
+"22\n"
"help.text"
-msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
-msgstr "<emph>Lakkoofsi(oni)</emph> haga 30 tti tarreeffamu."
+msgid "Whole number"
+msgstr "Lakkoofsa hundaa"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155687\n"
-"640\n"
+"12120100.xhp\n"
+"par_id3154319\n"
+"23\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Only whole numbers corresponding to the condition."
+msgstr "Lakkoofsota hundaa qofatu ulaagaan walgita."
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155701\n"
-"641\n"
+"12120100.xhp\n"
+"par_id3145802\n"
+"24\n"
"help.text"
-msgid "<item type=\"input\">=MULTINOMIAL(F11:H11)</item> returns 1260, if F11 to H11 contain the values <item type=\"input\">2</item>, <item type=\"input\">3</item> and <item type=\"input\">4</item>. This corresponds to the formula =(2+3+4)! / (2!*3!*4!)"
-msgstr "<item type=\"input\">=MULTINOMIAL(F11:H11)</item> Yoo F11 haga H11 gatii <item type=\"input\">2</item>, <item type=\"input\">3</item> fi <item type=\"input\">4</item> of keessaa qabaate 1260 deebisa.Kuni foormulaa =(2+3+4)! / (2!*3!*4!) waliin walgita."
+msgid "Decimal"
+msgstr "Kurnyee"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3155717\n"
+"12120100.xhp\n"
+"par_id3153160\n"
+"25\n"
"help.text"
-msgid "<bookmark_value>POWER function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii POWER </bookmark_value>"
+msgid "All numbers corresponding to the condition."
+msgstr "Lakkoofsootni hundi uulaagaan wal gitu."
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155717\n"
-"350\n"
+"12120100.xhp\n"
+"par_id3149377\n"
+"26\n"
"help.text"
-msgid "POWER"
-msgstr "POWER"
+msgid "Date"
+msgstr "Guyyaa"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3159495\n"
-"351\n"
+"12120100.xhp\n"
+"par_id3150718\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_POTENZ\">Returns a number raised to another number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_POTENZ\">Lakkoofsa gara pooworiitti ol ka'e deebisa.</ahelp>"
+msgid "All numbers corresponding to the condition. The entered values are formatted accordingly the next time the dialog is called up."
+msgstr "Lakkoofsotni hundi ulaagaa sana guutu.Gatiwwaan galan kunis kan isaan dhangaa'aan akkaataa qaaqni itti aanun dhufu waamamunidha."
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3159513\n"
-"352\n"
+"12120100.xhp\n"
+"par_id3146969\n"
+"28\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Time"
+msgstr "Yeroo"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3159526\n"
-"353\n"
+"12120100.xhp\n"
+"par_id3155066\n"
+"29\n"
"help.text"
-msgid "POWER(Base; Exponent)"
-msgstr ""
+msgid "All numbers corresponding to the condition. The entered values are formatted accordingly the next time the dialog is called up."
+msgstr "Lakkoofsotni hundi ulaagaa sana guutu.Gatiwwaan galan kunis kan isaan dhangaa'aan akkaataa qaaqni itti aanun dhufu waamamunidha."
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3159540\n"
-"354\n"
+"12120100.xhp\n"
+"par_idN106A0\n"
"help.text"
-msgid "Returns <emph>Base</emph> raised to the power of <emph>Exponent</emph>."
-msgstr "Beezii<emph>gara</emph> pooworii pooworiitti ol ka'e <emph>deebisa</emph>."
+msgid "Cell range"
+msgstr "Hangii man'ee"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5081637\n"
+"12120100.xhp\n"
+"par_idN106A5\n"
"help.text"
-msgid "The same result may be achieved by using the exponentiation operator ^:"
-msgstr "Exponeesheeshinii opereetaraa fayyadamuudhaan firiin walfakkaatu ni argama^:"
+msgid "Allow only values that are given in a cell range. The cell range can be specified explicitly, or as a named database range, or as a named range. The range may consist of one column or one row of cells. If you specify a range of columns and rows, only the first column is used."
+msgstr "Gatiwwaan hangii man'ee keessati qofa kennaman eeyyama.Hangii man'ee tokko tokkoon ifteessuun,ykn hangii deetaa teessoon maqeessuu,ykn hangiin maqeessuu.Hangiin kunis tari tarjaa ykn tarree man'eewwaani tokkoo of keessaa qabachuu danda'a.Yoo dhangii tarjaawwani ykn tarreewwaani ifteessitee,tarjaa duraa qoofa fayyadamna."
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9759514\n"
+"12120100.xhp\n"
+"par_idN106AB\n"
"help.text"
-msgid "<item type=\"literal\">Base^Exponent</item>"
-msgstr "<item type=\"literal\">Beerii^Paaworii</item>"
+msgid "List"
+msgstr "Tarree"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3159580\n"
-"356\n"
+"12120100.xhp\n"
+"par_idN106B0\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Allow only values or strings specified in a list. Strings and values can be mixed. Numbers evaluate to their value, so if you enter the number 1 in the list, the entry 100% is also valid."
+msgstr "Gatiiwwaan ykn diraawwan tarree keessatti eeraman qofa hayyami.Lakkoofsota gatii isaanii madaalun,kanaafuu yoo lakkoofsa 1 tarree keessa galchite,galfanni 100% gitaa'a dha."
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3159594\n"
-"357\n"
+"12120100.xhp\n"
+"par_id3154756\n"
+"30\n"
"help.text"
-msgid "<item type=\"input\">=POWER(4;3)</item> returns 64, which is 4 to the power of 3."
-msgstr "<item type=\"input\">=POOWORIIN(4;3)</item> 64 deebisa,kunis 4 pooworii 3 ta'a."
+msgid "Text length"
+msgstr "Dheerina barruu"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1614429\n"
+"12120100.xhp\n"
+"par_id3147339\n"
+"31\n"
"help.text"
-msgid "=4^3 also returns 4 to the power of 3."
-msgstr "=4^3 akkasumas 4 pooworii 3 deebisa."
+msgid "Entries whose length corresponds to the condition."
+msgstr "Galfata dheerinni isaa ulaagaa kennamee gute."
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3152651\n"
+"12120100.xhp\n"
+"hd_id3154704\n"
+"7\n"
"help.text"
-msgid "<bookmark_value>SERIESSUM function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii SERIESSUM </bookmark_value>"
+msgid "Allow blank cells"
+msgstr "Man'eewwaan duwwaa hayyami"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152651\n"
-"642\n"
+"12120100.xhp\n"
+"par_id3153967\n"
+"8\n"
"help.text"
-msgid "SERIESSUM"
-msgstr "SERIESSUM"
+msgid "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_VALUES:TSB_ALLOW_BLANKS\">In conjunction with <emph>Tools - Detective - Mark invalid Data</emph>, this defines that blank cells are shown as invalid data (disabled) or not (enabled).</ahelp>"
+msgstr "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_VALUES:TSB_ALLOW_BLANKS\">Wal qabsiisuu <emph>Meeshaalee-Argama-Deetaa fashaala'ee mallatteessi</emph>, kunis man'eeewwaan duwwaan akkaa deetaa fashalaaweetti(dhaamsameetti) ykn (dandeessifamee)miti.</ahelp>"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152688\n"
-"643\n"
+"12120100.xhp\n"
+"par_idN10709\n"
"help.text"
-msgid "<ahelp hid=\".\">Sums the first terms of a power series.</ahelp>"
-msgstr "<ahelp hid=\".\">Jechayyaa jalqabaa kan poower siiriyeesii ida'a.</ahelp>"
+msgid "Show selection list"
+msgstr "Tarree filannoo agarsiisi"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152708\n"
-"644\n"
+"12120100.xhp\n"
+"par_idN1070D\n"
"help.text"
-msgid "SERIESSUM(x;n;m;coefficients) = coefficient_1*x^n + coefficient_2*x^(n+m) + coefficient_3*x^(n+2m) +...+ coefficient_i*x^(n+(i-1)m)"
-msgstr "SERIESSUM(x;n;m;koofishentoota) = koofishentii_1*x^n + koofishentii_2*x^(n+m) + koofishentii_3*x^(n+2m) +...+ koofishentii_i*x^(n+(i-1)m)"
+msgid "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SHOWLIST\">Shows a list of all valid strings or values to select from. The list can also be opened by selecting the cell and pressing Ctrl+D (Mac: Command+D).</ahelp>"
+msgstr "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SHOWLIST\">Gatiiwwaan keessaa filachuuf ykn tarree diraawwaan gitaa'aa ta'an agarsiisa. Tarree kan bannu dandeenyu man'ee filuun itti ansuun Ctrl+D dhiibuu (Mac: ajaja+D).</ahelp>"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152724\n"
-"645\n"
+"12120100.xhp\n"
+"par_idN10724\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Sort entries ascending"
+msgstr "Galti oliin tartiiba qabsiisi"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_idN11BD9\n"
+"12120100.xhp\n"
+"par_idN10728\n"
"help.text"
-msgid "SERIESSUM(X; N; M; Coefficients)"
-msgstr "SERIESSUM(X; N; M; koofishentoota)"
+msgid "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SORTLIST\">Sorts the selection list in ascending order and filters duplicates from the list. If not checked, the order from the data source is taken.</ahelp>"
+msgstr "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SORTLIST\">Tarree filannoo oliin tartiiba qabsiisi akkasumas tarree keessa gingiilchuun baay'isi.Yoo hin mirkaannoofne,tartiiba madda deetaa fudhana.</ahelp>"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152737\n"
-"646\n"
+"12120100.xhp\n"
+"par_idN1073F\n"
"help.text"
-msgid "<emph>X</emph> is the input value for the power series."
-msgstr "<emph>X</emph> gatii naqaa poowor siiriyeesiti."
+msgid "Source"
+msgstr "Madda"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144344\n"
-"647\n"
+"12120100.xhp\n"
+"par_idN10743\n"
"help.text"
-msgid "<emph>N</emph> is the initial power"
-msgstr "<emph>N</emph> poowerii jalqabaati"
+msgid "<ahelp hid=\"sc:Edit:TP_VALIDATION_VALUES:EDT_MIN\">Enter the cell range that contains the valid values or text.</ahelp>"
+msgstr "<ahelp hid=\"sc:Edit:TP_VALIDATION_VALUES:EDT_MIN\"> Man'ee hangii gatii gita'aa ykn barruu qabate galchi.</ahelp>"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144357\n"
-"648\n"
+"12120100.xhp\n"
+"par_idN1075A\n"
"help.text"
-msgid "<emph>M</emph> is the increment to increase N"
-msgstr "<emph>M</emph> dabala N dabaluu dha"
+msgid "Entries"
+msgstr "Galinsa"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144370\n"
-"649\n"
+"12120100.xhp\n"
+"par_idN1075E\n"
"help.text"
-msgid "<emph>Coefficients</emph> is a series of coefficients. For each coefficient the series sum is extended by one section."
-msgstr "<emph>koofishentootni</emph> siiriyeesii koofishentootaati."
+msgid "<ahelp hid=\"sc:MultiLineEdit:TP_VALIDATION_VALUES:EDT_LIST\">Enter the entries that will be valid values or text strings.</ahelp>"
+msgstr "<ahelp hid=\"sc:MultiLineEdit:TP_VALIDATION_VALUES:EDT_LIST\">Gatinsaa gatii gita'aa ykn diraa barruu qabate galchi.</ahelp>"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3144386\n"
+"12120100.xhp\n"
+"hd_id3163807\n"
+"9\n"
"help.text"
-msgid "<bookmark_value>PRODUCT function</bookmark_value><bookmark_value>numbers;multiplying</bookmark_value><bookmark_value>multiplying;numbers</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii PRODUCT </bookmark_value><bookmark_value>lakkoofsota;baay'isuu</bookmark_value><bookmark_value>baay'isuu;lakkoofsota</bookmark_value>"
+msgid "Data"
+msgstr "Deetaa"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144386\n"
-"361\n"
+"12120100.xhp\n"
+"par_id3144502\n"
+"10\n"
"help.text"
-msgid "PRODUCT"
-msgstr "PRODUCT"
+msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_VALUE\">Select the comparative operator that you want to use.</ahelp> The available operators depend on what you selected in the <emph>Allow </emph>box. If you select \"between\" or \"not between\", the <emph>Minimum</emph> and <emph>Maximum</emph> input boxes appear. Otherwise, only the <emph>Minimum</emph>, the <emph>Maximum, or the Value</emph> input boxes appear."
+msgstr "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_VALUE\">Oggeejjii wal madaalaa kan itti fayyadamuu barbaaddu galchi.</ahelp> Ogeejjiin jiruus sanduuqa <emph>Hayyami </emph>ati filattee irratti hunda'a. Yoo \"gidduu\" ykn \"gidduu miti\",sanduuqni naqii <emph>Gadaantoo</emph> fi <emph>Olaantoo</emph>ni mul'ata. Kan kanaan alaa,sanduuqotni naqi <emph>Gadaantoo</emph>, the <emph>Olantoo,ykn gatiisa</emph> qofa mul'isa."
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144414\n"
-"362\n"
+"12120100.xhp\n"
+"hd_id3153782\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_PRODUKT\">Multiplies all the numbers given as arguments and returns the product.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_PRODUKT\">Lakkoofsota hundaa akka qocollootti kennaman baay'isuu fi firii deebisa.</ahelp>"
+msgid "Value"
+msgstr "Gatii"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144433\n"
-"363\n"
+"12120100.xhp\n"
+"par_id3153266\n"
+"12\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Enter the value for the data validation option that you selected in the <emph>Allow </emph>box."
+msgstr "Sanduuqa<emph>Heyyami </emph>keessaa isa filatte gati gata'insaa deetaa dirqalaaf galchi."
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144446\n"
-"364\n"
+"12120100.xhp\n"
+"hd_id3149814\n"
+"13\n"
"help.text"
-msgid "PRODUCT(Number1; Number2; ...; Number30)"
-msgstr "PRODUCT(Lakkoofsa1; Lakkoofsa2; ...; Lakkoofsa30)"
+msgid "Minimum"
+msgstr "Gad'aantoo"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144460\n"
-"365\n"
+"12120100.xhp\n"
+"par_id3153199\n"
+"14\n"
"help.text"
-msgid "<emph>Number1 to 30</emph> are up to 30 arguments whose product is to be calculated."
-msgstr "<emph>Lakkoofsi1 haga 30</emph> qocolloota haga 30 firiin isaanii shallagamuudha."
+msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MIN\">Enter the minimum value for the data validation option that you selected in the <emph>Allow </emph>box.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MIN\"> Dirqaala gitaa'insaa deeta sanduuqa <emph>Heyyamii</emph> keessatti filatteef gatii gad'aantoo galchi.</ahelp>"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1589098\n"
+"12120100.xhp\n"
+"hd_id3149035\n"
+"15\n"
"help.text"
-msgid "PRODUCT returns number1 * number2 * number3 * ..."
-msgstr "PRODUCT lakkoofsa1 * lakkoofsa2 * lakkoofsa3 * ...deebisa"
+msgid "Maximum"
+msgstr "Gad'aantoo"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144480\n"
-"366\n"
+"12120100.xhp\n"
+"par_id3150089\n"
+"16\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MAX\">Enter the maximum value for the data validation option that you selected in the <emph>Allow </emph>box.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MAX\">Dirqaala gitaa'insaa deeta sanduuqa <emph>Heyyami </emph> keessatti filatteef gatii ol'aantoo galchi.</ahelp>"
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144494\n"
-"367\n"
+"12120200.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=PRODUCT(2;3;4)</item> returns 24."
-msgstr "<item type=\"input\">=PRODUCT(2;3;4)</item> 24 deebisa."
+msgid "Input Help"
+msgstr "Gargaarsa Naqa"
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3160340\n"
+"12120200.xhp\n"
+"hd_id3156280\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>SUMSQ function</bookmark_value><bookmark_value>square number additions</bookmark_value><bookmark_value>sums;of square numbers</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii SUMSQ </bookmark_value><bookmark_value>iskuweerii lakkoofsaa ida'uu </bookmark_value><bookmark_value>ida'amtoota;kan iskuweerii lakkoofsotaa</bookmark_value>"
+msgid "<link href=\"text/scalc/01/12120200.xhp\" name=\"Input Help\">Input Help</link>"
+msgstr "<link href=\"text/scalc/01/12120200.xhp\" name=\"Input Help\">Gargaarsa Naqa</link>"
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3160340\n"
-"369\n"
+"12120200.xhp\n"
+"par_id3147229\n"
+"2\n"
"help.text"
-msgid "SUMSQ"
-msgstr "SUMSQ"
+msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_INPUTHELP\">Enter the message that you want to display when the cell or cell range is selected in the sheet.</ahelp>"
+msgstr "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_INPUTHELP\">Yommuu wardii keessatti man'ee ykn hangiin man'ee filatame, ergaa agarsiisuu barbaadduu galchi.</ahelp>"
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3160368\n"
-"370\n"
+"12120200.xhp\n"
+"hd_id3146986\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_QUADRATESUMME\">If you want to calculate the sum of the squares of numbers (totaling up of the squares of the arguments), enter these into the text fields.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_QUADRATESUMME\">Yoo ida'ama iskuweerii lakkoofsaa shallaguu barbaadde,dirree barruu irratti kana galchi.</ahelp>"
+msgid "Show input help when cell is selected"
+msgstr "Yommuu man'een filatamuu gargaarsa naqa agarsiisi"
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3160388\n"
-"371\n"
+"12120200.xhp\n"
+"par_id3153363\n"
+"4\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_INPUTHELP:TSB_HELP\">Displays the message that you enter in the <emph>Contents</emph> box when the cell or cell range is selected in the sheet.</ahelp>"
+msgstr "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_INPUTHELP:TSB_HELP\">Yommuu wardii keessatti man'ee ykn hangiin man'ee filatame,sanduuqni<emph>Qabeentoota</emph>ergaa galchitee agarsiisa.</ahelp>"
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3160402\n"
-"372\n"
+"12120200.xhp\n"
+"par_id3154730\n"
+"5\n"
"help.text"
-msgid "SUMSQ(Number1; Number2; ...; Number30)"
-msgstr "SUMSQ(Lakkoofsa1; Lakkoofsa2; ...; Lakkoofsa30)"
+msgid "If you enter text in the <emph>Contents</emph> box of this dialog, and then select and clear this check box, the text will be lost."
+msgstr "Yoo qaaqa sanduuqa<emph>Qabeentoota</emph> keessa barruu galchite,itti ansuun erga filaattee booda sanduuqa mirkaneesaa haqun,barruun ni gatama."
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3160415\n"
-"373\n"
+"12120200.xhp\n"
+"hd_id3147394\n"
+"6\n"
"help.text"
-msgid "<emph>Number1 to 30</emph> are up to 30 arguments the sum of whose squares is to be calculated."
-msgstr "<emph>Lakkoofsi1 haga 30</emph> qocolloota haga 30 firiin isaanii shallagamuudha."
+msgid "Contents"
+msgstr "Qabeentoota"
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3160436\n"
-"374\n"
+"12120200.xhp\n"
+"hd_id3149582\n"
+"8\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Title"
+msgstr "Mataduree"
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3160449\n"
-"375\n"
+"12120200.xhp\n"
+"par_id3149400\n"
+"9\n"
"help.text"
-msgid "If you enter the numbers <item type=\"input\">2</item>; <item type=\"input\">3</item> and <item type=\"input\">4</item> in the Number 1; 2 and 3 text boxes, 29 is returned as the result."
-msgstr "Yoo lakkoofsota <item type=\"input\">2</item>;<item type=\"input\">3</item> fi <item type=\"input\">4</item> lakkoofsa 1;2 fi 3 sanduuqa barruu keessa galchite,29 akka firiitti deebi'a."
+msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_INPUTHELP:EDT_TITLE\">Enter the title that you want to display when the cell or cell range is selected.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_INPUTHELP:EDT_TITLE\">Yommuu wardii keessatti man'ee ykn hangiin man'ee filatame, mataduree agarsiisuu barbaadduu galchi.</ahelp>"
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3158247\n"
+"12120200.xhp\n"
+"hd_id3149121\n"
+"10\n"
"help.text"
-msgid "<bookmark_value>MOD function</bookmark_value><bookmark_value>remainders of divisions</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii MOD </bookmark_value><bookmark_value>haftee hirannaa</bookmark_value>"
+msgid "Input help"
+msgstr "Gargaarsa Naqa"
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3158247\n"
-"387\n"
+"12120200.xhp\n"
+"par_id3150752\n"
+"11\n"
"help.text"
-msgid "MOD"
-msgstr "MOD"
+msgid "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_INPUTHELP:EDT_INPUTHELP\">Enter the message that you want to display when the cell or cell range is selected.</ahelp>"
+msgstr "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_INPUTHELP:EDT_INPUTHELP\">Yommuu wardii keessatti man'ee ykn hangiin man'ee filatame, ergaa agarsiisuu barbaadduu galchi.</ahelp>"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158276\n"
-"388\n"
+"12120300.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_REST\">Returns the remainder when one integer is divided by another.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_REST\">Yeroo intijariin tokko isa biraatiif hiramu haftee deebisa.</ahelp>"
+msgid "Error Alert"
+msgstr "Dogoggora of eeggannoo"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3158294\n"
-"389\n"
+"12120300.xhp\n"
+"hd_id3153821\n"
+"1\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<link href=\"text/scalc/01/12120300.xhp\" name=\"Error Alert\">Error Alert</link>"
+msgstr "<link href=\"text/scalc/01/12120300.xhp\" name=\"Error Alert\">Dogoggora Of eeggannoo</link>"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158308\n"
-"390\n"
+"12120300.xhp\n"
+"par_id3153379\n"
+"2\n"
"help.text"
-msgid "MOD(Dividend; Divisor)"
-msgstr "MOD(Hiramaa; Jaloo)"
+msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_ERROR\">Define the error message that is displayed when invalid data is entered in a cell.</ahelp>"
+msgstr "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_ERROR\">Deetaan Fashalaawaa yommuu man'ee seenee, ergaa dogoggoraa mul'atuu hiiki.</ahelp>"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158321\n"
-"391\n"
+"12120300.xhp\n"
+"par_id3154138\n"
+"25\n"
"help.text"
-msgid "For integer arguments this function returns Dividend modulo Divisor, that is the remainder when <emph>Dividend</emph> is divided by <emph>Divisor</emph>."
-msgstr "Qocolloo intijariitiif faankishiniin kun hiraa mooduuloo hiramaa deebisa,sun haftee yeroo <emph>Hiramaan</emph> Hiraadhaan<emph>hiramuudha</emph>."
+msgid "You can also start a macro with an error message. A sample macro is provided at the end of this page."
+msgstr "Ergaa dogoggoraan maakroo eegaluu dandeessa.Eddattoon maakroo umaa fulaa kanaa irratti kennama."
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158341\n"
-"392\n"
+"12120300.xhp\n"
+"hd_id3156280\n"
+"3\n"
"help.text"
-msgid "This function is implemented as <item type=\"literal\">Dividend - Divisor * INT(Dividend/Divisor)</item> , and this formula gives the result if the arguments are not integer."
-msgstr "Faankishiniin kun akka <item type=\"literal\">Hiramaa- Hiraa * INT(Hiramaa/Hiraa)</item>"
+msgid "Show error message when invalid values are entered."
+msgstr "Yommuu gatiiwwan fashalaawaa galuu ergaa dogoggoraa agarsiisi."
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3158361\n"
-"393\n"
+"12120300.xhp\n"
+"par_id3150768\n"
+"4\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<ahelp hid=\".\">Displays the error message that you enter in the <emph>Contents</emph> area when invalid data is entered in a cell.</ahelp> If enabled, the message is displayed to prevent an invalid entry."
+msgstr ""
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158374\n"
-"394\n"
+"12120300.xhp\n"
+"par_id3146984\n"
+"5\n"
"help.text"
-msgid "<item type=\"input\">=MOD(22;3)</item> returns 1, the remainder when 22 is divided by 3."
-msgstr "<item type=\"input\">=MOD(22;3)</item>yeroo 22 lakkoofsa 3 hirame hafte 1 deebisa."
+msgid "In both cases, if you select \"Stop\", the invalid entry is deleted and the previous value is reentered in the cell. The same applies if you close the \"Warning\" and \"Information\" dialogs by clicking the <emph>Cancel </emph>button. If you close the dialogs with the <emph>OK</emph> button, the invalid entry is not deleted."
+msgstr "Haaloota lameeniti,yoo \"Dhaabbii\" filattee,galmii fashalaawaan baduun gatiin darbee lamataa man'ee seena.Halaama kanaan qaaqoota \"Akeekkachiisa\" fi \"Odeeffannoo\" yoo cuftu qabdoo <emph>Haqii </emph> cuqaasi.Yoo qaaqotaa qabdoo<emph>Eyyee</emph>n cuftee,galmii fashalaawaa hin haqamu."
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1278420\n"
+"12120300.xhp\n"
+"hd_id3152460\n"
+"6\n"
"help.text"
-msgid "<item type=\"input\">=MOD(11.25;2.5)</item> returns 1.25."
-msgstr "<item type=\"input\">=MOD(11.25;2.5)</item> 1.25 deebisa."
+msgid "Contents"
+msgstr "Qabeentoota"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3144592\n"
+"12120300.xhp\n"
+"hd_id3148646\n"
+"8\n"
"help.text"
-msgid "<bookmark_value>QUOTIENT function</bookmark_value><bookmark_value>divisions</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii QUOTIENT </bookmark_value><bookmark_value>hiruu</bookmark_value>"
+msgid "Action"
+msgstr "Gocha"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144592\n"
-"652\n"
+"12120300.xhp\n"
+"par_id3151115\n"
+"9\n"
"help.text"
-msgid "QUOTIENT"
-msgstr "QUOTIENT"
+msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_ERROR:LB_ACTION\">Select the action that you want to occur when invalid data is entered in a cell.</ahelp> The \"Stop\" action rejects the invalid entry and displays a dialog that you have to close by clicking <emph>OK</emph>. The \"Warning\" and \"Information\" actions display a dialog that can be closed by clicking <emph>OK</emph> or <emph>Cancel</emph>. The invalid entry is only rejected when you click <emph>Cancel</emph>."
+msgstr "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_ERROR:LB_ACTION\">Yommuu deetaan fashalaa man'ee seenu gocha ta'uun barbaachisuu fili.</ahelp> Gochi \"Dhaabbi\" galma fashalaa gatuufi <emph>Tole</emph> cuqaasuudhaan qaqaa haquu barbaadduu agarsiisa.Gochaawwwan \"Akeekkachiisa\" fi \"Odeeffannoo\" qaqoota <emph>Tole</emph> ykn <emph>Dhiisi</emph> cuqaasun cufamuu danda'an agarsiisa.Galmii fashalaawa kan gatamuu yoo <emph>Dhiisi</emph> cuqaaste qofa."
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144627\n"
-"653\n"
+"12120300.xhp\n"
+"hd_id3156441\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_QUOTIENT\">Returns the integer part of a division operation.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_QUOTIENT\">Intijarii qaama hiruu ta'e deebisa.</ahelp>"
+msgid "Browse"
+msgstr "Sakatta'i"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144646\n"
-"654\n"
+"12120300.xhp\n"
+"par_id3153160\n"
+"11\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\"SC:PUSHBUTTON:TP_VALIDATION_ERROR:BTN_SEARCH\">Opens the <link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> dialog where you can select the macro that is executed when invalid data is entered in a cell. The macro is executed after the error message is displayed.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:TP_VALIDATION_ERROR:BTN_SEARCH\">Qaaqa<link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Maakroo</link> iddoo itti yommuu deetaan fashaalaawee man'ee seenu maakiroo itti filattu bana.Erga eergaan dogoggoraa iftaayee dooba gochii maakiroo rawwata.</ahelp>"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144659\n"
-"655\n"
+"12120300.xhp\n"
+"hd_id3153876\n"
+"12\n"
"help.text"
-msgid "QUOTIENT(Numerator; Denominator)"
-msgstr "QUOTIENT(Irrayyee; Jaloo)"
+msgid "Title"
+msgstr "Mataduree"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9038972\n"
+"12120300.xhp\n"
+"par_id3149410\n"
+"13\n"
"help.text"
-msgid "Returns the integer part of <emph>Numerator</emph> divided by <emph>Denominator</emph>."
-msgstr "Intijarii qaama <emph>Irrayyee</emph> jaloodhaan<emph>hirame deebisa</emph>."
+msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_ERROR:EDT_TITLE\">Enter the title of the macro or the error message that you want to display when invalid data is entered in a cell.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_ERROR:EDT_TITLE\">Mata duree Maakiroo ykn Ergaa doggoggoraa jedhu galchuun deetaan doggoggoraa yommuu man'ee seenuu mul'isuuf oola.</ahelp>"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id7985168\n"
+"12120300.xhp\n"
+"hd_id3154510\n"
+"14\n"
"help.text"
-msgid "QUOTIENT is equivalent to <item type=\"literal\">INT(numerator/denominator)</item>, except that it may report errors with different error codes."
-msgstr "QUOTIENT tiin <item type=\"literal\">INT(irrayyee/jaloo)</item> waliin walgita, garuu dogogoraa coodii dogogoraa karaa adda ta'een rippoortii godha."
+msgid "Error message"
+msgstr "Ergaa doggoggoraa"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144674\n"
-"656\n"
+"12120300.xhp\n"
+"par_id3149122\n"
+"15\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_ERROR:EDT_ERROR\">Enter the message that you want to display when invalid data is entered in a cell.</ahelp>"
+msgstr "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_ERROR:EDT_ERROR\">Deetaan doggoggoraa yommuu man'ee seenuu ergaa mul'isuu barbaaddu galchi.</ahelp>"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144687\n"
-"657\n"
+"12120300.xhp\n"
+"par_id3150752\n"
+"16\n"
"help.text"
-msgid "<item type=\"input\">=QUOTIENT(11;3)</item> returns 3. The remainder of 2 is lost."
-msgstr "<item type=\"input\">=QUOTIENT(11;3)</item> 3 deebisa.Hafteen 2 ni bada."
+msgid "<emph>Sample macro:</emph>"
+msgstr "<emph>Maakiroo fakkeenyaa:</emph>"
-#: 04060106.xhp
+#: format_graphic.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3144702\n"
+"format_graphic.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>RADIANS function</bookmark_value><bookmark_value>converting;degrees, into radians</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii RADIANS </bookmark_value><bookmark_value>jijjiiruu;diigrii, gara raadiyaanitti</bookmark_value>"
+msgid "Graphic"
+msgstr "Saxaatoo"
-#: 04060106.xhp
+#: format_graphic.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144702\n"
-"377\n"
+"format_graphic.xhp\n"
+"par_idN10548\n"
"help.text"
-msgid "RADIANS"
-msgstr "RADIANS"
+msgid "<link href=\"text/scalc/01/format_graphic.xhp\">Graphic</link>"
+msgstr "<link href=\"text/scalc/01/format_graphic.xhp\">Saxaatoo</link>"
-#: 04060106.xhp
+#: format_graphic.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158025\n"
-"378\n"
+"format_graphic.xhp\n"
+"par_idN10558\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_RAD\">Converts degrees to radians.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_RAD\">diigrii gara raadiyaanitti jijjiira.</ahelp>"
+msgid "<ahelp hid=\".\">Opens a submenu to edit the properties of the selected object.</ahelp>"
+msgstr "<ahelp hid=\".\">bana baafata xiqqaa amalottaa wantaa filatamee ammaa gullaludhaaf.</ahelp>"
-#: 04060106.xhp
+#: format_graphic.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3158042\n"
-"379\n"
+"format_graphic.xhp\n"
+"par_id1650440\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<link href=\"text/shared/01/05990000.xhp\">Define Text Attributes</link>"
+msgstr "<link href=\"text/shared/01/05990000.xhp\">Amaloota barruu hiika</link>"
-#: 04060106.xhp
+#: format_graphic.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158055\n"
-"380\n"
+"format_graphic.xhp\n"
+"par_id363475\n"
"help.text"
-msgid "RADIANS(Number)"
-msgstr "RADIANS(Lakkoofsa)"
+msgid "Sets the layout and anchoring properties for text in the selected drawing or text object."
+msgstr "Teesumaa ni qindessaa akkasumaas ammalottaa korkodda'uu fakii barruu filatamee yokkan wanta barruu."
-#: 04060106.xhp
+#: format_graphic.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158069\n"
-"381\n"
+"format_graphic.xhp\n"
+"par_id9746696\n"
"help.text"
-msgid "<emph>Number</emph> is the angle in degrees to be converted to radians."
-msgstr "<emph>Lakkoofsi</emph> kofa diigrii kan raadiyaanitti jijjiiramuudha."
+msgid "Points"
+msgstr "Tuqaalee"
-#: 04060106.xhp
+#: format_graphic.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id876186\n"
+"format_graphic.xhp\n"
+"par_id2480544\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<ahelp hid=\".\">Switches <emph>Edit Points</emph> mode for an inserted freeform line on and off.</ahelp>"
+msgstr "<ahelp hid=\".\">Banaa fi cufaa sarara unka akka feetee saagdef haalata <emph>Tuqaalee Gulaalaa</emph>Jijjiira bana.</ahelp>"
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3939634\n"
+"func_date.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=RADIANS(90)</item> returns 1.5707963267949, which is PI/2 to Calc's accuracy."
-msgstr "<item type=\"input\">=RADIANS(90)</item> 1.5707963267949, kan PI/2 gara Calc akkureesiitti deebisa."
+msgid "DATE"
+msgstr "DATE"
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3158121\n"
+"func_date.xhp\n"
+"bm_id3155511\n"
"help.text"
-msgid "<bookmark_value>ROUND function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii ROUND </bookmark_value>"
+msgid "<bookmark_value>DATE function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii DATE</bookmark_value>"
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3158121\n"
-"398\n"
+"func_date.xhp\n"
+"hd_id3155511\n"
+"3\n"
"help.text"
-msgid "ROUND"
-msgstr "ROUND"
+msgid "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">DATE</link></variable>"
+msgstr "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">DATE</link></variable>"
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158150\n"
-"399\n"
+"func_date.xhp\n"
+"par_id3153551\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_RUNDEN\">Rounds a number to a certain number of decimal places.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_RUNDEN\">Lakkoofsa gara lakkoofsa deesimaalii wayiitti siiqsa.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_DATUM\">This function calculates a date specified by year, month, day and displays it in the cell's formatting.</ahelp> The default format of a cell containing the DATE function is the date format, but you can format the cells with any other number format."
+msgstr "<ahelp hid=\"HID_FUNC_DATUM\">Fankiishiniin kun aduu waggaadhaan,ji'aan,guyyaadhaan ibsame dhangiiwwaan man'ee keessati shallaguun deebisee mul'isa.</ahelp> Dhangii durtii man'eewwaan DATE fankiishinii of keessa qaban dhangii aduu ta'u,garu man'eewwaan dhangi lakkoofsa biraan dhangeessuu dandessa."
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3158169\n"
-"400\n"
+"func_date.xhp\n"
+"hd_id3148590\n"
+"5\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158182\n"
-"401\n"
+"func_date.xhp\n"
+"par_id3150474\n"
+"6\n"
"help.text"
-msgid "ROUND(Number; Count)"
-msgstr "ROUND(Lakkoofsa;lakkaa'uu)"
+msgid "DATE(Year; Month; Day)"
+msgstr "DATE(Waggaa;Ji'a; Guyyaa)"
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158196\n"
-"402\n"
+"func_date.xhp\n"
+"par_id3152815\n"
+"7\n"
"help.text"
-msgid "Returns <emph>Number</emph> rounded to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds to the nearest integer. If Count is negative, the function rounds to the nearest 10, 100, 1000, etc."
-msgstr "<emph>Lakkoofsa</emph>gara<emph>Lakkaa'umsa</emph> iddoo deesimaaliitti deebisa. Yoo Lakkaa'umsi haqame ykn zeeroo ta'e, faankishiniin gara intijarii dhihootti siiqsa. Yoo lakkaa'umsi negatiivii ta'e, faankishiniin gara 10, 100, 1000 kkf dhiyootti siiqsa."
+msgid "<emph>Year</emph> is an integer between 1583 and 9957 or between 0 and 99."
+msgstr "<emph>Waggaan</emph> intiijera 1583 hanga 9957 ykn 0 hanga 99 gidduutti argamudha."
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id599688\n"
+"func_date.xhp\n"
+"par_id3153222\n"
+"174\n"
"help.text"
-msgid "This function rounds to the nearest number. See ROUNDDOWN and ROUNDUP for alternatives."
-msgstr "Faankishiniin kun gara lakkoofsa itti dhiyootti siiqfama.Filannoodhaaf ROUNDDOWN fi ROUNDUP ilaala."
+msgid "In <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - General </item>you can set from which year a two-digit number entry is recognized as 20xx."
+msgstr ""
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145863\n"
-"404\n"
+"func_date.xhp\n"
+"par_id3155817\n"
+"8\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<emph>Month</emph> is an integer indicating the month."
+msgstr "<emph>Ji'a</emph> intiijeera ji'a agarsiisudha."
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145876\n"
-"405\n"
+"func_date.xhp\n"
+"par_id3153183\n"
+"9\n"
"help.text"
-msgid "<item type=\"input\">=ROUND(2.348;2)</item> returns 2.35"
-msgstr "<item type=\"input\">=ROUND(2.348;2)</item> 2.35 deebisa"
+msgid "<emph>Day</emph> is an integer indicating the day of the month."
+msgstr "<emph>Guyyaa</emph> intiijeera guyyaa ji'a agarsiisudha."
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145899\n"
-"406\n"
+"func_date.xhp\n"
+"par_id3156260\n"
+"10\n"
"help.text"
-msgid "<item type=\"input\">=ROUND(-32.4834;3)</item> returns -32.483. Change the cell format to see all decimals."
-msgstr "<item type=\"input\">=ROUND(-32.4834;3)</item> -32.483 deebisa. Deesimaalii hundaa ilaaluuf dhangii man'ee jijjiira."
+msgid "If the values for month and day are out of bounds, they are carried over to the next digit. If you enter <item type=\"input\">=DATE(00;12;31)</item> the result will be 12/31/00. If, on the other hand, you enter <item type=\"input\">=DATE(00;13;31)</item> the result will be 1/31/01."
+msgstr "Yoo gatiin ji'aaf gatiin guyyaa dangaa kennameen oli ta'e,gara dijiiti itti aanutti darba.Yoo<item type=\"input\">=DATE(00;12;31)</item> galchitee bu'aan 12/31/00 ta'a.Karaa biraan, yoo<item type=\"input\">=DATE(00;13;31)</item> galchite, bu'aan 1/31/01 ta'a."
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1371501\n"
+"func_date.xhp\n"
+"hd_id3147477\n"
+"12\n"
"help.text"
-msgid "<item type=\"input\">=ROUND(2.348;0)</item> returns 2."
-msgstr "<item type=\"input\">=ROUND(2.348;0)</item> 2 deebisa."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id4661702\n"
+"func_date.xhp\n"
+"par_id3152589\n"
+"16\n"
"help.text"
-msgid "<item type=\"input\">=ROUND(2.5)</item> returns 3."
-msgstr "<item type=\"input\">=ROUND(2.5)</item> 3 deebisa."
+msgid "<item type=\"input\">=DATE(00;1;31)</item> yields 1/31/00 if the cell format setting is MM/DD/YY."
+msgstr "<item type=\"input\">=DATE(00;1;31)</item> Yoo qindaa'inni dhangii man'ee MM/DD/YY ta'e 1/31/00 kenna'"
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id7868892\n"
+"func_datedif.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=ROUND(987.65;-2)</item> returns 1000."
-msgstr "<item type=\"input\">=ROUND(987.65;-2)</item>1000 deebisa."
+msgid "DATEDIF"
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3145991\n"
+"func_datedif.xhp\n"
+"bm_id3155511\n"
"help.text"
-msgid "<bookmark_value>ROUNDDOWN function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii ROUNDDOWN </bookmark_value>"
+msgid "<bookmark_value>DATEDIF function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii DATE</bookmark_value>"
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145991\n"
-"24\n"
+"func_datedif.xhp\n"
+"hd_id3155511\n"
"help.text"
-msgid "ROUNDDOWN"
-msgstr "ROUNDDOWN"
+msgid "<variable id=\"datedif\"><link href=\"text/scalc/01/func_datedif.xhp\">DATEDIF</link></variable>"
+msgstr "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">DATE</link></variable>"
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3146020\n"
-"25\n"
+"func_datedif.xhp\n"
+"par_id3153551\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ABRUNDEN\">Rounds a number down, toward zero, to a certain precision.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ABRUNDEN\">Lakkoofsa sirrummaadhaaf gara zeerootti gadi buta.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_DATUM\">This function returns the number of whole days, months or years between Start date and End date.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3146037\n"
-"26\n"
+"func_datedif.xhp\n"
+"hd_id3148590\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3146051\n"
-"27\n"
+"func_datedif.xhp\n"
+"par_id3150474\n"
"help.text"
-msgid "ROUNDDOWN(Number; Count)"
-msgstr "ROUNDDOWN(Lakkoofsa;lakkaa'uu)"
+msgid "DATEDIF(Start date; End date; Interval)"
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3146064\n"
-"28\n"
+"func_datedif.xhp\n"
+"par_id3152815\n"
"help.text"
-msgid "Returns <emph>Number</emph> rounded down (towards zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds down to an integer. If Count is negative, the function rounds down to the next 10, 100, 1000, etc."
-msgstr "Iddoowwan deesimaalii <emph>lakkaa'uuf</emph> <emph>Lakkoofsa</emph> gadi siiqfame (gara zeerootti) deebisa.Yoo lakkaawwiin hambifame,zeeroo faankishiniin gara intijariitti gadi siiqfama.Yoo lakkaawwiin negatiivii ta'e,faankishiniin gara 10, 100, 1000, etc itti aanutti gadi siiqfama."
+msgid "<emph>Start date</emph> is the date from when the calculation is carried out."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id2188787\n"
+"func_datedif.xhp\n"
+"par_id3155817\n"
"help.text"
-msgid "This function rounds towards zero. See ROUNDUP and ROUND for alternatives."
-msgstr "Faankishiniin kun gara zeerootti siiqfama. Filannoodhaaf ROUNDUP fi ROUND ilaali."
+msgid "<emph>End date</emph> is the date until the calculation is carried out. End date must be later, than Start date."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163164\n"
-"30\n"
+"func_datedif.xhp\n"
+"par_id3153183\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<emph>Interval</emph> is a string, accepted values are \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\"."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163178\n"
-"31\n"
+"func_datedif.xhp\n"
+"par_id5735953\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDDOWN(1.234;2)</item> returns 1.23."
-msgstr "<item type=\"input\">=ROUNDDOWN(1.234;2)</item> 1.23 deebisa."
+msgid "Value for \"Interval\""
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5833307\n"
+"func_datedif.xhp\n"
+"par_id8360850\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDDOWN(45.67;0)</item> returns 45."
-msgstr "<item type=\"input\">=ROUNDDOWN(45.67;0)</item> 45 deebisa."
+msgid "Return value"
+msgstr "Gatii deebii"
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id7726676\n"
+"func_datedif.xhp\n"
+"par_id9648731\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDDOWN(-45.67)</item> returns -45."
-msgstr "<item type=\"input\">=ROUNDDOWN(-45.67)</item> -45 deebisa."
+msgid "\"d\""
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3729361\n"
+"func_datedif.xhp\n"
+"par_id908841\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDDOWN(987.65;-2)</item> returns 900."
-msgstr "<item type=\"input\">=ROUNDDOWN(987.65;-2)</item> 900 deebisa."
+msgid "Number of whole days between Start date and End date."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3163268\n"
+"func_datedif.xhp\n"
+"par_id8193914\n"
"help.text"
-msgid "<bookmark_value>ROUNDUP function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii ROUNDUP</bookmark_value>"
+msgid "\"m\""
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163268\n"
-"140\n"
+"func_datedif.xhp\n"
+"par_id9841608\n"
"help.text"
-msgid "ROUNDUP"
-msgstr "ROUNDUP"
+msgid "Number of whole months between Start date and End date."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163297\n"
-"141\n"
+"func_datedif.xhp\n"
+"par_id2701803\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_AUFRUNDEN\">Rounds a number up, away from zero, to a certain precision.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_AUFRUNDEN\">Lakkoofsa ol, zeeroo irraa, sirrummaa wayiitti.</ahelp>"
+msgid "\"y\""
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163315\n"
-"142\n"
+"func_datedif.xhp\n"
+"par_id2136295\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Number of whole years between Start date and End date."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163328\n"
-"143\n"
+"func_datedif.xhp\n"
+"par_id9200109\n"
"help.text"
-msgid "ROUNDUP(Number; Count)"
-msgstr "ROUNDUP(Lakkoofsa;lakkaa'uu)"
+msgid "\"ym\""
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163342\n"
-"144\n"
+"func_datedif.xhp\n"
+"par_id4186223\n"
"help.text"
-msgid "Returns <emph>Number</emph> rounded up (away from zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds up to an integer. If Count is negative, the function rounds up to the next 10, 100, 1000, etc."
-msgstr "<emph>Lakkoofsa</emph> iddoo deesimaalii <emph>Lakkaa'uuf</emph> gara oliitti siiqfame(zeeroo irraa) deebisa. Yoo lakkaa'umsi haqame ykn zeeroo ta'e,faankishiniin gara intijariitti ol siiqa. Yoo lakkaa'umsi negatiivii ta'e,faankishiniin gara 10, 100, 1000, kkf dhiyootti ol siiqfama."
+msgid "Number of whole months when subtracting years from the difference of Start date and End date."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9573961\n"
+"func_datedif.xhp\n"
+"par_id5766472\n"
"help.text"
-msgid "This function rounds away from zero. See ROUNDDOWN and ROUND for alternatives."
-msgstr "Faankishiniin kun zeeroo irraa siiqfama. Filannoodhaaf ROUNDDOWN fi ROUND ilaalaa."
+msgid "\"md\""
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163381\n"
-"146\n"
+"func_datedif.xhp\n"
+"par_id1491134\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Number of whole days when subtracting years and months from the difference of Start date and End date."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144786\n"
-"147\n"
+"func_datedif.xhp\n"
+"par_id5866472\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDUP(1.1111;2)</item> returns 1.12."
-msgstr "<item type=\"input\">=ROUNDUP(1.1111;2)</item> 1.12 deebisa."
+msgid "\"yd\""
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id7700430\n"
+"func_datedif.xhp\n"
+"par_id1591134\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDUP(1.2345;1)</item> returns 1.3."
-msgstr "<item type=\"input\">=ROUNDUP(1.2345;1)</item> 1.3 deebisa."
+msgid "Number of whole days when subtracting years from the difference of Start date and End date."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1180455\n"
+"func_datedif.xhp\n"
+"hd_id3147477\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDUP(45.67;0)</item> returns 46."
-msgstr "<item type=\"input\">=ROUNDUP(45.67;0)</item> 46 deebisa."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3405560\n"
+"func_datedif.xhp\n"
+"par_id3152589\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDUP(-45.67)</item> returns -46."
-msgstr "<item type=\"input\">=ROUNDUP(-45.67)</item> -46 deebisa."
+msgid "Birthday calculation. A man was born on 1974-04-17. Today is 2012-06-13."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3409527\n"
+"func_datedif.xhp\n"
+"par_id3252589\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDUP(987.65;-2)</item> returns 1000."
-msgstr "<item type=\"input\">=ROUNDUP(987.65;-2)</item> 1000 deebisa."
+msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"y\")</item> yields 38. <item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"ym\")</item> yields 1. <item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"md\")</item> yields 27. So he is 38 years, 1 month and 27 days old."
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id5256537\n"
+"func_datedif.xhp\n"
+"par_id3352589\n"
"help.text"
-msgid "<bookmark_value>SEC function</bookmark_value>"
-msgstr "<bookmark_value>FAnkishinii SKEW</bookmark_value>"
+msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"m\")</item> yields 457, he has been living for 457 months."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id5187204\n"
-"149\n"
+"func_datedif.xhp\n"
+"par_id3452589\n"
"help.text"
-msgid "SEC"
+msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"d\")</item> yields 13937, he has been living for 13937 days."
msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9954962\n"
-"150\n"
+"func_datedif.xhp\n"
+"par_id3752589\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SECANT\">Returns the secant of the given angle (in radians). The secant of an angle is equivalent to 1 divided by the cosine of that angle</ahelp>"
+msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"yd\")</item> yields 57, his birthday was 57 days ago."
msgstr ""
-#: 04060106.xhp
+#: func_datevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id422243\n"
-"151\n"
+"func_datevalue.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "DATEVALUE"
+msgstr "DATEVALUE"
-#: 04060106.xhp
-#, fuzzy
+#: func_datevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id2055913\n"
-"152\n"
+"func_datevalue.xhp\n"
+"bm_id3145621\n"
"help.text"
-msgid "SEC(Number)"
-msgstr "SIN(Number)"
+msgid "<bookmark_value>DATEVALUE function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii DATEVALUE</bookmark_value>"
-#: 04060106.xhp
-#, fuzzy
+#: func_datevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9568170\n"
-"153\n"
+"func_datevalue.xhp\n"
+"hd_id3145621\n"
+"18\n"
"help.text"
-msgid "Returns the (trigonometric) secant of <emph>Number</emph>, the angle in radians."
-msgstr "sine tiriignoomeetirii<emph>lakkoofsaa</emph>,kofa raadiyaanidhaan deebisa."
+msgid "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp\">DATEVALUE</link></variable>"
+msgstr "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp\">DATEVALUE</link></variable>"
-#: 04060106.xhp
-#, fuzzy
+#: func_datevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9047465\n"
+"func_datevalue.xhp\n"
+"par_id3145087\n"
+"19\n"
"help.text"
-msgid "To return the secant of an angle in degrees, use the RADIANS function."
-msgstr "Sine kofaa diigriidhaan deebisuuf,faankishinii RADIAN fayyadamaa."
+msgid "<ahelp hid=\"HID_FUNC_DATWERT\">Returns the internal date number for text in quotes.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DATWERT\">Barruu waraabbii keessaaf lakkoofsa guyyaa keessa deebisi.</ahelp>"
-#: 04060106.xhp
+#: func_datevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id9878918\n"
-"154\n"
+"func_datevalue.xhp\n"
+"par_id3149281\n"
+"20\n"
"help.text"
-msgid "Examples"
-msgstr "Fakkeenyawwan"
+msgid "The internal date number is returned as a number. The number is determined by the date system that is used by $[officename] to calculate dates."
+msgstr "Lakkoofsi guyyaa keessaa akkaa lakkoofsatti deebi'a.Lakkoofsi kunis kan murteeffamu sirna aduu isaa $[officename] aduu shallaguuf ta'eeni."
-#: 04060106.xhp
+#: func_datevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6935513\n"
-"155\n"
+"func_datevalue.xhp\n"
+"par_id0119200903491982\n"
"help.text"
-msgid "<item type=\"input\">=SEC(PI()/4)</item> returns approximately 1.4142135624, the inverse of the cosine of PI/4 radians."
-msgstr ""
+msgid "If the text string also includes a time value, DATEVALUE only returns the integer part of the conversion."
+msgstr "Yoo dirri barruu gatii sa'aatii of keessatti qabaate, GATIIBARAA hiraa intijarii qofa jijjiirraa keessaa deebisa."
-#: 04060106.xhp
-#, fuzzy
+#: func_datevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3954287\n"
-"156\n"
+"func_datevalue.xhp\n"
+"hd_id3156294\n"
+"21\n"
"help.text"
-msgid "<item type=\"input\">=SEC(RADIANS(60))</item> returns 2, the secant of 60 degrees."
-msgstr "<item type=\"input\">=COS(RADIANS(60))</item> cosine diigrii 60,0.5 deebisa."
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060106.xhp
-#, fuzzy
+#: func_datevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id840005\n"
+"func_datevalue.xhp\n"
+"par_id3149268\n"
+"22\n"
"help.text"
-msgid "<bookmark_value>SECH function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii SEARCH</bookmark_value>"
+msgid "DATEVALUE(\"Text\")"
+msgstr "DATEVALUE(\"Barruu\")"
-#: 04060106.xhp
+#: func_datevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id8661934\n"
-"159\n"
+"func_datevalue.xhp\n"
+"par_id3154819\n"
+"23\n"
"help.text"
-msgid "SECH"
-msgstr ""
+msgid "<emph>Text</emph> is a valid date expression and must be entered with quotation marks."
+msgstr "<emph>Barruu</emph> himannoo guyyaa siirri fi mallattoo waraabbii wajjin galuu qaba."
-#: 04060106.xhp
-#, fuzzy
+#: func_datevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id408174\n"
-"160\n"
+"func_datevalue.xhp\n"
+"hd_id3156309\n"
+"24\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SECANTHYP\">Returns the hyperbolic secant of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SINHYP\">Sine haayiperpoolikii lakkoofsaa deebisa.</ahelp>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060106.xhp
+#: func_datevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id875988\n"
-"161\n"
+"func_datevalue.xhp\n"
+"par_id3155841\n"
+"25\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<emph>=DATEVALUE(\"1954-07-20\")</emph> yields 19925."
+msgstr "<emph>=DATEVALUE(\"1954-07-20\") </emph> 19925 kenna."
-#: 04060106.xhp
-#, fuzzy
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id4985391\n"
-"162\n"
+"func_day.xhp\n"
+"tit\n"
"help.text"
-msgid "SECH(Number)"
-msgstr "SINH(Lakkoofsa)"
+msgid "DAY"
+msgstr "DAY"
-#: 04060106.xhp
-#, fuzzy
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1952124\n"
-"163\n"
+"func_day.xhp\n"
+"bm_id3147317\n"
"help.text"
-msgid "Returns the hyperbolic secant of <emph>Number</emph>."
-msgstr "Sine haayperpoolikii <emph>lakkoofsaa</emph>deebisa."
+msgid "<bookmark_value>DAY function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii DAY</bookmark_value>"
-#: 04060106.xhp
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id9838764\n"
-"164\n"
+"func_day.xhp\n"
+"hd_id3147317\n"
+"106\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<variable id=\"day\"><link href=\"text/scalc/01/func_day.xhp\">DAY</link></variable>"
+msgstr "<variable id=\"day\"><link href=\"text/scalc/01/func_day.xhp\">DAY</link></variable>"
-#: 04060106.xhp
-#, fuzzy
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1187764\n"
-"165\n"
+"func_day.xhp\n"
+"par_id3147584\n"
+"107\n"
"help.text"
-msgid "<item type=\"input\">=SECH(0)</item> returns 1, the hyperbolic secant of 0."
-msgstr "<item type=\"input\">=SINH(0)</item> Sine haayiperpoolikii 0,0 deebisa."
+msgid "<ahelp hid=\"HID_FUNC_TAG\">Returns the day of given date value.</ahelp> The day is returned as an integer between 1 and 31. You can also enter a negative date/time value."
+msgstr "<ahelp hid=\"HID_FUNC_TAG\">lakkoofsa guyyaa aduu kenna.</ahelp> Guyyaan kunis intiijeeroota 1 hanga 31 gidduutti argamanin deebi'ama.Akkasumas yeroo ykn guyyaa gatii negaativii qabus galchuu dandeessa."
-#: 04060106.xhp
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3144877\n"
+"func_day.xhp\n"
+"hd_id3150487\n"
+"108\n"
"help.text"
-msgid "<bookmark_value>SIN function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii SIN</bookmark_value>"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060106.xhp
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144877\n"
-"408\n"
+"func_day.xhp\n"
+"par_id3149430\n"
+"109\n"
"help.text"
-msgid "SIN"
-msgstr "SIN"
+msgid "DAY(Number)"
+msgstr "DAY(lakkoofsa)"
-#: 04060106.xhp
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144906\n"
-"409\n"
+"func_day.xhp\n"
+"par_id3149443\n"
+"110\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SIN\">Returns the sine of the given angle (in radians).</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SIN\">sine kofa (raadiyaanidhaan) kennamee deebisa.</ahelp>"
+msgid "<emph>Number</emph>, as a time value, is a decimal, for which the day is to be returned."
+msgstr "<emph>Lakkoofsa</emph>, akka gati yerootti, kurnyee dha,kan guyyaa itti argannu."
-#: 04060106.xhp
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144923\n"
-"410\n"
+"func_day.xhp\n"
+"hd_id3163809\n"
+"111\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Examples"
+msgstr "Fakkeenyawwan"
-#: 04060106.xhp
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144937\n"
-"411\n"
+"func_day.xhp\n"
+"par_id3151200\n"
+"112\n"
"help.text"
-msgid "SIN(Number)"
-msgstr "SIN(Number)"
+msgid "DAY(1) returns 31 (since $[officename] starts counting at zero from December 30, 1899)"
+msgstr "DAY(1) 31 kenna (waan $[officename]'n Mudde 30,1899 irra kaasee lakkaawwii 0 irraa eegaluf)"
-#: 04060106.xhp
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144950\n"
-"412\n"
+"func_day.xhp\n"
+"par_id3154130\n"
+"113\n"
"help.text"
-msgid "Returns the (trigonometric) sine of <emph>Number</emph>, the angle in radians."
-msgstr "sine tiriignoomeetirii<emph>lakkoofsaa</emph>,kofa raadiyaanidhaan deebisa."
+msgid "DAY(NOW()) returns the current day."
+msgstr "DAY(NOW()) guyyaa ammaa kenna."
-#: 04060106.xhp
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8079470\n"
+"func_day.xhp\n"
+"par_id3159190\n"
+"114\n"
"help.text"
-msgid "To return the sine of an angle in degrees, use the RADIANS function."
-msgstr "Sine kofaa diigriidhaan deebisuuf,faankishinii RADIAN fayyadamaa."
+msgid "=DAY(C4) returns 5 if you enter 1901-08-05 in cell C4 (the date value might get formatted differently after you press Enter)."
+msgstr "=DAY(C4) yoo man'ee C4 keessa1901-08-05 galchite 5 kenna(erga ENTER dhibde booda addaan dhangaa'u danda'a)"
-#: 04060106.xhp
+#: func_days.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144969\n"
-"413\n"
+"func_days.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "DAYS"
+msgstr "DAYS"
-#: 04060106.xhp
+#: func_days.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144983\n"
-"414\n"
+"func_days.xhp\n"
+"bm_id3151328\n"
"help.text"
-msgid "<item type=\"input\">=SIN(PI()/2)</item> returns 1, the sine of PI/2 radians."
-msgstr "<item type=\"input\">=SIN(PI()/2)</item> 1 deebisa,sine PI/2 raadiyaanidhaani."
+msgid "<bookmark_value>DAYS function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii DAYS</bookmark_value>"
-#: 04060106.xhp
+#: func_days.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3916440\n"
+"func_days.xhp\n"
+"hd_id3151328\n"
+"116\n"
"help.text"
-msgid "<item type=\"input\">=SIN(RADIANS(30))</item> returns 0.5, the sine of 30 degrees."
-msgstr "<item type=\"input\">=SIN(RADIANS(30))</item> sine diigrii 60, 0.5 deebisa."
+msgid "<variable id=\"days\"><link href=\"text/scalc/01/func_days.xhp\">DAYS</link></variable>"
+msgstr "<variable id=\"days\"><link href=\"text/scalc/01/func_days.xhp\">DAYS</link></variable>"
-#: 04060106.xhp
+#: func_days.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3163397\n"
+"func_days.xhp\n"
+"par_id3155139\n"
+"117\n"
"help.text"
-msgid "<bookmark_value>SINH function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii SINH</bookmark_value>"
+msgid "<ahelp hid=\"HID_FUNC_TAGE\">Calculates the difference between two date values.</ahelp> The result returns the number of days between the two days."
+msgstr "<ahelp hid=\"HID_FUNC_TAGE\">Garagarumma gati guyyaa lama gidduu jiru shallaga.</ahelp> Firiin isaas baay'ina guyyoota lama gidduu jiru kenna."
-#: 04060106.xhp
+#: func_days.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163397\n"
-"418\n"
+"func_days.xhp\n"
+"hd_id3155184\n"
+"118\n"
"help.text"
-msgid "SINH"
-msgstr "SINH"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060106.xhp
+#: func_days.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163426\n"
-"419\n"
+"func_days.xhp\n"
+"par_id3149578\n"
+"119\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SINHYP\">Returns the hyperbolic sine of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SINHYP\">Sine haayiperpoolikii lakkoofsaa deebisa.</ahelp>"
+msgid "DAYS(Date2; Date1)"
+msgstr "DAYS(Aduu2;Aduu1)"
-#: 04060106.xhp
+#: func_days.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163444\n"
-"420\n"
+"func_days.xhp\n"
+"par_id3151376\n"
+"120\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<emph>Date1</emph> is the start date, <emph>Date2</emph> is the end date. If <emph>Date2</emph> is an earlier date than <emph>Date1</emph> the result is a negative number."
+msgstr "<emph>Aduu1</emph> guyyaa jalqabaati, <emph>Aduu2</emph>aduu xumuraati.yoo <emph>Aduu2</emph> n <emph>Aduu1</emph> durse firiin lakkofsa negaativii ta'a."
-#: 04060106.xhp
+#: func_days.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163457\n"
-"421\n"
+"func_days.xhp\n"
+"hd_id3151001\n"
+"121\n"
"help.text"
-msgid "SINH(Number)"
-msgstr "SINH(Lakkoofsa)"
+msgid "Examples"
+msgstr "Fakkeenyawwan"
-#: 04060106.xhp
+#: func_days.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163471\n"
-"422\n"
+"func_days.xhp\n"
+"par_id3159101\n"
+"123\n"
"help.text"
-msgid "Returns the hyperbolic sine of <emph>Number</emph>."
-msgstr "Sine haayperpoolikii <emph>lakkoofsaa</emph>deebisa."
+msgid "=DAYS(\"2010-01-01\"; NOW()) returns the number of days from today until January 1, 2010."
+msgstr "=DAYS(\"2010-01-01\"; NOW()) baay'ina guyyota har'aa hanga amajji 1,2010tti jiranii kenna."
-#: 04060106.xhp
+#: func_days.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163491\n"
-"423\n"
+"func_days.xhp\n"
+"par_id3163720\n"
+"172\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "=DAYS(\"1990-10-10\";\"1980-10-10\") returns 3652 days."
+msgstr "=DAYS(\"1990-10-10\";\"1980-10-10\") guyyoota 3652 kenna."
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163504\n"
-"424\n"
+"func_days360.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=SINH(0)</item> returns 0, the hyperbolic sine of 0."
-msgstr "<item type=\"input\">=SINH(0)</item> Sine haayiperpoolikii 0,0 deebisa."
+msgid "DAYS360"
+msgstr "DAYS360"
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3163596\n"
+"func_days360.xhp\n"
+"bm_id3148555\n"
"help.text"
-msgid "<bookmark_value>SUM function</bookmark_value><bookmark_value>adding;numbers in cell ranges</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii SUM</bookmark_value><bookmark_value>ida'uu;lakkoofsota hammangawwam man'ee keessa</bookmark_value>"
+msgid "<bookmark_value>DAYS360 function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii DAYS360</bookmark_value>"
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163596\n"
-"428\n"
+"func_days360.xhp\n"
+"hd_id3148555\n"
+"124\n"
"help.text"
-msgid "SUM"
-msgstr "SUM"
+msgid "<variable id=\"days360\"><link href=\"text/scalc/01/func_days360.xhp\">DAYS360</link></variable>"
+msgstr "<variable id=\"days360\"><link href=\"text/scalc/01/func_days360.xhp\">DAYS360</link></variable>"
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163625\n"
-"429\n"
+"func_days360.xhp\n"
+"par_id3156032\n"
+"125\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SUMME\">Adds all the numbers in a range of cells.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SUMME\">Lakkoofsota hundaa hammangaa man'eewwanii keessatti ida'a.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_TAGE360\">Returns the difference between two dates based on the 360 day year used in interest calculations.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TAGE360\">Shallagduu dhalaa fayyadamee guyyaa 360 waggaa irratti huda'uudhan garagarummaa guyyoota lama gidduu jiruu kenna.</ahelp>"
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163643\n"
-"430\n"
+"func_days360.xhp\n"
+"hd_id3155347\n"
+"126\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163656\n"
-"431\n"
+"func_days360.xhp\n"
+"par_id3155313\n"
+"127\n"
"help.text"
-msgid "SUM(Number1; Number2; ...; Number30)"
-msgstr "SUM(Lakkoofsa1; Lakkoofsa2; ...; Lakkoofsa30)"
+msgid "DAYS360(\"Date1\"; \"Date2\"; Type)"
+msgstr "DAYS360(\"Aduu1\"; \"Aduu2\"; Akaakuu)"
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163671\n"
-"432\n"
+"func_days360.xhp\n"
+"par_id3145263\n"
+"128\n"
"help.text"
-msgid "<emph>Number 1 to Number 30</emph> are up to 30 arguments whose sum is to be calculated."
-msgstr "<emph>Lakkoofsi1 haga 30</emph> qocolloota haga 30 firiin isaanii shallagamuudha."
+msgid "If <emph>Date2</emph> is earlier than <emph>Date1</emph>, the function will return a negative number."
+msgstr "Yoo <emph>Aduu2</emph>n <emph>Aduu1</emph>, durse fankishiniin negeetivii kenna."
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163690\n"
-"433\n"
+"func_days360.xhp\n"
+"par_id3151064\n"
+"129\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "The optional argument <emph>Type</emph> determines the type of difference calculation. If Type = 0 or if the argument is missing, the US method (NASD, National Association of Securities Dealers) is used. If Type <> 0, the European method is used."
+msgstr "Qajeelfamni dirqaalee <emph>Akaakuu</emph> jedhu gosa shallaggii garagaraa murteessa.Yoo akaakuu=0 ta'e ykn qajeelfamnii haaqame tooftaa US (NASD, National Association of Securities Dealers) jedhamutti fayyadamna.Yoo akaakuu <> 0 ta'e tooftaa Awurooppaatti fayyadamna."
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163704\n"
-"434\n"
+"func_days360.xhp\n"
+"hd_id3148641\n"
+"130\n"
"help.text"
-msgid "If you enter the numbers <item type=\"input\">2</item>; <item type=\"input\">3 </item>and <item type=\"input\">4</item> in the Number 1; 2 and 3 text boxes, 9 will be returned as the result."
-msgstr "Yoo lakkoofsota <item type=\"input\">2</item>;<item type=\"input\">3</item> fi <item type=\"input\">4</item> lakkoofsa 1;2 fi 3 sanduuqa barruu keessa galchite,9 akka firiitti deebi'a."
+msgid "Examples"
+msgstr "Fakkeenyawwan"
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151740\n"
-"556\n"
+"func_days360.xhp\n"
+"par_id3156348\n"
+"132\n"
"help.text"
-msgid "<item type=\"input\">=SUM(A1;A3;B5)</item> calculates the sum of the three cells. <item type=\"input\">=SUM (A1:E10)</item> calculates the sum of all cells in the A1 to E10 cell range."
-msgstr "<item type=\"input\">=SUM(A1;A3;B5)</item> Ida'ama man'eewwan sadii shallaga.<item type=\"input\">=SUM (A1:E10)</item> ida'ama man'eewwan hundaa hammangaa man'ee A1 haga E10 keessa jiran shallaga."
+msgid "=DAYS360(\"2000-01-01\";NOW()) returns the number of interest days from January 1, 2000 until today."
+msgstr "=DAYS360(\"2000-01-01\";NOW()) lakkoofsa guyyoota dhalaa Amajjii 1, 2000 hanga har'aatti jiranii kenna."
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151756\n"
-"619\n"
+"func_eastersunday.xhp\n"
+"tit\n"
"help.text"
-msgid "Conditions linked by AND can be used with the function SUM() in the following manner:"
-msgstr "Haalonni AND dhaan walqabatan faankishinii SUM() wajjin haala armaan gadiitti fayyadamuu danda'ama:"
+msgid "EASTERSUNDAY"
+msgstr "EASTERSUNDAY"
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151774\n"
-"620\n"
+"func_eastersunday.xhp\n"
+"bm_id3152960\n"
"help.text"
-msgid "Example assumption: You have entered invoices into a table. Column A contains the date value of the invoice, column B the amounts. You want to find a formula that you can use to return the total of all amounts only for a specific month, e.g. only the amount for the period >=2008-01-01 to <2008-02-01. The range with the date values covers A1:A40, the range containing the amounts to be totaled is B1:B40. C1 contains the start date, 2008<item type=\"input\">-01-01</item>, of the invoices to be included and C2 the date, 2008<item type=\"input\">-02-01</item>, that is no longer included."
-msgstr "Fakkeenya tilmaamaa: Beeksisa waan bitamee gabatee keessatti galchiteetta. Tarjaan A gatii guyyaa kan beeksisa waan bitamee ofkeessaa qaba, tarjaan B hammaadha. Foormulaa barbaaduu barbaadde kan hamma walii galaa keessaa ji'a murtaa'e qofaa fayyadu deebisa,fkf hamma yeroodhaaf qofa >=2008-01-01 to <2008-02-01. The range with the date values covers A1:A40, the range containing the amounts to be totaled is B1:B40. C1 contains the start date, 2008<item type=\"input\">-01-01</item> beeksisa waan bitamee dabalatee fi C2 guyyaa, 2008<item type=\"input\">-02-01</item> sun baay'ee itti hin dabalamu."
+msgid "<bookmark_value>EASTERSUNDAY function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii EASTERSUNDAY</bookmark_value>"
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151799\n"
-"621\n"
+"func_eastersunday.xhp\n"
+"hd_id3152960\n"
+"175\n"
"help.text"
-msgid "Enter the following formula as an array formula:"
-msgstr "Foormulaa armaan gadii akka foormulaa waraantotti galchi:"
+msgid "<variable id=\"eastersunday\"><link href=\"text/scalc/01/func_eastersunday.xhp\">EASTERSUNDAY</link></variable>"
+msgstr "<variable id=\"eastersunday\"><link href=\"text/scalc/01/func_eastersunday.xhp\">EASTERSUNDAY</link></variable>"
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151813\n"
-"622\n"
+"func_eastersunday.xhp\n"
+"par_id3154570\n"
+"176\n"
"help.text"
-msgid "<item type=\"input\">=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)</item>"
-msgstr "<item type=\"input\">=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)</item>"
+msgid "<ahelp hid=\"HID_FUNC_OSTERSONNTAG\">Returns the date of Easter Sunday for the entered year.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_OSTERSONNTAG\">Waggaa galchiteef aduu dilbata faasikaa kenna.</ahelp>"
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151828\n"
-"623\n"
+"func_eastersunday.xhp\n"
+"hd_id9460127\n"
"help.text"
-msgid "In order to enter this as an array formula, you must press the Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Command </caseinline><defaultinline>+ Ctrl</defaultinline></switchinline>+ Enter keys instead of simply pressing the Enter key to close the formula. The formula will then be shown in the <emph>Formula</emph> bar enclosed in braces."
-msgstr "Kana akka foormulaa waraantootti galchuuf, foormulaa cufuus salphumatti furtuu Enter dhiibuu irra Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Ajaja</caseinline><defaultinline>+ Ctrl</defaultinline></switchinline> + Enter dirqama dhiibuu qabda. Foormulaan <emph>Foormulaa</emph> baarii kan cuftuu keessatti cufame keessatti agarsiifama."
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151869\n"
-"624\n"
+"func_eastersunday.xhp\n"
+"par_id2113711\n"
"help.text"
-msgid "{=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)}"
-msgstr "{=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)}"
+msgid "EASTERSUNDAY(Year)"
+msgstr "EASTERSUNDAY(Waggaa)"
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151884\n"
-"625\n"
+"func_eastersunday.xhp\n"
+"par_id3938413\n"
"help.text"
-msgid "The formula is based on the fact that the result of a comparison is 1 if the criterion is met and 0 if it is not met. The individual comparison results will be treated as an array and used in matrix multiplication, and at the end the individual values will be totaled to give the result matrix."
-msgstr "Foormulaan dhugaa irratti hundaa'udhaan firiin walii galaa kan dorgomsiifame yoo ulaagaan qaqabame 1 fi yoo hin qaqqababne 0 ta'a. Tokkoon tokkoo waldorgomsiifame firii akka waraantotti fudhatame fi baay'isaa matririkis fayyadamee, fi dhuma irratti gatiin tokkoon tokkoo firii maatriksii kennuuf ni ida'ama."
+msgid "<emph>Year</emph> is an integer between 1583 and 9956 or 0 and 99. You can also calculate other holidays by simple addition with this date."
+msgstr "<emph>Waggaa</emph> n intijeerii 1583 fi 9956 ykn 0 fi 99 gidduutti argamu.Akkasumas haala salphaadhan guyyaa kanatti ida'uudhan guyyoota ayyaanaa biroo shallaguu dandessa."
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3151957\n"
+"func_eastersunday.xhp\n"
+"par_id3156156\n"
+"177\n"
"help.text"
-msgid "<bookmark_value>SUMIF function</bookmark_value><bookmark_value>adding;specified numbers</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii SUMIF</bookmark_value><bookmark_value>ida'uu;lakkoofsota adda ba'an</bookmark_value>"
+msgid "Easter Monday = EASTERSUNDAY(Year) + 1"
+msgstr "Wiixata Faasikaa = EASTERSUNDAY(Waggaa) + 1"
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3151957\n"
-"436\n"
+"func_eastersunday.xhp\n"
+"par_id3147521\n"
+"178\n"
"help.text"
-msgid "SUMIF"
-msgstr "SUMIF"
+msgid "Good Friday = EASTERSUNDAY(Year) - 2"
+msgstr "Ayyaana Fannoo =EASTERSUNDAY(Waggaa) - 2"
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151986\n"
-"437\n"
+"func_eastersunday.xhp\n"
+"par_id3146072\n"
+"179\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SUMMEWENN\">Adds the cells specified by a given criteria.</ahelp> This function is used to browse a range when you search for a certain value."
-msgstr "<ahelp hid=\"HID_FUNC_SUMMEWENN\">Man'eewwan adda ba'e ulaagaa kennameen ida'a.</ahelp> Faankishiniin kun yeroo gatii wayiitiif barbaaddu hammangaa sakkata'uuf fayyada."
+msgid "Pentecost Sunday = EASTERSUNDAY(Year) + 49"
+msgstr "Dilbata Phenxeeqoosxee = EASTERSUNDAY(Waggaa) + 49"
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152015\n"
-"438\n"
+"func_eastersunday.xhp\n"
+"par_id3149553\n"
+"180\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "Pentecost Monday = EASTERSUNDAY(Year) + 50"
+msgstr "Wiixata pheenxeeqoonxee EASTERSUNDAY(Waggaa) + 5"
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152028\n"
-"439\n"
+"func_eastersunday.xhp\n"
+"hd_id3155120\n"
+"181\n"
"help.text"
-msgid "SUMIF(Range; Criteria; SumRange)"
-msgstr "SUMIF(Hammangaa; Ulaagaa; Ida'amaHammangaa)"
+msgid "Examples"
+msgstr "Fakkeenyawwan"
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152043\n"
-"440\n"
+"func_eastersunday.xhp\n"
+"par_id3154472\n"
+"182\n"
"help.text"
-msgid "<emph>Range</emph> is the range to which the criteria are to be applied."
-msgstr "<emph>Hammagni</emph> hammanga ulaagaan itti hojiirra oolfameedha."
+msgid "=EASTERSUNDAY(2000) returns 2000-04-23."
+msgstr "=EASTERSUNDAY(2000) 2000-04-23 kenna."
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152062\n"
-"441\n"
+"func_eastersunday.xhp\n"
+"par_id3150940\n"
+"184\n"
"help.text"
-msgid "<emph>Criteria</emph> is the cell in which the search criterion is shown, or the search criterion itself. If the criteria is written into the formula, it has to be surrounded by double quotes."
-msgstr "<emph>Ulaagaan</emph> man'ee kan ulaagaan barbaachaa ykn ulaagaan barbaachaa matuma isaatiin, keessatti mul'atuudha."
+msgid "EASTERSUNDAY(2000)+49 returns the internal serial number 36688. The result is 2000-06-11. Format the serial date number as a date, for example in the format YYYY-MM-DD."
+msgstr "EASTERSUNDAY(2000)+49n lakkofsa eenyummaa kessaa 36688 kenna.Firiin 2000-06-11.Eenyummaa aduu akkaa lakkoofsa aduutti dhaangessi,fakkenyaaf akkaa dhaangessa YYYY-MM-DD tti."
-#: 04060106.xhp
+#: func_edate.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152083\n"
-"442\n"
+"func_edate.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>SumRange</emph> is the range from which values are summed. If this parameter has not been indicated, the values found in the Range are summed."
-msgstr "<emph>Hammangaanida'amaa</emph> hammangaa kan gatiin irraa ida'amuudha. Yoo jijjiiramaan kun mul'achuu baate, gatiin hammangaa keessatti argame ni ida'ama."
+msgid "EDATE"
+msgstr "EDATE"
-#: 04060106.xhp
+#: func_edate.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8347422\n"
+"func_edate.xhp\n"
+"bm_id3151184\n"
"help.text"
-msgid "SUMIF supports the reference concatenation operator (~) only in the Criteria parameter, and only if the optional SumRange parameter is not given."
-msgstr "SUMIF wabii diraa ogeeyyii(~) ulaagaa jijjiiramaa keessa qofaa, fi yoo jijjiiramaa filannoo Hammanga ida'amaa hin kennamne deegara."
+msgid "<bookmark_value>EDATE function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii EDATE</bookmark_value>"
-#: 04060106.xhp
+#: func_edate.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152110\n"
-"443\n"
+"func_edate.xhp\n"
+"hd_id3151184\n"
+"213\n"
+"help.text"
+msgid "<variable id=\"edate\"><link href=\"text/scalc/01/func_edate.xhp\">EDATE</link></variable>"
+msgstr "<variable id=\"edate\"><link href=\"text/scalc/01/func_edate.xhp\">EDATE</link></variable>"
+
+#: func_edate.xhp
+msgctxt ""
+"func_edate.xhp\n"
+"par_id3150880\n"
+"214\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_EDATE\">The result is a date which is a number of m<emph>onths</emph> away from the <emph>start date</emph>. Only months are considered; days are not used for calculation.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_EDATE\">Firiin guyyaa <emph>ji'oota</emph> bay'ee <emph>aduu jalqabaa</emph> irraa fagaatu ta'a.Ji'oota qofa irratti xiyyefanna,guyyootni shallagiif hin barbachisaan.</ahelp>"
+
+#: func_edate.xhp
+msgctxt ""
+"func_edate.xhp\n"
+"hd_id3154647\n"
+"215\n"
+"help.text"
+msgid "Syntax"
+msgstr "Caasima"
+
+#: func_edate.xhp
+msgctxt ""
+"func_edate.xhp\n"
+"par_id3153212\n"
+"216\n"
+"help.text"
+msgid "EDATE(StartDate; Months)"
+msgstr "EDATE(AduuJalqabaa; Ji'oota)"
+
+#: func_edate.xhp
+msgctxt ""
+"func_edate.xhp\n"
+"par_id3146860\n"
+"217\n"
+"help.text"
+msgid "<emph>StartDate</emph> is a date."
+msgstr "<emph>AduuJalqabaa</emph> aduu dha."
+
+#: func_edate.xhp
+msgctxt ""
+"func_edate.xhp\n"
+"par_id3152929\n"
+"218\n"
+"help.text"
+msgid "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
+msgstr "<emph>Ji'oota</emph> jechuun lakkoofsa ji'oota aduu jalqabaa dura(negaatiivii) ykn boodaa(pozaativii) jiraniiti."
+
+#: func_edate.xhp
+msgctxt ""
+"func_edate.xhp\n"
+"hd_id3151289\n"
+"219\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060106.xhp
+#: func_edate.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152148\n"
-"626\n"
+"func_edate.xhp\n"
+"par_id3155845\n"
+"220\n"
"help.text"
-msgid "To sum up only negative numbers: <item type=\"input\">=SUMIF(A1:A10;\"<0\")</item>"
-msgstr "Lakkoofsota negatiivii qofa ida'uuf: <item type=\"input\">=SUMIF(A1:A10;\"<0\")</item>"
+msgid "What date is one month prior to 3.31.2001?"
+msgstr "Aduun ji'a tokko 3.31.2001 dura jiru meeqa?"
-#: 04060106.xhp
+#: func_edate.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6670125\n"
+"func_edate.xhp\n"
+"par_id3155999\n"
+"221\n"
"help.text"
-msgid "<item type=\"input\">=SUMIF(A1:A10;\">0\";B1:10)</item> - sums values from the range B1:B10 only if the corresponding values in the range A1:A10 are >0."
-msgstr "<item type=\"input\">=SUMIF(A1:A10;\">0\";B1:10)</item> - gatii hammanga B1:B2 irraa eegalee yoo gatiin gitu hammanga keessaa A1:A2 >0 ta'e ida'a."
+msgid "<item type=\"input\">=EDATE(3.31.2001;-1)</item> returns 2.28.2001."
+msgstr "<item type=\"input\">=EDATE(3.31.2001;-1)</item> 2.28.2001 kenna."
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6062196\n"
+"func_eomonth.xhp\n"
+"tit\n"
"help.text"
-msgid "See COUNTIF() for some more syntax examples that can be used with SUMIF()."
-msgstr "COUNTIF() caasima waa xiqqoo caaluuf fakkeenyaaf kan SUMIF() waliin fayyadame ilaali."
+msgid "EOMONTH"
+msgstr "EOMONTH"
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3152195\n"
+"func_eomonth.xhp\n"
+"bm_id3150991\n"
"help.text"
-msgid "<bookmark_value>TAN function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii TAN</bookmark_value>"
+msgid "<bookmark_value>EOMONTH function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii EOMONTH</bookmark_value>"
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152195\n"
-"446\n"
+"func_eomonth.xhp\n"
+"hd_id3150991\n"
+"231\n"
"help.text"
-msgid "TAN"
-msgstr "TAN"
+msgid "<variable id=\"eomonth\"><link href=\"text/scalc/01/func_eomonth.xhp\">EOMONTH</link></variable>"
+msgstr "<variable id=\"eomonth\"><link href=\"text/scalc/01/func_eomonth.xhp\">EOMONTH</link></variable>"
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152224\n"
-"447\n"
+"func_eomonth.xhp\n"
+"par_id3152766\n"
+"232\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TAN\">Returns the tangent of the given angle (in radians).</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TAN\">Tangent kofa(raadiyaanidhaab)kenname deebisa.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_EOMONTH\">Returns the date of the last day of a month which falls m<emph>onths</emph> away from the s<emph>tart date</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_EOMONTH\">Aduu guyyaa xumuraa ji'a kan <emph>ji'oota</emph> bay'ee <emph>guyyaa jalqabaa</emph> dura jiruu kenna.</ahelp>"
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152242\n"
-"448\n"
+"func_eomonth.xhp\n"
+"hd_id3150597\n"
+"233\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152255\n"
-"449\n"
+"func_eomonth.xhp\n"
+"par_id3150351\n"
+"234\n"
"help.text"
-msgid "TAN(Number)"
-msgstr "TAN(Lakkoofsa)"
+msgid "EOMONTH(StartDate; Months)"
+msgstr "EOMONTH(AduuJalqabaa; Ji'oota)"
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152269\n"
-"450\n"
+"func_eomonth.xhp\n"
+"par_id3146787\n"
+"235\n"
"help.text"
-msgid "Returns the (trigonometric) tangent of <emph>Number</emph>, the angle in radians."
-msgstr "Tangent <emph>Lakkoofsaa</emph> deebisa, kofti raadiyaanidhaani."
+msgid "<emph>StartDate</emph> is a date (the starting point of the calculation)."
+msgstr "<emph>AduuJalqabaa</emph> n aduu(tuqaa ka'umsa shallaggiti)."
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5752128\n"
+"func_eomonth.xhp\n"
+"par_id3155615\n"
+"236\n"
"help.text"
-msgid "To return the tangent of an angle in degrees, use the RADIANS function."
-msgstr "Tangent kofaa diigriidhaan deebisuuf,faankishinii RADIAN fayyadamaa."
+msgid "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
+msgstr "<emph>Ji'oota</emph> jechuun lakkoofsa ji'oota aduu jalqabaa dura(negaatiivii) ykn boodaa(pozaativii) jiraniiti."
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152287\n"
-"451\n"
+"func_eomonth.xhp\n"
+"hd_id3156335\n"
+"237\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152301\n"
-"452\n"
+"func_eomonth.xhp\n"
+"par_id3154829\n"
+"238\n"
"help.text"
-msgid "<item type=\"input\">=TAN(PI()/4) </item>returns 1, the tangent of PI/4 radians."
-msgstr "<item type=\"input\">=TAN(PI()/4) </item>tangent kan raadiyaanii PI/4,1 deebisa"
+msgid "What is the last day of the month that falls 6 months after September 14 2001?"
+msgstr "Guyyaan xumura ji'aa kan Fulbaana 14,2001 irraa ji'a 6 booda dhufuu maalinni?"
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1804864\n"
+"func_eomonth.xhp\n"
+"par_id3156143\n"
+"239\n"
"help.text"
-msgid "<item type=\"input\">=TAN(RADIANS(45))</item> returns 1, the tangent of 45 degrees."
-msgstr "<item type=\"input\">=TAN(RADIANS(45))</item> tangent diigrii 45, 1 deebisa."
+msgid "<item type=\"input\">=EOMONTH(DATE(2001;9;14);6)</item> returns the serial number 37346. Formatted as a date, this is 2002-03-31."
+msgstr ""
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3165434\n"
+"func_eomonth.xhp\n"
+"par_id3156144\n"
+"239\n"
"help.text"
-msgid "<bookmark_value>TANH function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii TANH</bookmark_value>"
+msgid "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If the date is given as string, it has to be in ISO format."
+msgstr ""
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3165434\n"
-"456\n"
+"func_hour.xhp\n"
+"tit\n"
"help.text"
-msgid "TANH"
-msgstr "TANH"
+msgid "HOUR"
+msgstr "sa'aa"
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165462\n"
-"457\n"
+"func_hour.xhp\n"
+"bm_id3154725\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TANHYP\">Returns the hyperbolic tangent of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TANHYP\">Tangent haayperpoolikii lakkoofsaa deebisa.</ahelp>"
+msgid "<bookmark_value>HOUR function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii HOUR</bookmark_value>"
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3165480\n"
-"458\n"
+"func_hour.xhp\n"
+"hd_id3154725\n"
+"96\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<variable id=\"hour\"><link href=\"text/scalc/01/func_hour.xhp\">HOUR</link></variable>"
+msgstr "<variable id=\"hour\"><link href=\"text/scalc/01/func_hour.xhp\">HOUR</link></variable>"
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165494\n"
-"459\n"
+"func_hour.xhp\n"
+"par_id3149747\n"
+"97\n"
"help.text"
-msgid "TANH(Number)"
-msgstr "TANH(Lakkoofsa)"
+msgid "<ahelp hid=\"HID_FUNC_STUNDE\">Returns the hour for a given time value.</ahelp> The hour is returned as an integer between 0 and 23."
+msgstr "<ahelp hid=\"HID_FUNC_STUNDE\">Gatii yerootif sa'aa kenna.</ahelp> Sa'aatiin intijeeri 0 fi 23 gidduu jiruun kennama."
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165508\n"
-"460\n"
+"func_hour.xhp\n"
+"hd_id3149338\n"
+"98\n"
"help.text"
-msgid "Returns the hyperbolic tangent of <emph>Number</emph>."
-msgstr "Tangent haayiperpoolikii <emph>Lakkoofsaa</emph> deebisa."
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3165527\n"
-"461\n"
+"func_hour.xhp\n"
+"par_id3150637\n"
+"99\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "HOUR(Number)"
+msgstr "HOUR(lakkoofsa)"
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165541\n"
-"462\n"
+"func_hour.xhp\n"
+"par_id3147547\n"
+"100\n"
"help.text"
-msgid "<item type=\"input\">=TANH(0)</item> returns 0, the hyperbolic tangent of 0."
-msgstr "<item type=\"input\">=TANH(0)</item> tangent haayperpoolikii 0, 0 deebisa."
+msgid "<emph>Number</emph>, as a time value, is a decimal, for which the hour is to be returned."
+msgstr "<emph>Lakkoofsa</emph>, akka gati yerootti, kurnyee dha,kan sa'aan itti kennamu."
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3165633\n"
+"func_hour.xhp\n"
+"hd_id3153264\n"
+"101\n"
"help.text"
-msgid "<bookmark_value>AutoFilter function; subtotals</bookmark_value><bookmark_value>sums;of filtered data</bookmark_value><bookmark_value>filtered data; sums</bookmark_value><bookmark_value>SUBTOTAL function</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii ofmaa calallii; hundamta xiqqaa</bookmark_value><bookmark_value>ida'amtoota;kan deetaa calalame</bookmark_value><bookmark_value>deetaa calalame; ida'amtoota</bookmark_value><bookmark_value>Faankishinii SUBTOTAL</bookmark_value>"
+msgid "Examples"
+msgstr "Fakkeenyawwan"
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3165633\n"
-"466\n"
+"func_hour.xhp\n"
+"par_id3159215\n"
+"103\n"
"help.text"
-msgid "SUBTOTAL"
-msgstr "SUBTOTAL"
+msgid "<item type=\"input\">=HOUR(NOW())</item> returns the current hour"
+msgstr "<item type=\"input\">=HOUR(NOW())</item> sa'aa ammaa kenna."
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165682\n"
-"467\n"
+"func_hour.xhp\n"
+"par_id3145152\n"
+"104\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TEILERGEBNIS\">Calculates subtotals.</ahelp> If a range already contains subtotals, these are not used for further calculations. Use this function with the AutoFilters to take only the filtered records into account."
-msgstr "<ahelp hid=\"HID_FUNC_TEILERGEBNIS\">Walakkeessaa hundaa shallaguu.</ahelp> Yoo hammangaan dursee walakkeessa hundaa ofkeessaa qabaate, shallaggii biraatiif hin fayyadan. Galmee calalame gara kontootti qofa fudhachuuf faankishinii kana ofmaacalallii wajjin fayyadami."
+msgid "<item type=\"input\">=HOUR(C4)</item> returns 17 if the contents of C4 = <item type=\"input\">17:20:00</item>."
+msgstr "<item type=\"input\">=HOUR(C4)</item> yoo C4 =<item type=\"input\">17:20:00</item> ta'e 17 kenna."
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3165704\n"
-"495\n"
+"func_hour.xhp\n"
+"par_id3154188\n"
+"105\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<link href=\"text/scalc/01/04060102.xhp\" name=\"YEAR\">YEAR</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"NOW\">NOW</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MINUTE\">MINUTE</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MONTH\">MONTH</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"DAY\">DAY</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"WEEKDAY\">WEEKDAY</link>."
+msgstr "<link href=\"text/scalc/01/04060102.xhp\" name=\"YEAR\">YEAR</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"NOW\">NOW</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MINUTE\">MINUTE</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MONTH\">MONTH</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"DAY\">DAY</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"WEEKDAY\">WEEKDAY</link>."
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165717\n"
-"496\n"
+"func_minute.xhp\n"
+"tit\n"
"help.text"
-msgid "SUBTOTAL(Function; Range)"
-msgstr "SUBTOTAL(Faankishinii; Hammangaa)"
+msgid "MINUTE"
+msgstr "MINUTE"
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165731\n"
-"497\n"
+"func_minute.xhp\n"
+"bm_id3149803\n"
"help.text"
-msgid "<emph>Function</emph> is a number that stands for one of the following functions:"
-msgstr "<emph>Faankishiniin </emph> lakkoofsa faankishinoota armaan gadii keessaa tokkoof dhaabbatuudha."
+msgid "<bookmark_value>MINUTE function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii MINUTE</bookmark_value>"
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165782\n"
-"469\n"
+"func_minute.xhp\n"
+"hd_id3149803\n"
+"66\n"
"help.text"
-msgid "Function index"
-msgstr "Kasaa faankishinii"
+msgid "<variable id=\"minute\"><link href=\"text/scalc/01/func_minute.xhp\">MINUTE</link></variable>"
+msgstr "<variable id=\"minute\"><link href=\"text/scalc/01/func_minute.xhp\">MINUTE</link></variable>"
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165806\n"
-"470\n"
+"func_minute.xhp\n"
+"par_id3148988\n"
+"67\n"
"help.text"
-msgid "Function"
-msgstr "Faankishinii"
+msgid "<ahelp hid=\"HID_FUNC_MINUTE\">Calculates the minute for an internal time value.</ahelp> The minute is returned as a number between 0 and 59."
+msgstr "<ahelp hid=\"HID_FUNC_MINUTE\">Gatii yeroo kessatif daqiiqaa shallaga</ahelp>Daqiiqaan lakkoofsa 0 fi 59 gidduu jiruun kennama."
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165833\n"
-"471\n"
+"func_minute.xhp\n"
+"hd_id3154343\n"
+"68\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165856\n"
-"472\n"
+"func_minute.xhp\n"
+"par_id3148660\n"
+"69\n"
"help.text"
-msgid "AVERAGE"
-msgstr "AVERAGE"
+msgid "MINUTE(Number)"
+msgstr "MINUTE(Lakkoofsa)"
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165883\n"
-"473\n"
+"func_minute.xhp\n"
+"par_id3154611\n"
+"70\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<emph>Number</emph>, as a time value, is a decimal number where the number of the minute is to be returned."
+msgstr "<emph>Lakkoofsa</emph>, akka gati yerootti, kurnyee dha,kan daqiiqaan ittin kennamu."
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165906\n"
-"474\n"
+"func_minute.xhp\n"
+"hd_id3145374\n"
+"71\n"
"help.text"
-msgid "COUNT"
-msgstr "COUNT"
+msgid "Examples"
+msgstr "Fakkeenyawwan"
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165933\n"
-"475\n"
+"func_minute.xhp\n"
+"par_id3148463\n"
+"72\n"
"help.text"
-msgid "3"
-msgstr "3"
+msgid "<item type=\"input\">=MINUTE(8.999)</item> returns 58"
+msgstr "<item type=\"input\">=MINUTE(8.999)</item> 58 kenna"
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165956\n"
-"476\n"
+"func_minute.xhp\n"
+"par_id3149419\n"
+"73\n"
"help.text"
-msgid "COUNTA"
-msgstr "COUNTA"
+msgid "<item type=\"input\">=MINUTE(8.9999)</item> returns 59"
+msgstr "<item type=\"input\">=MINUTE(8.9999)</item> 59 kenna"
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165983\n"
-"477\n"
+"func_minute.xhp\n"
+"par_id3144755\n"
+"74\n"
"help.text"
-msgid "4"
-msgstr "4"
+msgid "<item type=\"input\">=MINUTE(NOW())</item> returns the current minute value."
+msgstr "<item type=\"input\">=MINUTE(NOW())</item> gatii daqiiqaa ammaa kenna."
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3166006\n"
-"478\n"
+"func_month.xhp\n"
+"tit\n"
"help.text"
-msgid "MAX"
-msgstr "MAX"
+msgid "MONTH"
+msgstr "MONTH"
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3166033\n"
-"479\n"
+"func_month.xhp\n"
+"bm_id3149936\n"
"help.text"
-msgid "5"
-msgstr "5"
+msgid "<bookmark_value>MONTH function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii MONTH</bookmark_value>"
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3166056\n"
-"480\n"
+"func_month.xhp\n"
+"hd_id3149936\n"
+"76\n"
"help.text"
-msgid "MIN"
-msgstr "MIN"
+msgid "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">MONTH</link></variable>"
+msgstr "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">MONTH</link></variable>"
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143316\n"
-"481\n"
+"func_month.xhp\n"
+"par_id3153538\n"
+"77\n"
"help.text"
-msgid "6"
-msgstr "6"
+msgid "<ahelp hid=\"HID_FUNC_MONAT\">Returns the month for the given date value.</ahelp> The month is returned as an integer between 1 and 12."
+msgstr "<ahelp hid=\"HID_FUNC_MONAT\">gatii aduu kennametiif ji'a kenna.</ahelp> Jiini intiijerii 1 fi 12 gidduu jiranin kennama."
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143339\n"
-"482\n"
+"func_month.xhp\n"
+"hd_id3149517\n"
+"78\n"
"help.text"
-msgid "PRODUCT"
-msgstr "PRODUCT"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143366\n"
-"483\n"
+"func_month.xhp\n"
+"par_id3145602\n"
+"79\n"
"help.text"
-msgid "7"
-msgstr "7"
+msgid "MONTH(Number)"
+msgstr "MONTH(Lakkoofsa)"
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143389\n"
-"484\n"
+"func_month.xhp\n"
+"par_id3149485\n"
+"80\n"
"help.text"
-msgid "STDEV"
-msgstr "STDEV"
+msgid "<emph>Number</emph>, as a time value, is a decimal for which the month is to be returned."
+msgstr "<emph>Lakkoofsa</emph>, akka gati yerootti, kurnyee dha,kan jiini ittin kennamu."
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143416\n"
-"485\n"
+"func_month.xhp\n"
+"hd_id3153322\n"
+"81\n"
"help.text"
-msgid "8"
-msgstr "8"
+msgid "Examples"
+msgstr "Fakkeenyawwan"
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143439\n"
-"486\n"
+"func_month.xhp\n"
+"par_id3149244\n"
+"83\n"
"help.text"
-msgid "STDEVP"
-msgstr "STDEVP"
+msgid "=MONTH(NOW()) returns the current month."
+msgstr "DAY(NOW()) ji'a ammaa kenna."
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143466\n"
-"487\n"
+"func_month.xhp\n"
+"par_id3154790\n"
+"84\n"
"help.text"
-msgid "9"
-msgstr "9"
+msgid "=MONTH(C4) returns 7 if you enter 2000-07-07 to cell C4 (that date value might get formatted differently after you press Enter)."
+msgstr "=MONTH(C4) yoo man'ee C4tti 2000-07-07 galchite 7 kenna(ergaa Enter dhibde booda haala addaan dhangaa'u danda'a)"
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143489\n"
-"488\n"
+"func_networkdays.xhp\n"
+"tit\n"
"help.text"
-msgid "SUM"
-msgstr "SUM"
+msgid "NETWORKDAYS"
+msgstr "NETWORKDAYS"
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143516\n"
-"489\n"
+"func_networkdays.xhp\n"
+"bm_id3151254\n"
"help.text"
-msgid "10"
-msgstr "10"
+msgid "<bookmark_value>NETWORKDAYS function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii NETWORKDAYS</bookmark_value>"
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143539\n"
-"490\n"
+"func_networkdays.xhp\n"
+"hd_id3151254\n"
+"240\n"
"help.text"
-msgid "VAR"
-msgstr "VAR"
+msgid "<variable id=\"networkdays\"><link href=\"text/scalc/01/func_networkdays.xhp\">NETWORKDAYS</link></variable>"
+msgstr "<variable id=\"networkdays\"><link href=\"text/scalc/01/func_networkdays.xhp\">NETWORKDAYS</link></variable>"
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143566\n"
-"491\n"
+"func_networkdays.xhp\n"
+"par_id3153788\n"
+"241\n"
"help.text"
-msgid "11"
-msgstr "11"
+msgid "<ahelp hid=\"HID_AAI_FUNC_NETWORKDAYS\">Returns the number of workdays between a <emph>start date and an end date</emph>. Holidays can be deducted.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_NETWORKDAYS\">Baay'ina guyyoota hoji <emph>aduu jalqabaa fi aduu xumuraa</emph>gidduu jiran kenna.Guyyotni ayyanaa ni tilmaamamu.</ahelp>"
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143589\n"
-"492\n"
+"func_networkdays.xhp\n"
+"hd_id3148677\n"
+"242\n"
"help.text"
-msgid "VARP"
-msgstr "VARP"
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143606\n"
-"498\n"
+"func_networkdays.xhp\n"
+"par_id3145775\n"
+"243\n"
"help.text"
-msgid "<emph>Range</emph> is the range whose cells are included."
-msgstr "<emph>Hammangaan</emph> hammangaa man'eewwan itti dabalameedha."
+msgid "NETWORKDAYS(StartDate; EndDate; Holidays)"
+msgstr "NETWORKDAYS(AduuJalqabaa; AduuXumuraa; GuyyootaAyyaanaa)"
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3143625\n"
-"499\n"
+"func_networkdays.xhp\n"
+"par_id3153885\n"
+"244\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation."
+msgstr "<emph>Aduu Jalqaba</emph> guyyaa isa shallagin irraa hojjeetamu dha.Guyyyaan calqaba kunis yoo guyyaa hojii ta'e guyyaan kun shallaggii keessatti hammatama."
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143638\n"
-"562\n"
+"func_networkdays.xhp\n"
+"par_id3151110\n"
+"245\n"
"help.text"
-msgid "You have a table in the cell range A1:B5 containing cities in column A and accompanying figures in column B. You have used an AutoFilter so that you only see rows containing the city Hamburg. You want to see the sum of the figures that are displayed; that is, just the subtotal for the filtered rows. In this case the correct formula would be:"
-msgstr "Hammangaa man'ee A1:B5 magaalota tarjaa A keessa fi fakkiiwwan waliin deeman tarjaa B keessa kan qabate gabatee qabaachuu qabna. Ofmaacalalamaa fayyadamte kanaaf tarree magaala Hamburgii qofa qabu argita. Ida'ama fakkaawwanii kan mul'ate arguu barbaaddaa; kunis, hundam hundaa kan tarree calalamee ta'a. As keessatti foormulaa sirrii kan ta'uu qabu:"
+msgid "<emph>EndDate</emph> is the date up until when the calculation is carried out. If the end date is a workday, the day is included in the calculation."
+msgstr "<emph>AduuXumuraa</emph>n aduu hamma shallaggin irraa hojjeetamutti jiruu dha.Aduun xumuraa yoo guyyaa hojii ta'e, guyyaan kun shallaggii keessatti hammatama."
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143658\n"
-"563\n"
+"func_networkdays.xhp\n"
+"par_id3154115\n"
+"246\n"
"help.text"
-msgid "<item type=\"input\">=SUBTOTAL(9;B2:B5)</item>"
-msgstr "<item type=\"input\">=SUBTOTAL(9;B2:B5)</item>"
+msgid "<emph>Holidays</emph> is an optional list of holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
+msgstr "<emph>GuyyootaAyyaanaa</emph> tarree dirqaala guyyaa ayyaanootati. Kunis guyyaa hojiin alaati.Bakka guyyaan ayyaanoota tokko tokkon eeramanitti,hangii man'ee galchi."
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3143672\n"
+"func_networkdays.xhp\n"
+"hd_id3146902\n"
+"247\n"
"help.text"
-msgid "<bookmark_value>Euro; converting</bookmark_value><bookmark_value>EUROCONVERT function</bookmark_value>"
-msgstr "<bookmark_value>Euroo; jijjiiruu</bookmark_value><bookmark_value>Faankishinii CONVERT </bookmark_value>"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3143672\n"
-"564\n"
+"func_networkdays.xhp\n"
+"par_id3154661\n"
+"248\n"
"help.text"
-msgid "EUROCONVERT"
-msgstr "EUROCONVERT"
+msgid "How many workdays fall between 2001-12-15 and 2002-01-15? The start date is located in C3 and the end date in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
+msgstr "Guyyyaawwan hojii 2001-12-15 fi 2002-01-15 gidduutti argaman meeqa? guyyaan jalqaba C3 keessatti argama, guyyaan xumuraa D3 keessatti argama.Man'eewwaan F3 hanga J3 keessaa immo ayyaanoota qillee fi waggaa haaraa itti anuun dhufaan of keessaatti qabata:\"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143708\n"
-"565\n"
+"func_networkdays.xhp\n"
+"par_id3147328\n"
+"249\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_UMRECHNEN\">Converts between old European national currency and to and from Euros.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_UMRECHNEN\">Mahaalaqa biyyoolessaEroopiyaani durii gidduu jijjiiruu fi gara Euroosii fi Euroosii irraa.</ahelp>"
+msgid "=NETWORKDAYS(C3;D3;F3:J3) returns 17 workdays."
+msgstr "=NETWORKDAYS(C3;D3;F3:J3) guyyaawwan hojii 17 kenna."
-#: 04060106.xhp
+#: func_now.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143731\n"
-"566\n"
+"func_now.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Syntax</emph>"
-msgstr "<emph>Caasima</emph>"
+msgid "NOW"
+msgstr "NOW"
-#: 04060106.xhp
+#: func_now.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143748\n"
-"567\n"
+"func_now.xhp\n"
+"bm_id3150521\n"
"help.text"
-msgid "EUROCONVERT(Value; \"From_currency\"; \"To_currency\", full_precision, triangulation_precision)"
-msgstr "EUROCONVERT(Gatii; \"Mahaalaqa_irraa\"; \"Mahaalaqatti\", sirrummaa_guutuu, sirrummaa_rogsadeessuu)"
+msgid "<bookmark_value>NOW function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii NOW</bookmark_value>"
-#: 04060106.xhp
+#: func_now.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143763\n"
-"568\n"
+"func_now.xhp\n"
+"hd_id3150521\n"
+"47\n"
"help.text"
-msgid "<emph>Value</emph> is the amount of the currency to be converted."
-msgstr "<emph>Gatiin</emph> hamma maallaqaa jijjiiramuudha."
+msgid "<variable id=\"now\"><link href=\"text/scalc/01/func_now.xhp\">NOW</link></variable>"
+msgstr "<variable id=\"now\"><link href=\"text/scalc/01/func_now.xhp\">NOW</link></variable>"
-#: 04060106.xhp
+#: func_now.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143782\n"
-"569\n"
+"func_now.xhp\n"
+"par_id3148829\n"
+"48\n"
"help.text"
-msgid "<emph>From_currency</emph> and <emph>To_currency</emph> are the currency units to convert from and to respectively. These must be text, the official abbreviation for the currency (for example, \"EUR\"). The rates (shown per Euro) were set by the European Commission."
-msgstr "<emph>Maallaqa_irraa</emph> fi<emph>Gara_maallaqaa</emph> safartuu maallaqa itti fi irraa duraa duuban jijjiiramuudha. Kuni dirqama barruu ta'uu qaba, maallaqaaf kontooffachiifni beekamaan (fakkeenyaaf \"EURO\"). Maakkiin (EURO tokkoon kan ilaalame) koomishinii yuuroopitiin qindaa'e."
+msgid "<ahelp hid=\"HID_FUNC_JETZT\">Returns the computer system date and time.</ahelp> The value is updated when you recalculate the document or each time a cell value is modified."
+msgstr "<ahelp hid=\"HID_FUNC_JETZT\">Aduu fi yeroo sirna koompiteeraa kenna.</ahelp> Yommuu galmee ykn tokko tokko gatii man'ee haroomsamee irra deebi'uun shallaguu,gatiin ni haroomsama."
-#: 04060106.xhp
+#: func_now.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id0119200904301810\n"
+"func_now.xhp\n"
+"hd_id3146988\n"
+"49\n"
"help.text"
-msgid "<emph>Full_precision</emph> is optional. If omitted or False, the result is rounded according to the decimals of the To currency. If Full_precision is True, the result is not rounded."
-msgstr "<emph>Sirrummaa_guutuun</emph> dirqala. Yoo dhiisame ykn Soba ta'e, bu'aan isaa akka Gara maallaqaatti gara lakkurnyeetti buutama. Yoo Sirrummaa_guutuun Dhugaa ta'e, deebiin walitti hin buutamu."
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060106.xhp
+#: func_now.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id0119200904301815\n"
+"func_now.xhp\n"
+"par_id3154897\n"
+"50\n"
"help.text"
-msgid "<emph>Triangulation_precision</emph> is optional. If Triangulation_precision is given and >=3, the intermediate result of a triangular conversion (currency1,EUR,currency2) is rounded to that precision. If Triangulation_precision is omitted, the intermediate result is not rounded. Also if To currency is \"EUR\", Triangulation_precision is used as if triangulation was needed and conversion from EUR to EUR was applied."
-msgstr "<emph>Sirrummaa_garsadeeffamaan</emph> dirqala. Yoo sirrummaan_garsadeeffamaa kennamee fi >=3, bu'aan gidduu jijjiirraa garsadee (maallaqaa1,EUR,maallaqaa2) gara sirrummaatti buutama. Yoo sirrummaan_garsadeeffamaa dhiifame,bu'aan gidduu hin buutamu. Akkasumas Gara maallaqaatti \"EUR\" ta'e, sirrummaan_garsadeeffamaa akka garsadeeffamaa barbaadameetti fayyada fi jijjiirraan EUR gara EUR hojii irra oola."
+msgid "NOW()"
+msgstr "NOW()"
-#: 04060106.xhp
+#: func_now.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143819\n"
-"570\n"
+"func_now.xhp\n"
+"par_id4598529\n"
"help.text"
-msgid "<emph>Examples</emph>"
-msgstr "<emph>Fakkeenyota</emph>"
+msgid "NOW is a function without arguments."
+msgstr "NOW'n fankishinii qajeelfamaan alaati."
-#: 04060106.xhp
+#: func_now.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143837\n"
-"571\n"
+"func_now.xhp\n"
+"hd_id3154205\n"
+"51\n"
"help.text"
-msgid "<item type=\"input\">=EUROCONVERT(100;\"ATS\";\"EUR\")</item> converts 100 Austrian Schillings into Euros."
-msgstr "<item type=\"input\">=EUROCONVERT(100;\"ATS\";\"EUR\")</item> Shilingii awustiraaliyaa 100 gara Uurootti jiijjira."
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04060106.xhp
+#: func_now.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143853\n"
-"572\n"
+"func_now.xhp\n"
+"par_id3150774\n"
+"52\n"
"help.text"
-msgid "<item type=\"input\">=EUROCONVERT(100;\"EUR\";\"DEM\")</item> converts 100 Euros into German Marks."
-msgstr "<item type=\"input\">=EUROCONVERT(100;\"EUR\";\"DEM\")</item>Uuroo 100 gara Maarkisii Jaarmaniitti jijjiira."
+msgid "<item type=\"input\">=NOW()-A1</item> returns the difference between the date in A1 and now. Format the result as a number."
+msgstr "<item type=\"input\">=NOW()-A1</item> garaa garummaa aduu A1 fi amma gidduu jiru kenna.Firii akka lakkoofsatti dhangeessi."
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id0908200902090676\n"
+"func_second.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>CONVERT function</bookmark_value>"
-msgstr "<bookmark_value>faankishinii JIJJIIRI</bookmark_value>"
+msgid "SECOND"
+msgstr "SECOND"
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id0908200902074836\n"
+"func_second.xhp\n"
+"bm_id3159390\n"
"help.text"
-msgid "CONVERT"
-msgstr "CONVERT"
+msgid "<bookmark_value>SECOND function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii SECOND</bookmark_value>"
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id0908200902131122\n"
+"func_second.xhp\n"
+"hd_id3159390\n"
+"86\n"
"help.text"
-msgid "<ahelp hid=\".\">Converts a value from one unit of measurement to another unit of measurement. The conversion factors are given in a list in the configuration.</ahelp>"
-msgstr "<ahelp hid=\".\">Gatii safartuu tokko irraa gara safartuu birootti jijjiira. Sababootni jijjiirraa tarree qindaayinaa keessatti ni kennamu.</ahelp>"
+msgid "<variable id=\"second\"><link href=\"text/scalc/01/func_second.xhp\">SECOND</link></variable>"
+msgstr "<variable id=\"second\"><link href=\"text/scalc/01/func_second.xhp\">SECOND</link></variable>"
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id0908200902475420\n"
+"func_second.xhp\n"
+"par_id3148974\n"
+"87\n"
"help.text"
-msgid "At one time the list of conversion factors included the legacy European currencies and the Euro (see examples below). We suggest using the new function EUROCONVERT for converting these currencies."
-msgstr "Al tokkotti tarreen sababoota jijjiirraa kennata maallaqaalee AwurooppEUROCONVERaa keessa jiran akkasumas Yuuroon (fakkeenya armaan gadii ilaali). Faankishinii haaraa EUROCONVERT waliin maalaqoota kana jijjiiruu dandeessa."
+msgid "<ahelp hid=\"HID_FUNC_SEKUNDE\">Returns the second for the given time value.</ahelp> The second is given as an integer between 0 and 59."
+msgstr "<ahelp hid=\"HID_FUNC_SEKUNDE\">Gatii yerootif seekondii kenna.</ahelp> seekondiin intijeeri 0 fi 59 gidduu jiruun kennama."
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id0908200902131071\n"
+"func_second.xhp\n"
+"hd_id3154362\n"
+"88\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id0908200902131191\n"
+"func_second.xhp\n"
+"par_id3148407\n"
+"89\n"
"help.text"
-msgid "CONVERT(value;\"text\";\"text\")"
-msgstr "JIJJIIRI(gatii;\"barruu\";\"barruu\")"
+msgid "SECOND(Number)"
+msgstr "SECOND(Lakkoofsa)"
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id0908200902131152\n"
+"func_second.xhp\n"
+"par_id3155904\n"
+"90\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<emph>Number</emph>, as a time value, is a decimal, for which the second is to be returned."
+msgstr "<emph>Lakkoofsa</emph>, akka gati yerootti, kurnyee dha,kan seekondiin itti kennamu."
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id090820090213112\n"
+"func_second.xhp\n"
+"hd_id3149992\n"
+"91\n"
"help.text"
-msgid "<item type=\"input\">=CONVERT(100;\"ATS\";\"EUR\")</item> returns the Euro value of 100 Austrian Schillings."
-msgstr "<item type=\"input\">=JIJJIIRI(100;\"ATS\";\"EUR\")</item> Gatii Yuuroo Shilingoota Oostriyaa 100 deebisa."
+msgid "Examples"
+msgstr "Fakkeenyawwan"
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id0908200902475431\n"
+"func_second.xhp\n"
+"par_id3153350\n"
+"93\n"
"help.text"
-msgid "=CONVERT(100;\"EUR\";\"DEM\") converts 100 Euros into German Marks."
-msgstr "=CONVERT(100;\"EUR\";\"DEM\") Yuuroota 100 gara Maarkoota Jarmaniitti jijjiira."
+msgid "<item type=\"input\">=SECOND(NOW())</item> returns the current second"
+msgstr "<item type=\"input\">=SECOND(NOW())</item>seekondii ammaa kenna."
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3157177\n"
+"func_second.xhp\n"
+"par_id3150831\n"
+"94\n"
"help.text"
-msgid "<bookmark_value>ODD function</bookmark_value><bookmark_value>rounding;up/down to nearest odd integer</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii ODD</bookmark_value><bookmark_value>siiqsuu;ol/gadi gara intijarii qaraa dhiyootti</bookmark_value>"
+msgid "<item type=\"input\">=SECOND(C4)</item> returns 17 if contents of C4 = <item type=\"input\">12:20:17</item>."
+msgstr "<item type=\"input\">=SECOND(C4)</item> yoo C4 =<item type=\"input\">17:20:00</item> ta'e 17 kenna."
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3157177\n"
-"502\n"
+"func_time.xhp\n"
+"tit\n"
"help.text"
-msgid "ODD"
-msgstr "ODD"
+msgid "TIME"
+msgstr "TIME"
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157205\n"
-"503\n"
+"func_time.xhp\n"
+"bm_id3154073\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_UNGERADE\">Rounds a positive number up to the nearest odd integer and a negative number down to the nearest odd integer.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_UNGERADE\">Lakkoofsa positiivii hanga intijarii qaraa itti aanuuttii fi lakkoofsa negatiivii gadi gara intijarii qaraa itti aanuutti siqsa.</ahelp>"
+msgid "<bookmark_value>TIME function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii TIME</bookmark_value>"
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3157223\n"
-"504\n"
+"func_time.xhp\n"
+"hd_id3154073\n"
+"149\n"
+"help.text"
+msgid "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\">TIME</link></variable>"
+msgstr "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\">TIME</link></variable>"
+
+#: func_time.xhp
+msgctxt ""
+"func_time.xhp\n"
+"par_id3145762\n"
+"150\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZEIT\">TIME returns the current time value from values for hours, minutes and seconds.</ahelp> This function can be used to convert a time based on these three elements to a decimal time value."
+msgstr "<ahelp hid=\"HID_FUNC_ZEIT\">Sa'aatiwwan,daqiiqota,fi seekondiwwaniif TIME'n gatii yeroo ammee kenna.</ahelp> fankishiniin kun yeroo miseensota sadii irratti hunda'uu gara gatii yeroo deesimaalitti jijjiiruu danda'a."
+
+#: func_time.xhp
+msgctxt ""
+"func_time.xhp\n"
+"hd_id3155550\n"
+"151\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157237\n"
-"505\n"
+"func_time.xhp\n"
+"par_id3154584\n"
+"152\n"
"help.text"
-msgid "ODD(Number)"
-msgstr "ODD(Lakkoofsa)"
+msgid "TIME(Hour; Minute; Second)"
+msgstr "TIME(Sa'aa;Daqiiqaa;Sekoondii)"
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157250\n"
-"506\n"
+"func_time.xhp\n"
+"par_id3152904\n"
+"153\n"
"help.text"
-msgid "Returns <emph>Number</emph> rounded to the next odd integer up, away from zero."
-msgstr "<emph>Lakkoofsa</emph> gara intijarii qaraa oliitti, zeeroo irraa deebisa."
+msgid "Use an integer to set the <emph>Hour</emph>."
+msgstr "<emph>Sa'aa</emph> qindeessuuf intijeerii fayyadami."
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3157270\n"
-"507\n"
+"func_time.xhp\n"
+"par_id3151346\n"
+"154\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Use an integer to set the <emph>Minute</emph>."
+msgstr "<emph>Daqiiqaa</emph> ‎qindeessuuf intij‍‏rii‬ fayyadami​‭."
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157283\n"
-"508\n"
+"func_time.xhp\n"
+"par_id3151366\n"
+"155\n"
"help.text"
-msgid "<item type=\"input\">=ODD(1.2)</item> returns 3."
-msgstr "<item type=\"input\">=ODD(1.2)</item> 3 deebisa."
+msgid "Use an integer to set the <emph>Second</emph>."
+msgstr "<emph>Seekondii</emph> qindeessuuf intijeerii fayyadami."
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8746910\n"
+"func_time.xhp\n"
+"hd_id3145577\n"
+"156\n"
"help.text"
-msgid "<item type=\"input\">=ODD(1)</item> returns 1."
-msgstr "<item type=\"input\">=ODD(1)</item> 1 deebisa."
+msgid "Examples"
+msgstr "Fakkeenyawwan"
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9636524\n"
+"func_time.xhp\n"
+"par_id3156076\n"
+"157\n"
"help.text"
-msgid "<item type=\"input\">=ODD(0)</item> returns 1."
-msgstr "<item type=\"input\">=ODD(0)</item> 1 deebisa."
+msgid "<item type=\"input\">=TIME(0;0;0)</item> returns 00:00:00"
+msgstr "<item type=\"input\">=TIME(0;0;0)</item> 00:00:00 kenna"
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5675527\n"
+"func_time.xhp\n"
+"par_id3156090\n"
+"158\n"
"help.text"
-msgid "<item type=\"input\">=ODD(-3.1)</item> returns -5."
-msgstr "<item type=\"input\">=ODD(-3.1)</item> -5 deebisa."
+msgid "<item type=\"input\">=TIME(4;20;4)</item> returns 04:20:04"
+msgstr "<item type=\"input\">=TIME(4;20;4)</item> 04:20:04 kenna"
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3157404\n"
+"func_timevalue.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>FLOOR function</bookmark_value><bookmark_value>rounding;down to nearest multiple of significance</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii FLOOR</bookmark_value><bookmark_value>baay'ataa siignifikansii gara gadi dhihootti;siiqsuu</bookmark_value>"
+msgid "TIMEVALUE"
+msgstr "TIMEVALUE"
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3157404\n"
-"512\n"
+"func_timevalue.xhp\n"
+"bm_id3146755\n"
"help.text"
-msgid "FLOOR"
-msgstr "FLOOR"
+msgid "<bookmark_value>TIMEVALUE function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii TIMEVALUE</bookmark_value>"
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157432\n"
-"513\n"
+"func_timevalue.xhp\n"
+"hd_id3146755\n"
+"160\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_UNTERGRENZE\">Rounds a number down to the nearest multiple of Significance.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_UNTERGRENZE\">Lakkoofsa gara baay'ataa signifikansii dhihootti siiqsa.</ahelp>"
+msgid "<variable id=\"timevalue\"><link href=\"text/scalc/01/func_timevalue.xhp\">TIMEVALUE</link></variable>"
+msgstr "<variable id=\"timevalue\"><link href=\"text/scalc/01/func_timevalue.xhp\">TIMEVALUE</link></variable>"
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3157451\n"
-"514\n"
+"func_timevalue.xhp\n"
+"par_id3148502\n"
+"161\n"
"help.text"
-msgid "Syntax"
-msgstr "Caasima"
+msgid "<ahelp hid=\"HID_FUNC_ZEITWERT\">TIMEVALUE returns the internal time number from a text enclosed by quotes and which may show a possible time entry format.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZEITWERT\">TIMEVALUE barruu warraabbiin haguugamee fi akkasuma kan galmaa dhangii yeroo mul'isuu danda'uf lakkooofsa yeroo keessa kenna.</ahelp>"
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157464\n"
-"515\n"
+"func_timevalue.xhp\n"
+"par_id3150794\n"
+"162\n"
"help.text"
-msgid "FLOOR(Number; Significance; Mode)"
-msgstr "FLOOR(Lakkoofsa; Siignifikaansii; Moodii)"
+msgid "The internal number indicated as a decimal is the result of the date system used under $[officename] to calculate date entries."
+msgstr "Lakkoofsi keessa akka kurnyeetti agarsiifame kun firii sirna aduu $[officename] jedhamu kan galmaa aduu shallaguuf gargaarudha."
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157478\n"
-"516\n"
+"func_timevalue.xhp\n"
+"par_id011920090347118\n"
"help.text"
-msgid "<emph>Number</emph> is the number that is to be rounded down."
-msgstr "<emph>Lakkoofsi</emph> lakkoofsa gara gadiitti siiqfameedha."
+msgid "If the text string also includes a year, month, or day, TIMEVALUE only returns the fractional part of the conversion."
+msgstr "Yoo dirri barruu waggaa, ji'a, ykn guyyaa, GATIISA'ATII hira firakshinii jijjiirraa qofa deebisa."
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157497\n"
-"517\n"
+"func_timevalue.xhp\n"
+"hd_id3150810\n"
+"163\n"
"help.text"
-msgid "<emph>Significance</emph> is the value to whose multiple the number is to be rounded down."
-msgstr "<emph>siignifikaansiin</emph> lakkoofsa hirmaanneen gatii isaa gadi siiqfameedha."
+msgid "Syntax"
+msgstr "Caasima"
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157517\n"
-"561\n"
+"func_timevalue.xhp\n"
+"par_id3150823\n"
+"164\n"
"help.text"
-msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of the number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter."
-msgstr "<emph>Moodiin</emph> gatii filannooti. Yoo Moodiin kennamee fi zeeroo yoo hin taane, fi yoo lakkoofsi fi siignifikaansiin negatiivii ta'an, siiqsuun gatsirrii lakkoofsaa irratti hundaa'udhaan taasifama."
+msgid "TIMEVALUE(\"Text\")"
+msgstr "DATEVALUE(\"Barruu\")"
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163894\n"
-"630\n"
+"func_timevalue.xhp\n"
+"par_id3152556\n"
+"165\n"
"help.text"
-msgid "If both parameters Number and Significance are negative, and if the Mode value is equal to zero or is not specified, then the results in $[officename] Calc and Excel will differ after exporting. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc."
-msgstr "Yoo lakkoofsi jijjiiramaa fi siignifikaansiin lachuu negatiifii ta'an fi gatiin moodii zeeroodhaan walqixa ta'an ykn yoo hin kennamne,firiin %[officename] calc fi Excel adda ta'a edda alerguu dhumeen booda.Yoo wardii gara Excelitti alerginu,firii walfakkaatu EXseelii calc keessatti ilaaluuf, Moodii=1 fayyadami."
+msgid "<emph>Text</emph> is a valid time expression and must be entered in quotation marks."
+msgstr "<emph>Barruu</emph> himannoo yeroo siirri fi mallattoo waraabbii wajjin galuu qaba."
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163932\n"
-"518\n"
+"func_timevalue.xhp\n"
+"hd_id3146815\n"
+"166\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Examples"
+msgstr "Fakkeenyawwan"
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163945\n"
-"519\n"
+"func_timevalue.xhp\n"
+"par_id3146829\n"
+"167\n"
"help.text"
-msgid "<item type=\"input\">=FLOOR( -11;-2)</item> returns -12"
-msgstr "<item type=\"input\">=FLOOR( -11;-2)</item> -12 deebisa"
+msgid "<item type=\"input\">=TIMEVALUE(\"4PM\")</item> returns 0.67. When formatting in time format HH:MM:SS, you then get 16:00:00."
+msgstr "<item type=\"input\">=TIMEVALUE(\"4PM\")</item> .67 kenna. Dhangi yeroo yemmuu dhangeessinuu HH:MM:SS, itti fufuun 16:00:00 argatta."
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163966\n"
-"520\n"
+"func_timevalue.xhp\n"
+"par_id3153632\n"
+"168\n"
"help.text"
-msgid "<item type=\"input\">=FLOOR( -11;-2;0)</item> returns -12"
-msgstr "<item type=\"input\">=FLOOR( -11;-2;0)</item> -12 deebisa"
+msgid "<item type=\"input\">=TIMEVALUE(\"24:00\")</item> returns 1. If you use the HH:MM:SS time format, the value is 00:00:00."
+msgstr "<item type=\"input\">=TIMEVALUE(\"24:00\")</item> 1 kenna. Yoo HH:MM:SS dhangi yerootii fayyadamnee gatiin isaa 00:00:00 ta'a."
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163988\n"
-"521\n"
+"func_today.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=FLOOR( -11;-2;1)</item> returns -10"
-msgstr "<item type=\"input\">=FLOOR( -11;-2;1)</item> -10 deebisa"
+msgid "TODAY"
+msgstr "TODAY"
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3164086\n"
+"func_today.xhp\n"
+"bm_id3145659\n"
"help.text"
-msgid "<bookmark_value>SIGN function</bookmark_value><bookmark_value>algebraic signs</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii SIGN</bookmark_value><bookmark_value>mallattoowwan aljebraas</bookmark_value>"
+msgid "<bookmark_value>TODAY function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii TODAY</bookmark_value>"
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164086\n"
-"523\n"
+"func_today.xhp\n"
+"hd_id3145659\n"
+"29\n"
"help.text"
-msgid "SIGN"
-msgstr "SIGN"
+msgid "<variable id=\"today\"><link href=\"text/scalc/01/func_today.xhp\">TODAY</link></variable>"
+msgstr "<variable id=\"today\"><link href=\"text/scalc/01/func_today.xhp\">TODAY</link></variable>"
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164115\n"
-"524\n"
+"func_today.xhp\n"
+"par_id3153759\n"
+"30\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VORZEICHEN\">Returns the sign of a number. Returns 1 if the number is positive, -1 if negative and 0 if zero.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_VORZEICHEN\">Mallattoo lakkoofsa deebisa. Yoo lakkoofsi positiivii ta'e 1 deebisa, yoo negatiivii -1 deebisa fi yoo zero ta'e 0 deebisa.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_HEUTE\">Returns the current computer system date.</ahelp> The value is updated when you reopen the document or modify the values of the document."
+msgstr "<ahelp hid=\"HID_FUNC_HEUTE\">Sirna konpiteraa guyyaa ammaa kenna.</ahelp> Yeroo galmee irra deebi'uun bannu ykn gatii galmee jijjiirru, gatiinsaa ni haaromfamaa."
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164136\n"
-"525\n"
+"func_today.xhp\n"
+"hd_id3154051\n"
+"31\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164150\n"
-"526\n"
+"func_today.xhp\n"
+"par_id3153154\n"
+"32\n"
"help.text"
-msgid "SIGN(Number)"
-msgstr "SIGN(Lakkoofsa)"
+msgid "TODAY()"
+msgstr "TODAY"
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164164\n"
-"527\n"
+"func_today.xhp\n"
+"par_id3154741\n"
+"33\n"
"help.text"
-msgid "<emph>Number</emph> is the number whose sign is to be determined."
-msgstr "<emph>Lakkoofsi</emph> lakkoofsa mallattoon isaa murtaa'edha."
+msgid "TODAY is a function without arguments."
+msgstr "TODAY'n fankishinii qajeelfamaan alaati."
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164183\n"
-"528\n"
+"func_today.xhp\n"
+"hd_id3153627\n"
+"34\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164197\n"
-"529\n"
+"func_today.xhp\n"
+"par_id3156106\n"
+"35\n"
"help.text"
-msgid "<item type=\"input\">=SIGN(3.4)</item> returns 1."
-msgstr "<item type=\"input\">=SIGN(3.4)</item> 1 deebisa."
+msgid "<item type=\"input\">TODAY()</item> returns the current computer system date."
+msgstr "<item type=\"input\">TODAY()</item> guyyaa sirna kompiteraa ammaa kenna."
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164212\n"
-"530\n"
+"func_weekday.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=SIGN(-4.5)</item> returns -1."
-msgstr "<item type=\"input\">=SIGN(-4.5)</item> -1 deebisa."
+msgid "WEEKDAY"
+msgstr "WEEKDAY"
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3164252\n"
+"func_weekday.xhp\n"
+"bm_id3154925\n"
"help.text"
-msgid "<bookmark_value>MROUND function</bookmark_value><bookmark_value>nearest multiple</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii MROUND</bookmark_value><bookmark_value>baay'ataa dhiyoo</bookmark_value>"
+msgid "<bookmark_value>WEEKDAY function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii WEEKDAY</bookmark_value>"
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164252\n"
-"658\n"
+"func_weekday.xhp\n"
+"hd_id3154925\n"
+"136\n"
"help.text"
-msgid "MROUND"
-msgstr "MROUND"
+msgid "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">WEEKDAY</link></variable>"
+msgstr "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">WEEKDAY</link></variable>"
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164288\n"
-"659\n"
+"func_weekday.xhp\n"
+"par_id3154228\n"
+"137\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_MROUND\">Returns a number rounded to the nearest multiple of another number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_MROUND\">Returns a number rounded to the nearest multiple of another number.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_WOCHENTAG\">Returns the day of the week for the given date value.</ahelp> The day is returned as an integer between 1 (Sunday) and 7 (Saturday) if no type or type=1 is specified. If type=2, numbering begins at Monday=1; and if type=3 numbering begins at Monday=0."
+msgstr "<ahelp hid=\"HID_FUNC_WOCHENTAG\">Gatii aduu kennameef maqaa guyyaa torbaan keessaa deebisi.</ahelp> Yoo akaakuu hin qabnee ykn akaakuu=1 ta'een ibsame,guyyaan deebi'uu kun intiijera 1(Dilbata) fi 7(Sanbata) gidduutti argama.Yoo akaakuu'n=2 ta'ee lakkaawwiin Wixaata=1 irraa eegala;Yoo akaakuu'n=3 ta'ee,lakkaawwiin Wixaata=0 irraa eegala."
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164306\n"
-"660\n"
+"func_weekday.xhp\n"
+"hd_id3147217\n"
+"138\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164320\n"
-"661\n"
+"func_weekday.xhp\n"
+"par_id3149033\n"
+"139\n"
"help.text"
-msgid "MROUND(Number; Multiple)"
-msgstr "MROUND(Lakkoofsa; Qooyyaboota)"
+msgid "WEEKDAY(Number; Type)"
+msgstr "WEEKDAY(Lakkoofsa;akaakuu)"
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3486434\n"
+"func_weekday.xhp\n"
+"par_id3149046\n"
+"140\n"
"help.text"
-msgid "Returns <emph>Number</emph> rounded to the nearest multiple of <emph>Multiple</emph>."
-msgstr "<emph>Lakkoofsa</emph> gara baay'ataa kan<emph>Baay'ataa</emph> siiqfame deebisa."
+msgid "<emph>Number</emph>, as a date value, is a decimal for which the weekday is to be returned."
+msgstr "<emph>Lakkoofsa</emph>, akka gati aduutti, kurnyee dha,kan guyyaa itti argannu."
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3068636\n"
+"func_weekday.xhp\n"
+"par_id3154394\n"
+"141\n"
"help.text"
-msgid "An alternative implementation would be <item type=\"literal\">Multiple * ROUND(Number/Multiple)</item>."
-msgstr "Raawwiin karaa biraa ta'uu qabu <item type=\"literal\">Multiple * ROUND(Lakkoofsa/Baay'ataa)</item>."
+msgid "<emph>Type</emph> determines the type of calculation. For Type=1, the weekdays are counted starting from Sunday (this is the default even when the Type parameter is missing). For Type=2, the weekdays are counted starting from Monday=1. For Type=3, the weekdays are counted starting from Monday=0."
+msgstr "<emph>Akaakuu</emph> akaakuu shallaggii murteessa.akaakuu=1'f guyyaa torbanii dilbata irraa eegalun lakkaawwama(kunis yeroo akaakuun ulaagaalee dagatamuu akka durtitti taa'a). Akaakuu=2'f guyyaan torbanii wiixata=1 irraa jalqabuun lakkaawwuu eegala.Akaakuu=3'f guyyaan torbanii wiixata=0 irraa jalqabuun lakkaawwuu eegala."
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164333\n"
-"662\n"
+"func_weekday.xhp\n"
+"par_id3156188\n"
+"142\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "These values apply only to the standard date format that you select under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate</emph>."
+msgstr ""
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164347\n"
-"663\n"
+"func_weekday.xhp\n"
+"hd_id3153836\n"
+"143\n"
"help.text"
-msgid "<item type=\"input\">=MROUND(15.5;3)</item> returns 15, as 15.5 is closer to 15 (= 3*5) than to 18 (= 3*6)."
-msgstr "<item type=\"input\">=MROUND(15.5;3)</item> 15 akka 15.5 tti deebisa 15(3*5) 18(=3*6) caalaa baay'ee dhiyoodha."
+msgid "Examples"
+msgstr "Fakkeenyawwan"
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_idN14DD6\n"
+"func_weekday.xhp\n"
+"par_id3150317\n"
+"144\n"
"help.text"
-msgid "<item type=\"input\">=MROUND(1.4;0.5)</item> returns 1.5 (= 0.5*3)."
-msgstr "<item type=\"input\">=MROUND(1.4;0.5)</item> 1.5 (= 0.5*3) deebisa."
+msgid "=WEEKDAY(\"2000-06-14\") returns 4 (the Type parameter is missing, therefore the standard count is used. The standard count starts with Sunday as day number 1. June 14, 2000 was a Wednesday and therefore day number 4)."
+msgstr "=WEEKDAY(\"2000-06-14\") 4 kenna(akkasumas akaakuu uulaagaaleen ni hafa kanaaf lakkaawwii waltaawwaatti gargaaramna.Lakkaawwiin waltaawwaa Dilbata lakkoofsa 1 irraa eegala.Caamsa 14,2000 Roobii ture kanaafu lakkoofsi guyyaa kanaas 4 dha)."
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3164375\n"
+"func_weekday.xhp\n"
+"par_id3153174\n"
+"145\n"
"help.text"
-msgid "<bookmark_value>SQRT function</bookmark_value><bookmark_value>square roots;positive numbers</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii SQRT</bookmark_value><bookmark_value>iskuweerii ruuttii;lakkoofsota positiivii</bookmark_value>"
+msgid "=WEEKDAY(\"1996-07-24\";2) returns 3 (the Type parameter is 2, therefore Monday is day number 1. July 24, 1996 was a Wednesday and therefore day number 3)."
+msgstr "=WEEKDAY(\"1996-07-24\";2) 3 kenna(akaakuun ulaagaalee lama dha kanaafuu wixaatni lakkoofsa guyyaa 1 ta'a.Adooleessa 24,1996 Roobii ture kanaafuu lakkoofsi guyyaa kana 3 ta'a)."
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164375\n"
-"532\n"
+"func_weekday.xhp\n"
+"par_id3153525\n"
+"146\n"
"help.text"
-msgid "SQRT"
-msgstr "SQRT"
+msgid "=WEEKDAY(\"1996-07-24\";1) returns 4 (the Type parameter is 1, therefore Sunday is day number 1. July 24, 1996 was a Wednesday and therefore day number 4)."
+msgstr "=WEEKDAY(\"1996-07-24\";1) 4 kenna(akaakuun ulaagaalee 2 dha kanaafuu Dilbata lakkoofsa guyyaa 1 ta'a.Adooleessa 24,1996 Roobii ture kanaafuu lakkoofsi guyyaa kana 4 ta'a)."
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164404\n"
-"533\n"
+"func_weekday.xhp\n"
+"par_id3150575\n"
+"147\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WURZEL\">Returns the positive square root of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_WURZEL\">Iskuweer ruuttii positiivii kan lakkoofsaa deebisa.</ahelp>"
+msgid "=WEEKDAY(NOW()) returns the number of the current day."
+msgstr "=WEEKDAY(NOW()) lakkoofsa yeroo ammaa kana kenna."
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164424\n"
-"534\n"
+"func_weekday.xhp\n"
+"par_id3150588\n"
+"171\n"
+"help.text"
+msgid "To obtain a function indicating whether a day in A1 is a business day, use the IF and WEEKDAY functions as follows: <br/>IF(WEEKDAY(A1;2)<6;\"Business day\";\"Weekend\")"
+msgstr "Fankishiniin guyyaan A1 kun akka guyyaa hojii ta'ee mul'isuu argachuuf,IF fi WEEKDAY jedhuu akka armaan gaditti fayyadami:<br/>IF(WEEKDAY(A1;2)<6;\"Business day\";\"Weekend\")"
+
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"tit\n"
+"help.text"
+msgid "WEEKNUM"
+msgstr "WEEKNUM"
+
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"bm_id3159161\n"
+"help.text"
+msgid "<bookmark_value>WEEKNUM function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii WEEKNUM</bookmark_value>"
+
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"hd_id3159161\n"
+"54\n"
+"help.text"
+msgid "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link></variable>"
+msgstr "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link></variable>"
+
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id3149770\n"
+"55\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\">WEEKNUM calculates the week number of the year for the internal date value.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\"> gati yeroo keessaaf,WEEKNUM'n lakkoofsa torbanii waggaa keessaa shallaga.</ahelp>"
+
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_idN105E4\n"
+"help.text"
+msgid "The International Standard ISO 8601 has decreed that Monday shall be the first day of the week. A week that lies partly in one year and partly in another is assigned a number in the year in which most of its days lie. That means that week number 1 of any year is the week that contains the January 4th."
+msgstr "Labsiin Adduunyaa Waaltawaa (AW)8601 akka labseetti Wixaatni guyyaa jalqaba torbani ta'a.Toorban gariin wagga tokko keessa gariin immoo waggaa isaa biraa keessa yommuu ta'uu, waggaan lakkoofsi guyyaa baay'ee toorbanicha keessaatti argameetti lakkoofsi guyyaa sun ida'aama. Kana jechuun torbaan jalqabaa waggaa kamiyyuu torbaan ji'a ammajji 4ffaa of keessa qaba."
+
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"hd_id3153055\n"
+"56\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060106.xhp
+#: func_weeknum.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164437\n"
-"535\n"
+"func_weeknum.xhp\n"
+"par_id3147236\n"
+"57\n"
"help.text"
-msgid "SQRT(Number)"
-msgstr "SQRT(Lakkoofsa)"
+msgid "WEEKNUM(Number; Mode)"
+msgstr "WEEKNUM(Lakkoofsa;Haalata)"
-#: 04060106.xhp
+#: func_weeknum.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164451\n"
-"536\n"
+"func_weeknum.xhp\n"
+"par_id3147511\n"
+"58\n"
"help.text"
-msgid "Returns the positive square root of <emph>Number</emph>."
-msgstr "Iskuweer ruuttii posotiivii<emph>Lakkoofsaa</emph>deebisa."
+msgid "<emph>Number</emph> is the internal date number."
+msgstr "<emph>Lakkoofsa</emph>lakkoofsa aduu keessaati."
-#: 04060106.xhp
+#: func_weeknum.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6870021\n"
+"func_weeknum.xhp\n"
+"par_id3154269\n"
+"59\n"
"help.text"
-msgid "Number must be positive."
-msgstr "Lakkoofsi dirqama positiivii ta'uu qaba"
+msgid "<emph>Mode</emph> sets the start of the week and the calculation type."
+msgstr "<emph>Haalatni</emph> akaakuu shallaggii fi jalqabbii torbanii qindeessa."
-#: 04060106.xhp
+#: func_weeknum.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164471\n"
-"537\n"
+"func_weeknum.xhp\n"
+"par_id3148930\n"
+"60\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "1 = Sunday"
+msgstr "1 = Dilbata"
-#: 04060106.xhp
+#: func_weeknum.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164484\n"
-"538\n"
+"func_weeknum.xhp\n"
+"par_id3154280\n"
+"61\n"
"help.text"
-msgid "<item type=\"input\">=SQRT(16)</item> returns 4."
-msgstr "<item type=\"input\">=SQRT(16)</item> 4 deebisa."
+msgid "2 = Monday"
+msgstr "2 = Wixata"
-#: 04060106.xhp
+#: func_weeknum.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3591723\n"
+"func_weeknum.xhp\n"
+"hd_id3146948\n"
+"62\n"
"help.text"
-msgid "<item type=\"input\">=SQRT(-16)</item> returns an <item type=\"literal\">invalid argument</item> error."
-msgstr "<item type=\"input\">=SQRT(-16)</item> dogogora <item type=\"literal\">qoccolloo hin fayyadne</item> deebisa."
+msgid "Examples"
+msgstr "Fakkeenyawwan"
-#: 04060106.xhp
+#: func_weeknum.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3164560\n"
+"func_weeknum.xhp\n"
+"par_id3150704\n"
+"65\n"
"help.text"
-msgid "<bookmark_value>SQRTPI function</bookmark_value><bookmark_value>square roots;products of Pi</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii SQRTPI </bookmark_value><bookmark_value>iskuwer ruuttii;baay'ataa kan Pi</bookmark_value>"
+msgid "=WEEKNUM(\"1995-01-01\";1) returns 1"
+msgstr "=WEEKNUM(\"1995-01-01\";1 1 kenna"
-#: 04060106.xhp
+#: func_weeknum.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164560\n"
-"665\n"
+"func_weeknum.xhp\n"
+"par_id3149792\n"
+"64\n"
"help.text"
-msgid "SQRTPI"
-msgstr "SQRTPI"
+msgid "=WEEKNUM(\"1995-01-01\";2) returns 52. If the week starts on Monday, Sunday belongs to the last week of the previous year."
+msgstr "=WEEKNUM(\"1995-01-01\";2) 52 kenna.Yoo torban Dafinoodhaan eegale,Dilbatni torbaan xumuraa waggaa darbee ta'a."
-#: 04060106.xhp
+#: func_weeknumadd.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164596\n"
-"666\n"
+"func_weeknumadd.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_SQRTPI\">Returns the square root of (PI times a number).</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_SQRTPI\">Iskuwer ruuttii kan(PI lakkoofsaa) deebisa.</ahelp>"
+msgid "WEEKNUM_ADD"
+msgstr "WEEKNUM_ADD"
-#: 04060106.xhp
+#: func_weeknumadd.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164614\n"
-"667\n"
+"func_weeknumadd.xhp\n"
+"bm_id3166443\n"
+"help.text"
+msgid "<bookmark_value>WEEKNUM_ADD function</bookmark_value>"
+msgstr "<bookmark_value>faankishiini WEEKNUM-ADD</bookmark_value>"
+
+#: func_weeknumadd.xhp
+msgctxt ""
+"func_weeknumadd.xhp\n"
+"hd_id3166443\n"
+"222\n"
+"help.text"
+msgid "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.xhp\">WEEKNUM_ADD</link></variable>"
+msgstr "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.xhp\">WEEKNUM_ADD</link></variable>"
+
+#: func_weeknumadd.xhp
+msgctxt ""
+"func_weeknumadd.xhp\n"
+"par_id3152945\n"
+"223\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_WEEKNUM\">The result indicates the number of the calendar week for a date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_WEEKNUM\">Firii isaa kunis lakkoofsa dhaha torbani guyyaa agarsiisa.</ahelp>"
+
+#: func_weeknumadd.xhp
+msgctxt ""
+"func_weeknumadd.xhp\n"
+"par_idN105DD\n"
+"help.text"
+msgid "The WEEKNUM_ADD function is designed to calculate week numbers exactly as Microsoft Excel does. Use the <link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link> function, or format your date cells using the WW formatting code, when you need ISO 8601 week numbers."
+msgstr "WEEKNUM_ADD fankiishiniin akkuma Maayikroo Ekseelii lakkoofsa torbanoota sirriin shallaguuf kan qopha'ee dha.fankishinii<link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link> fayyadamii,ykn yommuu ISO 8601 lakkoofsa torbanii barbaaddu,lakkaddaa dhangeessuu WW fayyadamuun aduu man'eewwan kee dhangeessi."
+
+#: func_weeknumadd.xhp
+msgctxt ""
+"func_weeknumadd.xhp\n"
+"hd_id3153745\n"
+"224\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060106.xhp
+#: func_weeknumadd.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164627\n"
-"668\n"
+"func_weeknumadd.xhp\n"
+"par_id3153685\n"
+"225\n"
"help.text"
-msgid "SQRTPI(Number)"
-msgstr "SQRTPI(Lakkoofsa)"
+msgid "WEEKNUM_ADD(Date; ReturnType)"
+msgstr "WEEKNUM_ADD(Aduu;Akaakuu Deebii)"
-#: 04060106.xhp
+#: func_weeknumadd.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1501510\n"
+"func_weeknumadd.xhp\n"
+"par_id3159277\n"
+"226\n"
"help.text"
-msgid "Returns the positive square root of (PI multiplied by <emph>Number</emph>)."
-msgstr "Iskuwer ruuttii posotiivii ta'e kan ( PI <emph>Lakkoofsaan</emph>/baay'ate) deebisa."
+msgid "<emph>Date</emph> is the date within the calendar week."
+msgstr "<emph>Guyyaa</emph> guyyaa kalaandeera torbaani keessaa jiru dha."
-#: 04060106.xhp
+#: func_weeknumadd.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9929197\n"
+"func_weeknumadd.xhp\n"
+"par_id3154098\n"
+"227\n"
"help.text"
-msgid "This is equivalent to <item type=\"literal\">SQRT(PI()*Number)</item>."
-msgstr "Kuni <item type=\"literal\">SQRT(PI()*Number)</item> kana waliin walgita."
+msgid "<emph>ReturnType</emph> is 1 for week beginning on a Sunday, 2 for week beginning on a Monday."
+msgstr "<emph>Akaakuu Deebii</emph> 1 yoo jalqabni torbaani Dilbata ta'ee,2 yoo jalqabanni torbanii wixaata ta'e."
-#: 04060106.xhp
+#: func_weeknumadd.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164641\n"
-"669\n"
+"func_weeknumadd.xhp\n"
+"hd_id3152886\n"
+"228\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060106.xhp
+#: func_weeknumadd.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164654\n"
-"670\n"
+"func_weeknumadd.xhp\n"
+"par_id3149973\n"
+"229\n"
"help.text"
-msgid "<item type=\"input\">=SQRTPI(2)</item> returns the squareroot of (2PI), approximately 2.506628."
-msgstr "<item type=\"input\">=SQRTPI(2)</item> iskuweer ruuttii kan (2PI), tilmaamaan 2.506628 deebisa."
+msgid "In which week number does 12.24.2001 fall?"
+msgstr "12.24.2001 torbaan kam kessatti argama?"
-#: 04060106.xhp
+#: func_weeknumadd.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3164669\n"
+"func_weeknumadd.xhp\n"
+"par_id3149914\n"
+"230\n"
"help.text"
-msgid "<bookmark_value>random numbers; between limits</bookmark_value><bookmark_value>RANDBETWEEN function</bookmark_value>"
-msgstr "<bookmark_value>random numbers; between limits</bookmark_value><bookmark_value>RANDBETWEEN function</bookmark_value>"
+msgid "<item type=\"input\">=WEEKNUM_ADD(24.12.2001;1)</item> returns 52."
+msgstr "<item type=\"input\">=WEEKNUM_ADD(24.12.2001;1)</item> 52 kenna."
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164669\n"
-"671\n"
+"func_workday.xhp\n"
+"tit\n"
"help.text"
-msgid "RANDBETWEEN"
-msgstr "RANDBETWEEN"
+msgid "WORKDAY"
+msgstr "WORKDAY"
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164711\n"
-"672\n"
+"func_workday.xhp\n"
+"bm_id3149012\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_RANDBETWEEN\">Returns an integer random number in a specified range.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_RANDBETWEEN\">Lakkoofsa tasaa intijarii hammanga adda ba'e keessa jiru deebisa.</ahelp>"
+msgid "<bookmark_value>WORKDAY function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii WORKDAY</bookmark_value>"
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164745\n"
-"673\n"
+"func_workday.xhp\n"
+"hd_id3149012\n"
+"186\n"
+"help.text"
+msgid "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link></variable>"
+msgstr "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link></variable>"
+
+#: func_workday.xhp
+msgctxt ""
+"func_workday.xhp\n"
+"par_id3149893\n"
+"187\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_WORKDAY\"> The result is a date number that can be formatted as a date. You then see the date of a day that is a certain number of <emph>workdays</emph> away from the <emph>start date</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_WORKDAY\"> Firiin isaa lakkoofsa guyyaa kan akka guyyaatti gulaalamuu danda'uu dha.Itti fufuun lakkoofsa guyyaa kan lakkoofsa murta'aa ta'ee tokko <emph>guyyaa hojiiwwaani</emph> <emph>jalqaba guyyaa</emph> irra adda kan ta'e.</ahelp>"
+
+#: func_workday.xhp
+msgctxt ""
+"func_workday.xhp\n"
+"hd_id3146944\n"
+"188\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164758\n"
-"674\n"
+"func_workday.xhp\n"
+"par_id3154844\n"
+"189\n"
"help.text"
-msgid "RANDBETWEEN(Bottom; Top)"
-msgstr "RANDBETWEEN(Gubbaa; Jala)"
+msgid "WORKDAY(StartDate; Days; Holidays)"
+msgstr "WORKDAY(Aduu Jalqaba;Guyyoota;Guyyaa Ayyaanota)"
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id7112338\n"
+"func_workday.xhp\n"
+"par_id3147469\n"
+"190\n"
"help.text"
-msgid "Returns an integer random number between integers <emph>Bottom</emph> and <emph>Top</emph> (both inclusive)."
-msgstr "Lakkoofsa tasaa intijarii intijaroota jidduudhaa<emph>Jala</emph> fi <emph>Gubbaa</emph> (lachuu dabalatee)."
+msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation."
+msgstr "<emph>Aduu Jalqaba</emph> guyyaa isa shallagin irraa hojjeetamu dha.Guyyyaan calqaba kunis yoo guyyaa hojii ta'e guyyaan kun shallaggii keessatti hammatama."
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id2855616\n"
+"func_workday.xhp\n"
+"par_id3153038\n"
+"191\n"
"help.text"
-msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
-msgstr "Faankishiniin kun lakkoofsa tasaa haaraa yeroo hunda calc deebisee shallagu oomisha. Calc akka deebisee shallagu dirqisiisuuf hujeeka shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 dhiibi."
+msgid "<emph>Days</emph> is the number of workdays. Positive value for a result after the start date, negative value for a result before the start date."
+msgstr "<emph>Guyyoota</emph> lakkoofsa guyyaa hojiiwwaaniti. Gatii firii aduu jalqabame poozetivi yommuu ta'u,kan osoo hin jalqabamin dura immoo neegativii ta'u."
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id2091433\n"
+"func_workday.xhp\n"
+"par_id3150693\n"
+"192\n"
"help.text"
-msgid "To generate random numbers which never recalculate, copy cells containing this function, and use <item type=\"menuitem\">Edit - Paste Special</item> (with <item type=\"menuitem\">Paste All</item> and <item type=\"menuitem\">Formulas</item> not marked and <item type=\"menuitem\">Numbers</item> marked)."
-msgstr "Lakkoofsota tasaa kan gongumaa deebi'ee hin shallagamne, man'eewwan faankishinii kana qaban garagalchuu, fi <item type=\"menuitem\">Gulaaluu-maxxansuu addaa</item> (maxxansa <item type=\"menuitem\">Hundaa wajjin</item>fi<item type=\"menuitem\">Foormulaawwan</item> hin mallattoofne fi Lakkoofsota <item type=\"menuitem\">mallattaa'e</item> fayyadami)."
+msgid "<emph>Holidays</emph> is a list of optional holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
+msgstr "<emph>Guyyaa Ayyaanaa</emph> tarree dirqala guyyaa ayyaanootati.Kunis guyyaa hojiin alaati. Bakka guyyaan ayyaanoota tokko tokkon eeramanitti,hangii man'ee galchi."
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164772\n"
-"675\n"
+"func_workday.xhp\n"
+"hd_id3150141\n"
+"193\n"
"help.text"
msgid "Example"
msgstr "Fakkeenya"
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164785\n"
-"676\n"
+"func_workday.xhp\n"
+"par_id3152782\n"
+"194\n"
"help.text"
-msgid "<item type=\"input\">=RANDBETWEEN(20;30)</item> returns an integer of between 20 and 30."
-msgstr "<item type=\"input\">=RANDBETWEEN(20;30)</item> intijarii 20 fi 30 gidduu jiru deebisa"
+msgid "What date came 17 workdays after 1 December 2001? Enter the start date \"2001-12-01\" in C3 and the number of workdays in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
+msgstr "Mudde 1 bara 2001 guyyaa hojii guyyaa 17 booda guyyaa kamtu dhufa? C3 keessatti aduu calqaba galchi\"2001-12-01\" ,D3 keessa immoo lakkoofsa guyyaa hojiiwwaani galchi.Man'eewwaan F3 hanga J3 keessaa immo ayyaanoota qillee fi waggaa haaraa itti anuun dhufaan of keessaatti qabata.\"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3164800\n"
+"func_workday.xhp\n"
+"par_id3146142\n"
+"195\n"
"help.text"
-msgid "<bookmark_value>RAND function</bookmark_value><bookmark_value>random numbers;between 0 and 1</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii RAND</bookmark_value><bookmark_value>lakkoofsota tasaa; 0 fi 1 gidduu</bookmark_value>"
+msgid "=WORKDAY(C3;D3;F3:J3) returns 2001-12-28. Format the serial date number as a date, for example in the format YYYY-MM-DD."
+msgstr "=WORKDAY(C3;D3;F3:J3) 2001-12-28 kenna.Lakkoofsa eenyummaa aduu akka aduutti dhangeessi.Fakkeenyaaf dhangii YYYY-MM-DD."
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164800\n"
-"542\n"
+"func_year.xhp\n"
+"tit\n"
"help.text"
-msgid "RAND"
-msgstr "RAND"
+msgid "YEAR"
+msgstr "YEAR"
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164829\n"
-"543\n"
+"func_year.xhp\n"
+"bm_id3153982\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZUFALLSZAHL\">Returns a random number between 0 and 1.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZUFALLSZAHL\">Lakkoofsa tasaa 0 fi 1 gidduu jiru deebisa.</ahelp>"
+msgid "<bookmark_value>YEAR function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii YEAR</bookmark_value>"
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164870\n"
-"545\n"
+"func_year.xhp\n"
+"hd_id3153982\n"
+"37\n"
+"help.text"
+msgid "<variable id=\"year\"><link href=\"text/scalc/01/func_year.xhp\">YEAR</link></variable>"
+msgstr "<variable id=\"year\"><link href=\"text/scalc/01/func_year.xhp\">YEAR</link></variable>"
+
+#: func_year.xhp
+msgctxt ""
+"func_year.xhp\n"
+"par_id3147496\n"
+"38\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_JAHR\">Returns the year as a number according to the internal calculation rules.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_JAHR\">Akkaata seera shallagaa keessaattiin waggaa akkaa lakkoofsatti kenna.</ahelp>"
+
+#: func_year.xhp
+msgctxt ""
+"func_year.xhp\n"
+"hd_id3146090\n"
+"39\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164884\n"
-"546\n"
+"func_year.xhp\n"
+"par_id3154304\n"
+"40\n"
"help.text"
-msgid "RAND()"
-msgstr "RAND()"
+msgid "YEAR(Number)"
+msgstr "YEAR(lakkoofsa)"
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5092318\n"
+"func_year.xhp\n"
+"par_id3156013\n"
+"41\n"
"help.text"
-msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
-msgstr "Faankishiniin kun lakkoofsa tasaa haaraa yeroo hunda calc deebisee shallagu oomisha. Calc akka deebisee shallagu dirqisiisuuf hujeeka shift++<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 dhiibi."
+msgid "<emph>Number</emph> shows the internal date value for which the year is to be returned."
+msgstr "<emph>lakkoofsi</emph> Gatii aduu keessaa mul'isuun waggaa kenna."
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9312417\n"
+"func_year.xhp\n"
+"hd_id3152797\n"
+"42\n"
"help.text"
-msgid "To generate random numbers which never recalculate, copy cells each containing =RAND(), and use <item type=\"menuitem\">Edit - Paste Special</item> (with <item type=\"menuitem\">Paste All</item> and <item type=\"menuitem\">Formulas</item> not marked and <item type=\"menuitem\">Numbers</item> marked)."
-msgstr "Lakkoofsota tasaa kan gongumaa deebi'ee hin shallagamne, man'eewwan =RAND(), qaban garagalchuu, fi <item type=\"menuitem\">Gulaaluu-maxxansuu addaa</item> (maxxansa <item type=\"menuitem\">Hundaa wajjin</item>fi<item type=\"menuitem\">Foormulaawwan</item> hin mallattoofne fi Lakkoofsota <item type=\"menuitem\">mallattaa'e</item> fayyadami)."
+msgid "Examples"
+msgstr "Fakkeenyawwan"
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id9089022\n"
+"func_year.xhp\n"
+"par_id3145668\n"
+"43\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "<item type=\"input\">=YEAR(1)</item> returns 1899"
+msgstr "<item type=\"input\">=YEAR(1)</item> 1899 kenna"
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9569078\n"
+"func_year.xhp\n"
+"par_id3151168\n"
+"44\n"
"help.text"
-msgid "<item type=\"input\">=RAND()</item> returns a random number between 0 and 1."
-msgstr "<item type=\"input\">=RAND()</item> returns a random number between 0 and 1."
+msgid "<item type=\"input\">=YEAR(2)</item> returns 1900"
+msgstr "<item type=\"input\">=YEAR(2)</item> 1900 kenna"
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3164897\n"
+"func_year.xhp\n"
+"par_id3150115\n"
+"45\n"
"help.text"
-msgid "<bookmark_value>COUNTIF function</bookmark_value><bookmark_value>counting;specified cells</bookmark_value>"
-msgstr "<bookmark_value>Faankishinii COUNTIF</bookmark_value><bookmark_value>lakkaa'uu;man'eewwan adda ba'an</bookmark_value>"
+msgid "<item type=\"input\">=YEAR(33333.33)</item> returns 1991"
+msgstr "<item type=\"input\">=YEAR(33333.33)</item> 1991 kenna"
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164897\n"
-"547\n"
+"func_yearfrac.xhp\n"
+"tit\n"
"help.text"
-msgid "COUNTIF"
-msgstr "COUNTIF"
+msgid "YEARFRAC"
+msgstr "YEARFRAC"
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164926\n"
-"548\n"
+"func_yearfrac.xhp\n"
+"bm_id3148735\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZAEHLENWENN\">Returns the number of cells that meet with certain criteria within a cell range.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZAEHLENWENN\">Lakkoofsa man'eewwanii kan ulaagaa wayii hammangaa man'ee keessaa waliin wal qabatu deebisa.</ahelp>"
+msgid "<bookmark_value>YEARFRAC function</bookmark_value>"
+msgstr "<bookmark_value>fankishinii YEARFRAC</bookmark_value>"
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164953\n"
-"549\n"
+"func_yearfrac.xhp\n"
+"hd_id3148735\n"
+"196\n"
+"help.text"
+msgid "<variable id=\"yearfrac\"><link href=\"text/scalc/01/func_yearfrac.xhp\">YEARFRAC</link></variable>"
+msgstr "<variable id=\"yearfrac\"><link href=\"text/scalc/01/func_yearfrac.xhp\">YEARFRAC</link></variable>"
+
+#: func_yearfrac.xhp
+msgctxt ""
+"func_yearfrac.xhp\n"
+"par_id3150899\n"
+"197\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_YEARFRAC\"> The result is a number between 0 and 1, representing the fraction of a year between <emph>StartDate</emph> and <emph>EndDate</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_YEARFRAC\"> Firiin lakkoofsoota 0 fi 1 gidduutti argaman,entaa waggaa<emph>Aduu Jalqaba</emph>fi <emph>Aduu Xumura</emph>.</ahelp>jidduutti argaman bakka bu'a."
+
+#: func_yearfrac.xhp
+msgctxt ""
+"func_yearfrac.xhp\n"
+"hd_id3155259\n"
+"198\n"
"help.text"
msgid "Syntax"
msgstr "Caasima"
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164967\n"
-"550\n"
+"func_yearfrac.xhp\n"
+"par_id3155823\n"
+"199\n"
"help.text"
-msgid "COUNTIF(Range; Criteria)"
-msgstr "COUNTIF(Hammangaa; Ulaagaa)"
+msgid "YEARFRAC(StartDate; EndDate; Basis)"
+msgstr "YEARFRAC(Aduu Jalqaba;Aduu Xumura;Hunde)"
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164980\n"
-"551\n"
+"func_yearfrac.xhp\n"
+"par_id3145144\n"
+"200\n"
"help.text"
-msgid "<emph>Range</emph> is the range to which the criteria are to be applied."
-msgstr "<emph>Hammangaan</emph> hammangaa ulaagaa hojiirra ooluudha."
+msgid "<emph>StartDate</emph> and <emph>EndDate</emph> are two date values."
+msgstr "<emph>Aduu Jalqaba</emph> and <emph>Aduu Xumura</emph> gatiiwwaan aduu lamaaniiti."
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165000\n"
-"552\n"
+"func_yearfrac.xhp\n"
+"par_id3149954\n"
+"201\n"
"help.text"
-msgid "<emph>Criteria</emph> indicates the criteria in the form of a number, an expression or a character string. These criteria determine which cells are counted. You may also enter a search text in the form of a regular expression, e.g. b.* for all words that begin with b. You may also indicate a cell range that contains the search criterion. If you search for literal text, enclose the text in double quotes."
-msgstr "<emph>Ulaagaan</emph>, ulaagaa akka unka lakkoofsaatti, himamsaatti ykn diraa arfiitti mul'isa. Ulaagaan kun man'eewwan kamtu akka lakkaa'amu murteessa. Akka himamsa idileetti barruu barbaachaa, fkf b.* jechoota hundaa b dhaan jalqaban galchuu dandeessa. Akkasumas, hammangaa man'ee kan ulaagaa barbaachaa of keessaa qabu agarsiisuu dandeessa. Yoo barruu harjifaatiif barbaadde, barruu waraabbii lamaan cufi."
+msgid "<emph>Basis</emph> is chosen from a list of options and indicates how the year is to be calculated."
+msgstr "<emph>Hundeen</emph> tarree dirqaalootni keessaa filatamanif aakkaataa waggaan itti shallagamuu agarsiisa."
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3165037\n"
-"553\n"
+"func_yearfrac.xhp\n"
+"par_id3146847\n"
+"202\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenya"
+msgid "Basis"
+msgstr "Hundee"
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3166505\n"
-"627\n"
+"func_yearfrac.xhp\n"
+"par_id3155956\n"
+"203\n"
"help.text"
-msgid "A1:A10 is a cell range containing the numbers <item type=\"input\">2000</item> to <item type=\"input\">2009</item>. Cell B1 contains the number <item type=\"input\">2006</item>. In cell B2, you enter a formula:"
-msgstr "A1:A10 hammangaa man'ee lakkoofsotaa <item type=\"input\">2000</item> hanga <item type=\"input\">2009</item> of keessaa qaba. Man'ee B1 lakkoofsa <item type=\"input\">2006</item> of keessaa qaba. Man'ee B2 keessa, foormulaa galchita:"
+msgid "Calculation"
+msgstr "Shallaggii"
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3581652\n"
+"func_yearfrac.xhp\n"
+"par_id3154502\n"
+"204\n"
"help.text"
-msgid "<item type=\"input\">=COUNTIF(A1:A10;2006)</item> - this returns 1"
-msgstr "<item type=\"input\">=COUNTIF(A1:A10;2006)</item> - kuni 1 deebisa"
+msgid "0 or missing"
+msgstr "0 ykn dhiisuu"
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id708639\n"
+"func_yearfrac.xhp\n"
+"par_id3149877\n"
+"205\n"
"help.text"
-msgid "<item type=\"input\">=COUNTIF(A1:A10;B1)</item> - this returns 1"
-msgstr "<item type=\"input\">=COUNTIF(A1:A10;B1)</item> - kuni 1 deebisa"
+msgid "US method (NASD), 12 months of 30 days each"
+msgstr "Akkaata mala (NASD),Tokko tokkoon ji'oota 12 guyyoota 30"
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5169225\n"
+"func_yearfrac.xhp\n"
+"par_id3148766\n"
+"250\n"
"help.text"
-msgid "<item type=\"input\">=COUNTIF(A1:A10;\">=2006\") </item>- this returns 4"
-msgstr "<item type=\"input\">=COUNTIF(A1:A10;\">=2006\") </item>- kuni 4 deebisa"
+msgid "1"
+msgstr ""
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id2118594\n"
+"func_yearfrac.xhp\n"
+"par_id3154326\n"
+"206\n"
"help.text"
-msgid "<item type=\"input\">=COUNTIF(A1:A10;\"<\"&B1)</item> - when B1 contains <item type=\"input\">2006</item>, this returns 6"
-msgstr "<item type=\"input\">=COUNTIF(A1:A10;\"<\"&B1)</item> - yoo B1 qabaate <item type=\"input\">2006</item>, kuni 6 deebisa"
+msgid "Exact number of days in months, exact number of days in year"
+msgstr "Lakkoofsa sirri guyyoota ji'aa keessa,Lakkoofsa sirri guyyoota waggaa keessaa"
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id166020\n"
+"func_yearfrac.xhp\n"
+"par_id3145245\n"
+"251\n"
"help.text"
-msgid "<item type=\"input\">=COUNTIF(A1:A10;C2)</item> where cell C2 contains the text <item type=\"input\">>2006</item> counts the number of cells in the range A1:A10 which are >2006"
-msgstr "<item type=\"input\">=COUNTIF(A1:A10;C2)</item> iddoo man'een C2 barruu <item type=\"input\">>2006</item> lakkoofsa man'eewwanii hammangaa A1:A10 keessaa lakkaa'u kan >2006 ta'u of keessaa qaba."
+msgid "2"
+msgstr ""
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6386913\n"
+"func_yearfrac.xhp\n"
+"par_id3155620\n"
+"207\n"
"help.text"
-msgid "To count only negative numbers: <item type=\"input\">=COUNTIF(A1:A10;\"<0\")</item>"
-msgstr "Lakkoofsota negatiivii qofa lakkaa'uuf: <item type=\"input\">=COUNTIF(A1:A10;\"<0\")</item>"
+msgid "Exact number of days in month, year has 360 days"
+msgstr "Lakkoofsa sirri guyyoota ji'aa keessa,waggaan guyyoota 360 of keessaa qaba."
-#: 06030400.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"06030400.xhp\n"
-"tit\n"
+"func_yearfrac.xhp\n"
+"par_id3145297\n"
+"252\n"
"help.text"
-msgid "Remove Dependents"
-msgstr "Hirkattoota Haqi"
+msgid "3"
+msgstr ""
-#: 06030400.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"06030400.xhp\n"
-"bm_id3147335\n"
+"func_yearfrac.xhp\n"
+"par_id3148394\n"
+"208\n"
"help.text"
-msgid "<bookmark_value>cells; removing dependents</bookmark_value>"
-msgstr "<bookmark_value>Man'eewwan; hirkattoota haquun</bookmark_value>"
+msgid "Exact number of days in month, year has 365 days"
+msgstr "Lakkoofsa sirri guyyoota ji'aa keessa,waggaan guyyoota 365 of keessaa qaba."
-#: 06030400.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"06030400.xhp\n"
-"hd_id3147335\n"
-"1\n"
+"func_yearfrac.xhp\n"
+"par_id3151022\n"
+"253\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030400.xhp\" name=\"Remove Dependents\">Remove Dependents</link>"
-msgstr "<link href=\"text/scalc/01/06030400.xhp\" name=\"Remove Dependents\">Hirkattoota Haqi</link>"
+msgid "4"
+msgstr ""
-#: 06030400.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"06030400.xhp\n"
-"par_id3148663\n"
-"2\n"
+"func_yearfrac.xhp\n"
+"par_id3150931\n"
+"209\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".uno:ClearArrowDependents\">Deletes one level of tracer arrows created with <emph>Trace Dependents</emph>.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\".uno:ClearArrowDependents\">Sadarkaa tokko xiyyoota faaneesaa <emph>Hirkattoota Sakkatta'i</emph> waliin uumame haqi.</ahelp>"
+msgid "European method, 12 months of 30 days each"
+msgstr "Mala Awurooppaan,tokkoo tokkoon ji'aa 12 guyyoota 30"
-#: 04010000.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04010000.xhp\n"
-"tit\n"
+"func_yearfrac.xhp\n"
+"hd_id3145626\n"
+"210\n"
"help.text"
-msgid "Manual Break"
-msgstr "Cita Hujeekaa"
+msgid "Example"
+msgstr "Fakkeenya"
-#: 04010000.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04010000.xhp\n"
-"bm_id3153192\n"
+"func_yearfrac.xhp\n"
+"par_id3149007\n"
+"211\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; inserting breaks in</bookmark_value><bookmark_value>inserting; breaks</bookmark_value><bookmark_value>page breaks; inserting in spreadsheets</bookmark_value>"
-msgstr "<bookmark_value>wardiiwwan;citoota saaguu</bookmark_value><bookmark_value>saaguu;citoota</bookmark_value><bookmark_value>citoota fuulaa;wardiiwwan keessa saaguu</bookmark_value>"
+msgid "What fraction of the year 2008 lies between 2008-01-01 and 2008-07-01?"
+msgstr "Hammi entaa bara 2008 baroota 2008-01-01 fi 2008-07-01 jidduu jiru meeqa?"
-#: 04010000.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04010000.xhp\n"
-"hd_id3153192\n"
-"1\n"
+"func_yearfrac.xhp\n"
+"par_id3154632\n"
+"212\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04010000.xhp\" name=\"Manual Break\">Manual Break</link>"
-msgstr "<link href=\"text/scalc/01/04010000.xhp\" name=\"Manual Break\">Cita hujeekaa</link>"
+msgid "=YEARFRAC(\"2008-01-01\"; \"2008-07-01\";0) returns 0.50."
+msgstr "=YEARFRAC(\"2008-01-01\"; \"2008-07-01\";0) .50 kenna"
-#: 04010000.xhp
+#: solver.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3125864\n"
-"2\n"
+"solver.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">This command inserts manual row or column breaks to ensure that your data prints properly. You can insert a horizontal page break above, or a vertical page break to the left of, the active cell.</ahelp>"
-msgstr "<ahelp hid=\".\">Ajajni kun akka galmeen ke sirnaan maxxansu sirriitti beekuuf citoota hujeeka tarjaa yookiin tarree saaga.</ahelp>"
+msgid "Solver"
+msgstr "Furaa"
-#: 04010000.xhp
+#: solver.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3155133\n"
-"3\n"
+"solver.xhp\n"
+"bm_id7654652\n"
"help.text"
-msgid "Choose <link href=\"text/scalc/01/02190000.xhp\" name=\"Edit - Delete Manual Break\">Edit - Delete Manual Break</link> to remove breaks created manually."
-msgstr "citoota hujeekaan uumaman haquuf <link href=\"text/scalc/01/02190000.xhp\" name=\"Edit - Delete Manual Break\">Gulaali - Cita Hujeekaa Haqi</link> filadhu."
+msgid "<bookmark_value>goal seeking;solver</bookmark_value><bookmark_value>what if operations;solver</bookmark_value><bookmark_value>back-solving</bookmark_value><bookmark_value>solver</bookmark_value>"
+msgstr "<bookmark_value>barbaachisaa galchii;furaa</bookmark_value><bookmark_value>maal yoo dalagoota;furaa</bookmark_value><bookmark_value>duuba-furuu</bookmark_value><bookmark_value>furaa</bookmark_value>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"tit\n"
+"solver.xhp\n"
+"hd_id9216284\n"
"help.text"
-msgid "Criteria"
-msgstr "Ulaagaalee"
+msgid "<variable id=\"solver\"><link href=\"text/scalc/01/solver.xhp\">Solver</link></variable>"
+msgstr "<variable id=\"solver\"><link href=\"text/scalc/01/solver.xhp\">Furaa</link></variable>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"bm_id1464278\n"
+"solver.xhp\n"
+"par_id9210486\n"
"help.text"
-msgid "<bookmark_value>selection lists;validity</bookmark_value>"
-msgstr "<bookmark_value>tarreewwaan filanno;Gataa'insa</bookmark_value>"
+msgid "<ahelp hid=\".\">Opens the Solver dialog. A solver allows to solve equations with multiple unknown variables by goal seeking methods.</ahelp>"
+msgstr "<ahelp hid=\".\">Qaaqa fura bana.Seerota ga'uumsaa barbaada fayyadamuun qixxaatoota jijjiiraamoota danuu qabu akka furtuuf furaan si eeyyama.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"hd_id3153032\n"
-"1\n"
+"solver.xhp\n"
+"par_id8538773\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12120100.xhp\" name=\"Criteria\">Criteria</link>"
-msgstr "<link href=\"text/scalc/01/12120100.xhp\" name=\"Criteria\">Ulaagaalee</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\"> galtii man'eef wabii man'ee galcha ykn cuqaasa.Dirreen kunis teessoo gatii man'ee guutoola'ee qabata</ahelp>."
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3156327\n"
-"2\n"
+"solver.xhp\n"
+"par_id7564012\n"
"help.text"
-msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_VALUES\">Specify the validation rules for the selected cell(s).</ahelp>"
-msgstr "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_VALUES\">man'ee(wwaan) filatamoof seera gitaa'insa ifteessi.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation for a maximum value of the target cell.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gatii ol'aantoo galtii man'ee Qixxaatoota furuuf yaala.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3155923\n"
-"4\n"
+"solver.xhp\n"
+"par_id1186254\n"
"help.text"
-msgid "For example, you can define criteria such as: \"Numbers between 1 and 10\" or \"Texts that are no more than 20 characters\"."
-msgstr "Fakkeenyaaf,ulaagaalee kan akka:\"Lakkoofsota 1 fi 10 giddu\" ykn \"Barrruuwwaan arfiilee 20 olii hin qabne\" hiiku dandessa."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation for a minimum value of the target cell.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gatii gad'aantoo galtii man'ee Qixxaatoota furuuf yaala.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"hd_id3153896\n"
-"5\n"
+"solver.xhp\n"
+"par_id7432477\n"
"help.text"
-msgid "Allow"
-msgstr "Heyyami"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation to approach a given value of the target cell.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gatii ol'aantoo kenname galtii man'ee Qixxaatoota adeemsa ittiin furaamu yaala.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3150400\n"
-"6\n"
+"solver.xhp\n"
+"par_id7141026\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_ALLOW\">Click a validation option for the selected cell(s).</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_ALLOW\">man'ee(wwaan) filatamoof dirqaqla gitaa'insa cuqaasi.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value or a cell reference.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gatii ykn wabii man'ee galchi.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3148797\n"
-"17\n"
+"solver.xhp\n"
+"par_id8531449\n"
"help.text"
-msgid "The following conditions are available:"
-msgstr "Ulaagaaleen armaan gadii ni jiru"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the cell range that can be changed.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hangii man'ee jijjiiramuu danda'u galchi.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3150447\n"
-"18\n"
+"solver.xhp\n"
+"par_id9183935\n"
"help.text"
-msgid "Condition"
-msgstr "Haala"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a cell reference.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wabii man'ee galchi.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3155854\n"
-"19\n"
+"solver.xhp\n"
+"par_id946684\n"
"help.text"
-msgid "Effect"
-msgstr "Galtee"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select an operator from the list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ogeejjii tarree keessaa fili.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3153092\n"
-"20\n"
+"solver.xhp\n"
+"par_id9607226\n"
"help.text"
-msgid "All values"
-msgstr "Gatiiwwaan hunda"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a value or a cell reference.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gatii ykn wabii man'ee galchi.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3155411\n"
-"21\n"
+"solver.xhp\n"
+"par_id1939451\n"
"help.text"
-msgid "No limitation."
-msgstr "Hin daangeffamne."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to shrink or restore the dialog. You can click or select cells in the sheet. You can enter a cell reference manually in the input box.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Bakkabuusuuf ykn huuqisuuf qaaqa cuqaasi.Man'ee barruu keessa cuqaasuu ykn filuu dandessa.Hujeeqadhaan wabii man'ee sanduuqa naqaatti galchuu dandeessa.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3147434\n"
-"22\n"
+"solver.xhp\n"
+"par_id9038972\n"
"help.text"
-msgid "Whole number"
-msgstr "Lakkoofsa hundaa"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to remove the row from the list. Any rows from below this row move up.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tarree tarree keessaa haquuf cuqaasi.tarreen geejjella tarree kanatti argamu ol dhufa.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3154319\n"
-"23\n"
+"solver.xhp\n"
+"par_id2423780\n"
"help.text"
-msgid "Only whole numbers corresponding to the condition."
-msgstr "Lakkoofsota hundaa qofatu ulaagaan walgita."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Options dialog.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Qaaqa filaannoowwani bana.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3145802\n"
-"24\n"
+"solver.xhp\n"
+"par_id2569658\n"
"help.text"
-msgid "Decimal"
-msgstr "Kurnyee"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to solve the equation with the current settings. The dialog settings are retained until you close the current document.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Qindeessiitoota amma fayyadamun qixxaatoo furuuf cuqaasi.galmeewwaan amma hanga cuuftutti qaaqa qindeessitoota tursi.</ahelp>"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3153160\n"
-"25\n"
+"solver.xhp\n"
+"par_id5474410\n"
"help.text"
-msgid "All numbers corresponding to the condition."
-msgstr "Lakkoofsootni hundi uulaagaan wal gitu."
+msgid "To solve equations with the solver"
+msgstr "Furaadhan qixxaatoota furuuf"
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3149377\n"
-"26\n"
+"solver.xhp\n"
+"par_id2216559\n"
"help.text"
-msgid "Date"
-msgstr "Aduu"
+msgid "The goal of the solver process is to find those variable values of an equation that result in an optimized value in the <emph>target cell</emph>, also named the \"objective\". You can choose whether the value in the target cell should be a maximum, a minimum, or approaching a given value."
+msgstr "Kayyoon adeemsa furaas gatii jijjiramoota kan qixxaatton gati ol'aantoo <emph>galtii man'ee</emph> akkasuma kan\"kayyoo\" jedhamu barbaaduuf oola. Gatiin galtii man'ee ol'aantoo,gad'aantoo ykn gatii kennameeti kan dhiyaatu keessaa filachuu dandessa."
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3150718\n"
-"27\n"
+"solver.xhp\n"
+"par_id7869502\n"
"help.text"
-msgid "All numbers corresponding to the condition. The entered values are formatted accordingly the next time the dialog is called up."
-msgstr "Lakkoofsotni hundi ulaagaa sana guutu.Gatiwwaan galan kunis kan isaan dhangaa'aan akkaataa qaaqni itti aanun dhufu waamamunidha."
+msgid "The initial variable values are inserted in a rectangular cell range that you enter in the <emph>By changing cells</emph> box."
+msgstr "Gatiin jijjiirama jalqaba hangii man'ee reektaangulaawaa kan sanduuqni<emph>Man'eewwwan jijjiirii</emph>keessatti saagama."
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3146969\n"
-"28\n"
+"solver.xhp\n"
+"par_id9852900\n"
"help.text"
-msgid "Time"
-msgstr "Yeroo"
+msgid "You can define a series of limiting conditions that set constraints for some cells. For example, you can set the constraint that one of the variables or cells must not be bigger than another variable, or not bigger than a given value. You can also define the constraint that one or more variables must be integers (values without decimals), or binary values (where only 0 and 1 are allowed)."
+msgstr "Man'eewwaan murtaa'oof ittisamoota qindeessuuf walfaannee haloota murteessoo ta'an hikuu dandeessa.Fakkeenyaaf,jijjiramoota ykn man'eewwwaan man'eewwaan biraa kan hin caalle ykn gatii kennamee irra kan hin caalle ittisamootasa qindeessu dandessa. Akkasummas ittisaamoota jijjiramaan isaa tokko ykn isa oli dirqiin intiijera ta'ee(gatiin kan kurnyee hin taane),ykn gatiiwwaan lamee(kan 0 fi 2 qoofti eeyyamamedha)."
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3155066\n"
-"29\n"
+"solver.xhp\n"
+"par_id5323953\n"
"help.text"
-msgid "All numbers corresponding to the condition. The entered values are formatted accordingly the next time the dialog is called up."
-msgstr "Lakkoofsotni hundi ulaagaa sana guutu.Gatiwwaan galan kunis kan isaan dhangaa'aan akkaataa qaaqni itti aanun dhufu waamamunidha."
+msgid "The default solver engine supports only linear equations."
+msgstr "Malli furaa durti qixxaatoo sorooroo qofa deegara."
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN106A0\n"
+"solver_options.xhp\n"
+"tit\n"
"help.text"
-msgid "Cell range"
-msgstr "Hangii man'ee"
+msgid "Options"
+msgstr "Dirqalaalee"
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN106A5\n"
+"solver_options.xhp\n"
+"hd_id2794274\n"
"help.text"
-msgid "Allow only values that are given in a cell range. The cell range can be specified explicitly, or as a named database range, or as a named range. The range may consist of one column or one row of cells. If you specify a range of columns and rows, only the first column is used."
-msgstr "Gatiwwaan hangii man'ee keessati qofa kennaman eeyyama.Hangii man'ee tokko tokkoon ifteessuun,ykn hangii deetaa teessoon maqeessuu,ykn hangiin maqeessuu.Hangiin kunis tari tarjaa ykn tarree man'eewwaani tokkoo of keessaa qabachuu danda'a.Yoo dhangii tarjaawwani ykn tarreewwaani ifteessitee,tarjaa duraa qoofa fayyadamna."
+msgid "Options"
+msgstr "Dirqalaalee"
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN106AB\n"
+"solver_options.xhp\n"
+"par_id6776940\n"
"help.text"
-msgid "List"
-msgstr "Tarree"
+msgid "The Options dialog for the <link href=\"text/scalc/01/solver.xhp\">Solver</link> is used to set some options."
+msgstr "Qaaqni dirqaaloota<link href=\"text/scalc/01/solver.xhp\">furaadhaaf</link>dirqaalota murta'a ta'ee tokko qindeessuuf oola."
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN106B0\n"
+"solver_options.xhp\n"
+"par_id393993\n"
"help.text"
-msgid "Allow only values or strings specified in a list. Strings and values can be mixed. Numbers evaluate to their value, so if you enter the number 1 in the list, the entry 100% is also valid."
-msgstr "Gatiiwwaan ykn diraawwan tarree keessatti eeraman qofa hayyami.Lakkoofsota gatii isaanii madaalun,kanaafuu yoo lakkoofsa 1 tarree keessa galchite,galfanni 100% gitaa'a dha."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a solver engine. The listbox is disabled if only one solver engine is installed. Solver engines can be installed as extensions.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Mala fura filadhu.sanduuqni tarree kan inni hojjii isaa dhaabu malli furaa tokko qofaa yoo ijaaramudha , mallootni fura kun akka dheeraattoowwaanitti ijaaramuu danda'u.</ahelp>"
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3154756\n"
-"30\n"
+"solver_options.xhp\n"
+"par_id5871761\n"
"help.text"
-msgid "Text length"
-msgstr "Dheerina barruu"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Configure the current solver.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">furaa ammaa qindeessa.</ahelp>"
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3147339\n"
-"31\n"
+"solver_options.xhp\n"
+"par_id6531266\n"
"help.text"
-msgid "Entries whose length corresponds to the condition."
-msgstr "Galfata dheerinni isaa ulaagaa kennamee gute."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">If the current entry in the Settings listbox allows to edit a value, you can click the Edit button. A dialog opens where you can change the value.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Galumsi ammaa kan qindaa'iinoota tarree sanduqa keessatti argamuu akka gulaaluuf yoo si eeyyame,qabdu gulaalaa cuqaasu dandessa.Bakka gatii jijjiiruuf barbaaddutti qaaqa bani.</ahelp>"
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"hd_id3154704\n"
-"7\n"
+"solver_options.xhp\n"
+"par_id3912778\n"
"help.text"
-msgid "Allow blank cells"
-msgstr "Man'eewwaan duwwaa hayyami"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter or change the value.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gati galchi ykn jijjiiri.</ahelp>"
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3153967\n"
-"8\n"
+"solver_options.xhp\n"
+"par_id3163853\n"
"help.text"
-msgid "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_VALUES:TSB_ALLOW_BLANKS\">In conjunction with <emph>Tools - Detective - Mark invalid Data</emph>, this defines that blank cells are shown as invalid data (disabled) or not (enabled).</ahelp>"
-msgstr "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_VALUES:TSB_ALLOW_BLANKS\">Wal qabsiisuu <emph>Meeshaalee-Argama-Deetaa fashaala'ee mallatteessi</emph>, kunis man'eeewwaan duwwaan akkaa deetaa fashalaaweetti(dhaamsameetti) ykn (dandeessifamee)miti.</ahelp>"
+msgid "Use the Options dialog to configure the current solver engine."
+msgstr "Mala furaa ammaa fayyadamuun qaaqa dirqalaa qindeessi."
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN10709\n"
+"solver_options.xhp\n"
+"par_id121158\n"
"help.text"
-msgid "Show selection list"
-msgstr "Tarree filannoo agarsiisi"
+msgid "You can install more solver engines as extensions, if available. Open Tools - Extension Manager and browse to the Extensions web site to search for extensions."
+msgstr "Yoo jira ta'eef,maloota furaa baay'ee akka dheeraattoowwaanitti ijaaruu dandeessa.Dheeraattoowwaan barbaadduuf Meeshaalee bani-Taaliga Dheeratessii itti ansuun dheerattoowwaan saphaphuu sakkata'i."
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN1070D\n"
+"solver_options.xhp\n"
+"par_id3806878\n"
"help.text"
-msgid "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SHOWLIST\">Shows a list of all valid strings or values to select from. The list can also be opened by selecting the cell and pressing Ctrl+D (Mac: Command+D).</ahelp>"
-msgstr "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SHOWLIST\">Gatiiwwaan keessaa filachuuf ykn tarree diraawwaan gitaa'aa ta'an agarsiisa. Tarree kan bannu dandeenyu man'ee filuun itti ansuun Ctrl+D dhiibuu (Mac: ajaja+D).</ahelp>"
+msgid "Select the solver engine to use and to configure from the listbox. The listbox is disabled if onle one solver engine is installed."
+msgstr "Mala furaa itti fayyadamuuf ta'ee qindeessuuf sanduqa tarree keessa filadhu,sanduuqni tarree kan inni hojii isaa dhabu yoo furan tokko qofa ijaramedha."
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN10724\n"
+"solver_options.xhp\n"
+"par_id130619\n"
"help.text"
-msgid "Sort entries ascending"
-msgstr "Galti oliin tartiiba qabsiisi"
+msgid "In the Settings box, check all settings that you want to use for the current goal seeking operation. If the current option offers different values, the Edit button is enabled. Click Edit to open a dialog where you can change the value."
+msgstr "Sanduuqa qindaa'inoota keessatti,qindaa'inoota dalaagaalee barbacha galchii ammaa siif ta'aan hundaa mirkanneessii yoo dirqalli ammmaa gatiiwwaan kan biraa qabaate,qabduu gulaaltu hojii eegala.Gulaltu cuqasun qaaqa banuun bakkaa itti gatii jijjiirtuu argatta."
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN10728\n"
+"solver_options.xhp\n"
+"par_id9999694\n"
"help.text"
-msgid "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SORTLIST\">Sorts the selection list in ascending order and filters duplicates from the list. If not checked, the order from the data source is taken.</ahelp>"
-msgstr "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SORTLIST\">Tarree filannoo oliin tartiiba qabsiisi akkasumas tarree keessa gingiilchuun baay'isi.Yoo hin mirkaannoofne,tartiiba madda deetaa fudhana.</ahelp>"
+msgid "Click OK to accept the changes and to go back to the <link href=\"text/scalc/01/solver.xhp\">Solver</link> dialog."
+msgstr "Wanta jijjiiramee fudhaachuuf ykn qaaqa <link href=\"text/scalc/01/solver.xhp\">Furaa</link> duubatti deebisuuf Tole cuqaasi."
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN1073F\n"
+"text2columns.xhp\n"
+"tit\n"
"help.text"
-msgid "Source"
-msgstr "Madda"
+msgid "Text to Columns"
+msgstr "Barruu gara Tarjaawwanitti"
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN10743\n"
+"text2columns.xhp\n"
+"bm_id8004394\n"
"help.text"
-msgid "<ahelp hid=\"sc:Edit:TP_VALIDATION_VALUES:EDT_MIN\">Enter the cell range that contains the valid values or text.</ahelp>"
-msgstr "<ahelp hid=\"sc:Edit:TP_VALIDATION_VALUES:EDT_MIN\"> Man'ee hangii gatii gita'aa ykn barruu qabate galchi.</ahelp>"
+msgid "<bookmark_value>text to columns</bookmark_value>"
+msgstr "<bookmark_value>barruu gara tarjaawwanitti</bookmark_value>"
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN1075A\n"
+"text2columns.xhp\n"
+"hd_id2300180\n"
"help.text"
-msgid "Entries"
-msgstr "Galinsa"
+msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
+msgstr "<link href=\"text/scalc/01/text2columns.xhp\">Barru gara Tarjaawwanitti</link>"
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN1075E\n"
+"text2columns.xhp\n"
+"par_id655232\n"
"help.text"
-msgid "<ahelp hid=\"sc:MultiLineEdit:TP_VALIDATION_VALUES:EDT_LIST\">Enter the entries that will be valid values or text strings.</ahelp>"
-msgstr "<ahelp hid=\"sc:MultiLineEdit:TP_VALIDATION_VALUES:EDT_LIST\">Gatinsaa gatii gita'aa ykn diraa barruu qabate galchi.</ahelp>"
+msgid "<variable id=\"text2columns\">Opens the Text to Columns dialog, where you enter settings to expand the contents of selected cells to multiple cells. </variable>"
+msgstr "<variable id=\"text2columns\">Qaaqa Barruu gara Tarjaawwanitti bana,iddoo itti qinda'inoota galchuudhaan qabiiyyeewwaan man'eewwaan filatamanii gara man'eewwaan baay'eetti babal'atani dha. </variable>"
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"hd_id3163807\n"
-"9\n"
+"text2columns.xhp\n"
+"hd_id9599597\n"
"help.text"
-msgid "Data"
-msgstr "Deetaa"
+msgid "To expand cell contents to multiple cells"
+msgstr "Qabiyyeewwaan man'ee gara man'ee baay'eetti babal'isuuf"
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3144502\n"
-"10\n"
+"text2columns.xhp\n"
+"par_id2021546\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_VALUE\">Select the comparative operator that you want to use.</ahelp> The available operators depend on what you selected in the <emph>Allow </emph>box. If you select \"between\" or \"not between\", the <emph>Minimum</emph> and <emph>Maximum</emph> input boxes appear. Otherwise, only the <emph>Minimum</emph>, the <emph>Maximum, or the Value</emph> input boxes appear."
-msgstr "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_VALUE\">Oggeejjii wal madaalaa kan itti fayyadamuu barbaaddu galchi.</ahelp> Ogeejjiin jiruus sanduuqa <emph>Hayyami </emph>ati filattee irratti hunda'a. Yoo \"gidduu\" ykn \"gidduu miti\",sanduuqni naqii <emph>Gadaantoo</emph> fi <emph>Olaantoo</emph>ni mul'ata. Kan kanaan alaa,sanduuqotni naqi <emph>Gadaantoo</emph>, the <emph>Olantoo,ykn gatiisa</emph> qofa mul'isa."
+msgid "You can expand cells that contain comma separated values (CSV) into multiple cells in the same row."
+msgstr "Tarree walfakkaata keessatti gatii qodduun addan qoodaman gara man'eewwan baay'eetti babal'isuu ni dandeessa."
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"hd_id3153782\n"
-"11\n"
+"text2columns.xhp\n"
+"par_id2623981\n"
"help.text"
-msgid "Value"
-msgstr "Gatii"
+msgid "For example, cell A1 contains the comma separated values <item type=\"literal\">1,2,3,4</item>, and cell A2 contains the text <item type=\"literal\">A,B,C,D</item>."
+msgstr "Fakkeenyaaf,man'een A1 gatii qoodduun qoodamaan<item type=\"literal\">1,2,3,4</item>,fi man'ee barruu A2 <item type=\"literal\">A,B,C,D</item> of keessaa qaba."
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3153266\n"
-"12\n"
+"text2columns.xhp\n"
+"par_id7242042\n"
"help.text"
-msgid "Enter the value for the data validation option that you selected in the <emph>Allow </emph>box."
-msgstr "Sanduuqa<emph>Heyyami </emph>keessaa isa filatte gati gata'insaa deetaa dirqalaaf galchi."
+msgid "Select the cell or cells that you want to expand."
+msgstr "Man'ee ykn man'eewwan babal'isuu barbaaddu filadhu."
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"hd_id3149814\n"
-"13\n"
+"text2columns.xhp\n"
+"par_id6999420\n"
"help.text"
-msgid "Minimum"
-msgstr "Gad'aantoo"
+msgid "Choose <emph>Data - Text to Columns</emph>."
+msgstr "<emph>Daataa-Barruu gara Tarjaawwanitti</emph> fili."
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3153199\n"
-"14\n"
+"text2columns.xhp\n"
+"par_id6334116\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MIN\">Enter the minimum value for the data validation option that you selected in the <emph>Allow </emph>box.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MIN\"> Dirqaala gitaa'insaa deeta sanduuqa <emph>Heyyamii</emph> keessatti filatteef gatii gad'aantoo galchi.</ahelp>"
+msgid "You see the Text to Columns dialog."
+msgstr "Qaaqa barruu gara tarjaawwanittitti argita."
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"hd_id3149035\n"
-"15\n"
+"text2columns.xhp\n"
+"par_id9276406\n"
"help.text"
-msgid "Maximum"
-msgstr "Gad'aantoo"
+msgid "Select the separator options. The preview shows how the current cell contents will be transformed into multiple cells."
+msgstr "Filaannoowwan gargareessaa filadhu.Durargiin akkaata man'een ammaa garaa man'eewwaan baay'eettii itti muxatan agarsiisa."
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3150089\n"
-"16\n"
+"text2columns.xhp\n"
+"par_id8523819\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MAX\">Enter the maximum value for the data validation option that you selected in the <emph>Allow </emph>box.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MAX\">Dirqaala gitaa'insaa deeta sanduuqa <emph>Heyyami </emph> keessatti filatteef gatii ol'aantoo galchi.</ahelp>"
+msgid "You can select a fixed width and then click the ruler on the preview to set cell breakup positions."
+msgstr "Baal'inaa murta'aa filadhuu, itti aansun sarartuu duraargii irra jiru cuqasuun iddoo addaan kukutinsaa man'ee qindeessuu dandeessa."
+
+#: text2columns.xhp
+msgctxt ""
+"text2columns.xhp\n"
+"par_id1517380\n"
+"help.text"
+msgid "You can select or enter separator characters to define the positions of breaking points. The separator characters are removed from the resulting cell contents."
+msgstr "Bakka tuqaa kukutinsaa arfiilee gargaaressaa filuu ykn galchuu dandeessa. Bu'aa qabiiyyeewwaan man'ee keessaa arfiileen gargaaressaa ni haqamu."
+
+#: text2columns.xhp
+msgctxt ""
+"text2columns.xhp\n"
+"par_id7110812\n"
+"help.text"
+msgid "In the example, you select the comma as a delimiter character. Cells A1 and A2 will be expanded to four columns each. A1 contains 1, B1 contains 2, and so on."
+msgstr "Fakkeenyaa irratti, qoodduu akka arfiilee addaan citinsaatti filatte. Man'eewwaan A1 fi A2 nin gara tarjaawwan afuriitti babal'achuu danda'u. A1 nin 1 qaba, A2'n 2 qaba fi akka kanaan ittin fufa."
diff --git a/source/om/helpcontent2/source/text/scalc/02.po b/source/om/helpcontent2/source/text/scalc/02.po
index 5da1c2e457a..c42096bde40 100644
--- a/source/om/helpcontent2/source/text/scalc/02.po
+++ b/source/om/helpcontent2/source/text/scalc/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:06+0200\n"
"PO-Revision-Date: 2011-04-09 12:03+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,279 +14,153 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: 10060000.xhp
+#: 02130000.xhp
msgctxt ""
-"10060000.xhp\n"
+"02130000.xhp\n"
"tit\n"
"help.text"
-msgid "Zoom Out"
-msgstr "Faaran Xinnessi"
-
-#: 10060000.xhp
-msgctxt ""
-"10060000.xhp\n"
-"bm_id3153561\n"
-"help.text"
-msgid "<bookmark_value>page views;reducing scales</bookmark_value><bookmark_value>zooming;reducing page views</bookmark_value>"
-msgstr "<bookmark_value>mul'annoowwan fuulaa;safaraawwan xinneessuu</bookmark_value><bookmark_value>guddisuu;mul'annoowwan fuulaa xinneessuu</bookmark_value>"
+msgid "Number format: Currency"
+msgstr "dhangii Lakkoofsa: Qarshii"
-#: 10060000.xhp
+#: 02130000.xhp
msgctxt ""
-"10060000.xhp\n"
-"hd_id3153561\n"
+"02130000.xhp\n"
+"hd_id3152892\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/10060000.xhp\" name=\"Zoom Out\">Zoom Out</link>"
-msgstr "<link href=\"text/scalc/02/10060000.xhp\" name=\"Zoom Out\">Faaran Xinnessi</link>"
+msgid "<link href=\"text/scalc/02/02130000.xhp\" name=\"Number format: Currency\">Number format: Currency</link>"
+msgstr "<link href=\"text/scalc/02/02130000.xhp\" name=\"Number format: Currency\">dhangii Lakkoofsaa: Qarshii</link>"
-#: 10060000.xhp
+#: 02130000.xhp
msgctxt ""
-"10060000.xhp\n"
-"par_id3151246\n"
+"02130000.xhp\n"
+"par_id3148837\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:ZoomOut\">Reduces the screen display of the current document. The current zoom factor is displayed on the <emph>Status Bar</emph>.</ahelp>"
-msgstr "<ahelp hid=\".uno:ZoomOut\">Argii agarsiistu galmee ammee xinneessu. Guddisiin ammee kan inni irratti agarsiifamuu <emph>Kabala Haalojii</emph>.</ahelp>"
-
-#: 10060000.xhp
-msgctxt ""
-"10060000.xhp\n"
-"par_id3150398\n"
-"4\n"
-"help.text"
-msgid "The minimum zoom factor is 20%."
-msgstr "Gaddeen inni guddaa issaa 20%."
-
-#: 10060000.xhp
-msgctxt ""
-"10060000.xhp\n"
-"par_id3153770\n"
-"help.text"
-msgid "<image id=\"img_id3155131\" src=\"cmd/sc_zoomout.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155131\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155131\" src=\"cmd/sc_zoomout.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155131\">Sajoo</alt></image>"
-
-#: 10060000.xhp
-msgctxt ""
-"10060000.xhp\n"
-"par_id3150440\n"
-"3\n"
-"help.text"
-msgid "Zooming Out"
-msgstr "Faaran Xinneessu"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Insert"
-msgstr "Saagi"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"bm_id3156329\n"
-"help.text"
-msgid "<bookmark_value>inserting; objects, toolbar icon</bookmark_value>"
-msgstr "<bookmark_value>saaguu; wantaa, sajoo kamshaa</bookmark_value>"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"hd_id3156329\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/02/18010000.xhp\" name=\"Insert\">Insert</link>"
-msgstr "<link href=\"text/scalc/02/18010000.xhp\" name=\"Insert\">Saagi</link>"
+msgid "<ahelp hid=\".uno:NumberFormatCurrency\" visibility=\"visible\">Applies the default currency format to the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".uno:NumberFormatCurrency\" visibility=\"visible\">durtii dhangii Lakkoofsa Qarshii man'ee filatemeef kennu.</ahelp>durtii"
-#: 18010000.xhp
+#: 02130000.xhp
msgctxt ""
-"18010000.xhp\n"
-"par_id3147336\n"
-"2\n"
+"02130000.xhp\n"
+"par_id3155267\n"
"help.text"
-msgid "<ahelp hid=\".uno:InsertCtrl\">Click the arrow next to the icon to open the <emph>Insert </emph>toolbar, where you can add graphics and special characters to the current sheet.</ahelp>"
-msgstr "<ahelp hid=\".uno:InsertCtrl\">xiyya issa sajooti ane'e jiru banuuf cuqaasi <emph>Saagi </emph>kamshaa, saxxaatofi addayaa arfii man'ee ammeeti ida'uudha.</ahelp>"
+msgid "<image src=\"cmd/sc_currencyfield.png\" id=\"img_id3159096\"><alt id=\"alt_id3159096\">Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_currencyfield.png\" id=\"img_id3159096\"><alt id=\"alt_id3159096\">Sajoo</alt></image>"
-#: 18010000.xhp
+#: 02130000.xhp
msgctxt ""
-"18010000.xhp\n"
-"par_id3148664\n"
+"02130000.xhp\n"
+"par_id3150214\n"
"3\n"
"help.text"
-msgid "Tools bar icon:"
-msgstr "Sajoo kamshaa meeshaalee:"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"par_id3150767\n"
-"help.text"
-msgid "<image id=\"img_id3156423\" src=\"cmd/sc_insertgraphic.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156423\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156423\" src=\"cmd/sc_insertgraphic.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156423\">Sajoo</alt></image>"
+msgid "Number Format: Currency"
+msgstr "dhangii Lakkoofsa: Qarshii"
-#: 18010000.xhp
+#: 02130000.xhp
msgctxt ""
-"18010000.xhp\n"
-"par_id3146120\n"
+"02130000.xhp\n"
+"par_id3146776\n"
"4\n"
"help.text"
-msgid "Insert"
-msgstr "Saagi"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"par_id3153188\n"
-"6\n"
-"help.text"
-msgid "You can select the following icons:"
-msgstr "Sajootta kana filuu ni dandessa:"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"hd_id4283883\n"
-"help.text"
-msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
-msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Bololi'aa Goodayyaa</link>"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"hd_id3149410\n"
-"8\n"
-"help.text"
-msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
-msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Arfii Addayaa</link>"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"hd_id3151117\n"
-"7\n"
-"help.text"
-msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"From File\">From File</link>"
-msgstr "<link href=\"text/shared/01/04140000.xhp\" name=\"From File\">Faayiliirraa</link>"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"hd_id3633533\n"
-"help.text"
-msgid "<link href=\"text/shared/01/04160300.xhp\" name=\"Formula\">Formula</link>"
-msgstr "<link href=\"text/shared/01/04160300.xhp\" name=\"Formula\">Foormulaa</link>"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"par_idN10769\n"
-"help.text"
-msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Insert Chart\">Chart</link>"
-msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Insert Chart\">Taattoo</link>"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"hd_id7581408\n"
-"help.text"
-msgid "<link href=\"text/shared/01/04150100.xhp\" name=\"OLE Object\">OLE Object</link>"
-msgstr "<link href=\"text/shared/01/04150100.xhp\" name=\"OLE Object\">Wanta OLE</link>"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>."
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Dhangii - Man'ee - Lakkoofsa</link>."
-#: 02170000.xhp
+#: 02140000.xhp
msgctxt ""
-"02170000.xhp\n"
+"02140000.xhp\n"
"tit\n"
"help.text"
-msgid "Number Format: Delete Decimal Place"
-msgstr "Dhangii Lakkoofsa: Haqi bakka kurnyee"
+msgid "Number format: Percent"
+msgstr "dhangii Lakkoofsa: Dhibbeentaa"
-#: 02170000.xhp
+#: 02140000.xhp
msgctxt ""
-"02170000.xhp\n"
-"hd_id3149164\n"
+"02140000.xhp\n"
+"hd_id3156329\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/02170000.xhp\" name=\"Number Format: Delete Decimal Place\">Number Format: Delete Decimal Place</link>"
-msgstr "<link href=\"text/scalc/02/02170000.xhp\" name=\"Number Format: Delete Decimal Place\">Dhangii Lakkoofsa: Haqi bakka</link>"
+msgid "<link href=\"text/scalc/02/02140000.xhp\" name=\"Number format: Percent\">Number format: Percent</link>"
+msgstr "<link href=\"text/scalc/02/02140000.xhp\" name=\"Number format: Percent\">dhangii Lakkoofsa: Dhibbeentaa</link>"
-#: 02170000.xhp
+#: 02140000.xhp
msgctxt ""
-"02170000.xhp\n"
-"par_id3147264\n"
+"02140000.xhp\n"
+"par_id3155629\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:NumberFormatDecDecimals\">Removes one decimal place from the numbers in the selected cells.</ahelp>"
-msgstr "<ahelp hid=\".uno:NumberFormatDecDecimals\">kurnyee tokko lakkoofsa man'ee filatemeeti Haqi.</ahelp>"
+msgid "<ahelp hid=\".uno:NumberFormatPercent\">Applies the percentage format to the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".uno:NumberFormatPercent\">dhangii dhibbeentaa man'ee filatemeef kennu.</ahelp>"
-#: 02170000.xhp
+#: 02140000.xhp
msgctxt ""
-"02170000.xhp\n"
-"par_id3145173\n"
+"02140000.xhp\n"
+"par_id3153968\n"
"help.text"
-msgid "<image id=\"img_id3153192\" src=\"cmd/sc_numberformatdecdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3153192\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153192\" src=\"cmd/sc_numberformatdecdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3153192\">Sajoo</alt></image>"
+msgid "<image id=\"img_id3150869\" src=\"cmd/sc_numberformatpercent.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150869\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150869\" src=\"cmd/sc_numberformatpercent.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150869\">Sajoo</alt></image>"
-#: 02170000.xhp
+#: 02140000.xhp
msgctxt ""
-"02170000.xhp\n"
-"par_id3154686\n"
+"02140000.xhp\n"
+"par_id3151114\n"
"3\n"
"help.text"
-msgid "Number Format: Delete Decimal Place"
-msgstr "Dhangii Lakkoofsa: Haqi bakka Kurnyee"
+msgid "Number Format: Percent"
+msgstr "dhangii Lakkoofsa: Dhibbeentaa"
-#: 02130000.xhp
+#: 02140000.xhp
msgctxt ""
-"02130000.xhp\n"
-"tit\n"
+"02140000.xhp\n"
+"bm_id3149260\n"
"help.text"
-msgid "Number format: Currency"
-msgstr "dhangii Lakkoofsa: Qarshii"
+msgid "<bookmark_value>percentage calculations</bookmark_value>"
+msgstr "<bookmark_value>Dhibbeentaa herregaa</bookmark_value>"
-#: 02130000.xhp
+#: 02140000.xhp
msgctxt ""
-"02130000.xhp\n"
-"hd_id3152892\n"
-"1\n"
+"02140000.xhp\n"
+"par_id3149260\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/scalc/02/02130000.xhp\" name=\"Number format: Currency\">Number format: Currency</link>"
-msgstr "<link href=\"text/scalc/02/02130000.xhp\" name=\"Number format: Currency\">dhangii Lakkoofsaa: Qarshii</link>"
+msgid "You can also enter a percentage sign (%) after a number in a cell:"
+msgstr "mallattoo dhibbeentaa (%) Lakkoofsa booda man'ee keessa galchuu dandessa:"
-#: 02130000.xhp
+#: 02140000.xhp
msgctxt ""
-"02130000.xhp\n"
-"par_id3148837\n"
-"2\n"
+"02140000.xhp\n"
+"par_id3155411\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".uno:NumberFormatCurrency\" visibility=\"visible\">Applies the default currency format to the selected cells.</ahelp>"
-msgstr "<ahelp hid=\".uno:NumberFormatCurrency\" visibility=\"visible\">durtii dhangii Lakkoofsa Qarshii man'ee filatemeef kennu.</ahelp>durtii"
+msgid "1% corresponds to 0.01"
+msgstr "1% corresponds to 0.01"
-#: 02130000.xhp
+#: 02140000.xhp
msgctxt ""
-"02130000.xhp\n"
-"par_id3155267\n"
+"02140000.xhp\n"
+"par_id3145749\n"
+"7\n"
"help.text"
-msgid "<image src=\"cmd/sc_currencyfield.png\" id=\"img_id3159096\"><alt id=\"alt_id3159096\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_currencyfield.png\" id=\"img_id3159096\"><alt id=\"alt_id3159096\">Sajoo</alt></image>"
+msgid "1 + 16% corresponds to 116% or 1.16"
+msgstr "1 + 16% corresponds to 116% or 1.16"
-#: 02130000.xhp
+#: 02140000.xhp
msgctxt ""
-"02130000.xhp\n"
-"par_id3150214\n"
-"3\n"
+"02140000.xhp\n"
+"par_id3148575\n"
+"8\n"
"help.text"
-msgid "Number Format: Currency"
-msgstr "dhangii Lakkoofsa: Qarshii"
+msgid "1%% corresponds to 0.0001"
+msgstr "1%% corresponds to 0.0001"
-#: 02130000.xhp
+#: 02140000.xhp
msgctxt ""
-"02130000.xhp\n"
-"par_id3146776\n"
-"4\n"
+"02140000.xhp\n"
+"par_id3159153\n"
+"10\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>."
-msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Dhangii - Man'ee - Lakkoofsa</link>."
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Dhangii - Man'ee - Lakkoofsa</link>"
#: 02150000.xhp
msgctxt ""
@@ -340,152 +214,151 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>."
msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Dhangii - Man'ee - Lakkoofsa</link>."
-#: 06070000.xhp
+#: 02160000.xhp
msgctxt ""
-"06070000.xhp\n"
+"02160000.xhp\n"
"tit\n"
"help.text"
-msgid "Accept"
-msgstr "Fudhu"
-
-#: 06070000.xhp
-msgctxt ""
-"06070000.xhp\n"
-"bm_id3143267\n"
-"help.text"
-msgid "<bookmark_value>formula bar; accepting inputs</bookmark_value><bookmark_value>functions; accepting input icon</bookmark_value>"
-msgstr "<bookmark_value>kabala foormulaa; dalagaa</bookmark_value><bookmark_value>dalagaa; sajoo naqaata fudhachuu</bookmark_value>"
+msgid "Number Format: Add Decimal Place"
+msgstr "Dhangii Lakkoofsa: Ida'i bakka Kurnyee"
-#: 06070000.xhp
+#: 02160000.xhp
msgctxt ""
-"06070000.xhp\n"
-"hd_id3143267\n"
+"02160000.xhp\n"
+"hd_id3150275\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/06070000.xhp\" name=\"Accept\">Accept</link>"
-msgstr "<link href=\"text/scalc/02/06070000.xhp\" name=\"Accept\">Fudhu</link>"
+msgid "<link href=\"text/scalc/02/02160000.xhp\" name=\"Number Format: Add Decimal Place\">Number Format: Add Decimal Place</link>"
+msgstr "<link href=\"text/scalc/02/02160000.xhp\" name=\"Number Format: Add Decimal Place\">Dhangii Lakkoofsa: Ida'i bakka kurnyee</link>"
-#: 06070000.xhp
+#: 02160000.xhp
msgctxt ""
-"06070000.xhp\n"
-"par_id3151245\n"
+"02160000.xhp\n"
+"par_id3150792\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_INSWIN_OK\">Accepts the contents of the <emph>Input line</emph>, and then inserts the contents into the current cell.</ahelp>"
-msgstr "<ahelp hid=\"HID_INSWIN_OK\">qabiyyee kana fudhachuu <emph>Naqaa sarara</emph>, itti ansuun qabiyyee ammee man'eeti galchuu.</ahelp>"
+msgid "<ahelp hid=\".uno:NumberFormatIncDecimals\">Adds one decimal place to the numbers in the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".uno:NumberFormatIncDecimals\">kurnyee tokko lakkoofsa man'ee filatemeet ida'i.</ahelp>"
-#: 06070000.xhp
+#: 02160000.xhp
msgctxt ""
-"06070000.xhp\n"
-"par_id3150769\n"
+"02160000.xhp\n"
+"par_id3145787\n"
"help.text"
-msgid "<image id=\"img_id3156422\" src=\"svx/res/nu07.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156422\" src=\"svx/res/nu07.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Sajoo</alt></image>"
+msgid "<image id=\"img_id3145271\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145271\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145271\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145271\">Sajoo</alt></image>"
-#: 06070000.xhp
+#: 02160000.xhp
msgctxt ""
-"06070000.xhp\n"
-"par_id3125864\n"
+"02160000.xhp\n"
+"par_id3149262\n"
"3\n"
"help.text"
-msgid "Accept"
-msgstr "Fudhu"
+msgid "Number Format: Add Decimal Place"
+msgstr "Dhangii Lakkoofsa: Ida'i bakka Kurnyee"
-#: 02140000.xhp
+#: 02170000.xhp
msgctxt ""
-"02140000.xhp\n"
+"02170000.xhp\n"
"tit\n"
"help.text"
-msgid "Number format: Percent"
-msgstr "dhangii Lakkoofsa: Dhibbeentaa"
+msgid "Number Format: Delete Decimal Place"
+msgstr "Dhangii Lakkoofsa: Haqi bakka kurnyee"
-#: 02140000.xhp
+#: 02170000.xhp
msgctxt ""
-"02140000.xhp\n"
-"hd_id3156329\n"
+"02170000.xhp\n"
+"hd_id3149164\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/02140000.xhp\" name=\"Number format: Percent\">Number format: Percent</link>"
-msgstr "<link href=\"text/scalc/02/02140000.xhp\" name=\"Number format: Percent\">dhangii Lakkoofsa: Dhibbeentaa</link>"
+msgid "<link href=\"text/scalc/02/02170000.xhp\" name=\"Number Format: Delete Decimal Place\">Number Format: Delete Decimal Place</link>"
+msgstr "<link href=\"text/scalc/02/02170000.xhp\" name=\"Number Format: Delete Decimal Place\">Dhangii Lakkoofsa: Haqi bakka</link>"
-#: 02140000.xhp
+#: 02170000.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3155629\n"
+"02170000.xhp\n"
+"par_id3147264\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:NumberFormatPercent\">Applies the percentage format to the selected cells.</ahelp>"
-msgstr "<ahelp hid=\".uno:NumberFormatPercent\">dhangii dhibbeentaa man'ee filatemeef kennu.</ahelp>"
+msgid "<ahelp hid=\".uno:NumberFormatDecDecimals\">Removes one decimal place from the numbers in the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".uno:NumberFormatDecDecimals\">kurnyee tokko lakkoofsa man'ee filatemeeti Haqi.</ahelp>"
-#: 02140000.xhp
+#: 02170000.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3153968\n"
+"02170000.xhp\n"
+"par_id3145173\n"
"help.text"
-msgid "<image id=\"img_id3150869\" src=\"cmd/sc_numberformatpercent.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150869\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150869\" src=\"cmd/sc_numberformatpercent.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150869\">Sajoo</alt></image>"
+msgid "<image id=\"img_id3153192\" src=\"cmd/sc_numberformatdecdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3153192\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153192\" src=\"cmd/sc_numberformatdecdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3153192\">Sajoo</alt></image>"
-#: 02140000.xhp
+#: 02170000.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3151114\n"
+"02170000.xhp\n"
+"par_id3154686\n"
"3\n"
"help.text"
-msgid "Number Format: Percent"
-msgstr "dhangii Lakkoofsa: Dhibbeentaa"
+msgid "Number Format: Delete Decimal Place"
+msgstr "Dhangii Lakkoofsa: Haqi bakka kurnyee"
-#: 02140000.xhp
+#: 06010000.xhp
msgctxt ""
-"02140000.xhp\n"
-"bm_id3149260\n"
+"06010000.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>percentage calculations</bookmark_value>"
-msgstr "<bookmark_value>Dhibbeentaa herregaa</bookmark_value>"
+msgid "Sheet Area"
+msgstr "Bakka Wardii"
-#: 02140000.xhp
+#: 06010000.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3149260\n"
-"5\n"
+"06010000.xhp\n"
+"bm_id3156326\n"
"help.text"
-msgid "You can also enter a percentage sign (%) after a number in a cell:"
-msgstr "mallattoo dhibbeentaa (%) Lakkoofsa booda man'ee keessa galchuu dandessa:"
+msgid "<bookmark_value>formula bar; sheet area names</bookmark_value><bookmark_value>sheet area names</bookmark_value><bookmark_value>showing; cell references</bookmark_value><bookmark_value>cell references; showing</bookmark_value>"
+msgstr "<bookmark_value>Kabala Foormulaa; bakka maqaa wardii</bookmark_value><bookmark_value>bakka maqaa wardii</bookmark_value><bookmark_value>mul'saa; wabii man'eeti</bookmark_value><bookmark_value>wabii man'eeti; mul'saa</bookmark_value>"
-#: 02140000.xhp
+#: 06010000.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3155411\n"
-"6\n"
+"06010000.xhp\n"
+"hd_id3156326\n"
+"1\n"
"help.text"
-msgid "1% corresponds to 0.01"
-msgstr "1% corresponds to 0.01"
+msgid "<link href=\"text/scalc/02/06010000.xhp\" name=\"Name Box\">Name Box</link>"
+msgstr "<link href=\"text/scalc/02/06010000.xhp\" name=\"Name Box\">Sanduuqa Maqaa</link>"
-#: 02140000.xhp
+#: 06010000.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3145749\n"
-"7\n"
+"06010000.xhp\n"
+"par_id3149656\n"
+"2\n"
"help.text"
-msgid "1 + 16% corresponds to 116% or 1.16"
-msgstr "1 + 16% corresponds to 116% or 1.16"
+msgid "<ahelp hid=\"HID_INSWIN_POS\">Displays the reference for the current cell, the range of the selected cells, or the name of the area. You can also select a range of cells, and then type a name for that range into the <emph>Name Box</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_INSWIN_POS\">Agarsiisa wabii ammee man'eetiif, hangaa man'eetii filatteme, yokkan bakka maqaa. hangii man'eetii filteemef fillu ni dandessa, hangii maqaa itti fufiiti barressi <emph>Sanduuqa Maqaa</emph>.</ahelp>"
-#: 02140000.xhp
+#: 06010000.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3148575\n"
-"8\n"
+"06010000.xhp\n"
+"par_id3163710\n"
"help.text"
-msgid "1%% corresponds to 0.0001"
-msgstr "1%% corresponds to 0.0001"
+msgid "<image id=\"img_id3152576\" src=\"res/helpimg/calcein.png\" width=\"1.2398inch\" height=\"0.2398inch\" localize=\"true\"><alt id=\"alt_id3152576\">Combo box sheet area</alt></image>"
+msgstr "<image id=\"img_id3152576\" src=\"res/helpimg/calcein.png\" width=\"1.2398inch\" height=\"0.2398inch\" localize=\"true\"><alt id=\"alt_id3152576\">sanduuqa Makaa bakka wardii</alt></image>"
-#: 02140000.xhp
+#: 06010000.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3159153\n"
-"10\n"
+"06010000.xhp\n"
+"par_id3151118\n"
+"4\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>"
-msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Dhangii - Man'ee - Lakkoofsa</link>"
+msgid "Name Box"
+msgstr "Maqaa Sanduuqa"
+
+#: 06010000.xhp
+msgctxt ""
+"06010000.xhp\n"
+"par_id3152596\n"
+"6\n"
+"help.text"
+msgid "To jump to a particular cell, or to select a cell range, type the cell reference, or cell range reference in this box, for example, F1, or A1:C4."
+msgstr "Man'eeti filateemtei utaalu, yokkan hangii man'eeti filuuf, wabii man'eet barressi, yokkan hangii man'eeti wardii sanduuqa kanna, fakkenyaafi, F1, yokkan A1:C4."
#: 06030000.xhp
msgctxt ""
@@ -556,48 +429,91 @@ msgctxt ""
msgid "Click the <emph>Accept</emph> icon (green check mark) to use the formula displayed in the input line."
msgstr "Cuqaasi <emph>Fudhu</emph> sajoo (green check mark) foormulaa agarsiisa naqaa sarara keessa fayyadamuf."
-#: 02160000.xhp
+#: 06040000.xhp
msgctxt ""
-"02160000.xhp\n"
+"06040000.xhp\n"
"tit\n"
"help.text"
-msgid "Number Format: Add Decimal Place"
-msgstr "Dhangii Lakkoofsa: Ida'i bakka Kurnyee"
+msgid "Function"
+msgstr "Dalagaa"
-#: 02160000.xhp
+#: 06040000.xhp
msgctxt ""
-"02160000.xhp\n"
-"hd_id3150275\n"
+"06040000.xhp\n"
+"bm_id3150084\n"
+"help.text"
+msgid "<bookmark_value>formula bar; functions</bookmark_value><bookmark_value>functions; formula bar icon</bookmark_value>"
+msgstr "<bookmark_value>kabala foormulaa; dalagaa</bookmark_value><bookmark_value>dalagaa; sajoo kabala foormulaa</bookmark_value>"
+
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"hd_id3150084\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/02160000.xhp\" name=\"Number Format: Add Decimal Place\">Number Format: Add Decimal Place</link>"
-msgstr "<link href=\"text/scalc/02/02160000.xhp\" name=\"Number Format: Add Decimal Place\">Dhangii Lakkoofsa: Ida'i bakka kurnyee</link>"
+msgid "<link href=\"text/scalc/02/06040000.xhp\" name=\"Function\">Function</link>"
+msgstr "<link href=\"text/scalc/02/06040000.xhp\" name=\"Function\">Dalagaa</link>"
-#: 02160000.xhp
+#: 06040000.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3150792\n"
+"06040000.xhp\n"
+"par_id3151245\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:NumberFormatIncDecimals\">Adds one decimal place to the numbers in the selected cells.</ahelp>"
-msgstr "<ahelp hid=\".uno:NumberFormatIncDecimals\">kurnyee tokko lakkoofsa man'ee filatemeet ida'i.</ahelp>"
+msgid "<ahelp hid=\"HID_INSWIN_FUNC\">Adds a formula to the current cell. Click this icon, and then enter the formula in the <emph>Input line</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_INSWIN_FUNC\">ammee man'eeti foormulaa ida'ii. sajoo kan cuqaasi, itti fufii foormulaa kana galchi <emph>Naqaa Sarara</emph>.</ahelp>"
-#: 02160000.xhp
+#: 06040000.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3145787\n"
+"06040000.xhp\n"
+"par_id3153360\n"
+"3\n"
"help.text"
-msgid "<image id=\"img_id3145271\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145271\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145271\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145271\">Sajoo</alt></image>"
+msgid "This icon is only available when the <emph>Input line</emph> box is not active."
+msgstr "Sajoon kun kan mijae'ee argamuu yoo<emph>Naqaa Sarara</emph> sanduuqa Dhokatteedha."
-#: 02160000.xhp
+#: 06040000.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3149262\n"
-"3\n"
+"06040000.xhp\n"
+"par_id3153770\n"
"help.text"
-msgid "Number Format: Add Decimal Place"
-msgstr "Dhangii Lakkoofsa: Ida'i bakka kurnyee"
+msgid "<image id=\"img_id3145785\" src=\"sc/imglst/sc26049.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145785\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156422\" src=\"svx/res/nu07.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Sajoo</alt></image>"
+
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"par_id3153951\n"
+"4\n"
+"help.text"
+msgid "Function"
+msgstr "Dalagaa"
+
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Input line"
+msgstr "Naqaa sarara"
+
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"hd_id3153821\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/02/06050000.xhp\" name=\"Input line\">Input line</link>"
+msgstr "<link href=\"text/scalc/02/06050000.xhp\" name=\"Input line\">Naqaa Sarara</link>"
+
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_id3155922\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"HID_INSWIN_INPUT\">Enter the formula that you want to add to the current cell. You can also click the <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Function Wizard</link> icon to insert a predefined function into the formula.</ahelp>"
+msgstr "<ahelp hid=\"HID_INSWIN_INPUT\">foormulaa issa ammee man'eeti ida'uu barbadee galchii. kana cuqaasi <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Dalagaa Masaka</link> sajoo dalagaa durmurtaawaan iddo foormulaa galchuu.</ahelp>"
#: 06060000.xhp
msgctxt ""
@@ -648,121 +564,58 @@ msgctxt ""
"3\n"
"help.text"
msgid "Cancel"
-msgstr "Dhiisi"
+msgstr "dhiisi"
-#: 18020000.xhp
+#: 06070000.xhp
msgctxt ""
-"18020000.xhp\n"
+"06070000.xhp\n"
"tit\n"
"help.text"
-msgid "Insert Cells"
-msgstr "Man'ee Saagi"
+msgid "Accept"
+msgstr "Fudhu"
-#: 18020000.xhp
+#: 06070000.xhp
msgctxt ""
-"18020000.xhp\n"
-"bm_id3150275\n"
+"06070000.xhp\n"
+"bm_id3143267\n"
"help.text"
-msgid "<bookmark_value>inserting; cells, toolbar icon</bookmark_value>"
-msgstr "<bookmark_value>saaguu; man'ee, sajoo kamshaa</bookmark_value>"
+msgid "<bookmark_value>formula bar; accepting inputs</bookmark_value><bookmark_value>functions; accepting input icon</bookmark_value>"
+msgstr "<bookmark_value>kabala foormulaa; dalagaa</bookmark_value><bookmark_value>dalagaa; sajoo naqaata fudhachuu</bookmark_value>"
-#: 18020000.xhp
+#: 06070000.xhp
msgctxt ""
-"18020000.xhp\n"
-"hd_id3150275\n"
+"06070000.xhp\n"
+"hd_id3143267\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/18020000.xhp\" name=\"Insert Cells\">Insert Cells</link>"
-msgstr "<link href=\"text/scalc/02/18020000.xhp\" name=\"Insert Cells\">Man'ee Saagi</link>"
+msgid "<link href=\"text/scalc/02/06070000.xhp\" name=\"Accept\">Accept</link>"
+msgstr "<link href=\"text/scalc/02/06070000.xhp\" name=\"Accept\">Fudhu</link>"
-#: 18020000.xhp
+#: 06070000.xhp
msgctxt ""
-"18020000.xhp\n"
-"par_id3156024\n"
+"06070000.xhp\n"
+"par_id3151245\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:InsCellsCtrl\">Click the arrow next to the icon to open the <emph>Insert Cells </emph>toolbar, where you can insert cells, rows, and columns into the current sheet.</ahelp>"
-msgstr "<ahelp hid=\".uno:InsCellsCtrl\">xiyya issa sajooti ane'e jiru banuuf cuqaasi <emph>Man'ee Saagi </emph>kamshaa, Man'ee saaguuf, tarree, fi tarjaa man'ee ammeeti.</ahelp>"
-
-#: 18020000.xhp
-msgctxt ""
-"18020000.xhp\n"
-"par_id3150398\n"
-"3\n"
-"help.text"
-msgid "Tools bar icon:"
-msgstr "Sajoo kamshaa:"
-
-#: 18020000.xhp
-msgctxt ""
-"18020000.xhp\n"
-"par_id3150767\n"
-"5\n"
-"help.text"
-msgid "You can select the following icons:"
-msgstr "sajootta kana filuu ni dandessa:"
-
-#: 18020000.xhp
-msgctxt ""
-"18020000.xhp\n"
-"hd_id3150439\n"
-"6\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Down\">Insert Cells Down</link>"
-msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Down\">Man'ee Gadi Saagi</link>"
-
-#: 18020000.xhp
-msgctxt ""
-"18020000.xhp\n"
-"hd_id3146119\n"
-"7\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Right\">Insert Cells Right</link>"
-msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Right\">Man'ee Mirga Saagi</link>"
-
-#: 18020000.xhp
-msgctxt ""
-"18020000.xhp\n"
-"hd_id3153190\n"
-"8\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Rows\">Rows</link>"
-msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Rows\">Tarree</link>"
-
-#: 18020000.xhp
-msgctxt ""
-"18020000.xhp\n"
-"hd_id3153726\n"
-"9\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Columns\">Columns</link>"
-msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Columns\">Tarjaa</link>"
-
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Input line"
-msgstr "Naqaa sarara"
+msgid "<ahelp hid=\"HID_INSWIN_OK\">Accepts the contents of the <emph>Input line</emph>, and then inserts the contents into the current cell.</ahelp>"
+msgstr "<ahelp hid=\"HID_INSWIN_OK\">qabiyyee kana fudhachuu <emph>Naqaa sarara</emph>, itti ansuun qabiyyee ammee man'eeti galchuu.</ahelp>"
-#: 06050000.xhp
+#: 06070000.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3153821\n"
-"1\n"
+"06070000.xhp\n"
+"par_id3150769\n"
"help.text"
-msgid "<link href=\"text/scalc/02/06050000.xhp\" name=\"Input line\">Input line</link>"
-msgstr "<link href=\"text/scalc/02/06050000.xhp\" name=\"Input line\">Naqaa Sarara</link>"
+msgid "<image id=\"img_id3156422\" src=\"svx/res/nu07.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156422\" src=\"svx/res/nu07.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Sajoo</alt></image>"
-#: 06050000.xhp
+#: 06070000.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3155922\n"
-"2\n"
+"06070000.xhp\n"
+"par_id3125864\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_INSWIN_INPUT\">Enter the formula that you want to add to the current cell. You can also click the <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Function Wizard</link> icon to insert a predefined function into the formula.</ahelp>"
-msgstr "<ahelp hid=\"HID_INSWIN_INPUT\">foormulaa issa ammee man'eeti ida'uu barbadee galchii. kana cuqaasi <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Dalagaa Masaka</link> sajoo dalagaa durmurtaawaan iddo foormulaa galchuu.</ahelp>"
+msgid "Accept"
+msgstr "Fudhu"
#: 06080000.xhp
msgctxt ""
@@ -816,6 +669,32 @@ msgctxt ""
msgid "<ahelp hid=\"HID_DLGSTYLES_LISTBOX\">Click the formatting theme that you want to apply, and then click <emph>OK</emph>.</ahelp>"
msgstr "<ahelp hid=\"HID_DLGSTYLES_LISTBOX\">dhangeessaa dhamsa fayyadamuu barbadee Cuqaasi, itti fufitti cuqaasi <emph>TOLE</emph>.</ahelp>"
+#: 08010000.xhp
+msgctxt ""
+"08010000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Position in document"
+msgstr "Qubannoo galmee keessa"
+
+#: 08010000.xhp
+msgctxt ""
+"08010000.xhp\n"
+"hd_id3145119\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/02/08010000.xhp\" name=\"Position in document\">Position in document</link>"
+msgstr "<link href=\"text/scalc/02/08010000.xhp\" name=\"Position in document\">Qubannoo galmee keessa</link>"
+
+#: 08010000.xhp
+msgctxt ""
+"08010000.xhp\n"
+"par_id3147265\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:StatusDocPos\">Displays the number of the current sheet and the total number of sheets in the spreadsheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:StatusDocPos\">lakkoofsa ammee wardii fi lakkoofsa guutu wardii keessa jiru agarsiisu.</ahelp>"
+
#: 08080000.xhp
msgctxt ""
"08080000.xhp\n"
@@ -868,68 +747,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error codes\">Error codes</link>"
msgstr "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error codes\">Dogongora Lakkadda</link>"
-#: 06040000.xhp
-msgctxt ""
-"06040000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Function"
-msgstr "Dalagaa"
-
-#: 06040000.xhp
-msgctxt ""
-"06040000.xhp\n"
-"bm_id3150084\n"
-"help.text"
-msgid "<bookmark_value>formula bar; functions</bookmark_value><bookmark_value>functions; formula bar icon</bookmark_value>"
-msgstr "<bookmark_value>kabala foormulaa; dalagaa</bookmark_value><bookmark_value>dalagaa; sajoo kabala foormulaa</bookmark_value>"
-
-#: 06040000.xhp
-msgctxt ""
-"06040000.xhp\n"
-"hd_id3150084\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/02/06040000.xhp\" name=\"Function\">Function</link>"
-msgstr "<link href=\"text/scalc/02/06040000.xhp\" name=\"Function\">Dalagaa</link>"
-
-#: 06040000.xhp
-msgctxt ""
-"06040000.xhp\n"
-"par_id3151245\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"HID_INSWIN_FUNC\">Adds a formula to the current cell. Click this icon, and then enter the formula in the <emph>Input line</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_INSWIN_FUNC\">ammee man'eeti foormulaa ida'ii. sajoo kan cuqaasi, itti fufii foormulaa kana galchi <emph>Naqaa Sarara</emph>.</ahelp>"
-
-#: 06040000.xhp
-#, fuzzy
-msgctxt ""
-"06040000.xhp\n"
-"par_id3153360\n"
-"3\n"
-"help.text"
-msgid "This icon is only available when the <emph>Input line</emph> box is not active."
-msgstr "Sajoon kun kan mijae'ee argamuu yoo<emph>Naqaa Sarara</emph> sanduuqa Dhokatteedha."
-
-#: 06040000.xhp
-#, fuzzy
-msgctxt ""
-"06040000.xhp\n"
-"par_id3153770\n"
-"help.text"
-msgid "<image id=\"img_id3145785\" src=\"sc/imglst/sc26049.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145785\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156422\" src=\"svx/res/nu07.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Sajoo</alt></image>"
-
-#: 06040000.xhp
-msgctxt ""
-"06040000.xhp\n"
-"par_id3153951\n"
-"4\n"
-"help.text"
-msgid "Function"
-msgstr "Dalagaa"
-
#: 10050000.xhp
msgctxt ""
"10050000.xhp\n"
@@ -978,8 +795,8 @@ msgctxt ""
"10050000.xhp\n"
"par_id3155854\n"
"help.text"
-msgid "<image id=\"img_id3151116\" src=\"cmd/sc_helpzoomin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151116\">Icon</alt></image>"
-msgstr "<image id=\"img_id3151116\" src=\"cmd/sc_helpzoomin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151116\">Sajoo</alt></image>"
+msgid "<image id=\"img_id3151116\" src=\"cmd/sc_zoomin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151116\">Icon</alt></image>"
+msgstr ""
#: 10050000.xhp
msgctxt ""
@@ -990,88 +807,269 @@ msgctxt ""
msgid "Zoom In"
msgstr "Faaran Guddisi"
-#: 06010000.xhp
+#: 10060000.xhp
msgctxt ""
-"06010000.xhp\n"
+"10060000.xhp\n"
"tit\n"
"help.text"
-msgid "Sheet Area"
-msgstr "Bakka Wardii"
+msgid "Zoom Out"
+msgstr "Faaran Xinnessi"
-#: 06010000.xhp
+#: 10060000.xhp
msgctxt ""
-"06010000.xhp\n"
-"bm_id3156326\n"
+"10060000.xhp\n"
+"bm_id3153561\n"
"help.text"
-msgid "<bookmark_value>formula bar; sheet area names</bookmark_value><bookmark_value>sheet area names</bookmark_value><bookmark_value>showing; cell references</bookmark_value><bookmark_value>cell references; showing</bookmark_value>"
-msgstr "<bookmark_value>Kabala Foormulaa; bakka maqaa wardii</bookmark_value><bookmark_value>bakka maqaa wardii</bookmark_value><bookmark_value>mul'saa; wabii man'eeti</bookmark_value><bookmark_value>wabii man'eeti; mul'saa</bookmark_value>"
+msgid "<bookmark_value>page views;reducing scales</bookmark_value><bookmark_value>zooming;reducing page views</bookmark_value>"
+msgstr "<bookmark_value>mul'annoowwan fuulaa;safaraawwan xinneessuu</bookmark_value><bookmark_value>guddisuu;mul'annoowwan fuulaa xinneessuu</bookmark_value>"
-#: 06010000.xhp
+#: 10060000.xhp
msgctxt ""
-"06010000.xhp\n"
-"hd_id3156326\n"
+"10060000.xhp\n"
+"hd_id3153561\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/06010000.xhp\" name=\"Name Box\">Name Box</link>"
-msgstr "<link href=\"text/scalc/02/06010000.xhp\" name=\"Name Box\">Sanduuqa Maqaa</link>"
+msgid "<link href=\"text/scalc/02/10060000.xhp\" name=\"Zoom Out\">Zoom Out</link>"
+msgstr "<link href=\"text/scalc/02/10060000.xhp\" name=\"Zoom Out\">Faaran Xinnessi</link>"
-#: 06010000.xhp
+#: 10060000.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3149656\n"
+"10060000.xhp\n"
+"par_id3151246\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_INSWIN_POS\">Displays the reference for the current cell, the range of the selected cells, or the name of the area. You can also select a range of cells, and then type a name for that range into the <emph>Name Box</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_INSWIN_POS\">Agarsiisa wabii ammee man'eetiif, hangaa man'eetii filatteme, yokkan bakka maqaa. hangii man'eetii filteemef fillu ni dandessa, hangii maqaa itti fufiiti barressi <emph>Sanduuqa Maqaa</emph>.</ahelp>"
+msgid "<ahelp hid=\".uno:ZoomOut\">Reduces the screen display of the current document. The current zoom factor is displayed on the <emph>Status Bar</emph>.</ahelp>"
+msgstr "<ahelp hid=\".uno:ZoomOut\">Argii agarsiistu galmee ammee xinneessu. Guddisiin ammee kan inni irratti agarsiifamuu <emph>Kabala Haalojii</emph>.</ahelp>"
-#: 06010000.xhp
+#: 10060000.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3163710\n"
+"10060000.xhp\n"
+"par_id3150398\n"
+"4\n"
"help.text"
-msgid "<image id=\"img_id3152576\" src=\"res/helpimg/calcein.png\" width=\"1.2398inch\" height=\"0.2398inch\" localize=\"true\"><alt id=\"alt_id3152576\">Combo box sheet area</alt></image>"
-msgstr "<image id=\"img_id3152576\" src=\"res/helpimg/calcein.png\" width=\"1.2398inch\" height=\"0.2398inch\" localize=\"true\"><alt id=\"alt_id3152576\">sanduuqa Makaa bakka wardii</alt></image>"
+msgid "The minimum zoom factor is 20%."
+msgstr "Gaddeen inni guddaa issaa 20%."
-#: 06010000.xhp
+#: 10060000.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3151118\n"
+"10060000.xhp\n"
+"par_id3153770\n"
+"help.text"
+msgid "<image id=\"img_id3155131\" src=\"cmd/sc_zoomout.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155131\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155131\" src=\"cmd/sc_zoomout.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155131\">Sajoo</alt></image>"
+
+#: 10060000.xhp
+msgctxt ""
+"10060000.xhp\n"
+"par_id3150440\n"
+"3\n"
+"help.text"
+msgid "Zooming Out"
+msgstr "Faaran Xinneessu"
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert"
+msgstr "Saagi"
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"bm_id3156329\n"
+"help.text"
+msgid "<bookmark_value>inserting; objects, toolbar icon</bookmark_value>"
+msgstr "<bookmark_value>saaguu; wantaa, sajoo kamshaa</bookmark_value>"
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"hd_id3156329\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/02/18010000.xhp\" name=\"Insert\">Insert</link>"
+msgstr "<link href=\"text/scalc/02/18010000.xhp\" name=\"Insert\">Saagi</link>"
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"par_id3147336\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:InsertCtrl\">Click the arrow next to the icon to open the <emph>Insert </emph>toolbar, where you can add graphics and special characters to the current sheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertCtrl\">xiyya issa sajooti ane'e jiru banuuf cuqaasi <emph>Saagi </emph>kamshaa, saxxaatofi addayaa arfii man'ee ammeeti ida'uudha.</ahelp>"
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"par_id3148664\n"
+"3\n"
+"help.text"
+msgid "Tools bar icon:"
+msgstr "Sajoo kamshaa meeshaalee:"
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"par_id3150767\n"
+"help.text"
+msgid "<image id=\"img_id3156423\" src=\"cmd/sc_insertgraphic.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156423\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156423\" src=\"cmd/sc_insertgraphic.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156423\">Sajoo</alt></image>"
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"par_id3146120\n"
"4\n"
"help.text"
-msgid "Name Box"
-msgstr "Maqaa Sanduuqa"
+msgid "Insert"
+msgstr "Saagi"
-#: 06010000.xhp
+#: 18010000.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3152596\n"
+"18010000.xhp\n"
+"par_id3153188\n"
"6\n"
"help.text"
-msgid "To jump to a particular cell, or to select a cell range, type the cell reference, or cell range reference in this box, for example, F1, or A1:C4."
-msgstr "Man'eeti filateemtei utaalu, yokkan hangii man'eeti filuuf, wabii man'eet barressi, yokkan hangii man'eeti wardii sanduuqa kanna, fakkenyaafi, F1, yokkan A1:C4."
+msgid "You can select the following icons:"
+msgstr "Sajootta kana filuu ni dandessa:"
-#: 08010000.xhp
+#: 18010000.xhp
msgctxt ""
-"08010000.xhp\n"
+"18010000.xhp\n"
+"hd_id4283883\n"
+"help.text"
+msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
+msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Bololi'aa Goodayyaa</link>"
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"hd_id3149410\n"
+"8\n"
+"help.text"
+msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
+msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Arfii Addayaa</link>"
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"hd_id3151117\n"
+"7\n"
+"help.text"
+msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"From File\">From File</link>"
+msgstr "<link href=\"text/shared/01/04140000.xhp\" name=\"From File\">Faayiliirraa</link>"
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"hd_id3633533\n"
+"help.text"
+msgid "<link href=\"text/shared/01/04160300.xhp\" name=\"Formula\">Formula</link>"
+msgstr "<link href=\"text/shared/01/04160300.xhp\" name=\"Formula\">Foormulaa</link>"
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"par_idN10769\n"
+"help.text"
+msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Insert Chart\">Chart</link>"
+msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Insert Chart\">Taattoo</link>"
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"hd_id7581408\n"
+"help.text"
+msgid "<link href=\"text/shared/01/04150100.xhp\" name=\"OLE Object\">OLE Object</link>"
+msgstr "<link href=\"text/shared/01/04150100.xhp\" name=\"OLE Object\">Wanta OLE</link>"
+
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
"tit\n"
"help.text"
-msgid "Position in document"
-msgstr "Qubannoo galmee keessa"
+msgid "Insert Cells"
+msgstr "Man'ee Saagi"
-#: 08010000.xhp
+#: 18020000.xhp
msgctxt ""
-"08010000.xhp\n"
-"hd_id3145119\n"
+"18020000.xhp\n"
+"bm_id3150275\n"
+"help.text"
+msgid "<bookmark_value>inserting; cells, toolbar icon</bookmark_value>"
+msgstr "<bookmark_value>saaguu; man'ee, sajoo kamshaa</bookmark_value>"
+
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"hd_id3150275\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/08010000.xhp\" name=\"Position in document\">Position in document</link>"
-msgstr "<link href=\"text/scalc/02/08010000.xhp\" name=\"Position in document\">Qubannoo galmee keessa</link>"
+msgid "<link href=\"text/scalc/02/18020000.xhp\" name=\"Insert Cells\">Insert Cells</link>"
+msgstr "<link href=\"text/scalc/02/18020000.xhp\" name=\"Insert Cells\">Man'ee Saagi</link>"
-#: 08010000.xhp
+#: 18020000.xhp
msgctxt ""
-"08010000.xhp\n"
-"par_id3147265\n"
+"18020000.xhp\n"
+"par_id3156024\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:StatusDocPos\">Displays the number of the current sheet and the total number of sheets in the spreadsheet.</ahelp>"
-msgstr "<ahelp hid=\".uno:StatusDocPos\">lakkoofsa ammee wardii fi lakkoofsa guutu wardii keessa jiru agarsiisu.</ahelp>"
+msgid "<ahelp hid=\".uno:InsCellsCtrl\">Click the arrow next to the icon to open the <emph>Insert Cells </emph>toolbar, where you can insert cells, rows, and columns into the current sheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsCellsCtrl\">xiyya issa sajooti ane'e jiru banuuf cuqaasi <emph>Man'ee Saagi </emph>kamshaa, Man'ee saaguuf, tarree, fi tarjaa man'ee ammeeti.</ahelp>"
+
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"par_id3150398\n"
+"3\n"
+"help.text"
+msgid "Tools bar icon:"
+msgstr "Sajoo kamshaa meeshaalee:"
+
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"par_id3150767\n"
+"5\n"
+"help.text"
+msgid "You can select the following icons:"
+msgstr "Sajootta kana filuu ni dandessa:"
+
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"hd_id3150439\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Down\">Insert Cells Down</link>"
+msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Down\">Man'ee Gadi Saagi</link>"
+
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"hd_id3146119\n"
+"7\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Right\">Insert Cells Right</link>"
+msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Right\">Man'ee Mirga Saagi</link>"
+
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"hd_id3153190\n"
+"8\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Rows\">Rows</link>"
+msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Rows\">Tarree</link>"
+
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"hd_id3153726\n"
+"9\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Columns\">Columns</link>"
+msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Columns\">Tarjaa</link>"
diff --git a/source/om/helpcontent2/source/text/scalc/04.po b/source/om/helpcontent2/source/text/scalc/04.po
index c46af1d8a7b..ee1ecf377f3 100644
--- a/source/om/helpcontent2/source/text/scalc/04.po
+++ b/source/om/helpcontent2/source/text/scalc/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2012-07-04 18:25+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -409,7 +409,6 @@ msgid "In the page preview: Moves to the next print page."
msgstr "Durargii Fuulaa keessati: Fuulaa maxxansa itti aanuuti siqsis."
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3146885\n"
@@ -428,7 +427,6 @@ msgid "Moves one screen to the left."
msgstr "Argii tokko gara bitaati siqsis."
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3149013\n"
@@ -479,7 +477,6 @@ msgid "Adds the next sheet to the current selection of sheets. If all the sheets
msgstr "Wardii ittaanee jiru wardii amma filatamanitti ida'a. Yoo wardiileen marti filataman, makaan furtuu qaxxaamuraa kun wardii ittaanu qofa fila. Wardii ittaanu wardii ammaa godha."
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3145826\n"
@@ -507,7 +504,6 @@ msgid "Selects the data range that contains the cursor. A range is a contiguous
msgstr "Hammanga deetaa qareen qabbatee jiru filii. Hammangan kun man'ee walliin garee hammanga deetaa qabbatee jiruufi tarree fi tarjaa duwwan marffammee jiirudha ."
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3151233\n"
@@ -585,7 +581,6 @@ msgid "Moves the cursor down one cell in a selected range. To specify the direct
msgstr ""
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"par_id5961180\n"
@@ -1058,7 +1053,6 @@ msgid "Ungroups the selected data range."
msgstr "Hangii deetaaa filattamee hundaa garbaasi."
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3151264\n"
@@ -1077,7 +1071,6 @@ msgid "Increases the height of current row (only in <link href=\"text/shared/opt
msgstr ""
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3151297\n"
@@ -1096,7 +1089,6 @@ msgid "Decreases the height of current row (only in <link href=\"text/shared/opt
msgstr ""
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3155997\n"
@@ -1115,7 +1107,6 @@ msgid "Increases the width of the current column."
msgstr "Yabbina tarjaa ammee dheeressuu."
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3154046\n"
@@ -1312,7 +1303,6 @@ msgid "Standard format"
msgstr "Dhangii durtii"
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3154205\n"
@@ -1374,7 +1364,6 @@ msgid "Changes the focus by moving backwards through the areas and buttons of th
msgstr "Xiyyeeffanno garra duubatti siqisii iddoo naannoo keessaa fi qaaqa qabduu ti jijjiiri."
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3148484\n"
@@ -1393,7 +1382,6 @@ msgid "Moves the focus up one item in the current dialog area."
msgstr "Xiyyeeffanno garra olii wantoota tokko ti iddoo qaaqa ammee ti siqiisi."
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3154273\n"
@@ -1412,7 +1400,6 @@ msgid "Moves the focus down one item in the current dialog area."
msgstr "Xiyyeeffanno garra gadi wantoota tokko ti iddoo qaaqa ammee ti siqiisi."
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3148912\n"
@@ -1431,7 +1418,6 @@ msgid "Moves the focus one item to the left in the current dialog area."
msgstr "Xiyyeeffanno garra bitaa wantoota tokko iddoo qaaqa ammee ti siqiisi."
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3150712\n"
@@ -1546,7 +1532,7 @@ msgctxt ""
"155\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Up Arrow"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Xiyya Olii"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Xiyyaa Olii"
#: 01020000.xhp
msgctxt ""
diff --git a/source/om/helpcontent2/source/text/scalc/05.po b/source/om/helpcontent2/source/text/scalc/05.po
index ecb57b6bf8f..2dd8170620b 100644
--- a/source/om/helpcontent2/source/text/scalc/05.po
+++ b/source/om/helpcontent2/source/text/scalc/05.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
-"PO-Revision-Date: 2011-04-06 09:29+0200\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
+"PO-Revision-Date: 2012-09-04 22:09+0000\n"
+"Last-Translator: Diriba Kuma <diribakw@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: om\n"
"MIME-Version: 1.0\n"
@@ -13,6 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1346796588.0\n"
#: 02140000.xhp
msgctxt ""
@@ -824,7 +825,7 @@ msgctxt ""
"par_id8277230\n"
"help.text"
msgid "A1: 1 B1: <Empty> C1: =B1 (displays 0)"
-msgstr ""
+msgstr "A1: 1 B1: <empty> C1: =B1 (0 mul'ata)"
#: empty_cells.xhp
msgctxt ""
@@ -968,7 +969,7 @@ msgctxt ""
"par_id2629474\n"
"help.text"
msgid "A1: <Empty>"
-msgstr ""
+msgstr "A1: <empty>"
#: empty_cells.xhp
msgctxt ""
diff --git a/source/om/helpcontent2/source/text/scalc/guide.po b/source/om/helpcontent2/source/text/scalc/guide.po
index 4f95832c923..d9a097106b6 100644
--- a/source/om/helpcontent2/source/text/scalc/guide.po
+++ b/source/om/helpcontent2/source/text/scalc/guide.po
@@ -1,1784 +1,1449 @@
-#
+#. extracted from helpcontent2/source/text/scalc/guide
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:03+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"
-#: scenario.xhp
+#: address_auto.xhp
msgctxt ""
-"scenario.xhp\n"
+"address_auto.xhp\n"
"tit\n"
"help.text"
-msgid "Using Scenarios"
-msgstr "Mul'inatti fayyadamuu"
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"bm_id3149664\n"
-"help.text"
-msgid "<bookmark_value>scenarios; creating/editing/deleting</bookmark_value><bookmark_value>opening;scenarios</bookmark_value><bookmark_value>selecting;scenarios in Navigator</bookmark_value>"
-msgstr "<bookmark_value>mul'ina; uumuu/gulaaluu/haquu</bookmark_value><bookmark_value>banuu;mul'ina</bookmark_value><bookmark_value>filachuu;mul'ina Naannessa keessaa</bookmark_value>"
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"hd_id3125863\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"scenario\"><link href=\"text/scalc/guide/scenario.xhp\" name=\"Using Scenarios\">Using Scenarios</link></variable>"
-msgstr "<variable id=\"scenario\"><link href=\"text/scalc/guide/scenario.xhp\" name=\"Using Scenarios\">Mul'inatti Fayyadamuu</link></variable>"
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id3150869\n"
-"2\n"
-"help.text"
-msgid "A $[officename] Calc scenario is a set of cell values that can be used within your calculations. You assign a name to every scenario on your sheet. Define several scenarios on the same sheet, each with some different values in the cells. Then you can easily switch the sets of cell values by their name and immediately observe the results. Scenarios are a tool to test out \"what-if\" questions."
-msgstr "Mul'anni $[officename] Calc tuuta gatiiwwan maadhee kan shallaggii kee keessatti fayyadani dha. Maqaa tokkoon tokkoo mul'ina wardii kee irraatiif ni ramadda. Mul'inoota baay'ee wardii tokko irratti, tokkoon tokkoo isaanii gatiiwwan adda addaatiin qindeessi. Achiin tuutota gatiiwwan maadhee maqaa isaaniitiin salphaatti daddabarsitee battalumatti bu'aalee isaa hubachuu dandeessa. Mul'inoonni maadhaa gaaffiilee \"yoo-maali\" ittiin mirkaneessinu dha."
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"hd_id3149255\n"
-"15\n"
-"help.text"
-msgid "Creating Your Own Scenarios"
-msgstr "Mul'inoota Mataa Keetii Uumuu"
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id3154704\n"
-"16\n"
-"help.text"
-msgid "To create a scenario, select all the cells that provide the data for the scenario."
-msgstr "Mul'ina uumuuf, man'eelee hunda kan deetaa mul'inaaf kennan filadhu."
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id3154020\n"
-"17\n"
-"help.text"
-msgid "Select the cells that contain the values that will change between scenarios. To select multiple cells, hold down the <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline></item> key as you click each cell."
-msgstr ""
+msgid "Recognizing Names as Addressing"
+msgstr "Maqaalee akka teessessuutti beekuu"
-#: scenario.xhp
+#: address_auto.xhp
msgctxt ""
-"scenario.xhp\n"
-"par_id3150364\n"
-"18\n"
+"address_auto.xhp\n"
+"bm_id3148797\n"
"help.text"
-msgid "Choose <emph>Tools - Scenarios</emph>. The <emph>Create Scenario</emph> dialog appears."
-msgstr "<emph>Meeshaalee - Mul'inoota</emph> fili. Qaaqni <emph>Mul'ina Uumi</emph> ni mul'ata."
+msgid "<bookmark_value>automatic addressing in tables</bookmark_value> <bookmark_value>natural language addressing</bookmark_value> <bookmark_value>formulas; using row/column labels</bookmark_value> <bookmark_value>text in cells; as addressing</bookmark_value> <bookmark_value>addressing; automatic</bookmark_value> <bookmark_value>name recognition on/off</bookmark_value> <bookmark_value>row headers;using in formulas</bookmark_value> <bookmark_value>column headers;using in formulas</bookmark_value> <bookmark_value>columns; finding labels automatically</bookmark_value> <bookmark_value>rows; finding labels automatically</bookmark_value> <bookmark_value>recognizing; column and row labels</bookmark_value>"
+msgstr "<bookmark_value>gabateewwan keessatti ufmaan teessessuu</bookmark_value><bookmark_value>teessessuu afaan uumamaa</bookmark_value><bookmark_value>foormulaawwan; asxaawwan tarreetiin/sarjaatiin fayyadamuu</bookmark_value><bookmark_value>barruu man'eelee keessaa; akka teessessuutti</bookmark_value><bookmark_value>teessessuu; ufmaan</bookmark_value> <bookmark_value>beekumsa maqaa banuu/cufuu</bookmark_value> <bookmark_value>irraantota tarree;foormulaawwan keessatti fayyadamuu</bookmark_value> <bookmark_value>irraantota tarjaa;foormulaawwan keessatti fayyadamuu</bookmark_value> <bookmark_value>tarjaawwan; asxaawwan ufmaan argachuu</bookmark_value> <bookmark_value>tarreewwan; asxaawwan ufmaan argachuu</bookmark_value> <bookmark_value>beekuu; asxaawwan sarjaa fi tarree</bookmark_value>"
-#: scenario.xhp
+#: address_auto.xhp
msgctxt ""
-"scenario.xhp\n"
-"par_id3166426\n"
-"19\n"
+"address_auto.xhp\n"
+"hd_id3148797\n"
+"20\n"
"help.text"
-msgid "Enter a name for the new scenario and leave the other fields unchanged with their default values. Close the dialog with OK. Your new scenario is automatically activated."
-msgstr "Maqaa mul'inaa filiitii dirreewwan biroo gatiiwwan durtii isaa faana osoo hin jijjiiramin dhiisi. Qaaqa TOLE dhaan cufi. Mul'inni kee haaraan ufmaan kaka'a."
+msgid "<variable id=\"address_auto\"><link href=\"text/scalc/guide/address_auto.xhp\" name=\"Recognizing Names as Addressing\">Recognizing Names as Addressing</link></variable>"
+msgstr "<variable id=\"address_auto\"><link href=\"text/scalc/guide/address_auto.xhp\" name=\"Recognizing Names as Addressing\">Maqaalee akka teessessuutti beekuu</link></variable>"
-#: scenario.xhp
+#: address_auto.xhp
msgctxt ""
-"scenario.xhp\n"
-"hd_id3149664\n"
-"3\n"
+"address_auto.xhp\n"
+"par_id3152597\n"
+"21\n"
"help.text"
-msgid "Using Scenarios"
-msgstr "Mul'inatti fayyadamuu"
+msgid "You can use cells with text to refer to the rows or to the columns that contain the cells."
+msgstr "Tarreewwan yookiin sarjaawwan kan maadheelee qabatan wabeeffachuuf maadheelee barruu wajjinii fayyadamuu dandeessa."
-#: scenario.xhp
+#: address_auto.xhp
msgctxt ""
-"scenario.xhp\n"
-"par_id3153415\n"
-"11\n"
+"address_auto.xhp\n"
+"par_id3156283\n"
"help.text"
-msgid "Scenarios can be selected in the Navigator:"
-msgstr "Mul'inni Naannessa keessaa filatamuu danda'u:"
+msgid "<image id=\"img_id3154942\" src=\"res/helpimg/names_as_addressing.png\" width=\"2.1291in\" height=\"0.8709in\" localize=\"true\"><alt id=\"alt_id3154942\">Example spreadsheet</alt></image>"
+msgstr "<image id=\"img_id3154942\" src=\"res/helpimg/names_as_addressing.png\" width=\"4.1291in\" height=\"1.6709in\" localize=\"true\"><alt id=\"alt_id3154942\">Wardii fakkeenyaa</alt></image>"
-#: scenario.xhp
+#: address_auto.xhp
msgctxt ""
-"scenario.xhp\n"
-"par_id3150752\n"
-"12\n"
+"address_auto.xhp\n"
+"par_id3154512\n"
+"22\n"
"help.text"
-msgid "Open the Navigator with the <emph>Navigator</emph> icon <image id=\"img_id1593676\" src=\"cmd/sc_navigator.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id1593676\">Navigator icon</alt></image> on the Standard bar."
-msgstr "Naannessa sajoo <emph>Naannessa</emph> dhaan kabala durtii irraa <image id=\"img_id1593676\" src=\"cmd/sc_navigator.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id1593676\">Sajoo naannessaa</alt></image> bani."
+msgid "In the example spreadsheet, you can use the string <item type=\"literal\">'Column One'</item> in a formula to refer to the cell range <item type=\"literal\">B3</item> to <item type=\"literal\">B5</item>, or <item type=\"literal\">'Column Two'</item> for the cell range <item type=\"literal\">C2</item> to <item type=\"literal\">C5</item>. You can also use <item type=\"literal\">'Row One'</item> for the cell range <item type=\"literal\">B3</item> to <item type=\"literal\">D3</item>, or <item type=\"literal\">'Row Two'</item> for the cell range <item type=\"literal\">B4</item> to <item type=\"literal\">D4</item>. The result of a formula that uses a cell name, for example, <item type=\"literal\">SUM('Column One')</item>, is 600."
+msgstr "Wardii fakkeenyaa keessatti, diraa <item type=\"literal\">'sarjaa tokkoffaa'</item> foormulaa keessatti hammanga man'ee <item type=\"literal\">B3</item> hanga <item type=\"literal\">B5</item>, yookiin <item type=\"literal\">'sarjaa lammaffaa'</item> hammanga man'ee <item type=\"literal\">C2</item> hanga <item type=\"literal\">C5</item> wabeeffachuuf fayyadamuu dandeessa. <item type=\"literal\">'Tarree tokkoffaa'</item> hammanga man'ee <item type=\"literal\">B3</item> hanga <item type=\"literal\">D3</item> dhaaf, yookiin <item type=\"literal\">'Tarree lammaffaa'</item> hammanga man'ee <item type=\"literal\">B4</item> hanga <item type=\"literal\">D4</item> dhaafis fayyadamuu dandeessa . Bu'aan foormulaa kan maqaa man'ee, fakkeenyaaf, <item type=\"literal\">SUM('sarjaa tokkoffaa')</item> fayyadamu, 600 dha."
-#: scenario.xhp
+#: address_auto.xhp
msgctxt ""
-"scenario.xhp\n"
-"par_id3155764\n"
-"13\n"
+"address_auto.xhp\n"
+"par_id3155443\n"
+"24\n"
"help.text"
-msgid "Click the <emph>Scenarios</emph> icon <image id=\"img_id7617114\" src=\"sc/imglst/navipi/na07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id7617114\">Scenarios icon</alt></image> in the Navigator."
+msgid "This function is active by default. To turn this function off, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate</emph> and clear the <emph>Automatically find column and row labels</emph> check box."
msgstr ""
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id3154256\n"
-"14\n"
-"help.text"
-msgid "In the Navigator, you see the defined scenarios with the comments that were entered when the scenarios were created."
-msgstr "Naannessa keessatti, mul'inoota qindaa'an yaadota kan yeroo mul'inootni uumamanii turan galchaman wajjin argita."
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id1243629\n"
-"help.text"
-msgid "Double-click a scenario name in the Navigator to apply that scenario to the current sheet."
-msgstr "Mul'ina sana wardii ammeetiif raawwachuuf maqaa mul'inaa Naannessa keessaa lamcuqaasi."
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id9044770\n"
-"help.text"
-msgid "To delete a scenario, right-click the name in the Navigator and choose <emph>Delete</emph>."
-msgstr "Mul'ina balleessuuf, maqaa Naannessa keessaa mirgaan cuqaasiitii <emph>Haqi</emph> fili."
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id3674123\n"
-"help.text"
-msgid "To edit a scenario, right-click the name in the Navigator and choose <emph>Properties</emph>."
-msgstr "Mul'ina gulaaluuf, maqaa Naannessa keessaa mirgaan cuqaasiitii <emph>Amaloota</emph> fili."
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id3424481\n"
-"help.text"
-msgid "To hide the border of a set of cells that are part of a scenario, open the <emph>Properties</emph> dialog for each scenario that affects the cells and clear the Display border checkbox. Hiding the border also removes the listbox on the sheet where you can choose the scenarios."
-msgstr "Handaara tuuta maadheelee kan kutaa mul'inaa dhoksuuf, qaaqa <emph>Amaloota</emph> mul'ina hunda kan maadheelee irratti raawwatu baniitii sanduuqa filannoo handaara Agarsiisi qulqulleessi. Handaara dhoksuun sanduuqa tarree bakka mul'inoota filattus ni balleessa."
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id3154368\n"
-"22\n"
-"help.text"
-msgid "If you want to know which values in the scenario affect other values, choose <emph>Tools - Detective - Trace Dependents</emph>. You see arrows to the cells that are directly dependent on the current cell."
-msgstr "Yoo gatiiwwan kamitu mul'ina keessaa gatiiwwan biroo akka miidhu baruu barbaadde, <emph>Meeshaalee - Detective - Trace Dependents</emph> filadhu. Xiyyoota gara man'eelee kan man'ee ammee irratti kallattiin hirkatan argita."
-
-#: scenario.xhp
+#: address_auto.xhp
msgctxt ""
-"scenario.xhp\n"
-"par_id3154484\n"
-"29\n"
+"address_auto.xhp\n"
+"par_id3149210\n"
+"37\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06050000.xhp\" name=\"Creating Scenarios\">Creating Scenarios</link>"
-msgstr "<link href=\"text/scalc/01/06050000.xhp\" name=\"Creating Scenarios\">Mul'ina Uumuu</link>"
+msgid "If you want a name to be automatically recognized by Calc, the name must start with a letter and be composed of alphanumeric characters. If you enter the name in the formula yourself, enclose the name in single quotation marks ('). If a single quotation mark appears in a name, you must enter a backslash in front of the quotation mark, for example, <item type=\"literal\">'Harry\\'s Bar'.</item>"
+msgstr "Yoo akka maqaan ufmaan Calc dhaan akka beekamu barbaadde,maqaan qubeen jalqabuu fi arfiilee katabbii ta'uu qaba. Ufuma keetiin maqaa foormulaa keessa yoo galchite,maqichi mallattoo waraabbii qeenxee (') keessatti cufi. Mallattoo waraabbiin qeenxee maqicha keessa yoo jiraate,fuuldura mallattoo warabbii waraabbii haxaarroo,fakkeenyaaf,<item type=\"literal\">'Harry\\'s Bar'.</item> galchuu qabda."
-#: multitables.xhp
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
+"auto_off.xhp\n"
"tit\n"
"help.text"
-msgid "Applying Multiple Sheets"
-msgstr "Wardiilee Baay'ee Raawwachuu"
-
-#: multitables.xhp
-msgctxt ""
-"multitables.xhp\n"
-"bm_id3154759\n"
-"help.text"
-msgid "<bookmark_value>sheets; inserting</bookmark_value> <bookmark_value>inserting; sheets</bookmark_value> <bookmark_value>sheets; selecting multiple</bookmark_value> <bookmark_value>appending sheets</bookmark_value> <bookmark_value>selecting;multiple sheets</bookmark_value> <bookmark_value>multiple sheets</bookmark_value> <bookmark_value>calculating;multiple sheets</bookmark_value>"
-msgstr "<bookmark_value>wardiilee; saaguu</bookmark_value> <bookmark_value>saaguu; wardiilee</bookmark_value> <bookmark_value>wardiilee; baay'ee filachuu</bookmark_value> <bookmark_value>ardiilee itti maxxansuu</bookmark_value> <bookmark_value>filachuu;wardiilee hedduu</bookmark_value> <bookmark_value>wardiilee hedduu</bookmark_value> <bookmark_value>shallaguu;wardiilee hedduu</bookmark_value>"
-
-#: multitables.xhp
-msgctxt ""
-"multitables.xhp\n"
-"hd_id3154759\n"
-"9\n"
-"help.text"
-msgid "<variable id=\"multitables\"><link href=\"text/scalc/guide/multitables.xhp\" name=\"Applying Multiple Sheets\">Applying Multiple Sheets</link></variable>"
-msgstr "<variable id=\"multitables\"><link href=\"text/scalc/guide/multitables.xhp\" name=\"Applying Multiple Sheets\">Wardiilee Baay'ee Raawwachuu</link></variable>"
-
-#: multitables.xhp
-msgctxt ""
-"multitables.xhp\n"
-"hd_id3148576\n"
-"10\n"
-"help.text"
-msgid "Inserting a Sheet"
-msgstr "Waardii Saaguu"
+msgid "Deactivating Automatic Changes"
+msgstr "Jijjiirraa ufmaa kaka'a ala gochuu"
-#: multitables.xhp
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
-"par_id3154731\n"
-"4\n"
+"auto_off.xhp\n"
+"bm_id3149456\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Insert - Sheet</item> to insert a new sheet or an existing sheet from another file."
-msgstr "Wardii haaraa ykn faayilii biraa irraa saaguuf <item type=\"menuitem\">Saagi - Wardii</item> filadhu."
+msgid "<bookmark_value>deactivating; automatic changes</bookmark_value> <bookmark_value>tables; deactivating automatic changes in</bookmark_value> <bookmark_value>AutoInput function on/off</bookmark_value> <bookmark_value>text in cells;AutoInput function</bookmark_value> <bookmark_value>cells; AutoInput function of text</bookmark_value> <bookmark_value>input support in spreadsheets</bookmark_value> <bookmark_value>changing; input in cells</bookmark_value> <bookmark_value>AutoCorrect function;cell contents</bookmark_value> <bookmark_value>cell input;AutoInput function</bookmark_value> <bookmark_value>lowercase letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>capital letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>date formats;avoiding conversion to</bookmark_value> <bookmark_value>number completion on/off</bookmark_value> <bookmark_value>text completion on/off</bookmark_value> <bookmark_value>word completion on/off</bookmark_value>"
+msgstr "<bookmark_value>kaka'umsaleessuu; jijjiirraawwan ufmaa</bookmark_value> <bookmark_value>gabateewwan; keessatti jijjiirraawwan ufmaa kaka'umsaleessuu</bookmark_value> <bookmark_value>fankishinii OfiinNaqaa banuu/dhaamsuu</bookmark_value> <bookmark_value>barruu maan'eelee keessaa;fankishinii OfiinNaqaa</bookmark_value> <bookmark_value>man'eelee; fankishinii OfiinNaqaa barruu</bookmark_value> <bookmark_value>gargaarsa naqaa wardiilee keessatti</bookmark_value> <bookmark_value>jijjiiruu; naqa man'ee keessaa</bookmark_value> <bookmark_value>fankishinii OfiinSirreessaa;qabeentoota man'ee</bookmark_value> <bookmark_value>naqa man'ee;fankishinii OfiinNaqaa</bookmark_value> <bookmark_value>qubeelee xixiqqoo;fankishinii OfiinNaqaa (man'eelee keessatti)</bookmark_value> <bookmark_value>qubeelee guguddoo;fankishinii OfiinNaqaa (man'eelee keessatti)</bookmark_value> <bookmark_value>dhangiilee guyyaa;jijjiirraa dhiisuu</bookmark_value> <bookmark_value>guutinsa lakkoofsa banuu/dhaamsuu</bookmark_value> <bookmark_value>guutinsa barruu banuu/dhaamsuu</bookmark_value> <bookmark_value>guutinsa jechaa banuu/dhaamsuu</bookmark_value>"
-#: multitables.xhp
-#, fuzzy
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
-"par_id05092009140203598\n"
+"auto_off.xhp\n"
+"hd_id3149456\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog box where you can assign macros to sheet events.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Qaaqaa, tarree keessatti bakka ati afaan tokko ida'uu dandeessuu bana.</ahelp>"
+msgid "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\" name=\"Deactivating Automatic Changes\">Deactivating Automatic Changes</link></variable>"
+msgstr "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\" name=\"Deactivating Automatic Changes\">Jijjiirraa ufmaa kaka'a ala taasisuu</link></variable>"
-#: multitables.xhp
-#, fuzzy
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
-"par_id05092009140203523\n"
+"auto_off.xhp\n"
+"par_id3156442\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a window where you can assign a color to the sheet tab.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Qaaqaa, tarree keessatti bakka ati afaan tokko ida'uu dandeessuu bana.</ahelp>"
+msgid "By default, $[officename] automatically corrects many common typing errors and applies formatting while you type. You can immediately undo any automatic changes with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z."
+msgstr "Durtiidhaan, $[officename] ufmaan dogoggora barreessuu baratamoo sirreessuudhaan yeroo barreessitu dhangeessuu raawwata. Jijjiirraa ufmaa kamiyyuu <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z fayyadamuun battalumatti gaabbuu dandeessa."
-#: multitables.xhp
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
-"par_id050920091402035\n"
+"auto_off.xhp\n"
+"par_id3145273\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to select all sheets in the document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Galmee keessatti wardiilee mara filuuf cuqaasi.</ahelp>"
+msgid "The following shows you how to deactivate and reactivate the automatic changes in $[officename] Calc:"
+msgstr "Kan armaan gadii akkaataa jijjiirraa ufmaa $[officename] Calc keessatti kaka'a ala taasistuu fi lamuu kakaastu sitti agarsiisa:"
-#: multitables.xhp
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
-"par_id0509200914020391\n"
+"auto_off.xhp\n"
+"hd_id3145748\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to deselect all sheets in the document, except the current sheet.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Galmee keessatti wardiilee mara filatamaleessuuf, wardii ammaa malee.</ahelp>"
+msgid "Automatic Text or Number Completion"
+msgstr "Guutinsa barruu yookiin lakkoofsa ufmaa"
-#: multitables.xhp
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
-"hd_id3154491\n"
-"11\n"
+"auto_off.xhp\n"
+"par_id3154730\n"
+"5\n"
"help.text"
-msgid "Selecting Multiple Sheets"
-msgstr "Wardiilee Baay'ee Filachuu"
+msgid "When making an entry in a cell, $[officename] Calc automatically suggests matching input found in the same column. This function is known as <emph>AutoInput</emph>."
+msgstr "Yeroo galfata man'ee keessatti galchitu,$[officename] Calc ufmaan naqa gitu kan sarjaa sana keessaa argame yaada dhiyeessa. Fankishiniin kun <emph>OfmaaNaqaa</emph> jedhama."
-#: multitables.xhp
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
-"par_id3145251\n"
+"auto_off.xhp\n"
+"par_id3153878\n"
"6\n"
"help.text"
-msgid "The sheet tab of the current sheet is always visible in white in front of the other sheet tabs. The other sheet tabs are gray when they are not selected. By clicking other sheet tabs while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> you can select multiple sheets."
-msgstr ""
+msgid "To turn the AutoInput on and off, set or remove the check mark in front of <link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\"><emph>Tools - Cell Contents - AutoInput</emph></link>."
+msgstr "Naqa ufmaa banuuf/cufuuf, mallattoo filannoo <link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\"><emph>Miyoota - Qabiyyeewwan man'ee - Naqa ufmaa</emph></link> fuuldura jiru qindeessi yookiin balleessi."
-#: multitables.xhp
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
-"par_idN106B7\n"
+"auto_off.xhp\n"
+"hd_id3146972\n"
+"21\n"
"help.text"
-msgid "You can use Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down to select multiple sheets using the keyboard."
-msgstr "Wardiilee baay'ee gabatee cuqoon filachuuf Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up ykn Page Down fayyadamuu dandeessa."
+msgid "Automatic Conversion to Date Format"
+msgstr "Geeddarama ofmaa dhangii Guyyaatti"
-#: multitables.xhp
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
-"hd_id3155600\n"
-"12\n"
+"auto_off.xhp\n"
+"par_id3153707\n"
+"22\n"
"help.text"
-msgid "Undoing a Selection"
-msgstr "Filannoo Gaabbuu"
+msgid "$[officename] Calc automatically converts certain entries to dates. For example, the entry <emph>1.1</emph> may be interpreted as January 1 of the current year, according to the locale settings of your operating system, and then displayed according to the date format applied to the cell."
+msgstr "$[officename] Calc galfatoota muraasa ufmaan gara dhangii guyyaatti jijjiira. Fakkeenyaaf, galfatni <emph>1.1</emph> bara ammee keessatti akka amajjii 1 tti, akkaataa qindaa'inoota gitoo biyyaa sirna dalagaa keetti hiikamuu danda'a, achumaan akkaataa dhangii baraa maadhee irratti raawwateetti mul'ata."
-#: multitables.xhp
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
-"par_id3146969\n"
-"13\n"
+"auto_off.xhp\n"
+"par_id3159267\n"
+"23\n"
"help.text"
-msgid "To undo the selection of a sheet, click its sheet tab again while pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key. The sheet that is currently visible cannot be removed from the selection."
-msgstr ""
+msgid "To ensure that an entry is interpreted as text, add an apostrophe at the beginning of the entry. The apostrophe is not displayed in the cell."
+msgstr "Galfatni akka barruutti hiikamu mirkanneessuuf,jalqaba galfataatti hudhaa dabali.Hudhaan man'ee keessatti hin mul'atu."
-#: multitables.xhp
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
-"hd_id3156382\n"
-"15\n"
+"auto_off.xhp\n"
+"hd_id3150043\n"
+"7\n"
"help.text"
-msgid "Calculating Across Multiple Sheets"
-msgstr "Wardiilee Baay'ee Irraa Shallaguu"
+msgid "Quotation Marks Replaced by Custom Quotes"
+msgstr "Mallattoolee waraabbii mallatoolee waraabbii maamiloon bakkabuufaman"
-#: multitables.xhp
+#: auto_off.xhp
msgctxt ""
-"multitables.xhp\n"
+"auto_off.xhp\n"
"par_id3155333\n"
-"16\n"
-"help.text"
-msgid "You can refer to a range of sheets in a formula by specifying the first and last sheet of the range, for example, <item type=\"literal\">=SUM(Sheet1.A1:Sheet3.A1) </item>sums up all A1 cells on Sheet1 through Sheet3."
-msgstr "Wardii hammangaa kan jalqabaa fi dhumaa ifteessuudhaan hammangaa wardiilee foormulaa keessaa wabeeffachuu dandeessa, fakkeenyaaf, <item type=\"literal\">=IDA'I(Wardii1.A1:Wardii3.A1) </item> man'eelee A1 Wardii1 hanga Wardii3 hunda ida'a."
-
-#: format_table.xhp
-msgctxt ""
-"format_table.xhp\n"
-"tit\n"
-"help.text"
-msgid "Formatting Spreadsheets"
-msgstr "Wardiilee Dhangeessuu"
-
-#: format_table.xhp
-msgctxt ""
-"format_table.xhp\n"
-"bm_id3154125\n"
+"9\n"
"help.text"
-msgid "<bookmark_value>text in cells; formatting</bookmark_value><bookmark_value>spreadsheets;formatting</bookmark_value><bookmark_value>backgrounds;cells and pages</bookmark_value><bookmark_value>borders;cells and pages</bookmark_value><bookmark_value>formatting;spreadsheets</bookmark_value><bookmark_value>numbers; formatting options for selected cells</bookmark_value><bookmark_value>cells; number formats</bookmark_value><bookmark_value>currencies;formats</bookmark_value>"
-msgstr "<bookmark_value>barruu man'eelee keessaa; dhangeessuu</bookmark_value><bookmark_value>wardiilee;dhangeessuu</bookmark_value><bookmark_value>duubeewwan;man'eelee fi fuulota</bookmark_value><bookmark_value>handaarawwan;man'eelee fi fuulota</bookmark_value><bookmark_value>dhangeessuu;wardiilee</bookmark_value><bookmark_value>lakkoofsota; dirqaalaalee dhangeessuu man'eelee filatamaniif</bookmark_value><bookmark_value>man'eelee; dhangiiwwan lakkoofsaa</bookmark_value><bookmark_value>maallaqoota;dhangiiwwan</bookmark_value>"
+msgid "Choose <emph>Tools - AutoCorrect Options</emph>. Go to the <emph>Localized Options</emph> tab and unmark <emph>Replace</emph>."
+msgstr "<emph>Meeshaalee - Dirqalaalee OfiinSirreessaa</emph> filadhu. Gara caancala <emph>Waraabbiilee Maamiloo</emph> deemiitii <emph>Bakkabuusi</emph> irraa mallattoo kaasi."
-#: format_table.xhp
+#: auto_off.xhp
msgctxt ""
-"format_table.xhp\n"
-"hd_id3154125\n"
-"6\n"
+"auto_off.xhp\n"
+"hd_id3149565\n"
+"11\n"
"help.text"
-msgid "<variable id=\"format_table\"><link href=\"text/scalc/guide/format_table.xhp\" name=\"Designing Spreadsheets\">Formatting Spreadsheets</link></variable>"
-msgstr "<variable id=\"format_table\"><link href=\"text/scalc/guide/format_table.xhp\" name=\"Designing Spreadsheets\">Wardiilee Dhangeessuu</link></variable>"
+msgid "Cell Content Always Begins With Uppercase"
+msgstr "Qabeentaan maa'ee hogayyuu Qubee Guddaan Jalqaba"
-#: format_table.xhp
+#: auto_off.xhp
msgctxt ""
-"format_table.xhp\n"
-"hd_id3153912\n"
+"auto_off.xhp\n"
+"par_id3147001\n"
"13\n"
"help.text"
-msgid "Formatting Text in a Spreadsheet"
-msgstr "Barruu Wardii keessaa Dhangeessuu"
-
-#: format_table.xhp
-msgctxt ""
-"format_table.xhp\n"
-"par_id3144772\n"
-"14\n"
-"help.text"
-msgid "Select the text you want to format."
-msgstr "Barruu dhangeessuu barbaaddu filadhu."
+msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect Options</item>. Go to the <item type=\"menuitem\">Options</item> tab. Unmark <item type=\"menuitem\">Capitalize first letter of every sentence</item>."
+msgstr "<item type=\"menuitem\">Meeshaalee - Dirqalaalee OfiinSirreessaa</item> filadhu. Gara caancala <item type=\"menuitem\">Dirqaalaalee</item> deemi. <item type=\"menuitem\">Qubee jalqabaa hima hundaa guddeessi</item> irraa mallattoo kaasi."
-#: format_table.xhp
+#: auto_off.xhp
msgctxt ""
-"format_table.xhp\n"
-"par_id3155268\n"
+"auto_off.xhp\n"
+"hd_id3150345\n"
"15\n"
"help.text"
-msgid "Choose the desired text attributes from the <emph>Formatting </emph>Bar. You can also choose <emph>Format - Cells</emph>. The <emph>Format Cells</emph> dialog will appear in which you can choose various text attributes on the <emph>Font</emph> tab page."
-msgstr "Amaloota barruu barbaachisoo Kabala <emph>Dhangeessuu </emph> irraa filadhu. <emph>Dhangii - Man'eelee</emph> irraas filachuu dandeessa. Qaaqni <emph>Man'eelee Dhangeessi</emph> kan amaloota barruu adda addaa keessaa fuula kabala <emph>Bocquu</emph> irraa filattu ni mul'ata."
-
-#: format_table.xhp
-msgctxt ""
-"format_table.xhp\n"
-"hd_id3149899\n"
-"16\n"
-"help.text"
-msgid "Formatting Numbers in a Spreadsheet"
-msgstr "Barruu Wardii keessaa Dhangeessuu"
+msgid "Replace Word With Another Word"
+msgstr "Jecha Jecha Biraatiin Bakkabuusi"
-#: format_table.xhp
+#: auto_off.xhp
msgctxt ""
-"format_table.xhp\n"
-"par_id3159226\n"
+"auto_off.xhp\n"
+"par_id3166425\n"
"17\n"
"help.text"
-msgid "Select the cells containing the numbers you want to format."
-msgstr "Maadheelee lakkoofsota dhangeessuu barbaaddu qabatan filadhu."
-
-#: format_table.xhp
-msgctxt ""
-"format_table.xhp\n"
-"par_id3150046\n"
-"18\n"
-"help.text"
-msgid "To format numbers in the default currency format or as percentages, use the icons on the <emph>Formatting </emph>Bar. For other formats, choose <emph>Format - Cells</emph>. You can choose from the preset formats or define your own on the <emph>Numbers</emph> tab page."
-msgstr "Lakkoofsota dhangii maallaqaa durtiitiin ykn akka parsantiitti dhangeessuuf, sajoolee Kabala <emph>Dhangeessuu </emph> irraa fayyadami. Dhangiilee birootiif, <emph>Dhangii - Man'eelee</emph> filadhu. Dhangiiwwan jiran keessaa filachuu dandeessa ykn kan mataa keetii fuula caancala <emph>Lakkoofsa</emph> irratti qindeessuu dandeessa."
+msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect Options</item>. Go to the <item type=\"menuitem\">Replace</item> tab. Select the word pair and click <item type=\"menuitem\">Delete</item>."
+msgstr "<item type=\"menuitem\">Meeshaalee - Dirqalaalee OfiinSirreessaa</item> filadhu. Gara caancala <item type=\"menuitem\">Bakkabuusi</item> deemi. Cimdii jechaa filadhuutii <item type=\"menuitem\">Haqi</item> cuqaasi."
-#: format_table.xhp
+#: auto_off.xhp
msgctxt ""
-"format_table.xhp\n"
-"hd_id3153483\n"
+"auto_off.xhp\n"
+"par_id3152992\n"
"19\n"
"help.text"
-msgid "Formatting Borders and Backgrounds for Cells and Pages"
-msgstr "Handaarawwanii fi Duubeewwan Maadheelee fi Fuulotaaf Dhangeesssuu"
+msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\">Tools - Cell Contents - AutoInput</link>"
+msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\">Miyoota - Qabiyyeewwan maadhee - Naqa ufmaa</link>"
-#: format_table.xhp
+#: auto_off.xhp
msgctxt ""
-"format_table.xhp\n"
-"par_id3154733\n"
+"auto_off.xhp\n"
+"par_id3154368\n"
"20\n"
"help.text"
-msgid "You can assign a format to any group of cells by first selecting the cells (for multiple selection, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key when clicking), and then activating the <emph>Format Cells</emph> dialog in <item type=\"menuitem\">Format - Cell</item>. In this dialog, you can select attributes such as shadows and backgrounds."
-msgstr ""
+msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"Tools - AutoCorrect\">Tools - AutoCorrect Options</link>"
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"Tools - AutoCorrect\">Meeshaa - Dirqalaalee OfiinSirreessaa</link>"
-#: format_table.xhp
+#: autofilter.xhp
msgctxt ""
-"format_table.xhp\n"
-"par_id3145116\n"
-"21\n"
+"autofilter.xhp\n"
+"tit\n"
"help.text"
-msgid "To apply formatting attributes to an entire sheet, choose <emph>Format - Page</emph>. You can define headers and footers, for example, to appear on each printed page."
-msgstr "Amaloota dhangeessuu wardii guutuu irratti raawwachuuf, <emph>Dhangii - Fuula</emph> filadhu. Irraantotaa fi jalaantota, fakkeenyaaf, fuula maxxansaman mara irratti kan mul'atu, qindeessuu dandeessa."
+msgid "Applying AutoFilter"
+msgstr "Gingilcha ufmaa raawwachuu"
-#: format_table.xhp
+#: autofilter.xhp
msgctxt ""
-"format_table.xhp\n"
-"par_id3145389\n"
-"22\n"
+"autofilter.xhp\n"
+"bm_id3156423\n"
"help.text"
-msgid "An image that you have loaded with <item type=\"menuitem\">Format - Page - Background</item> is only visible in print or in the page preview. To display a background image on screen as well, insert the graphic image by choosing <item type=\"menuitem\">Insert - Picture - From File</item> and arrange the image behind the cells by choosing <item type=\"menuitem\">Format - Arrange - To Background</item>. Use the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> to select the background image."
-msgstr "Fakkiin ati <item type=\"menuitem\">Dhangii - Fuula - Duubee</item> dhaan feete fuula maxxansaa ykn durargii keessatti qofa mul'ata. Fakkii duubee argii irratti mul'isuuf, fakkii saxaatoo <item type=\"menuitem\">Saagi - Fakkii - Faayilii Irraa</item> filachuudhaan saagiitii fakkii duubee filachuuf <item type=\"menuitem\">Dhangii - Qindeessi - Gara Duubee</item>. Use the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> filachuudhaan fakkii maadheelee duubatti qindeessi."
+msgid "<bookmark_value>filters, see also AutoFilter function</bookmark_value> <bookmark_value>AutoFilter function;applying</bookmark_value> <bookmark_value>sheets; filter values</bookmark_value> <bookmark_value>numbers; filter sheets</bookmark_value> <bookmark_value>columns; AutoFilter function</bookmark_value> <bookmark_value>drop-down menus in sheet columns</bookmark_value> <bookmark_value>database ranges; AutoFilter function</bookmark_value>"
+msgstr "<bookmark_value>gingilchoota, dalagaa gingilcha ufmaas ilaali</bookmark_value> <bookmark_value>fankishinii gingilchaa ofmaa;raawwachuu</bookmark_value> <bookmark_value>wardiilee; gatiiwwan gingilchaa</bookmark_value> <bookmark_value>lakkoofsota; wardiilee gingilchaa</bookmark_value> <bookmark_value>tarjaawwan; dalagaa gingilcha ufmaa</bookmark_value> <bookmark_value>baafatoota gadbuusaa sarjaawwan wardii keessatti</bookmark_value> <bookmark_value>hangiilee kuusdeetaa; dalagaa gingilcha ufmaa</bookmark_value>"
-#: format_table.xhp
+#: autofilter.xhp
msgctxt ""
-"format_table.xhp\n"
-"par_id2837916\n"
+"autofilter.xhp\n"
+"hd_id3156423\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\">Number Formatting Options</link>"
-msgstr "<link href=\"text/shared/01/05020300.xhp\">Dirqaalaalee Dhangeessa Lakkoofsaa</link>"
+msgid "<variable id=\"autofilter\"><link href=\"text/scalc/guide/autofilter.xhp\" name=\"Applying AutoFilter\">Applying AutoFilter</link></variable>"
+msgstr "<variable id=\"autofilter\"><link href=\"text/scalc/guide/autofilter.xhp\" name=\"Applying AutoFilter\">Gingilcha ufmaa raawwachuu</link></variable>"
-#: format_table.xhp
+#: autofilter.xhp
msgctxt ""
-"format_table.xhp\n"
-"par_id2614215\n"
+"autofilter.xhp\n"
+"par_id3147427\n"
+"7\n"
"help.text"
-msgid "<link href=\"text/scalc/guide/background.xhp\">Backgrounds for Cells</link>"
-msgstr "<link href=\"text/scalc/guide/background.xhp\">Duubeewwan Maadheelee</link>"
+msgid "The <emph>AutoFilter</emph> function inserts a combo box on one or more data columns that lets you select the records (rows) to be displayed."
+msgstr "Dalagaan <emph>Gingilcha ufmaa</emph> sarjaawwan deetaa tokko yookiin ol irratti sanduuqa makaa kan tarreewwan mul'atan filachuuf si dandeessisu saaga."
-#: goalseek.xhp
+#: autofilter.xhp
msgctxt ""
-"goalseek.xhp\n"
-"tit\n"
+"autofilter.xhp\n"
+"par_id3152576\n"
+"9\n"
"help.text"
-msgid "Applying Goal Seek"
-msgstr "Barbaacha Kaayyoo Raawwachuu"
+msgid "Select the columns you want to use AutoFilter on."
+msgstr "Sarjaawwan gingilcha ufmaa irratti fayyadamtu filadhu."
-#: goalseek.xhp
+#: autofilter.xhp
msgctxt ""
-"goalseek.xhp\n"
-"bm_id3145068\n"
+"autofilter.xhp\n"
+"par_id3153157\n"
+"10\n"
"help.text"
-msgid "<bookmark_value>goal seeking;example</bookmark_value><bookmark_value>equations in goal seek</bookmark_value><bookmark_value>calculating;variables in equations</bookmark_value><bookmark_value>variables;calculating equations</bookmark_value><bookmark_value>examples;goal seek</bookmark_value>"
-msgstr "<bookmark_value>barbaacha kaayyoo;fakkeenya</bookmark_value><bookmark_value>qixxaattota barbaacha kaayyoo keessatti</bookmark_value><bookmark_value>shallaguu;jijjiiramoota qixxaattota keessatti</bookmark_value><bookmark_value>jijjiiramoota;qixxaattota shallaguu</bookmark_value><bookmark_value>fakkeenyota;barbaacha kaayyoo</bookmark_value>"
+msgid "Choose <emph>Data - Filter - AutoFilter</emph>. The combo box arrows are visible in the first row of the range selected."
+msgstr "<emph>Deetaa - Gingilchi - ufmaan gingilchi</emph>filadhu. Xiyyootni sanduuqa makaa hammanga tarree jalqabaa filatame keessatti ni mul'atu."
-#: goalseek.xhp
+#: autofilter.xhp
msgctxt ""
-"goalseek.xhp\n"
-"hd_id3145068\n"
-"22\n"
+"autofilter.xhp\n"
+"par_id3154510\n"
+"11\n"
"help.text"
-msgid "<variable id=\"goalseek\"><link href=\"text/scalc/guide/goalseek.xhp\" name=\"Applying Goal Seek\">Applying Goal Seek</link></variable>"
-msgstr "<variable id=\"goalseek\"><link href=\"text/scalc/guide/goalseek.xhp\" name=\"Applying Goal Seek\">Babrbaacha Kaayyoo Raawwadhu</link></variable>"
+msgid "Run the filter by clicking the drop-down arrow in the column heading and choosing an item."
+msgstr "Xiyya gadbuusaa irraantoo sarjaa keessaa cuqaasuudhaanii fi waanta filachuudhaan gingilchaa kaachisi."
-#: goalseek.xhp
+#: autofilter.xhp
msgctxt ""
-"goalseek.xhp\n"
-"par_id3145171\n"
-"2\n"
+"autofilter.xhp\n"
+"par_id3155064\n"
+"13\n"
"help.text"
-msgid "With the help of Goal Seek you can calculate a value that, as part of a formula, leads to the result you specify for the formula. You thus define the formula with several fixed values and one variable value and the result of the formula."
-msgstr "Gargaarsa Barbaacha Kaayyootiin gatii, akka qaama foormulaatti, gara bu'aa foormulaaf ifteessituutti si geessu shallaguu dandeessa. Achiin foormulaa gatiiwwan dhaabbataa baay'eetiinii fi gatii jijjiiramaa tokkoo fi bu'aa foormulaatiin qindeessita."
+msgid "Only those rows whose contents meet the filter criteria are displayed. The other rows are filtered. You can see if rows have been filtered from the discontinuous row numbers. The column that has been used for the filter is identified by a different color for the arrow button."
+msgstr "Tarreewwan qabiyyeen isaanii ulaagaa gingilchaa guutu qofatu mul'ata.Tarreewwan biroo ni gingilchamu.Akka tarreewwan gingilchamanii turan lakkoofsota tarree addaan citoo irraa arguu dandeessa.Sarjaan gingilchaaf fayyadee ture qabduu xiyyaatiif halluu addaatiin addaan baafatama."
-#: goalseek.xhp
+#: autofilter.xhp
msgctxt ""
-"goalseek.xhp\n"
-"hd_id3153966\n"
-"14\n"
+"autofilter.xhp\n"
+"par_id9216589\n"
"help.text"
-msgid "Goal Seek Example"
-msgstr "Fakkeenya Kaayyoo Barbaachaa"
+msgid "When you apply an additional AutoFilter on another column of a filtered data range, then the other combo boxes list only the filtered data."
+msgstr "Yeroo gingilcha ufmaa dabalataa sarjaa hammanga deetaa gingilchame kan biraa irratti raawwattu,achumaan sanduuqni makaa deetaa gingilchame qofa tarreessa."
-#: goalseek.xhp
+#: autofilter.xhp
msgctxt ""
-"goalseek.xhp\n"
-"par_id3150871\n"
-"4\n"
+"autofilter.xhp\n"
+"par_id3153714\n"
+"12\n"
"help.text"
-msgid "To calculate annual interest (I), create a table with the values for the capital (C), number of years (n), and interest rate (i). The formula is:"
-msgstr "Dhala waggaa(I) shallaguuf, gabatee gatiiwwan kaappitaala©, lakkoofsa waggootaa(n), fi reetii dhalaa(i) qabatu uumi. Foormulaan:"
+msgid "To display all records again, select the \"all<emph>\"</emph> entry in the AutoFilter combo box. If you choose \"Standard<emph>\"</emph>, the <item type=\"menuitem\">Standard Filter</item> dialog appears, allowing you to set up a standard filter. Choose \"Top 10\" to display the highest 10 values only."
+msgstr "Kuusaa hundaa ammas agarsiisuuf,galfata \"mara<emph>\"</emph> sanduuqa makaa gingilcha ufmaa keessaa filadhu. Yoo \"Durtii<emph>\"</emph> filatte, qaaqni <item type=\"menuitem\">Gingilcha Durtii</item> gingilcha durtii akka qindeessitu si dandeessisuuf ni mul'ata. Gatiiwwan gurguddoo 10 qofa mul'isuuf \"Guguddoo 10\" filadhu."
-#: goalseek.xhp
+#: autofilter.xhp
msgctxt ""
-"goalseek.xhp\n"
-"par_id3152596\n"
-"5\n"
+"autofilter.xhp\n"
+"par_id3147340\n"
+"19\n"
"help.text"
-msgid "I = C * n* i"
-msgstr "I = C * n* i"
+msgid "To stop using AutoFilter, reselect all cells selected in step 1 and once again choose <emph>Data - Filter - AutoFilter</emph>."
+msgstr "Fayyadama gingilcha ufmaa dhaabuuf,man'eelee ejjatoo 1 keessatti filataman hunda lamuu filadhuutii <emph>Deetaa - Gingilchi - Ufmaan gingilchi</emph> fili."
-#: goalseek.xhp
+#: autofilter.xhp
msgctxt ""
-"goalseek.xhp\n"
-"par_id3155335\n"
-"15\n"
+"autofilter.xhp\n"
+"par_id4303415\n"
"help.text"
-msgid "Let us assume that the interest rate <item type=\"literal\">i</item> of 7.5% and the number of years <item type=\"literal\">n</item> (1) will remain constant. However, you want to know how much the investment capital <item type=\"literal\">C</item> would have to be modified in order to attain a particular return <item type=\"literal\">I</item>. For this example, calculate how much capital <item type=\"literal\">C</item> would be required if you want an annual return of $15,000."
-msgstr "Mee reetiin dhalaa <item type=\"literal\">i</item> 7.5% fi lakkoofsi waggootaa <item type=\"literal\">n</item> (1) dhaabbataa jennee haa fudhannu. Garuu, hanga kaappitaalli investimentii <item type=\"literal\">C</item> deebii murtaa'aa <item type=\"literal\">I</item> agachuuf fooyya'uu qabu ture beekuu si barbaachisa. Fakkeenya kanaaf, kaappitaala <item type=\"literal\">C</item> hangamtu yoo deebisa waggaa $15,000 barbaadde akka si barbaachisu shallagi."
+msgid "To assign different AutoFilters to different sheets, you must first define a database range on each sheet."
+msgstr "Gingilcha ufmaa garaagaraa wardii garaagaraatti ramaduuf,dursitee tokkoon tokkoo wardii irratti hammanga kuusaa deetaa qindeessuu qabda."
-#: goalseek.xhp
+#: autofilter.xhp
msgctxt ""
-"goalseek.xhp\n"
-"par_id3155960\n"
-"6\n"
+"autofilter.xhp\n"
+"par_id3159236\n"
+"14\n"
"help.text"
-msgid "Enter each of the values for Capital <item type=\"literal\">C</item> (an arbitrary value like <item type=\"literal\">$100,000</item>), number of years <item type=\"literal\">n </item>(<item type=\"literal\">1</item>), and interest rate <item type=\"literal\">i</item> (<item type=\"literal\">7.5%</item>) in one cell each. Enter the formula to calculate the interest <item type=\"literal\">I</item> in another cell. Instead of <item type=\"literal\">C</item>, <item type=\"literal\">n</item>, and <item type=\"literal\">i</item> use the <link href=\"text/scalc/guide/relativ_absolut_ref.xhp\">reference to the cell</link> with the corresponding value."
-msgstr "Gatiiwwan tokkoon tokkoo Kaapitaalaaf <item type=\"literal\">C</item> (gatii tasaa kan akka <item type=\"literal\">$100,000</item>), lakkoofsa waggootaaf <item type=\"literal\">n </item>(<item type=\"literal\">1</item>), fi makkii dhalannaaf <item type=\"literal\">i</item> (<item type=\"literal\">7.5%</item>) man'ee tokko keessatti galchi. Foormulaa dhalannaa <item type=\"literal\">I</item> shallagu man'ee biroo keessatti galchi. Qooda <item type=\"literal\">C</item>, <item type=\"literal\">n</item>, fi <item type=\"literal\">i</item> <link href=\"text/scalc/guide/relativ_absolut_ref.xhp\">wabii man'ee</link> gatii walsimu waliin fayyadami."
+msgid "The arithmetic functions also take account of the cells that are not visible due to an applied filter. For example, a sum of an entire column will also total the values in the filtered cells. Apply the <link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link> function if only the cells visible after the application of a filter are to be taken into account."
+msgstr "Dalagaaleen herregaas man'eelee sababa gingilchaa raawwateen hin mul'anne xiyyeeffannaa keessa galchu.Fakkeenyaaf,ida'amni sarjaa hundaa gatii mara man'eelee filatamanii ta'a.Dalagaa <link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">CITA IDA'AMAA</link> yoo man'eeleen erga gingilchi raawwatee mul'atan qofti xiyyeeffannaa argachuuf ta'an raawwadhu."
-#: goalseek.xhp
+#: autofilter.xhp
msgctxt ""
-"goalseek.xhp\n"
-"par_id3147001\n"
+"autofilter.xhp\n"
+"par_id3152985\n"
"16\n"
"help.text"
-msgid "Place the cursor in the cell containing the interest <item type=\"literal\">I</item>, and choose <emph>Tools - Goal Seek</emph>. The <emph>Goal Seek</emph> dialog appears."
-msgstr "Qaree man'ee dhala <item type=\"literal\">I</item> qabatu keessa kaa'iitii, <emph>Meeshaalee - Barbaacha Kaayyoo</emph>. Qaaqni <emph>Barbaacha Kaayyoo</emph> ni mul'ata."
+msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"Data - Filter - AutoFilter\">Data - Filter - AutoFilter</link>"
+msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"Data - Filter - AutoFilter\">Deetaa - Gingilchi - Ufmaan gingilchi</link>"
-#: goalseek.xhp
+#: autofilter.xhp
msgctxt ""
-"goalseek.xhp\n"
-"par_id3150088\n"
+"autofilter.xhp\n"
+"par_id3154484\n"
"17\n"
"help.text"
-msgid "The correct cell is already entered in the field <emph>Formula Cell</emph>."
-msgstr "Man'een sirrii durumaanuu dirree <emph>Man'ee Foormulaa</emph> keessatti galchameera."
-
-#: goalseek.xhp
-msgctxt ""
-"goalseek.xhp\n"
-"par_id3166426\n"
-"18\n"
-"help.text"
-msgid "Place the cursor in the field <emph>Variable Cell</emph>. In the sheet, click in the cell that contains the value to be changed, in this example it is the cell with the capital value <item type=\"literal\">C</item>."
-msgstr "Qaree dirree <emph>Man'ee Jijjiiramaa</emph> keessa kaa'i. Wardii keessatti, man'ee gatii jijjiiramu qabate cuqaasi, fakkeenya kana keessatti man'ee gatii kaappitaalaa <item type=\"literal\">C</item> dha."
-
-#: goalseek.xhp
-msgctxt ""
-"goalseek.xhp\n"
-"par_id3150369\n"
-"19\n"
-"help.text"
-msgid "Enter the expected result of the formula in the <emph>Target Value</emph> text box. In this example, the value is 15,000. Click <emph>OK</emph>."
-msgstr "Bu'aa eegamaa foormulaa sanduuqa barruu <emph>Gatii Galtee</emph> keessatti galchi. Fakkkeenya kana keessatti, gatiin 15,000 dha. <emph>TOLE</emph> cuqaasi."
-
-#: goalseek.xhp
-msgctxt ""
-"goalseek.xhp\n"
-"par_id3146978\n"
-"20\n"
-"help.text"
-msgid "A dialog appears informing you that the Goal Seek was successful. Click <emph>Yes</emph> to enter the result in the cell with the variable value."
-msgstr "Qaaqni akka Barbaachi Kaayyoo galma gahe mul'isu ni mul'ata. Bu'aa maadhee kan gatii jijjiiramaa qabate keessatti galchuuf <emph>Eeyyee</emph> cuqaasi."
-
-#: goalseek.xhp
-msgctxt ""
-"goalseek.xhp\n"
-"par_id3149409\n"
-"23\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
-msgstr "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Barbaacha Kaayyoo</link>"
+msgid "<link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link>"
+msgstr "<link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">CITA IDA'AMAA</link>"
-#: fraction_enter.xhp
+#: autoformat.xhp
msgctxt ""
-"fraction_enter.xhp\n"
+"autoformat.xhp\n"
"tit\n"
"help.text"
-msgid "Entering Fractions"
-msgstr "Firaakshinoota galchuu"
-
-#: fraction_enter.xhp
-msgctxt ""
-"fraction_enter.xhp\n"
-"bm_id3155411\n"
-"help.text"
-msgid "<bookmark_value>fractions; entering</bookmark_value><bookmark_value>numbers; entering fractions </bookmark_value><bookmark_value>inserting;fractions</bookmark_value>"
-msgstr "<bookmark_value>firaakshinoota; galchuu</bookmark_value><bookmark_value>lakkoofsa; firaakshinoota galchuu </bookmark_value><bookmark_value>saaguu;firaakshinoota</bookmark_value>"
-
-#: fraction_enter.xhp
-msgctxt ""
-"fraction_enter.xhp\n"
-"hd_id3155411\n"
-"41\n"
-"help.text"
-msgid "<variable id=\"fraction_enter\"><link href=\"text/scalc/guide/fraction_enter.xhp\" name=\"Entering Fractions \">Entering Fractions </link></variable>"
-msgstr "<variable id=\"fraction_enter\"><link href=\"text/scalc/guide/fraction_enter.xhp\" name=\"Entering Fractions \">Firaakshinoota Galchuu </link></variable>"
+msgid "Using AutoFormat for Tables"
+msgstr "Gabateewwaniif dhangii ufmaa fayyadamuu"
-#: fraction_enter.xhp
+#: autoformat.xhp
msgctxt ""
-"fraction_enter.xhp\n"
-"par_id3153968\n"
-"40\n"
+"autoformat.xhp\n"
+"bm_id3155132\n"
"help.text"
-msgid "You can enter a fractional number in a cell and use it for calculation:"
-msgstr "Lakkoofsa firaakshinii man'ee keessatti galchiitii shallaggiif fayyadami."
+msgid "<bookmark_value>tables; AutoFormat function</bookmark_value> <bookmark_value>defining;AutoFormat function for tables</bookmark_value> <bookmark_value>AutoFormat function</bookmark_value> <bookmark_value>formats; automatically formatting spreadsheets</bookmark_value> <bookmark_value>automatic formatting in spreadsheets</bookmark_value> <bookmark_value>sheets;AutoFormat function</bookmark_value>"
+msgstr "<bookmark_value>gabateewwan; dalagee dhangii ufmaa</bookmark_value> <bookmark_value>qindeessuu;dalagaa dhangii ufmaa gabateewwaniif</bookmark_value> <bookmark_value>dalagaa dhangii ufmaa;dhangiiwwan qindeessuu fi raawwachuu</bookmark_value> <bookmark_value>dhangiiwwan; wardiilee ufmaan dhangeessuu</bookmark_value> <bookmark_value>wardiilee keessatti ufmaan dhangeessuu</bookmark_value> <bookmark_value>wardiilee;dalagaa dhangii ufmaa</bookmark_value>"
-#: fraction_enter.xhp
+#: autoformat.xhp
msgctxt ""
-"fraction_enter.xhp\n"
-"par_id3155133\n"
-"42\n"
+"autoformat.xhp\n"
+"hd_id3155132\n"
+"11\n"
"help.text"
-msgid "Enter \"0 1/5\" in a cell (without the quotation marks) and press the input key. In the input line above the spreadsheet you will see the value 0.2, which is used for the calculation."
-msgstr "Man'ee keessatti \"0 1/5\" galchiitii(mallattoo waraabbii malee)furtuu naqaa tuqi. Sarara naqaa gubbaa wardii jiru keessatti gatii 0.2 argita, kan shallaggiif fayyadu dha."
+msgid "<variable id=\"autoformat\"><link href=\"text/scalc/guide/autoformat.xhp\" name=\"Using AutoFormat for Tables\">Applying Automatic Formatting to a Selected Cell Range</link></variable>"
+msgstr "<variable id=\"autoformat\"><link href=\"text/scalc/guide/autoformat.xhp\" name=\"Using AutoFormat for Tables\">Dhangeessa ufmaa hammanga maadhee filatameetti raawwachuu</link> </variable>"
-#: fraction_enter.xhp
+#: autoformat.xhp
msgctxt ""
-"fraction_enter.xhp\n"
-"par_id3145750\n"
-"43\n"
+"autoformat.xhp\n"
+"par_id3149401\n"
+"12\n"
"help.text"
-msgid "If you enter \"0 1/2\" AutoCorrect causes the three characters 1, / and 2 to be replaced by a single character. The same applies to 1/4 and 3/4. This replacement is defined in <emph>Tools - AutoCorrect Options - Options</emph> tab."
-msgstr "Yoo \"0 1/2\" galchite Ufmaa sirreessi arfiilee sadeen 1, / fi 2 akka arfii tokkoon bakka bu'an godha. Kan walfakkaatu 1/4 fi 3/4 irrattis ni raawwata. Bakka buusni kun caancala <emph>Meeshaalee - Ofiinsirreessaa - Dirqalaalee</emph> keessatti ibsama."
+msgid "You can use the AutoFormat feature to quickly apply a format to a sheet or a selected cell range."
+msgstr "Amala dhangii ufmaa saffisaan dhangii wardii yookiin hammanga man'ee filtame irratti raawwachuuf fayyadamuu dandeessa."
-#: fraction_enter.xhp
+#: autoformat.xhp
msgctxt ""
-"fraction_enter.xhp\n"
-"par_id3145367\n"
-"44\n"
+"autoformat.xhp\n"
+"par_idN10702\n"
"help.text"
-msgid "If you want to see multi-digit fractions such as \"1/10\", you must change the cell format to the multi-digit fraction view. Open the context menu of the cell, and choose <emph>Format cells. </emph>Select \"Fraction\" from the <emph>Category</emph> field, and then select \"-1234 10/81\". You can then enter fractions such as 12/31 or 12/32 - the fractions are, however, automatically reduced, so that in the last example you would see 3/8."
-msgstr "Yoo firaakshinee dijiitii danuu kan akka \"1/10\" arguu barbaadde, dhangii man'ee gara argii firaakshinii dijiitii danuutti jijjiiruu qabda. Baafata haallee man'ee baniitii, <emph>Man'eelee dhangeessi fili. </emph> \"Firaakshinii\" dirree <emph>Akaakuu</emph> irraa filiitii, achiin \"-1234 10/81\" filadhu. Achiin firaakshinoota akka 12/31 ykn 12/32 galchuu dandeessa - firaakshinootni, garuu, ufmaan hir'atu, akka fakkeenya dhumaa keessatti 3/8 agarttuuf."
+msgid "To Apply an AutoFormat to a Sheet or Selected Cell Range"
+msgstr "Dhangii Ofmaa Wardiitti ykn Hangii Man'ee Filatameetti Fayyadamuuf"
-#: datapilot_filtertable.xhp
-#, fuzzy
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"tit\n"
+"autoformat.xhp\n"
+"par_idN106CE\n"
"help.text"
-msgid "Filtering Pivot Tables"
-msgstr "Gabateewwan DataPilot gingilchuu"
+msgid "Select the cells, including the column and row headers, that you want to format."
+msgstr "Man'eelee,irraantoowwan sarjaa fi tarree dabaltee,kan dhangeessuu barbaadde filadhu."
-#: datapilot_filtertable.xhp
-#, fuzzy
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"bm_id3150792\n"
+"autoformat.xhp\n"
+"par_idN106D5\n"
"help.text"
-msgid "<bookmark_value>pivot table function; filtering tables</bookmark_value><bookmark_value>filtering;pivot tables</bookmark_value>"
-msgstr "<bookmark_value>dalagaa DataPilot ; gabateewwan gingilchuu</bookmark_value> <bookmark_value>gingilchuu;gabateewwan DataPilot</bookmark_value>"
+msgid "Choose <item type=\"menuitem\">Format - AutoFormat</item>."
+msgstr "<item type=\"menuitem\">Dhangii - Ufmaan dhangeessi</item>."
-#: datapilot_filtertable.xhp
-#, fuzzy
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"hd_id3150792\n"
+"autoformat.xhp\n"
+"par_id3151242\n"
+"27\n"
"help.text"
-msgid "<variable id=\"datapilot_filtertable\"><link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Filtering Pivot Tables\">Filtering Pivot Tables</link></variable>"
-msgstr "<variable id=\"datapilot_filtertable\"><link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Filtering DataPilot Tables\">Gabateewwan DataPilot Gingilchuu</link></variable>"
+msgid "To select which properties to include in an AutoFormat, click <emph>More</emph>."
+msgstr "Amaloota kam akka dhangii ufmaatti dabaltu filachuuf,<emph>Dabalata</emph> cuqaasi."
-#: datapilot_filtertable.xhp
-#, fuzzy
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id3153192\n"
+"autoformat.xhp\n"
+"par_idN10715\n"
"help.text"
-msgid "You can use filters to remove unwanted data from a pivot table."
-msgstr "Gingilchaawwan fayyadamtee deetaa hin barbaachifne gabatee DataPilot irraa haquu dandeessa."
+msgid "Click <emph>OK</emph>."
+msgstr "<emph>TOLE</emph> cuqaasi."
-#: datapilot_filtertable.xhp
-#, fuzzy
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id3150441\n"
+"autoformat.xhp\n"
+"par_idN1075D\n"
"help.text"
-msgid "Click the <emph>Filter</emph> button in the sheet to call up the dialog for the filter conditions. Alternatively, call up the context menu of the pivot table and select the <emph>Filter</emph> command. The <link href=\"text/scalc/01/12090103.xhp\" name=\"Filter\"><emph>Filter</emph></link> dialog appears. Here you can filter the pivot table."
-msgstr "Qabduu <emph>Gingilchi</emph> wardii keessaa qaaqa haalleen gingilchaatiif waamuuf cuqaasi. Karaa biraa, baafata haallee gabatee DataPilot waamiitii ajaja <emph>Gingilchi</emph> filadhu. Qaaqni <link href=\"text/scalc/01/12090103.xhp\" name=\"Filter\"><emph>Gingilchi</emph></link> ni mul'ata. Asittti gabatee DataPilot gingilchuu dandeessa."
+msgid "The format is applied to the selected range of cells."
+msgstr "Dhangiin hammanga maadheelee filatamaniitti ni raawwata."
-#: datapilot_filtertable.xhp
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id315044199\n"
+"autoformat.xhp\n"
+"par_id3149210\n"
+"14\n"
"help.text"
-msgid "You can also click the arrow on a button in the pivot table to show a pop-up window. In this pop-up window, you can edit the visibility settings of the associated field."
-msgstr ""
+msgid "If you do not see any change in color of the cell contents, choose <item type=\"menuitem\">View - Value Highlighting</item>."
+msgstr "Yoo jijjiirama halluu qabiyyeewwan man'ee homaayyuu hin agartu ta'e,<item type=\"menuitem\">Argi - Gatii Shooluu</item> filadhu."
-#: datapilot_filtertable.xhp
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344485\n"
+"autoformat.xhp\n"
+"par_id3155379\n"
+"22\n"
"help.text"
-msgid "The pop-up window displays a list of field members associated with that field. A check box is placed to the left of each field member name. When a field has an alternative display name that differs from its original name, that name is displayed in the list."
-msgstr ""
+msgid "To Define an AutoFormat for Spreadsheets"
+msgstr "Wardiileef Dhangii Ofmaa Ibsuuf"
-#: datapilot_filtertable.xhp
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344449\n"
+"autoformat.xhp\n"
+"par_id3148868\n"
+"26\n"
"help.text"
-msgid "Enable or disable a checkbox to show or hide the associated field member in the pivot table."
-msgstr ""
+msgid "You can define a new AutoFormat that is available to all spreadsheets."
+msgstr "Dhangii ufmaa haaraa kan wardiilee hundaaf ta'u qindeessuu dandeessa."
-#: datapilot_filtertable.xhp
-#, fuzzy
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344493\n"
+"autoformat.xhp\n"
+"par_id3152985\n"
+"23\n"
"help.text"
-msgid "Enable or disable the <emph>All</emph> checkbox to show all or none of the field members."
-msgstr "Faayilii akka geessituu ammaatti saaguuf sanduuqa filannoo, <emph>faayiliitti kornyeessi</emph> akka hajjatuu taasiisi."
+msgid "Format a sheet."
+msgstr "Wardii dhangeessi"
-#: datapilot_filtertable.xhp
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344431\n"
+"autoformat.xhp\n"
+"par_id3145384\n"
+"24\n"
"help.text"
-msgid "Select a field member in the pop-up window and click the <item type=\"menuitem\">Show only the current item</item> button to show only the selected field member. All other field members are hidden in the pivot table."
-msgstr ""
+msgid "Choose <item type=\"menuitem\">Edit - Select All</item>."
+msgstr "<item type=\"menuitem\">Gulaali - Hunda Filadhu</item> fili."
-#: datapilot_filtertable.xhp
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344484\n"
+"autoformat.xhp\n"
+"par_id3153815\n"
+"25\n"
"help.text"
-msgid "Select a field member in the pop-up window and click the <item type=\"menuitem\">Hide only the current item</item> button to hide only the selected field member. All other field members are shown in the pivot table."
-msgstr ""
+msgid "Choose <item type=\"menuitem\">Format - AutoFormat</item>."
+msgstr "<item type=\"menuitem\">Dhangii - Ufmaan dhangeessi</item>."
-#: datapilot_filtertable.xhp
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344578\n"
+"autoformat.xhp\n"
+"par_idN107A9\n"
"help.text"
-msgid "Commands enable you to sort the field members in ascending order, descending order, or using a custom sort list."
-msgstr ""
+msgid "Click <emph>Add</emph>."
+msgstr "<emph>Dabali</emph> cuqaasi."
-#: datapilot_filtertable.xhp
-#, fuzzy
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344584\n"
+"autoformat.xhp\n"
+"par_idN10760\n"
"help.text"
-msgid "To edit the custom sort lists, open <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists."
-msgstr "Galmee <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 wajjin filiitii Tab dhiibi"
+msgid "In the <emph>Name</emph> box of the <emph>Add AutoFormat</emph> dialog, enter a name for the format."
+msgstr "Sanduuqa <emph>Maqaa</emph> qaaqa <emph>dhangii ufmaa dabali</emph> keessatti, dhangiif maqaa galchi."
-#: datapilot_filtertable.xhp
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344811\n"
+"autoformat.xhp\n"
+"par_idN107C3\n"
"help.text"
-msgid "The arrow to open the pop-up window is normally black. When the field contains one or more hidden field members, the arrow is blue and displays a tiny square at its lower-right corner."
-msgstr ""
+msgid "Click <emph>OK</emph>."
+msgstr "<emph>TOLE</emph> cuqaasi."
-#: datapilot_filtertable.xhp
-#, fuzzy
+#: autoformat.xhp
msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344884\n"
+"autoformat.xhp\n"
+"par_id3159203\n"
+"28\n"
"help.text"
-msgid "You can also open the pop-up window by positioning the cell cursor at the button and pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+D."
-msgstr "Itti dabaltees fuula Gargaarsaa keessatti cuqaasuu dandeessa achiin <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F dhiibi."
+msgid "<link href=\"text/scalc/01/05110000.xhp\" name=\"Format - AutoFormat\">Format - AutoFormat</link>"
+msgstr "<link href=\"text/scalc/01/05110000.xhp\" name=\"Format - AutoFormat\">Dhangii - Ufmaan dhangeessi</link>"
-#: table_rotate.xhp
+#: background.xhp
msgctxt ""
-"table_rotate.xhp\n"
+"background.xhp\n"
"tit\n"
"help.text"
-msgid "Rotating Tables (Transposing)"
-msgstr "Gabateewwan Naannessuu(Transposing)"
+msgid "Defining Background Colors or Background Graphics"
+msgstr "Halluuwwan yookiin saxaatoo duubee qindeessuu"
-#: table_rotate.xhp
+#: background.xhp
msgctxt ""
-"table_rotate.xhp\n"
-"bm_id3154346\n"
+"background.xhp\n"
+"bm_id3149346\n"
"help.text"
-msgid "<bookmark_value>tables; transposing</bookmark_value><bookmark_value>transposing tables</bookmark_value><bookmark_value>inverting tables</bookmark_value><bookmark_value>swapping tables</bookmark_value><bookmark_value>columns; swap with rows</bookmark_value><bookmark_value>rows; swapping with columns</bookmark_value><bookmark_value>tables; rotating</bookmark_value><bookmark_value>rotating; tables</bookmark_value>"
-msgstr "<bookmark_value>gabateewwan; naannessuu</bookmark_value><bookmark_value>gabateewwan naannessuu</bookmark_value><bookmark_value>gabateewwan garagalchuu</bookmark_value><bookmark_value>gabateewwan wal jala fuudhuu</bookmark_value><bookmark_value>sarjaawwan; tarreewwaniin wal jala fuudhuu</bookmark_value><bookmark_value>tarreewwan; sarjaawwaniin wal jala fuudhuu</bookmark_value><bookmark_value>gabateewwan; rotating</bookmark_value><bookmark_value>naannessuu; gabateewwan</bookmark_value>"
+msgid "<bookmark_value>spreadsheets; backgrounds</bookmark_value> <bookmark_value>backgrounds;cell ranges</bookmark_value> <bookmark_value>tables; backgrounds</bookmark_value> <bookmark_value>cells; backgrounds</bookmark_value> <bookmark_value>rows, see also cells</bookmark_value> <bookmark_value>columns, see also cells</bookmark_value>"
+msgstr "<bookmark_value>wardiilee; duubeewwan</bookmark_value> <bookmark_value>duubeewwan;hammangaawwan man'ee</bookmark_value> <bookmark_value>gabateewwan; duubeewwan</bookmark_value> <bookmark_value>man'eelee; duubeewwan</bookmark_value> <bookmark_value>tarreewwan, man'eewwanis ilaali</bookmark_value> <bookmark_value>tarjaalee, man'eewwanis ilaali</bookmark_value>"
-#: table_rotate.xhp
+#: background.xhp
msgctxt ""
-"table_rotate.xhp\n"
-"hd_id3154346\n"
+"background.xhp\n"
+"hd_id3149346\n"
"1\n"
"help.text"
-msgid "<variable id=\"table_rotate\"><link href=\"text/scalc/guide/table_rotate.xhp\" name=\"Rotating Tables (Transposing)\">Rotating Tables (Transposing)</link></variable>"
-msgstr "<variable id=\"table_rotate\"><link href=\"text/scalc/guide/table_rotate.xhp\" name=\"Rotating Tables (Transposing)\">Gabateewwan Naannessuu(Transposing)</link></variable>"
-
-#: table_rotate.xhp
-msgctxt ""
-"table_rotate.xhp\n"
-"par_id3154013\n"
-"2\n"
-"help.text"
-msgid "In $[officename] Calc, there is a way to \"rotate\" a spreadsheet so that rows become columns and columns become rows."
-msgstr "$[officename] Calc keessatti, wardii akka tarreewwan gara sarjaawwan fi sarjaawwan gara tarreewwanii jijjiiraman karaan \"naannessuu\" ni jira."
-
-#: table_rotate.xhp
-msgctxt ""
-"table_rotate.xhp\n"
-"par_id3153142\n"
-"3\n"
-"help.text"
-msgid "Select the cell range that you want to transpose."
-msgstr "Hammangaa maadhee kan naannessuu barbaadde filadhu."
-
-#: table_rotate.xhp
-msgctxt ""
-"table_rotate.xhp\n"
-"par_id3153191\n"
-"4\n"
-"help.text"
-msgid "Choose <emph>Edit - Cut</emph>."
-msgstr "<emph>Gulaali - Muri</emph> filadhu."
+msgid "<variable id=\"background\"><link href=\"text/scalc/guide/background.xhp\" name=\"Defining Background Colors or Background Graphics\">Defining Background Colors or Background Graphics</link></variable>"
+msgstr "<variable id=\"background\"><link href=\"text/scalc/guide/background.xhp\" name=\"Defining Background Colors or Background Graphics\">Halluuwwan Duubbee ykn Saxaatoo Duubbee Ibsuu</link></variable>"
-#: table_rotate.xhp
+#: background.xhp
msgctxt ""
-"table_rotate.xhp\n"
-"par_id3148575\n"
-"6\n"
+"background.xhp\n"
+"par_id9520249\n"
"help.text"
-msgid "Click the cell that is to be the top left cell in the result."
-msgstr "Maadhee gubbaa bitaa maadhee bu'aa keessaa ta'u cuqaasi."
+msgid "You can define a background color or use a graphic as a background for cell ranges in $[officename] Calc."
+msgstr "Halluu duubee qindeessuu yookiin saxaatoo akka duubeetti hammangaawwan man'eetiif $[officename] Calc keessatti fayyadamuu dandeessa."
-#: table_rotate.xhp
+#: background.xhp
msgctxt ""
-"table_rotate.xhp\n"
-"par_id3156286\n"
-"7\n"
+"background.xhp\n"
+"hd_id3144760\n"
+"16\n"
"help.text"
-msgid "Choose <emph>Edit - Paste Special</emph>."
-msgstr "<emph>Gulaali - Adda Maxxansi</emph>."
+msgid "Applying a Background Color to a $[officename] Calc Spreadsheet"
+msgstr "Halluu duubee wardii $[officename] Calc dhaaf raawwachuu"
-#: table_rotate.xhp
+#: background.xhp
msgctxt ""
-"table_rotate.xhp\n"
-"par_id3144764\n"
-"8\n"
+"background.xhp\n"
+"par_id3155429\n"
+"17\n"
"help.text"
-msgid "In the dialog, mark <emph>Paste all</emph> and <emph>Transpose</emph>."
-msgstr "Qaaqa keessatti, <emph>Hunda Maxxansi</emph> fi <emph>Geeddari</emph> malkateessi."
+msgid "Select the cells."
+msgstr "Maadheelee filadhu."
-#: table_rotate.xhp
+#: background.xhp
msgctxt ""
-"table_rotate.xhp\n"
-"par_id3155600\n"
-"9\n"
+"background.xhp\n"
+"par_id3149260\n"
+"18\n"
"help.text"
-msgid "If you now click OK the columns and rows are transposed."
-msgstr "Yoo amma TOLE cuqaaste sarjaawwanii fi tarreewwan ni naanna'u."
+msgid "Choose <emph>Format - Cells</emph> (or <emph>Format Cells</emph> from the context menu)."
+msgstr "<emph>Dhangii - Man'eelee</emph> (yookiin <emph>Man'eelee dhangeessi</emph> baafata haallee irraa) filadhu."
-#: table_rotate.xhp
+#: background.xhp
msgctxt ""
-"table_rotate.xhp\n"
-"par_id3146969\n"
-"10\n"
+"background.xhp\n"
+"par_id3152938\n"
+"19\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\">Adda Maxxansi</link>"
+msgid "On the <emph>Background</emph> tab page, select the background color."
+msgstr "Fuula caancala <emph>Duubee</emph> irratti,halluu duubee filadhu."
-#: webquery.xhp
+#: background.xhp
msgctxt ""
-"webquery.xhp\n"
-"tit\n"
+"background.xhp\n"
+"hd_id3146974\n"
+"20\n"
"help.text"
-msgid "Inserting External Data in Table (WebQuery)"
-msgstr "Deetaa alaa gabatee keessatti saaguu(GaafataSaaphaphuu)"
+msgid "Graphics in the Background of Cells"
+msgstr "Saxaatoo duubee maadheelee keessatti"
-#: webquery.xhp
+#: background.xhp
msgctxt ""
-"webquery.xhp\n"
-"bm_id3154346\n"
+"background.xhp\n"
+"par_id3155414\n"
+"21\n"
"help.text"
-msgid "<bookmark_value>HTML WebQuery</bookmark_value><bookmark_value>ranges; inserting in tables</bookmark_value><bookmark_value>external data; inserting</bookmark_value><bookmark_value>tables; inserting external data</bookmark_value><bookmark_value>web pages; importing data</bookmark_value><bookmark_value>WebQuery filter</bookmark_value><bookmark_value>inserting; external data</bookmark_value><bookmark_value>data sources; external data</bookmark_value>"
-msgstr "<bookmark_value>GaafataSaaphaphuu HTML</bookmark_value><bookmark_value>hammangaawwan; gabateewwan keessatti saaguu</bookmark_value><bookmark_value>deetaa alaa; saaguu</bookmark_value><bookmark_value>gabateewwan; deetaa alaa saaguu</bookmark_value><bookmark_value>fuulota saaphaphuu; deetaa alaaguu</bookmark_value><bookmark_value>gingilcha GaafataSaaphaphuu</bookmark_value><bookmark_value>saaguu; deetaa alaa</bookmark_value><bookmark_value>maddeen deetaa; deetaa alaa</bookmark_value>"
+msgid "Choose <emph>Insert - Picture - From File</emph>."
+msgstr "<emph>Saagi - Fakkii - Faayilii irraa</emph> fili."
-#: webquery.xhp
+#: background.xhp
msgctxt ""
-"webquery.xhp\n"
-"hd_id3125863\n"
-"2\n"
+"background.xhp\n"
+"par_id3149664\n"
+"22\n"
"help.text"
-msgid "<variable id=\"webquery\"><link href=\"text/scalc/guide/webquery.xhp\" name=\"Inserting External Data in Table (WebQuery)\">Inserting External Data in Table (WebQuery)</link></variable>"
-msgstr "<variable id=\"webquery\"><link href=\"text/scalc/guide/webquery.xhp\" name=\"Inserting External Data in Table (WebQuery)\">Deetaa alaa gabatee keessatti saaguu (GaafataSaaphaphuu)</link></variable>"
+msgid "Select the graphic and click <emph>Open</emph>."
+msgstr "Saxaatoo filiitii <emph>Bani</emph> cuqaasi."
-#: webquery.xhp
+#: background.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3155131\n"
-"3\n"
+"background.xhp\n"
+"par_id3153575\n"
+"23\n"
"help.text"
-msgid "With the help of the <emph>Web Page Query ($[officename] Calc)</emph> import filter, you can insert tables from HTML documents in a Calc spreadsheet."
-msgstr "Gingilcha alaaguu <emph>Gaafata fuula saaphaphuu ($[officename] Calc)</emph> fayyadamuudhaan, gabateewwan galmee HTML irraa wardii Calc keessaa saaguu dandeessa."
+msgid "The graphic is inserted anchored to the current cell. You can move and scale the graphic as you want. In your context menu you can use the <emph>Arrange - To Background</emph> command to place this in the background. To select a graphic that has been placed in the background, use the <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link></caseinline><defaultinline>Navigator</defaultinline></switchinline>."
+msgstr "Saxaatoon man'ee ammaatti hidhameetu saagama. Saxaatoo akka barbaaddetti deemsisuu fi bal'isuu dandeessa. Baafata halqaraa kee keessatti kana duubee keessa kaa'uuf ajaja <emph>Qindeessi - Duubbeetti</emph> fayyadamuu dandeessa. Saxaatoo duubee keessa kaa'amee ture filachuuf, <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Naannessaa</link></caseinline><defaultinline>Naannessaa</defaultinline></switchinline> fayyadami."
-#: webquery.xhp
+#: background.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3148575\n"
-"4\n"
+"background.xhp\n"
+"par_id51576\n"
"help.text"
-msgid "You can use the same method to insert ranges defined by name from a Calc or Microsoft Excel spreadsheet."
-msgstr "Hammanga murtaa'e maqaadhaan Calc yookiin wardii Microsoft Excel irraa saaguuf mala sanumatti fayyadamuu dandeessa."
+msgid "<link href=\"text/shared/guide/background.xhp\">Watermarks</link>"
+msgstr "<link href=\"text/shared/guide/background.xhp\">saxaatoo golgolaa'oo</link>"
-#: webquery.xhp
+#: background.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3149664\n"
-"5\n"
+"background.xhp\n"
+"par_id3156180\n"
+"30\n"
"help.text"
-msgid "The following insert methods are available:"
-msgstr "Malli saaguu armaan gadii ni jiru:"
+msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Background tab page\"><emph>Background</emph> tab page</link>"
+msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Background tab page\">Fuula caancala<emph>Duubee</emph></link>"
-#: webquery.xhp
+#: background.xhp
msgctxt ""
-"webquery.xhp\n"
-"hd_id3146976\n"
-"6\n"
+"background.xhp\n"
+"par_id7601245\n"
"help.text"
-msgid "Inserting by Dialog"
-msgstr "Qaaqaan saaguu"
+msgid "<link href=\"text/scalc/guide/format_table.xhp\">Formatting Spreadsheets</link>"
+msgstr "<link href=\"text/scalc/guide/format_table.xhp\">Wardiilee dhangeessuu</link>"
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3154319\n"
-"7\n"
+"borders.xhp\n"
+"tit\n"
"help.text"
-msgid "Set the cell cursor at the cell where the new content will be inserted."
-msgstr "Qaree maadhee bakka qabiyyeen haaraa saagamutti kaa'a."
+msgid "User Defined Borders in Cells"
+msgstr "Handaarawwan man'ee keessatti fayyadamaan qindaa'an"
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3145750\n"
-"8\n"
+"borders.xhp\n"
+"bm_id3457441\n"
"help.text"
-msgid "Choose <emph>Insert - Link to External Data</emph>. This opens the <link href=\"text/scalc/01/04090000.xhp\">External Data</link> dialog."
-msgstr "<emph>Saagi - Geessituu gara deetaa alaa</emph> filadhu. Kun qaaqa <link href=\"text/scalc/01/04090000.xhp\">Deetaa Alaa</link> bana."
+msgid "<bookmark_value>cells;borders</bookmark_value> <bookmark_value>line arrangements with cells</bookmark_value> <bookmark_value>borders;cells</bookmark_value>"
+msgstr "<bookmark_value>man'eelee;handaarawwan</bookmark_value> <bookmark_value>sirreessa sararaaa;man'eelee</bookmark_value> <bookmark_value>handaarawwan;man'eelee</bookmark_value>"
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3149958\n"
-"9\n"
+"borders.xhp\n"
+"hd_id4544816\n"
"help.text"
-msgid "Enter the URL of the HTML document or the name of the spreadsheet. Press Enter when finished. Click the <emph>...</emph> button to open a file selection dialog."
-msgstr "URL galmee HTML yookiin maqaa wardii galchi.Yeroo dhumu Enter tuqi.Qaaqa filannoo faayilii banuuf qabduu <emph>...</emph> cuqaasi."
+msgid "<variable id=\"borders\"><link href=\"text/scalc/guide/borders.xhp\">User Defined Borders in Cells</link></variable>"
+msgstr "<variable id=\"borders\"><link href=\"text/scalc/guide/borders.xhp\">Handaarawwan maadhee keessatti fayyadamaan qindaa'an</link></variable>"
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3149400\n"
-"10\n"
+"borders.xhp\n"
+"par_id2320017\n"
"help.text"
-msgid "In the large list box of the dialog, select the named ranges or tables you want to insert."
-msgstr "Sanduuqa tarree guddaa kan qaaqaa keessatti,hammangaawwan mogga'an yookiin gabateewwan saaguu barbaaddu filadhu."
+msgid "You can apply a variety of different lines to selected cells."
+msgstr "Gosa sararoota addaa addaa man'eelee filatamanitti raawwachuu ni dandeessa."
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3155064\n"
-"11\n"
+"borders.xhp\n"
+"par_id8055665\n"
"help.text"
-msgid "You can also specify that the ranges or tables are updated every n seconds."
-msgstr "Hammangaawwan yookiin gabateewwan akka hoggayyuu sekondiiwwan n keessatti fooyya'an ifteessuus ni dandeessa."
+msgid "Select the cell or a block of cells."
+msgstr "Maadhee yookiin garee maadhee filadhu."
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3155443\n"
-"30\n"
+"borders.xhp\n"
+"par_id9181188\n"
"help.text"
-msgid "The import filter can create names for cell ranges on the fly. As much formatting as possible is retained, while the filter intentionally does not load any images."
-msgstr "Gingilchi alaaguu maqaalee hammangaawwan man'eetiif uumuu danda'a.Dhangeessi amma danda'amu ni qabatama,gingilchi garuu beekuma fakkii homaayyuu hin fe'u."
+msgid "Choose <item type=\"menuitem\">Format - Cells</item>."
+msgstr "<item type=\"menuitem\">Dhangii - man'eelee</item> fili."
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"hd_id3149021\n"
-"12\n"
+"borders.xhp\n"
+"par_id9947508\n"
"help.text"
-msgid "Inserting by Navigator"
-msgstr "Naannessaadhaan saaguu"
+msgid "In the dialog, click the <emph>Borders</emph> tab."
+msgstr "Qaaqa keessatti, caancala <emph>Handaarawwan</emph> cuqaasi."
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3153965\n"
-"14\n"
+"borders.xhp\n"
+"par_id7907956\n"
"help.text"
-msgid "Open two documents: the $[officename] Calc spreadsheet in which the external data is to be inserted (target document) and the document from which the external data derives (source document)."
-msgstr "Galmeelee lama bani:wardii $[officename] Calc kan deetaan alaa keessatti saagamuuf jedhu(galmee galtee) fi galmee kan deetaan alaa irraa ba'u(galmee maddaa)"
+msgid "Choose the border options you want to apply and click OK."
+msgstr "Dirqaalaalee handaaraa raawwachuuf barbaaddu filiitii TOLE cuqaasi."
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3150205\n"
-"16\n"
+"borders.xhp\n"
+"par_id1342204\n"
"help.text"
-msgid "In the target document open the Navigator."
-msgstr "Galmee galtee keessaa naannessa bani"
+msgid "The options in the <emph>Line arrangement</emph> area can be used to apply multiple border styles."
+msgstr "Dirqaalaaleen bal'ina <emph>sirreessa sararaa</emph> keessaa haalata handaaraa baay'ee raawwachuu danda'u."
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3152990\n"
-"18\n"
+"borders.xhp\n"
+"hd_id4454481\n"
"help.text"
-msgid "In the lower combo box of the Navigator select the source document. The Navigator now shows the range names and database ranges or the tables contained in the source document."
-msgstr "Sanduuqa makaa naannessaa gadii keessaa galmee maddaa filadhu.Naannessi amma maqaalee hammangaa fi hammangaawwan kuusaa deetaa yookiin gabateewwan galmee maddaa keessa jiran agarsiisa."
+msgid "Selection of cells"
+msgstr "Filannoo man'eelee"
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3148842\n"
-"20\n"
+"borders.xhp\n"
+"par_id7251503\n"
"help.text"
-msgid "In the Navigator select the <emph>Insert as link</emph> drag mode <image id=\"img_id3152985\" src=\"sw/imglst/sc20238.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152985\">Icon</alt></image>."
-msgstr "Naannessa keessatti <emph>akkasitti saagi link</emph> haalata harkisaa <image id=\"img_id3152985\" src=\"sw/imglst/sc20238.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152985\">Sajoo</alt></image> filadhu."
+msgid "Depending on the selection of cells, the area looks different."
+msgstr "Filannoo man'eelee irratti hundaa'uudhaan, bal'inni adda adda ta'a."
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3157978\n"
-"22\n"
+"borders.xhp\n"
+"par_id8716696\n"
"help.text"
-msgid "Drag the desired external data from the Navigator into the target document."
-msgstr "Deetaa alaa feete naannessa irraa gara galmee galteetti harkisi."
+msgid "Selection"
+msgstr "Filannoo"
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3144768\n"
-"23\n"
+"borders.xhp\n"
+"par_id4677877\n"
"help.text"
-msgid "If you have loaded an HTML document with the <emph>Web Page Query</emph> filter as the source document, you will find the tables in the Navigator, named continuously from \"HTML_table1\" onwards, and also two range names that have been created:"
-msgstr "Yoo galmee HTML gingilcha <emph>Gaafata teessoo saaphaphuu</emph> wajjin akka galmee maddaatti feetee jiraatte,gabateewwan naannessa keessatti itti fufaan \"HTML_gabatee1\" irraa kaasanii kan mogga'an , akkasumas maqoota hammanga lamaa kan uumamanii turan agarta."
+msgid "Line arrangement area"
+msgstr "Bal'ina sirreessa sararaa"
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3152873\n"
-"24\n"
+"borders.xhp\n"
+"par_id807824\n"
"help.text"
-msgid "<item type=\"literal\">HTML_all</item> - designates the entire document"
-msgstr "<item type=\"literal\">HTML_hunda</item> - galmee hunda agarsiisa"
+msgid "One cell"
+msgstr "Man'ee tokko"
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3149897\n"
-"25\n"
+"borders.xhp\n"
+"par_id8473464\n"
"help.text"
-msgid "<item type=\"literal\">HTML_tables</item> - designates all HTML tables in the document"
-msgstr "<item type=\"literal\">Gabateewwan_HTML</item> - gabateewwan HTML hunda galmee keessa jiran agarsiisa"
+msgid "<image id=\"img_id1737113\" src=\"res/helpimg/border_ca_1.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1737113\">borders with one cell selected</alt></image>"
+msgstr "<image id=\"img_id1737113\" src=\"res/helpimg/border_ca_1.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1737113\">handaarawwan kan man'een tokko filatame</alt></image>"
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"hd_id3149126\n"
-"26\n"
+"borders.xhp\n"
+"par_id3509933\n"
"help.text"
-msgid "Editing the external data"
-msgstr "Deetaa alaa gulaaluu"
+msgid "Cells in a column"
+msgstr "Maadheelee sarjaa keessaa"
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3159228\n"
-"27\n"
+"borders.xhp\n"
+"par_id6635639\n"
"help.text"
-msgid "Open <emph>Edit - Links</emph>. Here you can edit the link to the external data."
-msgstr "<emph>Gulaali - Geessituu</emph> bani. Asitti geessituu gara deetaa alaa gulaaluu dandeessa."
+msgid "<image id=\"img_id1680959\" src=\"res/helpimg/border_ca_2.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1680959\">borders with a column selected</alt></image>"
+msgstr "<image id=\"img_id1680959\" src=\"res/helpimg/border_ca_2.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1680959\">handaarawwan kan sarjaan filatame</alt></image>"
-#: webquery.xhp
+#: borders.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3154650\n"
-"28\n"
+"borders.xhp\n"
+"par_id8073366\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External data dialog\">External data dialog</link>"
-msgstr "<link href=\"text/scalc/01/04090000.xhp\" name=\"External data dialog\">Qaaqa deetaa alaa</link>"
+msgid "Cells in a row"
+msgstr "Maadheelee tarree keessaa"
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"tit\n"
+"borders.xhp\n"
+"par_id6054567\n"
"help.text"
-msgid "Only Copy Visible Cells"
-msgstr "Maadheele mul'atana qofa garagalchi"
+msgid "<image id=\"img_id9623096\" src=\"res/helpimg/border_ca_3.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id9623096\">borders with a row selected</alt></image>"
+msgstr "<image id=\"img_id9623096\" src=\"res/helpimg/border_ca_3.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id9623096\">handaarawwan kan tarreen filatame</alt></image>"
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"bm_id3150440\n"
+"borders.xhp\n"
+"par_id466322\n"
"help.text"
-msgid "<bookmark_value>cells; copying/deleting/formatting/moving</bookmark_value> <bookmark_value>rows;visible and invisible</bookmark_value> <bookmark_value>copying; visible cells only</bookmark_value> <bookmark_value>formatting;visible cells only</bookmark_value> <bookmark_value>moving;visible cells only</bookmark_value> <bookmark_value>deleting;visible cells only</bookmark_value> <bookmark_value>invisible cells</bookmark_value> <bookmark_value>filters;copying visible cells only</bookmark_value> <bookmark_value>hidden cells</bookmark_value>"
-msgstr "<bookmark_value>man'eelee; garagalchuu/haquu/dhangeessuu/deemsisuu</bookmark_value> <bookmark_value>tarreewwan;mul'ataa fi kan hin mul'anne</bookmark_value> <bookmark_value>garagalchuu; man'eelee mul'atan qofa</bookmark_value> <bookmark_value>dhangeessuu;man'eelee mul'atan qofa</bookmark_value> <bookmark_value>deemsisuu;man'eelee mul'atan qofa</bookmark_value> <bookmark_value>haquu;man'eelee mul'atan qofa</bookmark_value> <bookmark_value>man'eelee hin mul'anne</bookmark_value> <bookmark_value>gingilchoota;man'eelee mul'atan qofa garagalchuu</bookmark_value> <bookmark_value>man'eelee dhokatoo</bookmark_value>"
+msgid "Cells in a block of 2x2 or more"
+msgstr "Madheelee garee 2x2 yookiin ol"
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"hd_id3150440\n"
-"1\n"
+"borders.xhp\n"
+"par_id4511551\n"
"help.text"
-msgid "<variable id=\"cellcopy\"><link href=\"text/scalc/guide/cellcopy.xhp\" name=\"Only Copy Visible Cells\">Only Copy Visible Cells</link></variable>"
-msgstr "<variable id=\"cellcopy\"><link href=\"text/scalc/guide/cellcopy.xhp\" name=\"Only Copy Visible Cells\">Maadheele mul'atana qofa garagalchi</link></variable>"
+msgid "<image id=\"img_id8139591\" src=\"res/helpimg/border_ca_4.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id8139591\">borders with a block selected</alt></image>"
+msgstr "<image id=\"img_id8139591\" src=\"res/helpimg/border_ca_4.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id8139591\">handaarawwan kan gareen filatame</alt></image>"
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"par_id3148577\n"
-"2\n"
+"borders.xhp\n"
+"par_id5383465\n"
"help.text"
-msgid "Assume you have hidden a few rows in a cell range. Now you want to copy, delete, or format only the remaining visible rows."
-msgstr "Akka tarreewwan muraasa hammanga man'ee keessatti dhoksitetti yaadi.Amma tarreewwan mul'atoo hafan qofa garagalchuu,haquu, yookiin dhangeessuu barbaadda."
+msgid "You cannot apply borders to multiple selections."
+msgstr "Handaarawwan filannoowwan baay'eef raawwachuu hin dandeessu."
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"par_id3154729\n"
-"3\n"
+"borders.xhp\n"
+"hd_id7790154\n"
"help.text"
-msgid "$[officename] behavior depends on how the cells were made invisible, by a filter or manually."
-msgstr "Amalli $[officename] akkaataa man'eeleen itti dhoksaman irratti hundaa'a,gingilchaan yookiin harkaan."
+msgid "Default Settings"
+msgstr "Qindaa'inoota Durtii"
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"par_id3155603\n"
-"4\n"
+"borders.xhp\n"
+"par_id2918485\n"
"help.text"
-msgid "Method and Action"
-msgstr "Malaa fi Gochaa"
+msgid "Click one of the <emph>Default</emph> icons to set or reset multiple borders."
+msgstr "Handaarawwan baay'ee qindeessuuf yookiin lamuu qindeessuuf sajoowwan <emph>Durtii</emph> keessaa tokko cuqaasi."
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"par_id3150751\n"
-"5\n"
+"borders.xhp\n"
+"par_id1836909\n"
"help.text"
-msgid "Result"
-msgstr "Bu'aa"
+msgid "The thin gray lines inside an icon show the borders that will be reset or cleared."
+msgstr "Sararootni dalachi qal'oon sajoo keessaa handaarawwan kan qindaa'an yookiin qulqullaa'an agarsiisu."
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"par_id3149018\n"
-"6\n"
+"borders.xhp\n"
+"par_id5212561\n"
"help.text"
-msgid "Cells were filtered by AutoFilters, standard filters or advanced filters."
-msgstr "Man'eeleen Gingilcha ufmaa,gingilcha durtii,yookiin gingilcha olaanaa dhaan gingilchamu."
+msgid "The dark lines inside an icon show the lines that will be set using the selected line style and color."
+msgstr "Sararootni dukkanaa'oon sajoo keessaa sararoota kan haalataa fi halluu filatamanitti fayyadamuudhaan qindaa'an yookiin qulqullaa'an garsiisu."
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"par_id3150044\n"
-"7\n"
+"borders.xhp\n"
+"par_id4818872\n"
"help.text"
-msgid "Copy, delete, move, or format a selection of currently visible cells."
-msgstr "Filannoo man'elee amma mul'atanii garagalchi,haqi,deemsisi, yookiin dhangeessi."
+msgid "The thick gray lines inside an icon show the lines that will not be changed."
+msgstr "Sararootni daalachi furdoon sajoo keessaa sararoota hin jijjiiramne garsiisu."
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"par_id3146918\n"
-"8\n"
+"borders.xhp\n"
+"hd_id8989226\n"
"help.text"
-msgid "Only the visible cells of the selection are copied, deleted, moved, or formatted."
-msgstr "Man'eelee mul'atoo filannichaa qofatu garagalchama,haqama,deemsifama, yookiin dhangeeffama."
+msgid "Examples"
+msgstr "Fakkeenyota"
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"par_id3166427\n"
-"12\n"
+"borders.xhp\n"
+"par_id622577\n"
"help.text"
-msgid "Cells were hidden using the <emph>Hide</emph> command in the context menu of the row or column headers, or through an <link href=\"text/scalc/01/12080000.xhp\" name=\"outline\">outline</link>."
-msgstr "Maadheeleen ajaja <emph>Dhoksi</emph> baafata haallee irraantoowwan tarree ykn sarjaa keessaatti fayyadamuudhaan, yookiin karaa <link href=\"text/scalc/01/12080000.xhp\" name=\"outline\">outline</link>dhoksamani."
+msgid "Select a block of about 8x8 cells, then choose <emph>Format - Cells - Borders</emph>."
+msgstr "Garee man'ee hanga 8x8 filadhu, achiin <emph>Dhangii - Man'eelee - Handaarawwan</emph> fili."
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"par_id3152990\n"
-"13\n"
+"borders.xhp\n"
+"par_id8119754\n"
"help.text"
-msgid "Copy, delete, move, or format a selection of currently visible cells."
-msgstr "Filannoo man'eelee amma mul'atanii garagalchi,haqi,deemsisi, yookiin dhangeessi."
+msgid "<image id=\"img_id7261268\" src=\"res/helpimg/border_ca_5.png\" width=\"1.0937in\" height=\"0.2189in\"><alt id=\"alt_id7261268\">default icon row of Borders tab page</alt></image>"
+msgstr "<image id=\"img_id7261268\" src=\"res/helpimg/border_ca_5.png\" width=\"1.0937in\" height=\"0.2189in\"><alt id=\"alt_id7261268\">tarree sajoo durtii kan fuula caancala handaarawwanii</alt></image>"
-#: cellcopy.xhp
+#: borders.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"par_id3154371\n"
-"14\n"
+"borders.xhp\n"
+"par_id8964201\n"
"help.text"
-msgid "All cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted."
-msgstr "Man'eeleen filannichaa marti,man'eelee dhokatan dabalatee,ni garagalchamu,haqamu,deemsifamu, yookiin dhangeeffamu."
+msgid "Click the left icon to clear all lines. This removes all outer borders, all inner lines, and all diagonal lines."
+msgstr "Sararoota hundaa qulqulleessuuf sajoo bitaa cuqaasi.Kun handaarawwan alaa hunda,sararoota keessaa hunda, akkasumas sararoota shaffaxaa hunda balleessa."
-#: datapilot_deletetable.xhp
-#, fuzzy
+#: borders.xhp
msgctxt ""
-"datapilot_deletetable.xhp\n"
-"tit\n"
+"borders.xhp\n"
+"par_id6048463\n"
"help.text"
-msgid "Deleting Pivot Tables"
-msgstr "Gabateewwan DataPilot uumuu"
+msgid "Click the second icon from the left to set an outer border and to remove all other lines."
+msgstr "Handaara alaa qindeessuu fi sararoota biroo hunda balleessuuf bitaa irraa sajoo isa lammaffaa cuqaasi."
-#: datapilot_deletetable.xhp
-#, fuzzy
+#: borders.xhp
msgctxt ""
-"datapilot_deletetable.xhp\n"
-"bm_id3153726\n"
+"borders.xhp\n"
+"par_id1495406\n"
"help.text"
-msgid "<bookmark_value>pivot table function; deleting tables</bookmark_value> <bookmark_value>deleting;pivot tables</bookmark_value>"
-msgstr "<bookmark_value>DataPilot function; deleting tables</bookmark_value> <bookmark_value>haquu; gabateewwan DataPilot</bookmark_value>"
+msgid "Click the rightmost icon to set an outer border. The inner lines are not changed, except the diagonal lines, which will be removed."
+msgstr "Handaara alaa qindeessuuf mirga dhuma irraa sajoo cuqaasi.Sararoota shaffaxaa, kan balleeffaman, malee sararootni keessaa hin jijjiiraman."
-#: datapilot_deletetable.xhp
-#, fuzzy
+#: borders.xhp
msgctxt ""
-"datapilot_deletetable.xhp\n"
-"hd_id3153726\n"
-"31\n"
+"borders.xhp\n"
+"par_id9269386\n"
"help.text"
-msgid "<variable id=\"datapilot_deletetable\"><link href=\"text/scalc/guide/datapilot_deletetable.xhp\" name=\"Deleting Pivot Tables\">Deleting Pivot Tables</link></variable>"
-msgstr "<variable id=\"datapilot_deletetable\"><link href=\"text/scalc/guide/datapilot_deletetable.xhp\" name=\"Deleting DataPilot Tables\">Gabateewwan DataPilot Haquu</link></variable>"
+msgid "Now you can continue to see which lines the other icons will set or remove."
+msgstr "Amma sararoota kam akka sajoowwan biroo qindeessan yookiin balleessan itti fuftee arguu dandeessa."
-#: datapilot_deletetable.xhp
-#, fuzzy
+#: borders.xhp
msgctxt ""
-"datapilot_deletetable.xhp\n"
-"par_id3154014\n"
-"32\n"
+"borders.xhp\n"
+"hd_id3593554\n"
"help.text"
-msgid "In order to delete a pivot table, click any cell in the pivot table, then choose <emph>Delete</emph> in the context menu."
-msgstr "Gabatee DataPilot haquuf,man'ee kamiyyuu gabatee DataPilot keeessaa filadhu, achiin <emph>Haqi</emph> baafata haallee keessaa fili."
+msgid "User Defined Settings"
+msgstr "Qindaa'inoota Fayyadamaan Ibsaman"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"tit\n"
+"borders.xhp\n"
+"par_id4018066\n"
"help.text"
-msgid "Converting Text to Numbers"
-msgstr "Barruu Lakkoofsotatti Geeddaruu"
+msgid "In the <emph>User defined</emph> area, you can click to set or remove individual lines. The preview shows lines in three different states."
+msgstr "Bal'ina <emph>Fayyadamaan qindaa'e</emph> keessatti,sararootaa dhuunfaa qindeessuuf yookiin balleessuuf cuqaasuu dandeessa."
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"bm_id3145068\n"
+"borders.xhp\n"
+"par_id8004699\n"
"help.text"
-msgid "<bookmark_value>formats; text as numbers</bookmark_value> <bookmark_value>time format conversion</bookmark_value> <bookmark_value>date formats;conversion</bookmark_value> <bookmark_value>converting;text, into numbers</bookmark_value>"
-msgstr ""
+msgid "Repeatedly click an edge or a corner to switch through the three different states."
+msgstr "Haala adda addaa sadii keessa walitti ceesisuuf deddeebisiitii qarree yookiin xiyyoo cuqaasi."
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"hd_id0908200901265171\n"
+"borders.xhp\n"
+"par_id8037659\n"
"help.text"
-msgid "<variable id=\"numbers_text\"><link href=\"text/scalc/guide/numbers_text.xhp\" name=\"Converting Text to Numbers\">Converting Text to Numbers</link></variable>"
-msgstr "<variable id=\"numbers_text\"><link href=\"text/scalc/guide/numbers_text.xhp\" name=\"Converting Text to Numbers\">Barruu Lakkoofsotatti Geeddaruu</link></variable>"
+msgid "Line types"
+msgstr "Gosoota sararaa"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265127\n"
+"borders.xhp\n"
+"par_id2305978\n"
"help.text"
-msgid "Calc converts text inside cells to the respective numeric values if an unambiguous conversion is possible. If no conversion is possible, Calc returns a #VALUE! error."
-msgstr "Geeddarumsi garlameelli yoo danda'ame Calc barruu man'ee keessaa gatiiwwan lakkoofsaa walsimanitti geeddara. Geeddarumsi kan hin danda'amne yoo tahe, Calc dogoggora #VALUE! kenna."
+msgid "Image"
+msgstr "Fakkii"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265196\n"
+"borders.xhp\n"
+"par_id8716086\n"
"help.text"
-msgid "Only integer numbers including exponent are converted, and ISO 8601 dates and times in their extended formats with separators. Anything else, like fractional numbers with decimal separators or dates other than ISO 8601, is not converted, as the text string would be locale dependent. Leading and trailing blanks are ignored."
-msgstr "Lakkoofsota inteegraa qofatu eksipoonentii dabalatanii geeddaramu, dabalatees guyyootaa fi yeroowwan ISO 8601 dhangiilee isaanii dheerataniin gargareessaawwan waliin. Diraan barruu gitoo biyyaatti waan hundaa'uuf, wantoonni biroo kamiyyuu, kan akka lakkoofsota eentaa gargareessaawwan kurnyee waliin ykn guyyoota ISO 8601n ala ta'an, ni geeddaramu. Iddoowwan duwwaan jalqabaa fi dhumaa ni tuffatamu."
+msgid "Meaning"
+msgstr "Hiikoo"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265220\n"
+"borders.xhp\n"
+"par_id3978087\n"
"help.text"
-msgid "The following ISO 8601 formats are converted:"
-msgstr "Dhangiileen ISO 8601 armaan gadii ni geeddaramu:"
+msgid "A black line"
+msgstr "Sarara gurraacha"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265288\n"
+"borders.xhp\n"
+"par_id4065065\n"
"help.text"
-msgid "CCYY-MM-DD"
-msgstr "CCYY-MM-DD"
+msgid "<image id=\"img_id9379863\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9379863\">solid line for user defined border</alt></image>"
+msgstr "<image id=\"img_id9379863\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9379863\">sarara jajjaboo handaarawwan fayyadamaan qindaa'aniif</alt></image>"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265267\n"
+"borders.xhp\n"
+"par_id6987823\n"
"help.text"
-msgid "CCYY-MM-DDThh:mm"
-msgstr "CCYY-MM-DDThh:mm"
+msgid "A black line sets the corresponding line of the selected cells. The line is shown as a dotted line when you choose the 0.05 pt line style. Double lines are shown when you select a double line style."
+msgstr "Sararri gurraachi gita sarara man'eelee filatamanii qindeessa.Sararri akka sarara tuqaatti yeroo haalata sararaa 0.05 pt filattu mul'ata.Sararootni dachaan kan mul'atan yeroo haalata dachaa filattu dha."
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265248\n"
+"borders.xhp\n"
+"par_id1209143\n"
"help.text"
-msgid "CCYY-MM-DDThh:mm:ss"
-msgstr "CCYY-MM-DDThh:mm:ss"
+msgid "A gray line"
+msgstr "Sarara daalacha"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265374\n"
+"borders.xhp\n"
+"par_id6653340\n"
"help.text"
-msgid "CCYY-MM-DDThh:mm:ss,s"
-msgstr "CCYY-MM-DDThh:mm:ss,s"
+msgid "<image id=\"img_id6972563\" src=\"res/helpimg/border_ca_gray.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id6972563\">gray line for user defined border</alt></image>"
+msgstr "<image id=\"img_id6972563\" src=\"res/helpimg/border_ca_gray.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id6972563\">sarara daalacha handaarawwan fayyadamaan qindaa'aniif</alt></image>"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265327\n"
+"borders.xhp\n"
+"par_id2278817\n"
"help.text"
-msgid "CCYY-MM-DDThh:mm:ss.s"
-msgstr "CCYY-MM-DDThh:mm:ss.s"
+msgid "A gray line is shown when the corresponding line of the selected cells will not be changed. No line will be set or removed at this position."
+msgstr "Sararri daalachi kan mul'atu yeroo gitni sarara man'eelee filatamanii hin jijjiiramne dha.Iddoo kanatti sararri homtuu hin qindaa'u yookiin balleeffamu."
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265399\n"
+"borders.xhp\n"
+"par_id5374919\n"
"help.text"
-msgid "hh:mm"
-msgstr "hh:mm"
+msgid "A white line"
+msgstr "Sarara adii"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265347\n"
+"borders.xhp\n"
+"par_id52491\n"
"help.text"
-msgid "hh:mm:ss"
-msgstr "hh:mm:ss"
+msgid "<image id=\"img_id3801080\" src=\"res/helpimg/border_ca_white.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id3801080\">white line for user defined border</alt></image>"
+msgstr "<image id=\"img_id3801080\" src=\"res/helpimg/border_ca_white.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id3801080\">sarara adii handaara fayyadamaan qindaa'eef</alt></image>"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265349\n"
+"borders.xhp\n"
+"par_id372325\n"
"help.text"
-msgid "hh:mm:ss,s"
-msgstr "hh:mm:ss,s"
+msgid "A white line is shown when the corresponding line of the selected cells will be removed."
+msgstr "Sararri adiin kan mul'atu yeroo gitni sarara maadheelee filatamaii balleeffamani dha."
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265342\n"
+"borders.xhp\n"
+"hd_id7282937\n"
"help.text"
-msgid "hh:mm:ss.s"
-msgstr "hh:mm:ss.s"
+msgid "Examples"
+msgstr "Fakkeenyota"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265491\n"
+"borders.xhp\n"
+"par_id4230780\n"
"help.text"
-msgid "The century code CC may not be omitted. Instead of the T date and time separator, exactly one space character may be used."
-msgstr "Lakkaddaan seencharii baduu danda'a. Qooda guyyaa T fi gargareessaa yeroo, arfii iddoo duwwaa tokkoo qofatu fayyadamuu danda'a."
+msgid "Select a single cell, then choose <emph>Format - Cells - Borders</emph>."
+msgstr "Man'ee qeenxee fili,achiin <emph>Dhangii - Man'eelee - Handaarawwan</emph> filadhu."
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265467\n"
+"borders.xhp\n"
+"par_id1712393\n"
"help.text"
-msgid "If a date is given, it must be a valid Gregorian calendar date. In this case the optional time must be in the range 00:00 to 23:59:59.99999..."
-msgstr "Guyyaan yoo kenname, guyyaa dhaha warra Awurooppa gataa'aa tahuu qaba. Haala kanaan yeroon dirqalee hangii 00:00 hanga 23:59:59.99999... keessa tahuu qaba."
+msgid "Click the lower edge to set a very thin line as a lower border. All other lines will be removed from the cell."
+msgstr "Sarara baay'ee haphii akka handaara gadiitti qindeessuuf qarree jalaa cuqaasi.Sararootni biroo hundi man'ee irraa balleeffamu."
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265420\n"
+"borders.xhp\n"
+"par_id5149693\n"
"help.text"
-msgid "If only a time string is given, it may have an hours value of more than 24, while minutes and seconds can have a maximum value of 59."
-msgstr "Diraan yeroo qofti yoo kan kenname tahe, daqiiqaawwanii fi sekoondiiwwan gatii olaantoo 59 qabaachuu yoo danda'an, gatii sa'aatii 24 ol qabaachuu danda'a."
+msgid "<image id=\"img_id9467452\" src=\"res/helpimg/border_ca_6.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9467452\">setting a thin lower border</alt></image>"
+msgstr "<image id=\"img_id9467452\" src=\"res/helpimg/border_ca_6.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9467452\">handaara haphii jalaa qindeessuu</alt></image>"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265448\n"
+"borders.xhp\n"
+"par_id5759453\n"
"help.text"
-msgid "The conversion is done for single arguments only, as in =A1+A2, or =\"1E2\"+1. Cell range arguments are not affected, so SUM(A1:A2) differs from A1+A2 if at least one of the two cells contain a convertible string."
-msgstr "Geeddarumsi kan adeemsifamu qajeelchota baaqqeef qofa tahuu danda'a, kan akka =A1+A2, ykn =\"1E2\"+1. Yoo xinnaate man'eewwan lamaan keessaa inni tokko diraa geeddaramaa kan ofkeessaa qabu yoo tahe qajeelchonni hangii man'ee hin miidhaman, kanaaf SUM(A1:A2) fi A1+A2 garaa gara."
+msgid "Choose a thicker line style and click the lower edge. This sets a thicker line as a lower border."
+msgstr "Haalata sararaa furdaa filiitii qarree jalaa cuqaasi.Kun sarara furdaa akka handaara furdaatti qindeessa."
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id090820090126540\n"
+"borders.xhp\n"
+"par_id6342051\n"
"help.text"
-msgid "Strings inside formulas are also converted, such as in =\"1999-11-22\"+42, which returns the date 42 days after November 22nd, 1999. Calculations involving localized dates as strings inside the formula return an error. For example, the localized date string \"11/22/1999\" or \"22.11.1999\" cannot be used for the automatic conversion."
-msgstr "Diraawwan foormulaawwan keessaa, kan akka =\"1999-11-22\"+42, Sadaasa 22, 1999 booda guyyaadhaaf guyyoota 42 kennan geeddara. Shallagni guyyoota biyyoomsaman akka diraawwan foormulaa keessaa dogoggora kenna. Fakkeenyaaf, diraan guyyaa biyyoome \"11/22/1999\" ykn \"22.11.1999\" geeddariinsa ofmaatiif fayyaduu hin danda'an."
+msgid "<image id=\"img_id7431562\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id7431562\">setting a thick line as a border</alt></image>"
+msgstr "<image id=\"img_id7431562\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id7431562\">sarara yabbuu akka handaaraatti qindeessuu</alt></image>"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"hd_id1005200903485368\n"
+"borders.xhp\n"
+"par_id5775322\n"
"help.text"
-msgid "Example"
-msgstr "Fakkeenyota"
+msgid "Click the second <emph>Default</emph> icon from the left to set all four borders. Then repeatedly click the lower edge until a white line is shown. This removes the lower border."
+msgstr "Handaarawwan afran hunda qindeessuuf sajoo <emph>Durtii</emph> lammaffaa bitaa irraa cuqaasi.Achiin qarree jalaa hanga sararri adii mul'atutti deddeebisiitii cuqaasi.Kun handaara jalaa balleessa."
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id1005200903485359\n"
+"borders.xhp\n"
+"par_id2882778\n"
"help.text"
-msgid "In A1 enter the text <item type=\"literal\">'1e2</item> (which is converted to the number 100 internally)."
-msgstr ""
+msgid "<image id=\"img_id8155766.00000001\" src=\"res/helpimg/border_ca_8.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id8155766.00000001\">removing lower border</alt></image>"
+msgstr "<image id=\"img_id8155766.00000001\" src=\"res/helpimg/border_ca_8.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id8155766.00000001\">handaara jalaa balleessuu</alt></image>"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id1005200903485341\n"
+"borders.xhp\n"
+"par_id8102053\n"
"help.text"
-msgid "In A2 enter <item type=\"literal\">=A1+1</item> (which correctly results in 101)."
-msgstr ""
+msgid "You can combine several line types and styles. The last image shows how to set thick outer borders (the thick black lines), while any diagonal lines inside the cell will not be touched (gray lines)."
+msgstr "Gosootaa fi haalata sararaa baay'ee walitti makuu dandeessa.Fakkiin dhumaa akkaataa handaarawwan alaa itti yabbiftu agarsiisu(sararoota gugurraacha yabbuu),sararootni shaffaxaa man'ee keessaa kamiyyuu immoo hin tuqamani(sararoota daalachoo)"
-#: numbers_text.xhp
+#: borders.xhp
msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265544\n"
+"borders.xhp\n"
+"par_id2102420\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
-msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Dhangii - Man'eewwan - Lakkoofsota</link>"
+msgid "<image id=\"img_id5380718\" src=\"res/helpimg/border_ca_9.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id5380718\">advanced example for cell borders</alt></image>"
+msgstr "<image id=\"img_id5380718\" src=\"res/helpimg/border_ca_9.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id5380718\">Fakkeenyota olaanoo handaarawwan man'eetiif</alt></image>"
-#: note_insert.xhp
+#: calc_date.xhp
msgctxt ""
-"note_insert.xhp\n"
+"calc_date.xhp\n"
"tit\n"
"help.text"
-msgid "Inserting and Editing Comments"
-msgstr "Yaadota Saaguu fi Gulaaluu"
+msgid "Calculating With Dates and Times"
+msgstr "Guyyootaa fi yeroodhaan shallaguu"
-#: note_insert.xhp
+#: calc_date.xhp
msgctxt ""
-"note_insert.xhp\n"
-"bm_id3153968\n"
+"calc_date.xhp\n"
+"bm_id3146120\n"
"help.text"
-msgid "<bookmark_value>comments; on cells</bookmark_value> <bookmark_value>cells;comments</bookmark_value> <bookmark_value>remarks on cells</bookmark_value> <bookmark_value>formatting;comments on cells</bookmark_value> <bookmark_value>viewing;comments on cells</bookmark_value> <bookmark_value>displaying; comments</bookmark_value>"
-msgstr "<bookmark_value>yaadota; man'eelee irra</bookmark_value><bookmark_value>man'eelee;yaadota</bookmark_value><bookmark_value>yaadota; man'eelee irra</bookmark_value><bookmark_value>yaadachiisa man'eelee irraa</bookmark_value><bookmark_value>dhangeessuu;yaadota man'eelee irraa</bookmark_value><bookmark_value>arguu;yaadota man'eelee irraa</bookmark_value>"
+msgid "<bookmark_value>dates; in cells</bookmark_value> <bookmark_value>times; in cells</bookmark_value> <bookmark_value>cells;date and time formats</bookmark_value> <bookmark_value>current date and time values</bookmark_value>"
+msgstr "<bookmark_value>guyyoota; man'eelee keessatti</bookmark_value> <bookmark_value>yeroo; man'eelee keessatti</bookmark_value> <bookmark_value>man'eelee;dhangiiwwan guyyaa fi yeroo</bookmark_value><bookmark_value>gatiiwwan guyyaa fi yeroo ammee</bookmark_value>"
-#: note_insert.xhp
+#: calc_date.xhp
msgctxt ""
-"note_insert.xhp\n"
-"hd_id3153968\n"
-"31\n"
+"calc_date.xhp\n"
+"hd_id3146120\n"
+"11\n"
"help.text"
-msgid "<variable id=\"note_insert\"><link href=\"text/scalc/guide/note_insert.xhp\" name=\"Inserting and Editing Comments\">Inserting and Editing Comments</link></variable>"
-msgstr "<variable id=\"note_insert\"><link href=\"text/scalc/guide/note_insert.xhp\" name=\"Inserting and Editing Comments\">Yaadawwan Saaguu fi Gulaaluu</link></variable>"
+msgid "<variable id=\"calc_date\"><link href=\"text/scalc/guide/calc_date.xhp\" name=\"Calculating With Dates and Times\">Calculating With Dates and Times</link></variable>"
+msgstr "<variable id=\"calc_date\"><link href=\"text/scalc/guide/calc_date.xhp\" name=\"Calculating With Dates and Times\">Guyyootaa fi yeroodhaan shallaguu</link></variable>"
-#: note_insert.xhp
+#: calc_date.xhp
msgctxt ""
-"note_insert.xhp\n"
-"par_id3150440\n"
-"32\n"
+"calc_date.xhp\n"
+"par_id3154320\n"
+"12\n"
"help.text"
-msgid "You can assign a comment to each cell by choosing <link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\"><emph>Insert - Comment</emph></link>. The comment is indicated by a small red square, the comment indicator, in the cell."
-msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\"><emph>Saagi - Yaada</emph></link> filachuudhaan yaadota tokkoon tokkoo man'eef ramaduu dandeessa. Yaadota man'ee keessatti skuweerii diimaa xiqqaan, agarsiisaa yaadaa, agarsiifama."
+msgid "In $[officename] Calc, you can perform calculations with current date and time values. As an example, to find out exactly how old you are in seconds or hours, follow the following steps:"
+msgstr "$[officename] Calc keessatti,shallaggii gatiiwwan guyyaa fi yeroo ammeetiin raawwachuu dandeessa.Akka fakkeenyaatti,umurii kee sirrumaan daqiiqaadhaan yookiin sa'aatiin argachuuf,ejjatoo armaan gadii hordofi:"
-#: note_insert.xhp
+#: calc_date.xhp
msgctxt ""
-"note_insert.xhp\n"
-"par_id3145750\n"
-"34\n"
+"calc_date.xhp\n"
+"par_id3150750\n"
+"13\n"
"help.text"
-msgid "The comment is visible whenever the mouse pointer is over the cell, provided you have activated <emph>Help - Tips</emph> or - <emph>Extended Tips</emph>."
-msgstr "Yaanni yeroo qareen hantuutee man'ee irra bu'e, yoo <emph>Gargaarsa - Qajeelcha</emph> ykn - <emph>Qajeelcha Baldhate</emph> kakastee jiraatte ni mul'ata."
+msgid "In a spreadsheet, enter your birthday in cell A1."
+msgstr "Wardii keessatti,guyyaa dhaloota keetii man'ee A1 keessatti galchi."
-#: note_insert.xhp
+#: calc_date.xhp
msgctxt ""
-"note_insert.xhp\n"
-"par_id3148575\n"
-"33\n"
+"calc_date.xhp\n"
+"par_id3145642\n"
+"14\n"
"help.text"
-msgid "When you select the cell, you can choose <emph>Show Comment</emph> from the context menu of the cell. Doing so keeps the comment visible until you deactivate the <emph>Show Comment</emph> command from the same context menu."
-msgstr "Yeroo man'ee filattu, <emph>Yaada Agarsiisi</emph> baafata haallee man'ee irraa filachuu dandeessa. Kana gochuun amma ajaja <emph>Yaada Agarsiisi</emph> baafata haallee sanumarraa kakaala taasiftutti Yaada mul'isa."
+msgid "Enter the following formula in cell A3: <item type=\"literal\">=NOW()-A1</item>"
+msgstr "Formulaa armaan gadii man'ee A3 keessati galchi: <item type=\"literal\">=NOW()-A1</item>"
-#: note_insert.xhp
+#: calc_date.xhp
msgctxt ""
-"note_insert.xhp\n"
-"par_id3149958\n"
-"35\n"
+"calc_date.xhp\n"
+"par_id3149020\n"
+"52\n"
"help.text"
-msgid "To edit a permanently visible comment, just click in it. If you delete the entire text of the comment, the comment itself is deleted."
-msgstr "Yaada dhaabbataan mul'atu gulaaluuf, keessa isaa cuqaasi. Yoo barruu guutuu yaadannichaa balleessite, yaadannichi mataansaa ni bada."
+msgid "After pressing the <item type=\"keycode\">Enter</item> key you will see the result in date format. Since the result should show the difference between two dates as a number of days, you must format cell A3 as a number."
+msgstr "Furtuu <item type=\"keycode\">Enter</item> tuquun booda bu'aa dhangii guyyaatiin argita. Sababa bu'aan garaagarummaa guyyoota lama jidduu akka lakkoofsa guyyaatti agarsiisuu qabuuf,man'ee A3 akka lakkoofsaatti dhangeessuu qabda."
-#: note_insert.xhp
+#: calc_date.xhp
msgctxt ""
-"note_insert.xhp\n"
-"par_idN10699\n"
+"calc_date.xhp\n"
+"par_id3155335\n"
+"53\n"
"help.text"
-msgid "Move or resize each comment as you like."
-msgstr "Tokkoon tokkoo yaada akka feetetti deemsisi ykn guddisi"
+msgid "Place the cursor in cell A3, right-click to open a context menu and choose <emph>Format Cells</emph>."
+msgstr "Qaree man'ee A3 keessa qubachiisi, baafata haallee banuuf mirgaan cuqaasiitii<emph>Man'eelee dhangeessi</emph> filadhu."
-#: note_insert.xhp
+#: calc_date.xhp
msgctxt ""
-"note_insert.xhp\n"
-"par_idN1069D\n"
+"calc_date.xhp\n"
+"par_id3147343\n"
+"54\n"
"help.text"
-msgid "Format each comment by specifying background color, transparency, border style, and text alignment. Choose the commands from the context menu of the comment."
-msgstr "Tokkoon tokkoo yaada halluu duubee, iftoomina, haalata handaaraa, fi walqixxaata barruu ifteessuudhaan dhangeessi. Ajajoota baafata haallee yaada irraa filadhu."
+msgid "The <item type=\"menuitem\">Format Cells</item> dialog appears. On the <item type=\"menuitem\">Numbers</item> tab, the \"Number\" category will appear already highlighted. The format is set to \"General\", which causes the result of a calculation containing date entries to be displayed as a date. To display the result as a number, set the number format to \"-1,234\" and close the dialog with the <item type=\"menuitem\">OK</item> button."
+msgstr "Qaaqni <item type=\"menuitem\">Man'eelee Dhangeessi</item> ni mul'ata. Caancala <item type=\"menuitem\">Lakkoofsota</item> irratti, akaakuun \"Lakkoofsaa\" dursee shoolamee ni mul'ata. Dhangiin \"Dimshaasha\" ta'ee qindaa'a, kun immoo bu'aan shallaggii galfatoota guyyaa qabate akka guyyaatti akka mul'atu sababa ta'a. Bu'aan akka lakkoofsaatti akka mul'atuuf, dhangii lakkoofsaa gara \"-1,234\" qindeessiitii qaaqa qabduu <item type=\"menuitem\">Tole</item> dhaan cufi."
-#: note_insert.xhp
+#: calc_date.xhp
msgctxt ""
-"note_insert.xhp\n"
-"par_id3144764\n"
-"38\n"
+"calc_date.xhp\n"
+"par_id3147001\n"
+"15\n"
"help.text"
-msgid "To show or hide the comment indicator, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph> and mark or unmark the <emph>Comment indicator</emph> check box."
-msgstr ""
+msgid "The number of days between today's date and the specified date is displayed in cell A3."
+msgstr "Lakkoofsi guyyaa kan guyyaa har'aa fi guyyaa murtaa'e jidduu jiru maadhee A3 keessatti mul'atu."
-#: note_insert.xhp
+#: calc_date.xhp
msgctxt ""
-"note_insert.xhp\n"
-"par_id3150715\n"
-"39\n"
+"calc_date.xhp\n"
+"par_id3150304\n"
+"16\n"
"help.text"
-msgid "To display a help tip for a selected cell, use <emph>Data - Validity - Input Help</emph>."
-msgstr "Qajeelcha gargaarsaa maadhee filatamee mul'isuuf, <emph>Deetaa - Sirrummaa - Gargaarsa Naqaa</emph>."
+msgid "Experiment with some additional formulas: in A4 enter =A3*24 to calculate the hours, in A5 enter =A4*60 for the minutes, and in A6 enter =A5*60 for seconds. Press the <item type=\"keycode\">Enter</item> key after each formula."
+msgstr "Yaalii foormulaawwan dabalataa muraasa wajjin:A4 keessatti sa'aatii shallaguuf =A3*24 galchi,A5 keessatti daqiiqaadhaaf =A4*60 galchi,akkasumas A6 keessatti sekondiiwwaniif =A5*60 galchi.Furtuu <item type=\"keycode\">Enter</item> foormulaa haggayyuu booda tuqi."
-#: note_insert.xhp
+#: calc_date.xhp
msgctxt ""
-"note_insert.xhp\n"
-"par_id3153707\n"
-"36\n"
+"calc_date.xhp\n"
+"par_id3149207\n"
+"17\n"
"help.text"
-msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\">Insert - Comment</link>"
-msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\">Saagi - Yaada</link>"
+msgid "The time since your date of birth will be calculated and displayed in the various units. The values are calculated as of the exact moment when you entered the last formula and pressed the <item type=\"keycode\">Enter</item> key. This value is not automatically updated, although \"Now\" continuously changes. In the <emph>Tools</emph> menu, the menu item <emph>Cell Contents - AutoCalculate</emph> is normally active; however, automatic calculation does not apply to the function NOW. This ensures that your computer is not solely occupied with updating the sheet."
+msgstr "Yeroon dhaloota kee irraa kaasee yuuniitii adda addaatiin shallagamee mul'ata.Gatiiwwan akka yeroo foormulaa dhumaa galchituuttii fi furtuu <item type=\"keycode\">Enter</item> tuqxuutti shallagama.Gatiin kun ufmaan hin fooyya'u, \"Amma\" itti fufaan jijjiiramu iyyuu.Baafata <emph>Miyoota</emph> keessatti,maalimni baafataa <emph>Qabiyyeewwan man'ee - Ufmaan shallagi</emph> baratamaan kaka'aa dha;garuu,shallaggiin ufmaa dalagaa AMMA irratti hin raawwatu.Kun amma kompiwutarri kee wardii fooyyeessuu qofaan hin qabamne mirkaneessa."
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
+"calc_series.xhp\n"
"tit\n"
"help.text"
-msgid "Using AutoFormat for Tables"
-msgstr "Gabateewwaniif dhangii ufmaa fayyadamuu"
-
-#: autoformat.xhp
-msgctxt ""
-"autoformat.xhp\n"
-"bm_id3155132\n"
-"help.text"
-msgid "<bookmark_value>tables; AutoFormat function</bookmark_value> <bookmark_value>defining;AutoFormat function for tables</bookmark_value> <bookmark_value>AutoFormat function</bookmark_value> <bookmark_value>formats; automatically formatting spreadsheets</bookmark_value> <bookmark_value>automatic formatting in spreadsheets</bookmark_value> <bookmark_value>sheets;AutoFormat function</bookmark_value>"
-msgstr "<bookmark_value>gabateewwan; dalagee dhangii ufmaa</bookmark_value> <bookmark_value>qindeessuu;dalagaa dhangii ufmaa gabateewwaniif</bookmark_value> <bookmark_value>dalagaa dhangii ufmaa;dhangiiwwan qindeessuu fi raawwachuu</bookmark_value> <bookmark_value>dhangiiwwan; wardiilee ufmaan dhangeessuu</bookmark_value> <bookmark_value>wardiilee keessatti ufmaan dhangeessuu</bookmark_value> <bookmark_value>wardiilee;dalagaa dhangii ufmaa</bookmark_value>"
-
-#: autoformat.xhp
-msgctxt ""
-"autoformat.xhp\n"
-"hd_id3155132\n"
-"11\n"
-"help.text"
-msgid "<variable id=\"autoformat\"><link href=\"text/scalc/guide/autoformat.xhp\" name=\"Using AutoFormat for Tables\">Applying Automatic Formatting to a Selected Cell Range</link></variable>"
-msgstr "<variable id=\"autoformat\"><link href=\"text/scalc/guide/autoformat.xhp\" name=\"Using AutoFormat for Tables\">Dhangeessa ufmaa hammanga maadhee filatameetti raawwachuu</link> </variable>"
-
-#: autoformat.xhp
-msgctxt ""
-"autoformat.xhp\n"
-"par_id3149401\n"
-"12\n"
-"help.text"
-msgid "You can use the AutoFormat feature to quickly apply a format to a sheet or a selected cell range."
-msgstr "Amala dhangii ufmaa saffisaan dhangii wardii yookiin hammanga man'ee filtame irratti raawwachuuf fayyadamuu dandeessa."
-
-#: autoformat.xhp
-msgctxt ""
-"autoformat.xhp\n"
-"par_idN10702\n"
-"help.text"
-msgid "To Apply an AutoFormat to a Sheet or Selected Cell Range"
-msgstr "Dhangii Ofmaa Wardiitti ykn Hangii Man'ee Filatameetti Fayyadamuuf"
-
-#: autoformat.xhp
-msgctxt ""
-"autoformat.xhp\n"
-"par_idN106CE\n"
-"help.text"
-msgid "Select the cells, including the column and row headers, that you want to format."
-msgstr "Man'eelee,irraantoowwan sarjaa fi tarree dabaltee,kan dhangeessuu barbaadde filadhu."
+msgid "Automatically Calculating Series"
+msgstr "Walfaannee shallaguu ufmaa"
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_idN106D5\n"
+"calc_series.xhp\n"
+"bm_id3150769\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - AutoFormat</item>."
-msgstr "<item type=\"menuitem\">Dhangii - Ufmaan dhangeessi</item>."
+msgid "<bookmark_value>series; calculating</bookmark_value> <bookmark_value>calculating; series</bookmark_value> <bookmark_value>linear series</bookmark_value> <bookmark_value>growth series</bookmark_value> <bookmark_value>date series</bookmark_value> <bookmark_value>powers of 2 calculations</bookmark_value> <bookmark_value>cells; filling automatically</bookmark_value> <bookmark_value>automatic cell filling</bookmark_value> <bookmark_value>AutoFill function</bookmark_value> <bookmark_value>filling;cells, automatically</bookmark_value>"
+msgstr "<bookmark_value>walfaannee; shallaguu</bookmark_value> <bookmark_value>shallaguu; walfaannee</bookmark_value> <bookmark_value>walfaannee sorooroo</bookmark_value> <bookmark_value>walfaannee guddinaa</bookmark_value> <bookmark_value>walfaannee guyyaa</bookmark_value> <bookmark_value>shallaggii paawurii 2</bookmark_value> <bookmark_value>man'eelee; ufmaan guutuu</bookmark_value> <bookmark_value>man'eelee ufmaan guutuu</bookmark_value> <bookmark_value>dalagaa ufmaan guutuu</bookmark_value> <bookmark_value>guutuu;man'eelee, ufmaan</bookmark_value>"
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_id3151242\n"
-"27\n"
+"calc_series.xhp\n"
+"hd_id3150769\n"
+"6\n"
"help.text"
-msgid "To select which properties to include in an AutoFormat, click <emph>More</emph>."
-msgstr "Amaloota kam akka dhangii ufmaatti dabaltu filachuuf,<emph>Dabalata</emph> cuqaasi."
+msgid "<variable id=\"calc_series\"><link href=\"text/scalc/guide/calc_series.xhp\" name=\"Automatically Calculating Series\">Automatically Filling in Data Based on Adjacent Cells</link></variable>"
+msgstr "<variable id=\"calc_series\"><link href=\"text/scalc/guide/calc_series.xhp\" name=\"Automatically Calculating Series\">Maadheelee bukkee irratti hundaa'uudhaan deetaa ufmaan guutuu</link></variable>"
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_idN10715\n"
+"calc_series.xhp\n"
+"par_idN106A8\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "<emph>TOLE</emph> cuqaasi."
+msgid "You can automatically fill cells with data with the AutoFill command or the Series command."
+msgstr "Maadheelee ufmaan daataan ajaja ufmaan guutuudhaan yookiin ajaja walfaanneedhaan ufmaan guutuu dandeessa."
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_idN1075D\n"
+"calc_series.xhp\n"
+"par_idN106D3\n"
"help.text"
-msgid "The format is applied to the selected range of cells."
-msgstr "Dhangiin hammanga maadheelee filatamaniitti ni raawwata."
+msgid "Using AutoFill"
+msgstr "Ufmaan guutuutti fayyadamuu"
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_id3149210\n"
-"14\n"
+"calc_series.xhp\n"
+"par_idN106D7\n"
"help.text"
-msgid "If you do not see any change in color of the cell contents, choose <item type=\"menuitem\">View - Value Highlighting</item>."
-msgstr "Yoo jijjiirama halluu qabiyyeewwan man'ee homaayyuu hin agartu ta'e,<item type=\"menuitem\">Argi - Gatii Shooluu</item> filadhu."
+msgid "AutoFill automatically generates a data series based on a defined pattern."
+msgstr "Guutni ufmaa walfaannee deetaa ufmaan sarxaa murtaa'e irratti hundaa'uudhaan uuma."
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_id3155379\n"
-"22\n"
+"calc_series.xhp\n"
+"par_id3154319\n"
+"7\n"
"help.text"
-msgid "To Define an AutoFormat for Spreadsheets"
-msgstr "Wardiileef Dhangii Ofmaa Ibsuuf"
+msgid "On a sheet, click in a cell, and type a number."
+msgstr "Wardii irratti, man'ee keessa cuqaasiitii, lakkoofsa barreessi."
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_id3148868\n"
-"26\n"
+"calc_series.xhp\n"
+"par_idN106CB\n"
"help.text"
-msgid "You can define a new AutoFormat that is available to all spreadsheets."
-msgstr "Dhangii ufmaa haaraa kan wardiilee hundaaf ta'u qindeessuu dandeessa."
+msgid "Click in another cell and then click back in the cell where you typed the number."
+msgstr "Maadhee biraa keessa cuqaasiitii achumaan maadhee bakka lakkoofsa itti barreessite deebisii cuqaasi."
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_id3152985\n"
-"23\n"
+"calc_series.xhp\n"
+"par_id3145272\n"
+"16\n"
"help.text"
-msgid "Format a sheet."
-msgstr "Wardii dhangeessi"
+msgid "Drag the fill handle in the bottom right corner of the cell across the cells that you want to fill, and release the mouse button."
+msgstr "Qabannoo guuta jala xiyyoo mirgaa maadhee dalga maadheelee kan guutuu barbaaddu harkisiitii qabduu hantuutee gallakkisi."
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_id3145384\n"
-"24\n"
+"calc_series.xhp\n"
+"par_id3145801\n"
+"17\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Edit - Select All</item>."
-msgstr "<item type=\"menuitem\">Gulaali - Hunda Filadhu</item> fili."
+msgid "The cells are filled with ascending numbers."
+msgstr "Man'eeleen lakkoofsota oleedhaan guutamu."
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_id3153815\n"
-"25\n"
+"calc_series.xhp\n"
+"par_idN106EE\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - AutoFormat</item>."
-msgstr "<item type=\"menuitem\">Dhangii - Ufmaan dhangeessi</item>."
+msgid "To quickly create a list of consecutive days, enter <item type=\"literal\">Monday</item> in a cell, and drag the fill handle."
+msgstr "Tarree guyyoota walitti aanan saffisaan uumuuf, man'ee keessatti <item type=\"literal\">Wixata</item> galchiitii qabannoo guutaa harkisi."
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_idN107A9\n"
+"calc_series.xhp\n"
+"par_id9720145\n"
"help.text"
-msgid "Click <emph>Add</emph>."
-msgstr "<emph>Dabali</emph> cuqaasi."
+msgid "Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> if you do not want to fill the cells with different values."
+msgstr ""
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_idN10760\n"
+"calc_series.xhp\n"
+"par_id3154490\n"
+"18\n"
"help.text"
-msgid "In the <emph>Name</emph> box of the <emph>Add AutoFormat</emph> dialog, enter a name for the format."
-msgstr "Sanduuqa <emph>Maqaa</emph> qaaqa <emph>dhangii ufmaa dabali</emph> keessatti, dhangiif maqaa galchi."
+msgid "If you select two or more adjacent cells that contain different numbers, and drag, the remaining cells are filled with the arithmetic pattern that is recognized in the numbers. The AutoFill function also recognizes customized lists that are defined under <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</item>."
+msgstr ""
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_idN107C3\n"
+"calc_series.xhp\n"
+"par_idN10737\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "<emph>TOLE</emph>galchi."
+msgid "You can double-click the fill handle to automatically fill all empty columns of the current data block. For example, first enter Jan into A1 and drag the fill handle down to A12 to get the twelve months in the first column. Now enter some values into B1 and C1. Select those two cells, and double-click the fill handle. This fills automatically the data block B1:C12."
+msgstr "Sarjaawwan duwwaa garee deetaa ammee hunda ufmaan guutuuf qabannoo guutaa mirgaan cuqaasuu dandeessa.Fakkeenyaaf,jalqaba Amajji A1 keessatti galchiitii baatiilee kudha lama sarjaa jalqabaa keessaa argachuuf qabannoo guutaa gadi A12 tti harkisi.Amma gatiiwwan muraasa gara B1 fi C1 galchi.Man'eelee lamaan sana filadhuutii qabannoo guutaa lamcuqaasi.Kun ufmaan garee deetaa B1:C12 guuta."
-#: autoformat.xhp
+#: calc_series.xhp
msgctxt ""
-"autoformat.xhp\n"
-"par_id3159203\n"
-"28\n"
+"calc_series.xhp\n"
+"par_idN10713\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05110000.xhp\" name=\"Format - AutoFormat\">Format - AutoFormat</link>"
-msgstr "<link href=\"text/scalc/01/05110000.xhp\" name=\"Format - AutoFormat\">Dhangii - Ufmaan dhangeessi</link>"
+msgid "Using a Defined Series"
+msgstr "Walfaannee qindaa'aan fayyadamuu"
-#: table_view.xhp
+#: calc_series.xhp
msgctxt ""
-"table_view.xhp\n"
-"tit\n"
+"calc_series.xhp\n"
+"par_id3150749\n"
+"9\n"
"help.text"
-msgid "Changing Table Views"
-msgstr "Argiiwwan Gabatee Jijjiiruu"
+msgid "Select the cell range in the sheet that you want to fill."
+msgstr "Hammanga maadhee wardii keessaa kan guutuu barbaaddu filadhu."
-#: table_view.xhp
+#: calc_series.xhp
msgctxt ""
-"table_view.xhp\n"
-"bm_id3147304\n"
+"calc_series.xhp\n"
+"par_id3154754\n"
+"19\n"
"help.text"
-msgid "<bookmark_value>row headers; hiding</bookmark_value><bookmark_value>column headers; hiding</bookmark_value><bookmark_value>tables; views</bookmark_value><bookmark_value>views; tables</bookmark_value><bookmark_value>grids;hiding lines in sheets</bookmark_value><bookmark_value>hiding;headers/grid lines</bookmark_value><bookmark_value>changing;table views</bookmark_value>"
-msgstr "<bookmark_value>irraantoowwan tarrree; dhoksuu</bookmark_value><bookmark_value>irraantoowwan sarjaa; hiding</bookmark_value><bookmark_value>gabateewwan; argiiwwan</bookmark_value><bookmark_value>argiiwwan; gabateewwan</bookmark_value><bookmark_value>tarsaawwan;sararoota wardiilee keessa dhoksuu</bookmark_value><bookmark_value>dhoksuu;irraantoowwan/sararoota tarsaa</bookmark_value><bookmark_value>jijjiiruu;argiiwwan gabatee</bookmark_value>"
+msgid "Choose <item type=\"menuitem\">Edit - Fill - Series</item>."
+msgstr "<item type=\"menuitem\">Gulaali - Filadhu - Walfaannee</item> fili."
-#: table_view.xhp
+#: calc_series.xhp
msgctxt ""
-"table_view.xhp\n"
-"hd_id3147304\n"
-"1\n"
+"calc_series.xhp\n"
+"par_idN10716\n"
"help.text"
-msgid "<variable id=\"table_view\"><link href=\"text/scalc/guide/table_view.xhp\" name=\"Changing Table Views\">Changing Table Views</link></variable>"
-msgstr "<variable id=\"table_view\"><link href=\"text/scalc/guide/table_view.xhp\" name=\"Changing Table Views\">Argiiwwan Gabatee Jijjiiruu</link></variable>"
+msgid "Select the parameters for the series."
+msgstr "Ulaagaalee walfaanneedhaaf filadhu."
-#: table_view.xhp
+#: calc_series.xhp
msgctxt ""
-"table_view.xhp\n"
-"par_id3153192\n"
-"2\n"
+"calc_series.xhp\n"
+"par_idN10731\n"
"help.text"
-msgid "To hide column and line headers in a table:"
-msgstr "Sarjaa fi irraantoowwan sararaa gabatee keessatti dhaabbataan dhoksuu"
+msgid "If you select a <emph>linear</emph> series, the increment that you enter is <emph>added</emph> to each consecutive number in the series to create the next value."
+msgstr "Yoo walfaannee <emph>sorooroo</emph> filattu,daballi kan ati galchitu gara lakkoofsa walitti aanuutti walfaannee keessatti gatii itti aanu uumuuf <emph>ida'ama</emph>."
-#: table_view.xhp
+#: calc_series.xhp
msgctxt ""
-"table_view.xhp\n"
-"par_id3153768\n"
-"3\n"
+"calc_series.xhp\n"
+"par_idN1073C\n"
"help.text"
-msgid "Under the menu item <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc,</emph> go to the <emph>View</emph> tab page. Unmark<emph> Column/row headers</emph>. Confirm with <emph>OK</emph>."
-msgstr ""
+msgid "If you select a <emph>growth</emph> series, the increment that you enter is <emph>multiplied</emph> by each consecutive number to create the next value."
+msgstr "Yoo walfaannee <emph>guddina</emph> filattu,daballi kan ati galchitu gara lakkoofsa walitti aanuutti walfaannee keessatti gatii itti aanu uumuuf <emph>baay'ata</emph>."
-#: table_view.xhp
+#: calc_series.xhp
msgctxt ""
-"table_view.xhp\n"
-"par_id3147436\n"
-"4\n"
+"calc_series.xhp\n"
+"par_idN10747\n"
"help.text"
-msgid "To hide grid lines:"
-msgstr "Sararoota tarsaa dhoksuu"
+msgid "If you select a <emph>date</emph> series, the increment that you enter is added to the time unit that you specify."
+msgstr "Yoo walfaannee <emph>guyyaa</emph> filattu,daballi kan ati galchitu yuuniitii yeroo kan ifteessitutti dabalama."
-#: table_view.xhp
+#: calc_series.xhp
msgctxt ""
-"table_view.xhp\n"
-"par_id3153726\n"
-"5\n"
+"calc_series.xhp\n"
+"par_id3159173\n"
+"20\n"
"help.text"
-msgid "Under the menu item <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph><emph>,</emph> go to the <emph>View</emph> tab page. Unmark <emph>Grid lines</emph>. Confirm with <emph>OK</emph>."
-msgstr ""
+msgid "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Sort lists</link>"
+msgstr "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Tarreewwan foyi</link>"
#: calc_timevalues.xhp
msgctxt ""
@@ -1841,581 +1506,6 @@ msgctxt ""
msgid "In the formula, an entire 24-hour day has a value of 1 and one hour has a value of 1/24. The logical value in parentheses is 0 or 1, corresponding to 0 or 24 hours. The result returned by the formula is automatically issued in time format due to the sequence of the operands."
msgstr "Foormulaa keessatti,guyyaan guutuu sa'aatii 24 gatii 1 yoo qabaatu sa'aatiin tokko gatii 1/24 qaba.Gatiin yaayaa haammattuu keessaa 0 ykn 1, sa'aatii 0 ykn 24 bakka bu'a.Bu'aan foormulaan deebi'u ufmaan dhangii guyyaatiin sababa tartiiba qooyyabaatiin fuudhama."
-#: text_numbers.xhp
-msgctxt ""
-"text_numbers.xhp\n"
-"tit\n"
-"help.text"
-msgid "Formatting Numbers as Text"
-msgstr "Lakkoofsa akka Barruutti Dhangeessuu"
-
-#: text_numbers.xhp
-msgctxt ""
-"text_numbers.xhp\n"
-"bm_id3145068\n"
-"help.text"
-msgid "<bookmark_value>numbers;entering as text</bookmark_value> <bookmark_value>text formats; for numbers</bookmark_value> <bookmark_value>formats; numbers as text</bookmark_value> <bookmark_value>cell formats; text/numbers</bookmark_value> <bookmark_value>formatting;numbers as text</bookmark_value>"
-msgstr "<bookmark_value>lakkoofsota; akka barruu</bookmark_value> <bookmark_value>dhangiiwwan barruu; lakkoofsotaaf</bookmark_value> <bookmark_value>lakkoofsota; dhangiiwwan lakkoofsaa malee galchuu </bookmark_value> <bookmark_value>dhangiiwwan; lakkoofsota akka barruu</bookmark_value> <bookmark_value>dhangiiwwan man'ee; barruu/lakkoofsota</bookmark_value> <bookmark_value>dhangeessuu;lakkoofsota akka barruu</bookmark_value>"
-
-#: text_numbers.xhp
-msgctxt ""
-"text_numbers.xhp\n"
-"hd_id3145068\n"
-"46\n"
-"help.text"
-msgid "<variable id=\"text_numbers\"><link href=\"text/scalc/guide/text_numbers.xhp\" name=\"Formatting Numbers as Text\">Formatting Numbers as Text</link></variable>"
-msgstr "<variable id=\"text_numbers\"><link href=\"text/scalc/guide/text_numbers.xhp\" name=\"Formatting Numbers as Text\">Lakkoofsa akka Barruutti Dhangeessuu</link></variable>"
-
-#: text_numbers.xhp
-msgctxt ""
-"text_numbers.xhp\n"
-"par_id3156280\n"
-"43\n"
-"help.text"
-msgid "You can format numbers as text in $[officename] Calc. Open the context menu of a cell or range of cells and choose <emph>Format Cells - Numbers</emph>, then select \"Text\" from the <emph>Category</emph> list. Any numbers subsequently entered into the formatted range are interpreted as text. The display of these \"numbers\" is left-justified, just as with other text."
-msgstr "Lakkoofsota akka barruutti $[officename] Calc keessatti dhangeessuu dandeessa. Baafata haallee man'ee ykn hammangaa man'ee baniitii <emph>Man'eelee Dhangeessi - Lakkoofsota</emph> filadhu, achiin \"Barruu\" tarree <emph>Akaakuu</emph> irraa filadhu. Lakkoofsonni kamuu hamangaa dhangeeffame keessatti galan akka barruutti hiikamu. Argamni \"Lakkoofsa\" kanneenii bitaan wal qixxaateera, akkuma barruu biroo."
-
-#: text_numbers.xhp
-msgctxt ""
-"text_numbers.xhp\n"
-"par_id3149377\n"
-"44\n"
-"help.text"
-msgid "If you have already entered normal numbers in cells and have afterwards changed the format of the cells to \"Text\", the numbers will remain normal numbers. They will not be converted. Only numbers entered afterwards, or numbers which are then edited, will become text numbers."
-msgstr "Yoo lakkoofsota baratamoo man'eelee keessatti durumaanuu galchitee jiraattee fi isaan booda dhangii man'eelee gara \"Barruu\" tti jijjiirte, lakkoofsonni baratamoo ta'anii hafu. Hin jijjiiraman. Lakkoofsota isaan booda galan, ykn lakkoofsota achiin gulaalaman, qofatu lakkoofsota barruu ta'a."
-
-#: text_numbers.xhp
-msgctxt ""
-"text_numbers.xhp\n"
-"par_id3144765\n"
-"45\n"
-"help.text"
-msgid "If you decide to enter a number directly as text, enter an apostrophe (') first. For example, for years in column headings, you can enter '1999, '2000 and '2001. The apostrophe is not visible in the cell, it only indicates that the entry is to be recognized as a text. This is useful if, for example, you enter a telephone number or postal code that begins with a zero (0), because a zero (0) at the start of a sequence of digits is removed in normal number formats."
-msgstr "Yoo lakkoofsa kallattiin akka barruutti galchuu mutteessite, jalaqaba hudhaa(') galchi. Fakkeenyaaf, waggoota irraantota sarjaa keessa jiraniif, '1999, '2000 fi '2001 galchuu dandeessa. Hudhaan man'ee keessatti hin mul'atu, galfatni akka barruutti akka beekamu qofa agarsiisa. Kun yoo, fakkeenyaaf, lakkoofsa bilbilaa ykn postaa kan zeeroon jalqabu, sababni isaas zeroon jalqaba dijiitii dhangiiwwan lakkoofsaa baratamaa keessaa badu galchitu barbaachisaa dha."
-
-#: text_numbers.xhp
-msgctxt ""
-"text_numbers.xhp\n"
-"par_id3156284\n"
-"47\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
-msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Dhangii - Man'eewwan - Lakkoofsota</link>"
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"tit\n"
-"help.text"
-msgid "Saving and Opening Sheets in HTML"
-msgstr "Wardiilee HTML keessatti Olkaa'uu fi Banuu"
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"bm_id3150542\n"
-"help.text"
-msgid "<bookmark_value>HTML; sheets</bookmark_value><bookmark_value>sheets; HTML</bookmark_value><bookmark_value>saving; sheets in HTML</bookmark_value><bookmark_value>opening; sheets in HTML</bookmark_value>"
-msgstr "<bookmark_value>HTML; wardiilee</bookmark_value><bookmark_value>wardiilee; HTML</bookmark_value><bookmark_value>olkaa'uu; wardiilee HTML keessaa</bookmark_value><bookmark_value>banuu; wardiilee HTML keessaa</bookmark_value>"
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"hd_id3150542\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"html_doc\"><link href=\"text/scalc/guide/html_doc.xhp\" name=\"Saving and Opening Sheets in HTML\">Saving and Opening Sheets in HTML</link></variable>"
-msgstr "<variable id=\"html_doc\"><link href=\"text/scalc/guide/html_doc.xhp\" name=\"Saving and Opening Sheets in HTML\">wardiilee HTML keessaa</link></variable>"
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"hd_id3154124\n"
-"2\n"
-"help.text"
-msgid "Saving Sheets in HTML"
-msgstr "Wardiilee HTML keessatti Olkaa'uu"
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"par_id3145785\n"
-"3\n"
-"help.text"
-msgid "<item type=\"productname\">%PRODUCTNAME</item> Calc saves all the sheets of a Calc document together as an HTML document. At the beginning of the HTML document, a heading and a list of hyperlinks are automatically added which lead to the individual sheets within the document."
-msgstr "<item type=\"productname\">%PRODUCTNAME</item> Calc wardiilee galmee Calc akka galmee HTMLtti waliin olkaa'a. Jalqaba galmee HTML irratti, matadureen tokkoofi geessituuwwan tarree tokkoo galmee keessatti wardiilee matayyaatti si geessan ofmaan dabalamu."
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"par_id3155854\n"
-"4\n"
-"help.text"
-msgid "Numbers are shown as written. In addition, in the <SDVAL> HTML tag, the exact internal number value is written so that after opening the HTML document with <item type=\"productname\">%PRODUCTNAME</item> you know you have the exact values."
-msgstr "Lakkoofsonni akka barreeffamanitti mul'atu. Dabalatees, iyyaatoo <SDVAL> HTML keessatti, galmee HTML <item type=\"productname\">%PRODUCTNAME</item>dhaan erga bantee booda gatiiwwan sirrii qabaachuu kee akka beektu gatiin lakkoofsa keessoo sirriin ni barreeffamu"
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"par_id3153188\n"
-"5\n"
-"help.text"
-msgid "To save the current Calc document as HTML, choose <emph>File - Save As</emph>."
-msgstr "Galmee Calc ammee akka HTML olkaa'uuf, <emph>Faayili - Akkasitti Olkaa'i</emph>."
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"par_id3148645\n"
-"6\n"
-"help.text"
-msgid "In the <emph>File type</emph> list box, in the area with the other <item type=\"productname\">%PRODUCTNAME</item> Calc filters, choose the file type \"HTML Document (<item type=\"productname\">%PRODUCTNAME</item> Calc)\"."
-msgstr "Sanduuqa tarree <emph>Gosa faayilii</emph> keessatti, bal'ina gingilchaawwan Calc biraa <item type=\"productname\">%PRODUCTNAME</item> keessatti, gosa faayilii \"HTML Document (<item type=\"productname\">%PRODUCTNAME</item> Calc)\" filadhu."
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"par_id3154729\n"
-"7\n"
-"help.text"
-msgid "Enter a <emph>File name</emph> and click <emph>Save</emph>."
-msgstr "<emph>Maqaa faayilii</emph> galchiitii <emph>Olkaa'i</emph> cuqaasi."
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"hd_id3149379\n"
-"8\n"
-"help.text"
-msgid "Opening Sheets in HTML"
-msgstr "Wardiilee HTML keessaa banuu"
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"par_id3149959\n"
-"10\n"
-"help.text"
-msgid "<item type=\"productname\">%PRODUCTNAME</item> offers various filters for opening HTML files, which you can select under <emph>File - Open</emph> in the <emph>Files of type</emph> list box:"
-msgstr "<item type=\"productname\">%PRODUCTNAME</item> gingilchaawwan addaddaa faayiloota HTML, <emph>Faayilii - Bani</emph> jalatti <emph>Faayiloota akaakuu</emph> sanduuqa tarree kenna:"
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"par_id3146969\n"
-"15\n"
-"help.text"
-msgid "Choose the file type \"HTML Document (<item type=\"productname\">%PRODUCTNAME</item> Calc)\" to open in <item type=\"productname\">%PRODUCTNAME</item> Calc."
-msgstr "<item type=\"productname\">%PRODUCTNAME</item> Calc keessatti banuuf akaakuu faayilii \"Galmee HTML (<item type=\"productname\">%PRODUCTNAME</item> Calc)\" filadhu."
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"par_id3155446\n"
-"16\n"
-"help.text"
-msgid "All <item type=\"productname\">%PRODUCTNAME</item> Calc options are now available to you. However, not all options that <item type=\"productname\">%PRODUCTNAME</item> Calc offers for editing can be saved in HTML format."
-msgstr "Dirqalaaleen <item type=\"productname\">%PRODUCTNAME</item> Calc marti siif ni jiraatu. Garuu, dirqalaalee <item type=\"productname\">%PRODUCTNAME</item> Calc gulaalliif kennu hundi dhangii HTMLtiin olkaa'amuu hin danda'an."
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"par_id3150370\n"
-"17\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"File - Open\">File - Open</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"File - Open\">Faayilii - Bani</link>"
-
-#: html_doc.xhp
-msgctxt ""
-"html_doc.xhp\n"
-"par_id3150199\n"
-"18\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"File - Save As\">File - Save As</link>"
-msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"File - Save As\">Faayilii - Akkasitti Olkaa'i</link>"
-
-#: datapilot_updatetable.xhp
-#, fuzzy
-msgctxt ""
-"datapilot_updatetable.xhp\n"
-"tit\n"
-"help.text"
-msgid "Updating Pivot Tables"
-msgstr "Ganateewwan DataPilot fooyyessuu"
-
-#: datapilot_updatetable.xhp
-#, fuzzy
-msgctxt ""
-"datapilot_updatetable.xhp\n"
-"bm_id3150792\n"
-"help.text"
-msgid "<bookmark_value>pivot table import</bookmark_value><bookmark_value>pivot table function; refreshing tables</bookmark_value><bookmark_value>recalculating;pivot tables</bookmark_value><bookmark_value>updating;pivot tables</bookmark_value>"
-msgstr "<bookmark_value>Alaaga gabatee qiinxaa</bookmark_value><bookmark_value>Dalagaa DataPilot; gabateewwan haaromsuu</bookmark_value><bookmark_value>lamuu shallaguu;Gabateewwan DataPilot</bookmark_value><bookmark_value>fooyyessuu;Gabateewwan DataPilot</bookmark_value>"
-
-#: datapilot_updatetable.xhp
-#, fuzzy
-msgctxt ""
-"datapilot_updatetable.xhp\n"
-"hd_id3150792\n"
-"33\n"
-"help.text"
-msgid "<variable id=\"datapilot_updatetable\"><link href=\"text/scalc/guide/datapilot_updatetable.xhp\" name=\"Updating Pivot Tables\">Updating Pivot Tables</link></variable>"
-msgstr "<variable id=\"datapilot_updatetable\"><link href=\"text/scalc/guide/datapilot_updatetable.xhp\" name=\"Updating DataPilot Tables\">Ganateewwan DataPilot fooyyessuu</link></variable>"
-
-#: datapilot_updatetable.xhp
-#, fuzzy
-msgctxt ""
-"datapilot_updatetable.xhp\n"
-"par_id3154684\n"
-"34\n"
-"help.text"
-msgid "If the data of the source sheet has been changed, $[officename] recalculates the pivot table. To recalculate the table, choose <emph>Data - Pivot Table - Refresh</emph>. Do the same after you have imported an Excel pivot table into $[officename] Calc."
-msgstr "Yoo deetaan wardii maddaa jijjiiramee jiraate, $[officename] gabatee DataPilot lamuu shallaga. Gabateewwan lamuu shallaguuf, <emph>Deetaa - DataPilot - Haaromsi</emph> filadhu. Erga gabatee qiinxaa Excel gara $[officename] Calc alaagdee booda waanuma kana dalagi."
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"tit\n"
-"help.text"
-msgid "Addresses and References, Absolute and Relative"
-msgstr "Teessoowwanii fi Wabiilee, Of danda'aa fi Hirkataa"
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"bm_id3156423\n"
-"help.text"
-msgid "<bookmark_value>addressing; relative and absolute</bookmark_value><bookmark_value>references; absolute/relative</bookmark_value><bookmark_value>absolute addresses in spreadsheets</bookmark_value><bookmark_value>relative addresses</bookmark_value><bookmark_value>absolute references in spreadsheets</bookmark_value><bookmark_value>relative references</bookmark_value><bookmark_value>references; to cells</bookmark_value><bookmark_value>cells; references</bookmark_value>"
-msgstr "<bookmark_value>teessessuu; hirkataa fi of danda'aa</bookmark_value><bookmark_value>wabiilee; of danda'aa/hirkataa</bookmark_value><bookmark_value>teessoowwan of danda'oo wardiilee keessaa</bookmark_value><bookmark_value>teessoowwan hirkatoo</bookmark_value><bookmark_value>wabiilee of danda'oo wardiilee keessaa</bookmark_value><bookmark_value>wabiilee hirkataa</bookmark_value><bookmark_value>wabiilee; gara maadheeleetti</bookmark_value><bookmark_value>maadheelee; wabiilee</bookmark_value>"
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"hd_id3156423\n"
-"53\n"
-"help.text"
-msgid "<variable id=\"relativ_absolut_ref\"><link href=\"text/scalc/guide/relativ_absolut_ref.xhp\" name=\"Addresses and References, Absolute and Relative\">Addresses and References, Absolute and Relative</link></variable>"
-msgstr "<variable id=\"relativ_absolut_ref\"><link href=\"text/scalc/guide/relativ_absolut_ref.xhp\" name=\"Addresses and References, Absolute and Relative\">Teessoowwanii fi Wabiilee, Of danda'aa fi Hirkataa</link></variable>"
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"hd_id3163712\n"
-"3\n"
-"help.text"
-msgid "Relative Addressing"
-msgstr "Teessessuu Hirkataa"
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3146119\n"
-"4\n"
-"help.text"
-msgid "The cell in column A, row 1 is addressed as A1. You can address a range of adjacent cells by first entering the coordinates of the upper left cell of the area, then a colon followed by the coordinates of the lower right cell. For example, the square formed by the first four cells in the upper left corner is addressed as A1:B2."
-msgstr "Maadheen sarjaa A, tarree 1 keessaa A1 ta'ee teessoo argata. Jalqaba koordineetii maadhee gubbaa bitaa bal'inaa galchuudhaan, achiin buufata xiqqaa koordineetii maadhee jala mirgaan hordofamuun hammangaa maadheelee wal cinaa teessessuu dandeessa. Fakkeenyaaf, iskuweeriin maadheelee afran jalqabaatiin xiyyoo gubbaa bitaa keessatti uumamu akka A1:B2 tti wabeeffama."
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3154730\n"
-"5\n"
-"help.text"
-msgid "By addressing an area in this way, you are making a relative reference to A1:B2. Relative here means that the reference to this area will be adjusted automatically when you copy the formulas."
-msgstr "Bal'ina haala kanaan teessessuun, wabii hirkataa gara A1:B2 gochaa jirta. Hirkataa jechuun asitti akka wabiin gara bal'ina kanaa ufmaan yeroo foormulaawwan garagalchitu akka sirreeffamu dha."
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"hd_id3149377\n"
-"6\n"
-"help.text"
-msgid "Absolute Addressing"
-msgstr "Teessessuu Of danda'aa"
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3154943\n"
-"7\n"
-"help.text"
-msgid "Absolute references are the opposite of relative addressing. A dollar sign is placed before each letter and number in an absolute reference, for example, $A$1:$B$2."
-msgstr "Wabiileen of danda'oo faallaa teessessuu hirkataa ti. Mallattoon doolaarii fuuldura qubee fi lakkoofsota wabii of danda'aa keessaa, fakkeenyaaf, $A$1:$B$2 taa'a."
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3147338\n"
-"36\n"
-"help.text"
-msgid "$[officename] can convert the current reference, in which the cursor is positioned in the input line, from relative to absolute and vice versa by pressing Shift +F4. If you start with a relative address such as A1, the first time you press this key combination, both row and column are set to absolute references ($A$1). The second time, only the row (A$1), and the third time, only the column ($A1). If you press the key combination once more, both column and row references are switched back to relative (A1)"
-msgstr "$[officename] wabii ammee jijjiiruu danda'a, kan qareen sarara naqaa keessa qubatu, hirkataa irraa gara of danda'aattii fi garagaltoon Shift +F4 dhiibuun. Yoo teessoo hirkataa kan akka A1 dhaan jalqabde, yeroo jalqaba makaa furtuuwwan kanaan jalqabdu, tarree fi sarjaan lamaanuu gara wabiilee of dandaa'aatti qindaa'u($A$1). Yeroo lammaffaa, tarree (A$1) qofa, fi yeroo sadaffaa, tarree$A1) qofa. Yoo makaa furtuuwwanii ammas dabaltee tuqxe, wabiileen tarree fi sarjaa lamaanuu gara hirkataatti deebi'u(A1)"
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3153963\n"
-"52\n"
-"help.text"
-msgid "$[officename] Calc shows the references to a formula. If, for example you click the formula =SUM(A1:C5;D15:D24) in a cell, the two referenced areas in the sheet will be highlighted in color. For example, the formula component \"A1:C5\" may be in blue and the cell range in question bordered in the same shade of blue. The next formula component \"D15:D24\" can be marked in red in the same way."
-msgstr "$[officename] Calc wabiilee foormulaatti jiran agarsiisa. Yoo, fakkeenyaaf foormulaa =IDA'A(A1:C5;D15:D24) man'ee keessaa cuqaaste, bal'inoonni wardii keessatti wabeeffataman lamaan halluun shoolamu. Fakkeenyaaf, qabeentaan foormulaa \"A1:C5\" cuquliisaan ta'uu danda'a akkasumas hammangaan man'ee gaaffii keessaa diba halluu walfakkaatuun cuquliisaan handaaramuu danda'a. Qabeentaan foormulaa ittaanu \"D15:D24\" diimaan haaluma kanaan mallattaa'uu danda'a."
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"hd_id3154704\n"
-"29\n"
-"help.text"
-msgid "When to Use Relative and Absolute References"
-msgstr "Yeroo Wabiilee Hirkatoo fi Of danda'oo Fayyadamnu"
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3147346\n"
-"8\n"
-"help.text"
-msgid "What distinguishes a relative reference? Assume you want to calculate in cell E1 the sum of the cells in range A1:B2. The formula to enter into E1 would be: =SUM(A1:B2). If you later decide to insert a new column in front of column A, the elements you want to add would then be in B1:C2 and the formula would be in F1, not in E1. After inserting the new column, you would therefore have to check and correct all formulas in the sheet, and possibly in other sheets."
-msgstr "Wabii hirkataa maaltu adda baasaa? Akka man'ee E1 keessatti ida'ama man'eelee hammangaa A1:B2 shallagdu jedhii yaadi. Foormulaan E1 keessatti galchitu:=IDA'A(A1:B2) dha. Yoo booda sarjaa haaraa fuuldura sarjaa A irratti saaguuf murteessitu, miseensonni dabaluu barbaaddu achiin B1:C2 keessatti ta'ee foormulaan F1 keessatti ta'a, E1 keessatti miti. Erga sarjaa haaraa saagdee booda, kanaafuu foormulaawwan wardii keessaa hunda mirkaneessuu fi sirreessuu qabda, akkasumas wardiilee biroo keessatti."
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3155335\n"
-"9\n"
-"help.text"
-msgid "Fortunately, $[officename] does this work for you. After having inserted a new column A, the formula =SUM(A1:B2) will be automatically updated to =SUM(B1:C2). Row numbers will also be automatically adjusted when a new row 1 is inserted. Absolute and relative references are always adjusted in $[officename] Calc whenever the referenced area is moved. But be careful if you are copying a formula since in that case only the relative references will be adjusted, not the absolute references."
-msgstr "Carraan, $[officename] hojii kana siif hojjeta. Erga sarjaa haaraa A saagdee booda, foormulaan =IDA'A(A1:B2) ufmaan gara =IDA'A(B1:C2) fooyya'a. Lakkoofsonni tarrees ufmaan yeroo tarree1 haaraa saagamu sirreeffamu. Wabiileen of danda'aa fi hirkataa $[officename] Calc keessatti hoggayyuu yeroo bal'inni wabeeffame deemsifame ni sirreeffamu. Garuu yoo foormulaa garagalchitu waan haala kanaan wabiileen hirkatoo qofti sirreeffamaniif, wabiilee of dandaa'oo waan hin taaneef of eeggadhu."
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3145791\n"
-"39\n"
-"help.text"
-msgid "Absolute references are used when a calculation refers to one specific cell in your sheet. If a formula that refers to exactly this cell is copied relatively to a cell below the original cell, the reference will also be moved down if you did not define the cell coordinates as absolute."
-msgstr "Wabiileen of danda'oon yeroo shallaggiin maadhee murtaa'e tokko wardii kee keessatti wabeeffatu fayyadu. Yoo foormulaan sirriitti maadhee kana wabeeffatu hirkataan gara maadhee jala maadhee jalqabaatti garagalchame, wabiinis yoo koordineetii maadhee akka of danda'aatti hin qindeessine gara deema."
-
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3147005\n"
-"10\n"
-"help.text"
-msgid "Aside from when new rows and columns are inserted, references can also change when an existing formula referring to particular cells is copied to another area of the sheet. Assume you entered the formula =SUM(A1:A9) in row 10. If you want to calculate the sum for the adjacent column to the right, simply copy this formula to the cell to the right. The copy of the formula in column B will be automatically adjusted to =SUM(B1:B9)."
-msgstr "Yeroo tarreewwanii fi sarjaaleen saagaman irraa kan hafe, wabiileen yeroo foormulaan dura man'eelee murtaa'aa wabeeffatee jiru gara bal'ina wardii biraatti garagalchamu jijjiiramuu danda'a. Akka foormulaa =IDA'A(A1:A9) tarree 10 keessa galchiteetti yaadi. Yoo ida'ama sarjaa wal cinaa gara mirgaatiif shallaguu barbaadde, salphumatti foormulaa kana man'ee keessatti gara gara mirgaatti garagalchi. Garagalchi foormulaa sarjaa B keessaa ufmaan gara =IDA'A(B1:B9) sirreeffama."
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"tit\n"
-"help.text"
-msgid "Moving Cells by Drag-and-Drop"
-msgstr "Man'eelee harkisaa-fi-kaayuun Deemsisuu"
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"bm_id3155686\n"
-"help.text"
-msgid "<bookmark_value>drag and drop; moving cells</bookmark_value><bookmark_value>cells; moving by drag and drop </bookmark_value><bookmark_value>columns;moving by drag and drop</bookmark_value><bookmark_value>moving;cells by drag and drop</bookmark_value><bookmark_value>inserting;cells, by drag and drop</bookmark_value>"
-msgstr "<bookmark_value>harkisii-kaa'i; man'eelee siiqsuu</bookmark_value><bookmark_value>man'eelee; harkisii-kaa'iin siiqsuu</bookmark_value><bookmark_value>tarjaawwan; harkisii-kaa'iin siiqsuu</bookmark_value><bookmark_value>siiqsuu;man'eelee harkisii-kaa'iin</bookmark_value><bookmark_value>saaguu;man'eelee, harkisii-kaa'iin</bookmark_value>"
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"hd_id986358\n"
-"help.text"
-msgid "<variable id=\"move_dragdrop\"><link href=\"text/scalc/guide/move_dragdrop.xhp\">Moving Cells by Drag-and-Drop</link></variable>"
-msgstr "<variable id=\"move_dragdrop\"><link href=\"text/scalc/guide/move_dragdrop.xhp\">Maadheelee harkisaa-fi-kaayuun Deemsisuu</link></variable>"
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id2760093\n"
-"help.text"
-msgid "When you drag-and-drop a selection of cells on a Calc sheet, the cells normally overwrite the existing cells in the area where you drop. This is the normal <emph>overwrite mode</emph>."
-msgstr "Yeroo filannoo man'eelee wardii Calc irratti harkistee-keessu, man'eeleen bal'ina keessa buustu keessatti man'eelee jiran durtiin ni irrabu. Kun <emph>haalata irrabuu</emph> baratamaa dha."
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id9527268\n"
-"help.text"
-msgid "When you hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key while releasing the mouse button, you enter the <emph>insert mode</emph>."
-msgstr "Yeroo furtuu <switchinline select=\"sys\"><caseinline select=\"MAC\">Dirqala</caseinline><defaultinline>Alt</defaultinline></switchinline> gad qabdu hantuutee gad dhiisuudhaan, <emph>haalata saaguu</emph> galchita."
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id79653\n"
-"help.text"
-msgid "In insert mode, the existing cells where you drop will be shifted to the right or to the bottom, and the dropped cells are inserted into the now empty positions without overwriting."
-msgstr "Haalata saaguu keessatti, man'eeleen jiran bakka itti buuftu gara mirgaatti ykn gadiitti dhiibamu, akkasumas man'eeleen buufaman qubannoo amma duwwaa keessatti osoo hin irrabin saagamu."
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id8676717\n"
-"help.text"
-msgid "The surrounding box of the moved cells looks different in insert mode."
-msgstr "Sanduuqni naannoo man'eelee deemsifamanii haalata saaguu keessatti adda fakkaata."
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id3968932\n"
-"help.text"
-msgid "In overwrite mode you see all four borders around the selected area. In insert mode you see only the left border when target cells will be shifted to the right. You see only the upper border when target cells will be shifted down."
-msgstr "Haalata irrabuu keessatti handaarota naannoo bal'ina filatamee afran mara argita. Haalata saaguu keessatti handaara bitaa qofa yeroo man'eeleen galtee gara mirgaatti dhiibaman argita. Yeroo man'eeleen galtee gad dhiibaman handaara gubbaa qofa argita."
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id7399517\n"
-"help.text"
-msgid "Whether the target area will be shifted to the right or to the bottom depends on the distance between source and target cells, if you move within the same sheet. It depends on the number of horizontal or vertical cells in the moved area, if you move to a different sheet."
-msgstr "Akka bal'inni galtee gara mirgaatti ykn gara jalaatti maqu fageenya maadheelee maddaa fi galtee jidduu jiru irratti hundaa'a, yoo wardii tokko keessa deemsifte. Lakkoofsa maadheelee dalgaa ykn olee bal'ina deemsaa keessaa irratti hundaa'a, yoo gara wardii biraatti deemsifte."
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id8040406\n"
-"help.text"
-msgid "If you move cells in insert mode within the same row (only horizontally), then after insertion of the cells, all cells will be shifted to the left to fill the source area."
-msgstr "Yoo maadheelee haalata saaguu keessaa gara tarree tokko keessaatti deemsifte(dalga qofa), achiin saaga maadheelee booda, maadheeleen hundi bal'ina maddaa guutuuf gara bitaatti maqu."
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id2586748\n"
-"help.text"
-msgid "In both modes, you can hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key, or <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift keys while you release the mouse button to insert a copy or a link, respectively."
-msgstr ""
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id5814081\n"
-"help.text"
-msgid "Keys pressed while releasing the mouse button"
-msgstr "Furtuuwwan yeroo qabduun hantuutee gad dhiisamu tuqaman"
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id6581316\n"
-"help.text"
-msgid "Result"
-msgstr "Bu'aa"
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id9906613\n"
-"help.text"
-msgid "No key"
-msgstr "Furtuu Homaa"
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id2815637\n"
-"help.text"
-msgid "Cells are moved and overwrite the cells in the target area. Source cells are emptied."
-msgstr "Maadheeleen deemaniitu maadheelee bal'ina galtee keessaa irrabu. Maadheeleen maddaa duwwaa ta'u."
-
-#: move_dragdrop.xhp
-#, fuzzy
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id6161687\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key"
-msgstr "Furtuuwwan <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift"
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id4278389\n"
-"help.text"
-msgid "Cells are copied and overwrite the cells in the target area. Source cells stay as they are."
-msgstr "Maadheeleen garagalchamaniitu maadheelee bal'ina galtee keessaa irrabu. Maadheeleen maddaa akkuma duraatti hafu."
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id2805566\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift keys"
-msgstr "Furtuuwwan <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift"
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id5369121\n"
-"help.text"
-msgid "Links to the source cells are inserted and overwrite the cells in the target area. Source cells stay as they are."
-msgstr "Geessituuwwan gara maadheelee maddaa saagamaniitu maadheelee bal'ina galtee keessaa irrabu. Maadheeleen maddaa akkuma duraatti hafu."
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id9518723\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key"
-msgstr "Furtuu <switchinline select=\"sys\"><caseinline select=\"MAC\">Dirqala</caseinline><defaultinline>Alt</defaultinline></switchinline>"
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id2926419\n"
-"help.text"
-msgid "Cells are moved and shift the cells in the target area to the right or to the bottom. Source cells are emptied, except if you move within the same rows on the same sheet."
-msgstr "Man'eeleen deemaniitu man'eelee bal'ina galtee keessaa gara mirgaatti ykn gadiitti dhiibu. Man'eeleen maddaa, yoo tarreewwan tokko keessa wardii tokko irratti deemsiste malee duwwaa ta'u."
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id4021423\n"
-"help.text"
-msgid "If you move within the same rows on the same sheet, the cells in the target area shift to the right, and then the whole row shifts to fill the source area."
-msgstr "Yoo tarree tokko keessatti wardii tokko irratti deemsisuu barbaadde, maadheeleen bal'ina galtee keessaa gara mirgaatti maqu, achiin tarreen guutuun bal'ina maddaa guutuuf maqu."
-
-#: move_dragdrop.xhp
-#, fuzzy
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id2783898\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option+Command </caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline> keys"
-msgstr "Furtuuwwan <switchinline select=\"sys\"><caseinline select=\"MAC\">Dirqala+Ajaja</caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline>+Shift"
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id2785119\n"
-"help.text"
-msgid "Cells are copied and shift the cells in the target area to the right or to the bottom. Source cells stay as they are."
-msgstr "Man'eeleen garagalchamamaniitu man'eelee bal'ina galtee keessaa gara mirgaatti ykn gadiitti dhiibu.Man'eeleen maddaa akkuma duraatti hafu."
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id584124\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option+Command</caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline>+Shift keys"
-msgstr "Furtuuwwan <switchinline select=\"sys\"><caseinline select=\"MAC\">Dirqala+Ajaja</caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline>+Shift"
-
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id5590990\n"
-"help.text"
-msgid "Links to the source cells are inserted and shift the cells in the target area to the right or to the bottom. Source cells stay as they are."
-msgstr "Geessituuwwan gara maadheelee maddaa saagamaniitu maadheelee bal'ina galtee keessaa gara mirgaatti ykn gadiitti dhiibu. Maadheeleen maddaa akkuma duraatti hafu."
-
#: calculate.xhp
msgctxt ""
"calculate.xhp\n"
@@ -2425,7 +1515,6 @@ msgid "Calculating in Spreadsheets"
msgstr "Wardiilee keessatti shallaguu"
#: calculate.xhp
-#, fuzzy
msgctxt ""
"calculate.xhp\n"
"bm_id3150791\n"
@@ -2458,7 +1547,6 @@ msgid "Click in a cell, and type a number"
msgstr "Man'ee keessa cuqaasiitii lakkoofsa barreessi."
#: calculate.xhp
-#, fuzzy
msgctxt ""
"calculate.xhp\n"
"par_idN10656\n"
@@ -2507,7 +1595,6 @@ msgid "Type in a formula, for example, <item type=\"literal\">=A3 * A4 / 100.</i
msgstr "Foormulaa keessatti, fakkeenyaaf, <item type=\"literal\">=A3 * A4 / 100 barreessi.</item>"
#: calculate.xhp
-#, fuzzy
msgctxt ""
"calculate.xhp\n"
"par_idN1068B\n"
@@ -2531,84 +1618,133 @@ msgctxt ""
msgid "When you edit a formula, the new result is calculated automatically."
msgstr "Yeroo foormulaa gulaaltu,bu'aan haaraan ufmaan shallagama."
-#: text_rotate.xhp
+#: cell_enter.xhp
msgctxt ""
-"text_rotate.xhp\n"
+"cell_enter.xhp\n"
"tit\n"
"help.text"
-msgid "Rotating Text"
-msgstr "Barruu Naannessuu"
+msgid "Entering Values"
+msgstr "Gatiiwwan Galchuu"
-#: text_rotate.xhp
+#: cell_enter.xhp
msgctxt ""
-"text_rotate.xhp\n"
-"bm_id3151112\n"
+"cell_enter.xhp\n"
+"bm_id3150868\n"
"help.text"
-msgid "<bookmark_value>cells; rotating text</bookmark_value> <bookmark_value>rotating; text in cells</bookmark_value> <bookmark_value>text in cells; writing vertically</bookmark_value>"
-msgstr "<bookmark_value>man'eelee; barruu naannessuu</bookmark_value> <bookmark_value>naannessuu; barruu man'eelee keessaa</bookmark_value> <bookmark_value>barruu man'eelee keessaa; irraangadee barreessuu</bookmark_value>"
+msgid "<bookmark_value>values; inserting in multiple cells</bookmark_value> <bookmark_value>inserting;values</bookmark_value> <bookmark_value>cell ranges;selecting for data entries</bookmark_value> <bookmark_value>areas, see also cell ranges</bookmark_value>"
+msgstr "<bookmark_value>gatiiwwan; man'eelee baay'ee keessatti saaguu</bookmark_value> <bookmark_value>saaguu;gatiiwwan</bookmark_value> <bookmark_value>hangiilee man'ee;galfatoota deetaaf filachuu</bookmark_value> <bookmark_value>bal'inoota, hammangaawwan man'ees ilaali</bookmark_value>"
-#: text_rotate.xhp
+#: cell_enter.xhp
msgctxt ""
-"text_rotate.xhp\n"
-"hd_id3151112\n"
-"1\n"
+"cell_enter.xhp\n"
+"hd_id3405255\n"
"help.text"
-msgid "<variable id=\"text_rotate\"><link href=\"text/scalc/guide/text_rotate.xhp\" name=\"Rotating Text\">Rotating Text</link></variable>"
-msgstr "<variable id=\"text_rotate\"><link href=\"text/scalc/guide/text_rotate.xhp\" name=\"Rotating Text\">Barruu Naannessuu</link></variable>"
+msgid "<variable id=\"cell_enter\"><link href=\"text/scalc/guide/cell_enter.xhp\">Entering Values</link></variable>"
+msgstr "<variable id=\"cell_enter\"><link href=\"text/scalc/guide/cell_enter.xhp\">Gatiiwwan Galchuu</link></variable>"
-#: text_rotate.xhp
+#: cell_enter.xhp
msgctxt ""
-"text_rotate.xhp\n"
-"par_id3145171\n"
-"2\n"
+"cell_enter.xhp\n"
+"par_id7147129\n"
"help.text"
-msgid "Select the cells whose text you want to rotate."
-msgstr "Maadheelee kan barruu isaanii naannessuu barbaaddu filadhu."
+msgid "Calc can simplify entering data and values into multiple cells. You can change some settings to conform to your preferences."
+msgstr "Calc deetaa fi gatiiwwan gara man'eelee baay'eetti galchuu salphisuu danda'a."
-#: text_rotate.xhp
+#: cell_enter.xhp
msgctxt ""
-"text_rotate.xhp\n"
-"par_id3155133\n"
-"3\n"
+"cell_enter.xhp\n"
+"hd_id5621509\n"
"help.text"
-msgid "Choose <emph>Format - Cells</emph>. You will see the <emph>Format Cells</emph> dialog."
-msgstr "<emph>Faayilii - Maxxansi</emph>fili.Qaaqa <emph>Maxxansi</emph> argita."
+msgid "To Enter Values Into a Range of Cells Manually"
+msgstr "Gatiiwwan Hangii Man'eewwaniitti Hujeekaan Galchuuf"
-#: text_rotate.xhp
+#: cell_enter.xhp
msgctxt ""
-"text_rotate.xhp\n"
-"par_id3155854\n"
-"4\n"
+"cell_enter.xhp\n"
+"par_id8200018\n"
"help.text"
-msgid "Click the <emph>Alignment</emph> tab."
-msgstr "Caancala <emph>Walqixxeessa</emph> cuqaasi."
+msgid "There are two features that assist you when you enter a block of data manually."
+msgstr "Yeroo garee deetaa harkaan galchitu amaloota si gargaaran lamatu jiru."
-#: text_rotate.xhp
+#: cell_enter.xhp
msgctxt ""
-"text_rotate.xhp\n"
-"par_id3147426\n"
-"5\n"
+"cell_enter.xhp\n"
+"hd_id1867427\n"
"help.text"
-msgid "In the <emph>Text orientation</emph> area use the mouse to select in the preview wheel the direction in which the text is to be rotated. Click <emph>OK</emph>."
-msgstr "Wiilii durargii keessatti kallattii barruun itti naannesamu filachuuf bal'ina <emph>Kallattii barruu</emph> keessatti hantuutee fayyadami. <emph>TOLE</emph> cuqaasi."
+msgid "Area Detection for New Rows"
+msgstr "Tarreewwan Haaraaf Bal'ina Baruu"
-#: text_rotate.xhp
+#: cell_enter.xhp
msgctxt ""
-"text_rotate.xhp\n"
-"par_id3148456\n"
-"7\n"
+"cell_enter.xhp\n"
+"par_id7908871\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cells\">Format - Cells</link>"
-msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cells\">Dhangii - Maadheelee</link>"
+msgid "In the row below a heading row, you can advance from one cell to the next with the Tab key. After you enter the value into the last cell in the current row, press Enter. Calc positions the cursor below the first cell of the current block."
+msgstr "Tarree jala tarree irraantoo keessatti, man'ee tokkoo gara itti aanutti socho'uuf furtuu Tab fayyadamuu dandeessa. Erga gatii man'ee dhumaatti tarree ammee keessatti galchitee booda, Enter dhiibi. Calc qaree jala man'ee jalqabaa kan garee ammee keessa qubachiisa."
-#: text_rotate.xhp
+#: cell_enter.xhp
msgctxt ""
-"text_rotate.xhp\n"
-"par_id3154944\n"
-"8\n"
+"cell_enter.xhp\n"
+"par_id6196783\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\">Format - Cells - Alignment</link>"
-msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\">Dhangii - Maadheelee - Walqixxeessa</link>"
+msgid "<image id=\"img_id6473586\" src=\"res/helpimg/area1.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id6473586\">area detection</alt></image>"
+msgstr "<image id=\"img_id6473586\" src=\"res/helpimg/area1.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id6473586\">bal'ina baruu</alt></image>"
+
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"par_id8118839\n"
+"help.text"
+msgid "In row 3, press Tab to advance from cell B3 to C3, D3, and E3. Then press Enter to advance to B4."
+msgstr "Tarree 3 keessatti, man'ee B3 gara C3,D3, fi E3 socho'uuf, Tab tuqi. Achiin gara B4 socho'uuf Enter dhiibi."
+
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"hd_id3583788\n"
+"help.text"
+msgid "Area Selection"
+msgstr "Filannoo Bal'inaa"
+
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"par_id2011780\n"
+"help.text"
+msgid "Use drag-and-drop to select the area where you want to input values. But start dragging from the last cell of the area and release the mouse button when you have selected the first cell. Now you can start to input values. Always press the Tab key to advance to the next cell. You will not leave the selected area."
+msgstr "Bal'ina bakka gatiiwwan naquuf barbaaddufilachuuf harkisii-kaayi fayyadami. Garuu harkisuu man'ee bal'inaa isa dhumaa irraa jalqabiitii qabduu hantuutee yeroo man'ee isa jalqabaa filatte gad dhiisi. Amma gatiiwwan galchuu jalqabuu dandeessa. Gara man'ee ittaanuu deemuuf hoggayyuu furtuu Tab tuqi. Bal'ina filatame keessaa hin baatu."
+
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"par_id7044282\n"
+"help.text"
+msgid "<image id=\"img_id2811365\" src=\"res/helpimg/area2.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id2811365\">area selection</alt></image>"
+msgstr "<image id=\"img_id2811365\" src=\"res/helpimg/area2.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id2811365\">filannoo bal'inaa</alt></image>"
+
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"par_id3232520\n"
+"help.text"
+msgid "Select the area from E7 to B3. Now B3 is waiting for your input. Press Tab to advance to the next cell within the selected area."
+msgstr "Bal'ina E7 hanga B3 filadhu.Amma B3 n naqa kee eeggata.Bal'ina filatame keessatti gara man'ee itti aanuutti socho'uuf Tab dhiibi."
+
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"hd_id8950163\n"
+"help.text"
+msgid "To Enter Values to a Range of Cells Automatically"
+msgstr "Gatiiwwan Hangii Man'eeleetti Hujeekaan Galchuuf"
+
+#: cell_enter.xhp
+msgctxt ""
+"cell_enter.xhp\n"
+"par_id633869\n"
+"help.text"
+msgid "See <link href=\"text/scalc/guide/calc_series.xhp\">Automatically Filling in Data Based on Adjacent Cells</link>."
+msgstr "See <link href=\"text/scalc/guide/calc_series.xhp\">Maadheelee wal cinaa irratti hundaa'uudhaan deetaa ufmaan guutuu</link>."
#: cell_protect.xhp
msgctxt ""
@@ -2654,7 +1790,6 @@ msgid "Protection can be provided by means of a password, but it does not have t
msgstr "Dhorki karaa iggitaatii kennamuu danda'a,garuu ta'uu hin qabu.Yoo iggita kennitee jiraatte,dhorki erga iggitni sirrii galchamee booda qofa baduu danda'a."
#: cell_protect.xhp
-#, fuzzy
msgctxt ""
"cell_protect.xhp\n"
"par_id3148576\n"
@@ -2698,7 +1833,6 @@ msgid "Select the protection options that you want. All options will be applied
msgstr ""
#: cell_protect.xhp
-#, fuzzy
msgctxt ""
"cell_protect.xhp\n"
"par_id31529866655\n"
@@ -2782,7 +1916,6 @@ msgid "If you forget your password, you cannot deactivate the protection. If you
msgstr "Yoo iggita kee irraanfatte,dhorka kaka'uumsala gochuu hin dandeessu.Yoo man'ee jijjiirraa tasaa irraa qofa dhrkuu barbaadde,dhorka wardii qindeessi, iggita garuu hin galchin."
#: cell_protect.xhp
-#, fuzzy
msgctxt ""
"cell_protect.xhp\n"
"par_id3153810\n"
@@ -2799,1190 +1932,448 @@ msgctxt ""
msgid "<embedvar href=\"text/shared/guide/digital_signatures.xhp#digital_signatures\"/>"
msgstr "<embedvar href=\"text/shared/guide/digital_signatures.xhp#digital_signatures\"/>"
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"tit\n"
-"help.text"
-msgid "Defining Database Ranges"
-msgstr "Hammangaa Kuusaa deetaa Qindeessuu"
-
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"bm_id3154758\n"
-"help.text"
-msgid "<bookmark_value>tables; database ranges</bookmark_value> <bookmark_value>database ranges; defining</bookmark_value> <bookmark_value>ranges; defining database ranges</bookmark_value> <bookmark_value>defining;database ranges</bookmark_value>"
-msgstr "<bookmark_value>gabateewwan; hammangaawwan kuusaa deetaa</bookmark_value> <bookmark_value>hammangaawwan kuusaa deetaa; qindeessuu</bookmark_value> <bookmark_value>hammangaawwan; hammangaawwan kuusaa deetaa qindeessuu</bookmark_value> <bookmark_value>qindeessuu;hammangaawwan kuusaa deetaa</bookmark_value>"
-
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"hd_id3154758\n"
-"31\n"
-"help.text"
-msgid "<variable id=\"database_define\"><link href=\"text/scalc/guide/database_define.xhp\" name=\"Defining Database Ranges\">Defining a Database Range</link></variable>"
-msgstr "<variable id=\"database_define\"><link href=\"text/scalc/guide/database_define.xhp\" name=\"Defining Database Ranges\">Hammangaa Kuusaa deetaa Qindeessuu</link></variable>"
-
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"par_id3153768\n"
-"81\n"
-"help.text"
-msgid "You can define a range of cells in a spreadsheet to use as a database. Each row in this database range corresponds to a database record and each cell in a row corresponds to a database field. You can sort, group, search, and perform calculations on the range as you would in a database."
-msgstr "Hammangaa maadheelee wardii keessaa akka kuusaa deetaatti fayyadamuuf qindeessuu dandeessa. Tokkoon tokkoo tarree kuusaa deetaa kana keessaa galmee kuusaa deetaatiin wal gita akkasumas tokkoon tokkoo tarree keessaa dirree kuusaa deetaatiin wal gita. Hammangaa keessatti akkuma kuusaa deetaa keessaatti fo'uu, gareessuu, barbaaduu, fi shallaggiiwwan hojjechuu dandeessa."
-
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"par_id3145801\n"
-"82\n"
-"help.text"
-msgid "You can only edit and access a database range in the spreadsheet that contains the range. You cannot access the database range in the %PRODUCTNAME Data Sources view."
-msgstr "Hammangaa kuusaa deetaa kan wardii hammangaa sana qabte keessaa qofa gulaaluu fi argachuu dandeessa.Hammangaa kuusaa deetaa argii maddawwan %PRODUCTNAME Data keessaa argachuu hin dandeessu."
-
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"par_idN10648\n"
-"help.text"
-msgid "To define a database range"
-msgstr "Hangii kuusdeetaa ibsuuf"
-
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"par_id3155064\n"
-"41\n"
-"help.text"
-msgid "Select the range of cells that you want to define as a database range."
-msgstr "Hammanga maadheelee kan akka hammanaga kuusaa deetaatti qindeessuu barbaaddu filadhu."
-
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"par_idN10654\n"
-"help.text"
-msgid "Choose <item type=\"menuitem\">Data - Define Range</item>."
-msgstr "<item type=\"menuitem\">Deetaa - Hammanga Qindeessi</item> filadhu."
-
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"par_id3153715\n"
-"72\n"
-"help.text"
-msgid "In the <emph>Name</emph> box, enter a name for the database range."
-msgstr "Sanduuqa <emph>Maqaa</emph> keessatti, maqaa hammangaa kuusaa deetaatiif galchi."
-
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"par_idN1066A\n"
-"help.text"
-msgid "Click <emph>More</emph>."
-msgstr "<emph>Dabalata</emph> cuqaasi."
-
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"par_id3154253\n"
-"42\n"
-"help.text"
-msgid "Specify the options for the database range."
-msgstr "Dirqaalaalee hammangaa kuusaa deetaatiif ifteessi."
-
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"par_idN10675\n"
-"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "<emph>TOLE</emph>Cuqaasi"
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"tit\n"
-"help.text"
-msgid "Naming Cells"
-msgstr "Maadheelee moggaasuu"
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"bm_id3147434\n"
-"help.text"
-msgid "<bookmark_value>cells; defining names</bookmark_value> <bookmark_value>names; defining for cells</bookmark_value> <bookmark_value>values; defining names</bookmark_value> <bookmark_value>constants definition</bookmark_value> <bookmark_value>variables; defining names</bookmark_value> <bookmark_value>cell ranges; defining names</bookmark_value> <bookmark_value>defining;names for cell ranges</bookmark_value> <bookmark_value>formulas; defining names</bookmark_value> <bookmark_value>addressing; by defined names</bookmark_value> <bookmark_value>cell names; defining/addressing</bookmark_value> <bookmark_value>references; by defined names</bookmark_value> <bookmark_value>allowed cell names</bookmark_value> <bookmark_value>renaming;cells</bookmark_value>"
-msgstr "<bookmark_value>man'eelee; maqaalee ibsuu</bookmark_value> <bookmark_value>maqaalee; man'eeleef ibsuu</bookmark_value> <bookmark_value>gatiiwwan; maqaalee ibsuu</bookmark_value> <bookmark_value>hiikoo seranaa</bookmark_value> <bookmark_value>jijjiiramtoota; maqaalee ibsuu</bookmark_value> <bookmark_value>hangiiwwan man'ee; maqaalee ibsuu</bookmark_value> <bookmark_value>ibsuu;maqaalee hangiiwwan man'eetiif</bookmark_value> <bookmark_value>foormulaawwan; maqaalee ibsuu</bookmark_value> <bookmark_value>teessessuu; maqaalee ibsamaniin</bookmark_value> <bookmark_value>maqaalee man'ee; ibsuu/teessessuu</bookmark_value> <bookmark_value>wabiilee; maqaalee ibsamaniin</bookmark_value> <bookmark_value>maqaalee man'ee eeyyamaman</bookmark_value> <bookmark_value>maqaa jijjiiruu;man'eewwan</bookmark_value>"
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"hd_id3147434\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"value_with_name\"><link href=\"text/scalc/guide/value_with_name.xhp\" name=\"Naming Cells\">Naming Cells</link></variable>"
-msgstr "<variable id=\"value_with_name\"><link href=\"text/scalc/guide/value_with_name.xhp\" name=\"Naming Cells\">Maadheelee moggaasuu</link></variable>"
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"hd_id4391918\n"
-"help.text"
-msgid "Allowed names"
-msgstr "Maqaalee eeyyamaman"
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id2129581\n"
-"help.text"
-msgid "Names in Calc can contain letters, numeric characters, and some special characters. Names must start with a letter or an underline character."
-msgstr "Maqaaleen Calc keessaa qubeelee,lakkoofsotaa, fi arfiilee addaa qabachuu danda'a.Maqaaleen arfiin ykn jalmuraan jalqabuu qabu."
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id1120029\n"
-"help.text"
-msgid "Allowed special characters:"
-msgstr "Arfiilee addaa eeyyamaman"
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id3362224\n"
-"help.text"
-msgid "underline (_)"
-msgstr "jalmura(_)"
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id4891506\n"
-"help.text"
-msgid "period (.) - allowed within a name, but not as first or last character"
-msgstr "tuqaa (.)-maqaa keessatti ni eeyyamama, garuu akka qubee jalqabaa ykn dhumaa hin ta'u"
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id2816553\n"
-"help.text"
-msgid "blank ( ) - allowed within a name, but not as first or last character, and not for a cell range"
-msgstr "duwwaa ( )-maqaa keessatti ni eeyyamama, garuu akka qubee jalqabaa ykn dhumaa hin ta'u, akkasumas hammangaa man'eef hin ta'u"
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id328989\n"
-"help.text"
-msgid "Names must not be the same as cell references. For example, the name A1 is invalid because A1 is a cell reference to the top left cell."
-msgstr "Maqaaleen akka qabii man'eetti tokko ta'uu hin qaban.Fakkeenyaaf,maqaan A1 sirrii miti sababni isaas A1 wabii man'ee gubbaa bitaa ti."
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id32898987\n"
-"help.text"
-msgid "Names must not start with the letter R followed by a number. See the ADDRESS function for more information."
-msgstr ""
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id4769737\n"
-"help.text"
-msgid "Names for cell ranges must not include blanks. Blanks are allowed within names for single cells, sheets and documents."
-msgstr "Maqaaleen hammangaawwan man'ee bakka duwwaa qabaachuu hin qaban.Bakki duwwaa kan eeyyamamu maqaalee man'eewwan,wardiilee fi galmeelee baaqqee keessatti dha."
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"hd_id1226233\n"
-"help.text"
-msgid "Naming cells and formulas"
-msgstr "Maadheelee fi foormulaa moggaasuu"
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id5489364\n"
-"help.text"
-msgid "A good way of making the references to cells and cell ranges in formulas legible is to give the ranges names. For example, you can name the range A1:B2 <emph>Start</emph>. You can then write a formula such as \"=SUM(Start)\". Even after you insert or delete rows or columns, $[officename] still correctly assigns the ranges identified by name. Range names must not contain any spaces."
-msgstr "Karaan man'eelee fi hammangaa man'eee foormulaa keessa jiru wabeeffachuu gaariin maqaalee hammangaawwanii kennuu dha.Fakkenyaaf,hammangaa A1:B2 <emph>Jalqaba</emph> jettee moggaasuu dandeessa.Achiin foormulaa kan akka \"=SUM(Jalqaba)\" barreessuu dandessa.Erga tarreewwan ykn sarjaawwan saagdee yookiin haqxee boodayyuu,$[officename] ammayyuu hammangaawwan maqaan addaan bahan sirriidhaan ramada.Maqaaleen hammangaa iddoolee qabaachuu hin qaban."
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id953398\n"
-"help.text"
-msgid "For example, it is much easier to read a formula for sales tax if you can write \"= Amount * Tax_rate\" instead of \"= A5 * B12\". In this case, you would name cell A5 \"Amount\" and cell B12 \"Tax_rate.\""
-msgstr "Fakkeenyaaf,foormulaa ashuuraa gurgurtaa dubbisuun yoo \"= Amount * Tax_rate\" barreessuu dandeesse,\"= A5 * B12\" irra baay'ee salphaa dha."
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id4889675\n"
-"help.text"
-msgid "Use the <emph>Define Names</emph> dialog to define names for formulas or parts of formulas you need more often. In order to specify range names,"
-msgstr "Maqaalee formulaawwan yookiin qaamolee foormulaawwanii kan yeroo baay'ee barbaadamaniif qindeessuuf qaaqa <emph>Maqaalee qindeessuu</emph>fayyadami.Maqaalee hammangaa qindeessuuf,"
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id3153954\n"
-"3\n"
-"help.text"
-msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
-msgstr "Man'ee yookiin hammanga man'eelee filadhu,achiin <emph>Saagi - Maqaalee - Qindeessi</emph> fili.Qaaqni <emph>Maqaalee qindeessi</emph> ni mul'ata."
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id3156283\n"
-"4\n"
-"help.text"
-msgid "Type the name of the selected area in the <emph>Name</emph> field. Click <emph>Add</emph>. The newly defined name appears in the list below. Click OK to close the dialog."
-msgstr "Maqaa bal'ina filatamee dirree <emph>Maqaa</emph> keessatti barreessi.<emph>Dabali</emph> cuqaasi.Maqaan haaraa qindaa'e tarree armaan gadii keessatti mul'ata.Qaaqa cufuuf TOLE cuqaasi."
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id5774101\n"
-"help.text"
-msgid "You can also name other cell ranges in this dialog by entering the name in the field and then selecting the respective cells."
-msgstr "Hammangaawwan maadhee biroos qaaqa kana keessatti maqaa dirree keesatti galchuudhaan moggaasuu fi achiin maadheelee isaanii filachuu dandeessa."
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id3154942\n"
-"5\n"
-"help.text"
-msgid "If you type the name in a formula, after the first few characters entered you will see the entire name as a tip."
-msgstr "Yoo maqaa foormulaa keessatti barreessite,erga qubeen muraasni barreeffamee maqaa guutuu akka qajeelchaatti argita."
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id3154510\n"
-"6\n"
-"help.text"
-msgid "Press the Enter key in order to accept the name from the tip."
-msgstr "Maqaa qajeelcha irraa fudhachuuf furtuu Enter tuqi."
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id3150749\n"
-"7\n"
-"help.text"
-msgid "If more than one name starts with the same characters, you can scroll through all the names using the Tab key."
-msgstr "Maqaan tokkoo ol qubeelee walfakkaataan yoo jalqabe,maqaalee hundarra furtuu Tab fayyadamuun marfachuu dandeessa."
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id3153711\n"
-"8\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
-msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Saagi - Maqaalee - Qindeessi</link>"
-
-#: cell_enter.xhp
+#: cell_unprotect.xhp
msgctxt ""
-"cell_enter.xhp\n"
+"cell_unprotect.xhp\n"
"tit\n"
"help.text"
-msgid "Entering Values"
-msgstr "Gatiiwwan Galchuu"
-
-#: cell_enter.xhp
-msgctxt ""
-"cell_enter.xhp\n"
-"bm_id3150868\n"
-"help.text"
-msgid "<bookmark_value>values; inserting in multiple cells</bookmark_value> <bookmark_value>inserting;values</bookmark_value> <bookmark_value>cell ranges;selecting for data entries</bookmark_value> <bookmark_value>areas, see also cell ranges</bookmark_value>"
-msgstr "<bookmark_value>gatiiwwan; man'eelee baay'ee keessatti saaguu</bookmark_value> <bookmark_value>saaguu;gatiiwwan</bookmark_value> <bookmark_value>hangiilee man'ee;galfatoota deetaaf filachuu</bookmark_value> <bookmark_value>bal'inoota, hammangaawwan man'ees ilaali</bookmark_value>"
-
-#: cell_enter.xhp
-msgctxt ""
-"cell_enter.xhp\n"
-"hd_id3405255\n"
-"help.text"
-msgid "<variable id=\"cell_enter\"><link href=\"text/scalc/guide/cell_enter.xhp\">Entering Values</link></variable>"
-msgstr "<variable id=\"cell_enter\"><link href=\"text/scalc/guide/cell_enter.xhp\">Gatiiwwan Galchuu</link></variable>"
-
-#: cell_enter.xhp
-msgctxt ""
-"cell_enter.xhp\n"
-"par_id7147129\n"
-"help.text"
-msgid "Calc can simplify entering data and values into multiple cells. You can change some settings to conform to your preferences."
-msgstr "Calc deetaa fi gatiiwwan gara man'eelee baay'eetti galchuu salphisuu danda'a."
-
-#: cell_enter.xhp
-msgctxt ""
-"cell_enter.xhp\n"
-"hd_id5621509\n"
-"help.text"
-msgid "To Enter Values Into a Range of Cells Manually"
-msgstr "Gatiiwwan Hangii Man'eewwaniitti Hujeekaan Galchuuf"
-
-#: cell_enter.xhp
-msgctxt ""
-"cell_enter.xhp\n"
-"par_id8200018\n"
-"help.text"
-msgid "There are two features that assist you when you enter a block of data manually."
-msgstr "Yeroo garee deetaa harkaan galchitu amaloota si gargaaran lamatu jiru."
-
-#: cell_enter.xhp
-msgctxt ""
-"cell_enter.xhp\n"
-"hd_id1867427\n"
-"help.text"
-msgid "Area Detection for New Rows"
-msgstr "Tarreewwan Haaraaf Bal'ina Baruu"
-
-#: cell_enter.xhp
-msgctxt ""
-"cell_enter.xhp\n"
-"par_id7908871\n"
-"help.text"
-msgid "In the row below a heading row, you can advance from one cell to the next with the Tab key. After you enter the value into the last cell in the current row, press Enter. Calc positions the cursor below the first cell of the current block."
-msgstr "Tarree jala tarree irraantoo keessatti, man'ee tokkoo gara itti aanutti socho'uuf furtuu Tab fayyadamuu dandeessa. Erga gatii man'ee dhumaatti tarree ammee keessatti galchitee booda, Enter dhiibi. Calc qaree jala man'ee jalqabaa kan garee ammee keessa qubachiisa."
-
-#: cell_enter.xhp
-msgctxt ""
-"cell_enter.xhp\n"
-"par_id6196783\n"
-"help.text"
-msgid "<image id=\"img_id6473586\" src=\"res/helpimg/area1.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id6473586\">area detection</alt></image>"
-msgstr "<image id=\"img_id6473586\" src=\"res/helpimg/area1.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id6473586\">bal'ina baruu</alt></image>"
-
-#: cell_enter.xhp
-msgctxt ""
-"cell_enter.xhp\n"
-"par_id8118839\n"
-"help.text"
-msgid "In row 3, press Tab to advance from cell B3 to C3, D3, and E3. Then press Enter to advance to B4."
-msgstr "Tarree 3 keessatti, man'ee B3 gara C3,D3, fi E3 socho'uuf, Tab tuqi. Achiin gara B4 socho'uuf Enter dhiibi."
+msgid "Unprotecting Cells"
+msgstr "Man'ee dhorkuu dhiisuu"
-#: cell_enter.xhp
+#: cell_unprotect.xhp
msgctxt ""
-"cell_enter.xhp\n"
-"hd_id3583788\n"
+"cell_unprotect.xhp\n"
+"bm_id3153252\n"
"help.text"
-msgid "Area Selection"
-msgstr "Filannoo Bal'inaa"
+msgid "<bookmark_value>cell protection; unprotecting</bookmark_value> <bookmark_value>protecting; unprotecting cells</bookmark_value> <bookmark_value>unprotecting cells</bookmark_value>"
+msgstr "<bookmark_value>dhorka man'ee; dhorkuu dhiisuu</bookmark_value> <bookmark_value>dhorkuu; man'eelee dhorkuu dhiisuu</bookmark_value> <bookmark_value>man'eelee dhorkuu dhiisuu</bookmark_value>"
-#: cell_enter.xhp
+#: cell_unprotect.xhp
msgctxt ""
-"cell_enter.xhp\n"
-"par_id2011780\n"
+"cell_unprotect.xhp\n"
+"hd_id3153252\n"
+"14\n"
"help.text"
-msgid "Use drag-and-drop to select the area where you want to input values. But start dragging from the last cell of the area and release the mouse button when you have selected the first cell. Now you can start to input values. Always press the Tab key to advance to the next cell. You will not leave the selected area."
-msgstr "Bal'ina bakka gatiiwwan naquuf barbaaddufilachuuf harkisii-kaayi fayyadami. Garuu harkisuu man'ee bal'inaa isa dhumaa irraa jalqabiitii qabduu hantuutee yeroo man'ee isa jalqabaa filatte gad dhiisi. Amma gatiiwwan galchuu jalqabuu dandeessa. Gara man'ee ittaanuu deemuuf hoggayyuu furtuu Tab tuqi. Bal'ina filatame keessaa hin baatu."
+msgid "<variable id=\"cell_unprotect\"><link href=\"text/scalc/guide/cell_unprotect.xhp\" name=\"Unprotecting Cells\">Unprotecting Cells</link> </variable>"
+msgstr "<variable id=\"cell_unprotect\"><link href=\"text/scalc/guide/cell_unprotect.xhp\" name=\"Unprotecting Cells\">maadheelee dhorkuu dhiisuu</link> </variable>"
-#: cell_enter.xhp
+#: cell_unprotect.xhp
msgctxt ""
-"cell_enter.xhp\n"
-"par_id7044282\n"
+"cell_unprotect.xhp\n"
+"par_id3151112\n"
+"15\n"
"help.text"
-msgid "<image id=\"img_id2811365\" src=\"res/helpimg/area2.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id2811365\">area selection</alt></image>"
-msgstr "<image id=\"img_id2811365\" src=\"res/helpimg/area2.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id2811365\">filannoo bal'inaa</alt></image>"
+msgid "Click the sheet for which you want to cancel the protection."
+msgstr "Wardii kan dhorka irraa mulquu barbaaddu cuqaasi."
-#: cell_enter.xhp
+#: cell_unprotect.xhp
msgctxt ""
-"cell_enter.xhp\n"
-"par_id3232520\n"
+"cell_unprotect.xhp\n"
+"par_id3149656\n"
+"16\n"
"help.text"
-msgid "Select the area from E7 to B3. Now B3 is waiting for your input. Press Tab to advance to the next cell within the selected area."
-msgstr "Bal'ina E7 hanga B3 filadhu.Amma B3 n naqa kee eeggata.Bal'ina filatame keessatti gara man'ee itti aanuutti socho'uuf Tab dhiibi."
+msgid "Select <emph>Tools - Protect Document</emph>, then choose <emph>Sheet</emph> or <emph>Document</emph> to remove the check mark indicating the protected status."
+msgstr "<emph>Miyoota - Galmee dhorki</emph> filadhu, achiin <emph>Wardii</emph> yookiin <emph>Galmee</emph> mallattoo filannoo kan haala dhorkaa mul'istu balleessuuf filadhu.."
-#: cell_enter.xhp
+#: cell_unprotect.xhp
msgctxt ""
-"cell_enter.xhp\n"
-"hd_id8950163\n"
+"cell_unprotect.xhp\n"
+"par_id3145171\n"
+"17\n"
"help.text"
-msgid "To Enter Values to a Range of Cells Automatically"
-msgstr "Gatiiwwan Hangii Man'eeleetti Hujeekaan Galchuuf"
+msgid "If you have assigned a password, enter it in this dialog and click <emph>OK</emph>."
+msgstr "Yoo iggita kennitee jiraatte,qaaqa kana keessatti galchitii <emph>TOLE</emph> cuqaasi."
-#: cell_enter.xhp
+#: cell_unprotect.xhp
msgctxt ""
-"cell_enter.xhp\n"
-"par_id633869\n"
+"cell_unprotect.xhp\n"
+"par_id3153771\n"
+"18\n"
"help.text"
-msgid "See <link href=\"text/scalc/guide/calc_series.xhp\">Automatically Filling in Data Based on Adjacent Cells</link>."
-msgstr "See <link href=\"text/scalc/guide/calc_series.xhp\">Maadheelee wal cinaa irratti hundaa'uudhaan deetaa ufmaan guutuu</link>."
+msgid "The cells can now be edited, the formulas can be viewed, and all cells can be printed until you reactivate the protection for the sheet or document."
+msgstr "Man'eeleen amma gulaalamuu danda'u,foormulaawwan argamuu danda'u,akkasumas man'eeleen marti amma ati dhorka lamuu wardiif yookiin galmeedhaaf kakaastutti maxxansamuu danda'u."
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
+"cellcopy.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Row Height or Column Width"
-msgstr "Hojjaa Tarree ykn Dalga Sarjaa jijjiiruu"
+msgid "Only Copy Visible Cells"
+msgstr "Maadheele mul'atana qofa garagalchi"
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
-"bm_id3145748\n"
+"cellcopy.xhp\n"
+"bm_id3150440\n"
"help.text"
-msgid "<bookmark_value>heights of cells</bookmark_value><bookmark_value>cell heights</bookmark_value><bookmark_value>cell widths</bookmark_value><bookmark_value>cells; heights and widths</bookmark_value><bookmark_value>widths of cells</bookmark_value><bookmark_value>column widths</bookmark_value><bookmark_value>rows; heights</bookmark_value><bookmark_value>columns; widths</bookmark_value><bookmark_value>changing;row heights/column widths</bookmark_value>"
-msgstr "<bookmark_value>hojjaawwan maadheelee</bookmark_value><bookmark_value>hojjaawwan maadhee</bookmark_value><bookmark_value>dalgeewwan maadhee</bookmark_value><bookmark_value>maadheelee; hojjaawwanii fi dalgeewwan</bookmark_value><bookmark_value>dalgeewwan maadheelee</bookmark_value><bookmark_value>dalgeewwan sarjaa</bookmark_value><bookmark_value>tarrreewwan; hojjaawwan</bookmark_value><bookmark_value>sarjaawwan; dalgeewwan</bookmark_value><bookmark_value>jijjiiruu;hojjaawwan tarree/dalgeewwan sarjaa</bookmark_value>"
+msgid "<bookmark_value>cells; copying/deleting/formatting/moving</bookmark_value> <bookmark_value>rows;visible and invisible</bookmark_value> <bookmark_value>copying; visible cells only</bookmark_value> <bookmark_value>formatting;visible cells only</bookmark_value> <bookmark_value>moving;visible cells only</bookmark_value> <bookmark_value>deleting;visible cells only</bookmark_value> <bookmark_value>invisible cells</bookmark_value> <bookmark_value>filters;copying visible cells only</bookmark_value> <bookmark_value>hidden cells</bookmark_value>"
+msgstr "<bookmark_value>man'eelee; garagalchuu/haquu/dhangeessuu/deemsisuu</bookmark_value> <bookmark_value>tarreewwan;mul'ataa fi kan hin mul'anne</bookmark_value> <bookmark_value>garagalchuu; man'eelee mul'atan qofa</bookmark_value> <bookmark_value>dhangeessuu;man'eelee mul'atan qofa</bookmark_value> <bookmark_value>deemsisuu;man'eelee mul'atan qofa</bookmark_value> <bookmark_value>haquu;man'eelee mul'atan qofa</bookmark_value> <bookmark_value>man'eelee hin mul'anne</bookmark_value> <bookmark_value>gingilchoota;man'eelee mul'atan qofa garagalchuu</bookmark_value> <bookmark_value>man'eelee dhokatoo</bookmark_value>"
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
-"hd_id3145748\n"
+"cellcopy.xhp\n"
+"hd_id3150440\n"
"1\n"
"help.text"
-msgid "<variable id=\"row_height\"><link href=\"text/scalc/guide/row_height.xhp\" name=\"Changing Row Height or Column Width\">Changing Row Height or Column Width</link></variable>"
-msgstr "<variable id=\"row_height\"><link href=\"text/scalc/guide/row_height.xhp\" name=\"Changing Row Height or Column Width\">Hojjaa Tarree ykn Dalga Sarjaa jijjiiruu</link></variable>"
+msgid "<variable id=\"cellcopy\"><link href=\"text/scalc/guide/cellcopy.xhp\" name=\"Only Copy Visible Cells\">Only Copy Visible Cells</link></variable>"
+msgstr "<variable id=\"cellcopy\"><link href=\"text/scalc/guide/cellcopy.xhp\" name=\"Only Copy Visible Cells\">Maadheele mul'atana qofa garagalchi</link></variable>"
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3154017\n"
+"cellcopy.xhp\n"
+"par_id3148577\n"
"2\n"
"help.text"
-msgid "You can change the height of the rows with the mouse or through the dialog."
-msgstr "Hojjaa tarreewwanii hantuuteen ykn karaa qaaqaan jijjiiruu dandeessa."
+msgid "Assume you have hidden a few rows in a cell range. Now you want to copy, delete, or format only the remaining visible rows."
+msgstr "Akka tarreewwan muraasa hammanga man'ee keessatti dhoksitetti yaadi.Amma tarreewwan mul'atoo hafan qofa garagalchuu,haquu, yookiin dhangeessuu barbaadda."
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3154702\n"
+"cellcopy.xhp\n"
+"par_id3154729\n"
"3\n"
"help.text"
-msgid "What is described here for rows and row height applies accordingly for columns and column width."
-msgstr "Kan asitti tarreewwanii fi hojjaa tarreetiif ibsame haaluma kanaan sarjaalee fi dalga sarjaatiif ni raawwata."
+msgid "$[officename] behavior depends on how the cells were made invisible, by a filter or manually."
+msgstr "Amalli $[officename] akkaataa man'eeleen itti dhoksaman irratti hundaa'a,gingilchaan yookiin harkaan."
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
-"hd_id3153963\n"
+"cellcopy.xhp\n"
+"par_id3155603\n"
"4\n"
"help.text"
-msgid "Using the mouse to change the row height or column width"
-msgstr "Hojjaa tarree ykn dalga sarjaa jijjiiruuf hantuutee fayyadamuu"
+msgid "Method and Action"
+msgstr "Malaa fi Gochaa"
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3154020\n"
+"cellcopy.xhp\n"
+"par_id3150751\n"
"5\n"
"help.text"
-msgid "Click the area of the headers on the separator below the current row, keep the mouse button pressed and drag up or down in order to change the row height."
-msgstr "Bal'ina irraantotaa addaan baasaa jala tarree ammee irraa cuqaasi, qabduu hantuutee qabii turi,akkasumas hojjaa tarree jijjiiruuf ol ykn gad harkisi."
+msgid "Result"
+msgstr "Bu'aa"
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3159237\n"
+"cellcopy.xhp\n"
+"par_id3149018\n"
"6\n"
"help.text"
-msgid "Select the optimal row height by double-clicking the separator below the row."
-msgstr "Addaan baasaa jala tarree jiru lamcuqaasuudhaan hojjaa tarree giddugaleessa filadhu."
+msgid "Cells were filtered by AutoFilters, standard filters or advanced filters."
+msgstr "Man'eeleen Gingilcha ufmaa,gingilcha durtii,yookiin gingilcha olaanaa dhaan gingilchamu."
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
-"hd_id3154659\n"
+"cellcopy.xhp\n"
+"par_id3150044\n"
"7\n"
"help.text"
-msgid "Using the dialog to change the row height or column width"
-msgstr "Hojjaa tarree ykn dalga sarjaa jijjiiruuf qaaqa fayyadamuu"
+msgid "Copy, delete, move, or format a selection of currently visible cells."
+msgstr "Filannoo man'elee amma mul'atanii garagalchi,haqi,deemsisi, yookiin dhangeessi."
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3150367\n"
+"cellcopy.xhp\n"
+"par_id3146918\n"
"8\n"
"help.text"
-msgid "Click the row so that you achieve the focus."
-msgstr "Akka xiyyeeffannoo argattuuf tarree cuqaasi."
-
-#: row_height.xhp
-msgctxt ""
-"row_height.xhp\n"
-"par_id3166432\n"
-"9\n"
-"help.text"
-msgid "Start the context menu on the header at the left-hand side."
-msgstr "Baafata haallee irraantoo gara harka bitaa jiru irraa kaachisi."
-
-#: row_height.xhp
-msgctxt ""
-"row_height.xhp\n"
-"par_id3150519\n"
-"10\n"
-"help.text"
-msgid "You will see the commands <emph>Row Height</emph> and <emph>Optimal row height</emph>. Choosing either opens a dialog."
-msgstr "Ajajoota <emph>Hojjaa</emph> fi <emph>Hojjaa tarree giddugaleessa</emph> argita. Isaan keessaa tokko filachuun qaaqa bana."
-
-#: row_height.xhp
-msgctxt ""
-"row_height.xhp\n"
-"par_id3154487\n"
-"11\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Row height\">Row height</link>"
-msgstr "<link href=\"text/shared/01/05340100.xhp\" name=\"Row height\">Hojjaa tarree</link>"
+msgid "Only the visible cells of the selection are copied, deleted, moved, or formatted."
+msgstr "Man'eelee mul'atoo filannichaa qofatu garagalchama,haqama,deemsifama, yookiin dhangeeffama."
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3149408\n"
+"cellcopy.xhp\n"
+"par_id3166427\n"
"12\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal row height\">Optimal row height</link>"
-msgstr "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal row height\">Hojjaa tarree giddugaleessa</link>"
+msgid "Cells were hidden using the <emph>Hide</emph> command in the context menu of the row or column headers, or through an <link href=\"text/scalc/01/12080000.xhp\" name=\"outline\">outline</link>."
+msgstr "Maadheeleen ajaja <emph>Dhoksi</emph> baafata haallee irraantoowwan tarree ykn sarjaa keessaatti fayyadamuudhaan, yookiin karaa <link href=\"text/scalc/01/12080000.xhp\" name=\"outline\">outline</link>dhoksamani."
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3153305\n"
+"cellcopy.xhp\n"
+"par_id3152990\n"
"13\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Column width\">Column width</link>"
-msgstr "<link href=\"text/shared/01/05340200.xhp\" name=\"Column width\">Dalga sarjaa</link>"
+msgid "Copy, delete, move, or format a selection of currently visible cells."
+msgstr "Filannoo man'elee amma mul'atanii garagalchi,haqi,deemsisi, yookiin dhangeessi."
-#: row_height.xhp
+#: cellcopy.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3153815\n"
+"cellcopy.xhp\n"
+"par_id3154371\n"
"14\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal column width\">Optimal column width</link>"
-msgstr "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal column width\">Dalga sarjaa giddugaleessa</link>"
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"tit\n"
-"help.text"
-msgid "Freezing Rows or Columns as Headers"
-msgstr "Tarreewwanii fi Sarjaalee akka Irraantotaa Dhaabuu"
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"bm_id3154684\n"
-"help.text"
-msgid "<bookmark_value>tables; freezing</bookmark_value><bookmark_value>title rows; freezing during table split</bookmark_value><bookmark_value>rows; freezing</bookmark_value><bookmark_value>columns; freezing</bookmark_value><bookmark_value>freezing rows or columns</bookmark_value><bookmark_value>headers; freezing during table split</bookmark_value><bookmark_value>scrolling prevention in tables</bookmark_value><bookmark_value>windows; splitting</bookmark_value><bookmark_value>tables; splitting windows</bookmark_value>"
-msgstr "<bookmark_value>gabateewwan; dhaabuu</bookmark_value><bookmark_value>tarrreewwan mataduree; yeroo addaan hira gabatee dhaabuu</bookmark_value><bookmark_value>tarreewwan; dhaabuu</bookmark_value><bookmark_value>sarjaalee; dhaabuu</bookmark_value><bookmark_value>tarreewwan ykn sarjaalee dhaabuu</bookmark_value><bookmark_value>irraantota; yeroo addaan hira gabatee dhaabuu</bookmark_value><bookmark_value>dhorka marfata gabatee keessaa</bookmark_value><bookmark_value>foddaalee; hiruu</bookmark_value><bookmark_value>gabateewwan; foddaalee hiruu</bookmark_value>"
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"hd_id3154684\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"line_fix\"><link href=\"text/scalc/guide/line_fix.xhp\" name=\"Freezing Rows or Columns as Headers\">Freezing Rows or Columns as Headers</link></variable>"
-msgstr "<variable id=\"line_fix\"><link href=\"text/scalc/guide/line_fix.xhp\" name=\"Freezing Rows or Columns as Headers\">Tarreewwanii fi Sarjaalee akka Irraantotaa Dhaabuu</link></variable>"
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3148576\n"
-"2\n"
-"help.text"
-msgid "If you have long rows or columns of data that extend beyond the viewable area of the sheet, you can freeze some rows or columns, which allows you to see the frozen columns or rows as you scroll through the rest of the data."
-msgstr "Yoo tarreewwan ykn sarjaalee deetaa dheeroo kan bal'ina wardii argamu ala ta'e qabaatte, dhaabuu dandeessa, kun sarjaalee ykn tarreewwan yeroo deetaa biroo keessa marfattu akka agartu si dandeessisa."
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3156441\n"
-"3\n"
-"help.text"
-msgid "Select the row below, or the column to the right of the row or column that you want to be in the frozen region. All rows above, or all columns to the left of the selection are frozen."
-msgstr "Tarree jalaa, ykn sarjaa mirga tarree ykn sarjaa bal'ina dhaabbii keessa akka ta'u barbaaddu filadhu. Tarreewwan gubbaa hundi, ykn sarjaaleen bitaa filannoo jiran hundi ni dhaabbatu."
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3153158\n"
-"13\n"
-"help.text"
-msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
-msgstr "Dalgaa fi irraan oleedhaan dhaabuuf, <emph>maadhee</emph> kan tarree jalaa fi mirga sarjaa dhaabuu barbaadduu filadhu."
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3156286\n"
-"4\n"
-"help.text"
-msgid "Choose <emph>Window - Freeze</emph>."
-msgstr "<emph>Foddaa - Dhaabi</emph> filadhu."
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3151073\n"
-"5\n"
-"help.text"
-msgid "To deactivate, choose <emph>Window - Freeze </emph>again."
-msgstr "Kakaala gochuuf, ammas <emph>Foddaa - Dhaabi </emph> filadhu."
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3155335\n"
-"7\n"
-"help.text"
-msgid "If the area defined is to be scrollable, apply the <emph>Window - Split</emph> command."
-msgstr "Yoo bal'inni qindaa'e akka marfatamu barbaadame, ajaja <emph>Foddaa - Hiri</emph> raawwadhu."
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3147345\n"
-"8\n"
-"help.text"
-msgid "If you want to print a certain row on all pages of a document, choose <emph>Format - Print ranges - Edit</emph>."
-msgstr "Yoo tarree wayii fuulota galmee mara irraa maxxansuu barbaadde, <emph>Dhangii - Hammangaawwan maxxansaa - Gulaali</emph> filadhu."
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3147004\n"
-"9\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"Window - Freeze\">Window - Freeze</link>"
-msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Window - Freeze\">Foddaa - Dhaabi</link>"
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3150088\n"
-"10\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"Window - Split\">Window - Split</link>"
-msgstr "<link href=\"text/scalc/01/07080000.xhp\" name=\"Window - Split\">Foddaa - Hiri</link>"
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3150304\n"
-"11\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Format - Print ranges - Edit</link>"
-msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Dhangii - Hammangaawwan maxxansaa - Gulaali</link>"
-
-#: address_auto.xhp
-msgctxt ""
-"address_auto.xhp\n"
-"tit\n"
-"help.text"
-msgid "Recognizing Names as Addressing"
-msgstr "Maqaalee akka teessessuutti beekuu"
-
-#: address_auto.xhp
-msgctxt ""
-"address_auto.xhp\n"
-"bm_id3148797\n"
-"help.text"
-msgid "<bookmark_value>automatic addressing in tables</bookmark_value> <bookmark_value>natural language addressing</bookmark_value> <bookmark_value>formulas; using row/column labels</bookmark_value> <bookmark_value>text in cells; as addressing</bookmark_value> <bookmark_value>addressing; automatic</bookmark_value> <bookmark_value>name recognition on/off</bookmark_value> <bookmark_value>row headers;using in formulas</bookmark_value> <bookmark_value>column headers;using in formulas</bookmark_value> <bookmark_value>columns; finding labels automatically</bookmark_value> <bookmark_value>rows; finding labels automatically</bookmark_value> <bookmark_value>recognizing; column and row labels</bookmark_value>"
-msgstr "<bookmark_value>gabateewwan keessatti ufmaan teessessuu</bookmark_value><bookmark_value>teessessuu afaan uumamaa</bookmark_value><bookmark_value>foormulaawwan; asxaawwan tarreetiin/sarjaatiin fayyadamuu</bookmark_value><bookmark_value>barruu man'eelee keessaa; akka teessessuutti</bookmark_value><bookmark_value>teessessuu; ufmaan</bookmark_value> <bookmark_value>beekumsa maqaa banuu/cufuu</bookmark_value> <bookmark_value>irraantota tarree;foormulaawwan keessatti fayyadamuu</bookmark_value> <bookmark_value>irraantota tarjaa;foormulaawwan keessatti fayyadamuu</bookmark_value> <bookmark_value>tarjaawwan; asxaawwan ufmaan argachuu</bookmark_value> <bookmark_value>tarreewwan; asxaawwan ufmaan argachuu</bookmark_value> <bookmark_value>beekuu; asxaawwan sarjaa fi tarree</bookmark_value>"
-
-#: address_auto.xhp
-msgctxt ""
-"address_auto.xhp\n"
-"hd_id3148797\n"
-"20\n"
-"help.text"
-msgid "<variable id=\"address_auto\"><link href=\"text/scalc/guide/address_auto.xhp\" name=\"Recognizing Names as Addressing\">Recognizing Names as Addressing</link></variable>"
-msgstr "<variable id=\"address_auto\"><link href=\"text/scalc/guide/address_auto.xhp\" name=\"Recognizing Names as Addressing\">Maqaalee akka teessessuutti beekuu</link></variable>"
-
-#: address_auto.xhp
-msgctxt ""
-"address_auto.xhp\n"
-"par_id3152597\n"
-"21\n"
-"help.text"
-msgid "You can use cells with text to refer to the rows or to the columns that contain the cells."
-msgstr "Tarreewwan yookiin sarjaawwan kan maadheelee qabatan wabeeffachuuf maadheelee barruu wajjinii fayyadamuu dandeessa."
-
-#: address_auto.xhp
-msgctxt ""
-"address_auto.xhp\n"
-"par_id3156283\n"
-"help.text"
-msgid "<image id=\"img_id3154942\" src=\"res/helpimg/names_as_addressing.png\" width=\"2.1291in\" height=\"0.8709in\" localize=\"true\"><alt id=\"alt_id3154942\">Example spreadsheet</alt></image>"
-msgstr "<image id=\"img_id3154942\" src=\"res/helpimg/names_as_addressing.png\" width=\"4.1291in\" height=\"1.6709in\" localize=\"true\"><alt id=\"alt_id3154942\">Wardii fakkeenyaa</alt></image>"
-
-#: address_auto.xhp
-msgctxt ""
-"address_auto.xhp\n"
-"par_id3154512\n"
-"22\n"
-"help.text"
-msgid "In the example spreadsheet, you can use the string <item type=\"literal\">'Column One'</item> in a formula to refer to the cell range <item type=\"literal\">B3</item> to <item type=\"literal\">B5</item>, or <item type=\"literal\">'Column Two'</item> for the cell range <item type=\"literal\">C2</item> to <item type=\"literal\">C5</item>. You can also use <item type=\"literal\">'Row One'</item> for the cell range <item type=\"literal\">B3</item> to <item type=\"literal\">D3</item>, or <item type=\"literal\">'Row Two'</item> for the cell range <item type=\"literal\">B4</item> to <item type=\"literal\">D4</item>. The result of a formula that uses a cell name, for example, <item type=\"literal\">SUM('Column One')</item>, is 600."
-msgstr "Wardii fakkeenyaa keessatti, diraa <item type=\"literal\">'sarjaa tokkoffaa'</item> foormulaa keessatti hammanga man'ee <item type=\"literal\">B3</item> hanga <item type=\"literal\">B5</item>, yookiin <item type=\"literal\">'sarjaa lammaffaa'</item> hammanga man'ee <item type=\"literal\">C2</item> hanga <item type=\"literal\">C5</item> wabeeffachuuf fayyadamuu dandeessa. <item type=\"literal\">'Tarree tokkoffaa'</item> hammanga man'ee <item type=\"literal\">B3</item> hanga <item type=\"literal\">D3</item> dhaaf, yookiin <item type=\"literal\">'Tarree lammaffaa'</item> hammanga man'ee <item type=\"literal\">B4</item> hanga <item type=\"literal\">D4</item> dhaafis fayyadamuu dandeessa . Bu'aan foormulaa kan maqaa man'ee, fakkeenyaaf, <item type=\"literal\">SUM('sarjaa tokkoffaa')</item> fayyadamu, 600 dha."
-
-#: address_auto.xhp
-msgctxt ""
-"address_auto.xhp\n"
-"par_id3155443\n"
-"24\n"
-"help.text"
-msgid "This function is active by default. To turn this function off, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate</emph> and clear the <emph>Automatically find column and row labels</emph> check box."
-msgstr ""
-
-#: address_auto.xhp
-msgctxt ""
-"address_auto.xhp\n"
-"par_id3149210\n"
-"37\n"
-"help.text"
-msgid "If you want a name to be automatically recognized by Calc, the name must start with a letter and be composed of alphanumeric characters. If you enter the name in the formula yourself, enclose the name in single quotation marks ('). If a single quotation mark appears in a name, you must enter a backslash in front of the quotation mark, for example, <item type=\"literal\">'Harry\\'s Bar'.</item>"
-msgstr "Yoo akka maqaan ufmaan Calc dhaan akka beekamu barbaadde,maqaan qubeen jalqabuu fi arfiilee katabbii ta'uu qaba. Ufuma keetiin maqaa foormulaa keessa yoo galchite,maqichi mallattoo waraabbii qeenxee (') keessatti cufi. Mallattoo waraabbiin qeenxee maqicha keessa yoo jiraate,fuuldura mallattoo warabbii waraabbii haxaarroo,fakkeenyaaf,<item type=\"literal\">'Harry\\'s Bar'.</item> galchuu qabda."
-
-#: filters.xhp
-msgctxt ""
-"filters.xhp\n"
-"tit\n"
-"help.text"
-msgid "Applying Filters"
-msgstr "Gingilcha Ufmaa raawwachuu"
-
-#: filters.xhp
-msgctxt ""
-"filters.xhp\n"
-"bm_id3153896\n"
-"help.text"
-msgid "<bookmark_value>filters; applying/removing</bookmark_value> <bookmark_value>rows;removing/redisplaying with filters</bookmark_value> <bookmark_value>removing;filters</bookmark_value>"
-msgstr "<bookmark_value>gingilchaawwan; fayyadamuu/haquu</bookmark_value> <bookmark_value>tarreewwan;gilginchaawwaniin haquu/lamagarsiisuu</bookmark_value> <bookmark_value>haquu;gingilchaadhaan</bookmark_value>"
-
-#: filters.xhp
-msgctxt ""
-"filters.xhp\n"
-"hd_id3153896\n"
-"70\n"
-"help.text"
-msgid "<variable id=\"filters\"><link href=\"text/scalc/guide/filters.xhp\" name=\"Applying Filters\">Applying Filters</link></variable>"
-msgstr "<variable id=\"filters\"><link href=\"text/scalc/guide/filters.xhp\" name=\"Applying Filters\">Gingilchaawwan raawwachuu</link></variable>"
-
-#: filters.xhp
-msgctxt ""
-"filters.xhp\n"
-"par_id3150869\n"
-"2\n"
-"help.text"
-msgid "Filters and advanced filters allow you to work on certain filtered rows (records) of a data range. In the spreadsheets in $[officename] there are various possibilities for applying filters."
-msgstr "Gingilchootnii fi Gingilchootni olaanoo tarreewwan hammangaa deetaa gingilchaman muraasa(galmeewwan) irratti hojjechuu si dandeessisu. Wardiilee $[officename] keessatti gingilchaawwan fayyadamuuf carraalee adda addaatu jiru."
-
-#: filters.xhp
-msgctxt ""
-"filters.xhp\n"
-"par_id3155131\n"
-"3\n"
-"help.text"
-msgid "One use for the <emph>AutoFilter</emph> function is to quickly restrict the display to records with identical entries in a data field."
-msgstr "Fayidaan dalagaa <emph>Gingilcha ufmaa</emph> inni tokko argama tarreewwan galfatoota dirree deetaa keessatti walfakkaatan saffisaan ittisuu dha."
-
-#: filters.xhp
-msgctxt ""
-"filters.xhp\n"
-"par_id3146119\n"
-"4\n"
-"help.text"
-msgid "In the <emph>Standard Filter</emph> dialog, you can also define ranges which contain the values in particular data fields. You can use the standard filter to connect the conditions with either a logical AND or a logical OR operator."
-msgstr "Qaaqa <emph>Gingilchi Durtii</emph> keessatti, hangiiwwan kan gatiiwwan dirreewwan deetaa murtaa'an qabatan qindeessuus dandeessa. Haalleen hanaga sadiitti ogeejjii yaayaa FI ykn YKN dhaan walqabsiisuuf gingilchaa durtii fayyadamuu dandeessa."
-
-#: filters.xhp
-msgctxt ""
-"filters.xhp\n"
-"par_id3150010\n"
-"5\n"
-"help.text"
-msgid "The <emph>Advanced filter</emph> allows up to a total of eight filter conditions. With advanced filters you enter the conditions directly into the sheet."
-msgstr "<emph>Gingilchaa olaanaa</emph> hanga haalota gingilchaa waliigalaa 8tti hayyama. Gingilchaawwan olaanoodhaan haalota kallattii wardiitti galchita."
-
-#: filters.xhp
-msgctxt ""
-"filters.xhp\n"
-"par_id9384746\n"
-"help.text"
-msgid "To remove a filter, so that you see all cells again, click inside the area where the filter was applied, then choose <item type=\"menuitem\">Data - Filter - Remove Filter</item>."
-msgstr "Gingilchaa haquuf, man'eewwan mara lamuu akka agartu, naannoo gingilchaan fayyadame keessatti cuqaasiitii <item type=\"menuitem\">Deetaa - Gingilchaa - Gingilchaa Haqi</item> filadhu."
-
-#: filters.xhp
-msgctxt ""
-"filters.xhp\n"
-"par_idN10663\n"
-"help.text"
-msgid "When you select multiple rows from an area where a filter was applied, then this selection can include rows that are visible and rows that are hidden by the filter. If you then apply formatting, or delete the selected rows, this action then applies only to the visible rows. The hidden rows are not affected."
-msgstr "Yeroo tarreewwan hedduu naannoo gingilchaan itti fayyadamerraa filattu, filannoon kun tarreewwan mul'atanii fi tarreewwan gingilchaadhaan dhoksaman dabalachuu danda'a. Ati yoo dhangeessuu fayyadamtu, ykn tarreewwan filataman haqxu, gochi kun tarreewwan mul'atan qofaarratti fayyada. Tarreewwan dhokatoo hin tuqaman."
-
-#: filters.xhp
-msgctxt ""
-"filters.xhp\n"
-"par_id218817\n"
-"help.text"
-msgid "This is the opposite to rows that you have hidden manually by the <emph>Format - Rows - Hide Rows</emph> command. Manually hidden rows are deleted when you delete a selection that contains them."
-msgstr "Kun faallaa tarreewwan ajaja <emph>Dhangii - Tarree - Tarreewwan Dhoksi</emph>tiin hujeekaan dhoksamaniiti."
+msgid "All cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted."
+msgstr "Man'eeleen filannichaa marti,man'eelee dhokatan dabalatee,ni garagalchamu,haqamu,deemsifamu, yookiin dhangeeffamu."
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
+"cellreference_dragdrop.xhp\n"
"tit\n"
"help.text"
-msgid "Automatically Calculating Series"
-msgstr "Walfaannee shallaguu ufmaa"
-
-#: calc_series.xhp
-msgctxt ""
-"calc_series.xhp\n"
-"bm_id3150769\n"
-"help.text"
-msgid "<bookmark_value>series; calculating</bookmark_value> <bookmark_value>calculating; series</bookmark_value> <bookmark_value>linear series</bookmark_value> <bookmark_value>growth series</bookmark_value> <bookmark_value>date series</bookmark_value> <bookmark_value>powers of 2 calculations</bookmark_value> <bookmark_value>cells; filling automatically</bookmark_value> <bookmark_value>automatic cell filling</bookmark_value> <bookmark_value>AutoFill function</bookmark_value> <bookmark_value>filling;cells, automatically</bookmark_value>"
-msgstr "<bookmark_value>walfaannee; shallaguu</bookmark_value> <bookmark_value>shallaguu; walfaannee</bookmark_value> <bookmark_value>walfaannee sorooroo</bookmark_value> <bookmark_value>walfaannee guddinaa</bookmark_value> <bookmark_value>walfaannee guyyaa</bookmark_value> <bookmark_value>shallaggii paawurii 2</bookmark_value> <bookmark_value>man'eelee; ufmaan guutuu</bookmark_value> <bookmark_value>man'eelee ufmaan guutuu</bookmark_value> <bookmark_value>dalagaa ufmaan guutuu</bookmark_value> <bookmark_value>guutuu;man'eelee, ufmaan</bookmark_value>"
-
-#: calc_series.xhp
-msgctxt ""
-"calc_series.xhp\n"
-"hd_id3150769\n"
-"6\n"
-"help.text"
-msgid "<variable id=\"calc_series\"><link href=\"text/scalc/guide/calc_series.xhp\" name=\"Automatically Calculating Series\">Automatically Filling in Data Based on Adjacent Cells</link></variable>"
-msgstr "<variable id=\"calc_series\"><link href=\"text/scalc/guide/calc_series.xhp\" name=\"Automatically Calculating Series\">Maadheelee bukkee irratti hundaa'uudhaan deetaa ufmaan guutuu</link></variable>"
-
-#: calc_series.xhp
-msgctxt ""
-"calc_series.xhp\n"
-"par_idN106A8\n"
-"help.text"
-msgid "You can automatically fill cells with data with the AutoFill command or the Series command."
-msgstr "Maadheelee ufmaan daataan ajaja ufmaan guutuudhaan yookiin ajaja walfaanneedhaan ufmaan guutuu dandeessa."
-
-#: calc_series.xhp
-msgctxt ""
-"calc_series.xhp\n"
-"par_idN106D3\n"
-"help.text"
-msgid "Using AutoFill"
-msgstr "Ufmaan guutuutti fayyadamuu"
-
-#: calc_series.xhp
-msgctxt ""
-"calc_series.xhp\n"
-"par_idN106D7\n"
-"help.text"
-msgid "AutoFill automatically generates a data series based on a defined pattern."
-msgstr "Guutni ufmaa walfaannee deetaa ufmaan sarxaa murtaa'e irratti hundaa'uudhaan uuma."
-
-#: calc_series.xhp
-msgctxt ""
-"calc_series.xhp\n"
-"par_id3154319\n"
-"7\n"
-"help.text"
-msgid "On a sheet, click in a cell, and type a number."
-msgstr "Wardii irratti, man'ee keessa cuqaasiitii, lakkoofsa barreessi."
+msgid "Referencing Cells by Drag-and-Drop"
+msgstr "Maadheelee harkisaa-fi-kaayuun wabeeffachuu"
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_idN106CB\n"
+"cellreference_dragdrop.xhp\n"
+"bm_id3154686\n"
"help.text"
-msgid "Click in another cell and then click back in the cell where you typed the number."
-msgstr "Maadhee biraa keessa cuqaasiitii achumaan maadhee bakka lakkoofsa itti barreessite deebisii cuqaasi."
+msgid "<bookmark_value>drag and drop; referencing cells</bookmark_value> <bookmark_value>cells; referencing by drag and drop </bookmark_value> <bookmark_value>references;inserting by drag and drop</bookmark_value> <bookmark_value>inserting;references, by drag and drop</bookmark_value>"
+msgstr "<bookmark_value>harkisii-kaa'i; man'eelee wabeeffachuu</bookmark_value> <bookmark_value>man'eelee; harkisii-kaa'iin wabeeffachuu </bookmark_value> <bookmark_value>wabiilee;harkisii-kaa'iin saaguu</bookmark_value> <bookmark_value>saaguu;wabiilee, harkisii-kaa'iidhaan</bookmark_value>"
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_id3145272\n"
+"cellreference_dragdrop.xhp\n"
+"hd_id3154686\n"
"16\n"
"help.text"
-msgid "Drag the fill handle in the bottom right corner of the cell across the cells that you want to fill, and release the mouse button."
-msgstr "Qabannoo guuta jala xiyyoo mirgaa maadhee dalga maadheelee kan guutuu barbaaddu harkisiitii qabduu hantuutee gallakkisi."
+msgid "<variable id=\"cellreference_dragdrop\"><link href=\"text/scalc/guide/cellreference_dragdrop.xhp\" name=\"Referencing Cells by Drag-and-Drop\">Referencing Cells by Drag-and-Drop</link></variable>"
+msgstr "<variable id=\"cellreference_dragdrop\"><link href=\"text/scalc/guide/cellreference_dragdrop.xhp\" name=\"Referencing Cells by Drag-and-Drop\">Maadheelee harkisaa-fi-kaayuun wabeeffachuu</link></variable>"
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_id3145801\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3156444\n"
"17\n"
"help.text"
-msgid "The cells are filled with ascending numbers."
-msgstr "Man'eeleen lakkoofsota oleedhaan guutamu."
+msgid "With the help of the Navigator you can reference cells from one sheet to another sheet in the same document or in a different document. The cells can be inserted as a copy, link, or hyperlink. The range to be inserted must be defined with a name in the original file so that it can be inserted in the target file."
+msgstr "Naannessaan gargaaramuudhaan man'eelee wardii tokko irraa isa biratti galmee tokko ykn addaa keessaa wabeeffachuu dandeessa.Man'eeleen akka garagalchaa,geessituutti saaguu dandeessa.Hammangaan saagamu maqaa isa faayilii jalqabaa keessaatiin akka faayilii galtee keessatti saagamuu danda'uuf qindaa'uu qaba."
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_idN106EE\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3152576\n"
+"25\n"
"help.text"
-msgid "To quickly create a list of consecutive days, enter <item type=\"literal\">Monday</item> in a cell, and drag the fill handle."
-msgstr "Tarree guyyoota walitti aanan saffisaan uumuuf, man'ee keessatti <item type=\"literal\">Wixata</item> galchiitii qabannoo guutaa harkisi."
+msgid "Open the document that contains the source cells."
+msgstr "Galmee maadheelee maddaa qabate bani."
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_id9720145\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3154011\n"
+"26\n"
"help.text"
-msgid "Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> if you do not want to fill the cells with different values."
-msgstr ""
+msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
+msgstr "Hammangaa maddaa akka hammangaatti kaa'uuf,man'eelee filadhuutii <emph>Saagi - Maqaalee - Qindeessi</emph>fili.Galmee maddaa olkaa'I, garuu hin cufin."
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_id3154490\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3151073\n"
"18\n"
"help.text"
-msgid "If you select two or more adjacent cells that contain different numbers, and drag, the remaining cells are filled with the arithmetic pattern that is recognized in the numbers. The AutoFill function also recognizes customized lists that are defined under <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</item>."
-msgstr ""
-
-#: calc_series.xhp
-msgctxt ""
-"calc_series.xhp\n"
-"par_idN10737\n"
-"help.text"
-msgid "You can double-click the fill handle to automatically fill all empty columns of the current data block. For example, first enter Jan into A1 and drag the fill handle down to A12 to get the twelve months in the first column. Now enter some values into B1 and C1. Select those two cells, and double-click the fill handle. This fills automatically the data block B1:C12."
-msgstr "Sarjaawwan duwwaa garee deetaa ammee hunda ufmaan guutuuf qabannoo guutaa mirgaan cuqaasuu dandeessa.Fakkeenyaaf,jalqaba Amajji A1 keessatti galchiitii baatiilee kudha lama sarjaa jalqabaa keessaa argachuuf qabannoo guutaa gadi A12 tti harkisi.Amma gatiiwwan muraasa gara B1 fi C1 galchi.Man'eelee lamaan sana filadhuutii qabannoo guutaa lamcuqaasi.Kun ufmaan garee deetaa B1:C12 guuta."
-
-#: calc_series.xhp
-msgctxt ""
-"calc_series.xhp\n"
-"par_idN10713\n"
-"help.text"
-msgid "Using a Defined Series"
-msgstr "Walfaannee qindaa'aan fayyadamuu"
-
-#: calc_series.xhp
-msgctxt ""
-"calc_series.xhp\n"
-"par_id3150749\n"
-"9\n"
-"help.text"
-msgid "Select the cell range in the sheet that you want to fill."
-msgstr "Hammanga maadhee wardii keessaa kan guutuu barbaaddu filadhu."
+msgid "Open the sheet in which you want to insert something."
+msgstr "Wardii kan keessatti waa galchuu barbaaddu bani."
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_id3154754\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3154732\n"
"19\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Edit - Fill - Series</item>."
-msgstr "<item type=\"menuitem\">Gulaali - Filadhu - Walfaannee</item> fili."
+msgid "Open the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>. In the lower box of the Navigator select the source file."
+msgstr "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Naannessa</link> bani. Sanduuqa naannessaa isa jalaa keessaa faayilii maddaa fili."
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_idN10716\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3150752\n"
+"22\n"
"help.text"
-msgid "Select the parameters for the series."
-msgstr "Ulaagaalee walfaanneedhaaf filadhu."
+msgid "In the Navigator, the source file object appears under \"Range names\"."
+msgstr "Naannessaa keessatti,waanti faayilii maddaa jala \"Maqaalee hammangaa\" tti mul'ata."
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_idN10731\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3154754\n"
+"27\n"
"help.text"
-msgid "If you select a <emph>linear</emph> series, the increment that you enter is <emph>added</emph> to each consecutive number in the series to create the next value."
-msgstr "Yoo walfaannee <emph>sorooroo</emph> filattu,daballi kan ati galchitu gara lakkoofsa walitti aanuutti walfaannee keessatti gatii itti aanu uumuuf <emph>ida'ama</emph>."
+msgid "Using the <emph>Drag Mode</emph> icon in Navigator, choose whether you want the reference to be a hyperlink, link, or copy."
+msgstr "Sajoo <emph>Haalata harkisaa</emph> naannessa keessaatti fayyadamuudhaan,akka wabiin geessituu, yookiin garagalcha akka ta'u barbaaddu fili."
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_idN1073C\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3154256\n"
+"23\n"
"help.text"
-msgid "If you select a <emph>growth</emph> series, the increment that you enter is <emph>multiplied</emph> by each consecutive number to create the next value."
-msgstr "Yoo walfaannee <emph>guddina</emph> filattu,daballi kan ati galchitu gara lakkoofsa walitti aanuutti walfaannee keessatti gatii itti aanu uumuuf <emph>baay'ata</emph>."
+msgid "Click the name under \"Range names\" in the Navigator, and drag into the cell of the current sheet where you want to insert the reference."
+msgstr "Maqaa jala \"Maqaalee hammangaa\" naannessaa keessaa cuqaasiitii, maadhee wardii ammee bakka wabii itti saaguu barbaadduutti harkisi."
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_idN10747\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3149565\n"
+"24\n"
"help.text"
-msgid "If you select a <emph>date</emph> series, the increment that you enter is added to the time unit that you specify."
-msgstr "Yoo walfaannee <emph>guyyaa</emph> filattu,daballi kan ati galchitu yuuniitii yeroo kan ifteessitutti dabalama."
+msgid "This method can also be used to insert a range from another sheet of the same document into the current sheet. Select the active document as source in step 4 above."
+msgstr "Malli kun hammangaa wardii biraa galmee sanaa irraa gara wardii ammeetti akka saagdu si fayyaduus danda'a."
-#: calc_series.xhp
+#: cellreferences.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_id3159173\n"
-"20\n"
+"cellreferences.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Sort lists</link>"
-msgstr "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Tarreewwan foyi</link>"
+msgid "Referencing a Cell in Another Document"
+msgstr "Maadhee galmee biraa keessatti wabeeffadhu"
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"tit\n"
+"cellreferences.xhp\n"
+"bm_id3147436\n"
"help.text"
-msgid "Deactivating Automatic Changes"
-msgstr "Jijjiirraa ufmaa kaka'a ala gochuu"
+msgid "<bookmark_value>sheet references</bookmark_value> <bookmark_value>references; to cells in other sheets/documents</bookmark_value> <bookmark_value>cells; operating in another document</bookmark_value> <bookmark_value>documents;references</bookmark_value>"
+msgstr "<bookmark_value>wabiilee wardii</bookmark_value> <bookmark_value>wabiilee; man'eelee wardiilee/galmeewwan biroo keessatti</bookmark_value> <bookmark_value>man'eelee; galmee biraa keessatti hojjechuu</bookmark_value> <bookmark_value>galmeewwan;wabiilee</bookmark_value>"
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"bm_id3149456\n"
+"cellreferences.xhp\n"
+"hd_id3147436\n"
+"9\n"
"help.text"
-msgid "<bookmark_value>deactivating; automatic changes</bookmark_value> <bookmark_value>tables; deactivating automatic changes in</bookmark_value> <bookmark_value>AutoInput function on/off</bookmark_value> <bookmark_value>text in cells;AutoInput function</bookmark_value> <bookmark_value>cells; AutoInput function of text</bookmark_value> <bookmark_value>input support in spreadsheets</bookmark_value> <bookmark_value>changing; input in cells</bookmark_value> <bookmark_value>AutoCorrect function;cell contents</bookmark_value> <bookmark_value>cell input;AutoInput function</bookmark_value> <bookmark_value>lowercase letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>capital letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>date formats;avoiding conversion to</bookmark_value> <bookmark_value>number completion on/off</bookmark_value> <bookmark_value>text completion on/off</bookmark_value> <bookmark_value>word completion on/off</bookmark_value>"
-msgstr "<bookmark_value>kaka'umsaleessuu; jijjiirraawwan ufmaa</bookmark_value> <bookmark_value>gabateewwan; keessatti jijjiirraawwan ufmaa kaka'umsaleessuu</bookmark_value> <bookmark_value>fankishinii OfiinNaqaa banuu/dhaamsuu</bookmark_value> <bookmark_value>barruu maan'eelee keessaa;fankishinii OfiinNaqaa</bookmark_value> <bookmark_value>man'eelee; fankishinii OfiinNaqaa barruu</bookmark_value> <bookmark_value>gargaarsa naqaa wardiilee keessatti</bookmark_value> <bookmark_value>jijjiiruu; naqa man'ee keessaa</bookmark_value> <bookmark_value>fankishinii OfiinSirreessaa;qabeentoota man'ee</bookmark_value> <bookmark_value>naqa man'ee;fankishinii OfiinNaqaa</bookmark_value> <bookmark_value>qubeelee xixiqqoo;fankishinii OfiinNaqaa (man'eelee keessatti)</bookmark_value> <bookmark_value>qubeelee guguddoo;fankishinii OfiinNaqaa (man'eelee keessatti)</bookmark_value> <bookmark_value>dhangiilee guyyaa;jijjiirraa dhiisuu</bookmark_value> <bookmark_value>guutinsa lakkoofsa banuu/dhaamsuu</bookmark_value> <bookmark_value>guutinsa barruu banuu/dhaamsuu</bookmark_value> <bookmark_value>guutinsa jechaa banuu/dhaamsuu</bookmark_value>"
+msgid "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\" name=\"Referencing Other Sheets\">Referencing Other Sheets</link></variable>"
+msgstr "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\" name=\"Referencing Other Sheets\">wardiilee biraa keessatti wabeeffachuu</link></variable>"
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"hd_id3149456\n"
-"1\n"
+"cellreferences.xhp\n"
+"par_id9663075\n"
"help.text"
-msgid "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\" name=\"Deactivating Automatic Changes\">Deactivating Automatic Changes</link></variable>"
-msgstr "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\" name=\"Deactivating Automatic Changes\">Jijjiirraa ufmaa kaka'a ala taasisuu</link></variable>"
+msgid "In a sheet cell you can show a reference to a cell in another sheet."
+msgstr "Maadhee wardii keessatti wabii gara maadhee galmee biraa keessaatti agarsiisuu dandeessa."
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3156442\n"
-"2\n"
+"cellreferences.xhp\n"
+"par_id1879329\n"
"help.text"
-msgid "By default, $[officename] automatically corrects many common typing errors and applies formatting while you type. You can immediately undo any automatic changes with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z."
-msgstr "Durtiidhaan, $[officename] ufmaan dogoggora barreessuu baratamoo sirreessuudhaan yeroo barreessitu dhangeessuu raawwata. Jijjiirraa ufmaa kamiyyuu <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z fayyadamuun battalumatti gaabbuu dandeessa."
+msgid "In the same way, a reference can also be made to a cell from another document provided that this document has already been saved as a file."
+msgstr "Haala walfakkaatuun,wabeeffachuun galmee biraa irraa gara man'eetti yoo galmee sun akka faayiliitti olkaa'amee ture ni taasifama."
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3145273\n"
-"3\n"
+"cellreferences.xhp\n"
+"hd_id7122409\n"
"help.text"
-msgid "The following shows you how to deactivate and reactivate the automatic changes in $[officename] Calc:"
-msgstr "Kan armaan gadii akkaataa jijjiirraa ufmaa $[officename] Calc keessatti kaka'a ala taasistuu fi lamuu kakaastu sitti agarsiisa:"
+msgid "To Reference a Cell in the Same Document"
+msgstr "Man'ee Galmee Tokko Keessatti Wabeessuu"
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"hd_id3145748\n"
-"4\n"
+"cellreferences.xhp\n"
+"par_id2078005\n"
"help.text"
-msgid "Automatic Text or Number Completion"
-msgstr "Guutinsa barruu yookiin lakkoofsa ufmaa"
+msgid "Open a new, empty spreadsheet."
+msgstr "Wardii haaraa,duwwaa bani."
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3154730\n"
-"5\n"
+"cellreferences.xhp\n"
+"par_id4943693\n"
"help.text"
-msgid "When making an entry in a cell, $[officename] Calc automatically suggests matching input found in the same column. This function is known as <emph>AutoInput</emph>."
-msgstr "Yeroo galfata man'ee keessatti galchitu,$[officename] Calc ufmaan naqa gitu kan sarjaa sana keessaa argame yaada dhiyeessa. Fankishiniin kun <emph>OfmaaNaqaa</emph> jedhama."
+msgid "By way of example, enter the following formula in cell A1 of Sheet1:"
+msgstr "Karaa fakkeenyaa,foormulaa armaan gadii man'ee A1 kan wardii1 keessatti galchi."
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3153878\n"
-"6\n"
+"cellreferences.xhp\n"
+"par_id9064302\n"
"help.text"
-msgid "To turn the AutoInput on and off, set or remove the check mark in front of <link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\"><emph>Tools - Cell Contents - AutoInput</emph></link>."
-msgstr "Naqa ufmaa banuuf/cufuuf, mallattoo filannoo <link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\"><emph>Miyoota - Qabiyyeewwan man'ee - Naqa ufmaa</emph></link> fuuldura jiru qindeessi yookiin balleessi."
+msgid "<item type=\"literal\">=Sheet2.A1</item>"
+msgstr "<item type=\"literal\">=Sheet2.A1</item>"
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"hd_id3146972\n"
-"21\n"
+"cellreferences.xhp\n"
+"par_id7609790\n"
"help.text"
-msgid "Automatic Conversion to Date Format"
-msgstr "Geeddarama ofmaa dhangii Guyyaatti"
+msgid "Click the <emph>Sheet 2</emph> tab at the bottom of the spreadsheet. Set the cursor in cell A1 there and enter text or a number."
+msgstr "Caancala <emph>Wardii 2</emph> jala wardii jiru cuqaasi.Qaree man'ee A1 keessa kaa'iitii barruu ykn lakkoofsa galchi."
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3153707\n"
-"22\n"
+"cellreferences.xhp\n"
+"par_id809961\n"
"help.text"
-msgid "$[officename] Calc automatically converts certain entries to dates. For example, the entry <emph>1.1</emph> may be interpreted as January 1 of the current year, according to the locale settings of your operating system, and then displayed according to the date format applied to the cell."
-msgstr "$[officename] Calc galfatoota muraasa ufmaan gara dhangii guyyaatti jijjiira. Fakkeenyaaf, galfatni <emph>1.1</emph> bara ammee keessatti akka amajjii 1 tti, akkaataa qindaa'inoota gitoo biyyaa sirna dalagaa keetti hiikamuu danda'a, achumaan akkaataa dhangii baraa maadhee irratti raawwateetti mul'ata."
+msgid "If you switch back to Sheet1, you will see the same content in cell A1 there. If the contents of Sheet2.A1 change, then the contents of Sheet1.A1 also change."
+msgstr "Yoo gara wardii1 deebite,qabiyyee sanuma man'ee A1 keessatti agarta.Yoo qabiyyeewwan Wardii2.A1 jijjiirame,qabiyyeewwan Wardii1.A1 ni jijjiiramu."
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3159267\n"
-"23\n"
+"cellreferences.xhp\n"
+"hd_id9209570\n"
"help.text"
-msgid "To ensure that an entry is interpreted as text, add an apostrophe at the beginning of the entry. The apostrophe is not displayed in the cell."
-msgstr "Galfatni akka barruutti hiikamu mirkanneessuuf,jalqaba galfataatti hudhaa dabali.Hudhaan man'ee keessatti hin mul'atu."
+msgid "To Reference a Cell in Another Document"
+msgstr "Man'ee Galmee Biroo Keessatti Wabeessuu"
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"hd_id3150043\n"
-"7\n"
+"cellreferences.xhp\n"
+"par_id5949278\n"
"help.text"
-msgid "Quotation Marks Replaced by Custom Quotes"
-msgstr "Mallattoolee waraabbii mallatoolee waraabbii maamiloon bakkabuufaman"
+msgid "Choose <emph>File - Open</emph>, to load an existing spreadsheet document."
+msgstr "Galmee wardii dura jiru fe'uuf ,<emph>Faayilii - Bani</emph> filadhu."
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3155333\n"
-"9\n"
+"cellreferences.xhp\n"
+"par_id8001953\n"
"help.text"
-msgid "Choose <emph>Tools - AutoCorrect Options</emph>. Go to the <emph>Localized Options</emph> tab and unmark <emph>Replace</emph>."
-msgstr "<emph>Meeshaalee - Dirqalaalee OfiinSirreessaa</emph> filadhu. Gara caancala <emph>Waraabbiilee Maamiloo</emph> deemiitii <emph>Bakkabuusi</emph> irraa mallattoo kaasi."
+msgid "Choose <emph>File - New</emph>, to open a new spreadsheet document. Set the cursor in the cell where you want to insert the external data and enter an equals sign to indicate that you want to begin a formula."
+msgstr "Galmee wardii haaraa banuuf,<emph>Faayilii - Haaraa</emph>filadhu.Qaree man'ee bakka deetaa alaa saaguu barbaaddu kaa'iitii foormulaa jalqabuu kee agarsiisuu barbaaduuf mallatttoo walqixaa gachi."
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"hd_id3149565\n"
-"11\n"
+"cellreferences.xhp\n"
+"par_id8571123\n"
"help.text"
-msgid "Cell Content Always Begins With Uppercase"
-msgstr "Qabeentaan maa'ee hogayyuu Qubee Guddaan Jalqaba"
+msgid "Now switch to the document you have just loaded. Click the cell with the data that you want to insert in the new document."
+msgstr "Amma gara galmee feetee turteetti tari.Man'ee kan deetaa ati galmee haaraa keessatti saaguuf barbaaddu qabate cuqaasi."
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3147001\n"
-"13\n"
+"cellreferences.xhp\n"
+"par_id8261665\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect Options</item>. Go to the <item type=\"menuitem\">Options</item> tab. Unmark <item type=\"menuitem\">Capitalize first letter of every sentence</item>."
-msgstr "<item type=\"menuitem\">Meeshaalee - Dirqalaalee OfiinSirreessaa</item> filadhu. Gara caancala <item type=\"menuitem\">Dirqaalaalee</item> deemi. <item type=\"menuitem\">Qubee jalqabaa hima hundaa guddeessi</item> irraa mallattoo kaasi."
+msgid "Switch back to the new spreadsheet. In the input line you will now see how $[officename] Calc has added the reference to the formula for you."
+msgstr "Gara wardii haaraatti lamuu tari.Sarara naqaa keessatti amma akkaataa $[officename] Calc wabii foormulaatti siif dabalu agarta."
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"hd_id3150345\n"
-"15\n"
+"cellreferences.xhp\n"
+"par_id5888241\n"
"help.text"
-msgid "Replace Word With Another Word"
-msgstr "Jecha Jecha Biraatiin Bakkabuusi"
+msgid "The reference to a cell of another document contains the name of the other document in single inverted commas, then a hash #, then the name of the sheet of the other document, followed by a point and the name of the cell."
+msgstr "Wabiin gara man'ee galmee biraa maqaa man'ee biraa qoodduu garagalaa baaqqee keessatti ,achiin hashii #,achiin maqaa wardii galmee biraa, tuqaa fi maqaa man'eetiin hordofee qabata."
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3166425\n"
-"17\n"
+"cellreferences.xhp\n"
+"par_id7697683\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect Options</item>. Go to the <item type=\"menuitem\">Replace</item> tab. Select the word pair and click <item type=\"menuitem\">Delete</item>."
-msgstr "<item type=\"menuitem\">Meeshaalee - Dirqalaalee OfiinSirreessaa</item> filadhu. Gara caancala <item type=\"menuitem\">Bakkabuusi</item> deemi. Cimdii jechaa filadhuutii <item type=\"menuitem\">Haqi</item> cuqaasi."
+msgid "Confirm the formula by clicking the green check mark."
+msgstr "Mallattoo filannoo magariisa cuqaasuudhaan foormulaa mirkaneessi."
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3152992\n"
-"19\n"
+"cellreferences.xhp\n"
+"par_id7099826\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\">Tools - Cell Contents - AutoInput</link>"
-msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\">Miyoota - Qabiyyeewwan maadhee - Naqa ufmaa</link>"
+msgid "If you drag the box in the lower right corner of the active cell to select a range of cells, $[officename] automatically inserts the corresponding references in the adjacent cells. As a result, the sheet name is preceded with a \"$\" sign to designate it as an absolute reference."
+msgstr "Yoo sanduuqa xiyyoo man'ee kaka'aa mirgaa jalaa keessaa hammangaa man'eelee filachuuf harkiste,$[officename] wabiilee isaanii ufmaan man'eelee cinaa keessatti saaga.Akka bu'aatti,maqaan wardii akka wabii sirriitti kaa'uuf mallattoo \"$\" durfama."
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3154368\n"
-"20\n"
+"cellreferences.xhp\n"
+"par_id674459\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"Tools - AutoCorrect\">Tools - AutoCorrect Options</link>"
-msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"Tools - AutoCorrect\">Meeshaa - Dirqalaalee OfiinSirreessaa</link>"
+msgid "If you examine the name of the other document in this formula, you will notice that it is written as a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>. This means that you can also enter a URL from the Internet."
+msgstr "Yoo maqaa galmee biraa foormulaa kana keessaa sakattaate,akka <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> tti barreeffamu hubatta.Kana jechuun URL interneetii irraa galchuu dandeessa jechuu dha."
#: cellreferences_url.xhp
msgctxt ""
@@ -4089,1364 +2480,554 @@ msgctxt ""
msgid "Under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040900.xhp\" name=\"Spreadsheet - General\"><item type=\"menuitem\">%PRODUCTNAME Calc - General</item></link> you can choose to have the update, when opened, automatically carried out either always, upon request or never. The update can be started manually in the dialog under <item type=\"menuitem\">Edit - Links</item>."
msgstr ""
-#: multi_tables.xhp
-msgctxt ""
-"multi_tables.xhp\n"
-"tit\n"
-"help.text"
-msgid "Navigating Through Sheets Tabs"
-msgstr "Caancaloota Wardiilee keessa Daddarbuu"
-
-#: multi_tables.xhp
-msgctxt ""
-"multi_tables.xhp\n"
-"bm_id3150769\n"
-"help.text"
-msgid "<bookmark_value>sheets; showing multiple</bookmark_value><bookmark_value>sheet tabs;using</bookmark_value><bookmark_value>views;multiple sheets</bookmark_value>"
-msgstr "<bookmark_value>wardiilee; baay'ee arguu</bookmark_value><bookmark_value>caancaloota wardii;fayyadamuu</bookmark_value><bookmark_value>argiiwwan;wardiilee baay'ee</bookmark_value>"
-
-#: multi_tables.xhp
-msgctxt ""
-"multi_tables.xhp\n"
-"hd_id3150769\n"
-"4\n"
-"help.text"
-msgid "<variable id=\"multi_tables\"><link href=\"text/scalc/guide/multi_tables.xhp\" name=\"Navigating Through Sheet Tabs\">Navigating Through Sheet Tabs</link> </variable>"
-msgstr "<variable id=\"multi_tables\"><link href=\"text/scalc/guide/multi_tables.xhp\" name=\"Navigating Through Sheet Tabs\">Caancaloota Wardiilee Keessa Naanna'uu</link> </variable>"
-
-#: multi_tables.xhp
-msgctxt ""
-"multi_tables.xhp\n"
-"par_id3153771\n"
-"3\n"
-"help.text"
-msgid "By default $[officename] displays three sheets \"Sheet1\" to \"Sheet3\", in each new spreadsheet. You can switch between sheets in a spreadsheet using the sheet tabs at the bottom of the screen."
-msgstr "Durtiidhaan $[officename] wardiilee sadii \"Wardii1\" hanga \"Wardii3\", tokkoon tokkoo wardii haaraa keessatti agarsiisa. Caancaloota wardii jala argii irra jiru fayyadamuudhaan wardiilee tokko irraa gara biraatti taruu dandeessa."
-
-#: multi_tables.xhp
-msgctxt ""
-"multi_tables.xhp\n"
-"par_idN106AF\n"
-"help.text"
-msgid "<image id=\"img_id4829822\" src=\"res/helpimg/sheettabs.png\" width=\"3.3335inch\" height=\"0.7638inch\" localize=\"true\"><alt id=\"alt_id4829822\">Sheet Tabs</alt></image>"
-msgstr "<image id=\"img_id4829822\" src=\"res/helpimg/sheettabs.png\" width=\"3.3335inch\" height=\"0.7638inch\" localize=\"true\"><alt id=\"alt_id4829822\">Caancaloota Wardii</alt></image>"
-
-#: multi_tables.xhp
-msgctxt ""
-"multi_tables.xhp\n"
-"par_id3153144\n"
-"help.text"
-msgid "<image id=\"img_id3156441\" src=\"res/helpimg/calcnav.png\" width=\"0.6563inch\" height=\"0.1457inch\"><alt id=\"alt_id3156441\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156441\" src=\"res/helpimg/calcnav.png\" width=\"0.6563inch\" height=\"0.1457inch\"><alt id=\"alt_id3156441\">Sajoo</alt></image>"
-
-#: multi_tables.xhp
-msgctxt ""
-"multi_tables.xhp\n"
-"par_id3147396\n"
-"5\n"
-"help.text"
-msgid "Use the navigation buttons to display all the sheets belonging to your document. Clicking the button on the far left or the far right displays, respectively, the first or last sheet tab. The middle buttons allow the user to scroll forward and backward through all sheet tabs. To display the sheet itself click on the sheet tab."
-msgstr "Wardiilee galmeen kee qabu mara mul'isuuf qabduuwwan naannessaatti fayyadami. Qabduu qarqara bitaa ykn mirgaa irratti cuqaasuun, duraaduubaan, caancala wardii jalqabaa ykn dhumaa mul'isa. Qabduuwwan jidduu fayyadamaa akka fuulduraa fi duubatti caancaloota wardii hunda keessa marfatu dandeessisu."
-
-#: multi_tables.xhp
-msgctxt ""
-"multi_tables.xhp\n"
-"par_id3149379\n"
-"6\n"
-"help.text"
-msgid "If there is insufficient space to display all the sheet tabs, you can increase it by pointing to the separator between the scrollbar and the sheet tabs, pressing the mouse button and, keeping the mouse button pressed, dragging to the right. In doing so you will be sharing the available space between the sheet tabs and horizontal scrollbar."
-msgstr "Yoo caancaloota wardii mara mul'isuuf bakkeen gahaan hin jirre, gara addaan baasaa jidduu kabala marfataa fi caancaloota wardii qubachiisuun, qabduu hantuutee tuquunii fi, qabduu hantuutee gad qabanii turuun, gara mirgaatti harkisuun dabaluu dandeessa."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"tit\n"
-"help.text"
-msgid "Applying Multiple Operations"
-msgstr "Dalagaalee baay'ee raawwachuu"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"bm_id3147559\n"
-"help.text"
-msgid "<bookmark_value>multiple operations</bookmark_value><bookmark_value>what if operations;two variables</bookmark_value><bookmark_value>tables; multiple operations in</bookmark_value><bookmark_value>data tables; multiple operations in</bookmark_value><bookmark_value>cross-classified tables</bookmark_value>"
-msgstr "<bookmark_value>qooyyaboota baay'ee</bookmark_value><bookmark_value>qooyyaboota yoo-ta'e-maali;jijjiiramoota lama</bookmark_value><bookmark_value>gabateewwan; keessatti qooyyaboota baay'ee</bookmark_value><bookmark_value>gabateewwan deetaa; keessatti qooyyaboota baay'ee</bookmark_value><bookmark_value>gabateewwan qaxxaamura-ramadaman</bookmark_value>"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"hd_id3147559\n"
-"5\n"
-"help.text"
-msgid "<variable id=\"multioperation\"><link href=\"text/scalc/guide/multioperation.xhp\" name=\"Applying Multiple Operations\">Applying Multiple Operations</link></variable>"
-msgstr "<variable id=\"multioperation\"><link href=\"text/scalc/guide/multioperation.xhp\" name=\"Applying Multiple Operations\">Dalagaalee baay'ee raawwachuu</link></variable>"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"hd_id3145171\n"
-"1\n"
-"help.text"
-msgid "Multiple Operations in Columns or Rows"
-msgstr "Dalagaalee baay'ee sarjaawwanii fi tarreewwan keessatti"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id4123966\n"
-"help.text"
-msgid "The <item type=\"menuitem\">Data - Multiple Operations</item> command provides a planning tool for \"what if\" questions. In your spreadsheet, you enter a formula to calculate a result from values that are stored in other cells. Then, you set up a cell range where you enter some fixed values, and the Multiple Operations command will calculate the results depending on the formula."
-msgstr "Ajajani <item type=\"menuitem\">Deetaa - Dalagaalee baay'ee </item>gaaffiilee \"yoo maali\" dhaaf meeshaa karooraa kenna.Wardii kee keessatti,bu'aa gatiiwwan kan man'eelee biroo keessatti kuufaman irraa shallaguuf foormulaa galchita.Achiin,hammangaa bakka gatiiwwan murtaa'oo galchitu qindeessita,ajajni dalagaalee baay'ee bu'aalee foormulaa irratti hundaa'uudhaan shallaga."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3156424\n"
-"2\n"
-"help.text"
-msgid "In the <emph>Formulas</emph> field, enter the cell reference to the formula that applies to the data range. In the <emph>Column input cell/Row input cell</emph> field, enter the cell reference to the corresponding cell that is part of the formula. This can be explained best by examples:"
-msgstr "Dirree <emph>Foormulaa</emph> keessatti,wabeeffata man'ee gara foormulaa kan hammangaa deetaa irratti raawwatu galchi.Dirree <emph>Man'ee naqa sarjaa/Man'ee naqa tarree</emph>keessatti,wabeeffata man'ee gara gita man'ee kan qaama foormulaa ta'etti galchi.Kun caalaatti fakkeenyaan ibsamuu danda'a."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"hd_id3159153\n"
-"7\n"
-"help.text"
-msgid "Examples"
-msgstr "Fakkeenyota"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3153189\n"
-"8\n"
-"help.text"
-msgid "You produce toys which you sell for $10 each. Each toy costs $2 to make, in addition to which you have fixed costs of $10,000 per year. How much profit will you make in a year if you sell a particular number of toys?"
-msgstr "Tooyii kan tokkoo tokkoo isaa $10 tiin gurgurtu$2 qopheessita. Tokkoon tokkoo tooyii hojjechuuf $2 baasa, gatii dhaabbataa waggaatti $10,000 dabalataan qabdu wajjin. Yoo tooyii lakkoofsa murtaa'aa gurgurte waggaa tokkotti bu'aa hangam argatta?"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id6478774\n"
-"help.text"
-msgid "<image id=\"img_id1621753\" src=\"res/helpimg/what-if.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id1621753\">what-if sheet area</alt></image>"
-msgstr "<image id=\"img_id1621753\" src=\"res/helpimg/what-if.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id1621753\">bal'ina wardii yoo-maali</alt></image>"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"hd_id3145239\n"
-"41\n"
-"help.text"
-msgid "Calculating With One Formula and One Variable"
-msgstr "Foormulaa tokkoo fi jijjiiramaa tokkoon shallaguu"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3146888\n"
-"42\n"
-"help.text"
-msgid "To calculate the profit, first enter any number as the quantity (items sold) - in this example 2000. The profit is found from the formula Profit=Quantity * (Selling price - Direct costs) - Fixed costs. Enter this formula in B5."
-msgstr "Bu'aa shallaguuf,jalqaba lakkoofsa kamiyyuu akka baay'inaatti(waanta gurgurame) galchi - fakkeenya kana keessatti 2000.Bu'aan foormulaa Bu'aa=Baay'ina * (Gatii gurgurtaa - gatiiwwan kallachaa) - gatiiwwan dhaabbataa irraa argama.Foormula kana B5 keessatti galchi."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3157875\n"
-"43\n"
-"help.text"
-msgid "In column D enter given annual sales, one below the other; for example, 500 to 5000, in steps of 500."
-msgstr "Sarjaa D keessatti gurgurtaa waggaa kenname,tokko jala tokkootti galchi;fakkeenyaaf,500 gara 5000,ejjattoowwan 500 keessatti"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3159115\n"
-"44\n"
-"help.text"
-msgid "Select the range D2:E11, and thus the values in column D and the empty cells alongside in column E."
-msgstr "Hammangaa D2:E11,akkaumas gatiiwwan sarjaa D fi man'eelee duwwaa bukkee sarjaa E keessaa filadhu."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3149723\n"
-"45\n"
-"help.text"
-msgid "Choose <emph>Data - Multiple operations</emph>."
-msgstr "<emph>Deetaa - Dalagaalee baay'ee</emph>."
-
-#: multioperation.xhp
-#, fuzzy
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3149149\n"
-"46\n"
-"help.text"
-msgid "With the cursor in the <emph>Formulas </emph>field, click cell B5."
-msgstr "Qaree dirree <emph>Foormulaawwan </emph>keessa kaa'uun,man'ee B5 cuqaasi."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3149355\n"
-"47\n"
-"help.text"
-msgid "Set the cursor in the <emph>Column input cell</emph> field and click cell B4. This means that B4, the quantity, is the variable in the formula, which is replaced by the selected column values."
-msgstr "Qaree dirree <emph>man'ee naqa sarjaa</emph> keessa kaa'iitii man'ee B4 cuqaasi.Kana jechuun B4,bal'inni,jijjiiramaa foormulaa keessatti gatiiwwan sarjaa filatamaniin bakka bu'u dha."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3149009\n"
-"48\n"
-"help.text"
-msgid "Close the dialog with <emph>OK</emph>. You see the profits for the different quantities in column E."
-msgstr "Qaaqa <emph>TOLE</emph> dhaan cufi.Bu'aalee bal'ina garaagaraa sarjaa E keessatti argita."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"hd_id3148725\n"
-"49\n"
-"help.text"
-msgid "Calculating with Several Formulas Simultaneously"
-msgstr "Foormulaawwan baay'eedhaan altokkotti shallaguu"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3146880\n"
-"50\n"
-"help.text"
-msgid "Delete column E."
-msgstr "Sarjaa E haqi."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3154675\n"
-"51\n"
-"help.text"
-msgid "Enter the following formula in C5: = B5 / B4. You are now calculating the annual profit per item sold."
-msgstr "Foormulaa armaan gadii C5: = B5 / B4 keessatti galchi.Amma bu'aa waggaa tokkoon tokkoo waanta gurguramee shallagaa jirta."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3148885\n"
-"52\n"
-"help.text"
-msgid "Select the range D2:F11, thus three columns."
-msgstr "Hammangaa D2:F11 filadhu, egasuu sarjaawwan sadii"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3147474\n"
-"53\n"
-"help.text"
-msgid "Choose <emph>Data - Multiple Operations</emph>."
-msgstr "<emph>Deetaa- Dalagaalee baay'ee </emph> filadhu."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3154846\n"
-"54\n"
-"help.text"
-msgid "With the cursor in the <emph>Formulas</emph> field, select cells B5 thru C5."
-msgstr "Qaree dirree <emph>Foormulaawwan</emph>keessa jiruun,man'eelee B5 hanga C5 filadhu."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3153931\n"
-"55\n"
-"help.text"
-msgid "Set the cursor in the <emph>Column input cell</emph> field and click cell B4."
-msgstr "Qaree dirree <emph>man'ee naqa sarjaa</emph>keessa kaa'iitii man'ee B4 cuqaasi."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3150862\n"
-"56\n"
-"help.text"
-msgid "Close the dialog with <emph>OK</emph>. You will now see the profits in column E and the annual profit per item in column F."
-msgstr "Qaaqa <emph>TOLE</emph> dhaan cufi.Amma bu'aalee sarjaa E keessaattii fi bu'aa waggaa waanta tokkoo sarjaa F keessatti agarta."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"hd_id3146139\n"
-"3\n"
-"help.text"
-msgid "Multiple Operations Across Rows and Columns"
-msgstr "Dalagaalee Baay'ee Tarreewwanii fi Sarjaalee Keessaa"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3148584\n"
-"4\n"
-"help.text"
-msgid "<item type=\"productname\">%PRODUCTNAME</item> allows you to carry out joint multiple operations for columns and rows in so-called cross-tables. The formula cell has to refer to both the data range arranged in rows and the one arranged in columns. Select the range defined by both data ranges and call the multiple operation dialog. Enter the reference to the formula in the <emph>Formulas</emph> field. The <emph>Row input cell</emph> and the <emph>Column input cell</emph> fields are used to enter the reference to the corresponding cells of the formula."
-msgstr "<item type=\"productname\">%PRODUCTNAME</item> dalagaalee walii baay'ee sarjaalee fi tarreewwan kan gabatee-cehaa jedhaman keessatti dalaguuf si dandeessisa. Maadheen foormulaa hammangaa deetaa tarreewwanii fi sarjaalee keessatti qindaa'an lachuu wabeeffachuu qaba. Hammangaa deetaan lamaaniin qindaa'e filadhuutii qaaqa dalagaa baay'ee waami. Wabii gara foormulaa dirree <emph>Foormulaa</emph> keessaatti galchi. Dirreewwan <emph>Maadhee naqa tarree</emph> fi the <emph>Maadhee naqa sarjaa</emph> wabii gara maadheelee foormulaa isaaniitti galchuuf fayyadu."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"hd_id3149949\n"
-"57\n"
-"help.text"
-msgid "Calculating with Two Variables"
-msgstr "Jijjiiramoota Lamaan Shallaguu"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3154808\n"
-"58\n"
-"help.text"
-msgid "Consider columns A and B of the sample table above. You now want to vary not just the quantity produced annually, but also the selling price, and you are interested in the profit in each case."
-msgstr "Sarjaa A fi B kan gabatee olii fudhu. Amma baay'ina waggaan oomishamu qofa jijjiiruu hin barbaaddu, gatii gurgurtaas malee, kanaafuu bu'aa irratti xiyyeeffachuu barbaadda."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3149731\n"
-"59\n"
-"help.text"
-msgid "Expand the table shown above. D2 thru D11 contain the numbers 500, 1000 and so on, up to 5000. In E1 through H1 enter the numbers 8, 10, 15 and 20."
-msgstr "Gabatee olii babal'isi. D2 hanaga D11 lakkoofsota 500, 1000 and kkf, hanga 5000 qabata. E1 hanga H1 lakkoofsota 8, 10, 15 fi 20 galchi."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3152810\n"
-"95\n"
-"help.text"
-msgid "Select the range D1:H11."
-msgstr "Hammangaa D1:H11 filadhu."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3153620\n"
-"96\n"
-"help.text"
-msgid "Choose <emph>Data - Multiple Operations</emph>."
-msgstr "<emph>Deetaa- Dalagaalee baay'ee </emph> filadhu."
-
-#: multioperation.xhp
-#, fuzzy
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3149981\n"
-"97\n"
-"help.text"
-msgid "With the cursor in the <emph>Formulas</emph> field, click cell B5."
-msgstr "Qaree dirree <emph>Foormulaawwan </emph>keessa kaa'uun,man'ee B5 cuqaasi."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3156113\n"
-"98\n"
-"help.text"
-msgid "Set the cursor in the <emph>Row input cell</emph> field and click cell B1. This means that B1, the selling price, is the horizontally entered variable (with the values 8, 10, 15 and 20)."
-msgstr "Qaree dirree <emph>Maadhee naqa tarree</emph> keessa kaa'iitii maadhee B1 cuqaasi. Kana jechuun B1, gatii gurgurtaa, jijjiiramaa dalga galchame dha(gatiiwwan 8, 10, 15 fi 20 wajjin)."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3154049\n"
-"99\n"
-"help.text"
-msgid "Set the cursor in the <emph>Column input cell</emph> field and click in B4. This means that B4, the quantity, is the vertically entered variable."
-msgstr "Qaree dirree <emph>Maadhee naqa sarjaa</emph> keessa kaa'iitii B4 keessa cuqaasi. Kana jechuun B4, baay'ina, jijjiiramaa irraan gadee galchame dha."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3149141\n"
-"100\n"
-"help.text"
-msgid "Close the dialog with OK. You see the profits for the different selling prices in the range E2:H11."
-msgstr "Qaaqa TOLE dhaan cufi. Bu'aawwan kan gatiiwwan gurgurtaa addaa addaa hammangaa E2:H11 keessaa argita."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3155104\n"
-"101\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple operations\">Multiple operations</link>"
-msgstr "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple operations\">Dalaagaalee baay'ee</link>"
-
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
+"cellstyle_by_formula.xhp\n"
"tit\n"
"help.text"
-msgid "Shortcut Keys (%PRODUCTNAME Calc Accessibility)"
-msgstr "Furtuuwwan Qaxxaamuraa (Gaheenya %PRODUCTNAME Calc)"
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"bm_id3145120\n"
-"help.text"
-msgid "<bookmark_value>accessibility; %PRODUCTNAME Calc shortcuts</bookmark_value><bookmark_value>shortcut keys;%PRODUCTNAME Calc accessibility</bookmark_value>"
-msgstr "<bookmark_value>gaheenya; qaxxaamuroota %PRODUCTNAME Calc</bookmark_value><bookmark_value>furtuuwwan qaxxaamuroota; gaheenya %PRODUCTNAME Calc</bookmark_value>"
+msgid "Assigning Formats by Formula"
+msgstr "Dhangiiwwan Foormulaadhaan Ramaduu"
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"hd_id3145120\n"
-"1\n"
+"cellstyle_by_formula.xhp\n"
+"bm_id3145673\n"
"help.text"
-msgid "<variable id=\"keyboard\"><link href=\"text/scalc/guide/keyboard.xhp\" name=\"Shortcut Keys (%PRODUCTNAME Calc Accessibility)\">Shortcut Keys (<item type=\"productname\">%PRODUCTNAME</item> Calc Accessibility)</link></variable>"
-msgstr "<variable id=\"keyboard\"><link href=\"text/scalc/guide/keyboard.xhp\" name=\"Shortcut Keys (%PRODUCTNAME Calc Accessibility)\">Furtuuwwan Qaxxaamuraa (<item type=\"productname\">%PRODUCTNAME</item> Gaheenya Calc)</link></variable>"
+msgid "<bookmark_value>formats; assigning by formulas</bookmark_value> <bookmark_value>cell formats; assigning by formulas</bookmark_value> <bookmark_value>STYLE function example</bookmark_value> <bookmark_value>cell styles;assigning by formulas</bookmark_value> <bookmark_value>formulas;assigning cell formats</bookmark_value>"
+msgstr "<bookmark_value>dhangiiwwan; foormulaawwaniin ramaduu</bookmark_value> <bookmark_value>dhangiiwwan man'ee; foormulaawwaniin ramaduu</bookmark_value> <bookmark_value>fakkeenya dalagaa HAALATA</bookmark_value> <bookmark_value>haalatoota man'ee;assifoormulaawwaniin ramaduu</bookmark_value> <bookmark_value>foormulaawwan;dhangiiwwan man'ee ramaduu</bookmark_value>"
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3154760\n"
+"cellstyle_by_formula.xhp\n"
+"hd_id3145673\n"
"13\n"
"help.text"
-msgid "Refer also to the lists of shortcut keys for <item type=\"productname\">%PRODUCTNAME</item> Calc and <item type=\"productname\">%PRODUCTNAME</item> in general."
-msgstr "Tarreewwan furtuuwwan qaxxaamuraa <item type=\"productname\">%PRODUCTNAME</item> Calc fi <item type=\"productname\">%PRODUCTNAME</item> dimshaashumatti ilaali."
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"hd_id3153360\n"
-"12\n"
-"help.text"
-msgid "Cell Selection Mode"
-msgstr "Haalata Filannoo Maadhee"
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"par_id3150870\n"
-"help.text"
-msgid "<image id=\"img_id3150439\" src=\"formula/res/refinp1.png\" width=\"0.1327inch\" height=\"0.1327inch\"><alt id=\"alt_id3150439\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150439\" src=\"formula/res/refinp1.png\" width=\"0.1327inch\" height=\"0.1327inch\"><alt id=\"alt_id3150439\">Sajoo</alt></image>"
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"par_id3154319\n"
-"11\n"
-"help.text"
-msgid "In a text box that has a button to minimize the dialog, press <item type=\"keycode\">F2</item> to enter the cell selection mode. Select any number of cells, then press <item type=\"keycode\">F2</item> again to show the dialog."
-msgstr "Sanduuqa barruu akan qabduu qaaqa xiqqeessu qabu keessaati, haaalata filannoo maadhee galchuuf <item type=\"keycode\">F2</item> tuqi. Lakkoofsa maadheelee feete filadhu, achiin qaaqa agrsiisuuf ammas <item type=\"keycode\">F2</item> tuqi."
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"par_id3145272\n"
-"10\n"
-"help.text"
-msgid "In the cell selection mode, you can use the common navigation keys to select cells."
-msgstr "Haalata filannoo maadhee keessatti, maadheelee filachuuf furtuuwwan naannessaa baramoo fayyadamuu dandeessa."
+msgid "<variable id=\"cellstyle_by_formula\"><link href=\"text/scalc/guide/cellstyle_by_formula.xhp\" name=\"Assigning Formats by Formula\">Assigning Formats by Formula</link> </variable>"
+msgstr "<variable id=\"cellstyle_by_formula\"><link href=\"text/scalc/guide/cellstyle_by_formula.xhp\" name=\"Assigning Formats by Formula\">Dhangiiwwan Foormulaadhaan Ramaduu</link> </variable>"
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"hd_id3148646\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3150275\n"
"14\n"
"help.text"
-msgid "Controlling the Outline"
-msgstr "Toorii To'achuu"
+msgid "The STYLE() function can be added to an existing formula in a cell. For example, together with the CURRENT function, you can color a cell depending on its value. The formula =...+STYLE(IF(CURRENT()>3; \"Red\"; \"Green\")) applies the cell style \"Red\" to cells if the value is greater than 3, otherwise the cell style \"Green\" is applied."
+msgstr "Dalagaan HAALATA() foormulaa duraan man'ee keessa jirutti dabalamuu danda'a. Fakkeenyaaf, dalagaa AMMEE wajjin, gatii isaa irratti hundaa'uudhaan man'ee halleessuu dandeessa. Foormulaan =...+HAALATA(YOO(AMMEE()>3;\"Diimaa\";\"Magariisa\")) haalata man'ee \"Diimaa\" yoo gatiin irra guddaa 3 ta'e raawwata, ta'uu baannaan haalata man'ee \"Magariisa\" ni raawwata."
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3146120\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3151385\n"
"15\n"
"help.text"
-msgid "You can use the keyboard in <link href=\"text/scalc/01/12080000.xhp\" name=\"Outline\">Outline</link>:"
-msgstr "Gabatee cuqoo <link href=\"text/scalc/01/12080000.xhp\" name=\"Outline\">Toorii</link> keessaa fayyadamuu dandeessa:"
+msgid "If you would like to apply a formula to all cells in a selected area, you can use the <item type=\"menuitem\">Find & Replace</item> dialog."
+msgstr "Yoo foormulaa man'eelee bal'ina filatame keessaa hundatti rawwachuu barbaadde, qaaqa <item type=\"menuitem\">Barbaadii & Bakkabuusi</item> fayyadamuu dandeessa."
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3147394\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3149456\n"
"16\n"
"help.text"
-msgid "Press <item type=\"keycode\">F6</item> or <item type=\"keycode\">Shift+F6</item> until the vertical or horizontal outline window has the focus."
-msgstr "Hanga foddaan toorii olee ykn dalgaa xiyyeeffannaa argatutti <item type=\"keycode\">F6</item> ykn <item type=\"keycode\">Shift+F6</item> tuqi."
+msgid "Select all the desired cells."
+msgstr "Maadheelee feete hunda filadhu."
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3149379\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3148797\n"
"17\n"
"help.text"
-msgid "<item type=\"keycode\">Tab</item> - cycle through all visible buttons from top to bottom or from left to right."
-msgstr "<item type=\"keycode\">Tab</item> - qabduuwwan mul'atan keessa gubbaa gara jalaatti ykn bitaa gara mirgaatti marfata."
+msgid "Select the menu command <emph>Edit - Find & Replace</emph>."
+msgstr "Ajaja baafataa <emph>Gulaali - Argachuu & Bakka buusuu</emph> filadhu."
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3156286\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3150767\n"
"18\n"
"help.text"
-msgid "<item type=\"keycode\">Shift+Tab</item> - cycle through all visible buttons in the opposite direction."
-msgstr "<item type=\"keycode\">Shift+Tab</item> - qabduuwwan mul'atan irra kallattii faallaan marfata."
+msgid "For the <item type=\"menuitem\">Search for</item> term, enter: .<item type=\"literal\">*</item>"
+msgstr "Tarmii <item type=\"menuitem\">Barbaadi</item> dhaaf kana galchi: .<item type=\"literal\">*</item>"
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3149403\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3153770\n"
"19\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+1 to Command+8</caseinline><defaultinline>Ctrl+1 to Ctrl+8</defaultinline></switchinline> - show all levels up to the specified number; hide all higher levels."
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja+1 to Ajaja+8</caseinline><defaultinline>Ctrl+1 hanga Ctrl+8</defaultinline></switchinline> - sadarkaalee hunda hanga lakkoofsa murtaa'eetti agarsiisa; sadarkaalee olaanoo hunda ni dhoksa."
+msgid "\".*\" is a regular expression that designates the contents of the current cell."
+msgstr "\".*\" himannoo sirraawaa kan qabayyeewwan maadhee ammee agarsiisuu dha."
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3150329\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3153143\n"
"20\n"
"help.text"
-msgid "Use <item type=\"keycode\">+</item> or <item type=\"keycode\">-</item> to show or hide the focused outline group."
-msgstr "Garee toorii xiyyeeffataman agarsiisuuf ykn dhoksuuf <item type=\"keycode\">+</item> ykn <item type=\"keycode\">-</item> fayyadami."
+msgid "Enter the following formula in the <item type=\"menuitem\">Replace with</item> field: <item type=\"literal\">=&+STYLE(IF(CURRENT()>3;\"Red\";\"Green\"))</item>"
+msgstr "Foormulaa armaan gadii dirree <item type=\"menuitem\">Bakkabuusii</item> keessatti galchi: <item type=\"literal\">=&+STYLE(IF(CURRENT()>3;\"Red\";\"Green\"))</item>"
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3155446\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3146975\n"
"21\n"
"help.text"
-msgid "Press <item type=\"keycode\">Enter</item> to activate the focused button."
-msgstr "Qabduu xiyyeeffatame kakaasuuf <item type=\"keycode\">Enter</item> tuqi."
+msgid "The \"&\" symbol designates the current contents of the <emph>Search for</emph> field. The line must begin with an equal sign, since it is a formula. It is assumed that the cell styles \"Red\" and \"Green\" already exist."
+msgstr "Mallattoon \"&\" qabiyyeewwan ammee dirree <emph>Barbaadi</emph> agarsiisa. Sararri waan foormulaa ta'eef mallattoo wal qixaatiin eegaluu qaba. Akka haalatootni maadhee \"Diimaa\" fi \"Magariisa\" dura jiran tilmaamama."
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3154253\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3149262\n"
"22\n"
"help.text"
-msgid "Use <item type=\"keycode\">Up</item>, <item type=\"keycode\">Down</item>, <item type=\"keycode\">Left</item>, or <item type=\"keycode\">Right</item> arrow to cycle through all buttons in the current level."
-msgstr "Qabduuwwan hunda sadarkaa ammee keessa jiran marfachuuf xiyya <item type=\"keycode\">Up</item>, <item type=\"keycode\">Down</item>, <item type=\"keycode\">Left</item>, ykn <item type=\"keycode\">Right</item> fayyadami."
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"hd_id3147343\n"
-"8\n"
-"help.text"
-msgid "Selecting a Drawing Object or a Graphic"
-msgstr "Waanta Fakkisaa ykn Saxaatoo Filachuu"
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"par_idN107AA\n"
-"help.text"
-msgid "Choose View - Toolbars - Drawing to open the Drawing toolbar."
-msgstr "Kamshaa Fakkisaa banuuf Argi - Kamshaawwan - Fakkisaa filadhu."
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"par_id3155333\n"
-"7\n"
-"help.text"
-msgid "Press <item type=\"keycode\">F6</item> until the <emph>Drawing</emph> toolbar is selected."
-msgstr "<item type=\"keycode\">F6</item> dhiibi hanga kamshaan <emph>Fakkasaa</emph> filatamutti."
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"par_id3150345\n"
-"4\n"
-"help.text"
-msgid "If the selection tool is active, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter. This selects the first drawing object or graphic in the sheet."
-msgstr "Yoo meeshaan filannoo kaka'aa ta'e, <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter dhiibi. Kun waanta fakkisaa jalqabaa ykn saxaataa wardii keessaa filata."
+msgid "Mark the fields <link href=\"text/shared/01/02100000.xhp\" name=\"Regular expressions\"><emph>Regular expressions</emph></link> and <emph>Current selection only</emph>. Click <emph>Find All</emph>."
+msgstr "Dirreewwan <link href=\"text/shared/01/02100000.xhp\" name=\"Regular expressions\"><emph>Himannoowwan sirraawaa</emph></link> fi <emph>Filannoo ammee qofa</emph> mallattoo itti godhi.<emph>Hunda Argadhu</emph> cuqaasi."
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3159240\n"
-"3\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3144767\n"
+"24\n"
"help.text"
-msgid "With <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 you set the focus to the document."
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 dhaan fayyadamtee xiyyeeffannaa galmeef kennuu dandeessa."
+msgid "All cells with contents that were included in the selection are now highlighted."
+msgstr "Maadheeleen hundi kan qabiyyeewwan isaanii filannoo keessa gale amma ni shoolamu."
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3155379\n"
-"2\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3147127\n"
+"23\n"
"help.text"
-msgid "Now you can use <item type=\"keycode\">Tab</item> to select the next drawing object or graphic and <item type=\"keycode\">Shift+Tab</item> to select the previous one."
-msgstr "Waanta fakkisaa ykn saxaatoo ittaanu filachuuf <item type=\"keycode\">Tab</item> akkasumas kan duraa filachuuf <item type=\"keycode\">Shift+Tab</item> amma fayyadamuu dandeessa."
+msgid "Click <item type=\"menuitem\">Replace all</item>."
+msgstr "<item type=\"menuitem\">Hunda bakkabuusi</item> cuqaasi."
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
+"cellstyle_conditional.xhp\n"
"tit\n"
"help.text"
-msgid "Copying Formulas"
-msgstr "Foormulaawwan Garagalchuu"
-
-#: formula_copy.xhp
-msgctxt ""
-"formula_copy.xhp\n"
-"bm_id3151113\n"
-"help.text"
-msgid "<bookmark_value>formulas; copying and pasting</bookmark_value><bookmark_value>copying; formulas</bookmark_value><bookmark_value>pasting;formulas</bookmark_value>"
-msgstr "<bookmark_value>foormulaawwan; garagalchuu fi maxxansuu</bookmark_value><bookmark_value>garagalchuu; foormulaawwan</bookmark_value><bookmark_value>maxxansuu;foormulaawwan</bookmark_value>"
-
-#: formula_copy.xhp
-msgctxt ""
-"formula_copy.xhp\n"
-"hd_id3151113\n"
-"54\n"
-"help.text"
-msgid "<variable id=\"formula_copy\"><link href=\"text/scalc/guide/formula_copy.xhp\" name=\"Copying Formulas\">Copying Formulas</link></variable>"
-msgstr "<variable id=\"formula_copy\"><link href=\"text/scalc/guide/formula_copy.xhp\" name=\"Copying Formulas\">Foormulaawwan Garagalchuu</link></variable>"
+msgid "Applying Conditional Formatting"
+msgstr "Dhangeessuu Otoolaa Raawwachuu"
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3156424\n"
-"11\n"
+"cellstyle_conditional.xhp\n"
+"bm_id3149263\n"
"help.text"
-msgid "There are various ways to copy a formula. One suggested method is:"
-msgstr "Foormulaa garagalchuuf karaa adda addaatu jira. Malli dhiyeeffame tokko:"
+msgid "<bookmark_value>conditional formatting; cells</bookmark_value> <bookmark_value>cells; conditional formatting</bookmark_value> <bookmark_value>formatting; conditional formatting</bookmark_value> <bookmark_value>styles;conditional styles</bookmark_value> <bookmark_value>cell formats; conditional</bookmark_value> <bookmark_value>random numbers;examples</bookmark_value> <bookmark_value>cell styles; copying</bookmark_value> <bookmark_value>copying; cell styles</bookmark_value> <bookmark_value>tables; copying cell styles</bookmark_value>"
+msgstr "<bookmark_value>dhangeessuu otoolaa; man'eelee</bookmark_value> <bookmark_value>man'eelee; dhangeessuu otoolaa</bookmark_value> <bookmark_value>dhangeessuu; dhangeessuu otoolaa</bookmark_value> <bookmark_value>haalatoota;haalata otoolaa</bookmark_value> <bookmark_value>dhnagiiwwan man'ee;otoolaa</bookmark_value> <bookmark_value>lakkoofsota tasaa;fakkeenyota</bookmark_value> <bookmark_value>haalata man'ee; copying</bookmark_value> <bookmark_value>garagalchuu; cell styles</bookmark_value> <bookmark_value>gabateewwan; haalata man'ee garagalchuu</bookmark_value>"
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3150439\n"
-"30\n"
+"cellstyle_conditional.xhp\n"
+"hd_id3149263\n"
+"24\n"
"help.text"
-msgid "Select the cell containing the formula."
-msgstr "Maadhee foormulaa qabate filadhu."
+msgid "<variable id=\"cellstyle_conditional\"><link href=\"text/scalc/guide/cellstyle_conditional.xhp\" name=\"Applying Conditional Formatting\">Applying Conditional Formatting</link></variable>"
+msgstr "<variable id=\"cellstyle_conditional\"><link href=\"text/scalc/guide/cellstyle_conditional.xhp\" name=\"Applying Conditional Formatting\">Dhangeessuu Otoolaa Raawwachuua</link></variable>"
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3154319\n"
-"31\n"
+"cellstyle_conditional.xhp\n"
+"par_id3159156\n"
+"25\n"
"help.text"
-msgid "Choose <emph>Edit - Copy</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C to copy it."
-msgstr "<emph>Gulaali - Garagalchi</emph> filadhu, ykn garagalchuuf <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C dhiibi."
+msgid "Using the menu command <emph>Format - Conditional formatting</emph>, the dialog allows you to define up to three conditions per cell, which must be met in order for the selected cells to have a particular format."
+msgstr "Ajaja baafataa <emph>Dhangii - Dhangeessuu otoolaa</emph> fayyadamudhaan, qaaqni man'ee tokkoof haalleen hanga sadiitti qindeessuu si dandeessisa, man'eeleen filataman dhangii murtaa'aa qabaachuuf kun guutuu qaba."
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3159155\n"
-"32\n"
+"cellstyle_conditional.xhp\n"
+"par_id8039796\n"
"help.text"
-msgid "Select the cell into which you want the formula to be copied."
-msgstr "Maadhee foormulaan itti akka garagalchamu barbaadde filadhu."
+msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose <emph>Tools - Cell Contents - AutoCalculate</emph> (you see a check mark next to the command when AutoCalculate is enabled)."
+msgstr "Dhangeessuu otoolaa raawwachuuf, Ufmaa shallagni dandeessifamuu qaba. <emph>Meeshaalee - Qabiyyeewwan Maadhee - Ufmaa shallaggii</emph> filadhu(mallattoo filannoo cina ajajichaatti yeroo Ufmaa shallaguun dandeessifame argita)."
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3153728\n"
-"33\n"
+"cellstyle_conditional.xhp\n"
+"par_id3154944\n"
+"26\n"
"help.text"
-msgid "Choose <emph>Edit - Paste</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V. The formula will be positioned in the new cell."
-msgstr "<emph>Gulaali - Maxxansi</emph> filadhu, ykn garagalchuuf <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ C tuqi. Foormulaan man'ee haaraa keessa qubachiifama."
+msgid "With conditional formatting, you can, for example, highlight the totals that exceed the average value of all totals. If the totals change, the formatting changes correspondingly, without having to apply other styles manually."
+msgstr "Dhangeessuu otoolaatiin, fakkeenyaaf, ida'ama gatii avereejii ida'ama hundaa caalu shooluu dandeessa. Yoo ida'amni jijjiirame, dhangeessuun osoo haalata biroo harkaan raawwatin haalaan jijjiirama."
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3149961\n"
-"34\n"
+"cellstyle_conditional.xhp\n"
+"hd_id4480727\n"
"help.text"
-msgid "If you want to copy a formula into multiple cells, there is a quick and easy way to copy into adjacent cell areas:"
-msgstr "Yoo foormulaa maadhee baay'eetti garagalchuu barbaadde, gara bal'inoota cinaatti garagalchuuf karaa saffisaa fi salphaatu jira:"
+msgid "To Define the Conditions"
+msgstr "Haalota Ibsuu"
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3149400\n"
-"12\n"
+"cellstyle_conditional.xhp\n"
+"par_id3154490\n"
+"27\n"
"help.text"
-msgid "Select the cell containing the formula."
-msgstr "Maadhee foormulaa qabatee jiru filadhu."
+msgid "Select the cells to which you want to apply a conditional style."
+msgstr "Maadheelee kan haalata otoolaa irratti raawwachuu barbaaddu filadhu."
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3154018\n"
-"13\n"
+"cellstyle_conditional.xhp\n"
+"par_id3155603\n"
+"28\n"
"help.text"
-msgid "Position the mouse on the bottom right of the highlighted border of the cell, and continue holding down the mouse button until the pointer changes to a cross-hair symbol."
-msgstr "Hantuutee jala mirgaa xiyyoo shoolamaa maadhee irra qubachiisiitii, qabduu hantuutee gad qabuu hanga qareen mallattoo qaxxaamura-mataatti jijjiiramtuutti itti fufi."
+msgid "Choose <emph>Format - Conditional Formatting</emph>."
+msgstr "<emph>Dhangii - Dhangeessuu Otoolaa</emph> filadhu."
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3150749\n"
-"14\n"
+"cellstyle_conditional.xhp\n"
+"par_id3146969\n"
+"29\n"
"help.text"
-msgid "With the mouse button pressed, drag it down or to the right over all the cells into which you want to copy the formula."
-msgstr "Akka qabduun hantuutee gad qabameen, gadi ykn gara mirgaa maadheelee foormulaa itti garagalchitu gubbaan harkisi."
+msgid "Enter the condition(s) into the dialog box. The dialog is described in detail in <link href=\"text/scalc/01/05120000.xhp\" name=\"$[officename] Help\">$[officename] Help</link>, and an example is provided below:"
+msgstr "Haala(lleen) gara sanduuqa qaaqaa galchi. Qaaqni bal'inaan <link href=\"text/scalc/01/05120000.xhp\" name=\"$[officename] Help\">$[officename] Help</link> keessatti ibsama, akkasumas fakkeenyi armaan gaditti kennameera."
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3153714\n"
-"15\n"
+"cellstyle_conditional.xhp\n"
+"hd_id3155766\n"
+"38\n"
"help.text"
-msgid "When you release the mouse button, the formula will be copied into the cells and automatically adjusted."
-msgstr "Yeroo qabduu hantuutee gad dhiistu, foormulaan gara maadheeleetti garagaleetu ufmaan sirreeffama."
+msgid "Example of Conditional Formatting: Highlighting Totals Above/Under the Average Value"
+msgstr "Fakkeenya Dhangeessuu Otoolaa: Gatii Jiddugalee Gubbaatti/Jalatti Ida'ammii Shooluu"
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3156385\n"
-"53\n"
+"cellstyle_conditional.xhp\n"
+"hd_id4341868\n"
"help.text"
-msgid "If you do not want values and texts to be automatically adjusted, then hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key when dragging. Formulas, however, are always adjusted accordingly."
-msgstr "Yoo gatiiwwanii fi barruuwwan akka ufmaan hin sirroofne barbaadde, furtuu <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline> yeroo harkistu gad qabi. Foormulaawwan, garuu, hogayyuu haalaan sirreeffamu."
+msgid "Step1: Generate Number Values"
+msgstr "Ejjatoo1: Gatiiwwan Lakkoofsaa Uumi"
-#: datapilot.xhp
-#, fuzzy
+#: cellstyle_conditional.xhp
msgctxt ""
-"datapilot.xhp\n"
-"tit\n"
+"cellstyle_conditional.xhp\n"
+"par_id3150043\n"
+"39\n"
"help.text"
-msgid "Pivot Table"
-msgstr "Gabatee Qiinxaa"
+msgid "You want to give certain values in your tables particular emphasis. For example, in a table of turnovers, you can show all the values above the average in green and all those below the average in red. This is possible with conditional formatting."
+msgstr "Gatiiwwan muraasa gabatee kee keessatti xiyyeeffannaa murtaa'e kennuu barbaadda. Fakkeenyaaf, gabatee g urgurammeewwan keessatti, gatiiwwan avereejii olii hunda magariisaan akkasumas gatiiwwan avereejii gadii diimaan agarsiisuu dandeessa. Kun dhangeessuu otoolaatiin ni dandeessa."
-#: datapilot.xhp
-#, fuzzy
+#: cellstyle_conditional.xhp
msgctxt ""
-"datapilot.xhp\n"
-"bm_id3150448\n"
+"cellstyle_conditional.xhp\n"
+"par_id3155337\n"
+"40\n"
"help.text"
-msgid "<bookmark_value>pivot table function; introduction</bookmark_value><bookmark_value>DataPilot, see pivot table function</bookmark_value>"
-msgstr "<bookmark_value>dalagaa DataPilot; seensa</bookmark_value><bookmark_value>gabatee qiinxaa, dalagaa DataPilot ilaali</bookmark_value>"
+msgid "First of all, write a table in which a few different values occur. For your test you can create tables with any random numbers:"
+msgstr "Dursee, gabatee gatiiwwan addaa muraasni keessaatti mul'atan barreessi. Yaalii keetiif gabateewwan lakkoofsota hin murtoofne faana uumuu dandeessa:"
-#: datapilot.xhp
-#, fuzzy
+#: cellstyle_conditional.xhp
msgctxt ""
-"datapilot.xhp\n"
-"hd_id3150448\n"
-"7\n"
+"cellstyle_conditional.xhp\n"
+"par_id3149565\n"
+"41\n"
"help.text"
-msgid "<variable id=\"datapilot\"><link href=\"text/scalc/guide/datapilot.xhp\" name=\"Pivot Table\">Pivot Table</link></variable>"
-msgstr "<variable id=\"datapilot\"><link href=\"text/scalc/guide/datapilot.xhp\" name=\"DataPilot\">DataPilot</link></variable>"
+msgid "In one of the cells enter the formula =RAND(), and you will obtain a random number between 0 and 1. If you want integers of between 0 and 50, enter the formula =INT(RAND()*50)."
+msgstr "Man'eelee tokkoo isaanii keessatti foormulaa =RAND() galchitii, lakkoofsa hin murtoofne 0 fi 1 jidduu argatta. Yoo intiijerii jidduu 0 fi 50 barbaadde, foormulaa =INT(RAND()*50) galchi."
-#: datapilot.xhp
-#, fuzzy
+#: cellstyle_conditional.xhp
msgctxt ""
-"datapilot.xhp\n"
-"par_id3156024\n"
-"2\n"
+"cellstyle_conditional.xhp\n"
+"par_id3149258\n"
+"42\n"
"help.text"
-msgid "The <emph>pivot table</emph> (formerly known as <emph>DataPilot</emph>) allows you to combine, compare, and analyze large amounts of data. You can view different summaries of the source data, you can display the details of areas of interest, and you can create reports."
-msgstr "<emph>DataPilot</emph> (yeroo tokko tokko kan akka <emph>Gabatee Qiinxaa</emph> tti beekamu) deetaa hanga guddaa makuuf,madaalchisuuf,akkasumas xiinxaluu si dandeessisa.Goolabawwan deetaa maddaa adda addaa arguu dandeessa,dirree fedhii gadfageenyaan agarsiisuu dandeessa, akkasumas gabaasota uumuu dandeessa."
+msgid "Copy the formula to create a row of random numbers. Click the bottom right corner of the selected cell, and drag to the right until the desired cell range is selected."
+msgstr "Tarree lakkoofsa hin murtoofnee uumuuf foormulaa garagalchi. Xiyyoo jala mirgaa maadhee filatamee cuqaasiitii gara mirgaatti hanga haammangaan maadhee barbaadame filatamuutti harkisi."
-#: datapilot.xhp
-#, fuzzy
+#: cellstyle_conditional.xhp
msgctxt ""
-"datapilot.xhp\n"
-"par_id3145069\n"
-"9\n"
+"cellstyle_conditional.xhp\n"
+"par_id3159236\n"
+"43\n"
"help.text"
-msgid "A table that has been created as a <link href=\"text/scalc/01/12090000.xhp\" name=\"pivot table\">pivot table</link> is an interactive table. Data can be arranged, rearranged or summarized according to different points of view."
-msgstr "Gabateen <link href=\"text/scalc/01/12090000.xhp\" name=\"DataPilot\">DataPilot</link> dhaan uumamee ture gabatee haasoo dha.Deetaan sirraa'uu, lamuu sirraa'uu yookiin goolabamuu akkaataa ilaalcha addaatiin ni danda'a."
+msgid "In the same way as described above, drag down the corner of the rightmost cell in order to create more rows of random numbers."
+msgstr "Haala walfakkaatuun akka olitti ibsametti, tarreewwan lakkoofsota hin mutoofnee uumuuf xiyyoo maadhee mirgaa gad harkisi."
-#: currency_format.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"currency_format.xhp\n"
-"tit\n"
+"cellstyle_conditional.xhp\n"
+"hd_id3149211\n"
+"44\n"
"help.text"
-msgid "Cells in Currency Format"
-msgstr "Maadheelee Dhangii Maallaqaa"
+msgid "Step 2: Define Cell Styles"
+msgstr "Ejjatoo 2: Haalota Man'ee Ibsi"
-#: currency_format.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"currency_format.xhp\n"
-"bm_id3156329\n"
+"cellstyle_conditional.xhp\n"
+"par_id3154659\n"
+"45\n"
"help.text"
-msgid "<bookmark_value>currency formats; spreadsheets</bookmark_value><bookmark_value>cells; currency formats</bookmark_value><bookmark_value>international currency formats</bookmark_value><bookmark_value>formats; currency formats in cells</bookmark_value><bookmark_value>currencies; default currencies</bookmark_value><bookmark_value>defaults;currency formats</bookmark_value><bookmark_value>changing;currency formats</bookmark_value>"
-msgstr "<bookmark_value>dhangiiwwan maallaqaa; wardiilee</bookmark_value><bookmark_value>maadheelee; dhangiiwwan maallaqaa</bookmark_value><bookmark_value>dhangiiwwan maallaqaa addunyaa</bookmark_value><bookmark_value>dhangiiwwan; dhangiiwwan maallaqaa maadheelee keessaa</bookmark_value><bookmark_value>maallaqoota; maallaqoota durtii</bookmark_value><bookmark_value>durtiiwwan;dhangiiwwan maallaqaa</bookmark_value><bookmark_value>jijjiiruu;dhangiiwwan maallaqaa</bookmark_value>"
+msgid "The next step is to apply a cell style to all values that represent above-average turnover, and one to those that are below the average. Ensure that the Styles and Formatting window is visible before proceeding."
+msgstr "Ejjatoon ittaanu haalata man'ee gatiiwwan hunda kan turnover avereejii olii fi gadii bakka bu'u raawwachuu dha."
-#: currency_format.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"currency_format.xhp\n"
-"hd_id3156329\n"
+"cellstyle_conditional.xhp\n"
+"par_id3150883\n"
"46\n"
"help.text"
-msgid "<variable id=\"currency_format\"><link href=\"text/scalc/guide/currency_format.xhp\" name=\"Cells in Currency Format\">Cells in Currency Format</link></variable>"
-msgstr "<variable id=\"currency_format\"><link href=\"text/scalc/guide/currency_format.xhp\" name=\"Cells in Currency Format\">Maadheelee Dhangii Maallaqaa</link></variable>"
+msgid "Click in a blank cell and select the command <emph>Format Cells</emph> in the context menu."
+msgstr "Maadhee duwwaa keessa cuqaasiitii ajaja <emph>Maadheelee Dhangeessi</emph> baafata haallee keessaa filadhu."
-#: currency_format.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"currency_format.xhp\n"
-"par_id3153968\n"
+"cellstyle_conditional.xhp\n"
+"par_id3155529\n"
"47\n"
"help.text"
-msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can give numbers any currency format. When you click the <item type=\"menuitem\">Currency</item> icon <image id=\"img_id3150791\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3150791\">Icon</alt></image> in the <item type=\"menuitem\">Formatting</item> bar to format a number, the cell is given the default currency format set under <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</item>."
-msgstr ""
+msgid "In the <emph>Format Cells</emph> dialog on the <emph>Background</emph> tab, select a background color. Click <emph>OK</emph>."
+msgstr "Qaaqa <emph>Man'eelee Dhangeessi</emph> keessatti caancala <emph>Duubee</emph> irratti, halluu duubee filadhu. <emph>TOLE</emph> cuqaasi."
-#: currency_format.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"currency_format.xhp\n"
-"par_id3150010\n"
+"cellstyle_conditional.xhp\n"
+"par_id3154484\n"
"48\n"
"help.text"
-msgid "Exchanging of <item type=\"productname\">%PRODUCTNAME</item> Calc documents can lead to misunderstandings, if your <item type=\"productname\">%PRODUCTNAME</item> Calc document is loaded by a user who uses a different default currency format."
-msgstr "Galmeelee <item type=\"productname\">%PRODUCTNAME</item> Calc waljijjiiruun gara hubannoo dhoowwuutti, yoo galmeen <item type=\"productname\">%PRODUCTNAME</item> Calc kee fayyadamaa kan dhangii maallaqaa adda ta'e fayyadamuun fe'ame geessuu danda'a."
-
-#: currency_format.xhp
-msgctxt ""
-"currency_format.xhp\n"
-"par_id3156442\n"
-"52\n"
-"help.text"
-msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can define that a number that you have formatted as \"1,234.50 €\", still remains in euros in another country and does not become dollars."
-msgstr "<item type=\"productname\">%PRODUCTNAME</item> Calc keessatti akka lakkoofsi ati akka \"1,234.50 €\" tti dhangeessitee turte ammayyuu biyya biraa keessatti Euru dhaan hafuu fi doolara akka hin taane qindeessuu dandeessa."
+msgid "In the Styles and Formatting window, click the <emph>New Style from Selection</emph> icon. Enter the name of the new style. For this example, name the style \"Above\"."
+msgstr "Foddaa Haalataa fi Dhangeessuu keessatti, sajoo <emph>Haalata Haaraa Filannoo irraa</emph> cuqaasi. Maqaa haalata haaraa galchi. Fakkeenyaaf, haalata \"Gubbaa\" jedhii moggaasi."
-#: currency_format.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"currency_format.xhp\n"
-"par_id3151075\n"
+"cellstyle_conditional.xhp\n"
+"par_id3152889\n"
"49\n"
"help.text"
-msgid "You can change the currency format in the <item type=\"menuitem\">Format Cells</item> dialog (choose <item type=\"menuitem\">Format - Cells - Numbers</item> tab) by two country settings. In the <item type=\"menuitem\">Language</item> combo box select the basic setting for decimal and thousands separators. In the <item type=\"menuitem\">Format</item> list box you can select the currency symbol and its position."
-msgstr "Dhangii maallaqaa qaaqa <item type=\"menuitem\">Man'eelee Dhangeessi</item> keessatti qindaa'inoota biyyaa lamaan(caancala <item type=\"menuitem\">Dhangii - Man'eelee - Lakkoofsota</item> filadhu) jijjiiruu dandeessa. Sanduuqa makaa <item type=\"menuitem\">Afaan</item> keessatti qindaa'ina bu'uuraa mallattoo mallaqaaf, addaan baastota deesiimaalii fi kumaatiif filadhu. Sanduuqa tarree <item type=\"menuitem\">Dhangii</item> keessatti jijjiiramoota danda'aman dhangii durtii irraa afaaniif filachuu dandeessa."
+msgid "To define a second style, click again in a blank cell and proceed as described above. Assign a different background color for the cell and assign a name (for this example, \"Below\")."
+msgstr "Haalata lammaffaa qindeessuuf, ammas man'ee duwwaa keessa cuqaasiitii akka armaan gadiitti ibsameen itti fufi. Man'eef haalluu duubee addaa kenniitii maqaa(fakkeenya kanaaf, \"Jala\") ramadi."
-#: currency_format.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"currency_format.xhp\n"
-"par_id3150749\n"
-"50\n"
+"cellstyle_conditional.xhp\n"
+"hd_id3148704\n"
+"60\n"
"help.text"
-msgid "For example, if the language is set to \"Default\" and you are using a german locale setting, the currency format will be \"1.234,00 €\". A point is used before the thousand digits and a comma before the decimal places. If you now select the subordinate currency format \"$ English (US)\" from the <item type=\"menuitem\">Format</item> list box , you will get the following format: \"$ 1.234,00\". As you can see, the separators have remained the same. Only the currency symbol has been changed and converted, but the underlying format of the notation remains the same as in the locale setting."
-msgstr "Fakkeenyaaf, yoo afaan \"Durtii\" ta'ee kaa'amee fi qindaa'ina gitoo biyyaa jermanii fayyadamaa jiraatte, dhangiin maallaqaa \"1.234,00 €\" ta'a. Tuqaan fuuldura dijiitii kumaa yoo fayyadu qoodduun bakkeewwan deesiimaalii fuuldura fayyada. Yoo amma dhangii maallaqaa hirkataa \"$ English (US)\" sanduuqa tarree <item type=\"menuitem\">Dhangii</item> irraa filatte, dhangii armaan gadii argatta:\"$ 1.234,00\". Akkuma argitutti, addaan baastotni sanuma ta'u. Mallatoo maallaqaa qofatu jijjiiramee ture, ta'us dhangiin bu'uuraa sirnasxaa akkauma qindaa'ina gitoo biyyaa sanuma ta'a."
+msgid "Step 3: Calculate Average"
+msgstr "Ejjatoo: Jiddugalee Shallagi"
-#: currency_format.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"currency_format.xhp\n"
-"par_id3145640\n"
+"cellstyle_conditional.xhp\n"
+"par_id3148837\n"
"51\n"
"help.text"
-msgid "If, under <item type=\"menuitem\">Language</item>, you convert the cells to \"English (US)\", the English-language locale setting is also transferred and the default currency format is now \"$ 1,234.00\"."
-msgstr "Yoo, <item type=\"menuitem\">Afaan</item> jalatti, man'eelee gara \"English (US)\" jijjiirte, qindaa'inni gitoo biyyaa afaan Ingilizii ni dabarsamee dhangiin maallaqaa durtii amma \"$ 1,234.00\" ta'a."
-
-#: currency_format.xhp
-msgctxt ""
-"currency_format.xhp\n"
-"par_id3154255\n"
-"53\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
-msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Dhangii - Man'eewwan - Lakkoofsota</link>"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"tit\n"
-"help.text"
-msgid "Selecting Multiple Cells"
-msgstr "Maadheelee Danuu Filachuu"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"bm_id3153361\n"
-"help.text"
-msgid "<bookmark_value>cells; selecting</bookmark_value> <bookmark_value>marking cells</bookmark_value> <bookmark_value>selecting;cells</bookmark_value> <bookmark_value>multiple cells selection</bookmark_value> <bookmark_value>selection modes in spreadsheets</bookmark_value> <bookmark_value>tables; selecting ranges</bookmark_value>"
-msgstr "<bookmark_value>maadheelee; filachuu</bookmark_value><bookmark_value>maadheelee mallatteessuu</bookmark_value><bookmark_value>filachuu;maadheelee</bookmark_value><bookmark_value>filannoo maadheelee danuu</bookmark_value><bookmark_value>haalata filannoo wardiilee keessaa</bookmark_value><bookmark_value>gabateewwan; hammangaawwan filachuu</bookmark_value>"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"hd_id3153361\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"mark_cells\"><link href=\"text/scalc/guide/mark_cells.xhp\" name=\"Selecting Multiple Cells\">Selecting Multiple Cells</link></variable>"
-msgstr "<variable id=\"mark_cells\"><link href=\"text/scalc/guide/mark_cells.xhp\" name=\"Selecting Multiple Cells\">Maadheelee Danuu Filachuu</link></variable>"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"hd_id3145272\n"
-"2\n"
-"help.text"
-msgid "Select a rectangular range"
-msgstr "Hammangaa rogafree filadhu"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3149261\n"
-"3\n"
-"help.text"
-msgid "With the mouse button pressed, drag from one corner to the diagonally opposed corner of the range."
-msgstr "Qabduu hantuutee cuqaasuudhaan, xiyyoo tokko irraa gara xiyyoo faallaa hammangaa isa shaffaxaatti harkisi."
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"hd_id3151119\n"
-"4\n"
-"help.text"
-msgid "Mark a single cell"
-msgstr "Maadhee baaqqee mallatteessi"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3146975\n"
-"19\n"
-"help.text"
-msgid "Do one of the following:"
-msgstr "Kan armaan gadii keessaa tokko dalagi:"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3163710\n"
-"20\n"
-"help.text"
-msgid "Click, then Shift-click the cell."
-msgstr "Cuqaasi, achiin Shift-maadhee cuqaasi."
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3149959\n"
-"5\n"
-"help.text"
-msgid "Pressing the mouse button, drag a range across two cells, do not release the mouse button, and then drag back to the first cell. Release the mouse button. You can now move the individual cell by drag and drop."
-msgstr "Qabduu hantuutee gad qabuudhaan, hammangaa maadheelee lama irra harkisi, qabduu hantuutee hin gadhiisin, achiin gara maadhee jalqabaatti harkisi. Amma maadhee tokko tokkoon harkisii-kaa'iin deemsisuu dandeessa."
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"hd_id3154942\n"
-"6\n"
-"help.text"
-msgid "Select various dispersed cells"
-msgstr "Man'eelee faca'an garaagaraa filadhu."
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id1001200901072060\n"
-"help.text"
-msgid "Do one of the following:"
-msgstr "Kan armaan gadii keessaa tokko dalagi:"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3156284\n"
-"7\n"
-"help.text"
-msgid "Mark at least one cell. Then while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, click each of the additional cells."
-msgstr "Yoo xiqqaate man'ee tokko mallatteessi. Achiin yeroo <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline> gad qabdu, tokkoon tokkoo man'eelee dabalataa cuqaasi."
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id1001200901072023\n"
-"help.text"
-msgid "Click the STD / EXT / ADD area in the status bar until it shows ADD. Now click all cells that you want to select."
-msgstr ""
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"hd_id3146971\n"
-"8\n"
-"help.text"
-msgid "Switch marking mode"
-msgstr "Haalata mallatteessuu dabarsi"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3155064\n"
-"9\n"
-"help.text"
-msgid "On the status bar, click the box with the legend STD / EXT / ADD to switch the marking mode:"
-msgstr "Kabala haalataa irratti, gara haalata mallatteessuu dabarsuuf sanduuqa waayoo STD / EXT / ADD qabu cuqaasi:"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3159264\n"
-"10\n"
-"help.text"
-msgid "Field contents"
-msgstr "Qabiyyeewwan dirree"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3155337\n"
-"11\n"
-"help.text"
-msgid "Effect of clicking the mouse"
-msgstr "Bu'aa hantuutee cuqaasuu"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3149568\n"
-"12\n"
-"help.text"
-msgid "STD"
-msgstr "STD"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3148486\n"
-"13\n"
-"help.text"
-msgid "A mouse click selects the cell you have clicked on. Unmarks all marked cells."
-msgstr "Cuqaasni hantuutee maadhee irratti cuqaaste filata. Maadheelee mallattaa'an mara mallattoo irraa nulqa."
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3150090\n"
-"14\n"
-"help.text"
-msgid "EXT"
-msgstr "EXT"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3150305\n"
-"15\n"
-"help.text"
-msgid "A mouse click marks a rectangular range from the current cell to the cell you clicked. Alternatively, Shift-click a cell."
-msgstr ""
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3145587\n"
-"16\n"
-"help.text"
-msgid "ADD"
-msgstr "Dabali"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3154368\n"
-"17\n"
-"help.text"
-msgid "A mouse click in a cell adds it to the already marked cells. A mouse click in a marked cell unmarks it. Alternatively, <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-click the cells."
-msgstr "Cuqaasni hantuutee man'ee keessaa gara man'eelee duraan mallattaa'aniitti dabala. Cuqaasni hantuutee man'ee mallattaa'e keessaa man'ee mallattoo irraa mulqa. Karaa biraatiin, man'eelee <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-cuqaasi."
+msgid "In our particular example, we are calculating the average of the random values. The result is placed in a cell:"
+msgstr "Fakkeenya murtaawaa keenya keessatti, avereejii gatiiwwan hin murtoofnee shallagaa jirra. Bu'aan maadhee keessaa kaawwama:"
-#: mark_cells.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"mark_cells.xhp\n"
-"par_id3154487\n"
-"18\n"
+"cellstyle_conditional.xhp\n"
+"par_id3144768\n"
+"52\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>"
+msgid "Set the cursor in a blank cell, for example, J14, and choose <emph>Insert - Function</emph>."
+msgstr "Qaree man'ee duwwaa keessa, fakkeenyaaf, J14, kaa'iitii <emph>Saagi - Dalagaa</emph> filadhu."
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"tit\n"
+"cellstyle_conditional.xhp\n"
+"par_id3156016\n"
+"53\n"
"help.text"
-msgid "Entering a Number with Leading Zeros"
-msgstr "Lakkoofsa zeeroowwan dursan galchuu"
+msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink / Maximize</item></link> icon."
+msgstr "Dalagaa AVIREEGII filadhu. Lakkoofsota tasaa kee filachuuf hantuutee fayyadami. Yoo hammangaa hunda arguu hin dandeenye, sababa Masakaan Dalagaa dhorkseef, qaaqa yeroof sajoo <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Qooqsi / Guddisi</item></link> fayyadamuudhaan suntuursuu dandeessa."
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"bm_id3147560\n"
+"cellstyle_conditional.xhp\n"
+"par_id3153246\n"
+"54\n"
"help.text"
-msgid "<bookmark_value>zero values; entering leading zeros</bookmark_value> <bookmark_value>numbers; with leading zeros</bookmark_value> <bookmark_value>leading zeros</bookmark_value> <bookmark_value>integers with leading zeros</bookmark_value> <bookmark_value>cells; changing text/number formats</bookmark_value> <bookmark_value>formats; changing text/number</bookmark_value> <bookmark_value>text in cells; changing to numbers</bookmark_value> <bookmark_value>converting;text with leading zeros, into numbers</bookmark_value>"
-msgstr "<bookmark_value>gatiiwwan zeeroo; zeeroowwan dursan galchuu</bookmark_value><bookmark_value>lakkoofsota; zeeroowwan dursan qaban</bookmark_value><bookmark_value>zeeroowwan dursan</bookmark_value><bookmark_value>intiijeroota zeeroowwan dursan qaban</bookmark_value><bookmark_value>lakkoofsota; dhangiiwwan barruu/lakkoofsaa jijjiiruu</bookmark_value><bookmark_value>maadheelee; dhangiiwwan barruu/lakkoofsaa jijjiiruu</bookmark_value><bookmark_value>dhangiiwwan; barruu/lakkoofsa jijjiiruu</bookmark_value><bookmark_value>barruu maadheelee keessaa; lakkoofsotatti jijjiiruu</bookmark_value><bookmark_value>geeddaruu; barruu gara lakkoofsotaatti</bookmark_value>"
+msgid "Close the Function Wizard with <item type=\"menuitem\">OK</item>."
+msgstr "Masakaa Dalagaa <item type=\"menuitem\">Tole</item> dhaan cufi."
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"hd_id3147560\n"
-"67\n"
+"cellstyle_conditional.xhp\n"
+"hd_id3149898\n"
+"50\n"
"help.text"
-msgid "<variable id=\"integer_leading_zero\"><link href=\"text/scalc/guide/integer_leading_zero.xhp\" name=\"Entering a Number with Leading Zeros\">Entering a Number with Leading Zeros</link></variable>"
-msgstr "<variable id=\"integer_leading_zero\"><link href=\"text/scalc/guide/integer_leading_zero.xhp\" name=\"Entering a Number with Leading Zeros\">Lakkoofsa zeeroowwan dursan galchuu</link></variable>"
+msgid "Step 4: Apply Cell Styles"
+msgstr "Ejjatoo: Haalota Man'ee Fayyadami"
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3153194\n"
+"cellstyle_conditional.xhp\n"
+"par_id3149126\n"
"55\n"
"help.text"
-msgid "There are various ways to enter integers starting with a zero:"
-msgstr "Intiijeroota zeeroon jalqaban galchuuf karaalee adda addaatu jiru:"
+msgid "Now you can apply the conditional formatting to the sheet:"
+msgstr "Amma dhangeessuu otoolaa wardiitti raawwachuu dandeessa:"
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3146119\n"
+"cellstyle_conditional.xhp\n"
+"par_id3150049\n"
"56\n"
"help.text"
-msgid "Enter the number as text. The easiest way is to enter the number starting with an apostrophe (for example, <item type=\"input\">'0987</item>). The apostrophe will not appear in the cell, and the number will be formatted as text. Because it is in text format, however, you cannot calculate with this number."
-msgstr "Lakkoofsa akka barruutti galchi. Karaan salphaan lakkoofsa hudhaan jalqabu(fakkeenyaaf, <item type=\"input\">'0987</item>) galchuu dha. Hudhaan man'ee keessatti hin mul'atu, lakkoofsi akka barruutti dhangeeffama. Sababa dhangii barruutiin ta'eef, garuu, lakkoofsa kanaan shallaguu hin dandeessu."
+msgid "Select all cells with the random numbers."
+msgstr "Maadheelee hunda lakkoofsota hin murtoofne qaban filadhu."
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3154013\n"
+"cellstyle_conditional.xhp\n"
+"par_id3153801\n"
"57\n"
"help.text"
-msgid "Format a cell with a number format such as <item type=\"input\">\\0000</item>. This format can be assigned in the <emph>Format code</emph> field under the <emph>Format - Cells - Numbers</emph> tab, and defines the cell display as \"always put a zero first and then the integer, having at least three places, and filled with zeros at the left if less than three digits\"."
-msgstr "Man'ee dhangii lakkoofsaa qabu kan akka <item type=\"input\">\\0000</item> dhangeessi. Dhangiin kun dirree <emph>Koodii dhangii</emph> keessatti caancala <emph>Dhangii - Man'eelee - Lakkoofsota</emph> jalatti ramadamuu danda'a, akkasumas argii man'ee akka \" zeeroo hoggayyuu jalqaba kaayi, achiin intiijerii, bakkaa yoo xiqqaate sadii qabu, akkasumas kan bitaan zeeroodhaan yoo dijiitii sadii gad ta'e guutame\" qindeessa."
+msgid "Choose the <emph>Format - Conditional Formatting</emph> command to open the corresponding dialog."
+msgstr "Qaaqa isaa banuuf ajaja <emph>Dhangii - Dhangeessuu Otoolaa</emph> filadhu."
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3153158\n"
+"cellstyle_conditional.xhp\n"
+"par_id3153013\n"
"58\n"
"help.text"
-msgid "If you want to apply a numerical format to a column of numbers in text format (for example, text \"000123\" becomes number \"123\"), do the following:"
-msgstr "Yoo dhangii lakkaawwii gara sarjaa lakkoofsota dhangii barruu qabaniitti raawwatte(fakkeenyaaf, barruun \"000123\" lakkoofsa \"123\" ta'a), kan armaan gadii hojjedhu:"
-
-#: integer_leading_zero.xhp
-msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3149377\n"
-"59\n"
-"help.text"
-msgid "Select the column in which the digits are found in text format. Set the cell format in that column as \"Number\"."
-msgstr "Sarjaa kan dijiitiiwwan dhangii barruutiin keessatti argaman filadhu. Dhangii man'ee sarjaa sana keessaa akka \"Lakkoofsa\" kaayi."
-
-#: integer_leading_zero.xhp
-msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3154944\n"
-"60\n"
-"help.text"
-msgid "Choose <emph>Edit - Find & Replace</emph>"
-msgstr ""
+msgid "Define the condition as follows: If cell value is less than J14, format with cell style \"Below\", and if cell value is greater than or equal to J14, format with cell style \"Above\"."
+msgstr "Haala akka armaan gadiitti qindeessi:Yoo gatiin man'ee J14 gadi ta'e, haalata man'ee \"Jala\" dhaan dhangeessi, akkasumas yoo gatiin man'ee irra guddaa ykn walqixa J14 ta'e, haalata man'ee \"Gubbaa\" tiin dhangeessi."
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3154510\n"
+"cellstyle_conditional.xhp\n"
+"hd_id3155761\n"
"61\n"
"help.text"
-msgid "In the <emph>Search for</emph> box, enter <item type=\"input\">^[0-9]</item>"
-msgstr "Sanduuqa <emph>Barbaadi</emph> keessatti, <item type=\"input\">^[0-9]</item> galchi"
+msgid "Step 5: Copy Cell Style"
+msgstr "Ejjatoo: Haalota Man'ee Garagalchi"
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3155068\n"
+"cellstyle_conditional.xhp\n"
+"par_id3145320\n"
"62\n"
"help.text"
-msgid "In the <emph>Replace with</emph> box, enter <item type=\"input\">&</item>"
-msgstr "Sanduuqa <emph>Ittiin Bakka buusi</emph> keessatti, <item type=\"input\">&</item> galchi"
+msgid "To apply the conditional formatting to other cells later:"
+msgstr "Dhangeessuu otoolaa gara maadheelee birootti booda raawwachuu:"
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3149018\n"
+"cellstyle_conditional.xhp\n"
+"par_id3153074\n"
"63\n"
"help.text"
-msgid "Check <emph>Regular expressions</emph>"
-msgstr ""
+msgid "Click one of the cells that has been assigned conditional formatting."
+msgstr "Maadheelee dhangeessuu otoolaa fudhatanii turan keessaa tokko cuqaasi."
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3156382\n"
+"cellstyle_conditional.xhp\n"
+"par_id3149051\n"
"64\n"
"help.text"
-msgid "Check <emph>Current selection only</emph>"
-msgstr ""
+msgid "Copy the cell to the clipboard."
+msgstr "Maadhee gara gabatee muraatti garagalchi."
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3146916\n"
+"cellstyle_conditional.xhp\n"
+"par_id3150436\n"
"65\n"
"help.text"
-msgid "Click <emph>Replace All</emph>"
-msgstr ""
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"tit\n"
-"help.text"
-msgid "Referencing a Cell in Another Document"
-msgstr "Maadhee galmee biraa keessatti wabeeffadhu"
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"bm_id3147436\n"
-"help.text"
-msgid "<bookmark_value>sheet references</bookmark_value> <bookmark_value>references; to cells in other sheets/documents</bookmark_value> <bookmark_value>cells; operating in another document</bookmark_value> <bookmark_value>documents;references</bookmark_value>"
-msgstr "<bookmark_value>wabiilee wardii</bookmark_value> <bookmark_value>wabiilee; man'eelee wardiilee/galmeewwan biroo keessatti</bookmark_value> <bookmark_value>man'eelee; galmee biraa keessatti hojjechuu</bookmark_value> <bookmark_value>galmeewwan;wabiilee</bookmark_value>"
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"hd_id3147436\n"
-"9\n"
-"help.text"
-msgid "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\" name=\"Referencing Other Sheets\">Referencing Other Sheets</link></variable>"
-msgstr "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\" name=\"Referencing Other Sheets\">wardiilee biraa keessatti wabeeffachuu</link></variable>"
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"par_id9663075\n"
-"help.text"
-msgid "In a sheet cell you can show a reference to a cell in another sheet."
-msgstr "Maadhee wardii keessatti wabii gara maadhee galmee biraa keessaatti agarsiisuu dandeessa."
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"par_id1879329\n"
-"help.text"
-msgid "In the same way, a reference can also be made to a cell from another document provided that this document has already been saved as a file."
-msgstr "Haala walfakkaatuun,wabeeffachuun galmee biraa irraa gara man'eetti yoo galmee sun akka faayiliitti olkaa'amee ture ni taasifama."
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"hd_id7122409\n"
-"help.text"
-msgid "To Reference a Cell in the Same Document"
-msgstr "Man'ee Galmee Tokko Keessatti Wabeessuu"
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"par_id2078005\n"
-"help.text"
-msgid "Open a new, empty spreadsheet."
-msgstr "Wardii haaraa,duwwaa bani."
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"par_id4943693\n"
-"help.text"
-msgid "By way of example, enter the following formula in cell A1 of Sheet1:"
-msgstr "Karaa fakkeenyaa,foormulaa armaan gadii man'ee A1 kan wardii1 keessatti galchi."
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"par_id9064302\n"
-"help.text"
-msgid "<item type=\"literal\">=Sheet2.A1</item>"
-msgstr "<item type=\"literal\">=Sheet2.A1</item>"
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"par_id7609790\n"
-"help.text"
-msgid "Click the <emph>Sheet 2</emph> tab at the bottom of the spreadsheet. Set the cursor in cell A1 there and enter text or a number."
-msgstr "Caancala <emph>Wardii 2</emph> jala wardii jiru cuqaasi.Qaree man'ee A1 keessa kaa'iitii barruu ykn lakkoofsa galchi."
+msgid "Select the cells that are to receive this same formatting."
+msgstr "Maadheelee dhangeessuu walfakkaatu kana fudhachuuf ta'an filadhu."
-#: cellreferences.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id809961\n"
+"cellstyle_conditional.xhp\n"
+"par_id3147298\n"
+"66\n"
"help.text"
-msgid "If you switch back to Sheet1, you will see the same content in cell A1 there. If the contents of Sheet2.A1 change, then the contents of Sheet1.A1 also change."
-msgstr "Yoo gara wardii1 deebite,qabiyyee sanuma man'ee A1 keessatti agarta.Yoo qabiyyeewwan Wardii2.A1 jijjiirame,qabiyyeewwan Wardii1.A1 ni jijjiiramu."
+msgid "Choose <emph>Edit - Paste Special</emph>. The <emph>Paste Special</emph> dialog appears."
+msgstr "<emph>Gulaali - Adda Maxxansi</emph> fili. Qaaqni <emph>Adda Maxxansi</emph> ni mul'ata."
-#: cellreferences.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"hd_id9209570\n"
+"cellstyle_conditional.xhp\n"
+"par_id3166465\n"
+"67\n"
"help.text"
-msgid "To Reference a Cell in Another Document"
-msgstr "Man'ee Galmee Biroo Keessatti Wabeessuu"
+msgid "In the <emph>Selection</emph> area, check only the <emph>Formats</emph> box. All other boxes must be unchecked. Click <emph>OK</emph>."
+msgstr "Bal'ina <emph>Filannoo</emph> keessatti, sanduuqa <emph>Dhangiiwwan</emph> qofa mallattoo itti godhi. Sanduuqotni biroo marti mallattoo qabaachuu hin qabani. <emph>TOLE</emph> cuqaasi."
-#: cellreferences.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id5949278\n"
+"cellstyle_conditional.xhp\n"
+"par_id3159123\n"
+"68\n"
"help.text"
-msgid "Choose <emph>File - Open</emph>, to load an existing spreadsheet document."
-msgstr "Galmee wardii dura jiru fe'uuf ,<emph>Faayilii - Bani</emph> filadhu."
+msgid "<link href=\"text/scalc/01/05120000.xhp\" name=\"Format - Conditional formatting\">Format - Conditional formatting</link>"
+msgstr "<link href=\"text/scalc/01/05120000.xhp\" name=\"Format - Conditional formatting\">Dhangii - Dhangeessuu otoolaa</link>"
-#: cellreferences.xhp
+#: cellstyle_minusvalue.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id8001953\n"
+"cellstyle_minusvalue.xhp\n"
+"tit\n"
"help.text"
-msgid "Choose <emph>File - New</emph>, to open a new spreadsheet document. Set the cursor in the cell where you want to insert the external data and enter an equals sign to indicate that you want to begin a formula."
-msgstr "Galmee wardii haaraa banuuf,<emph>Faayilii - Haaraa</emph>filadhu.Qaree man'ee bakka deetaa alaa saaguu barbaaddu kaa'iitii foormulaa jalqabuu kee agarsiisuu barbaaduuf mallatttoo walqixaa gachi."
+msgid "Highlighting Negative Numbers"
+msgstr "Lakkoofsota Negaatiivii Shooluu"
-#: cellreferences.xhp
+#: cellstyle_minusvalue.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id8571123\n"
+"cellstyle_minusvalue.xhp\n"
+"bm_id3147434\n"
"help.text"
-msgid "Now switch to the document you have just loaded. Click the cell with the data that you want to insert in the new document."
-msgstr "Amma gara galmee feetee turteetti tari.Man'ee kan deetaa ati galmee haaraa keessatti saaguuf barbaaddu qabate cuqaasi."
+msgid "<bookmark_value>negative numbers</bookmark_value> <bookmark_value>numbers; highlighting negative numbers</bookmark_value> <bookmark_value>highlighting;negative numbers</bookmark_value> <bookmark_value>colors;negative numbers</bookmark_value> <bookmark_value>number formats;colors for negative numbers</bookmark_value>"
+msgstr "<bookmark_value>lakkoofsota negaatiivii</bookmark_value> <bookmark_value>lakkoofsota; lakkoofsota negaatiivii shooluu</bookmark_value> <bookmark_value>shooluu;lakkoofsota negaatiivii</bookmark_value> <bookmark_value>halluuwwan;dhangiiwwan lakkoofsaa</bookmark_value> <bookmark_value>dhangiiwwan lakkoofsaa;halluuwwan</bookmark_value>"
-#: cellreferences.xhp
+#: cellstyle_minusvalue.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id8261665\n"
+"cellstyle_minusvalue.xhp\n"
+"hd_id3147434\n"
+"31\n"
"help.text"
-msgid "Switch back to the new spreadsheet. In the input line you will now see how $[officename] Calc has added the reference to the formula for you."
-msgstr "Gara wardii haaraatti lamuu tari.Sarara naqaa keessatti amma akkaataa $[officename] Calc wabii foormulaatti siif dabalu agarta."
+msgid "<variable id=\"cellstyle_minusvalue\"><link href=\"text/scalc/guide/cellstyle_minusvalue.xhp\" name=\"Highlighting Negative Numbers\">Highlighting Negative Numbers</link></variable>"
+msgstr "<variable id=\"cellstyle_minusvalue\"><link href=\"text/scalc/guide/cellstyle_minusvalue.xhp\" name=\"Highlighting Negative Numbers\">Lakkoofsota Negaatiivii Shooluu</link></variable>"
-#: cellreferences.xhp
+#: cellstyle_minusvalue.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id5888241\n"
+"cellstyle_minusvalue.xhp\n"
+"par_id3153878\n"
+"33\n"
"help.text"
-msgid "The reference to a cell of another document contains the name of the other document in single inverted commas, then a hash #, then the name of the sheet of the other document, followed by a point and the name of the cell."
-msgstr "Wabiin gara man'ee galmee biraa maqaa man'ee biraa qoodduu garagalaa baaqqee keessatti ,achiin hashii #,achiin maqaa wardii galmee biraa, tuqaa fi maqaa man'eetiin hordofee qabata."
+msgid "You can format cells with a number format that highlights negative numbers in red. Alternatively, you can define your own number format in which negative numbers are highlighted in other colors."
+msgstr "Maadheelee dhangii lakkoofsaa kan lakkoofsota negaatiivii diimaan shooluutiin dhangeessuu dandeessa. Karaa biraa, dhangii lakkoofsa mataa keetii kan lakkoofsonni negaatiivii halluu birootiin shoolaman qindeessuu dandeessa."
-#: cellreferences.xhp
+#: cellstyle_minusvalue.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id7697683\n"
+"cellstyle_minusvalue.xhp\n"
+"par_id3155600\n"
+"34\n"
"help.text"
-msgid "Confirm the formula by clicking the green check mark."
-msgstr "Mallattoo filannoo magariisa cuqaasuudhaan foormulaa mirkaneessi."
+msgid "Select the cells and choose <emph>Format - Cells</emph>."
+msgstr "Man'eelee filiitii <emph>Dhangii - Man'eelee</emph> filadhu."
-#: cellreferences.xhp
+#: cellstyle_minusvalue.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id7099826\n"
+"cellstyle_minusvalue.xhp\n"
+"par_id3146969\n"
+"35\n"
"help.text"
-msgid "If you drag the box in the lower right corner of the active cell to select a range of cells, $[officename] automatically inserts the corresponding references in the adjacent cells. As a result, the sheet name is preceded with a \"$\" sign to designate it as an absolute reference."
-msgstr "Yoo sanduuqa xiyyoo man'ee kaka'aa mirgaa jalaa keessaa hammangaa man'eelee filachuuf harkiste,$[officename] wabiilee isaanii ufmaan man'eelee cinaa keessatti saaga.Akka bu'aatti,maqaan wardii akka wabii sirriitti kaa'uuf mallattoo \"$\" durfama."
+msgid "On the <emph>Numbers</emph> tab, select a number format and mark <emph>Negative numbers red</emph> check box. Click <emph>OK</emph>."
+msgstr "Caancala <emph>Lakkoofsa</emph> irratti, dhangii lakkoofsaa filiitii sanduuqa filannoo <emph>Lakkoofsota negaatiivii diimaa</emph> mallattoo itti godhi. <emph>Tole</emph> cuqaasi."
-#: cellreferences.xhp
+#: cellstyle_minusvalue.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id674459\n"
+"cellstyle_minusvalue.xhp\n"
+"par_id3145640\n"
+"36\n"
"help.text"
-msgid "If you examine the name of the other document in this formula, you will notice that it is written as a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>. This means that you can also enter a URL from the Internet."
-msgstr "Yoo maqaa galmee biraa foormulaa kana keessaa sakattaate,akka <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> tti barreeffamu hubatta.Kana jechuun URL interneetii irraa galchuu dandeessa jechuu dha."
+msgid "The cell number format is defined in two parts. The format for positive numbers and zero is defined in front of the semicolon; after the semicolon the formula for negative numbers is defined. You can change the code (RED) under <item type=\"menuitem\">Format code</item>. For example, instead of RED, enter <item type=\"literal\">YELLOW</item>. If the new code appears in the list after clicking the <item type=\"menuitem\">Add</item> icon, this is a valid entry."
+msgstr "Dhangiin lakkoofsa man'ee kutaalee lamaan qindaa'a. Dhangiin lakkoofsa poozetiivii fi zeeroo buufata xiqqaa fuulduratti qindaa'a; buufta xiqqaa booda foormulaa lakkoofsota negaatiiviitu qindaa'a. Koodii(DIIMAA) jala <item type=\"menuitem\">Koodii dhangii</item> jalaa jijjiiruu dandeessa. Fakkeenyaaf, (DIIMAA) osoo hin ta'in, <item type=\"literal\">KEELLOO</item> galchi. Yoo koodiin haaraa tarree keessatti erga sajoo <item type=\"menuitem\">Dabali</item> cuqaasteen booda mul'ate, kun galfata sirrii dha."
#: consolidate.xhp
msgctxt ""
@@ -5919,768 +3500,869 @@ msgctxt ""
msgid "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">Import text files</link>"
msgstr "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">Faayiloota barruu alaagi</link>"
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
+"csv_formula.xhp\n"
"tit\n"
"help.text"
-msgid "Filter: Applying Advanced Filters"
-msgstr "Gingilcha:Gingilchaawwan Olaanoo Raawwachuu"
+msgid "Importing and Exporting Text Files"
+msgstr "Faayiloota Barruu Alaaguu fi Alerguu"
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"bm_id3148798\n"
+"csv_formula.xhp\n"
+"bm_id3153726\n"
"help.text"
-msgid "<bookmark_value>filters;defining advanced filters </bookmark_value><bookmark_value>advanced filters</bookmark_value><bookmark_value>defining; advanced filters</bookmark_value><bookmark_value>database ranges; advanced filters</bookmark_value>"
-msgstr "<bookmark_value>gingilchaawwan;Gingilchaawwan Olaanoo qindeessuu </bookmark_value><bookmark_value>Gingilchaawwan Olaanoo</bookmark_value><bookmark_value>qindeessuu; Gingilchaawwan Olaanoo</bookmark_value><bookmark_value>hammangaa kuusaa deetaa; Gingilchaawwan Olaanoo</bookmark_value>"
+msgid "<bookmark_value>csv files;formulas</bookmark_value> <bookmark_value>formulas; importing/exporting as csv files</bookmark_value> <bookmark_value>exporting;formulas as csv files</bookmark_value> <bookmark_value>importing;csv files with formulas</bookmark_value>"
+msgstr "<bookmark_value>faayiloota csv;foormulaawwan</bookmark_value> <bookmark_value>foormulaawwan; akka faayiloota csvtti alaaguu/alerguu</bookmark_value> <bookmark_value>alerguu;foormulaawwan akka faayiloota csvtti</bookmark_value> <bookmark_value>alaaguu;faayiloota csv foormulaawwaniin</bookmark_value>"
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"hd_id3148798\n"
+"csv_formula.xhp\n"
+"hd_id3153726\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"csv_formula\"><link href=\"text/scalc/guide/csv_formula.xhp\" name=\"Importing and Exporting Text Files\">Importing and Exporting CSV Text Files with Formulas</link></variable>"
+msgstr "<variable id=\"csv_formula\"><link href=\"text/scalc/guide/csv_formula.xhp\" name=\"Importing and Exporting Text Files\">Foormulaadhaan Faayiloota Barruu Alaaguu fi Alerguu</link></variable>"
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3149402\n"
+"2\n"
+"help.text"
+msgid "Comma separated values (CSV) files are text files that contain the cell contents of a single sheet. Commas, semicolons, or other characters can be used as the field delimiters between the cells. Text strings are put in quotation marks, numbers are written without quotation marks."
+msgstr "Faayilootni gatiiwwan qoodduun addan bahan(CSV)faayiloota barruu kan qabiyyeewwan man'ee wardii baaqqee qabatu dha. Qoodduuwwan, buufatoonni xiqqaa, ykn arfiileen biroo akka daangessaa dirree jidduu man'eeleetti fayyaduu danda'u. Diraawwan barruu mallattoo waraabbii keessa taa'u, lakkoofsonni mallattoo waraabbii malee barreeffamu."
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"hd_id3150715\n"
+"15\n"
+"help.text"
+msgid "To Import a CSV File"
+msgstr "Faayilii CSV Alaaguuf"
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3153709\n"
+"16\n"
+"help.text"
+msgid "Choose <emph>File - Open</emph>."
+msgstr "<emph>Faayilii - Bani</emph> filadhu."
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3155445\n"
+"17\n"
+"help.text"
+msgid "In the <emph>File type</emph> field, select the format \"Text CSV\". Select the file and click <emph>Open</emph>. When a file has the .csv extension, the file type is automatically recognized."
+msgstr "Dirree <emph>Gosa Faayilii</emph> keessatti, dhangii \"CSV Barruu\" filadhu. Faayilii filadhuutii <emph>Bani</emph> cuqaasi. Yemmuu faayiliin fufaa .csv qabu, gosti faayilii ufmaan beekama."
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3149565\n"
"18\n"
"help.text"
-msgid "<variable id=\"specialfilter\"><link href=\"text/scalc/guide/specialfilter.xhp\" name=\"Filter: Applying Advanced Filters\">Filter: Applying Advanced Filters</link> </variable>"
-msgstr "<variable id=\"specialfilter\"><link href=\"text/scalc/guide/specialfilter.xhp\" name=\"Filter: Applying Advanced Filters\">Gingilcha:Gingilchaawwan Olaanoo Raawwachuu</link> </variable>"
+msgid "You will see the <item type=\"menuitem\">Text Import</item> dialog. Click <item type=\"menuitem\">OK</item>."
+msgstr "Qaaqa <item type=\"menuitem\">Alaaga Barruu</item> agarta. <item type=\"menuitem\">Tole</item> cuqaasi."
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3145785\n"
+"csv_formula.xhp\n"
+"par_id3149255\n"
"19\n"
"help.text"
-msgid "Copy the column headers of the sheet ranges to be filtered into an empty area of the sheet, and then enter the criteria for the filter in a row beneath the headers. Horizontally arranged data in a row will always be logically connected with AND, and vertically arranged data in a column will always be logically connected with OR."
-msgstr "Irraantota sarjaa hammangaawwan wardii gara bal'ina duwwaa wardiitti garagalchi, achiin ulaagaa gingilchaaf tarree jala irraantota keessatti galchi. Deetaan dalga qindaa'an tarree keessatti yaayaa FI wajjin hoggayyuu walitti hidhamu, deetaan irraan gadee sarjaa keessatti hoggayyuu yaayaa YKN wajjin hoggayyuu walitti hidhamu."
+msgid "If the csv file contains formulas, but you want to import the results of those formulas, then choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph> and clear the <emph>Formulas</emph> check box."
+msgstr ""
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153142\n"
+"csv_formula.xhp\n"
+"hd_id3154022\n"
+"3\n"
+"help.text"
+msgid "To Export Formulas and Values as CSV Files"
+msgstr "Foormulaawwanii fi Gatiiwwan akka Faayiloota CSV tti Alerguuf"
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3150342\n"
+"4\n"
+"help.text"
+msgid "Click the sheet to be written as a csv file."
+msgstr "Wardii akka faayilii csv tti barreeffamuuf jedhu cuqaasi."
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3166423\n"
+"5\n"
+"help.text"
+msgid "If you want to export the formulas as formulas, for example, in the form =SUM(A1:B5), proceed as follows:"
+msgstr "Yoo foormulaawwan akka foormulaawwaniitti alerguu barbaadde,gita =IDA'A(A1:B5) tiin, akka armaan gadiitti itti fufi:"
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3155111\n"
+"6\n"
+"help.text"
+msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph>."
+msgstr "Galmee <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 wajjin filiitii Tab dhiibi"
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3150200\n"
+"7\n"
+"help.text"
+msgid "Under <emph>Display</emph>, mark the <emph>Formulas</emph> check box. Click <emph>OK</emph>."
+msgstr "<emph>Agarsiisi</emph> jalatti, sanduuqa filannoo <emph>Foormulaawwan</emph> mallattoo itti godhi.<emph>TOLE</emph> cuqaasi."
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3154484\n"
+"8\n"
+"help.text"
+msgid "If you want to export the calculation results instead of the formulas, do not mark <emph>Formulas</emph>."
+msgstr "Yoo foormulaawwan osoo hin ta'in bu'aalee shallaggii alerguu barbaadde, <emph>Foormulaawwan</emph> mallattoo itti hin godhin."
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3148702\n"
+"9\n"
+"help.text"
+msgid "Choose <emph>File - Save as</emph>. You will see the <emph>Save as</emph> dialog."
+msgstr "<emph>Faayilii - Akkasitti olkaa'i</emph>fili.Qaaqa <emph>Akkasitti olkaa'i</emph> argita."
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3153912\n"
+"10\n"
+"help.text"
+msgid "In the <item type=\"menuitem\">File type</item> field select the format \"Text CSV\"."
+msgstr "Dirree <item type=\"menuitem\">Akaakuu Faayilii</item> keessatti dhangii \"CSV Barruu\" filadhu."
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3157978\n"
+"13\n"
+"help.text"
+msgid "Enter a name and click <emph>Save</emph>."
+msgstr "Maqaa galchiitii <emph>Olkaa'i</emph> cuqaasi."
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3152869\n"
+"23\n"
+"help.text"
+msgid "From the <emph>Export of text files</emph> dialog that appears, select the character set and the field and text delimiters for the data to be exported, and confirm with <emph>OK</emph>."
+msgstr "Qaaqa <emph>Alerga faayiloota barruu </emph> kan mul'atu irraa, gurmuu arfii fi daangessoota dirree fi barruu deetaa alergamuuf filadhu, <emph>TOLE</emph> dhaan mirkaneessi."
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3150050\n"
+"14\n"
+"help.text"
+msgid "If necessary, after you have saved, clear the <emph>Formulas</emph> check box to see the calculated results in the table again."
+msgstr "Yoo barbaachise, erga olkeessee booda, bu'aalee shallagaman gabatee keessatti ammas arguuf sanduuqa filannoo <emph>Foormulaawwan</emph> qulqulleessi."
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3153487\n"
"20\n"
"help.text"
-msgid "Once you have created a filter matrix, select the sheet ranges to be filtered. Open the <emph>Advanced Filter</emph> dialog by choosing <emph>Data - Filter - Advanced Filter</emph>, and define the filter conditions."
-msgstr "Erga tokkicha tarreentaa gingilchaa uumtee booda, hammangaa man'ee kan maxxansamuuf jedhu filadhu. Qaaqa <emph>Gingilchaa Olaanoo</emph> <emph>Deetaa - Gingilchaa - Gingilchaa Olaanoo</emph> filachuudhaan baniitii, haalleen gingilchaa qindeessi."
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>"
+msgstr ""
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153726\n"
+"csv_formula.xhp\n"
+"par_id3153008\n"
"21\n"
"help.text"
-msgid "Then click OK, and you will see that only the rows from the original sheet whose contents have met the search criteria are still visible. All other rows are temporarily hidden and can be made to reappear with the <emph>Format - Row - Show </emph>command."
-msgstr "TOLE cuqaasi,tarreewwan wardii jalqabaa kan qabiyyeewwan isaanii ulaagaa barbaachaa guutan qofatu akka ammallee mul'atan argita. Tarreewwan biroo hundi yeroof dhokatan booda ajaja <emph>Dhangii - Tarree - Mul'isi </emph> dhaan booda lamuu argamuu danda'a."
+msgid "<link href=\"text/shared/00/00000207.xhp\" name=\"Export text files\">Export text files</link>"
+msgstr "<link href=\"text/shared/00/00000207.xhp\" name=\"Export text files\">Faayiloota barruu alergi</link>"
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3149664\n"
+"csv_formula.xhp\n"
+"par_id3155595\n"
"22\n"
"help.text"
-msgid "<emph>Example</emph>"
-msgstr "<emph>Fakkeenya</emph>"
+msgid "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">Import text files</link>"
+msgstr "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">Faayiloota barruu alaagi</link>"
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3147427\n"
-"23\n"
+"currency_format.xhp\n"
+"tit\n"
"help.text"
-msgid "Load a spreadsheet with a large number of records. We are using a fictional <emph>Turnover</emph> document, but you can just as easily use any other document. The document has the following layout:"
-msgstr "Wardii tarreewwan baay'ee qabate fe'adhu. Galmee <emph>Turnover</emph> fayyadamaa jirra, garuu galmee biraa kamiyyuu salphaatti fayyadamuu dandeessa. Galmeen teessuma armaan gadii qaba:"
+msgid "Cells in Currency Format"
+msgstr "Maadheelee Dhangii Maallaqaa"
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3154510\n"
-"24\n"
+"currency_format.xhp\n"
+"bm_id3156329\n"
"help.text"
-msgid "<emph>A</emph>"
-msgstr "<emph>A</emph>"
+msgid "<bookmark_value>currency formats; spreadsheets</bookmark_value><bookmark_value>cells; currency formats</bookmark_value><bookmark_value>international currency formats</bookmark_value><bookmark_value>formats; currency formats in cells</bookmark_value><bookmark_value>currencies; default currencies</bookmark_value><bookmark_value>defaults;currency formats</bookmark_value><bookmark_value>changing;currency formats</bookmark_value>"
+msgstr "<bookmark_value>dhangiiwwan maallaqaa; wardiilee</bookmark_value><bookmark_value>maadheelee; dhangiiwwan maallaqaa</bookmark_value><bookmark_value>dhangiiwwan maallaqaa addunyaa</bookmark_value><bookmark_value>dhangiiwwan; dhangiiwwan maallaqaa maadheelee keessaa</bookmark_value><bookmark_value>maallaqoota; maallaqoota durtii</bookmark_value><bookmark_value>durtiiwwan;dhangiiwwan maallaqaa</bookmark_value><bookmark_value>jijjiiruu;dhangiiwwan maallaqaa</bookmark_value>"
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3150327\n"
-"25\n"
+"currency_format.xhp\n"
+"hd_id3156329\n"
+"46\n"
"help.text"
-msgid "<emph>B</emph>"
-msgstr "<emph>B</emph>"
+msgid "<variable id=\"currency_format\"><link href=\"text/scalc/guide/currency_format.xhp\" name=\"Cells in Currency Format\">Cells in Currency Format</link></variable>"
+msgstr "<variable id=\"currency_format\"><link href=\"text/scalc/guide/currency_format.xhp\" name=\"Cells in Currency Format\">Maadheelee Dhangii Maallaqaa</link></variable>"
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3154756\n"
-"26\n"
+"currency_format.xhp\n"
+"par_id3153968\n"
+"47\n"
"help.text"
-msgid "<emph>C</emph>"
-msgstr "<emph>C</emph>"
+msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can give numbers any currency format. When you click the <item type=\"menuitem\">Currency</item> icon <image id=\"img_id3150791\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3150791\">Icon</alt></image> in the <item type=\"menuitem\">Formatting</item> bar to format a number, the cell is given the default currency format set under <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</item>."
+msgstr ""
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3155335\n"
-"27\n"
+"currency_format.xhp\n"
+"par_id3150010\n"
+"48\n"
"help.text"
-msgid "<emph>D</emph>"
-msgstr "<emph>D</emph>"
+msgid "Exchanging of <item type=\"productname\">%PRODUCTNAME</item> Calc documents can lead to misunderstandings, if your <item type=\"productname\">%PRODUCTNAME</item> Calc document is loaded by a user who uses a different default currency format."
+msgstr "Galmeelee <item type=\"productname\">%PRODUCTNAME</item> Calc waljijjiiruun gara hubannoo dhoowwuutti, yoo galmeen <item type=\"productname\">%PRODUCTNAME</item> Calc kee fayyadamaa kan dhangii maallaqaa adda ta'e fayyadamuun fe'ame geessuu danda'a."
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3146315\n"
-"28\n"
+"currency_format.xhp\n"
+"par_id3156442\n"
+"52\n"
"help.text"
-msgid "<emph>E</emph>"
-msgstr "<emph>E</emph>"
+msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can define that a number that you have formatted as \"1,234.50 €\", still remains in euros in another country and does not become dollars."
+msgstr "<item type=\"productname\">%PRODUCTNAME</item> Calc keessatti akka lakkoofsi ati akka \"1,234.50 €\" tti dhangeessitee turte ammayyuu biyya biraa keessatti Euru dhaan hafuu fi doolara akka hin taane qindeessuu dandeessa."
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3145790\n"
-"29\n"
+"currency_format.xhp\n"
+"par_id3151075\n"
+"49\n"
"help.text"
-msgid "<emph>1</emph>"
-msgstr "<emph>1</emph>"
+msgid "You can change the currency format in the <item type=\"menuitem\">Format Cells</item> dialog (choose <item type=\"menuitem\">Format - Cells - Numbers</item> tab) by two country settings. In the <item type=\"menuitem\">Language</item> combo box select the basic setting for decimal and thousands separators. In the <item type=\"menuitem\">Format</item> list box you can select the currency symbol and its position."
+msgstr "Dhangii maallaqaa qaaqa <item type=\"menuitem\">Man'eelee Dhangeessi</item> keessatti qindaa'inoota biyyaa lamaan(caancala <item type=\"menuitem\">Dhangii - Man'eelee - Lakkoofsota</item> filadhu) jijjiiruu dandeessa. Sanduuqa makaa <item type=\"menuitem\">Afaan</item> keessatti qindaa'ina bu'uuraa mallattoo mallaqaaf, addaan baastota deesiimaalii fi kumaatiif filadhu. Sanduuqa tarree <item type=\"menuitem\">Dhangii</item> keessatti jijjiiramoota danda'aman dhangii durtii irraa afaaniif filachuu dandeessa."
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3159239\n"
-"30\n"
+"currency_format.xhp\n"
+"par_id3150749\n"
+"50\n"
"help.text"
-msgid "Month"
-msgstr "Ji'a"
+msgid "For example, if the language is set to \"Default\" and you are using a german locale setting, the currency format will be \"1.234,00 €\". A point is used before the thousand digits and a comma before the decimal places. If you now select the subordinate currency format \"$ English (US)\" from the <item type=\"menuitem\">Format</item> list box , you will get the following format: \"$ 1.234,00\". As you can see, the separators have remained the same. Only the currency symbol has been changed and converted, but the underlying format of the notation remains the same as in the locale setting."
+msgstr "Fakkeenyaaf, yoo afaan \"Durtii\" ta'ee kaa'amee fi qindaa'ina gitoo biyyaa jermanii fayyadamaa jiraatte, dhangiin maallaqaa \"1.234,00 €\" ta'a. Tuqaan fuuldura dijiitii kumaa yoo fayyadu qoodduun bakkeewwan deesiimaalii fuuldura fayyada. Yoo amma dhangii maallaqaa hirkataa \"$ English (US)\" sanduuqa tarree <item type=\"menuitem\">Dhangii</item> irraa filatte, dhangii armaan gadii argatta:\"$ 1.234,00\". Akkuma argitutti, addaan baastotni sanuma ta'u. Mallatoo maallaqaa qofatu jijjiiramee ture, ta'us dhangiin bu'uuraa sirnasxaa akkauma qindaa'ina gitoo biyyaa sanuma ta'a."
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3150086\n"
-"31\n"
+"currency_format.xhp\n"
+"par_id3145640\n"
+"51\n"
"help.text"
-msgid "Standard"
-msgstr "Durtii"
+msgid "If, under <item type=\"menuitem\">Language</item>, you convert the cells to \"English (US)\", the English-language locale setting is also transferred and the default currency format is now \"$ 1,234.00\"."
+msgstr "Yoo, <item type=\"menuitem\">Afaan</item> jalatti, man'eelee gara \"English (US)\" jijjiirte, qindaa'inni gitoo biyyaa afaan Ingilizii ni dabarsamee dhangiin maallaqaa durtii amma \"$ 1,234.00\" ta'a."
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3150202\n"
-"32\n"
+"currency_format.xhp\n"
+"par_id3154255\n"
+"53\n"
"help.text"
-msgid "Business"
-msgstr "Daldala"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Dhangii - Man'eewwan - Lakkoofsota</link>"
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3150883\n"
-"33\n"
+"database_define.xhp\n"
+"tit\n"
"help.text"
-msgid "Luxury"
-msgstr "Luxury"
+msgid "Defining Database Ranges"
+msgstr "Hammangaa Kuusaa deetaa Qindeessuu"
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3152987\n"
-"34\n"
+"database_define.xhp\n"
+"bm_id3154758\n"
"help.text"
-msgid "Suite"
-msgstr "Guutarta"
+msgid "<bookmark_value>tables; database ranges</bookmark_value> <bookmark_value>database ranges; defining</bookmark_value> <bookmark_value>ranges; defining database ranges</bookmark_value> <bookmark_value>defining;database ranges</bookmark_value>"
+msgstr "<bookmark_value>gabateewwan; hammangaawwan kuusaa deetaa</bookmark_value> <bookmark_value>hammangaawwan kuusaa deetaa; qindeessuu</bookmark_value> <bookmark_value>hammangaawwan; hammangaawwan kuusaa deetaa qindeessuu</bookmark_value> <bookmark_value>qindeessuu;hammangaawwan kuusaa deetaa</bookmark_value>"
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3154486\n"
-"35\n"
+"database_define.xhp\n"
+"hd_id3154758\n"
+"31\n"
"help.text"
-msgid "<emph>2</emph>"
-msgstr "<emph>2</emph>"
+msgid "<variable id=\"database_define\"><link href=\"text/scalc/guide/database_define.xhp\" name=\"Defining Database Ranges\">Defining a Database Range</link></variable>"
+msgstr "<variable id=\"database_define\"><link href=\"text/scalc/guide/database_define.xhp\" name=\"Defining Database Ranges\">Hammangaa Kuusaa deetaa Qindeessuu</link></variable>"
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3148839\n"
-"36\n"
+"database_define.xhp\n"
+"par_id3153768\n"
+"81\n"
"help.text"
-msgid "January"
-msgstr "Amajjii"
+msgid "You can define a range of cells in a spreadsheet to use as a database. Each row in this database range corresponds to a database record and each cell in a row corresponds to a database field. You can sort, group, search, and perform calculations on the range as you would in a database."
+msgstr "Hammangaa maadheelee wardii keessaa akka kuusaa deetaatti fayyadamuuf qindeessuu dandeessa. Tokkoon tokkoo tarree kuusaa deetaa kana keessaa galmee kuusaa deetaatiin wal gita akkasumas tokkoon tokkoo tarree keessaa dirree kuusaa deetaatiin wal gita. Hammangaa keessatti akkuma kuusaa deetaa keessaatti fo'uu, gareessuu, barbaaduu, fi shallaggiiwwan hojjechuu dandeessa."
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153816\n"
-"37\n"
+"database_define.xhp\n"
+"par_id3145801\n"
+"82\n"
"help.text"
-msgid "125600"
-msgstr "125600"
+msgid "You can only edit and access a database range in the spreadsheet that contains the range. You cannot access the database range in the %PRODUCTNAME Data Sources view."
+msgstr "Hammangaa kuusaa deetaa kan wardii hammangaa sana qabte keessaa qofa gulaaluu fi argachuu dandeessa.Hammangaa kuusaa deetaa argii maddawwan %PRODUCTNAME Data keessaa argachuu hin dandeessu."
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3157978\n"
-"38\n"
+"database_define.xhp\n"
+"par_idN10648\n"
"help.text"
-msgid "200500"
-msgstr "200500"
+msgid "To define a database range"
+msgstr "Hangii kuusdeetaa ibsuuf"
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3155268\n"
-"39\n"
+"database_define.xhp\n"
+"par_id3155064\n"
+"41\n"
"help.text"
-msgid "240000"
-msgstr "240000"
+msgid "Select the range of cells that you want to define as a database range."
+msgstr "Hammanga maadheelee kan akka hammanaga kuusaa deetaatti qindeessuu barbaaddu filadhu."
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153286\n"
-"40\n"
+"database_define.xhp\n"
+"par_idN10654\n"
"help.text"
-msgid "170000"
-msgstr "170000"
+msgid "Choose <item type=\"menuitem\">Data - Define Range</item>."
+msgstr "<item type=\"menuitem\">Deetaa - Hammanga Qindeessi</item> filadhu."
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3146782\n"
-"41\n"
+"database_define.xhp\n"
+"par_id3153715\n"
+"72\n"
"help.text"
-msgid "<emph>3</emph>"
-msgstr "<emph>3</emph>"
+msgid "In the <emph>Name</emph> box, enter a name for the database range."
+msgstr "Sanduuqa <emph>Maqaa</emph> keessatti, maqaa hammangaa kuusaa deetaatiif galchi."
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3149900\n"
-"42\n"
+"database_define.xhp\n"
+"par_idN1066A\n"
"help.text"
-msgid "February"
-msgstr "Guraandhala"
+msgid "Click <emph>More</emph>."
+msgstr "<emph>Dabalata</emph> cuqaasi."
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3154763\n"
-"43\n"
+"database_define.xhp\n"
+"par_id3154253\n"
+"42\n"
"help.text"
-msgid "160000"
-msgstr "160000"
+msgid "Specify the options for the database range."
+msgstr "Dirqaalaalee hammangaa kuusaa deetaatiif ifteessi."
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3150050\n"
-"44\n"
+"database_define.xhp\n"
+"par_idN10675\n"
"help.text"
-msgid "180300"
-msgstr "180300"
+msgid "Click <emph>OK</emph>."
+msgstr "<emph>TOLE</emph> cuqaasi."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153801\n"
-"45\n"
+"database_filter.xhp\n"
+"tit\n"
"help.text"
-msgid "362000"
-msgstr "362000"
+msgid "Filtering Cell Ranges"
+msgstr "Hammangaawwam Man'ee Gingilchuu"
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3154708\n"
-"46\n"
+"database_filter.xhp\n"
+"bm_id3153541\n"
"help.text"
-msgid "220000"
-msgstr "220000"
+msgid "<bookmark_value>cell ranges;applying/removing filters</bookmark_value> <bookmark_value>filtering;cell ranges/database ranges</bookmark_value> <bookmark_value>database ranges;applying/removing filters</bookmark_value> <bookmark_value>removing;cell range filters</bookmark_value>"
+msgstr "<bookmark_value>hammangaawwan man'ee;gingilchaawwan raawwachuu/balleessuu</bookmark_value> <bookmark_value>gingilchuu;hammangaawwan man'ee/hammangaawwan kuusaa deetaa</bookmark_value> <bookmark_value>hammangaawwan kuusaa deetaa;gingilchaawwan raawwachuu/balleessuu</bookmark_value> <bookmark_value>balleessuu;gingilchaawwan hammangaa man'ee</bookmark_value>"
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3151191\n"
+"database_filter.xhp\n"
+"hd_id3153541\n"
"47\n"
"help.text"
-msgid "<emph>4</emph>"
-msgstr "<emph>4</emph>"
+msgid "<variable id=\"database_filter\"><link href=\"text/scalc/guide/database_filter.xhp\" name=\"Filtering Cell Ranges\">Filtering Cell Ranges</link></variable>"
+msgstr "<variable id=\"database_filter\"><link href=\"text/scalc/guide/database_filter.xhp\" name=\"Filtering Cell Ranges\">Hammangaawwam Maadhee Gingilchuu</link></variable>"
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3147250\n"
+"database_filter.xhp\n"
+"par_id3145069\n"
"48\n"
"help.text"
-msgid "March"
-msgstr "Bitootessa"
+msgid "You can use several filters to filter cell ranges in spreadsheets. A standard filter uses the options that you specify to filter the data. An AutoFilter filters data according to a specific value or string. An advanced filter uses filter criteria from specified cells."
+msgstr "Gingilchaawwan baay'ee hammangaawwan maadhee wardiilee keessatti gingilchuuf fayyadamuu dandeessa. Gingilchaan durtii dirqaalaalee kan deetaa gingilchuuf ifteessite fayyadama. Gingilchaan ufmaa deetaa akkaataa gatii ykn diraa murtaa'eetti gingilcha. Gingilchaan olaanaa ulaagaa gingilchaa maadheelee murtaa'an irraa fayyadama."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153334\n"
-"49\n"
+"database_filter.xhp\n"
+"par_idN10682\n"
"help.text"
-msgid "170000"
-msgstr "170000"
+msgid "To Apply a Standard Filter to a Cell Range"
+msgstr "Gingilchaa durtii hammangaa man'eetti raawwadhu."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3151391\n"
+"database_filter.xhp\n"
+"par_id3150398\n"
"50\n"
"help.text"
-msgid "and so on..."
-msgstr "kkf"
+msgid "Click in a cell range."
+msgstr "Hammangaa maadhee keessatti cuqaasi."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3147300\n"
+"database_filter.xhp\n"
+"par_idN10693\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Data - Filter - Standard Filter</item>."
+msgstr "<item type=\"menuitem\">Gulaali - Gingilchi - Gingilchaawwan durtii</item> fili."
+
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"par_id3156422\n"
"51\n"
"help.text"
-msgid "Copy row 1 with the row headers (field names), to row 20, for example. Enter the filter conditions linked with OR in rows 21, 22, and so on."
-msgstr "Tarree 1 irraantota tarree wajjin(maqaalee dirree), gara tarree 20,fakkeenyaaf garagalchi. Haalleen gingilchaa kan tarreewan 21,22, fi kkf tti geessan ykn keessaa galchi."
+msgid "In the <emph>Standard Filter</emph> dialog, specify the filter options that you want."
+msgstr "Qaaqa <emph>Gingilcha Durtii</emph> keessatti,dirqaalaalee gingilchaa barbaaddu ifteessi."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3159115\n"
+"database_filter.xhp\n"
+"par_idN106A5\n"
+"help.text"
+msgid "Click <emph>OK</emph>."
+msgstr "<emph>TOLE</emph> cuqaasi."
+
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"par_id3153143\n"
"52\n"
"help.text"
-msgid "<emph>A</emph>"
-msgstr "<emph>A</emph>"
+msgid "The records that match the filter options that you specified are shown."
+msgstr "Galmeewwan kan dirqaalaalee gingilchaa ifteessite faana wal siman ni mul'atu."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3146886\n"
+"database_filter.xhp\n"
+"par_id3153728\n"
"53\n"
"help.text"
-msgid "<emph>B</emph>"
-msgstr "<emph>B</emph>"
+msgid "To Apply an AutoFilter to a Cell Range"
+msgstr "Ufmaan gingilchaa hammangaa maadheetti raawwachuuf"
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153124\n"
+"database_filter.xhp\n"
+"par_id3144764\n"
"54\n"
"help.text"
-msgid "<emph>C</emph>"
-msgstr "<emph>C</emph>"
+msgid "Click in a cell range or a database range."
+msgstr "Hammanga maadhee ykn kuusaa deetaa keessatti cuqaasi."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3152979\n"
-"55\n"
+"database_filter.xhp\n"
+"par_id9303872\n"
"help.text"
-msgid "<emph>D</emph>"
-msgstr "<emph>D</emph>"
+msgid "If you want to apply multiple AutoFilters to the same sheet, you must first define database ranges, then apply the AutoFilters to the database ranges."
+msgstr "Yoo ufmaan gingilchaa baay'ee wardii tokkotti raawwachuu barbaadde,jalqaba hammangaawwan kuusaa deetaa qindeessuu qabda,achiin ufmaan gingilchaa hammangaawwan kuusaa deetaa irratti raawwadhu."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3145827\n"
-"56\n"
+"database_filter.xhp\n"
+"par_id3154944\n"
+"55\n"
"help.text"
-msgid "<emph>E</emph>"
-msgstr "<emph>E</emph>"
+msgid "Choose <item type=\"menuitem\">Data - Filter - AutoFilter</item>."
+msgstr "<item type=\"menuitem\">Deetaa - Gingilcha - Ufmaan gingilchi</item>filadhu."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3149892\n"
-"57\n"
+"database_filter.xhp\n"
+"par_idN106DB\n"
"help.text"
-msgid "<emph>20</emph>"
-msgstr "<emph>20</emph>"
+msgid "An arrow button is added to the head of each column in the database range."
+msgstr "Qabduun xiyyaa hammangaa kuusaa deetaa keessatti mataa sarjaa hundaatti dabalama."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3150693\n"
-"58\n"
+"database_filter.xhp\n"
+"par_id3153878\n"
+"56\n"
"help.text"
-msgid "Month"
-msgstr "Ji'a"
+msgid "Click the arrow button in the column that contains the value or string that you want to set as the filter criteria."
+msgstr "Qabduu xiyyaa sarjaa kan gatii ykn diraa isa ati akka ulaagaa gingilchaatti kaa'uu barbaaddu qabatu cuqaasi."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3147475\n"
-"59\n"
+"database_filter.xhp\n"
+"par_idN10749\n"
"help.text"
-msgid "Standard"
-msgstr "Durtii"
+msgid "Select the value or string that you want to use as the filter criteria."
+msgstr "gatii ykn diraa akka ulaagaa gingilchaatti fayyadamuu barbaaddu filadhu."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3154846\n"
-"60\n"
+"database_filter.xhp\n"
+"par_idN1074C\n"
"help.text"
-msgid "Business"
-msgstr "Daldala"
+msgid "The records that match the filter criteria that you selected are shown."
+msgstr "Galmeewwan kan ulaagaa gingilchaa filatte guutan ni mul'atu."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153082\n"
-"61\n"
+"database_filter.xhp\n"
+"par_idN106E8\n"
"help.text"
-msgid "Luxury"
-msgstr "Luxury"
+msgid "To Remove a Filter From a Cell Range"
+msgstr "Gingilchaa hammangaa maadhee irraa haquuf"
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3149506\n"
-"62\n"
+"database_filter.xhp\n"
+"par_idN1075C\n"
"help.text"
-msgid "Suite"
-msgstr "Guutarta"
+msgid "Click in a filtered cell range."
+msgstr "Hammangaa maadhee gingilchamanii keessa cuqaasi."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3149188\n"
-"63\n"
+"database_filter.xhp\n"
+"par_idN106EC\n"
"help.text"
-msgid "<emph>21</emph>"
-msgstr "<emph>21</emph>"
+msgid "Choose <item type=\"menuitem\">Data - Filter - Remove Filter</item>."
+msgstr "<item type=\"menuitem\">Deetaa - Gingilchi - Haqi</item> fili."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3149956\n"
-"64\n"
+"database_filter.xhp\n"
+"par_id4525284\n"
"help.text"
-msgid "January"
-msgstr "Amajjii"
+msgid "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\">Wiki page about defining a data range</link>"
+msgstr ""
-#: specialfilter.xhp
+#: database_sort.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3150865\n"
-"65\n"
+"database_sort.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>22</emph>"
-msgstr "<emph>22</emph>"
+msgid "Sorting Data"
+msgstr "Deetaa Foo'uu"
-#: specialfilter.xhp
+#: database_sort.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3155957\n"
-"66\n"
+"database_sort.xhp\n"
+"bm_id3150767\n"
"help.text"
-msgid "<160000"
-msgstr "<160000"
+msgid "<bookmark_value>database ranges; sorting</bookmark_value> <bookmark_value>sorting; database ranges</bookmark_value> <bookmark_value>data;sorting in databases</bookmark_value>"
+msgstr "<bookmark_value>hammangaawwan kuusaa deetaa; foyuu</bookmark_value> <bookmark_value>foyuu; hammangaawwan kuusaa deetaa</bookmark_value> <bookmark_value>deetaa;kuusaa deetaa keessatti foyuu</bookmark_value>"
-#: specialfilter.xhp
+#: database_sort.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153566\n"
-"67\n"
+"database_sort.xhp\n"
+"hd_id3150767\n"
+"44\n"
"help.text"
-msgid "Specify that only rows which either have the value <item type=\"literal\">January</item> in the <emph>Month</emph> cells OR a value of under 160000 in the <emph>Standard</emph> cells will be displayed."
-msgstr "Akka tarreewwan kan gatii <item type=\"literal\">Amajjii</item> man'eelee <emph>Ji'a</emph> keessaa ykn gatii 160000 man'eelee <emph>Durtii</emph> keessaa qaban mul'atan ifteesa."
+msgid "<variable id=\"database_sort\"><link href=\"text/scalc/guide/database_sort.xhp\" name=\"Sorting Database Ranges\">Sorting Data</link></variable>"
+msgstr "<variable id=\"database_sort\"><link href=\"text/scalc/guide/database_sort.xhp\" name=\"Sorting Database Ranges\">Deetaa Foo'uu</link></variable>"
-#: specialfilter.xhp
+#: database_sort.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3147372\n"
-"68\n"
+"database_sort.xhp\n"
+"par_id3145751\n"
+"45\n"
"help.text"
-msgid "Choose <emph>Data - Filter - Advanced Filter</emph>, and then select the range A20:E22. After you click OK, only the filtered rows will be displayed. The other rows will be hidden from view."
-msgstr "<emph>Deetaa - Gingilcha - Gingilcha Olaanoo</emph> filadhuutii, hammangaa A20:E22 filadhu. Erga TOLE cuqaastee booda, tarreewwan gingilchaman qofatu mul' ata. Tarreewwan biroo argii irraa dhokatu."
+msgid "Click in a database range."
+msgstr "Hammangaa kuusaa deetaa keessatti cuqaasi."
-#: csv_formula.xhp
+#: database_sort.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"tit\n"
+"database_sort.xhp\n"
+"par_id121020081121549\n"
"help.text"
-msgid "Importing and Exporting Text Files"
-msgstr "Faayiloota Barruu Alaaguu fi Alerguu"
+msgid "If you select a range of cells, only these cells will get sorted. If you just click one cell without selecting, then the whole database range will get sorted."
+msgstr "Hangii man'eewwanii yoo filatte, man'eewwan kanneen qofatu kuufama. Filmaata malee man'ee tokko yoo cuqaaste, hangiin kuusdeetaa waamaraa ni kuufama."
-#: csv_formula.xhp
+#: database_sort.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"bm_id3153726\n"
+"database_sort.xhp\n"
+"par_idN10635\n"
"help.text"
-msgid "<bookmark_value>csv files;formulas</bookmark_value> <bookmark_value>formulas; importing/exporting as csv files</bookmark_value> <bookmark_value>exporting;formulas as csv files</bookmark_value> <bookmark_value>importing;csv files with formulas</bookmark_value>"
-msgstr "<bookmark_value>faayiloota csv;foormulaawwan</bookmark_value> <bookmark_value>foormulaawwan; akka faayiloota csvtti alaaguu/alerguu</bookmark_value> <bookmark_value>alerguu;foormulaawwan akka faayiloota csvtti</bookmark_value> <bookmark_value>alaaguu;faayiloota csv foormulaawwaniin</bookmark_value>"
+msgid "Choose <item type=\"menuitem\">Data - Sort</item>."
+msgstr "<item type=\"menuitem\">Deetaa - Foyi</item> filadhu."
-#: csv_formula.xhp
+#: database_sort.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"hd_id3153726\n"
-"1\n"
+"database_sort.xhp\n"
+"par_id121020081121547\n"
"help.text"
-msgid "<variable id=\"csv_formula\"><link href=\"text/scalc/guide/csv_formula.xhp\" name=\"Importing and Exporting Text Files\">Importing and Exporting CSV Text Files with Formulas</link></variable>"
-msgstr "<variable id=\"csv_formula\"><link href=\"text/scalc/guide/csv_formula.xhp\" name=\"Importing and Exporting Text Files\">Foormulaadhaan Faayiloota Barruu Alaaguu fi Alerguu</link></variable>"
+msgid "The range of cells that will get sorted is shown in inverted colors."
+msgstr "Hangiin man'eewwan kuufamanii halluuwwan garagaltoon mul'atu."
-#: csv_formula.xhp
+#: database_sort.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3149402\n"
-"2\n"
+"database_sort.xhp\n"
+"par_idN10645\n"
"help.text"
-msgid "Comma separated values (CSV) files are text files that contain the cell contents of a single sheet. Commas, semicolons, or other characters can be used as the field delimiters between the cells. Text strings are put in quotation marks, numbers are written without quotation marks."
-msgstr "Faayilootni gatiiwwan qoodduun addan bahan(CSV)faayiloota barruu kan qabiyyeewwan man'ee wardii baaqqee qabatu dha. Qoodduuwwan, buufatoonni xiqqaa, ykn arfiileen biroo akka daangessaa dirree jidduu man'eeleetti fayyaduu danda'u. Diraawwan barruu mallattoo waraabbii keessa taa'u, lakkoofsonni mallattoo waraabbii malee barreeffamu."
+msgid "Select the sort options that you want."
+msgstr "Dirqaalaalee foyuu barbaaddu filadhu."
-#: csv_formula.xhp
+#: database_sort.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"hd_id3150715\n"
-"15\n"
+"database_sort.xhp\n"
+"par_idN1063D\n"
"help.text"
-msgid "To Import a CSV File"
-msgstr "Faayilii CSV Alaaguuf"
+msgid "Click <emph>OK</emph>."
+msgstr "<emph>TOLE</emph> cuqaasi."
-#: csv_formula.xhp
+#: database_sort.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3153709\n"
-"16\n"
+"database_sort.xhp\n"
+"par_id1846980\n"
"help.text"
-msgid "Choose <emph>File - Open</emph>."
-msgstr "<emph>Faayilii - Bani</emph> filadhu."
+msgid "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\">Wiki page about defining a data range</link>"
+msgstr ""
-#: csv_formula.xhp
+#: datapilot.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3155445\n"
-"17\n"
+"datapilot.xhp\n"
+"tit\n"
"help.text"
-msgid "In the <emph>File type</emph> field, select the format \"Text CSV\". Select the file and click <emph>Open</emph>. When a file has the .csv extension, the file type is automatically recognized."
-msgstr "Dirree <emph>Gosa Faayilii</emph> keessatti, dhangii \"CSV Barruu\" filadhu. Faayilii filadhuutii <emph>Bani</emph> cuqaasi. Yemmuu faayiliin fufaa .csv qabu, gosti faayilii ufmaan beekama."
+msgid "Pivot Table"
+msgstr "Gabatee Qiinxaa"
-#: csv_formula.xhp
+#: datapilot.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3149565\n"
-"18\n"
+"datapilot.xhp\n"
+"bm_id3150448\n"
"help.text"
-msgid "You will see the <item type=\"menuitem\">Text Import</item> dialog. Click <item type=\"menuitem\">OK</item>."
-msgstr "Qaaqa <item type=\"menuitem\">Alaaga Barruu</item> agarta. <item type=\"menuitem\">Tole</item> cuqaasi."
+msgid "<bookmark_value>pivot table function; introduction</bookmark_value><bookmark_value>DataPilot, see pivot table function</bookmark_value>"
+msgstr "<bookmark_value>dalagaa DataPilot; seensa</bookmark_value><bookmark_value>gabatee qiinxaa, dalagaa DataPilot ilaali</bookmark_value>"
-#: csv_formula.xhp
+#: datapilot.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3149255\n"
-"19\n"
+"datapilot.xhp\n"
+"hd_id3150448\n"
+"7\n"
"help.text"
-msgid "If the csv file contains formulas, but you want to import the results of those formulas, then choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph> and clear the <emph>Formulas</emph> check box."
-msgstr ""
+msgid "<variable id=\"datapilot\"><link href=\"text/scalc/guide/datapilot.xhp\" name=\"Pivot Table\">Pivot Table</link></variable>"
+msgstr "<variable id=\"datapilot\"><link href=\"text/scalc/guide/datapilot.xhp\" name=\"DataPilot\">DataPilot</link></variable>"
-#: csv_formula.xhp
+#: datapilot.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"hd_id3154022\n"
-"3\n"
+"datapilot.xhp\n"
+"par_id3156024\n"
+"2\n"
"help.text"
-msgid "To Export Formulas and Values as CSV Files"
-msgstr "Foormulaawwanii fi Gatiiwwan akka Faayiloota CSV tti Alerguuf"
+msgid "The <emph>pivot table</emph> (formerly known as <emph>DataPilot</emph>) allows you to combine, compare, and analyze large amounts of data. You can view different summaries of the source data, you can display the details of areas of interest, and you can create reports."
+msgstr "<emph>DataPilot</emph> (yeroo tokko tokko kan akka <emph>Gabatee Qiinxaa</emph> tti beekamu) deetaa hanga guddaa makuuf,madaalchisuuf,akkasumas xiinxaluu si dandeessisa.Goolabawwan deetaa maddaa adda addaa arguu dandeessa,dirree fedhii gadfageenyaan agarsiisuu dandeessa, akkasumas gabaasota uumuu dandeessa."
-#: csv_formula.xhp
+#: datapilot.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3150342\n"
-"4\n"
+"datapilot.xhp\n"
+"par_id3145069\n"
+"9\n"
"help.text"
-msgid "Click the sheet to be written as a csv file."
-msgstr "Wardii akka faayilii csv tti barreeffamuuf jedhu cuqaasi."
+msgid "A table that has been created as a <link href=\"text/scalc/01/12090000.xhp\" name=\"pivot table\">pivot table</link> is an interactive table. Data can be arranged, rearranged or summarized according to different points of view."
+msgstr "Gabateen <link href=\"text/scalc/01/12090000.xhp\" name=\"DataPilot\">DataPilot</link> dhaan uumamee ture gabatee haasoo dha.Deetaan sirraa'uu, lamuu sirraa'uu yookiin goolabamuu akkaataa ilaalcha addaatiin ni danda'a."
-#: csv_formula.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3166423\n"
-"5\n"
+"datapilot_createtable.xhp\n"
+"tit\n"
"help.text"
-msgid "If you want to export the formulas as formulas, for example, in the form =SUM(A1:B5), proceed as follows:"
-msgstr "Yoo foormulaawwan akka foormulaawwaniitti alerguu barbaadde,gita =IDA'A(A1:B5) tiin, akka armaan gadiitti itti fufi:"
+msgid "Creating Pivot Tables"
+msgstr "Ganateewwan DataPilot uumuu"
-#: csv_formula.xhp
-#, fuzzy
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3155111\n"
-"6\n"
+"datapilot_createtable.xhp\n"
+"bm_id3148491\n"
"help.text"
-msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph>."
-msgstr "Galmee <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 wajjin filiitii Tab dhiibi"
+msgid "<bookmark_value>pivot tables</bookmark_value> <bookmark_value>pivot table function; calling up and applying</bookmark_value>"
+msgstr "<bookmark_value>gabateewwa DataPilot</bookmark_value> <bookmark_value>dalagaa DataPilot; waamtee raawwachuu</bookmark_value>"
-#: csv_formula.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3150200\n"
+"datapilot_createtable.xhp\n"
+"hd_id3148491\n"
"7\n"
"help.text"
-msgid "Under <emph>Display</emph>, mark the <emph>Formulas</emph> check box. Click <emph>OK</emph>."
-msgstr "<emph>Agarsiisi</emph> jalatti, sanduuqa filannoo <emph>Foormulaawwan</emph> mallattoo itti godhi.<emph>TOLE</emph> cuqaasi."
+msgid "<variable id=\"datapilot_createtable\"><link href=\"text/scalc/guide/datapilot_createtable.xhp\" name=\"Creating Pivot Tables\">Creating Pivot Tables</link></variable>"
+msgstr "<variable id=\"datapilot_createtable\"><link href=\"text/scalc/guide/datapilot_createtable.xhp\" name=\"Creating DataPilot Tables\">Gabateewwan DataPilot uumuu</link></variable>"
-#: csv_formula.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3154484\n"
+"datapilot_createtable.xhp\n"
+"par_id3156023\n"
"8\n"
"help.text"
-msgid "If you want to export the calculation results instead of the formulas, do not mark <emph>Formulas</emph>."
-msgstr "Yoo foormulaawwan osoo hin ta'in bu'aalee shallaggii alerguu barbaadde, <emph>Foormulaawwan</emph> mallattoo itti hin godhin."
+msgid "Position the cursor within a range of cells containing values, row and column headings."
+msgstr "Qaree hammangaa man'eelee gatiiwwan baatanii,tarree fi irraantota sarjaa keessatti qubachiisi."
-#: csv_formula.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3148702\n"
+"datapilot_createtable.xhp\n"
+"par_id3147264\n"
"9\n"
"help.text"
-msgid "Choose <emph>File - Save as</emph>. You will see the <emph>Save as</emph> dialog."
-msgstr "<emph>Faayilii - Akkasitti olkaa'i</emph>fili.Qaaqa <emph>Akkasitti olkaa'i</emph> argita."
+msgid "Choose <emph>Data - Pivot Table - Create</emph>. The <emph>Select Source</emph> dialog appears. Choose <emph>Current selection</emph> and confirm with <emph>OK</emph>. The table headings are shown as buttons in the <emph>Pivot Table</emph> dialog. Drag these buttons as required and drop them into the layout areas \"Page Fields\", \"Column Fields\", \"Row Fields\" and \"Data Fields\"."
+msgstr "<emph>Deetaa - DataPilot - Jalqaba</emph> filadhu. Qaaqni<emph>Madda filadhu</emph> ni mul'ata. <emph>Filannoo ammee</emph> filiitii <emph>TOLE</emph> dhaan mirkaneessi. Irraantowwan gabatee qaaqa <emph>DataPilot</emph> keessatti akka qabduuwwaniitti mul'atu. Qabduuwwan kunneen akka barbaadametti harkisiitii bal'inoota teessumaa \"Dirreewwan Fuulaa\", \"Dirreewwan Sarjaa\", \"Dirreewwan Tarree\" fi \"Dirreewwan Deetaa\" irra kaa'i."
-#: csv_formula.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3153912\n"
+"datapilot_createtable.xhp\n"
+"par_id3150868\n"
"10\n"
"help.text"
-msgid "In the <item type=\"menuitem\">File type</item> field select the format \"Text CSV\"."
-msgstr "Dirree <item type=\"menuitem\">Akaakuu Faayilii</item> keessatti dhangii \"CSV Barruu\" filadhu."
+msgid "Drag the desired buttons into one of the four areas."
+msgstr "Qabduuwwan barbaadde bal'inoota afran keessaa tokko irratti harkisi."
-#: csv_formula.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3157978\n"
-"13\n"
+"datapilot_createtable.xhp\n"
+"par_id7599414\n"
"help.text"
-msgid "Enter a name and click <emph>Save</emph>."
-msgstr "Maqaa galchiitii <emph>Olkaa'i</emph> cuqaasi."
+msgid "Drag a button to the <emph>Page Fields</emph> area to create a button and a listbox on top of the generated pivot table. The listbox can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the generated pivot table to use another page field as a filter."
+msgstr "Qabduu fi sanduuqa tarree gubbaa gabatee datapilot irratti uumuuf qabduu gara bal'ina <emph>Dirreewwan Fuulaa</emph> harkisi.Sanduuqni tarree qabiyyeewwan waanta filatameetiin gabatee datapilot gingilchuuf fayyaduu danda'a.Dirree fuulaa biraa akka gingilchaatti fayyadamuuf gabatee datapilot uumame keessatti harkisii-kaa'I fayyadamuu dandeessa."
-#: csv_formula.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3152869\n"
-"23\n"
+"datapilot_createtable.xhp\n"
+"par_id3154011\n"
+"11\n"
"help.text"
-msgid "From the <emph>Export of text files</emph> dialog that appears, select the character set and the field and text delimiters for the data to be exported, and confirm with <emph>OK</emph>."
-msgstr "Qaaqa <emph>Alerga faayiloota barruu </emph> kan mul'atu irraa, gurmuu arfii fi daangessoota dirree fi barruu deetaa alergamuuf filadhu, <emph>TOLE</emph> dhaan mirkaneessi."
+msgid "If the button is dropped in the <emph>Data Fields</emph> area it will be given a caption that also shows the formula that will be used to calculate the data."
+msgstr "Yoo qabduun bal'ina <emph>Dirreewwan Deetaa</emph> keessa bu'e goodayyaa kan foormulaa deetaa shallaguuf fayyadamnu mul'isuuf kennama."
-#: csv_formula.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3150050\n"
-"14\n"
+"datapilot_createtable.xhp\n"
+"par_id3146974\n"
+"16\n"
"help.text"
-msgid "If necessary, after you have saved, clear the <emph>Formulas</emph> check box to see the calculated results in the table again."
-msgstr "Yoo barbaachise, erga olkeessee booda, bu'aalee shallagaman gabatee keessatti ammas arguuf sanduuqa filannoo <emph>Foormulaawwan</emph> qulqulleessi."
+msgid "By double-clicking on one of the fields in the <emph>Data Fields</emph> area you can call up the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog."
+msgstr "Dirreewwan bal'ina <emph>Dirreewwan Deetaa</emph> keessa jiran keessaa tokko lamcuqaasuudhaan qaaqa <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Dirree Deetaa</emph></link> waamuu dandeessa."
-#: csv_formula.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3153487\n"
-"20\n"
+"datapilot_createtable.xhp\n"
+"par_id3156286\n"
+"17\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>"
+msgid "Use the <item type=\"menuitem\">Data Field</item> dialog to select the calculations to be used for the data. To make a multiple selection, press the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while clicking the desired calculation."
msgstr ""
-#: csv_formula.xhp
-msgctxt ""
-"csv_formula.xhp\n"
-"par_id3153008\n"
-"21\n"
-"help.text"
-msgid "<link href=\"text/shared/00/00000207.xhp\" name=\"Export text files\">Export text files</link>"
-msgstr "<link href=\"text/shared/00/00000207.xhp\" name=\"Export text files\">Faayiloota barruu alerguu</link>"
-
-#: csv_formula.xhp
-msgctxt ""
-"csv_formula.xhp\n"
-"par_id3155595\n"
-"22\n"
-"help.text"
-msgid "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">Import text files</link>"
-msgstr "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">Faayiloota barruu alerguu</link>"
-
-#: datapilot_grouping.xhp
-#, fuzzy
-msgctxt ""
-"datapilot_grouping.xhp\n"
-"tit\n"
-"help.text"
-msgid "Grouping Pivot Tables"
-msgstr "Ganateewwan DataPilot Gareessuu"
-
-#: datapilot_grouping.xhp
-#, fuzzy
+#: datapilot_createtable.xhp
msgctxt ""
-"datapilot_grouping.xhp\n"
-"bm_id4195684\n"
+"datapilot_createtable.xhp\n"
+"par_id3150329\n"
+"13\n"
"help.text"
-msgid "<bookmark_value>grouping; pivot tables</bookmark_value><bookmark_value>pivot table function;grouping table entries</bookmark_value><bookmark_value>ungrouping entries in pivot tables</bookmark_value>"
-msgstr "<bookmark_value>gareessuu; gabateewwan DataPilot</bookmark_value><bookmark_value>Dalagaa DataPilot;galfatoota gabatee gareessuu</bookmark_value><bookmark_value>galfatoota gabateewwan DataPilot keessaa gareerraa kaasuu </bookmark_value>"
+msgid "The order of the buttons can be changed at any time by moving them to a different position in the area with the mouse."
+msgstr "Tartiibni qabduuwwanii yeroo kamiyyuu qabduuwwan bal'ina keessatti gara qubannoo biraa hantuuteen deemsisuudhaan jijjiiramuu danda'a."
-#: datapilot_grouping.xhp
-#, fuzzy
+#: datapilot_createtable.xhp
msgctxt ""
-"datapilot_grouping.xhp\n"
-"par_idN10643\n"
+"datapilot_createtable.xhp\n"
+"par_id3153714\n"
+"14\n"
"help.text"
-msgid "<variable id=\"datapilot_grouping\"><link href=\"text/scalc/guide/datapilot_grouping.xhp\">Grouping Pivot Tables</link></variable>"
-msgstr "<variable id=\"datapilot_grouping\"><link href=\"text/scalc/guide/datapilot_grouping.xhp\">Gabateewwan DataPilot Gareessuu</link></variable>"
+msgid "Remove a button by dragging it back to the area of the other buttons at the right of the dialog."
+msgstr "Duubatti gara mirga qaaqa bal'ina qabduuwwan birootti harkissudhaan qabduu balleessi."
-#: datapilot_grouping.xhp
-#, fuzzy
+#: datapilot_createtable.xhp
msgctxt ""
-"datapilot_grouping.xhp\n"
-"par_idN10661\n"
+"datapilot_createtable.xhp\n"
+"par_id3147338\n"
+"15\n"
"help.text"
-msgid "The resulting pivot table can contain many different entries. By grouping the entries, you can improve the visible result."
-msgstr "Gabateen DataPilot argamu galfatoota garagaraa baay'ee qabachuu danda'a. Galfatoota gareessuudhaan, bu'aa mul'atu fooyyessuu dandeessa."
+msgid "To open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog, double-click one of the buttons in the <emph>Row Fields</emph> or <emph>Column Fields</emph> area. Use the dialog to select if and to what extent <item type=\"productname\">%PRODUCTNAME</item> calculates display subtotals."
+msgstr ""
-#: datapilot_grouping.xhp
-#, fuzzy
+#: datapilot_createtable.xhp
msgctxt ""
-"datapilot_grouping.xhp\n"
-"par_idN10667\n"
+"datapilot_createtable.xhp\n"
+"par_id3154020\n"
+"18\n"
"help.text"
-msgid "Select a cell or range of cells in the pivot table."
-msgstr "Maadhee ykn hammangaa maadheelee gabatee DataPilot keessaa filadhu."
+msgid "Exit the Pivot Table dialog by pressing OK. A <emph>Filter</emph> button will now be inserted, or a page button for every data field that you dropped in the <emph>Page Fields</emph> area. The pivot table is inserted further down."
+msgstr "TOLE tuquudhaan qaaqa DataPilot dhaamsi.Qabduun <emph>Gingilchi</emph> amma ni saagama,ykn qabduu fuulaa dirree deetaa kan ati bal'ina <emph>Dirreewwan Fuulaa</emph> keessa buuste maraaf.Gabateen DataPilot gad fagaateetu saagama."
-#: datapilot_grouping.xhp
+#: datapilot_deletetable.xhp
msgctxt ""
-"datapilot_grouping.xhp\n"
-"par_idN1066B\n"
+"datapilot_deletetable.xhp\n"
+"tit\n"
"help.text"
-msgid "Choose <emph>Data - Group and Outline - Group</emph>."
-msgstr "<emph>Deetaa - Garee fi Toorii - Gareessi</emph> filadhu."
+msgid "Deleting Pivot Tables"
+msgstr "Gabateewwan DataPilot uumuu"
-#: datapilot_grouping.xhp
-#, fuzzy
+#: datapilot_deletetable.xhp
msgctxt ""
-"datapilot_grouping.xhp\n"
-"par_idN1066E\n"
+"datapilot_deletetable.xhp\n"
+"bm_id3153726\n"
"help.text"
-msgid "Depending on the format of the selected cells, either a new group field is added to the pivot table, or you see one of the two <link href=\"text/scalc/01/12090400.xhp\">Grouping</link> dialogs, either for numeric values, or for date values."
-msgstr "Dhangii maadheelee filatamanii irratti hundaa'uudhaan, dirreen garee haaraa gara gabatee DataPilot dabalama, ykn qaaqota <link href=\"text/scalc/01/12090400.xhp\">Gareessuu</link> keessaa tokko, gatiiwwan lakkoofsaaf, ykn gatiiwwan guyyaatiif argita."
+msgid "<bookmark_value>pivot table function; deleting tables</bookmark_value> <bookmark_value>deleting;pivot tables</bookmark_value>"
+msgstr "<bookmark_value>DataPilot function; deleting tables</bookmark_value> <bookmark_value>haquu; gabateewwan DataPilot</bookmark_value>"
-#: datapilot_grouping.xhp
-#, fuzzy
+#: datapilot_deletetable.xhp
msgctxt ""
-"datapilot_grouping.xhp\n"
-"par_id3328653\n"
+"datapilot_deletetable.xhp\n"
+"hd_id3153726\n"
+"31\n"
"help.text"
-msgid "The pivot table must be organized in a way that grouping can be applied."
-msgstr "Gabateen DataPilot akkaataa gareessuun raawwatuun qindaa'uu qaba."
+msgid "<variable id=\"datapilot_deletetable\"><link href=\"text/scalc/guide/datapilot_deletetable.xhp\" name=\"Deleting Pivot Tables\">Deleting Pivot Tables</link></variable>"
+msgstr "<variable id=\"datapilot_deletetable\"><link href=\"text/scalc/guide/datapilot_deletetable.xhp\" name=\"Deleting DataPilot Tables\">Gabateewwan DataPilot Haquu</link></variable>"
-#: datapilot_grouping.xhp
+#: datapilot_deletetable.xhp
msgctxt ""
-"datapilot_grouping.xhp\n"
-"par_idN10682\n"
+"datapilot_deletetable.xhp\n"
+"par_id3154014\n"
+"32\n"
"help.text"
-msgid "To remove a grouping, click inside the group, then choose <emph>Data - Group and Outline - Ungroup</emph>."
-msgstr "Gareessuu haquuf, garee keessa cuqaasi, achiin <emph>Deetaa - Garee fi Toorii - Gareerraa baasi</emph> filadhu."
+msgid "In order to delete a pivot table, click any cell in the pivot table, then choose <emph>Delete</emph> in the context menu."
+msgstr "Gabatee DataPilot haquuf,man'ee kamiyyuu gabatee DataPilot keeessaa filadhu, achiin <emph>Haqi</emph> baafata haallee keessaa fili."
#: datapilot_edittable.xhp
-#, fuzzy
msgctxt ""
"datapilot_edittable.xhp\n"
"tit\n"
@@ -6689,7 +4371,6 @@ msgid "Editing Pivot Tables"
msgstr "Gabateewwan DataPilot gulaaluu"
#: datapilot_edittable.xhp
-#, fuzzy
msgctxt ""
"datapilot_edittable.xhp\n"
"bm_id3148663\n"
@@ -6698,7 +4379,6 @@ msgid "<bookmark_value>pivot table function; editing tables</bookmark_value><boo
msgstr "<bookmark_value>dalagaa DataPilot; gabateewwan gulaaluu</bookmark_value> <bookmark_value>gulaaluu; gabateewwan DataPilot</bookmark_value>"
#: datapilot_edittable.xhp
-#, fuzzy
msgctxt ""
"datapilot_edittable.xhp\n"
"hd_id3148663\n"
@@ -6708,7 +4388,6 @@ msgid "<variable id=\"datapilot_edittable\"><link href=\"text/scalc/guide/datapi
msgstr "<variable id=\"datapilot_edittable\"><link href=\"text/scalc/guide/datapilot_edittable.xhp\" name=\"Editing DataPilot Tables\">Gabateewwan DataPilot Gulaaluu</link></variable>"
#: datapilot_edittable.xhp
-#, fuzzy
msgctxt ""
"datapilot_edittable.xhp\n"
"par_id3150868\n"
@@ -6727,7 +4406,6 @@ msgid "By dragging the button to a different position in the same row you can al
msgstr "Qabduu tarree sana keessatti gara qubannoo birootti harkisuudhaan tartiiba sarjaawwanii jijjiiruu dandeessa.Yoo qabduu gara qarree bitaa gabateetti bal'ina irraantoowwan taree keessatti harkiste,sarjaa gara tarreetti jijjiiruu dandeessa."
#: datapilot_edittable.xhp
-#, fuzzy
msgctxt ""
"datapilot_edittable.xhp\n"
"par_id1648915\n"
@@ -6736,7 +4414,6 @@ msgid "In the Pivot Table dialog, you can drag a button to the <emph>Page Fields
msgstr "Qaaqa DataPilot keessatti,qabduu fi sanduuqa tarree gabatee DataPilot uumame irratti uumuuf qabduu gara bal'ina <emph>Dirreewwan Fuulaa</emph> harkisuu dandeessa.Sanduuqni tarree gabatee DataPilot qabiyyeewwan waanta filatamaniitiin gingilchuuf fayyaduu danda'a.Dirree fuulaa biraa akka gingilchaatti fayyadamuuf harkisii-kaayi gabatee DataPilot keessatti fayyadamuu dandeessa."
#: datapilot_edittable.xhp
-#, fuzzy
msgctxt ""
"datapilot_edittable.xhp\n"
"par_id3147434\n"
@@ -6746,7 +4423,6 @@ msgid "To remove a button from the table, just drag it out of the pivot table. R
msgstr "Qabduu gabatee irraa haquuf,gabatee DataPilot irraa harkisi.Qabduu yeroo qareen hantuutee wardii keessa kaa'ame sajoo \"hin eeyyamamu\" ta'e gad dhiisi.Qabduun ni haqama."
#: datapilot_edittable.xhp
-#, fuzzy
msgctxt ""
"datapilot_edittable.xhp\n"
"par_id3156442\n"
@@ -6756,7 +4432,6 @@ msgid "To edit the pivot table, click a cell inside the pivot table and open the
msgstr "Gabatee DataPilot gulaaluuf,man'ee gabatee DataPilot cuqaasiitii baafata haallee bani.Baafata haallee keessatti ajaja <emph>Jalqabi</emph> argita,kan qaaqa <emph>DataPilot</emph> gabatee DataPilot ammeetiif mul'isu."
#: datapilot_edittable.xhp
-#, fuzzy
msgctxt ""
"datapilot_edittable.xhp\n"
"par_id2666096\n"
@@ -6772,149 +4447,292 @@ msgctxt ""
msgid "You can assign custom display names to fields, field members, subtotals (with some restrictions), and grand totals inside pivot tables. A custom display name is assigned to an item by overwriting the original name with another name."
msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
+"datapilot_filtertable.xhp\n"
"tit\n"
"help.text"
-msgid "Using Rounded Off Numbers"
-msgstr "Lakkoofsota Sissiqanitti Fayyadamuu"
+msgid "Filtering Pivot Tables"
+msgstr "Gabateewwan DataPilot gingilchuu"
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"bm_id3153361\n"
+"datapilot_filtertable.xhp\n"
+"bm_id3150792\n"
"help.text"
-msgid "<bookmark_value>numbers; rounded off</bookmark_value><bookmark_value>rounded off numbers</bookmark_value><bookmark_value>exact numbers in $[officename] Calc</bookmark_value><bookmark_value>decimal places; showing</bookmark_value><bookmark_value>changing;number of decimal places</bookmark_value><bookmark_value>values;rounded in calculations</bookmark_value><bookmark_value>calculating;rounded off values</bookmark_value><bookmark_value>numbers; decimal places</bookmark_value><bookmark_value>precision as shown</bookmark_value><bookmark_value>rounding precision</bookmark_value><bookmark_value>spreadsheets; values as shown</bookmark_value>"
-msgstr "<bookmark_value>lakkoofsota; sissiqsi</bookmark_value><bookmark_value>lakkoofsota sissiqsi</bookmark_value><bookmark_value>lakkoofsota sirrii $[officename] Calc keessaa</bookmark_value><bookmark_value>bakkeewwan deesiimaalii; agarsiisuu</bookmark_value><bookmark_value>jijjiiruu;lakkoofsa bakkeewwan deesiimaalii</bookmark_value><bookmark_value>gatiiwwan;shallagii keessatti sissiqan</bookmark_value><bookmark_value>shallaguu;gatiiwwan sissiqan</bookmark_value><bookmark_value>lakkoofsota; bakkeewwan deesiimaalii</bookmark_value><bookmark_value>sirrummaa akka argametti</bookmark_value><bookmark_value>sirrummaa sissiqsaa</bookmark_value><bookmark_value>wardiilee; gatiiwwan akka argamaniitti</bookmark_value>"
+msgid "<bookmark_value>pivot table function; filtering tables</bookmark_value><bookmark_value>filtering;pivot tables</bookmark_value>"
+msgstr "<bookmark_value>dalagaa DataPilot ; gabateewwan gingilchuu</bookmark_value> <bookmark_value>gingilchuu;gabateewwan DataPilot</bookmark_value>"
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"hd_id3156422\n"
-"2\n"
+"datapilot_filtertable.xhp\n"
+"hd_id3150792\n"
"help.text"
-msgid "<variable id=\"rounding_numbers\"><link href=\"text/scalc/guide/rounding_numbers.xhp\" name=\"Using Rounded Off Numbers\">Using Rounded Off Numbers</link></variable>"
-msgstr "<variable id=\"rounding_numbers\"><link href=\"text/scalc/guide/rounding_numbers.xhp\" name=\"Using Rounded Off Numbers\">Lakkoofsota sissiqanitti fayyadamuu</link></variable>"
+msgid "<variable id=\"datapilot_filtertable\"><link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Filtering Pivot Tables\">Filtering Pivot Tables</link></variable>"
+msgstr "<variable id=\"datapilot_filtertable\"><link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Filtering DataPilot Tables\">Gabateewwan DataPilot Gingilchuu</link></variable>"
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3153726\n"
-"3\n"
+"datapilot_filtertable.xhp\n"
+"par_id3153192\n"
"help.text"
-msgid "In $[officename] Calc, all decimal numbers are displayed rounded off to two decimal places."
-msgstr "$[officename] Calc keessatti, lakkoofsonni deesiimaalii marti gara bakka deesiimaalii lamaatti sissiqanii mul'atu."
+msgid "You can use filters to remove unwanted data from a pivot table."
+msgstr "Gingilchaawwan fayyadamtee deetaa hin barbaachifne gabatee DataPilot irraa haquu dandeessa."
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"hd_id3152596\n"
-"4\n"
+"datapilot_filtertable.xhp\n"
+"par_id3150441\n"
"help.text"
-msgid "To change this for selected cells"
-msgstr "Kana maadheelee filatamaniif jijjiiruuf"
+msgid "Click the <emph>Filter</emph> button in the sheet to call up the dialog for the filter conditions. Alternatively, call up the context menu of the pivot table and select the <emph>Filter</emph> command. The <link href=\"text/scalc/01/12090103.xhp\" name=\"Filter\"><emph>Filter</emph></link> dialog appears. Here you can filter the pivot table."
+msgstr "Qabduu <emph>Gingilchi</emph> wardii keessaa qaaqa haalleen gingilchaatiif waamuuf cuqaasi. Karaa biraa, baafata haallee gabatee DataPilot waamiitii ajaja <emph>Gingilchi</emph> filadhu. Qaaqni <link href=\"text/scalc/01/12090103.xhp\" name=\"Filter\"><emph>Gingilchi</emph></link> ni mul'ata. Asittti gabatee DataPilot gingilchuu dandeessa."
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3154321\n"
-"5\n"
+"datapilot_filtertable.xhp\n"
+"par_id315044199\n"
"help.text"
-msgid "Mark all the cells you want to modify."
-msgstr "Maadheelee fooyyessuu barbaaddu mara mallatto itti godhi."
+msgid "You can also click the arrow on a button in the pivot table to show a pop-up window. In this pop-up window, you can edit the visibility settings of the associated field."
+msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3147428\n"
-"6\n"
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344485\n"
"help.text"
-msgid "Choose <emph>Format - Cells</emph> and go to the <emph>Numbers</emph> tab page."
-msgstr "<emph>Dhangii - Man'eelee</emph> filiitii gara fuula caancala <emph>Lakkoofsota</emph> deemi."
+msgid "The pop-up window displays a list of field members associated with that field. A check box is placed to the left of each field member name. When a field has an alternative display name that differs from its original name, that name is displayed in the list."
+msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3153876\n"
-"7\n"
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344449\n"
"help.text"
-msgid "In the <emph>Category</emph> field, select <emph>Number</emph>. Under <emph>Options</emph>, change the number of <emph>Decimal places</emph> and exit the dialog with OK."
-msgstr "Dirree <emph>Akaakuu</emph> keessatti, <emph>Lakkoofsa</emph> filadhu. <emph>Options</emph> jalatti, lakkoofsa <emph>Bakkee deesiimaalii</emph> jijjiiriitii qaaqa TOLE dhaan cufi.."
+msgid "Enable or disable a checkbox to show or hide the associated field member in the pivot table."
+msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"hd_id3155415\n"
-"8\n"
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344493\n"
"help.text"
-msgid "To change this everywhere"
+msgid "Enable or disable the <emph>All</emph> checkbox to show all or none of the field members."
+msgstr "Faayilii akka geessituu ammaatti saaguuf sanduuqa filannoo, <emph>faayiliitti kornyeessi</emph> akka hajjatuu taasiisi."
+
+#: datapilot_filtertable.xhp
+msgctxt ""
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344431\n"
+"help.text"
+msgid "Select a field member in the pop-up window and click the <item type=\"menuitem\">Show only the current item</item> button to show only the selected field member. All other field members are hidden in the pivot table."
msgstr ""
-#: rounding_numbers.xhp
-#, fuzzy
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3150715\n"
-"9\n"
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344484\n"
"help.text"
-msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph>."
+msgid "Select a field member in the pop-up window and click the <item type=\"menuitem\">Hide only the current item</item> button to hide only the selected field member. All other field members are shown in the pivot table."
+msgstr ""
+
+#: datapilot_filtertable.xhp
+msgctxt ""
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344578\n"
+"help.text"
+msgid "Commands enable you to sort the field members in ascending order, descending order, or using a custom sort list."
+msgstr ""
+
+#: datapilot_filtertable.xhp
+msgctxt ""
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344584\n"
+"help.text"
+msgid "To edit the custom sort lists, open <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists."
msgstr "Galmee <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 wajjin filiitii Tab dhiibi"
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3153707\n"
-"10\n"
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344811\n"
"help.text"
-msgid "Go to the <emph>Calculate</emph> page. Modify the number of <emph>Decimal places</emph> and exit the dialog with OK."
-msgstr "Gara fuula <emph>Shallagi</emph> deemi. Lakkoofsa <emph>Bakka deesiimaalii</emph> fooyyessiitii qaaqa TOLE dhaan cufi."
+msgid "The arrow to open the pop-up window is normally black. When the field contains one or more hidden field members, the arrow is blue and displays a tiny square at its lower-right corner."
+msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"hd_id3154755\n"
-"11\n"
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344884\n"
"help.text"
-msgid "To calculate with the rounded off numbers instead of the internal exact values"
-msgstr "Gatiiwwan sirrii keessaatiin osoo hin ta'in lakkoofsota sissiqaniin shallaguu"
+msgid "You can also open the pop-up window by positioning the cell cursor at the button and pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+D."
+msgstr "Itti dabaltees fuula Gargaarsaa keessatti cuqaasuu dandeessa achiin <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F dhiibi."
-#: rounding_numbers.xhp
-#, fuzzy
+#: datapilot_grouping.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3150045\n"
-"12\n"
+"datapilot_grouping.xhp\n"
+"tit\n"
"help.text"
-msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph>."
-msgstr "Galmee <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 wajjin filiitii Tab dhiibi"
+msgid "Grouping Pivot Tables"
+msgstr "Ganateewwan DataPilot Gareessuu"
-#: rounding_numbers.xhp
+#: datapilot_grouping.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3146920\n"
-"13\n"
+"datapilot_grouping.xhp\n"
+"bm_id4195684\n"
"help.text"
-msgid "Go to the <emph>Calculate</emph> page. Mark the <emph>Precision as shown</emph> field and exit the dialog with OK."
-msgstr "Gara fuula <emph>Shallagi</emph> deemi. Dirree <emph>Sirrummaa akka agarsiifametti</emph> mallattoo itti gochiitii qaaqa TOLE dhaan cufi."
+msgid "<bookmark_value>grouping; pivot tables</bookmark_value><bookmark_value>pivot table function;grouping table entries</bookmark_value><bookmark_value>ungrouping entries in pivot tables</bookmark_value>"
+msgstr "<bookmark_value>gareessuu; gabateewwan DataPilot</bookmark_value><bookmark_value>Dalagaa DataPilot;galfatoota gabatee gareessuu</bookmark_value><bookmark_value>galfatoota gabateewwan DataPilot keessaa gareerraa kaasuu </bookmark_value>"
-#: rounding_numbers.xhp
+#: datapilot_grouping.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3145790\n"
-"14\n"
+"datapilot_grouping.xhp\n"
+"par_idN10643\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
-msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Lakkoofsota</link>"
+msgid "<variable id=\"datapilot_grouping\"><link href=\"text/scalc/guide/datapilot_grouping.xhp\">Grouping Pivot Tables</link></variable>"
+msgstr "<variable id=\"datapilot_grouping\"><link href=\"text/scalc/guide/datapilot_grouping.xhp\">Gabateewwan DataPilot Gareessuu</link></variable>"
-#: rounding_numbers.xhp
+#: datapilot_grouping.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3147005\n"
-"15\n"
+"datapilot_grouping.xhp\n"
+"par_idN10661\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01060500.xhp\" name=\"Calculate\">Calculate</link>"
-msgstr "<link href=\"text/shared/optionen/01060500.xhp\" name=\"Calculate\">Shallagi</link>"
+msgid "The resulting pivot table can contain many different entries. By grouping the entries, you can improve the visible result."
+msgstr "Gabateen DataPilot argamu galfatoota garagaraa baay'ee qabachuu danda'a. Galfatoota gareessuudhaan, bu'aa mul'atu fooyyessuu dandeessa."
+
+#: datapilot_grouping.xhp
+msgctxt ""
+"datapilot_grouping.xhp\n"
+"par_idN10667\n"
+"help.text"
+msgid "Select a cell or range of cells in the pivot table."
+msgstr "Maadhee ykn hammangaa maadheelee gabatee DataPilot keessaa filadhu."
+
+#: datapilot_grouping.xhp
+msgctxt ""
+"datapilot_grouping.xhp\n"
+"par_idN1066B\n"
+"help.text"
+msgid "Choose <emph>Data - Group and Outline - Group</emph>."
+msgstr "<emph>Deetaa - Garee fi Toorii - Gareessi</emph> filadhu."
+
+#: datapilot_grouping.xhp
+msgctxt ""
+"datapilot_grouping.xhp\n"
+"par_idN1066E\n"
+"help.text"
+msgid "Depending on the format of the selected cells, either a new group field is added to the pivot table, or you see one of the two <link href=\"text/scalc/01/12090400.xhp\">Grouping</link> dialogs, either for numeric values, or for date values."
+msgstr "Dhangii maadheelee filatamanii irratti hundaa'uudhaan, dirreen garee haaraa gara gabatee DataPilot dabalama, ykn qaaqota <link href=\"text/scalc/01/12090400.xhp\">Gareessuu</link> keessaa tokko, gatiiwwan lakkoofsaaf, ykn gatiiwwan guyyaatiif argita."
+
+#: datapilot_grouping.xhp
+msgctxt ""
+"datapilot_grouping.xhp\n"
+"par_id3328653\n"
+"help.text"
+msgid "The pivot table must be organized in a way that grouping can be applied."
+msgstr "Gabateen DataPilot akkaataa gareessuun raawwatuun qindaa'uu qaba."
+
+#: datapilot_grouping.xhp
+msgctxt ""
+"datapilot_grouping.xhp\n"
+"par_idN10682\n"
+"help.text"
+msgid "To remove a grouping, click inside the group, then choose <emph>Data - Group and Outline - Ungroup</emph>."
+msgstr "Gareessuu haquuf, garee keessa cuqaasi, achiin <emph>Deetaa - Garee fi Toorii - Gareerraa baasi</emph> filadhu."
+
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting Pivot Table Output Ranges"
+msgstr "Hammangaawwan bahaa DataPilot filachuu"
+
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"bm_id3148663\n"
+"help.text"
+msgid "<bookmark_value>pivot table function; preventing data overwriting</bookmark_value><bookmark_value>output ranges of pivot tables</bookmark_value>"
+msgstr "<bookmark_value>dalagaa DataPilot; deetaa irraguu dhorkuu</bookmark_value><bookmark_value>hammangaawwan bahaa gabateewwan DataPilot</bookmark_value>"
+
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"hd_id3148663\n"
+"19\n"
+"help.text"
+msgid "<variable id=\"datapilot_tipps\"><link href=\"text/scalc/guide/datapilot_tipps.xhp\" name=\"Selecting Pivot Table Output Ranges\">Selecting Pivot Table Output Ranges</link></variable>"
+msgstr "<variable id=\"datapilot_tipps\"><link href=\"text/scalc/guide/datapilot_tipps.xhp\" name=\"Selecting DataPilot Output Ranges\">Hammangaawwan bahaa DataPilot filachuu</link></variable>"
+
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"par_id3154123\n"
+"20\n"
+"help.text"
+msgid "Click the button <emph>More</emph> in the <emph>Pivot Table</emph> dialog. The dialog will be extended."
+msgstr "Qabduu <emph>Dabalata</emph> qaaqa <emph>DataPilot</emph> keessaa cuqaasi. Qaaqni ni babal'ata."
+
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"par_id3153771\n"
+"21\n"
+"help.text"
+msgid "You can select a named range in which the pivot table is to be created, from the <emph>Results to</emph> box. If the results range does not have a name, enter the coordinates of the upper left cell of the range into the field to the right of the <emph>Results to</emph> box. You can also click on the appropriate cell to have the coordinates entered accordingly."
+msgstr "Hammanga moggaafame kan gabateen DataPilot keessatti uumamuuf jedhu filachuu dandeessa, sanduuqa <emph>Bu'aalee gara</emph> irraa. Yoo hammangaan bu'aalee maqaa hin qabu ta'e, walgitoonni maadhee gubbaa bitaa hammangaa gara dirree mirga sanduuqa <emph>Bu'aalee gara</emph> galchi. Akka walgitoonni galaniif maadhee sirrii ta'e irratti cuqaasuus dandeessa."
+
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"par_id3146974\n"
+"23\n"
+"help.text"
+msgid "If you mark the <emph>Ignore empty rows</emph> check box, they will not be taken into account when the pivot table is created."
+msgstr "Yoo sanduuqa filannoo <emph>Tarreewwan duwwaa tuffadhu </emph> mallatteessite, yeroo gabateen DataPilot uumamu xiyyeeffannaa keessa hin galan."
+
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"par_id3145273\n"
+"24\n"
+"help.text"
+msgid "If the <emph>Identify categories</emph> check box is marked, the categories will be identified by their headings and assigned accordingly when the pivot table is created."
+msgstr "Yoo sanduuqni filannoo <emph>Akaakuuwwan addaan baasi</emph> mallattaa'e, akaakuuwwan irraantota isaaniitiin addaan baasamanii yeroo DataPilot uumamu ramadu."
+
+#: datapilot_updatetable.xhp
+msgctxt ""
+"datapilot_updatetable.xhp\n"
+"tit\n"
+"help.text"
+msgid "Updating Pivot Tables"
+msgstr "Ganateewwan DataPilot fooyyessuu"
+
+#: datapilot_updatetable.xhp
+msgctxt ""
+"datapilot_updatetable.xhp\n"
+"bm_id3150792\n"
+"help.text"
+msgid "<bookmark_value>pivot table import</bookmark_value><bookmark_value>pivot table function; refreshing tables</bookmark_value><bookmark_value>recalculating;pivot tables</bookmark_value><bookmark_value>updating;pivot tables</bookmark_value>"
+msgstr "<bookmark_value>Alaaga gabatee qiinxaa</bookmark_value><bookmark_value>Dalagaa DataPilot; gabateewwan haaromsuu</bookmark_value><bookmark_value>lamuu shallaguu;Gabateewwan DataPilot</bookmark_value><bookmark_value>fooyyessuu;Gabateewwan DataPilot</bookmark_value>"
+
+#: datapilot_updatetable.xhp
+msgctxt ""
+"datapilot_updatetable.xhp\n"
+"hd_id3150792\n"
+"33\n"
+"help.text"
+msgid "<variable id=\"datapilot_updatetable\"><link href=\"text/scalc/guide/datapilot_updatetable.xhp\" name=\"Updating Pivot Tables\">Updating Pivot Tables</link></variable>"
+msgstr "<variable id=\"datapilot_updatetable\"><link href=\"text/scalc/guide/datapilot_updatetable.xhp\" name=\"Updating DataPilot Tables\">Ganateewwan DataPilot fooyyessuu</link></variable>"
+
+#: datapilot_updatetable.xhp
+msgctxt ""
+"datapilot_updatetable.xhp\n"
+"par_id3154684\n"
+"34\n"
+"help.text"
+msgid "If the data of the source sheet has been changed, $[officename] recalculates the pivot table. To recalculate the table, choose <emph>Data - Pivot Table - Refresh</emph>. Do the same after you have imported an Excel pivot table into $[officename] Calc."
+msgstr "Yoo deetaan wardii maddaa jijjiiramee jiraate, $[officename] gabatee DataPilot lamuu shallaga. Gabateewwan lamuu shallaguuf, <emph>Deetaa - DataPilot - Haaromsi</emph> filadhu. Erga gabatee qiinxaa Excel gara $[officename] Calc alaagdee booda waanuma kana dalagi."
#: dbase_files.xhp
msgctxt ""
@@ -7140,6 +4958,275 @@ msgctxt ""
msgid "Only the data on the current sheet is exported."
msgstr "Deetaa wardii ammee irraa qofatu alergama."
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting Themes for Sheets"
+msgstr "Wardiileef dhamsoota filachuu"
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"bm_id3150791\n"
+"help.text"
+msgid "<bookmark_value>theme selection for sheets</bookmark_value><bookmark_value>layout;spreadsheets</bookmark_value><bookmark_value>cell styles; selecting</bookmark_value><bookmark_value>selecting;formatting themes</bookmark_value><bookmark_value>sheets;formatting themes</bookmark_value><bookmark_value>formats;themes for sheets</bookmark_value><bookmark_value>formatting;themes for sheets</bookmark_value>"
+msgstr "<bookmark_value>filannoo dhamsaa wardiileedhaaf</bookmark_value><bookmark_value>teessuma;wardiilee</bookmark_value><bookmark_value>haalatoota maadhee; filachuu</bookmark_value><bookmark_value>filachuu;dhamsoota dhangeessuu</bookmark_value><bookmark_value>wardiilee;dhamsoota dhangeessuu</bookmark_value><bookmark_value>dhangiiwwan;dhamsoota wardiileedhaaf</bookmark_value><bookmark_value>dhangeessuu;dhamsoota wardiileedhaaf</bookmark_value>"
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"hd_id3150791\n"
+"6\n"
+"help.text"
+msgid "<variable id=\"design\"><link href=\"text/scalc/guide/design.xhp\" name=\"Selecting Themes for Sheets\">Selecting Themes for Sheets</link> </variable>"
+msgstr "<variable id=\"design\"><link href=\"text/scalc/guide/design.xhp\" name=\"Selecting Themes for Sheets\">Wardiileef Dhamsoota Filachuu</link> </variable>"
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3145786\n"
+"13\n"
+"help.text"
+msgid "$[officename] Calc comes with a predefined set of formatting themes that you can apply to your spreadsheets."
+msgstr "$[officename] Calc tuuta durmurtaawwaa dhamsoota dhangeessuu kan wardiilee kee irratti raawwattu wajjin dhufa."
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3154490\n"
+"16\n"
+"help.text"
+msgid "It is not possible to add themes to Calc, and they cannot be modified. However, you can modify their styles after you apply them to a spreadsheet."
+msgstr "Dhamsoota gara Calc dabaluun hin danda'amu, kanaafuu fooyya'uu hin danda'an. Garuu, haalata isaanii erga wardiitti raawwattee booda fooyyeessuu dandeessa."
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3154757\n"
+"17\n"
+"help.text"
+msgid "Before you format a sheet with a theme, you have to apply at least one custom cell style to the cells on the sheet. You can then change the cell formatting by selecting and applying a theme in the <emph>Theme Selection</emph> dialog."
+msgstr "Osoo wardii dhamsaan hin dhangeessin dura, yoo xiqqaate haalata maadhee tokko maadheelee wardii irraatti raawwachuu qabda. Achiin dhangeessuu maadhee dhamsa qaaqa <emph>Filannoo Dhamsaa</emph> keessaa filachuu fi raawwachuu dandeessa."
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3156382\n"
+"18\n"
+"help.text"
+msgid "To apply a custom cell style to a cell, you can open the Styles and Formatting window and, in its lower list box, set the Custom Styles view. A list of the existing custom defined cell styles will be displayed. Double click a name from the Styles and Formatting window to apply this style to the selected cells."
+msgstr "Haalata maadhee maamiloo maadhee irratti raawwachuuf, foddaa Haalataa fi Dhangeessuu banuu dandeessa, sanduuqa tarree jalaa isaa keessatti, argii Haalata Maamiloo qindeessi. Tarreen haalata maadhee maamiloo qindaa'anii jiran ni mul'atu. Haalata kana maadheelee filatamaniif fayyadamuuf maqaa foddaa Haalataa fi Dhangeessuu irraa lamcuqaasi."
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3153963\n"
+"19\n"
+"help.text"
+msgid "To apply a theme to a spreadsheet:"
+msgstr "Dhamsa wardiitti raawwachuu:"
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3146920\n"
+"15\n"
+"help.text"
+msgid "Click the <emph>Choose Themes</emph> icon in the <emph>Tools</emph> bar."
+msgstr "Sajoo <emph>Dhamsoota Filadhu</emph> kabala <emph>Meeshaalee</emph> keessaa filadhu."
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3148488\n"
+"20\n"
+"help.text"
+msgid "The <emph>Theme Selection</emph> dialog appears. This dialog lists the available themes for the whole spreadsheet and the Styles and Formatting window lists the custom styles for specific cells."
+msgstr "Qaaqni <emph>Filannoo Dhamsaa</emph> ni mul'ata. Qaaqni kun dhamsoota jiran wardiilee guutuuf tarreessa akkasumas foddaan Haalatootaa fi Dhangeessuu haalatoota maamiloo man'eelee murtaa'aniif tarreessa."
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3155114\n"
+"9\n"
+"help.text"
+msgid "In the <emph>Theme Selection </emph>dialog, select the theme that you want to apply to the spreadsheet."
+msgstr "Qaaqa <emph>Filannoo Dhamsaa</emph> keessatti, dhamsa kan wardii irratti raawwachuu barbaadde filadhu."
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3150090\n"
+"21\n"
+"help.text"
+msgid "Click OK"
+msgstr "TOLE cuqaasi."
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3150201\n"
+"22\n"
+"help.text"
+msgid "As soon as you select another theme in the <emph>Theme Selection</emph> dialog, some of the properties of the custom style will be applied to the current spreadsheet. The modifications will be immediately visible in your spreadsheet."
+msgstr "Akkuma dhamsa biraa qaaqa <emph>Filannoo Dhamsaa</emph> keessaa filatteen, amalootni haalata maamiloo keessaa muraasni wardii ammee irratti raawwatu. Fooyyeen battalumatti wardii kee keessatti mul'ata."
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3146979\n"
+"12\n"
+"help.text"
+msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Theme selection\">Theme selection</link>"
+msgstr "<link href=\"text/scalc/02/06080000.xhp\" name=\"Theme selection\">Filannoo Dhamsaa</link>"
+
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"tit\n"
+"help.text"
+msgid "Copying to Multiple Sheets"
+msgstr "Wardiilee Baay'eetti Garagalchuu"
+
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"bm_id3149456\n"
+"help.text"
+msgid "<bookmark_value>copying;values, to multiple sheets</bookmark_value><bookmark_value>pasting;values in multiple sheets</bookmark_value><bookmark_value>data;inserting in multiple sheets</bookmark_value> <bookmark_value>sheets; simultaneous multiple filling</bookmark_value>"
+msgstr "<bookmark_value>garagalchuu;gatiiwwan, wardiilee baay'eetti</bookmark_value><bookmark_value>maxxansuu;gatiiwwan wardiilee baay'ee keessaa</bookmark_value><bookmark_value>deetaa;wardiilee baay'ee keessatti saaguu</bookmark_value><bookmark_value>wardiilee;guutinsa baay'ee altokkoo</bookmark_value>"
+
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"hd_id3149456\n"
+"3\n"
+"help.text"
+msgid "<variable id=\"edit_multitables\"><link href=\"text/scalc/guide/edit_multitables.xhp\" name=\"Copying to Multiple Sheets\">Copying to Multiple Sheets</link> </variable>"
+msgstr "<variable id=\"edit_multitables\"><link href=\"text/scalc/guide/edit_multitables.xhp\" name=\"Copying to Multiple Sheets\">Wardiilee Baay'eetti Garagalchuu</link> </variable>"
+
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"par_id3150868\n"
+"6\n"
+"help.text"
+msgid "In $[officename] Calc, you can insert values, text or formulas that are simultaneously copied to other selected sheets of your document."
+msgstr "$[officename] Calc keessatti, gatiiwwan, barruu ykn foormulaawwan kan altokkotti gara wardiilee galmee kee keessaa filataman birootti garagalchaman saaguu dandeessa."
+
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"par_id3153768\n"
+"8\n"
+"help.text"
+msgid "Select all desired sheets by holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key and clicking the corresponding register tabs that are still gray at the bottom margin of the workspace. All selected register tabs are now white."
+msgstr ""
+
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"par_idN10614\n"
+"help.text"
+msgid "You can use Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down to select multiple sheets using the keyboard."
+msgstr "Wardiilee baay'ee gabatee cuqoon filachuuf Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up ykn Page Down fayyadamuu dandeessa."
+
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"par_id3147435\n"
+"7\n"
+"help.text"
+msgid "Now when you insert values, text or formulas into the active sheet, they will also appear in the identical positions in the other selected sheets. For example, data entered in cell A1 of the active sheet is automatically entered into cell A1 of any other seleted sheet."
+msgstr "Amma yeroo gatiiwwan, barruu ykn foormulaawwan wardii keessatti saagdu, wardiilee biroo filataman keessatti qubannoo walfakkaatu irratti argamu. Fakkeenyaaf, deetaa man'ee A1 wardii ka'aa keessatti galfame man'ee A1 wardii filatame kamiyyuutti ofmaan galfama."
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"tit\n"
+"help.text"
+msgid "Applying Filters"
+msgstr "Gingilcha Ufmaa raawwachuu"
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"bm_id3153896\n"
+"help.text"
+msgid "<bookmark_value>filters; applying/removing</bookmark_value> <bookmark_value>rows;removing/redisplaying with filters</bookmark_value> <bookmark_value>removing;filters</bookmark_value>"
+msgstr "<bookmark_value>gingilchaawwan; fayyadamuu/haquu</bookmark_value> <bookmark_value>tarreewwan;gilginchaawwaniin haquu/lamagarsiisuu</bookmark_value> <bookmark_value>haquu;gingilchaadhaan</bookmark_value>"
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"hd_id3153896\n"
+"70\n"
+"help.text"
+msgid "<variable id=\"filters\"><link href=\"text/scalc/guide/filters.xhp\" name=\"Applying Filters\">Applying Filters</link></variable>"
+msgstr "<variable id=\"filters\"><link href=\"text/scalc/guide/filters.xhp\" name=\"Applying Filters\">Gingilchaawwan raawwachuu</link></variable>"
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_id3150869\n"
+"2\n"
+"help.text"
+msgid "Filters and advanced filters allow you to work on certain filtered rows (records) of a data range. In the spreadsheets in $[officename] there are various possibilities for applying filters."
+msgstr "Gingilchootnii fi Gingilchootni olaanoo tarreewwan hammangaa deetaa gingilchaman muraasa(galmeewwan) irratti hojjechuu si dandeessisu. Wardiilee $[officename] keessatti gingilchaawwan fayyadamuuf carraalee adda addaatu jiru."
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_id3155131\n"
+"3\n"
+"help.text"
+msgid "One use for the <emph>AutoFilter</emph> function is to quickly restrict the display to records with identical entries in a data field."
+msgstr "Fayidaan dalagaa <emph>Gingilcha ufmaa</emph> inni tokko argama tarreewwan galfatoota dirree deetaa keessatti walfakkaatan saffisaan ittisuu dha."
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_id3146119\n"
+"4\n"
+"help.text"
+msgid "In the <emph>Standard Filter</emph> dialog, you can also define ranges which contain the values in particular data fields. You can use the standard filter to connect the conditions with either a logical AND or a logical OR operator."
+msgstr "Qaaqa <emph>Gingilchi Durtii</emph> keessatti, hangiiwwan kan gatiiwwan dirreewwan deetaa murtaa'an qabatan qindeessuus dandeessa. Haalleen hanaga sadiitti ogeejjii yaayaa FI ykn YKN dhaan walqabsiisuuf gingilchaa durtii fayyadamuu dandeessa."
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_id3150010\n"
+"5\n"
+"help.text"
+msgid "The <emph>Advanced filter</emph> allows up to a total of eight filter conditions. With advanced filters you enter the conditions directly into the sheet."
+msgstr "<emph>Gingilchaa olaanaa</emph> hanga haalota gingilchaa waliigalaa 8tti hayyama. Gingilchaawwan olaanoodhaan haalota kallattii wardiitti galchita."
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_id9384746\n"
+"help.text"
+msgid "To remove a filter, so that you see all cells again, click inside the area where the filter was applied, then choose <item type=\"menuitem\">Data - Filter - Remove Filter</item>."
+msgstr "Gingilchaa haquuf, man'eewwan mara lamuu akka agartu, naannoo gingilchaan fayyadame keessatti cuqaasiitii <item type=\"menuitem\">Deetaa - Gingilchaa - Gingilchaa Haqi</item> filadhu."
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_idN10663\n"
+"help.text"
+msgid "When you select multiple rows from an area where a filter was applied, then this selection can include rows that are visible and rows that are hidden by the filter. If you then apply formatting, or delete the selected rows, this action then applies only to the visible rows. The hidden rows are not affected."
+msgstr "Yeroo tarreewwan hedduu naannoo gingilchaan itti fayyadamerraa filattu, filannoon kun tarreewwan mul'atanii fi tarreewwan gingilchaadhaan dhoksaman dabalachuu danda'a. Ati yoo dhangeessuu fayyadamtu, ykn tarreewwan filataman haqxu, gochi kun tarreewwan mul'atan qofaarratti fayyada. Tarreewwan dhokatoo hin tuqaman."
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_id218817\n"
+"help.text"
+msgid "This is the opposite to rows that you have hidden manually by the <emph>Format - Rows - Hide Rows</emph> command. Manually hidden rows are deleted when you delete a selection that contains them."
+msgstr "Kun faallaa tarreewwan ajaja <emph>Dhangii - Tarree - Tarreewwan Dhoksi</emph>tiin hujeekaan dhoksamaniiti."
+
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -7348,713 +5435,796 @@ msgctxt ""
msgid "Use the Navigator for inserting objects and links within the same document or from other open documents."
msgstr "Waantotaa fi geessitoota galmee tokko keessatti ykn galmeelee banaa biraa irraa saaguuf Naannessaa fayyadami."
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
+"format_table.xhp\n"
"tit\n"
"help.text"
-msgid "Instructions for Using $[officename] Calc"
-msgstr "Qajeelfamoota $[officename] Calc fayyadamuu"
+msgid "Formatting Spreadsheets"
+msgstr "Wardiilee Dhangeessuu"
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"bm_id3150770\n"
+"format_table.xhp\n"
+"bm_id3154125\n"
"help.text"
-msgid "<bookmark_value>HowTos for Calc</bookmark_value><bookmark_value>instructions; $[officename] Calc</bookmark_value>"
-msgstr "Qajeelfamoota <bookmark_value>HowTos for Calc</bookmark_value><bookmark_value>; $[officename] Calc</bookmark_value>"
+msgid "<bookmark_value>text in cells; formatting</bookmark_value><bookmark_value>spreadsheets;formatting</bookmark_value><bookmark_value>backgrounds;cells and pages</bookmark_value><bookmark_value>borders;cells and pages</bookmark_value><bookmark_value>formatting;spreadsheets</bookmark_value><bookmark_value>numbers; formatting options for selected cells</bookmark_value><bookmark_value>cells; number formats</bookmark_value><bookmark_value>currencies;formats</bookmark_value>"
+msgstr "<bookmark_value>barruu man'eelee keessaa; dhangeessuu</bookmark_value><bookmark_value>wardiilee;dhangeessuu</bookmark_value><bookmark_value>duubeewwan;man'eelee fi fuulota</bookmark_value><bookmark_value>handaarawwan;man'eelee fi fuulota</bookmark_value><bookmark_value>dhangeessuu;wardiilee</bookmark_value><bookmark_value>lakkoofsota; dirqaalaalee dhangeessuu man'eelee filatamaniif</bookmark_value><bookmark_value>man'eelee; dhangiiwwan lakkoofsaa</bookmark_value><bookmark_value>maallaqoota;dhangiiwwan</bookmark_value>"
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3150770\n"
-"1\n"
+"format_table.xhp\n"
+"hd_id3154125\n"
+"6\n"
"help.text"
-msgid "<variable id=\"main\"><link href=\"text/scalc/guide/main.xhp\" name=\"Instructions for Using $[officename] Calc\">Instructions for Using $[officename] Calc</link></variable>"
-msgstr "<variable id=\"main\"><link href=\"text/scalc/guide/main.xhp\" name=\"Instructions for Using $[officename] Calc\">Qajeelfamoota $[officename] Calc fayyadamuu</link></variable>"
+msgid "<variable id=\"format_table\"><link href=\"text/scalc/guide/format_table.xhp\" name=\"Designing Spreadsheets\">Formatting Spreadsheets</link></variable>"
+msgstr "<variable id=\"format_table\"><link href=\"text/scalc/guide/format_table.xhp\" name=\"Designing Spreadsheets\">Wardiilee Dhangeessuu</link></variable>"
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3145748\n"
-"2\n"
+"format_table.xhp\n"
+"hd_id3153912\n"
+"13\n"
"help.text"
-msgid "Formatting Tables and Cells"
-msgstr "Gabateewwanii fi Maadheelee Dhangeessuu"
+msgid "Formatting Text in a Spreadsheet"
+msgstr "Barruu Wardii keessaa Dhangeessuu"
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3154022\n"
-"3\n"
+"format_table.xhp\n"
+"par_id3144772\n"
+"14\n"
"help.text"
-msgid "Entering Values and Formulas"
-msgstr "Gatiiwwanii fi Foormulaawwan Galchuu"
+msgid "Select the text you want to format."
+msgstr "Barruu dhangeessuu barbaaddu filadhu."
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3152899\n"
-"4\n"
+"format_table.xhp\n"
+"par_id3155268\n"
+"15\n"
"help.text"
-msgid "Entering References"
-msgstr "Wabiilee Galchuu"
+msgid "Choose the desired text attributes from the <emph>Formatting </emph>Bar. You can also choose <emph>Format - Cells</emph>. The <emph>Format Cells</emph> dialog will appear in which you can choose various text attributes on the <emph>Font</emph> tab page."
+msgstr "Amaloota barruu barbaachisoo Kabala <emph>Dhangeessuu </emph> irraa filadhu. <emph>Dhangii - Man'eelee</emph> irraas filachuu dandeessa. Qaaqni <emph>Man'eelee Dhangeessi</emph> kan amaloota barruu adda addaa keessaa fuula kabala <emph>Bocquu</emph> irraa filattu ni mul'ata."
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3155382\n"
-"5\n"
+"format_table.xhp\n"
+"hd_id3149899\n"
+"16\n"
"help.text"
-msgid "Database Ranges in Tables"
-msgstr "Hammangaawwan Kuusaa deetaa Gabatee keessaa"
+msgid "Formatting Numbers in a Spreadsheet"
+msgstr "Barruu Wardii keessaa Dhangeessuu"
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3159229\n"
-"6\n"
+"format_table.xhp\n"
+"par_id3159226\n"
+"17\n"
"help.text"
-msgid "Advanced Calculations"
-msgstr "Shallaggiiwwan Olaanoo"
+msgid "Select the cells containing the numbers you want to format."
+msgstr "Maadheelee lakkoofsota dhangeessuu barbaaddu qabatan filadhu."
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3153070\n"
-"7\n"
+"format_table.xhp\n"
+"par_id3150046\n"
+"18\n"
"help.text"
-msgid "Printing and Page Preview"
-msgstr "Maxxansuu fi Durargii Fuulaa"
+msgid "To format numbers in the default currency format or as percentages, use the icons on the <emph>Formatting </emph>Bar. For other formats, choose <emph>Format - Cells</emph>. You can choose from the preset formats or define your own on the <emph>Numbers</emph> tab page."
+msgstr "Lakkoofsota dhangii maallaqaa durtiitiin ykn akka parsantiitti dhangeessuuf, sajoolee Kabala <emph>Dhangeessuu </emph> irraa fayyadami. Dhangiilee birootiif, <emph>Dhangii - Man'eelee</emph> filadhu. Dhangiiwwan jiran keessaa filachuu dandeessa ykn kan mataa keetii fuula caancala <emph>Lakkoofsa</emph> irratti qindeessuu dandeessa."
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3150437\n"
-"8\n"
+"format_table.xhp\n"
+"hd_id3153483\n"
+"19\n"
"help.text"
-msgid "Importing and Exporting Documents"
-msgstr "Galmeelee Alaaguu fi Alerguu"
+msgid "Formatting Borders and Backgrounds for Cells and Pages"
+msgstr "Handaarawwanii fi Duubeewwan Maadheelee fi Fuulotaaf Dhangeesssuu"
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3166464\n"
-"9\n"
+"format_table.xhp\n"
+"par_id3154733\n"
+"20\n"
"help.text"
-msgid "Miscellaneous"
-msgstr "Walmakee"
+msgid "You can assign a format to any group of cells by first selecting the cells (for multiple selection, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key when clicking), and then activating the <emph>Format Cells</emph> dialog in <item type=\"menuitem\">Format - Cell</item>. In this dialog, you can select attributes such as shadows and backgrounds."
+msgstr ""
-#: validity.xhp
+#: format_table.xhp
msgctxt ""
-"validity.xhp\n"
-"tit\n"
+"format_table.xhp\n"
+"par_id3145116\n"
+"21\n"
"help.text"
-msgid "Validity of Cell Contents"
-msgstr "Sirrummaa qabiyyeewwan maadhee"
+msgid "To apply formatting attributes to an entire sheet, choose <emph>Format - Page</emph>. You can define headers and footers, for example, to appear on each printed page."
+msgstr "Amaloota dhangeessuu wardii guutuu irratti raawwachuuf, <emph>Dhangii - Fuula</emph> filadhu. Irraantotaa fi jalaantota, fakkeenyaaf, fuula maxxansaman mara irratti kan mul'atu, qindeessuu dandeessa."
-#: validity.xhp
+#: format_table.xhp
msgctxt ""
-"validity.xhp\n"
-"bm_id3156442\n"
+"format_table.xhp\n"
+"par_id3145389\n"
+"22\n"
"help.text"
-msgid "<bookmark_value>values; limiting on input</bookmark_value><bookmark_value>limits; specifying value limits on input</bookmark_value><bookmark_value>permitted cell contents</bookmark_value><bookmark_value>data validity</bookmark_value><bookmark_value>validity</bookmark_value><bookmark_value>cells; validity</bookmark_value><bookmark_value>error messages; defining for incorrect input</bookmark_value><bookmark_value>actions in case of incorrect input</bookmark_value><bookmark_value>Help tips; defining text for cell input</bookmark_value><bookmark_value>comments;help text for cells</bookmark_value><bookmark_value>cells; defining input help</bookmark_value><bookmark_value>macros; running when incorrect input</bookmark_value><bookmark_value>data; validity check</bookmark_value>"
-msgstr "<bookmark_value>gatiiwwan; daangessa naqaarraa</bookmark_value><bookmark_value>daangessoota; daangessa gatii naqa irraa ifteessuuu</bookmark_value><bookmark_value>qabeentoota man'ee eeyyamamu</bookmark_value><bookmark_value>gataa'insa deetaa</bookmark_value><bookmark_value>gataa'insa</bookmark_value><bookmark_value>man'eelee; gataa'insa</bookmark_value><bookmark_value>ergaawwan dogoggoraa; naqa sirrii hin taaneef ibsuu</bookmark_value><bookmark_value>gochaa yoo naqni sirrii hin taane mudate</bookmark_value><bookmark_value>qajeelcha Gargaarsaa; naqa man'eetiif barruu ibsuu</bookmark_value><bookmark_value>yaadawwan;barruu gargaarsaa man'eef</bookmark_value><bookmark_value>man'eelee; gargaarsa naqaa ibsuu</bookmark_value><bookmark_value>maakroowwan; yeroo naqa sirrii hin taane kaachisuu</bookmark_value><bookmark_value>deetaa; mirkaneessa gataa'insaa</bookmark_value>"
+msgid "An image that you have loaded with <item type=\"menuitem\">Format - Page - Background</item> is only visible in print or in the page preview. To display a background image on screen as well, insert the graphic image by choosing <item type=\"menuitem\">Insert - Picture - From File</item> and arrange the image behind the cells by choosing <item type=\"menuitem\">Format - Arrange - To Background</item>. Use the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> to select the background image."
+msgstr "Fakkiin ati <item type=\"menuitem\">Dhangii - Fuula - Duubee</item> dhaan feete fuula maxxansaa ykn durargii keessatti qofa mul'ata. Fakkii duubee argii irratti mul'isuuf, fakkii saxaatoo <item type=\"menuitem\">Saagi - Fakkii - Faayilii Irraa</item> filachuudhaan saagiitii fakkii duubee filachuuf <item type=\"menuitem\">Dhangii - Qindeessi - Gara Duubee</item>. Use the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> filachuudhaan fakkii maadheelee duubatti qindeessi."
-#: validity.xhp
+#: format_table.xhp
msgctxt ""
-"validity.xhp\n"
-"hd_id3156442\n"
-"22\n"
+"format_table.xhp\n"
+"par_id2837916\n"
"help.text"
-msgid "<variable id=\"validity\"><link href=\"text/scalc/guide/validity.xhp\" name=\"Validity of Cell Contents\">Validity of Cell Contents</link></variable>"
-msgstr "<variable id=\"validity\"><link href=\"text/scalc/guide/validity.xhp\" name=\"Validity of Cell Contents\">Sirrummaa qabiyyeewwan maadhee</link></variable>"
+msgid "<link href=\"text/shared/01/05020300.xhp\">Number Formatting Options</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\">Dirqaalaalee Dhangeessa Lakkoofsaa</link>"
-#: validity.xhp
+#: format_table.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3156283\n"
-"2\n"
+"format_table.xhp\n"
+"par_id2614215\n"
"help.text"
-msgid "For each cell, you can define entries to be valid. Invalid entries to a cell will be rejected."
-msgstr "Tokkoon tokkoo man'eetiif,galfatoota sirrii qindeessuu dandeessa.Galfatootni sirrii hin taane ni gatama."
+msgid "<link href=\"text/scalc/guide/background.xhp\">Backgrounds for Cells</link>"
+msgstr "<link href=\"text/scalc/guide/background.xhp\">Duubeewwan Maadheelee</link>"
-#: validity.xhp
+#: format_value.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3145252\n"
-"3\n"
+"format_value.xhp\n"
+"tit\n"
"help.text"
-msgid "The validity rule is activated when a new value is entered. If an invalid value has already been inserted into the cell, or if you insert a value in the cell either with drag-and-drop or by copying and pasting, the validity rule will not take effect."
-msgstr "Seerri sirrummaa yeroo gatiin haaraa galchamu kaka'a.Yoo gatiin sirrii hin taane dursee man'ee keessatti saagamee jiraate,yookiin yoo gatii man'ee keessatti harkisii-kaa'iin ykn garagalchaa fi maxxansuudhaan saagde,seerri sirrummaa bu'aa hin qabu."
+msgid "Formatting Numbers With Decimals"
+msgstr "Lakkoofsota Deesiimaaliidhaan Dhangeessuu"
-#: validity.xhp
+#: format_value.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id5174718\n"
+"format_value.xhp\n"
+"bm_id3145367\n"
"help.text"
-msgid "You can choose <emph>Tools - Detective</emph> at any time and choose the command <link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\"><emph>Mark Invalid Data</emph></link> to display which cells contain invalid values."
-msgstr "<emph>Miyoota - Argamaa</emph> yeroo kamittuu filuu dandeessa akkasumas man'eelee kamtu gatiiwwan sirrii hin taane qabatan mul'isuuf ajaja <link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\"><emph>Deetaa sirrii hin taane mallatteessi</emph></link> filadhu."
+msgid "<bookmark_value>numbers;formatting decimals</bookmark_value> <bookmark_value>formats; numbers in tables</bookmark_value> <bookmark_value>tables; number formats</bookmark_value> <bookmark_value>defaults; number formats in spreadsheets</bookmark_value> <bookmark_value>decimal places;formatting numbers</bookmark_value> <bookmark_value>formatting;numbers with decimals</bookmark_value> <bookmark_value>formatting;adding/deleting decimal places</bookmark_value> <bookmark_value>number formats; adding/deleting decimal places in cells</bookmark_value> <bookmark_value>deleting; decimal places</bookmark_value> <bookmark_value>decimal places; adding/deleting</bookmark_value>"
+msgstr "<bookmark_value>lakkoofsota; gabateewwan keessatti dhangeessuu</bookmark_value><bookmark_value>dhangiiwwan; lakkoofsota gabateewwan keessaa</bookmark_value><bookmark_value>gabateewwan; dhangiiwwan lakkoofsaa</bookmark_value><bookmark_value>durtiiwwan; dhangiiwwan lakkoofsaa wardiilee keessaa</bookmark_value><bookmark_value>bakkeewwan deesiimaalii;lakkoofsota dhnageessuu</bookmark_value><bookmark_value>dhnageessuu;lakkoofsota deesiimaalii waliinii</bookmark_value><bookmark_value>dhnageessuu;bakkeewwan deesiimaaliidabaluu/balleessuu</bookmark_value><bookmark_value>dhangiiwwan lakkoofsaa; bakkeewwan deesiimaalii maadheelee keessaa dabaluu/balleessuu</bookmark_value><bookmark_value>balleessuu; bakkeewwan deesiimaalii</bookmark_value><bookmark_value>bakkeewwan deesiimaalii; adding/deleting</bookmark_value>"
-#: validity.xhp
+#: format_value.xhp
msgctxt ""
-"validity.xhp\n"
-"hd_id3155603\n"
+"format_value.xhp\n"
+"hd_id3145367\n"
+"4\n"
+"help.text"
+msgid "<variable id=\"format_value\"><link href=\"text/scalc/guide/format_value.xhp\" name=\"Formatting Numbers With Decimals\">Formatting Numbers With Decimals</link></variable>"
+msgstr "<variable id=\"format_value\"><link href=\"text/scalc/guide/format_value.xhp\" name=\"Formatting Numbers With Decimals\">Lakkoofsota Deesiimaaliidhaan Dhangeessuu</link></variable>"
+
+#: format_value.xhp
+msgctxt ""
+"format_value.xhp\n"
+"par_id3148576\n"
"5\n"
"help.text"
-msgid "Using Cell Contents Validity"
-msgstr "Sirrummaa qabiyyeewwan maadhee fayyadamuu"
+msgid "Enter a number into the sheet, for example, 1234.5678. This number will be displayed in the default number format, with two decimal places. You will see 1234.57 when you confirm the entry. Only the display in the document will be rounded off; internally, the number retains all four decimal places after the decimal point."
+msgstr "Lakkoofsa maadhee keessatti, fakkeenyaaf, 1234.5678 galchi. Lakkoofsi kun bakkee deesiimaalii durtiin mul'ata, bakka deesiimaalii lamaan. Yeroo galafata mirkaneessitu 1234.57 argita. Argama galmee keessaa qofatu cufama; keessatti, lakkoofsi bakkee deesiimaalii afranuu tuqaa deesiimaalii boodatti ni qabata."
-#: validity.xhp
+#: format_value.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3155959\n"
-"6\n"
+"format_value.xhp\n"
+"par_id3154012\n"
+"12\n"
"help.text"
-msgid "Select the cells for which you want to define a new validity rule."
-msgstr "Maadhee kan seera sirrummaa haaraa qindeessuufii barbaaddu filadhu."
+msgid "To format numbers with decimals:"
+msgstr "Lakkoofsota deesiimaaliidhaan dhangeessuu:"
-#: validity.xhp
+#: format_value.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3148837\n"
-"8\n"
+"format_value.xhp\n"
+"par_id3147394\n"
+"6\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Data - Validity</item>."
-msgstr "<item type=\"menuitem\">Deetaa - sirrummaa</item> fili."
+msgid "Set the cursor at the number and choose <emph>Format - Cells</emph> to start the <emph>Format Cells</emph> dialog."
+msgstr "Qaree lakkoofsa irra kaa'iitii qaaqa <emph>Maadheelee Dhangeessi</emph> jalqabuuf <emph>Dhangii - Maadheelee</emph> filadhu."
-#: validity.xhp
+#: format_value.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3156020\n"
+"format_value.xhp\n"
+"par_id3153157\n"
"9\n"
"help.text"
-msgid "On the <emph>Criteria</emph> tab page, enter the conditions for new values entered into cells."
-msgstr "Fuula caancala <emph>Ulaagaa</emph> irratti, haallan gatiiwwan haaraa man'eelee keessatti galan galchi."
+msgid "On the <emph>Numbers</emph> tab you will see a selection of predefined number formats. In the bottom right in the dialog you will see a preview of how your current number would look if you were to give it a particular format."
+msgstr "Caancala <emph>Lakkoofsota</emph> irratti filannoo dhangiiwwan lakkoofsaa dur murtaawwaa argita. Jala mirgaa qaaqaa keessatti durargii akkaataa lakkoofsi ammee kee yoo dhangii murtaa'e kennuuf jettu itti mul'atu argita."
-#: validity.xhp
+#: format_value.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3159208\n"
+"format_value.xhp\n"
+"par_id3155766\n"
+"help.text"
+msgid "<image id=\"img_id3149021\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149021\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149021\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3149021\">Sajoo</alt></image>"
+
+#: format_value.xhp
+msgctxt ""
+"format_value.xhp\n"
+"par_id3149256\n"
"10\n"
"help.text"
-msgid "In the <emph>Allow</emph> field, select an option."
-msgstr "Dirree <emph>Eeyyami</emph> keessa,dirqaala filadhu."
+msgid "If you only want to modify the number of the decimal places displayed, the easiest method is to use the <emph>Number Format: Add Decimal Place</emph> or <emph>Number Format: Delete Decimal Place</emph> icons on the Formatting Bar."
+msgstr "Yoo lakkoofsa bakka deesiimaalii mul'atu qofa fooyyessuu yoo barbaadde, malli salphaan sajoolee <emph>Dhangii Lakkoofsaa: Bakka Deesiimaalii Dabali</emph> ykn <emph>Dhangii Lakkoofsaa: Bakka Deesiimaalii Balleessi</emph> Kabala Dhangeessuu irraa fayyadamuu dha."
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3153011\n"
-"11\n"
+"format_value_userdef.xhp\n"
+"tit\n"
"help.text"
-msgid "If you select \"Whole Numbers\", values such as \"12.5\" are not allowed. Choosing \"Date\" allows date information both in the local date format as well as in the form of a <link href=\"text/sbasic/shared/03030101.xhp\" name=\"serial date\">serial date</link>. Similarly, the \"Time\" condition permits time values such as \"12:00\" or serial time numbers. \"Text Length\" stipulates that cells are allowed to contain text only."
-msgstr "Yoo \"Lakkoofsa hundaa\" filatte,gatiiwwan akka \"12.5\" hin eeyyamaman.\"Guyyaa\" filachuun odeeffannoo guyyaa dhangii guyyaa baramaa akkasumas haala <link href=\"text/sbasic/shared/03030101.xhp\" name=\"serial date\">guyyaa tartiibaa</link> tiin si dandeessisa.Haala walfakkaatuun,haalli \"yeroo\" gatiiwwan yeroo akka \"12:00\" ykn lakkoofsota yeroo tartiibaa eeyyama.\"Dheerina barruu\" akka man'eeleen barruu qofa qabachuu danda'an murteessa."
+msgid "User-defined Number Formats"
+msgstr "Dhangiiwwan Lakkoofsaa Fayyadamaan qindaa'an"
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id9224829\n"
+"format_value_userdef.xhp\n"
+"bm_id3143268\n"
"help.text"
-msgid "Select \"List\" to enter a list of valid entries."
-msgstr "Tarree galfatoota sirrii galchuuf \"Tarree\" fili."
+msgid "<bookmark_value>numbers;user-defined formatting</bookmark_value> <bookmark_value>formatting; user-defined numbers</bookmark_value> <bookmark_value>number formats; millions</bookmark_value> <bookmark_value>format codes; user-defined number formats</bookmark_value>"
+msgstr "<bookmark_value>lakkoofsota; dhangeessuu fayyadamaan qindaa'e gabatee keessatti</bookmark_value><bookmark_value>dhangeessuu; lakkoofsota fayyadamaan qindaa'an</bookmark_value><bookmark_value>dhangiiwwan lakkoofsaa; miliyoonota</bookmark_value><bookmark_value>koodiiwwan dhnagii; dhangiiwwan lakkoofsota fayyadamaan qindaa'an</bookmark_value>"
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3149317\n"
-"13\n"
+"format_value_userdef.xhp\n"
+"hd_id3143268\n"
+"26\n"
"help.text"
-msgid "Select the next condition under <emph>Data</emph>. According to what you choose, additional options will be selectable."
-msgstr "Haala itti aanu <emph>Deetaa</emph> jalaa filadhu.Akkaataa waanata filattuutiin,dirqaalaaleen dabalataa filatamuu danda'u."
+msgid "<variable id=\"format_value_userdef\"><link href=\"text/scalc/guide/format_value_userdef.xhp\" name=\"User-defined Number Formats\">User-defined Number Formats</link></variable>"
+msgstr "<variable id=\"format_value_userdef\"><link href=\"text/scalc/guide/format_value_userdef.xhp\" name=\"User-defined Number Formats\">Dhangiiwwan Lakkoofsaa Fayyadamaan qindaa'an</link> </variable>"
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3151389\n"
-"15\n"
+"format_value_userdef.xhp\n"
+"par_id3150400\n"
+"1\n"
"help.text"
-msgid "After you have determined the conditions for cell validity, you can use the other two tab pages to create message boxes:"
-msgstr "Erga haallan sirrummaa man'eetiif murteessitee booda,fuulota caancalaa biroo lamaan sanduuqota ergaa uumuuf fayyadamuu dandeesa."
+msgid "You can define your own number formats to display numbers in <item type=\"productname\">%PRODUCTNAME</item> Calc."
+msgstr "Lakkoofsota <item type=\"productname\">%PRODUCTNAME</item> Calc keessatti mul'isuuf dhangiiwwan lakkoofsaa mataa keetii qindeessuu dandeessa."
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3159261\n"
-"16\n"
+"format_value_userdef.xhp\n"
+"par_id3150767\n"
+"2\n"
"help.text"
-msgid "On the <emph>Input Help</emph> tab page, enter the title and the text of the tip, which will then be displayed if the cell is selected."
-msgstr "Fuula caancala <emph>Gargaarsa naqaa</emph> irratti,mataduree fi barruu qajeelchaa ,isa yeroo maadheen filatamu mul'atu, galchi."
+msgid "As an example, to display the number 10,200,000 as 10.2 Million:"
+msgstr "akka fakkeenyaatti, lakkoofsa 10,200,000 akka miliyoona 10.2 tti mul'isuuf:"
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3156396\n"
-"17\n"
+"format_value_userdef.xhp\n"
+"par_id3150868\n"
+"3\n"
"help.text"
-msgid "On the <emph>Error Alert</emph> tab page, select the action to be carried out in the event of an error."
-msgstr "Fuula caancala <emph>Of eeggannoo dogoggoraa</emph> irratti,gochaa mudata dogoggoraa irratti raawwatu filadhu."
+msgid "Select the cells to which you want to apply a new, user-defined format."
+msgstr "Maadheelee kan dhangii haaraa, fayyadamaan qindaa'e irratti raawwachuu barbaaddu filadhu."
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3147416\n"
-"18\n"
+"format_value_userdef.xhp\n"
+"par_id3149664\n"
+"4\n"
"help.text"
-msgid "If you select \"Stop\" as the action, invalid entries are not accepted, and the previous cell contents are retained."
-msgstr "Yoo akka gochaatti \"Dhaabi\" filatte,galfatootni sirrii hin taane hin fudhatman, akkasumas qabiyyeewwan man'ee isaan duraanii ni jiraatu."
+msgid "Choose <emph>Format - Cells - Numbers</emph>."
+msgstr "<emph>Dhangii - Man'eelee - Lakkoofsota</emph> fili."
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3150033\n"
-"19\n"
+"format_value_userdef.xhp\n"
+"par_id3149260\n"
+"5\n"
"help.text"
-msgid "Select \"Warning\" or \"Information\" to display a dialog in which the entry can either be canceled or accepted."
-msgstr "Qaaqa keessatti galfatni haqamu ykn fudhatamu mul'isuuf \"Of eeggannoo\" ykn \"Odeeffannoo\" filadhu."
+msgid "In the <emph>Categories</emph> list box select \"User-defined\"."
+msgstr "Sanduuqa tarree <emph>Akaakuuwwan</emph> keessatti \"Fayyadamaan qindaa'e\" filadhu."
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3149947\n"
-"20\n"
+"format_value_userdef.xhp\n"
+"par_id3148646\n"
+"6\n"
"help.text"
-msgid "If you select \"Macro\", then by using the <emph>Browse</emph> button you can specify a macro to be run in the event of an error."
-msgstr "Yoo \"Micro\" filatte,achiin qabduu <emph>Sakatta'i</emph> fayyadamuudhaan macro mudata dogoggoraa keessa kaachifamu ifteessuu dandeessa."
+msgid "In the <emph>Format code</emph> text box enter the following code:"
+msgstr "Sanduuqa barruu <emph>Koodii dhangii</emph> keessatti koodii armaan gadii galchi:"
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3149011\n"
-"35\n"
+"format_value_userdef.xhp\n"
+"par_id3152596\n"
+"7\n"
"help.text"
-msgid "To display the error message, select <emph>Show error message when invalid values are entered</emph>."
-msgstr "Ergaa dogoggoraa mul'isuuf,<emph>yeroo gatiiwwan sirrii hin taane galchaman ergaa dogoggoraa agarsiisi</emph> filadhu."
+msgid "0.0,, \"Million\""
+msgstr "0.0,, \"Miliyoona\""
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3148586\n"
-"21\n"
+"format_value_userdef.xhp\n"
+"par_id3144764\n"
+"8\n"
"help.text"
-msgid "After changing the action for a cell on the <emph>Error Alert</emph> tab page and closing the dialog with OK, you must first select another cell before the change takes effect."
-msgstr "Erga man'ee fuula caancala <emph>Of eeggannoo dogoggoraa</emph> irra jiruuf gochaa jijjiirtee fi qaaqa TOLE dhaan cuftee booda,osoo jijjiiramni hin raawwatin dura man'ee biraa filachuu qabda."
+msgid "Click OK."
+msgstr "TOLE cuqaasi."
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3154805\n"
-"30\n"
+"format_value_userdef.xhp\n"
+"par_id3155417\n"
+"9\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Data - Validity\">Data - Validity</link>"
-msgstr "<link href=\"text/scalc/01/12120000.xhp\" name=\"Data - Validity\">Deetaa - gataa'insa</link>"
+msgid "The following table shows the effects of rounding, thousands delimiters (,), decimal delimiters (.) and the placeholders # and 0."
+msgstr "Gabateen armaan gadii bu'aalee sissiqsuu, daangessoota kumaa(,), daangessoota deesiimaalii(.), fi iddooqota # fi 0 agarsiisa."
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"tit\n"
+"format_value_userdef.xhp\n"
+"par_id3146971\n"
+"10\n"
"help.text"
-msgid "Defining Background Colors or Background Graphics"
-msgstr "Halluuwwan yookiin saxaatoo duubee qindeessuu"
+msgid "Number"
+msgstr "Lakkoofsa"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"bm_id3149346\n"
+"format_value_userdef.xhp\n"
+"par_id3154757\n"
+"11\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; backgrounds</bookmark_value> <bookmark_value>backgrounds;cell ranges</bookmark_value> <bookmark_value>tables; backgrounds</bookmark_value> <bookmark_value>cells; backgrounds</bookmark_value> <bookmark_value>rows, see also cells</bookmark_value> <bookmark_value>columns, see also cells</bookmark_value>"
-msgstr "<bookmark_value>wardiilee; duubeewwan</bookmark_value> <bookmark_value>duubeewwan;hammangaawwan man'ee</bookmark_value> <bookmark_value>gabateewwan; duubeewwan</bookmark_value> <bookmark_value>man'eelee; duubeewwan</bookmark_value> <bookmark_value>tarreewwan, man'eewwanis ilaali</bookmark_value> <bookmark_value>tarjaalee, man'eewwanis ilaali</bookmark_value>"
+msgid ".#,, \"Million\""
+msgstr ".#,, \"Miliyoona\""
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"hd_id3149346\n"
-"1\n"
+"format_value_userdef.xhp\n"
+"par_id3147338\n"
+"12\n"
"help.text"
-msgid "<variable id=\"background\"><link href=\"text/scalc/guide/background.xhp\" name=\"Defining Background Colors or Background Graphics\">Defining Background Colors or Background Graphics</link></variable>"
-msgstr "<variable id=\"background\"><link href=\"text/scalc/guide/background.xhp\" name=\"Defining Background Colors or Background Graphics\">Halluuwwan Duubbee ykn Saxaatoo Duubbee Ibsuu</link></variable>"
+msgid "0.0,, \"Million\""
+msgstr "0.0,, \"Miliyoona\""
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id9520249\n"
+"format_value_userdef.xhp\n"
+"par_id3146920\n"
+"13\n"
"help.text"
-msgid "You can define a background color or use a graphic as a background for cell ranges in $[officename] Calc."
-msgstr "Halluu duubee qindeessuu yookiin saxaatoo akka duubeetti hammangaawwan man'eetiif $[officename] Calc keessatti fayyadamuu dandeessa."
+msgid "#,, \"Million\""
+msgstr "#,, \"Miliyoona\""
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"hd_id3144760\n"
+"format_value_userdef.xhp\n"
+"par_id3147344\n"
+"14\n"
+"help.text"
+msgid "10200000"
+msgstr "10200000"
+
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3147003\n"
+"15\n"
+"help.text"
+msgid "10.2 Million"
+msgstr "Miliyoona 10.2"
+
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3166426\n"
"16\n"
"help.text"
-msgid "Applying a Background Color to a $[officename] Calc Spreadsheet"
-msgstr "Halluu duubee wardii $[officename] Calc dhaaf raawwachuu"
+msgid "10.2 Million"
+msgstr "Miliyoona 10.2"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id3155429\n"
+"format_value_userdef.xhp\n"
+"par_id3155113\n"
"17\n"
"help.text"
-msgid "Select the cells."
-msgstr "Maadheelee filadhu."
+msgid "10 Million"
+msgstr "Miliyoona 10"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id3149260\n"
+"format_value_userdef.xhp\n"
+"par_id3150369\n"
"18\n"
"help.text"
-msgid "Choose <emph>Format - Cells</emph> (or <emph>Format Cells</emph> from the context menu)."
-msgstr "<emph>Dhangii - Man'eelee</emph> (yookiin <emph>Man'eelee dhangeessi</emph> baafata haallee irraa) filadhu."
+msgid "500000"
+msgstr "500000"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id3152938\n"
+"format_value_userdef.xhp\n"
+"par_id3145585\n"
"19\n"
"help.text"
-msgid "On the <emph>Background</emph> tab page, select the background color."
-msgstr "Fuula caancala <emph>Duubee</emph> irratti,halluu duubee filadhu."
+msgid ".5 Million"
+msgstr "Miliyoona .5"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"hd_id3146974\n"
+"format_value_userdef.xhp\n"
+"par_id3154486\n"
"20\n"
"help.text"
-msgid "Graphics in the Background of Cells"
-msgstr "Saxaatoo duubee maadheelee keessatti"
+msgid "0.5 Million"
+msgstr "Miliyoona 0.5"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id3155414\n"
+"format_value_userdef.xhp\n"
+"par_id3146114\n"
"21\n"
"help.text"
-msgid "Choose <emph>Insert - Picture - From File</emph>."
-msgstr "<emph>Saagi - Fakkii - Faayilii irraa</emph> fili."
+msgid "1 Million"
+msgstr "Miliyoona 1"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id3149664\n"
+"format_value_userdef.xhp\n"
+"par_id3155810\n"
"22\n"
"help.text"
-msgid "Select the graphic and click <emph>Open</emph>."
-msgstr "Saxaatoo filiitii <emph>Bani</emph> cuqaasi."
+msgid "100000000"
+msgstr "100000000"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id3153575\n"
+"format_value_userdef.xhp\n"
+"par_id3153818\n"
"23\n"
"help.text"
-msgid "The graphic is inserted anchored to the current cell. You can move and scale the graphic as you want. In your context menu you can use the <emph>Arrange - To Background</emph> command to place this in the background. To select a graphic that has been placed in the background, use the <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link></caseinline><defaultinline>Navigator</defaultinline></switchinline>."
-msgstr "Saxaatoon man'ee ammaatti hidhameetu saagama. Saxaatoo akka barbaaddetti deemsisuu fi bal'isuu dandeessa. Baafata halqaraa kee keessatti kana duubee keessa kaa'uuf ajaja <emph>Qindeessi - Duubbeetti</emph> fayyadamuu dandeessa. Saxaatoo duubee keessa kaa'amee ture filachuuf, <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Naannessaa</link></caseinline><defaultinline>Naannessaa</defaultinline></switchinline> fayyadami."
+msgid "100. Million"
+msgstr "Miliyoona 100."
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id51576\n"
+"format_value_userdef.xhp\n"
+"par_id3151241\n"
+"24\n"
"help.text"
-msgid "<link href=\"text/shared/guide/background.xhp\">Watermarks</link>"
-msgstr "<link href=\"text/shared/guide/background.xhp\">saxaatoo golgolaa'oo</link>"
+msgid "100.0 Million"
+msgstr "Miliyoona 100.0"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id3156180\n"
-"30\n"
+"format_value_userdef.xhp\n"
+"par_id3144771\n"
+"25\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Background tab page\"><emph>Background</emph> tab page</link>"
-msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Background tab page\">Fuula caancala<emph>Duubee</emph></link>"
+msgid "100 Million"
+msgstr "Miliyoona 100"
-#: background.xhp
+#: formula_copy.xhp
msgctxt ""
-"background.xhp\n"
-"par_id7601245\n"
+"formula_copy.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/scalc/guide/format_table.xhp\">Formatting Spreadsheets</link>"
-msgstr "<link href=\"text/scalc/guide/format_table.xhp\">Wardiilee dhangeessuu</link>"
+msgid "Copying Formulas"
+msgstr "Foormulaawwan Garagalchuu"
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"tit\n"
+"formula_copy.xhp\n"
+"bm_id3151113\n"
"help.text"
-msgid "Text Superscript / Subscript"
-msgstr "Irrarfii/ Jalarfii Barruu"
+msgid "<bookmark_value>formulas; copying and pasting</bookmark_value><bookmark_value>copying; formulas</bookmark_value><bookmark_value>pasting;formulas</bookmark_value>"
+msgstr "<bookmark_value>foormulaawwan; garagalchuu fi maxxansuu</bookmark_value><bookmark_value>garagalchuu; foormulaawwan</bookmark_value><bookmark_value>maxxansuu;foormulaawwan</bookmark_value>"
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"bm_id3151112\n"
+"formula_copy.xhp\n"
+"hd_id3151113\n"
+"54\n"
"help.text"
-msgid "<bookmark_value>superscript text in cells</bookmark_value><bookmark_value>subscript text in cells</bookmark_value><bookmark_value>cells; text super/sub</bookmark_value><bookmark_value>characters;superscript/subscript</bookmark_value>"
-msgstr "<bookmark_value>barruu irrarfii maadheelee keessaa</bookmark_value><bookmark_value>barruu jalarfii maadheelee keessaa</bookmark_value><bookmark_value>maadheelee; barruu irroo/sub</bookmark_value><bookmark_value>arfiilee;irrarfii/jalarfii</bookmark_value>"
+msgid "<variable id=\"formula_copy\"><link href=\"text/scalc/guide/formula_copy.xhp\" name=\"Copying Formulas\">Copying Formulas</link></variable>"
+msgstr "<variable id=\"formula_copy\"><link href=\"text/scalc/guide/formula_copy.xhp\" name=\"Copying Formulas\">Foormulaawwan Garagalchuu</link></variable>"
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"hd_id3151112\n"
-"1\n"
+"formula_copy.xhp\n"
+"par_id3156424\n"
+"11\n"
"help.text"
-msgid "<variable id=\"super_subscript\"><link href=\"text/scalc/guide/super_subscript.xhp\" name=\"Text Superscript / Subscript\">Text Superscript / Subscript</link></variable>"
-msgstr "<variable id=\"super_subscript\"><link href=\"text/scalc/guide/super_subscript.xhp\" name=\"Text Superscript / Subscript\">Irrarfii / Jalarfii Barruu</link></variable>"
+msgid "There are various ways to copy a formula. One suggested method is:"
+msgstr "Foormulaa garagalchuuf karaa adda addaatu jira. Malli dhiyeeffame tokko:"
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"par_id3154684\n"
-"2\n"
+"formula_copy.xhp\n"
+"par_id3150439\n"
+"30\n"
"help.text"
-msgid "In the cell, select the character that you want to put in superscript or subscript."
-msgstr "Maadhee keessaa, arfii irrarfii ykn jalarfii keessa kaa'uu barbaadde filadhu."
+msgid "Select the cell containing the formula."
+msgstr "Maadhee foormulaa qabate filadhu."
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"par_id3150439\n"
-"3\n"
+"formula_copy.xhp\n"
+"par_id3154319\n"
+"31\n"
"help.text"
-msgid "If, for example, you want to write H20 with a subscript 2, select the 2 in the cell (not in the input line)."
-msgstr "Yoo, fakkeenyaaf, H20 jalarfii 2 wajjin barreessuu barbaadde, maadhee keessaa 2 filadhu(sarara naqaa keessaa miti)."
+msgid "Choose <emph>Edit - Copy</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C to copy it."
+msgstr "<emph>Gulaali - Garagalchi</emph> filadhu, ykn garagalchuuf <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C dhiibi."
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"par_id3149260\n"
-"4\n"
+"formula_copy.xhp\n"
+"par_id3159155\n"
+"32\n"
"help.text"
-msgid "Open the context menu for the selected character and choose <emph>Character</emph>. You will see the <emph>Character</emph> dialog."
-msgstr "Arfii filatameef baafata haallee baniitii <emph>Arfii</emph> filadhu. Qaaqa <emph>Arfii</emph> argita."
+msgid "Select the cell into which you want the formula to be copied."
+msgstr "Maadhee foormulaan itti akka garagalchamu barbaadde filadhu."
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"par_id3153142\n"
-"5\n"
+"formula_copy.xhp\n"
+"par_id3153728\n"
+"33\n"
"help.text"
-msgid "Click the <emph>Font Position</emph> tab."
-msgstr "Caancala <emph>Qubannoo Bocquu</emph> cuqaasi."
+msgid "Choose <emph>Edit - Paste</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V. The formula will be positioned in the new cell."
+msgstr "<emph>Gulaali - Maxxansi</emph> filadhu, ykn garagalchuuf <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ C tuqi. Foormulaan man'ee haaraa keessa qubachiifama."
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"par_id3153954\n"
-"6\n"
+"formula_copy.xhp\n"
+"par_id3149961\n"
+"34\n"
"help.text"
-msgid "Select the <emph>Subscript</emph> option and click OK."
-msgstr "Dirqaala <emph>Jalarfii</emph> filadhuutii TOLE cuqaasi."
+msgid "If you want to copy a formula into multiple cells, there is a quick and easy way to copy into adjacent cell areas:"
+msgstr "Yoo foormulaa maadhee baay'eetti garagalchuu barbaadde, gara bal'inoota cinaatti garagalchuuf karaa saffisaa fi salphaatu jira:"
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"par_id3153876\n"
-"7\n"
+"formula_copy.xhp\n"
+"par_id3149400\n"
+"12\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Context menu - Character - Font Position\">Context menu - Character - Font Position</link>"
-msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Context menu - Character - Font Position\">Baafata haallee - Arfii - Qubannoo Bocquu</link>"
+msgid "Select the cell containing the formula."
+msgstr "Maadhee foormulaa qabate filadhu."
-#: datapilot_createtable.xhp
-#, fuzzy
+#: formula_copy.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"tit\n"
+"formula_copy.xhp\n"
+"par_id3154018\n"
+"13\n"
"help.text"
-msgid "Creating Pivot Tables"
-msgstr "Ganateewwan DataPilot uumuu"
+msgid "Position the mouse on the bottom right of the highlighted border of the cell, and continue holding down the mouse button until the pointer changes to a cross-hair symbol."
+msgstr "Hantuutee jala mirgaa xiyyoo shoolamaa maadhee irra qubachiisiitii, qabduu hantuutee gad qabuu hanga qareen mallattoo qaxxaamura-mataatti jijjiiramtuutti itti fufi."
-#: datapilot_createtable.xhp
-#, fuzzy
+#: formula_copy.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"bm_id3148491\n"
+"formula_copy.xhp\n"
+"par_id3150749\n"
+"14\n"
"help.text"
-msgid "<bookmark_value>pivot tables</bookmark_value> <bookmark_value>pivot table function; calling up and applying</bookmark_value>"
-msgstr "<bookmark_value>gabateewwa DataPilot</bookmark_value> <bookmark_value>dalagaa DataPilot; waamtee raawwachuu</bookmark_value>"
+msgid "With the mouse button pressed, drag it down or to the right over all the cells into which you want to copy the formula."
+msgstr "Akka qabduun hantuutee gad qabameen, gadi ykn gara mirgaa maadheelee foormulaa itti garagalchitu gubbaan harkisi."
-#: datapilot_createtable.xhp
-#, fuzzy
+#: formula_copy.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"hd_id3148491\n"
-"7\n"
+"formula_copy.xhp\n"
+"par_id3153714\n"
+"15\n"
"help.text"
-msgid "<variable id=\"datapilot_createtable\"><link href=\"text/scalc/guide/datapilot_createtable.xhp\" name=\"Creating Pivot Tables\">Creating Pivot Tables</link></variable>"
-msgstr "<variable id=\"datapilot_createtable\"><link href=\"text/scalc/guide/datapilot_createtable.xhp\" name=\"Creating DataPilot Tables\">Gabateewwan DataPilot uumuu</link></variable>"
+msgid "When you release the mouse button, the formula will be copied into the cells and automatically adjusted."
+msgstr "Yeroo qabduu hantuutee gad dhiistu, foormulaan gara maadheeleetti garagaleetu ufmaan sirreeffama."
-#: datapilot_createtable.xhp
+#: formula_copy.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3156023\n"
-"8\n"
+"formula_copy.xhp\n"
+"par_id3156385\n"
+"53\n"
"help.text"
-msgid "Position the cursor within a range of cells containing values, row and column headings."
-msgstr "Qaree hammangaa man'eelee gatiiwwan baatanii,tarree fi irraantota sarjaa keessatti qubachiisi."
+msgid "If you do not want values and texts to be automatically adjusted, then hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key when dragging. Formulas, however, are always adjusted accordingly."
+msgstr "Yoo gatiiwwanii fi barruuwwan akka ufmaan hin sirroofne barbaadde, furtuu <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline> yeroo harkistu gad qabi. Foormulaawwan, garuu, hogayyuu haalaan sirreeffamu."
-#: datapilot_createtable.xhp
-#, fuzzy
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3147264\n"
+"formula_enter.xhp\n"
+"tit\n"
+"help.text"
+msgid "Entering Formulas"
+msgstr "Foormulaawwan Galchuu"
+
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"bm_id3150868\n"
+"help.text"
+msgid "<bookmark_value>formula bar; input line</bookmark_value><bookmark_value>input line in formula bar</bookmark_value><bookmark_value>formulas; inputting</bookmark_value><bookmark_value>inserting;formulas</bookmark_value>"
+msgstr "<bookmark_value>kabala foormulaa; sarara naqaa</bookmark_value><bookmark_value>sarara naqaa kabala foormulaa keessatti</bookmark_value><bookmark_value>foormulaawwan; naquu</bookmark_value><bookmark_value>saaguu;foormulaawwan</bookmark_value>"
+
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"hd_id3150868\n"
"9\n"
"help.text"
-msgid "Choose <emph>Data - Pivot Table - Create</emph>. The <emph>Select Source</emph> dialog appears. Choose <emph>Current selection</emph> and confirm with <emph>OK</emph>. The table headings are shown as buttons in the <emph>Pivot Table</emph> dialog. Drag these buttons as required and drop them into the layout areas \"Page Fields\", \"Column Fields\", \"Row Fields\" and \"Data Fields\"."
-msgstr "<emph>Deetaa - DataPilot - Jalqaba</emph> filadhu. Qaaqni<emph>Madda filadhu</emph> ni mul'ata. <emph>Filannoo ammee</emph> filiitii <emph>TOLE</emph> dhaan mirkaneessi. Irraantowwan gabatee qaaqa <emph>DataPilot</emph> keessatti akka qabduuwwaniitti mul'atu. Qabduuwwan kunneen akka barbaadametti harkisiitii bal'inoota teessumaa \"Dirreewwan Fuulaa\", \"Dirreewwan Sarjaa\", \"Dirreewwan Tarree\" fi \"Dirreewwan Deetaa\" irra kaa'i."
+msgid "<variable id=\"formula_enter\"><link href=\"text/scalc/guide/formula_enter.xhp\" name=\"Entering Formulas\">Entering Formulas</link></variable>"
+msgstr "<variable id=\"formula_enter\"><link href=\"text/scalc/guide/formula_enter.xhp\" name=\"Entering Formulas\">Foormulaawwan Galchuu</link></variable>"
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3150868\n"
-"10\n"
+"formula_enter.xhp\n"
+"par_id6848353\n"
"help.text"
-msgid "Drag the desired buttons into one of the four areas."
-msgstr "Qabduuwwan barbaadde bal'inoota afran keessaa tokko irratti harkisi."
+msgid "You can enter formulas in several ways: using the icons, or by typing on the keyboard, or by a mixture of both methods."
+msgstr "Foormulaawwan karaa hedduu galchuu dandeessa: sajoolee fayyadamuu, ykn gabatee cuqoo irraa barreessuun, ykn makaa maloota lamaamiin."
-#: datapilot_createtable.xhp
-#, fuzzy
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id7599414\n"
+"formula_enter.xhp\n"
+"par_id3145364\n"
+"10\n"
"help.text"
-msgid "Drag a button to the <emph>Page Fields</emph> area to create a button and a listbox on top of the generated pivot table. The listbox can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the generated pivot table to use another page field as a filter."
-msgstr "Qabduu fi sanduuqa tarree gubbaa gabatee datapilot irratti uumuuf qabduu gara bal'ina <emph>Dirreewwan Fuulaa</emph> harkisi.Sanduuqni tarree qabiyyeewwan waanta filatameetiin gabatee datapilot gingilchuuf fayyaduu danda'a.Dirree fuulaa biraa akka gingilchaatti fayyadamuuf gabatee datapilot uumame keessatti harkisii-kaa'I fayyadamuu dandeessa."
+msgid "Click the cell in which you want to enter the formula."
+msgstr "Maadhee foormulaa keessa galchuu barbaadde cuqaasi."
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3154011\n"
+"formula_enter.xhp\n"
+"par_id3150012\n"
"11\n"
"help.text"
-msgid "If the button is dropped in the <emph>Data Fields</emph> area it will be given a caption that also shows the formula that will be used to calculate the data."
-msgstr "Yoo qabduun bal'ina <emph>Dirreewwan Deetaa</emph> keessa bu'e goodayyaa kan foormulaa deetaa shallaguuf fayyadamnu mul'isuuf kennama."
+msgid "Click the <emph>Function</emph> icon on the Formula Bar."
+msgstr "Sajoo <emph>Dalagaa</emph> Kabala Foormulaa irraa cuqaasi."
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3146974\n"
-"16\n"
+"formula_enter.xhp\n"
+"par_id3156441\n"
+"12\n"
"help.text"
-msgid "By double-clicking on one of the fields in the <emph>Data Fields</emph> area you can call up the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog."
-msgstr "Dirreewwan bal'ina <emph>Dirreewwan Deetaa</emph> keessa jiran keessaa tokko lamcuqaasuudhaan qaaqa <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Dirree Deetaa</emph></link> waamuu dandeessa."
+msgid "You will now see an equals sign in the input line and you can begin to input the formula."
+msgstr "Amma mallattoo walqixaa sarara naqaa keessaa argita akkasumas naqa foormulaa jalqabuu dandeessa."
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3156286\n"
-"17\n"
+"formula_enter.xhp\n"
+"par_id3153726\n"
+"3\n"
"help.text"
-msgid "Use the <item type=\"menuitem\">Data Field</item> dialog to select the calculations to be used for the data. To make a multiple selection, press the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while clicking the desired calculation."
-msgstr ""
+msgid "After entering the required values, press Enter or click <emph>Accept</emph> to insert the result in the active cell. If you want to clear your entry in the input line, press Escape or click <emph>Cancel</emph>."
+msgstr "Erga gatiiwwan barbaachisan galanii booda, bu'aa man'ee kaka'aa keessatti saaguuf Enter tuqi ykn <emph>Fuudhi</emph> cuqaasi. Yoo galfata sarara naqaa kee keessaa qulqulleessuu barbaadde, Escape tuqi ykn <emph>Dhiisi</emph> cuqaasi."
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3150329\n"
-"13\n"
+"formula_enter.xhp\n"
+"par_id3147394\n"
+"8\n"
"help.text"
-msgid "The order of the buttons can be changed at any time by moving them to a different position in the area with the mouse."
-msgstr "Tartiibni qabduuwwanii yeroo kamiyyuu qabduuwwan bal'ina keessatti gara qubannoo biraa hantuuteen deemsisuudhaan jijjiiramuu danda'a."
+msgid "You can also enter the values and the formulas directly into the cells, even if you cannot see an input cursor. Formulas must always begin with an equals sign."
+msgstr "Gatiiwwanii fi foormulaawwan kallattiin maadheelee keessatti galchuus dandeessa, yoo qaree naqaa arguu baatteyyuu. Foormulaawwan mallattoo walqixaatiin jalqabuu qabu."
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3153714\n"
-"14\n"
+"formula_enter.xhp\n"
+"par_id4206976\n"
"help.text"
-msgid "Remove a button by dragging it back to the area of the other buttons at the right of the dialog."
-msgstr "Duubatti gara mirga qaaqa bal'ina qabduuwwan birootti harkissudhaan qabduu balleessi."
+msgid "You can also press the + or - key on the numerical keyboard to start a formula. NumLock must be \"on\". For example, press the following keys in succession:"
+msgstr "Foormulaa jalqabuuf + ykn - gabatee lakkoofsaa irraa tuquus dandeessa. NumLock \"banaa\" ta'uu qaba. Fakkeenyaaf, walitti aansiitii furtuuwwan kanaa gadii tuqi:"
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3147338\n"
-"15\n"
+"formula_enter.xhp\n"
+"par_id1836909\n"
"help.text"
-msgid "To open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog, double-click one of the buttons in the <emph>Row Fields</emph> or <emph>Column Fields</emph> area. Use the dialog to select if and to what extent <item type=\"productname\">%PRODUCTNAME</item> calculates display subtotals."
+msgid "+ 5 0 - 8 Enter"
+msgstr "+ 5 0 - 8 Enter"
+
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"par_id8171330\n"
+"help.text"
+msgid "You see the result <item type=\"literal\">42</item> in the cell. The cell contains the formula <item type=\"literal\">=+50-8</item>."
+msgstr "Bu'aa <item type=\"literal\">42</item> man'ee keessatti argita. Man'een foormulaa <item type=\"literal\">=+50-8</item> qabata."
+
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"par_id3155764\n"
+"6\n"
+"help.text"
+msgid "If you are editing a formula with references, the references and the associated cells will be highlighted with the same color. You can now resize the reference border using the mouse, and the reference in the formula displayed in the input line also changes. <emph>Show references in color</emph> can be deactivated under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060300.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>."
msgstr ""
-#: datapilot_createtable.xhp
-#, fuzzy
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3154020\n"
-"18\n"
+"formula_enter.xhp\n"
+"par_id3149210\n"
+"7\n"
"help.text"
-msgid "Exit the Pivot Table dialog by pressing OK. A <emph>Filter</emph> button will now be inserted, or a page button for every data field that you dropped in the <emph>Page Fields</emph> area. The pivot table is inserted further down."
-msgstr "TOLE tuquudhaan qaaqa DataPilot dhaamsi.Qabduun <emph>Gingilchi</emph> amma ni saagama,ykn qabduu fuulaa dirree deetaa kan ati bal'ina <emph>Dirreewwan Fuulaa</emph> keessa buuste maraaf.Gabateen DataPilot gad fagaateetu saagama."
+msgid "<variable id=\"tip\">If you would like to view the calculation of individual elements of a formula, select the respective elements and press F9. For example, in the formula =SUM(A1:B12)*SUM(C1:D12) select the section SUM(C1:D12) and press F9 to view the subtotal for this area. </variable>"
+msgstr "<variable id=\"tip\">Yoo shallaggii tokkoon tokkoo miseensota foormulaa arguu barbaadde, miseensota barbaadde filiitii F9 tuqi. Fakkeenyaaf, foormulaa =IDA'A(A1:B12)*IDA'A(C1:D12) keessatti filannoo IDA'A(C1:D12) filadhuutii cita ida'ama bal'ina kanaa arguuf F9 tuqi. </variable>"
-#: text_wrap.xhp
+#: formula_enter.xhp
msgctxt ""
-"text_wrap.xhp\n"
+"formula_enter.xhp\n"
+"par_id3150304\n"
+"5\n"
+"help.text"
+msgid "If an error occurs when creating the formula, an <link href=\"text/scalc/05/02140000.xhp\" name=\"error message\">error message</link> appears in the active cell."
+msgstr "Yoo yemmuu foormulaa uumtu dogoggorri uumame,<link href=\"text/scalc/05/02140000.xhp\" name=\"error message\">ergaa dogoggoraa</link> man'ee kaka'aa keessatti mul'ata."
+
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"par_id3152993\n"
+"13\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0206.xhp\" name=\"Formula bar\">Formula bar</link>"
+msgstr "<link href=\"text/scalc/main0206.xhp\" name=\"Formula bar\">Kabala foormulaa</link>"
+
+#: formula_value.xhp
+msgctxt ""
+"formula_value.xhp\n"
"tit\n"
"help.text"
-msgid "Writing Multi-line Text"
-msgstr "Barruu Sarar-baay'ee Barreessuu"
+msgid "Displaying Formulas or Values"
+msgstr "Foormulaawwan ykn Gatiiwwan Mul'isuu"
-#: text_wrap.xhp
+#: formula_value.xhp
msgctxt ""
-"text_wrap.xhp\n"
-"bm_id3154346\n"
+"formula_value.xhp\n"
+"bm_id3153195\n"
"help.text"
-msgid "<bookmark_value>text in cells; multi-line</bookmark_value><bookmark_value>cells; text breaks</bookmark_value><bookmark_value>breaks in cells</bookmark_value><bookmark_value>multi-line text in cells</bookmark_value>"
-msgstr "<bookmark_value>barruu maadheelee keessaa; sarar-baay'ee</bookmark_value><bookmark_value>maadheelee; citoota barruu</bookmark_value><bookmark_value>citoota maadheelee keessaa</bookmark_value><bookmark_value>barruu sarar-baay'ee maadheelee keessaa</bookmark_value>"
+msgid "<bookmark_value>formulas; displaying in cells</bookmark_value><bookmark_value>values; displaying in tables</bookmark_value><bookmark_value>tables; displaying formulas/values</bookmark_value><bookmark_value>results display vs. formulas display</bookmark_value><bookmark_value>displaying; formulas instead of results</bookmark_value>"
+msgstr "<bookmark_value>foormulaawwan; maadheelee keessatti agarsiisuu</bookmark_value><bookmark_value>gatiiwwan; gabateewwan keessatti agarsiisuu</bookmark_value><bookmark_value>gabateewwan; foormulaawwan/gatiiwwan agarsiisuu</bookmark_value><bookmark_value>agarsiisa bu'aalee vs. agarsiisa foormulaawwanii</bookmark_value><bookmark_value>agarsiisuu; bu'aalee osoo hin ta'in foormulaawwan</bookmark_value>"
-#: text_wrap.xhp
+#: formula_value.xhp
msgctxt ""
-"text_wrap.xhp\n"
-"hd_id3154346\n"
-"42\n"
+"formula_value.xhp\n"
+"hd_id3153195\n"
+"1\n"
"help.text"
-msgid "<variable id=\"text_wrap\"><link href=\"text/scalc/guide/text_wrap.xhp\" name=\"Writing Multi-line Text\">Writing Multi-line Text</link></variable>"
-msgstr "<variable id=\"text_wrap\"><link href=\"text/scalc/guide/text_wrap.xhp\" name=\"Writing Multi-line Text\">Barruu Sarar-baay'ee Barreessuu</link></variable>"
+msgid "<variable id=\"formula_value\"><link href=\"text/scalc/guide/formula_value.xhp\" name=\"Displaying Formulas or Values\">Displaying Formulas or Values</link></variable>"
+msgstr "<variable id=\"formula_value\"><link href=\"text/scalc/guide/formula_value.xhp\" name=\"Displaying Formulas or Values\">Foormulaawwan ykn Gatiiwwan Mul'isuu</link></variable>"
-#: text_wrap.xhp
+#: formula_value.xhp
msgctxt ""
-"text_wrap.xhp\n"
-"par_id3156280\n"
-"41\n"
+"formula_value.xhp\n"
+"par_id3150010\n"
+"2\n"
"help.text"
-msgid "Pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter keys inserts a manual line break. This shortcut only works directly in the cell, not in the input line."
-msgstr "Ajajni furtuuwwan <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter cita sarara namaanii saaga. Qaxxaamurri kun kallattiin man'ee keessatti hojjeta, sarara naqaa keessatti hin hojjetu."
+msgid "If you want to display the formulas in the cells, for example in the form =SUM(A1:B5), proceed as follows:"
+msgstr "Yoo foormulaawwan man'eelee keessatti agarsiisuu barbaadde, fakkeenyaaf gita =IDA'A(A1:B5) tiin, akka armaan gadiitti itti fufi:"
-#: text_wrap.xhp
+#: formula_value.xhp
msgctxt ""
-"text_wrap.xhp\n"
-"par_id3153142\n"
-"43\n"
+"formula_value.xhp\n"
+"par_id3151116\n"
+"3\n"
"help.text"
-msgid "If you want the text to automatically break at the right border of the cell, proceed as follows:"
-msgstr "Yoo barruun akka ufmaan xiyyoo mirgaa maadheetti citu barbaadde, akka armaan gadiitti itti fufi:"
+msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph>."
+msgstr "Galmee <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 wajjin filiitii Tab dhiibi"
-#: text_wrap.xhp
+#: formula_value.xhp
msgctxt ""
-"text_wrap.xhp\n"
-"par_id3153951\n"
-"44\n"
+"formula_value.xhp\n"
+"par_id3146120\n"
+"4\n"
"help.text"
-msgid "Select all the cells where you want the text to break at the right border."
-msgstr "Maadheelee hunda bakka barruun xiyyoo mirgaa irratti akka citu barbaaddu filadhu."
+msgid "In the <emph>Display</emph> area mark the <emph>Formulas</emph> box. Click OK."
+msgstr "Bal'ina <emph>Agarsiisi</emph> keessatti sanduuqa <emph>Foormulaawwan</emph> mallattoo itti godhi. TOLE cuqaasi."
-#: text_wrap.xhp
+#: formula_value.xhp
msgctxt ""
-"text_wrap.xhp\n"
-"par_id3148575\n"
-"45\n"
+"formula_value.xhp\n"
+"par_id3147396\n"
+"5\n"
"help.text"
-msgid "In <emph>Format - Cells - Alignment</emph>, mark the <emph>Wrap text automatically</emph> option and click OK."
-msgstr "<emph>Dhangii - Man'eewwan - Hiriirfama</emph> keessatti, dirqaala <emph>Barruu ofmaan marsi</emph> malkateessiitii Tole cuqaasi."
+msgid "If you want to view the calculation results instead of the formula, do not mark the Formulas box."
+msgstr "Yoo foormulaawwan osoo hin ta'in bu'aalee shallaggii alerguu barbaadde, SanduuqaFoormulaawwanii mallattoo itti hin godhin."
-#: text_wrap.xhp
+#: formula_value.xhp
msgctxt ""
-"text_wrap.xhp\n"
-"par_id3145799\n"
-"46\n"
+"formula_value.xhp\n"
+"par_id3153157\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cell\">Format - Cell</link>"
-msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cell\">Dhangii - Maadhee</link>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>"
+msgstr ""
#: formulas.xhp
msgctxt ""
@@ -8270,1484 +6440,2475 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Function Wizard</link>"
msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Masakaa Dalagaa</link>"
-#: rename_table.xhp
+#: fraction_enter.xhp
msgctxt ""
-"rename_table.xhp\n"
+"fraction_enter.xhp\n"
"tit\n"
"help.text"
-msgid "Renaming Sheets"
-msgstr "Wardiilee Maqaa jijjiiri"
+msgid "Entering Fractions"
+msgstr "Firaakshinoota galchuu"
-#: rename_table.xhp
+#: fraction_enter.xhp
msgctxt ""
-"rename_table.xhp\n"
-"bm_id3150398\n"
+"fraction_enter.xhp\n"
+"bm_id3155411\n"
"help.text"
-msgid "<bookmark_value>renaming;sheets</bookmark_value> <bookmark_value>sheet tabs;renaming</bookmark_value> <bookmark_value>tables;renaming</bookmark_value> <bookmark_value>names; sheets</bookmark_value>"
-msgstr "<bookmark_value>maqaa jijjiiruu;wardiilee</bookmark_value> <bookmark_value>caancaloota wardii;maqaa jijjiiruu</bookmark_value> <bookmark_value>gabateewwan;maqaa jijjiiruu</bookmark_value> <bookmark_value>maqaalee; wardiilee</bookmark_value>"
+msgid "<bookmark_value>fractions; entering</bookmark_value><bookmark_value>numbers; entering fractions </bookmark_value><bookmark_value>inserting;fractions</bookmark_value>"
+msgstr "<bookmark_value>firaakshinoota; galchuu</bookmark_value><bookmark_value>lakkoofsa; firaakshinoota galchuu </bookmark_value><bookmark_value>saaguu;firaakshinoota</bookmark_value>"
-#: rename_table.xhp
+#: fraction_enter.xhp
msgctxt ""
-"rename_table.xhp\n"
-"hd_id3150398\n"
-"11\n"
+"fraction_enter.xhp\n"
+"hd_id3155411\n"
+"41\n"
"help.text"
-msgid "<variable id=\"rename_table\"><link href=\"text/scalc/guide/rename_table.xhp\" name=\"Renaming Sheets\">Renaming Sheets</link></variable>"
-msgstr "<variable id=\"rename_table\"><link href=\"text/scalc/guide/rename_table.xhp\" name=\"Renaming Sheets\">Wardiilee Maqaa jijjiiruu</link></variable>"
+msgid "<variable id=\"fraction_enter\"><link href=\"text/scalc/guide/fraction_enter.xhp\" name=\"Entering Fractions \">Entering Fractions </link></variable>"
+msgstr "<variable id=\"fraction_enter\"><link href=\"text/scalc/guide/fraction_enter.xhp\" name=\"Entering Fractions \">Firaakshinoota Galchuu </link></variable>"
-#: rename_table.xhp
+#: fraction_enter.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id3155131\n"
-"12\n"
+"fraction_enter.xhp\n"
+"par_id3153968\n"
+"40\n"
"help.text"
-msgid "Click the name of the sheet that you want to change."
-msgstr "Maqaa wardii kan jijjiiruu barbaaddu cuqaasi."
+msgid "You can enter a fractional number in a cell and use it for calculation:"
+msgstr "Lakkoofsa firaakshinii man'ee keessatti galchiitii shallaggiif fayyadami."
-#: rename_table.xhp
+#: fraction_enter.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id3146976\n"
-"13\n"
+"fraction_enter.xhp\n"
+"par_id3155133\n"
+"42\n"
"help.text"
-msgid "Open the context menu and choose the <emph>Rename Sheet</emph> command. A dialog box appears where you can enter a new name."
-msgstr "Baafata haallee baniitii ajaja <emph>Maqaa jijjiiri</emph> filadhu. Qaaqni bakki maqaa haaraa galchi ni mul'ata."
+msgid "Enter \"0 1/5\" in a cell (without the quotation marks) and press the input key. In the input line above the spreadsheet you will see the value 0.2, which is used for the calculation."
+msgstr "Man'ee keessatti \"0 1/5\" galchiitii(mallattoo waraabbii malee)furtuu naqaa tuqi. Sarara naqaa gubbaa wardii jiru keessatti gatii 0.2 argita, kan shallaggiif fayyadu dha."
-#: rename_table.xhp
+#: fraction_enter.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id3149260\n"
+"fraction_enter.xhp\n"
+"par_id3145750\n"
+"43\n"
+"help.text"
+msgid "If you enter \"0 1/2\" AutoCorrect causes the three characters 1, / and 2 to be replaced by a single character. The same applies to 1/4 and 3/4. This replacement is defined in <emph>Tools - AutoCorrect Options - Options</emph> tab."
+msgstr "Yoo \"0 1/2\" galchite Ufmaa sirreessi arfiilee sadeen 1, / fi 2 akka arfii tokkoon bakka bu'an godha. Kan walfakkaatu 1/4 fi 3/4 irrattis ni raawwata. Bakka buusni kun caancala <emph>Meeshaalee - Ofiinsirreessaa - Dirqalaalee</emph> keessatti ibsama."
+
+#: fraction_enter.xhp
+msgctxt ""
+"fraction_enter.xhp\n"
+"par_id3145367\n"
+"44\n"
+"help.text"
+msgid "If you want to see multi-digit fractions such as \"1/10\", you must change the cell format to the multi-digit fraction view. Open the context menu of the cell, and choose <emph>Format cells. </emph>Select \"Fraction\" from the <emph>Category</emph> field, and then select \"-1234 10/81\". You can then enter fractions such as 12/31 or 12/32 - the fractions are, however, automatically reduced, so that in the last example you would see 3/8."
+msgstr "Yoo firaakshinee dijiitii danuu kan akka \"1/10\" arguu barbaadde, dhangii man'ee gara argii firaakshinii dijiitii danuutti jijjiiruu qabda. Baafata haallee man'ee baniitii, <emph>Man'eelee dhangeessi fili. </emph> \"Firaakshinii\" dirree <emph>Akaakuu</emph> irraa filiitii, achiin \"-1234 10/81\" filadhu. Achiin firaakshinoota akka 12/31 ykn 12/32 galchuu dandeessa - firaakshinootni, garuu, ufmaan hir'atu, akka fakkeenya dhumaa keessatti 3/8 agarttuuf."
+
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"tit\n"
+"help.text"
+msgid "Applying Goal Seek"
+msgstr "Barbaacha Kaayyoo Raawwachuu"
+
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"bm_id3145068\n"
+"help.text"
+msgid "<bookmark_value>goal seeking;example</bookmark_value><bookmark_value>equations in goal seek</bookmark_value><bookmark_value>calculating;variables in equations</bookmark_value><bookmark_value>variables;calculating equations</bookmark_value><bookmark_value>examples;goal seek</bookmark_value>"
+msgstr "<bookmark_value>barbaacha kaayyoo;fakkeenya</bookmark_value><bookmark_value>qixxaattota barbaacha kaayyoo keessatti</bookmark_value><bookmark_value>shallaguu;jijjiiramoota qixxaattota keessatti</bookmark_value><bookmark_value>jijjiiramoota;qixxaattota shallaguu</bookmark_value><bookmark_value>fakkeenyota;barbaacha kaayyoo</bookmark_value>"
+
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"hd_id3145068\n"
+"22\n"
+"help.text"
+msgid "<variable id=\"goalseek\"><link href=\"text/scalc/guide/goalseek.xhp\" name=\"Applying Goal Seek\">Applying Goal Seek</link></variable>"
+msgstr "<variable id=\"goalseek\"><link href=\"text/scalc/guide/goalseek.xhp\" name=\"Applying Goal Seek\">Babrbaacha Kaayyoo Raawwadhu</link></variable>"
+
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"par_id3145171\n"
+"2\n"
+"help.text"
+msgid "With the help of Goal Seek you can calculate a value that, as part of a formula, leads to the result you specify for the formula. You thus define the formula with several fixed values and one variable value and the result of the formula."
+msgstr "Gargaarsa Barbaacha Kaayyootiin gatii, akka qaama foormulaatti, gara bu'aa foormulaaf ifteessituutti si geessu shallaguu dandeessa. Achiin foormulaa gatiiwwan dhaabbataa baay'eetiinii fi gatii jijjiiramaa tokkoo fi bu'aa foormulaatiin qindeessita."
+
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"hd_id3153966\n"
+"14\n"
+"help.text"
+msgid "Goal Seek Example"
+msgstr "Fakkeenya Kaayyoo Barbaachaa"
+
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"par_id3150871\n"
+"4\n"
+"help.text"
+msgid "To calculate annual interest (I), create a table with the values for the capital (C), number of years (n), and interest rate (i). The formula is:"
+msgstr "Dhala waggaa(I) shallaguuf, gabatee gatiiwwan kaappitaala©, lakkoofsa waggootaa(n), fi reetii dhalaa(i) qabatu uumi. Foormulaan:"
+
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"par_id3152596\n"
+"5\n"
+"help.text"
+msgid "I = C * n* i"
+msgstr "I = C * n* i"
+
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"par_id3155335\n"
"15\n"
"help.text"
-msgid "Enter a new name for the sheet and click <emph>OK</emph>."
-msgstr "Maqaa haaraa wardiif galchiitii <emph>TOLE</emph> cuqaasi."
+msgid "Let us assume that the interest rate <item type=\"literal\">i</item> of 7.5% and the number of years <item type=\"literal\">n</item> (1) will remain constant. However, you want to know how much the investment capital <item type=\"literal\">C</item> would have to be modified in order to attain a particular return <item type=\"literal\">I</item>. For this example, calculate how much capital <item type=\"literal\">C</item> would be required if you want an annual return of $15,000."
+msgstr "Mee reetiin dhalaa <item type=\"literal\">i</item> 7.5% fi lakkoofsi waggootaa <item type=\"literal\">n</item> (1) dhaabbataa jennee haa fudhannu. Garuu, hanga kaappitaalli investimentii <item type=\"literal\">C</item> deebii murtaa'aa <item type=\"literal\">I</item> agachuuf fooyya'uu qabu ture beekuu si barbaachisa. Fakkeenya kanaaf, kaappitaala <item type=\"literal\">C</item> hangamtu yoo deebisa waggaa $15,000 barbaadde akka si barbaachisu shallagi."
-#: rename_table.xhp
+#: goalseek.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id3149667\n"
-"27\n"
+"goalseek.xhp\n"
+"par_id3155960\n"
+"6\n"
"help.text"
-msgid "Alternatively, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option key</caseinline><defaultinline>Alt key</defaultinline></switchinline> and click on any sheet name and enter the new name directly."
-msgstr "Karaa biraatiin, <switchinline select=\"sys\"><caseinline select=\"MAC\">furtuu Dirqalaa</caseinline><defaultinline>furtuu Alt</defaultinline></switchinline> gad qabuudhaan maqaa wardii feete irratti cuqaasiitii kallattiin maqaa haaraa galchi."
+msgid "Enter each of the values for Capital <item type=\"literal\">C</item> (an arbitrary value like <item type=\"literal\">$100,000</item>), number of years <item type=\"literal\">n </item>(<item type=\"literal\">1</item>), and interest rate <item type=\"literal\">i</item> (<item type=\"literal\">7.5%</item>) in one cell each. Enter the formula to calculate the interest <item type=\"literal\">I</item> in another cell. Instead of <item type=\"literal\">C</item>, <item type=\"literal\">n</item>, and <item type=\"literal\">i</item> use the <link href=\"text/scalc/guide/relativ_absolut_ref.xhp\">reference to the cell</link> with the corresponding value."
+msgstr "Gatiiwwan tokkoon tokkoo Kaapitaalaaf <item type=\"literal\">C</item> (gatii tasaa kan akka <item type=\"literal\">$100,000</item>), lakkoofsa waggootaaf <item type=\"literal\">n </item>(<item type=\"literal\">1</item>), fi makkii dhalannaaf <item type=\"literal\">i</item> (<item type=\"literal\">7.5%</item>) man'ee tokko keessatti galchi. Foormulaa dhalannaa <item type=\"literal\">I</item> shallagu man'ee biroo keessatti galchi. Qooda <item type=\"literal\">C</item>, <item type=\"literal\">n</item>, fi <item type=\"literal\">i</item> <link href=\"text/scalc/guide/relativ_absolut_ref.xhp\">wabii man'ee</link> gatii walsimu waliin fayyadami."
-#: rename_table.xhp
+#: goalseek.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810502833\n"
+"goalseek.xhp\n"
+"par_id3147001\n"
+"16\n"
"help.text"
-msgid "Sheet names can contain almost any character. Some naming restrictions apply when you want to save the spreadsheet to Microsoft Excel format."
-msgstr "Maqaaleen wardii arfii kamiyyuu ofkeessaa qabaachuu danda'a. Yammuu ati wardii dhangii Microsoft Exceltiin olkaa'uu barbaaddu daangessoonni maqaa tokko tokko ni fayyadamu."
+msgid "Place the cursor in the cell containing the interest <item type=\"literal\">I</item>, and choose <emph>Tools - Goal Seek</emph>. The <emph>Goal Seek</emph> dialog appears."
+msgstr "Qaree man'ee dhala <item type=\"literal\">I</item> qabatu keessa kaa'iitii, <emph>Meeshaalee - Barbaacha Kaayyoo</emph>. Qaaqni <emph>Barbaacha Kaayyoo</emph> ni mul'ata."
-#: rename_table.xhp
+#: goalseek.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id090920081050283\n"
+"goalseek.xhp\n"
+"par_id3150088\n"
+"17\n"
"help.text"
-msgid "When saving to Microsoft Excel format, the following characters are not allowed in sheet names:"
-msgstr "Yammuu dhangiin Microsoft Exceltti olkaa'amu, arfiileen armaan gadii maqaalee wardii keessatti hin hayyamaman:"
+msgid "The correct cell is already entered in the field <emph>Formula Cell</emph>."
+msgstr "Man'een sirrii durumaanuu dirree <emph>Man'ee Foormulaa</emph> keessatti galchameera."
-#: rename_table.xhp
+#: goalseek.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id090920081050281\n"
+"goalseek.xhp\n"
+"par_id3166426\n"
+"18\n"
"help.text"
-msgid "colon :"
-msgstr "Xuqlamee :"
+msgid "Place the cursor in the field <emph>Variable Cell</emph>. In the sheet, click in the cell that contains the value to be changed, in this example it is the cell with the capital value <item type=\"literal\">C</item>."
+msgstr "Qaree dirree <emph>Man'ee Jijjiiramaa</emph> keessa kaa'i. Wardii keessatti, man'ee gatii jijjiiramu qabate cuqaasi, fakkeenya kana keessatti man'ee gatii kaappitaalaa <item type=\"literal\">C</item> dha."
-#: rename_table.xhp
+#: goalseek.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810502897\n"
+"goalseek.xhp\n"
+"par_id3150369\n"
+"19\n"
"help.text"
-msgid "back slash \\"
-msgstr "haxaarroo duubaa \\"
+msgid "Enter the expected result of the formula in the <emph>Target Value</emph> text box. In this example, the value is 15,000. Click <emph>OK</emph>."
+msgstr "Bu'aa eegamaa foormulaa sanduuqa barruu <emph>Gatii Galtee</emph> keessatti galchi. Fakkkeenya kana keessatti, gatiin 15,000 dha. <emph>TOLE</emph> cuqaasi."
-#: rename_table.xhp
+#: goalseek.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id090920081050299\n"
+"goalseek.xhp\n"
+"par_id3146978\n"
+"20\n"
"help.text"
-msgid "forward slash /"
-msgstr "haxaaroo fuulduraa /"
+msgid "A dialog appears informing you that the Goal Seek was successful. Click <emph>Yes</emph> to enter the result in the cell with the variable value."
+msgstr "Qaaqni akka Barbaachi Kaayyoo galma gahe mul'isu ni mul'ata. Bu'aa maadhee kan gatii jijjiiramaa qabate keessatti galchuuf <emph>Eeyyee</emph> cuqaasi."
-#: rename_table.xhp
+#: goalseek.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810502913\n"
+"goalseek.xhp\n"
+"par_id3149409\n"
+"23\n"
"help.text"
-msgid "question mark ?"
-msgstr "mallattoo gaaffii ?"
+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 Kaayyoo</link>"
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id090920081050298\n"
+"html_doc.xhp\n"
+"tit\n"
"help.text"
-msgid "asterisk *"
-msgstr "urjoo *"
+msgid "Saving and Opening Sheets in HTML"
+msgstr "Wardiilee HTML keessatti Olkaa'uu fi Banuu"
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810502969\n"
+"html_doc.xhp\n"
+"bm_id3150542\n"
"help.text"
-msgid "left square bracket ["
-msgstr "sadallaa isquurii bitaa ["
+msgid "<bookmark_value>HTML; sheets</bookmark_value><bookmark_value>sheets; HTML</bookmark_value><bookmark_value>saving; sheets in HTML</bookmark_value><bookmark_value>opening; sheets in HTML</bookmark_value>"
+msgstr "<bookmark_value>HTML; wardiilee</bookmark_value><bookmark_value>wardiilee; HTML</bookmark_value><bookmark_value>olkaa'uu; wardiilee HTML keessaa</bookmark_value><bookmark_value>banuu; wardiilee HTML keessaa</bookmark_value>"
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810502910\n"
+"html_doc.xhp\n"
+"hd_id3150542\n"
+"1\n"
"help.text"
-msgid "right square bracket ]"
-msgstr "sadallaa isquurii mirgaa ]"
+msgid "<variable id=\"html_doc\"><link href=\"text/scalc/guide/html_doc.xhp\" name=\"Saving and Opening Sheets in HTML\">Saving and Opening Sheets in HTML</link></variable>"
+msgstr "<variable id=\"html_doc\"><link href=\"text/scalc/guide/html_doc.xhp\" name=\"Saving and Opening Sheets in HTML\">wardiilee HTML keessaa</link></variable>"
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810502971\n"
+"html_doc.xhp\n"
+"hd_id3154124\n"
+"2\n"
"help.text"
-msgid "single quote ' as the first or last character of the name"
-msgstr "mallattoo waraabbii baaqqee ' akka arfii jalqabaa ykn dhumaa maqaattii"
+msgid "Saving Sheets in HTML"
+msgstr "Wardiilee HTML keessatti Olkaa'uu"
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id090920081050307\n"
+"html_doc.xhp\n"
+"par_id3145785\n"
+"3\n"
"help.text"
-msgid "In cell references, a sheet name has to be enclosed in single quotes ' if the name contains other characters than alphanumeric or underscore. A single quote contained within a name has to be escaped by doubling it (two single quotes). For example, you want to reference the cell A1 on a sheet with the following name:"
-msgstr "Maqaan arfiilee katabbii ykn jalamurii yoo ofkeessaa qabaate, wabiilee man'ee keessatti, maqaan wardii mallattoolee waraabbii baaqqee ' keessatti hammatamuu qaba. Mallattoon waraabbii baaqqeen maqaa keessatti hammatame escapedhaan dachaafamuu(mallattoolee waraabbii baaqqee) danda'a. Fakkeenyaaf, Man'ee A1 wardii irratti maqaa armaan gadiitiin wabeessuu barbaadda:"
+msgid "<item type=\"productname\">%PRODUCTNAME</item> Calc saves all the sheets of a Calc document together as an HTML document. At the beginning of the HTML document, a heading and a list of hyperlinks are automatically added which lead to the individual sheets within the document."
+msgstr "<item type=\"productname\">%PRODUCTNAME</item> Calc wardiilee galmee Calc akka galmee HTMLtti waliin olkaa'a. Jalqaba galmee HTML irratti, matadureen tokkoofi geessituuwwan tarree tokkoo galmee keessatti wardiilee matayyaatti si geessan ofmaan dabalamu."
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810503071\n"
+"html_doc.xhp\n"
+"par_id3155854\n"
+"4\n"
"help.text"
-msgid "This year's sheet"
-msgstr "Wardii waggaa kanaa"
+msgid "Numbers are shown as written. In addition, in the <SDVAL> HTML tag, the exact internal number value is written so that after opening the HTML document with <item type=\"productname\">%PRODUCTNAME</item> you know you have the exact values."
+msgstr "Lakkoofsonni akka barreeffamanitti mul'atu. Dabalatees, iyyaatoo <SDVAL> HTML keessatti, galmee HTML <item type=\"productname\">%PRODUCTNAME</item>dhaan erga bantee booda gatiiwwan sirrii qabaachuu kee akka beektu gatiin lakkoofsa keessoo sirriin ni barreeffamu"
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810503054\n"
+"html_doc.xhp\n"
+"par_id3153188\n"
+"5\n"
"help.text"
-msgid "The reference must be enclosed in single quotes, and the one single quote inside the name must be doubled:"
-msgstr "Wabiin mallattoolee baaqqee keessatti hammatamuu qabu, dabalatees mallattoon waraabbii maqaa keessaa lama tahuu qabuP"
+msgid "To save the current Calc document as HTML, choose <emph>File - Save As</emph>."
+msgstr "Galmee Calc ammee akka HTML olkaa'uuf, <emph>Faayili - Akkasitti Olkaa'i</emph>."
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810503069\n"
+"html_doc.xhp\n"
+"par_id3148645\n"
+"6\n"
"help.text"
-msgid "'This year''s sheet'.A1"
-msgstr "'Wardii waggaa kanaa'.A1"
+msgid "In the <emph>File type</emph> list box, in the area with the other <item type=\"productname\">%PRODUCTNAME</item> Calc filters, choose the file type \"HTML Document (<item type=\"productname\">%PRODUCTNAME</item> Calc)\"."
+msgstr "Sanduuqa tarree <emph>Gosa faayilii</emph> keessatti, bal'ina gingilchaawwan Calc biraa <item type=\"productname\">%PRODUCTNAME</item> keessatti, gosa faayilii \"HTML Document (<item type=\"productname\">%PRODUCTNAME</item> Calc)\" filadhu."
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id3155444\n"
+"html_doc.xhp\n"
+"par_id3154729\n"
+"7\n"
+"help.text"
+msgid "Enter a <emph>File name</emph> and click <emph>Save</emph>."
+msgstr "<emph>Maqaa faayilii</emph> galchiitii <emph>Olkaa'i</emph> cuqaasi."
+
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"hd_id3149379\n"
+"8\n"
+"help.text"
+msgid "Opening Sheets in HTML"
+msgstr "Wardiilee HTML keessaa banuu"
+
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"par_id3149959\n"
+"10\n"
+"help.text"
+msgid "<item type=\"productname\">%PRODUCTNAME</item> offers various filters for opening HTML files, which you can select under <emph>File - Open</emph> in the <emph>Files of type</emph> list box:"
+msgstr "<item type=\"productname\">%PRODUCTNAME</item> gingilchaawwan addaddaa faayiloota HTML, <emph>Faayilii - Bani</emph> jalatti <emph>Faayiloota akaakuu</emph> sanduuqa tarree kenna:"
+
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"par_id3146969\n"
+"15\n"
+"help.text"
+msgid "Choose the file type \"HTML Document (<item type=\"productname\">%PRODUCTNAME</item> Calc)\" to open in <item type=\"productname\">%PRODUCTNAME</item> Calc."
+msgstr "<item type=\"productname\">%PRODUCTNAME</item> Calc keessatti banuuf akaakuu faayilii \"Galmee HTML (<item type=\"productname\">%PRODUCTNAME</item> Calc)\" filadhu."
+
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"par_id3155446\n"
"16\n"
"help.text"
-msgid "The name of a sheet is independent of the name of the spreadsheet. You enter the spreadsheet name when you save it for the first time as a file. The document can contain up to 256 individual sheets, which can have different names."
-msgstr "Maqaan wardii keessaa maqaa wardii guddaa irraa of danda'aa dha. Yeroo jalqaba akka faayiliitti olkeessu maqaa wardii galchi. Galmeen wardiilee hanga 256, kan maqaa adda addaa qabaachuu kan danda'an qabat."
+msgid "All <item type=\"productname\">%PRODUCTNAME</item> Calc options are now available to you. However, not all options that <item type=\"productname\">%PRODUCTNAME</item> Calc offers for editing can be saved in HTML format."
+msgstr "Dirqalaaleen <item type=\"productname\">%PRODUCTNAME</item> Calc marti siif ni jiraatu. Garuu, dirqalaalee <item type=\"productname\">%PRODUCTNAME</item> Calc gulaalliif kennu hundi dhangii HTMLtiin olkaa'amuu hin danda'an."
-#: datapilot_tipps.xhp
-#, fuzzy
+#: html_doc.xhp
msgctxt ""
-"datapilot_tipps.xhp\n"
+"html_doc.xhp\n"
+"par_id3150370\n"
+"17\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"File - Open\">File - Open</link>"
+msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"File - Open\">Faayilii - Bani</link>"
+
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"par_id3150199\n"
+"18\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"File - Save As\">File - Save As</link>"
+msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"File - Save As\">Faayilii - Akkasitti Olkaa'i</link>"
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
"tit\n"
"help.text"
-msgid "Selecting Pivot Table Output Ranges"
-msgstr "Hammangaawwan bahaa DataPilot filachuu"
+msgid "Entering a Number with Leading Zeros"
+msgstr "Lakkoofsa zeeroowwan dursan galchuu"
-#: datapilot_tipps.xhp
-#, fuzzy
+#: integer_leading_zero.xhp
msgctxt ""
-"datapilot_tipps.xhp\n"
-"bm_id3148663\n"
+"integer_leading_zero.xhp\n"
+"bm_id3147560\n"
"help.text"
-msgid "<bookmark_value>pivot table function; preventing data overwriting</bookmark_value><bookmark_value>output ranges of pivot tables</bookmark_value>"
-msgstr "<bookmark_value>dalagaa DataPilot; deetaa irraguu dhorkuu</bookmark_value><bookmark_value>hammangaawwan bahaa gabateewwan DataPilot</bookmark_value>"
+msgid "<bookmark_value>zero values; entering leading zeros</bookmark_value> <bookmark_value>numbers; with leading zeros</bookmark_value> <bookmark_value>leading zeros</bookmark_value> <bookmark_value>integers with leading zeros</bookmark_value> <bookmark_value>cells; changing text/number formats</bookmark_value> <bookmark_value>formats; changing text/number</bookmark_value> <bookmark_value>text in cells; changing to numbers</bookmark_value> <bookmark_value>converting;text with leading zeros, into numbers</bookmark_value>"
+msgstr "<bookmark_value>gatiiwwan zeeroo; zeeroowwan dursan galchuu</bookmark_value><bookmark_value>lakkoofsota; zeeroowwan dursan qaban</bookmark_value><bookmark_value>zeeroowwan dursan</bookmark_value><bookmark_value>intiijeroota zeeroowwan dursan qaban</bookmark_value><bookmark_value>lakkoofsota; dhangiiwwan barruu/lakkoofsaa jijjiiruu</bookmark_value><bookmark_value>maadheelee; dhangiiwwan barruu/lakkoofsaa jijjiiruu</bookmark_value><bookmark_value>dhangiiwwan; barruu/lakkoofsa jijjiiruu</bookmark_value><bookmark_value>barruu maadheelee keessaa; lakkoofsotatti jijjiiruu</bookmark_value><bookmark_value>geeddaruu; barruu gara lakkoofsotaatti</bookmark_value>"
-#: datapilot_tipps.xhp
-#, fuzzy
+#: integer_leading_zero.xhp
msgctxt ""
-"datapilot_tipps.xhp\n"
-"hd_id3148663\n"
+"integer_leading_zero.xhp\n"
+"hd_id3147560\n"
+"67\n"
+"help.text"
+msgid "<variable id=\"integer_leading_zero\"><link href=\"text/scalc/guide/integer_leading_zero.xhp\" name=\"Entering a Number with Leading Zeros\">Entering a Number with Leading Zeros</link></variable>"
+msgstr "<variable id=\"integer_leading_zero\"><link href=\"text/scalc/guide/integer_leading_zero.xhp\" name=\"Entering a Number with Leading Zeros\">Lakkoofsa zeeroowwan dursan galchuu</link></variable>"
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3153194\n"
+"55\n"
+"help.text"
+msgid "There are various ways to enter integers starting with a zero:"
+msgstr "Intiijeroota zeeroon jalqaban galchuuf karaalee adda addaatu jiru:"
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3146119\n"
+"56\n"
+"help.text"
+msgid "Enter the number as text. The easiest way is to enter the number starting with an apostrophe (for example, <item type=\"input\">'0987</item>). The apostrophe will not appear in the cell, and the number will be formatted as text. Because it is in text format, however, you cannot calculate with this number."
+msgstr "Lakkoofsa akka barruutti galchi. Karaan salphaan lakkoofsa hudhaan jalqabu(fakkeenyaaf, <item type=\"input\">'0987</item>) galchuu dha. Hudhaan man'ee keessatti hin mul'atu, lakkoofsi akka barruutti dhangeeffama. Sababa dhangii barruutiin ta'eef, garuu, lakkoofsa kanaan shallaguu hin dandeessu."
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3154013\n"
+"57\n"
+"help.text"
+msgid "Format a cell with a number format such as <item type=\"input\">\\0000</item>. This format can be assigned in the <emph>Format code</emph> field under the <emph>Format - Cells - Numbers</emph> tab, and defines the cell display as \"always put a zero first and then the integer, having at least three places, and filled with zeros at the left if less than three digits\"."
+msgstr "Man'ee dhangii lakkoofsaa qabu kan akka <item type=\"input\">\\0000</item> dhangeessi. Dhangiin kun dirree <emph>Koodii dhangii</emph> keessatti caancala <emph>Dhangii - Man'eelee - Lakkoofsota</emph> jalatti ramadamuu danda'a, akkasumas argii man'ee akka \" zeeroo hoggayyuu jalqaba kaayi, achiin intiijerii, bakkaa yoo xiqqaate sadii qabu, akkasumas kan bitaan zeeroodhaan yoo dijiitii sadii gad ta'e guutame\" qindeessa."
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3153158\n"
+"58\n"
+"help.text"
+msgid "If you want to apply a numerical format to a column of numbers in text format (for example, text \"000123\" becomes number \"123\"), do the following:"
+msgstr "Yoo dhangii lakkaawwii gara sarjaa lakkoofsota dhangii barruu qabaniitti raawwatte(fakkeenyaaf, barruun \"000123\" lakkoofsa \"123\" ta'a), kan armaan gadii hojjedhu:"
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3149377\n"
+"59\n"
+"help.text"
+msgid "Select the column in which the digits are found in text format. Set the cell format in that column as \"Number\"."
+msgstr "Sarjaa kan dijiitiiwwan dhangii barruutiin keessatti argaman filadhu. Dhangii man'ee sarjaa sana keessaa akka \"Lakkoofsa\" kaayi."
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3154944\n"
+"60\n"
+"help.text"
+msgid "Choose <emph>Edit - Find & Replace</emph>"
+msgstr "<emph>Guulaalii - Baarbaadi</emph> akkasumaas Bakka Buusi Fili"
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3154510\n"
+"61\n"
+"help.text"
+msgid "In the <emph>Search for</emph> box, enter <item type=\"input\">^[0-9]</item>"
+msgstr "Sanduuqa <emph>Barbaadi</emph> keessatti, <item type=\"input\">^[0-9]</item> galchi"
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3155068\n"
+"62\n"
+"help.text"
+msgid "In the <emph>Replace with</emph> box, enter <item type=\"input\">&</item>"
+msgstr "Sanduuqa <emph>Ittiin Bakka buusi</emph> keessatti, <item type=\"input\">&</item> galchi"
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3149018\n"
+"63\n"
+"help.text"
+msgid "Check <emph>Regular expressions</emph>"
+msgstr ""
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3156382\n"
+"64\n"
+"help.text"
+msgid "Check <emph>Current selection only</emph>"
+msgstr ""
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3146916\n"
+"65\n"
+"help.text"
+msgid "Click <emph>Replace All</emph>"
+msgstr ""
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"tit\n"
+"help.text"
+msgid "Shortcut Keys (%PRODUCTNAME Calc Accessibility)"
+msgstr "Furtuuwwan Qaxxaamuraa (Gaheenya %PRODUCTNAME Calc)"
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"bm_id3145120\n"
+"help.text"
+msgid "<bookmark_value>accessibility; %PRODUCTNAME Calc shortcuts</bookmark_value><bookmark_value>shortcut keys;%PRODUCTNAME Calc accessibility</bookmark_value>"
+msgstr "<bookmark_value>gaheenya; qaxxaamuroota %PRODUCTNAME Calc</bookmark_value><bookmark_value>furtuuwwan qaxxaamuroota; gaheenya %PRODUCTNAME Calc</bookmark_value>"
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"hd_id3145120\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"keyboard\"><link href=\"text/scalc/guide/keyboard.xhp\" name=\"Shortcut Keys (%PRODUCTNAME Calc Accessibility)\">Shortcut Keys (<item type=\"productname\">%PRODUCTNAME</item> Calc Accessibility)</link></variable>"
+msgstr "<variable id=\"keyboard\"><link href=\"text/scalc/guide/keyboard.xhp\" name=\"Shortcut Keys (%PRODUCTNAME Calc Accessibility)\">Furtuuwwan Qaxxaamuraa (<item type=\"productname\">%PRODUCTNAME</item> Gaheenya Calc)</link></variable>"
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3154760\n"
+"13\n"
+"help.text"
+msgid "Refer also to the lists of shortcut keys for <item type=\"productname\">%PRODUCTNAME</item> Calc and <item type=\"productname\">%PRODUCTNAME</item> in general."
+msgstr "Tarreewwan furtuuwwan qaxxaamuraa <item type=\"productname\">%PRODUCTNAME</item> Calc fi <item type=\"productname\">%PRODUCTNAME</item> dimshaashumatti ilaali."
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"hd_id3153360\n"
+"12\n"
+"help.text"
+msgid "Cell Selection Mode"
+msgstr "Haalata Filannoo Maadhee"
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3150870\n"
+"help.text"
+msgid "<image id=\"img_id3150439\" src=\"formula/res/refinp1.png\" width=\"0.1327inch\" height=\"0.1327inch\"><alt id=\"alt_id3150439\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150439\" src=\"formula/res/refinp1.png\" width=\"0.1327inch\" height=\"0.1327inch\"><alt id=\"alt_id3150439\">Sajoo</alt></image>"
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3154319\n"
+"11\n"
+"help.text"
+msgid "In a text box that has a button to minimize the dialog, press <item type=\"keycode\">F2</item> to enter the cell selection mode. Select any number of cells, then press <item type=\"keycode\">F2</item> again to show the dialog."
+msgstr "Sanduuqa barruu akan qabduu qaaqa xiqqeessu qabu keessaati, haaalata filannoo maadhee galchuuf <item type=\"keycode\">F2</item> tuqi. Lakkoofsa maadheelee feete filadhu, achiin qaaqa agrsiisuuf ammas <item type=\"keycode\">F2</item> tuqi."
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3145272\n"
+"10\n"
+"help.text"
+msgid "In the cell selection mode, you can use the common navigation keys to select cells."
+msgstr "Haalata filannoo maadhee keessatti, maadheelee filachuuf furtuuwwan naannessaa baramoo fayyadamuu dandeessa."
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"hd_id3148646\n"
+"14\n"
+"help.text"
+msgid "Controlling the Outline"
+msgstr "Toorii To'achuu"
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3146120\n"
+"15\n"
+"help.text"
+msgid "You can use the keyboard in <link href=\"text/scalc/01/12080000.xhp\" name=\"Outline\">Outline</link>:"
+msgstr "Gabatee cuqoo <link href=\"text/scalc/01/12080000.xhp\" name=\"Outline\">Toorii</link> keessaa fayyadamuu dandeessa:"
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3147394\n"
+"16\n"
+"help.text"
+msgid "Press <item type=\"keycode\">F6</item> or <item type=\"keycode\">Shift+F6</item> until the vertical or horizontal outline window has the focus."
+msgstr "Hanga foddaan toorii olee ykn dalgaa xiyyeeffannaa argatutti <item type=\"keycode\">F6</item> ykn <item type=\"keycode\">Shift+F6</item> tuqi."
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3149379\n"
+"17\n"
+"help.text"
+msgid "<item type=\"keycode\">Tab</item> - cycle through all visible buttons from top to bottom or from left to right."
+msgstr "<item type=\"keycode\">Tab</item> - qabduuwwan mul'atan keessa gubbaa gara jalaatti ykn bitaa gara mirgaatti marfata."
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3156286\n"
+"18\n"
+"help.text"
+msgid "<item type=\"keycode\">Shift+Tab</item> - cycle through all visible buttons in the opposite direction."
+msgstr "<item type=\"keycode\">Shift+Tab</item> - qabduuwwan mul'atan irra kallattii faallaan marfata."
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3149403\n"
"19\n"
"help.text"
-msgid "<variable id=\"datapilot_tipps\"><link href=\"text/scalc/guide/datapilot_tipps.xhp\" name=\"Selecting Pivot Table Output Ranges\">Selecting Pivot Table Output Ranges</link></variable>"
-msgstr "<variable id=\"datapilot_tipps\"><link href=\"text/scalc/guide/datapilot_tipps.xhp\" name=\"Selecting DataPilot Output Ranges\">Hammangaawwan bahaa DataPilot filachuu</link></variable>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+1 to Command+8</caseinline><defaultinline>Ctrl+1 to Ctrl+8</defaultinline></switchinline> - show all levels up to the specified number; hide all higher levels."
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja+1 to Ajaja+8</caseinline><defaultinline>Ctrl+1 hanga Ctrl+8</defaultinline></switchinline> - sadarkaalee hunda hanga lakkoofsa murtaa'eetti agarsiisa; sadarkaalee olaanoo hunda ni dhoksa."
-#: datapilot_tipps.xhp
-#, fuzzy
+#: keyboard.xhp
msgctxt ""
-"datapilot_tipps.xhp\n"
-"par_id3154123\n"
+"keyboard.xhp\n"
+"par_id3150329\n"
"20\n"
"help.text"
-msgid "Click the button <emph>More</emph> in the <emph>Pivot Table</emph> dialog. The dialog will be extended."
-msgstr "Qabduu <emph>Dabalata</emph> qaaqa <emph>DataPilot</emph> keessaa cuqaasi. Qaaqni ni babal'ata."
+msgid "Use <item type=\"keycode\">+</item> or <item type=\"keycode\">-</item> to show or hide the focused outline group."
+msgstr "Garee toorii xiyyeeffataman agarsiisuuf ykn dhoksuuf <item type=\"keycode\">+</item> ykn <item type=\"keycode\">-</item> fayyadami."
-#: datapilot_tipps.xhp
-#, fuzzy
+#: keyboard.xhp
msgctxt ""
-"datapilot_tipps.xhp\n"
-"par_id3153771\n"
+"keyboard.xhp\n"
+"par_id3155446\n"
"21\n"
"help.text"
-msgid "You can select a named range in which the pivot table is to be created, from the <emph>Results to</emph> box. If the results range does not have a name, enter the coordinates of the upper left cell of the range into the field to the right of the <emph>Results to</emph> box. You can also click on the appropriate cell to have the coordinates entered accordingly."
-msgstr "Hammanga moggaafame kan gabateen DataPilot keessatti uumamuuf jedhu filachuu dandeessa, sanduuqa <emph>Bu'aalee gara</emph> irraa. Yoo hammangaan bu'aalee maqaa hin qabu ta'e, walgitoonni maadhee gubbaa bitaa hammangaa gara dirree mirga sanduuqa <emph>Bu'aalee gara</emph> galchi. Akka walgitoonni galaniif maadhee sirrii ta'e irratti cuqaasuus dandeessa."
+msgid "Press <item type=\"keycode\">Enter</item> to activate the focused button."
+msgstr "Qabduu xiyyeeffatame kakaasuuf <item type=\"keycode\">Enter</item> tuqi."
-#: datapilot_tipps.xhp
-#, fuzzy
+#: keyboard.xhp
msgctxt ""
-"datapilot_tipps.xhp\n"
-"par_id3146974\n"
-"23\n"
+"keyboard.xhp\n"
+"par_id3154253\n"
+"22\n"
"help.text"
-msgid "If you mark the <emph>Ignore empty rows</emph> check box, they will not be taken into account when the pivot table is created."
-msgstr "Yoo sanduuqa filannoo <emph>Tarreewwan duwwaa tuffadhu </emph> mallatteessite, yeroo gabateen DataPilot uumamu xiyyeeffannaa keessa hin galan."
+msgid "Use <item type=\"keycode\">Up</item>, <item type=\"keycode\">Down</item>, <item type=\"keycode\">Left</item>, or <item type=\"keycode\">Right</item> arrow to cycle through all buttons in the current level."
+msgstr "Qabduuwwan hunda sadarkaa ammee keessa jiran marfachuuf xiyya <item type=\"keycode\">Up</item>, <item type=\"keycode\">Down</item>, <item type=\"keycode\">Left</item>, ykn <item type=\"keycode\">Right</item> fayyadami."
-#: datapilot_tipps.xhp
-#, fuzzy
+#: keyboard.xhp
msgctxt ""
-"datapilot_tipps.xhp\n"
-"par_id3145273\n"
-"24\n"
+"keyboard.xhp\n"
+"hd_id3147343\n"
+"8\n"
"help.text"
-msgid "If the <emph>Identify categories</emph> check box is marked, the categories will be identified by their headings and assigned accordingly when the pivot table is created."
-msgstr "Yoo sanduuqni filannoo <emph>Akaakuuwwan addaan baasi</emph> mallattaa'e, akaakuuwwan irraantota isaaniitiin addaan baasamanii yeroo DataPilot uumamu ramadu."
+msgid "Selecting a Drawing Object or a Graphic"
+msgstr "Waanta Fakkisaa ykn Saxaatoo Filachuu"
-#: autofilter.xhp
+#: keyboard.xhp
msgctxt ""
-"autofilter.xhp\n"
+"keyboard.xhp\n"
+"par_idN107AA\n"
+"help.text"
+msgid "Choose View - Toolbars - Drawing to open the Drawing toolbar."
+msgstr "Kamshaa Fakkisaa banuuf Argi - Kamshaawwan - Fakkisaa filadhu."
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3155333\n"
+"7\n"
+"help.text"
+msgid "Press <item type=\"keycode\">F6</item> until the <emph>Drawing</emph> toolbar is selected."
+msgstr "<item type=\"keycode\">F6</item> dhiibi hanga kamshaan <emph>Fakkasaa</emph> filatamutti."
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3150345\n"
+"4\n"
+"help.text"
+msgid "If the selection tool is active, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter. This selects the first drawing object or graphic in the sheet."
+msgstr "Yoo meeshaan filannoo kaka'aa ta'e, <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter dhiibi. Kun waanta fakkisaa jalqabaa ykn saxaataa wardii keessaa filata."
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3159240\n"
+"3\n"
+"help.text"
+msgid "With <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 you set the focus to the document."
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 dhaan fayyadamtee xiyyeeffannaa galmeef kennuu dandeessa."
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3155379\n"
+"2\n"
+"help.text"
+msgid "Now you can use <item type=\"keycode\">Tab</item> to select the next drawing object or graphic and <item type=\"keycode\">Shift+Tab</item> to select the previous one."
+msgstr "Waanta fakkisaa ykn saxaatoo ittaanu filachuuf <item type=\"keycode\">Tab</item> akkasumas kan duraa filachuuf <item type=\"keycode\">Shift+Tab</item> amma fayyadamuu dandeessa."
+
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
"tit\n"
"help.text"
-msgid "Applying AutoFilter"
-msgstr "Gingilcha ufmaa raawwachuu"
+msgid "Freezing Rows or Columns as Headers"
+msgstr "Tarreewwanii fi Sarjaalee akka Irraantotaa Dhaabuu"
-#: autofilter.xhp
+#: line_fix.xhp
msgctxt ""
-"autofilter.xhp\n"
-"bm_id3156423\n"
+"line_fix.xhp\n"
+"bm_id3154684\n"
"help.text"
-msgid "<bookmark_value>filters, see also AutoFilter function</bookmark_value> <bookmark_value>AutoFilter function;applying</bookmark_value> <bookmark_value>sheets; filter values</bookmark_value> <bookmark_value>numbers; filter sheets</bookmark_value> <bookmark_value>columns; AutoFilter function</bookmark_value> <bookmark_value>drop-down menus in sheet columns</bookmark_value> <bookmark_value>database ranges; AutoFilter function</bookmark_value>"
-msgstr "<bookmark_value>gingilchoota, dalagaa gingilcha ufmaas ilaali</bookmark_value> <bookmark_value>fankishinii gingilchaa ofmaa;raawwachuu</bookmark_value> <bookmark_value>wardiilee; gatiiwwan gingilchaa</bookmark_value> <bookmark_value>lakkoofsota; wardiilee gingilchaa</bookmark_value> <bookmark_value>tarjaawwan; dalagaa gingilcha ufmaa</bookmark_value> <bookmark_value>baafatoota gadbuusaa sarjaawwan wardii keessatti</bookmark_value> <bookmark_value>hangiilee kuusdeetaa; dalagaa gingilcha ufmaa</bookmark_value>"
+msgid "<bookmark_value>tables; freezing</bookmark_value><bookmark_value>title rows; freezing during table split</bookmark_value><bookmark_value>rows; freezing</bookmark_value><bookmark_value>columns; freezing</bookmark_value><bookmark_value>freezing rows or columns</bookmark_value><bookmark_value>headers; freezing during table split</bookmark_value><bookmark_value>scrolling prevention in tables</bookmark_value><bookmark_value>windows; splitting</bookmark_value><bookmark_value>tables; splitting windows</bookmark_value>"
+msgstr "<bookmark_value>gabateewwan; dhaabuu</bookmark_value><bookmark_value>tarrreewwan mataduree; yeroo addaan hira gabatee dhaabuu</bookmark_value><bookmark_value>tarreewwan; dhaabuu</bookmark_value><bookmark_value>sarjaalee; dhaabuu</bookmark_value><bookmark_value>tarreewwan ykn sarjaalee dhaabuu</bookmark_value><bookmark_value>irraantota; yeroo addaan hira gabatee dhaabuu</bookmark_value><bookmark_value>dhorka marfata gabatee keessaa</bookmark_value><bookmark_value>foddaalee; hiruu</bookmark_value><bookmark_value>gabateewwan; foddaalee hiruu</bookmark_value>"
-#: autofilter.xhp
+#: line_fix.xhp
msgctxt ""
-"autofilter.xhp\n"
-"hd_id3156423\n"
-"6\n"
+"line_fix.xhp\n"
+"hd_id3154684\n"
+"1\n"
"help.text"
-msgid "<variable id=\"autofilter\"><link href=\"text/scalc/guide/autofilter.xhp\" name=\"Applying AutoFilter\">Applying AutoFilter</link></variable>"
-msgstr "<variable id=\"autofilter\"><link href=\"text/scalc/guide/autofilter.xhp\" name=\"Applying AutoFilter\">Gingilcha ufmaa raawwachuu</link></variable>"
+msgid "<variable id=\"line_fix\"><link href=\"text/scalc/guide/line_fix.xhp\" name=\"Freezing Rows or Columns as Headers\">Freezing Rows or Columns as Headers</link></variable>"
+msgstr "<variable id=\"line_fix\"><link href=\"text/scalc/guide/line_fix.xhp\" name=\"Freezing Rows or Columns as Headers\">Tarreewwanii fi Sarjaalee akka Irraantotaa Dhaabuu</link></variable>"
-#: autofilter.xhp
+#: line_fix.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3147427\n"
+"line_fix.xhp\n"
+"par_id3148576\n"
+"2\n"
+"help.text"
+msgid "If you have long rows or columns of data that extend beyond the viewable area of the sheet, you can freeze some rows or columns, which allows you to see the frozen columns or rows as you scroll through the rest of the data."
+msgstr "Yoo tarreewwan ykn sarjaalee deetaa dheeroo kan bal'ina wardii argamu ala ta'e qabaatte, dhaabuu dandeessa, kun sarjaalee ykn tarreewwan yeroo deetaa biroo keessa marfattu akka agartu si dandeessisa."
+
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3156441\n"
+"3\n"
+"help.text"
+msgid "Select the row below, or the column to the right of the row or column that you want to be in the frozen region. All rows above, or all columns to the left of the selection are frozen."
+msgstr "Tarree jalaa, ykn sarjaa mirga tarree ykn sarjaa bal'ina dhaabbii keessa akka ta'u barbaaddu filadhu. Tarreewwan gubbaa hundi, ykn sarjaaleen bitaa filannoo jiran hundi ni dhaabbatu."
+
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3153158\n"
+"13\n"
+"help.text"
+msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
+msgstr "Dalgaa fi irraan oleedhaan dhaabuuf, <emph>maadhee</emph> kan tarree jalaa fi mirga sarjaa dhaabuu barbaadduu filadhu."
+
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3156286\n"
+"4\n"
+"help.text"
+msgid "Choose <emph>Window - Freeze</emph>."
+msgstr "<emph>Foddaa - Dhaabi</emph> filadhu."
+
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3151073\n"
+"5\n"
+"help.text"
+msgid "To deactivate, choose <emph>Window - Freeze </emph>again."
+msgstr "Kakaala gochuuf, ammas <emph>Foddaa - Dhaabi </emph> filadhu."
+
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3155335\n"
"7\n"
"help.text"
-msgid "The <emph>AutoFilter</emph> function inserts a combo box on one or more data columns that lets you select the records (rows) to be displayed."
-msgstr "Dalagaan <emph>Gingilcha ufmaa</emph> sarjaawwan deetaa tokko yookiin ol irratti sanduuqa makaa kan tarreewwan mul'atan filachuuf si dandeessisu saaga."
+msgid "If the area defined is to be scrollable, apply the <emph>Window - Split</emph> command."
+msgstr "Yoo bal'inni qindaa'e akka marfatamu barbaadame, ajaja <emph>Foddaa - Hiri</emph> raawwadhu."
-#: autofilter.xhp
+#: line_fix.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3152576\n"
+"line_fix.xhp\n"
+"par_id3147345\n"
+"8\n"
+"help.text"
+msgid "If you want to print a certain row on all pages of a document, choose <emph>Format - Print ranges - Edit</emph>."
+msgstr "Yoo tarree wayii fuulota galmee mara irraa maxxansuu barbaadde, <emph>Dhangii - Hammangaawwan maxxansaa - Gulaali</emph> filadhu."
+
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3147004\n"
"9\n"
"help.text"
-msgid "Select the columns you want to use AutoFilter on."
-msgstr "Sarjaawwan gingilcha ufmaa irratti fayyadamtu filadhu."
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"Window - Freeze\">Window - Freeze</link>"
+msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Window - Freeze\">Foddaa - Dhaabi</link>"
-#: autofilter.xhp
+#: line_fix.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3153157\n"
+"line_fix.xhp\n"
+"par_id3150088\n"
"10\n"
"help.text"
-msgid "Choose <emph>Data - Filter - AutoFilter</emph>. The combo box arrows are visible in the first row of the range selected."
-msgstr "<emph>Deetaa - Gingilchi - ufmaan gingilchi</emph>filadhu. Xiyyootni sanduuqa makaa hammanga tarree jalqabaa filatame keessatti ni mul'atu."
+msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"Window - Split\">Window - Split</link>"
+msgstr "<link href=\"text/scalc/01/07080000.xhp\" name=\"Window - Split\">Foddaa - Hiri</link>"
-#: autofilter.xhp
+#: line_fix.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3154510\n"
+"line_fix.xhp\n"
+"par_id3150304\n"
"11\n"
"help.text"
-msgid "Run the filter by clicking the drop-down arrow in the column heading and choosing an item."
-msgstr "Xiyya gadbuusaa irraantoo sarjaa keessaa cuqaasuudhaanii fi waanta filachuudhaan gingilchaa kaachisi."
+msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Format - Print ranges - Edit</link>"
+msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Dhangii - Hammangaawwan maxxansaa - Gulaali</link>"
-#: autofilter.xhp
+#: main.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3155064\n"
-"13\n"
+"main.xhp\n"
+"tit\n"
"help.text"
-msgid "Only those rows whose contents meet the filter criteria are displayed. The other rows are filtered. You can see if rows have been filtered from the discontinuous row numbers. The column that has been used for the filter is identified by a different color for the arrow button."
-msgstr "Tarreewwan qabiyyeen isaanii ulaagaa gingilchaa guutu qofatu mul'ata.Tarreewwan biroo ni gingilchamu.Akka tarreewwan gingilchamanii turan lakkoofsota tarree addaan citoo irraa arguu dandeessa.Sarjaan gingilchaaf fayyadee ture qabduu xiyyaatiif halluu addaatiin addaan baafatama."
+msgid "Instructions for Using $[officename] Calc"
+msgstr "Qajeelfamoota $[officename] Calc fayyadamuu"
-#: autofilter.xhp
+#: main.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id9216589\n"
+"main.xhp\n"
+"bm_id3150770\n"
"help.text"
-msgid "When you apply an additional AutoFilter on another column of a filtered data range, then the other combo boxes list only the filtered data."
-msgstr "Yeroo gingilcha ufmaa dabalataa sarjaa hammanga deetaa gingilchame kan biraa irratti raawwattu,achumaan sanduuqni makaa deetaa gingilchame qofa tarreessa."
+msgid "<bookmark_value>HowTos for Calc</bookmark_value><bookmark_value>instructions; $[officename] Calc</bookmark_value>"
+msgstr "Qajeelfamoota <bookmark_value>HowTos for Calc</bookmark_value><bookmark_value>; $[officename] Calc</bookmark_value>"
-#: autofilter.xhp
+#: main.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3153714\n"
-"12\n"
+"main.xhp\n"
+"hd_id3150770\n"
+"1\n"
"help.text"
-msgid "To display all records again, select the \"all<emph>\"</emph> entry in the AutoFilter combo box. If you choose \"Standard<emph>\"</emph>, the <item type=\"menuitem\">Standard Filter</item> dialog appears, allowing you to set up a standard filter. Choose \"Top 10\" to display the highest 10 values only."
-msgstr "Kuusaa hundaa ammas agarsiisuuf,galfata \"mara<emph>\"</emph> sanduuqa makaa gingilcha ufmaa keessaa filadhu. Yoo \"Durtii<emph>\"</emph> filatte, qaaqni <item type=\"menuitem\">Gingilcha Durtii</item> gingilcha durtii akka qindeessitu si dandeessisuuf ni mul'ata. Gatiiwwan gurguddoo 10 qofa mul'isuuf \"Guguddoo 10\" filadhu."
+msgid "<variable id=\"main\"><link href=\"text/scalc/guide/main.xhp\" name=\"Instructions for Using $[officename] Calc\">Instructions for Using $[officename] Calc</link></variable>"
+msgstr "<variable id=\"main\"><link href=\"text/scalc/guide/main.xhp\" name=\"Instructions for Using $[officename] Calc\">Qajeelfamoota $[officename] Calc fayyadamuu</link></variable>"
-#: autofilter.xhp
+#: main.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3147340\n"
+"main.xhp\n"
+"hd_id3145748\n"
+"2\n"
+"help.text"
+msgid "Formatting Tables and Cells"
+msgstr "Gabateewwanii fi Maadheelee Dhangeessuu"
+
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3154022\n"
+"3\n"
+"help.text"
+msgid "Entering Values and Formulas"
+msgstr "Gatiiwwanii fi Foormulaawwan Galchuu"
+
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3152899\n"
+"4\n"
+"help.text"
+msgid "Entering References"
+msgstr "Wabiilee Galchuu"
+
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3155382\n"
+"5\n"
+"help.text"
+msgid "Database Ranges in Tables"
+msgstr "Hammangaawwan Kuusaa deetaa Gabatee keessaa"
+
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3159229\n"
+"6\n"
+"help.text"
+msgid "Advanced Calculations"
+msgstr "Shallaggiiwwan Olaanoo"
+
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3153070\n"
+"7\n"
+"help.text"
+msgid "Printing and Page Preview"
+msgstr "Maxxansuu fi Durargii Fuulaa"
+
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3150437\n"
+"8\n"
+"help.text"
+msgid "Importing and Exporting Documents"
+msgstr "Galmeelee Alaaguu fi Alerguu"
+
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3166464\n"
+"9\n"
+"help.text"
+msgid "Miscellaneous"
+msgstr "Walmakee"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting Multiple Cells"
+msgstr "Maadheelee Danuu Filachuu"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"bm_id3153361\n"
+"help.text"
+msgid "<bookmark_value>cells; selecting</bookmark_value> <bookmark_value>marking cells</bookmark_value> <bookmark_value>selecting;cells</bookmark_value> <bookmark_value>multiple cells selection</bookmark_value> <bookmark_value>selection modes in spreadsheets</bookmark_value> <bookmark_value>tables; selecting ranges</bookmark_value>"
+msgstr "<bookmark_value>maadheelee; filachuu</bookmark_value><bookmark_value>maadheelee mallatteessuu</bookmark_value><bookmark_value>filachuu;maadheelee</bookmark_value><bookmark_value>filannoo maadheelee danuu</bookmark_value><bookmark_value>haalata filannoo wardiilee keessaa</bookmark_value><bookmark_value>gabateewwan; hammangaawwan filachuu</bookmark_value>"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"hd_id3153361\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"mark_cells\"><link href=\"text/scalc/guide/mark_cells.xhp\" name=\"Selecting Multiple Cells\">Selecting Multiple Cells</link></variable>"
+msgstr "<variable id=\"mark_cells\"><link href=\"text/scalc/guide/mark_cells.xhp\" name=\"Selecting Multiple Cells\">Maadheelee Danuu Filachuu</link></variable>"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"hd_id3145272\n"
+"2\n"
+"help.text"
+msgid "Select a rectangular range"
+msgstr "Hammangaa rogafree filadhu"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3149261\n"
+"3\n"
+"help.text"
+msgid "With the mouse button pressed, drag from one corner to the diagonally opposed corner of the range."
+msgstr "Qabduu hantuutee cuqaasuudhaan, xiyyoo tokko irraa gara xiyyoo faallaa hammangaa isa shaffaxaatti harkisi."
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"hd_id3151119\n"
+"4\n"
+"help.text"
+msgid "Mark a single cell"
+msgstr "Maadhee baaqqee mallatteessi"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3146975\n"
"19\n"
"help.text"
-msgid "To stop using AutoFilter, reselect all cells selected in step 1 and once again choose <emph>Data - Filter - AutoFilter</emph>."
-msgstr "Fayyadama gingilcha ufmaa dhaabuuf,man'eelee ejjatoo 1 keessatti filataman hunda lamuu filadhuutii <emph>Deetaa - Gingilchi - Ufmaan gingilchi</emph> fili."
+msgid "Do one of the following:"
+msgstr "Kan armaan gadii keessaa tokko dalagi:"
-#: autofilter.xhp
+#: mark_cells.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id4303415\n"
+"mark_cells.xhp\n"
+"par_id3163710\n"
+"20\n"
"help.text"
-msgid "To assign different AutoFilters to different sheets, you must first define a database range on each sheet."
-msgstr "Gingilcha ufmaa garaagaraa wardii garaagaraatti ramaduuf,dursitee tokkoon tokkoo wardii irratti hammanga kuusaa deetaa qindeessuu qabda."
+msgid "Click, then Shift-click the cell."
+msgstr "Cuqaasi, achiin Shift-maadhee cuqaasi."
-#: autofilter.xhp
+#: mark_cells.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3159236\n"
+"mark_cells.xhp\n"
+"par_id3149959\n"
+"5\n"
+"help.text"
+msgid "Pressing the mouse button, drag a range across two cells, do not release the mouse button, and then drag back to the first cell. Release the mouse button. You can now move the individual cell by drag and drop."
+msgstr "Qabduu hantuutee gad qabuudhaan, hammangaa maadheelee lama irra harkisi, qabduu hantuutee hin gadhiisin, achiin gara maadhee jalqabaatti harkisi. Amma maadhee tokko tokkoon harkisii-kaa'iin deemsisuu dandeessa."
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"hd_id3154942\n"
+"6\n"
+"help.text"
+msgid "Select various dispersed cells"
+msgstr "Man'eelee faca'an garaagaraa filadhu."
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id1001200901072060\n"
+"help.text"
+msgid "Do one of the following:"
+msgstr "Kan armaan gadii keessaa tokko dalagi:"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3156284\n"
+"7\n"
+"help.text"
+msgid "Mark at least one cell. Then while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, click each of the additional cells."
+msgstr "Yoo xiqqaate man'ee tokko mallatteessi. Achiin yeroo <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline> gad qabdu, tokkoon tokkoo man'eelee dabalataa cuqaasi."
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id1001200901072023\n"
+"help.text"
+msgid "Click the STD / EXT / ADD area in the status bar until it shows ADD. Now click all cells that you want to select."
+msgstr ""
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"hd_id3146971\n"
+"8\n"
+"help.text"
+msgid "Switch marking mode"
+msgstr "Haalata mallatteessuu dabarsi"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3155064\n"
+"9\n"
+"help.text"
+msgid "On the status bar, click the box with the legend STD / EXT / ADD to switch the marking mode:"
+msgstr "Kabala haalataa irratti, gara haalata mallatteessuu dabarsuuf sanduuqa waayoo STD / EXT / ADD qabu cuqaasi:"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3159264\n"
+"10\n"
+"help.text"
+msgid "Field contents"
+msgstr "Qabiyyeewwan dirree"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3155337\n"
+"11\n"
+"help.text"
+msgid "Effect of clicking the mouse"
+msgstr "Bu'aa hantuutee cuqaasuu"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3149568\n"
+"12\n"
+"help.text"
+msgid "STD"
+msgstr "STD"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3148486\n"
+"13\n"
+"help.text"
+msgid "A mouse click selects the cell you have clicked on. Unmarks all marked cells."
+msgstr "Cuqaasni hantuutee maadhee irratti cuqaaste filata. Maadheelee mallattaa'an mara mallattoo irraa nulqa."
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3150090\n"
"14\n"
"help.text"
-msgid "The arithmetic functions also take account of the cells that are not visible due to an applied filter. For example, a sum of an entire column will also total the values in the filtered cells. Apply the <link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link> function if only the cells visible after the application of a filter are to be taken into account."
-msgstr "Dalagaaleen herregaas man'eelee sababa gingilchaa raawwateen hin mul'anne xiyyeeffannaa keessa galchu.Fakkeenyaaf,ida'amni sarjaa hundaa gatii mara man'eelee filatamanii ta'a.Dalagaa <link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">CITA IDA'AMAA</link> yoo man'eeleen erga gingilchi raawwatee mul'atan qofti xiyyeeffannaa argachuuf ta'an raawwadhu."
+msgid "EXT"
+msgstr "EXT"
-#: autofilter.xhp
+#: mark_cells.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3152985\n"
+"mark_cells.xhp\n"
+"par_id3150305\n"
+"15\n"
+"help.text"
+msgid "A mouse click marks a rectangular range from the current cell to the cell you clicked. Alternatively, Shift-click a cell."
+msgstr ""
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3145587\n"
"16\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"Data - Filter - AutoFilter\">Data - Filter - AutoFilter</link>"
-msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"Data - Filter - AutoFilter\">Deetaa - Gingilchi - Ufmaan gingilchi</link>"
+msgid "ADD"
+msgstr "Dabali"
-#: autofilter.xhp
+#: mark_cells.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3154484\n"
+"mark_cells.xhp\n"
+"par_id3154368\n"
"17\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link>"
-msgstr "<link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">CITA IDA'AMAA</link>"
+msgid "A mouse click in a cell adds it to the already marked cells. A mouse click in a marked cell unmarks it. Alternatively, <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-click the cells."
+msgstr "Cuqaasni hantuutee man'ee keessaa gara man'eelee duraan mallattaa'aniitti dabala. Cuqaasni hantuutee man'ee mallattaa'e keessaa man'ee mallattoo irraa mulqa. Karaa biraatiin, man'eelee <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-cuqaasi."
-#: cellreference_dragdrop.xhp
+#: mark_cells.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
+"mark_cells.xhp\n"
+"par_id3154487\n"
+"18\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status bar\">Status bar</link>"
+msgstr "<link href=\"text/scalc/main0208.xhp\" name=\"Status bar\">Kabala haalojii</link>"
+
+#: matrixformula.xhp
+msgctxt ""
+"matrixformula.xhp\n"
"tit\n"
"help.text"
-msgid "Referencing Cells by Drag-and-Drop"
-msgstr "Maadheelee harkisaa-fi-kaayuun wabeeffachuu"
+msgid "Entering Matrix Formulas"
+msgstr "Foormulaawwan Tarreentaa Galchuu"
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"bm_id3154686\n"
+"matrixformula.xhp\n"
+"bm_id3153969\n"
"help.text"
-msgid "<bookmark_value>drag and drop; referencing cells</bookmark_value> <bookmark_value>cells; referencing by drag and drop </bookmark_value> <bookmark_value>references;inserting by drag and drop</bookmark_value> <bookmark_value>inserting;references, by drag and drop</bookmark_value>"
-msgstr "<bookmark_value>harkisii-kaa'i; man'eelee wabeeffachuu</bookmark_value> <bookmark_value>man'eelee; harkisii-kaa'iin wabeeffachuu </bookmark_value> <bookmark_value>wabiilee;harkisii-kaa'iin saaguu</bookmark_value> <bookmark_value>saaguu;wabiilee, harkisii-kaa'iidhaan</bookmark_value>"
+msgid "<bookmark_value>matrices; entering matrix formulas</bookmark_value><bookmark_value>formulas; matrix formulas</bookmark_value><bookmark_value>inserting;matrix formulas</bookmark_value>"
+msgstr "<bookmark_value>tarreentota; foormulaawwan tarreentaa galchuu</bookmark_value><bookmark_value>foormulaawwan; foormulaawwan tarreentaa</bookmark_value><bookmark_value>saaguu;foormulaawwan tarreentaa</bookmark_value>"
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"hd_id3154686\n"
-"16\n"
+"matrixformula.xhp\n"
+"hd_id3153969\n"
+"13\n"
"help.text"
-msgid "<variable id=\"cellreference_dragdrop\"><link href=\"text/scalc/guide/cellreference_dragdrop.xhp\" name=\"Referencing Cells by Drag-and-Drop\">Referencing Cells by Drag-and-Drop</link></variable>"
-msgstr "<variable id=\"cellreference_dragdrop\"><link href=\"text/scalc/guide/cellreference_dragdrop.xhp\" name=\"Referencing Cells by Drag-and-Drop\">Maadheelee harkisaa-fi-kaayuun wabeeffachuu</link></variable>"
+msgid "<variable id=\"matrixformula\"><link href=\"text/scalc/guide/matrixformula.xhp\" name=\"Entering Matrix Formulas\">Entering Matrix Formulas</link></variable>"
+msgstr "<variable id=\"matrixformula\"><link href=\"text/scalc/guide/matrixformula.xhp\" name=\"Entering Matrix Formulas\">Foormulaawwan Tarreentaa Galchuu</link></variable>"
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3156444\n"
-"17\n"
+"matrixformula.xhp\n"
+"par_id3153144\n"
+"14\n"
"help.text"
-msgid "With the help of the Navigator you can reference cells from one sheet to another sheet in the same document or in a different document. The cells can be inserted as a copy, link, or hyperlink. The range to be inserted must be defined with a name in the original file so that it can be inserted in the target file."
-msgstr "Naannessaan gargaaramuudhaan man'eelee wardii tokko irraa isa biratti galmee tokko ykn addaa keessaa wabeeffachuu dandeessa.Man'eeleen akka garagalchaa,geessituutti saaguu dandeessa.Hammangaan saagamu maqaa isa faayilii jalqabaa keessaatiin akka faayilii galtee keessatti saagamuu danda'uuf qindaa'uu qaba."
+msgid "The following is an example of how you can enter a matrix formula, without going into the details of matrix functions."
+msgstr "Kan armaan gadii fakkeenya akkaataa foormulaa tarreentaa, osoo bal'ina dalagaalee tarreentaa hin deemin galchitu dha."
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3152576\n"
-"25\n"
+"matrixformula.xhp\n"
+"par_id3153188\n"
+"15\n"
"help.text"
-msgid "Open the document that contains the source cells."
-msgstr "Galmee maadheelee maddaa qabate bani."
+msgid "Assume you have entered 10 numbers in Columns A and B (A1:A10 and B1:B10), and would like to calculate the sum of each row in Column C."
+msgstr "Akka lakkoofsota 10 Sarjaalee A fi B keessatti galchitetti(A1:A10 and B1:B10), ida'ama tokkoon tokkoo tarree sarjaa C keessatti shallaguu akka barbaaddu tilmaami."
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3154011\n"
-"26\n"
+"matrixformula.xhp\n"
+"par_id3154321\n"
+"16\n"
"help.text"
-msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
-msgstr "Hammangaa maddaa akka hammangaatti kaa'uuf,man'eelee filadhuutii <emph>Saagi - Maqaalee - Qindeessi</emph>fili.Galmee maddaa olkaa'I, garuu hin cufin."
+msgid "Using the mouse, select the range C1:C10, in which the results are to be displayed."
+msgstr "Hantuutee fayyadamuudhaan, hammangaa C1:C10 filadhu, kan bu'aaleen keessatti mul'atani dha."
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3151073\n"
+"matrixformula.xhp\n"
+"par_id3149260\n"
+"17\n"
+"help.text"
+msgid "Press F2, or click in the input line of the Formula bar."
+msgstr "F2 cuqaasi, ykn sarara naqaa kabala Foormulaa keessatti cuqaasi."
+
+#: matrixformula.xhp
+msgctxt ""
+"matrixformula.xhp\n"
+"par_id3154944\n"
"18\n"
"help.text"
-msgid "Open the sheet in which you want to insert something."
-msgstr "Wardii kan keessatti waa galchuu barbaaddu bani."
+msgid "Enter an equal sign (=)."
+msgstr "Mallattoo walqixaa galchi(=)."
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3154732\n"
+"matrixformula.xhp\n"
+"par_id3145252\n"
"19\n"
"help.text"
-msgid "Open the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>. In the lower box of the Navigator select the source file."
-msgstr "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Naannessa</link> bani. Sanduuqa naannessaa isa jalaa keessaa faayilii maddaa fili."
+msgid "Select the range A1:A10, which contains the first values for the sum formula."
+msgstr "Hammangaa A1:A10, kan gatiiwwan jalqabaa foormulaa ida'uu qabatan filadhu."
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3150752\n"
-"22\n"
+"matrixformula.xhp\n"
+"par_id3144767\n"
+"20\n"
"help.text"
-msgid "In the Navigator, the source file object appears under \"Range names\"."
-msgstr "Naannessaa keessatti,waanti faayilii maddaa jala \"Maqaalee hammangaa\" tti mul'ata."
+msgid "Press the (+) key from the numerical keypad."
+msgstr "Cuqoo lakkoofsaa irraa furtuu (+) cuqaasi."
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3154754\n"
-"27\n"
+"matrixformula.xhp\n"
+"par_id3154018\n"
+"21\n"
"help.text"
-msgid "Using the <emph>Drag Mode</emph> icon in Navigator, choose whether you want the reference to be a hyperlink, link, or copy."
-msgstr "Sajoo <emph>Haalata harkisaa</emph> naannessa keessaatti fayyadamuudhaan,akka wabiin geessituu, yookiin garagalcha akka ta'u barbaaddu fili."
+msgid "Select the numbers in the second column in cells B1:B10."
+msgstr "Lakkoofsota sarjaa lammaffaa maadhee B1:B10 keessaa fili."
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3154256\n"
-"23\n"
+"matrixformula.xhp\n"
+"par_id3150716\n"
+"22\n"
"help.text"
-msgid "Click the name under \"Range names\" in the Navigator, and drag into the cell of the current sheet where you want to insert the reference."
-msgstr "Maqaa jala \"Maqaalee hammangaa\" naannessaa keessaa cuqaasiitii, maadhee wardii ammee bakka wabii itti saaguu barbaadduutti harkisi."
+msgid "End the input with the matrix key combination: Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
+msgstr "Naqa makaa furtuu tarreentaatiin xumuri: Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3149565\n"
-"24\n"
+"matrixformula.xhp\n"
+"par_id3145640\n"
+"23\n"
"help.text"
-msgid "This method can also be used to insert a range from another sheet of the same document into the current sheet. Select the active document as source in step 4 above."
-msgstr "Malli kun hammangaa wardii biraa galmee sanaa irraa gara wardii ammeetti akka saagdu si fayyaduus danda'a."
+msgid "The matrix area is automatically protected against modifications, such as deleting rows or columns. It is, however, possible to edit any formatting, such as the cell background."
+msgstr "Bal'inni tarreentaa ufmaan fooyyee kan akka tarreewwan ykn sarjaalee balleessuu irraa dhorkama. Garuu, dhangeessuu kamiyyuu, kan akka duubee maadhe gulaaluun ni danda'ama."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
+"move_dragdrop.xhp\n"
"tit\n"
"help.text"
-msgid "Using Print Ranges on a Spreadsheet"
-msgstr "Wardii irratti Hammangaawwan Maxxansaa Fayyadamuu"
+msgid "Moving Cells by Drag-and-Drop"
+msgstr "Man'eelee harkisaa-fi-kaayuun Deemsisuu"
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"bm_id14648\n"
+"move_dragdrop.xhp\n"
+"bm_id3155686\n"
"help.text"
-msgid "<bookmark_value>exporting;cells</bookmark_value><bookmark_value>printing; cells</bookmark_value><bookmark_value>ranges;print ranges</bookmark_value><bookmark_value>PDF export of print ranges</bookmark_value><bookmark_value>cell ranges; printing</bookmark_value><bookmark_value>cells; print ranges</bookmark_value><bookmark_value>print ranges</bookmark_value><bookmark_value>clearing, see also deleting/removing</bookmark_value><bookmark_value>defining;print ranges</bookmark_value><bookmark_value>extending print ranges</bookmark_value><bookmark_value>deleting;print ranges</bookmark_value>"
-msgstr "<bookmark_value>alerguu;man'eelee</bookmark_value><bookmark_value>maxxansuu; man'eelee</bookmark_value><bookmark_value>hangiiwwan;hangiiwwan maxxansaa</bookmark_value><bookmark_value>hangiiwwan maxxansaa alerga PDF</bookmark_value><bookmark_value>hangiiwwan man'ee; maxxansuu</bookmark_value><bookmark_value>man'eelee; hangiiwwan maxxansaa</bookmark_value><bookmark_value>hangiiwwan maxxansaa</bookmark_value><bookmark_value>qulqulleessuu, haquu/balleessuu ilaali</bookmark_value><bookmark_value>ibsuu;hangiiwwan maxxansaa</bookmark_value><bookmark_value>hangiiwwan maxxansaa bal'isuu</bookmark_value><bookmark_value>haquu;hangiiwwan maxxansaa</bookmark_value>"
+msgid "<bookmark_value>drag and drop; moving cells</bookmark_value><bookmark_value>cells; moving by drag and drop </bookmark_value><bookmark_value>columns;moving by drag and drop</bookmark_value><bookmark_value>moving;cells by drag and drop</bookmark_value><bookmark_value>inserting;cells, by drag and drop</bookmark_value>"
+msgstr "<bookmark_value>harkisii-kaa'i; man'eelee siiqsuu</bookmark_value><bookmark_value>man'eelee; harkisii-kaa'iin siiqsuu</bookmark_value><bookmark_value>tarjaawwan; harkisii-kaa'iin siiqsuu</bookmark_value><bookmark_value>siiqsuu;man'eelee harkisii-kaa'iin</bookmark_value><bookmark_value>saaguu;man'eelee, harkisii-kaa'iin</bookmark_value>"
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN108D7\n"
+"move_dragdrop.xhp\n"
+"hd_id986358\n"
"help.text"
-msgid "<variable id=\"printranges\"><link href=\"text/scalc/guide/printranges.xhp\">Defining Print Ranges on a Sheet</link> </variable>"
-msgstr "<variable id=\"printranges\"><link href=\"text/scalc/guide/printranges.xhp\">Wardii irratti Hangiiwwan Maxxansaa Ibsuu</link> </variable>"
+msgid "<variable id=\"move_dragdrop\"><link href=\"text/scalc/guide/move_dragdrop.xhp\">Moving Cells by Drag-and-Drop</link></variable>"
+msgstr "<variable id=\"move_dragdrop\"><link href=\"text/scalc/guide/move_dragdrop.xhp\">Maadheelee harkisaa-fi-kaayuun Deemsisuu</link></variable>"
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN108F5\n"
+"move_dragdrop.xhp\n"
+"par_id2760093\n"
"help.text"
-msgid "You can define which range of cells on a spreadsheet to print."
-msgstr "Hammangaa maadheelee kam akka wardii keessatti maxxansitu qindeessuu dandeessa."
+msgid "When you drag-and-drop a selection of cells on a Calc sheet, the cells normally overwrite the existing cells in the area where you drop. This is the normal <emph>overwrite mode</emph>."
+msgstr "Yeroo filannoo man'eelee wardii Calc irratti harkistee-keessu, man'eeleen bal'ina keessa buustu keessatti man'eelee jiran durtiin ni irrabu. Kun <emph>haalata irrabuu</emph> baratamaa dha."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN108FB\n"
+"move_dragdrop.xhp\n"
+"par_id9527268\n"
"help.text"
-msgid "The cells on the sheet that are not part of the defined print range are not printed or exported. Sheets without a defined print range are not printed and not exported to a PDF file, unless the document uses the Excel file format."
-msgstr "Maadheeleen wardii irraa kan qaama hammangaa maxxansaa qindaa'e hin taane hin maxxansaman ykn alergaman. Wardiileen hammanga maxxansaa qindaa'e hin qabne hin maxxansaman akkasumas gara faayilii PDF hin alergaman, yoo galmee dhangee faayilii Excel fayyadame malee."
+msgid "When you hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key while releasing the mouse button, you enter the <emph>insert mode</emph>."
+msgstr "Yeroo furtuu <switchinline select=\"sys\"><caseinline select=\"MAC\">Dirqala</caseinline><defaultinline>Alt</defaultinline></switchinline> gad qabdu hantuutee gad dhiisuudhaan, <emph>haalata saaguu</emph> galchita."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN1077A\n"
+"move_dragdrop.xhp\n"
+"par_id79653\n"
"help.text"
-msgid "For files opened in Excel format, all sheets that do not contain a defined print range are printed. The same behavior occurs when you export the Excel formatted spreadsheet to a PDF file."
-msgstr "Faayiloota dhangii Excel dhaan banamaniif, wardiileen hundi kan hammangaa maxxansuu qindaa'e hin qabne ni maxxansamu. Yeroo wardii Excel dhangeeffame gara faayilii PDF alergitus amaluma fakkaataatu mul'ata."
+msgid "In insert mode, the existing cells where you drop will be shifted to the right or to the bottom, and the dropped cells are inserted into the now empty positions without overwriting."
+msgstr "Haalata saaguu keessatti, man'eeleen jiran bakka itti buuftu gara mirgaatti ykn gadiitti dhiibamu, akkasumas man'eeleen buufaman qubannoo amma duwwaa keessatti osoo hin irrabin saagamu."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN108FE\n"
+"move_dragdrop.xhp\n"
+"par_id8676717\n"
"help.text"
-msgid "To Define a Print Range"
-msgstr "Hammangaa Maxxansaa Qindeessuu"
+msgid "The surrounding box of the moved cells looks different in insert mode."
+msgstr "Sanduuqni naannoo man'eelee deemsifamanii haalata saaguu keessatti adda fakkaata."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10905\n"
+"move_dragdrop.xhp\n"
+"par_id3968932\n"
"help.text"
-msgid "Select the cells that you want to print."
-msgstr "Maadheelee maxxansuu barbaaddu filadhu."
+msgid "In overwrite mode you see all four borders around the selected area. In insert mode you see only the left border when target cells will be shifted to the right. You see only the upper border when target cells will be shifted down."
+msgstr "Haalata irrabuu keessatti handaarota naannoo bal'ina filatamee afran mara argita. Haalata saaguu keessatti handaara bitaa qofa yeroo man'eeleen galtee gara mirgaatti dhiibaman argita. Yeroo man'eeleen galtee gad dhiibaman handaara gubbaa qofa argita."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10909\n"
+"move_dragdrop.xhp\n"
+"par_id7399517\n"
"help.text"
-msgid "Choose <emph>Format - Print Ranges - Define</emph>."
-msgstr "<emph>Dhangii - Hammangaawwan Maxxansaa - Qindeessi</emph> filadhu."
+msgid "Whether the target area will be shifted to the right or to the bottom depends on the distance between source and target cells, if you move within the same sheet. It depends on the number of horizontal or vertical cells in the moved area, if you move to a different sheet."
+msgstr "Akka bal'inni galtee gara mirgaatti ykn gara jalaatti maqu fageenya maadheelee maddaa fi galtee jidduu jiru irratti hundaa'a, yoo wardii tokko keessa deemsifte. Lakkoofsa maadheelee dalgaa ykn olee bal'ina deemsaa keessaa irratti hundaa'a, yoo gara wardii biraatti deemsifte."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10910\n"
+"move_dragdrop.xhp\n"
+"par_id8040406\n"
"help.text"
-msgid "To Add Cells to a Print Range"
-msgstr "Maadheelee gara Hammangaa Maxxansaatti Dabaluu"
+msgid "If you move cells in insert mode within the same row (only horizontally), then after insertion of the cells, all cells will be shifted to the left to fill the source area."
+msgstr "Yoo maadheelee haalata saaguu keessaa gara tarree tokko keessaatti deemsifte(dalga qofa), achiin saaga maadheelee booda, maadheeleen hundi bal'ina maddaa guutuuf gara bitaatti maqu."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10917\n"
+"move_dragdrop.xhp\n"
+"par_id2586748\n"
"help.text"
-msgid "Select the cells that you want to add to the existing print range."
-msgstr "Maadheelee kan gara hammangaa maxxansaa jiranitti dabaluu barbaaddu filadhu."
+msgid "In both modes, you can hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key, or <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift keys while you release the mouse button to insert a copy or a link, respectively."
+msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN1091B\n"
+"move_dragdrop.xhp\n"
+"par_id5814081\n"
"help.text"
-msgid "Choose <emph>Format - Print Ranges - Add</emph>."
-msgstr "<emph>Dhangii - Fuulaa</emph> fili."
+msgid "Keys pressed while releasing the mouse button"
+msgstr "Furtuuwwan yeroo qabduun hantuutee gad dhiisamu tuqaman"
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10922\n"
+"move_dragdrop.xhp\n"
+"par_id6581316\n"
"help.text"
-msgid "To Clear a Print Range"
-msgstr "Hammangaa Maxxansaa Qulqulleessuu"
+msgid "Result"
+msgstr "Bu'aa"
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10929\n"
+"move_dragdrop.xhp\n"
+"par_id9906613\n"
"help.text"
-msgid "Choose <emph>Format - Print Ranges - Remove</emph>."
-msgstr "<emph>Dhangii - Hammangaawwan Maxxansaa - Haqi</emph> filadhu."
+msgid "No key"
+msgstr "Furtuu Homaa"
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10953\n"
+"move_dragdrop.xhp\n"
+"par_id2815637\n"
"help.text"
-msgid "Using the Page Break Preview to Edit Print Ranges"
-msgstr "Hammangaawwan Maxxansaa Gulaaluuf Durargii Cita Fuulaa Fayyadamuu"
+msgid "Cells are moved and overwrite the cells in the target area. Source cells are emptied."
+msgstr "Maadheeleen deemaniitu maadheelee bal'ina galtee keessaa irrabu. Maadheeleen maddaa duwwaa ta'u."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN1093E\n"
+"move_dragdrop.xhp\n"
+"par_id6161687\n"
"help.text"
-msgid "In the <emph>Page Break Preview</emph>, print ranges as well as page break regions are outlined by a blue border and contain a centered page number in gray. Nonprinting areas have a gray background."
-msgstr "<emph>Durargii Cita Fuulaa</emph> keessatti, hammangaawwan maxxansaa akkasumas kutaaleen cita fuulaa handaara cuquliisaan tooreffamanii lakkoofsa fuulaa halluu daalachaa gidduutti qabatu."
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key"
+msgstr "Furtuuwwan <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift"
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_id3153143\n"
-"8\n"
+"move_dragdrop.xhp\n"
+"par_id4278389\n"
"help.text"
-msgid "To define a new page break region, drag the border to a new location. When you define a new page break region, an automatic page break is replaced by a manual page break."
-msgstr "Kutaa cita fuulaa haaraa qindeessuuf, handaara gara argama haaraatti harkisi. Yeroo kutaa cita fuulaa haaraa qindeessitu, citni fuulaa ufmaa cita fuulaa harkaatiin bakka bu'a."
+msgid "Cells are copied and overwrite the cells in the target area. Source cells stay as they are."
+msgstr "Maadheeleen garagalchamaniitu maadheelee bal'ina galtee keessaa irrabu. Maadheeleen maddaa akkuma duraatti hafu."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10930\n"
+"move_dragdrop.xhp\n"
+"par_id2805566\n"
"help.text"
-msgid "To View and Edit Print Ranges"
-msgstr "Hammangaawwan Maxxansaa Arguu fi Gulaaluu"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift keys"
+msgstr "Furtuuwwan <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift"
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10937\n"
+"move_dragdrop.xhp\n"
+"par_id5369121\n"
"help.text"
-msgid "Choose <emph>View - Page Break Preview</emph>."
-msgstr "<emph>Argi - Durargii Cita Fuulaa</emph> fili."
+msgid "Links to the source cells are inserted and overwrite the cells in the target area. Source cells stay as they are."
+msgstr "Geessituuwwan gara maadheelee maddaa saagamaniitu maadheelee bal'ina galtee keessaa irrabu. Maadheeleen maddaa akkuma duraatti hafu."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN1082A\n"
+"move_dragdrop.xhp\n"
+"par_id9518723\n"
"help.text"
-msgid "To change the default zoom factor of the <emph>Page Break Preview</emph>, double click the percentage value on the <emph>Status</emph> bar, and select a new zoom factor."
-msgstr "Lakkoofsa guddisuu durtuu <emph>Durargii Cita Fuulaa</emph> jijjiiruuf, gatii persentii kabala <emph>Haala</emph> irra jiru lamcuqaasiitii, lakkoofsa guddisuu haaraa filadhu."
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key"
+msgstr "Furtuu <switchinline select=\"sys\"><caseinline select=\"MAC\">Dirqala</caseinline><defaultinline>Alt</defaultinline></switchinline>"
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10836\n"
+"move_dragdrop.xhp\n"
+"par_id2926419\n"
"help.text"
-msgid "Edit the print range."
-msgstr "Hammangaa maxxansuu gulaali"
+msgid "Cells are moved and shift the cells in the target area to the right or to the bottom. Source cells are emptied, except if you move within the same rows on the same sheet."
+msgstr "Man'eeleen deemaniitu man'eelee bal'ina galtee keessaa gara mirgaatti ykn gadiitti dhiibu. Man'eeleen maddaa, yoo tarreewwan tokko keessa wardii tokko irratti deemsiste malee duwwaa ta'u."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10944\n"
+"move_dragdrop.xhp\n"
+"par_id4021423\n"
"help.text"
-msgid "To change the size of a print range, drag a border of the range to a new location."
-msgstr "Hanga hammangaa maxxansaa jijjiiruuf, hammangaa handaaraa gara bakka haaraatti harkisi."
+msgid "If you move within the same rows on the same sheet, the cells in the target area shift to the right, and then the whole row shifts to fill the source area."
+msgstr "Yoo tarree tokko keessatti wardii tokko irratti deemsisuu barbaadde, maadheeleen bal'ina galtee keessaa gara mirgaatti maqu, achiin tarreen guutuun bal'ina maddaa guutuuf maqu."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_id3151075\n"
-"12\n"
+"move_dragdrop.xhp\n"
+"par_id2783898\n"
"help.text"
-msgid "To delete a manual page break that is contained in a print range, drag the border of the page break outside of the print range."
-msgstr "Cita fuulaa harkaa kan hammangaa maxxansaa keessaa balleessuuf, handaara cita fuulaa ala hammangaa maxxansaatti harkisi."
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option+Command </caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline> keys"
+msgstr "Furtuuwwan <switchinline select=\"sys\"><caseinline select=\"MAC\">Dirqala+Ajaja</caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline>+Shift"
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10948\n"
+"move_dragdrop.xhp\n"
+"par_id2785119\n"
"help.text"
-msgid "To clear a print range, drag a border of the range onto the opposite border of the range."
-msgstr "Hammangaa maxxansaa qulqulleessuuf, handaara hammangaa gara gubbaa handaara hammangaa faallaatti harkisi."
+msgid "Cells are copied and shift the cells in the target area to the right or to the bottom. Source cells stay as they are."
+msgstr "Man'eeleen garagalchamamaniitu man'eelee bal'ina galtee keessaa gara mirgaatti ykn gadiitti dhiibu.Man'eeleen maddaa akkuma duraatti hafu."
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10862\n"
+"move_dragdrop.xhp\n"
+"par_id584124\n"
"help.text"
-msgid "To exit the <emph>Page Break Preview</emph>, choose <emph>View - Normal</emph>."
-msgstr "<emph>Durargii Cita Fuulaa</emph> dhaamsuuf, <emph>Argi - Baratamaa</emph> filadhu."
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option+Command</caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline>+Shift keys"
+msgstr "Furtuuwwan <switchinline select=\"sys\"><caseinline select=\"MAC\">Dirqala+Ajaja</caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline>+Shift"
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN109CF\n"
+"move_dragdrop.xhp\n"
+"par_id5590990\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05080300.xhp\">Editing Print Ranges</link>"
-msgstr "<link href=\"text/scalc/01/05080300.xhp\">Hammangaawwan Maxxansaa Gulaaluu</link>"
+msgid "Links to the source cells are inserted and shift the cells in the target area to the right or to the bottom. Source cells stay as they are."
+msgstr "Geessituuwwan gara maadheelee maddaa saagamaniitu maadheelee bal'ina galtee keessaa gara mirgaatti ykn gadiitti dhiibu. Maadheeleen maddaa akkuma duraatti hafu."
-#: borders.xhp
+#: multi_tables.xhp
msgctxt ""
-"borders.xhp\n"
+"multi_tables.xhp\n"
"tit\n"
"help.text"
-msgid "User Defined Borders in Cells"
-msgstr "Handaarawwan man'ee keessatti fayyadamaan qindaa'an"
+msgid "Navigating Through Sheets Tabs"
+msgstr "Caancaloota Wardiilee keessa Daddarbuu"
-#: borders.xhp
+#: multi_tables.xhp
msgctxt ""
-"borders.xhp\n"
-"bm_id3457441\n"
+"multi_tables.xhp\n"
+"bm_id3150769\n"
"help.text"
-msgid "<bookmark_value>cells;borders</bookmark_value> <bookmark_value>line arrangements with cells</bookmark_value> <bookmark_value>borders;cells</bookmark_value>"
-msgstr "<bookmark_value>man'eelee;handaarawwan</bookmark_value> <bookmark_value>sirreessa sararaaa;man'eelee</bookmark_value> <bookmark_value>handaarawwan;man'eelee</bookmark_value>"
+msgid "<bookmark_value>sheets; showing multiple</bookmark_value><bookmark_value>sheet tabs;using</bookmark_value><bookmark_value>views;multiple sheets</bookmark_value>"
+msgstr "<bookmark_value>wardiilee; baay'ee arguu</bookmark_value><bookmark_value>caancaloota wardii;fayyadamuu</bookmark_value><bookmark_value>argiiwwan;wardiilee baay'ee</bookmark_value>"
-#: borders.xhp
+#: multi_tables.xhp
msgctxt ""
-"borders.xhp\n"
-"hd_id4544816\n"
+"multi_tables.xhp\n"
+"hd_id3150769\n"
+"4\n"
"help.text"
-msgid "<variable id=\"borders\"><link href=\"text/scalc/guide/borders.xhp\">User Defined Borders in Cells</link></variable>"
-msgstr "<variable id=\"borders\"><link href=\"text/scalc/guide/borders.xhp\">Handaarawwan maadhee keessatti fayyadamaan qindaa'an</link></variable>"
+msgid "<variable id=\"multi_tables\"><link href=\"text/scalc/guide/multi_tables.xhp\" name=\"Navigating Through Sheet Tabs\">Navigating Through Sheet Tabs</link> </variable>"
+msgstr "<variable id=\"multi_tables\"><link href=\"text/scalc/guide/multi_tables.xhp\" name=\"Navigating Through Sheet Tabs\">Caancaloota Wardiilee Keessa Naanna'uu</link> </variable>"
-#: borders.xhp
+#: multi_tables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id2320017\n"
+"multi_tables.xhp\n"
+"par_id3153771\n"
+"3\n"
"help.text"
-msgid "You can apply a variety of different lines to selected cells."
-msgstr "Gosa sararoota addaa addaa man'eelee filatamanitti raawwachuu ni dandeessa."
+msgid "By default $[officename] displays three sheets \"Sheet1\" to \"Sheet3\", in each new spreadsheet. You can switch between sheets in a spreadsheet using the sheet tabs at the bottom of the screen."
+msgstr "Durtiidhaan $[officename] wardiilee sadii \"Wardii1\" hanga \"Wardii3\", tokkoon tokkoo wardii haaraa keessatti agarsiisa. Caancaloota wardii jala argii irra jiru fayyadamuudhaan wardiilee tokko irraa gara biraatti taruu dandeessa."
-#: borders.xhp
+#: multi_tables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8055665\n"
+"multi_tables.xhp\n"
+"par_idN106AF\n"
"help.text"
-msgid "Select the cell or a block of cells."
-msgstr "Maadhee yookiin garee maadhee filadhu."
+msgid "<image id=\"img_id4829822\" src=\"res/helpimg/sheettabs.png\" width=\"3.3335inch\" height=\"0.7638inch\" localize=\"true\"><alt id=\"alt_id4829822\">Sheet Tabs</alt></image>"
+msgstr "<image id=\"img_id4829822\" src=\"res/helpimg/sheettabs.png\" width=\"3.3335inch\" height=\"0.7638inch\" localize=\"true\"><alt id=\"alt_id4829822\">Caancaloota Wardii</alt></image>"
-#: borders.xhp
+#: multi_tables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id9181188\n"
+"multi_tables.xhp\n"
+"par_id3153144\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Cells</item>."
-msgstr "<item type=\"menuitem\">Dhangii - man'eelee</item> fili."
+msgid "<image id=\"img_id3156441\" src=\"res/helpimg/calcnav.png\" width=\"0.6563inch\" height=\"0.1457inch\"><alt id=\"alt_id3156441\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156441\" src=\"res/helpimg/calcnav.png\" width=\"0.6563inch\" height=\"0.1457inch\"><alt id=\"alt_id3156441\">Sajoo</alt></image>"
-#: borders.xhp
+#: multi_tables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id9947508\n"
+"multi_tables.xhp\n"
+"par_id3147396\n"
+"5\n"
"help.text"
-msgid "In the dialog, click the <emph>Borders</emph> tab."
-msgstr "Qaaqa keessatti, caancala <emph>Handaarawwan</emph> cuqaasi."
+msgid "Use the navigation buttons to display all the sheets belonging to your document. Clicking the button on the far left or the far right displays, respectively, the first or last sheet tab. The middle buttons allow the user to scroll forward and backward through all sheet tabs. To display the sheet itself click on the sheet tab."
+msgstr "Wardiilee galmeen kee qabu mara mul'isuuf qabduuwwan naannessaatti fayyadami. Qabduu qarqara bitaa ykn mirgaa irratti cuqaasuun, duraaduubaan, caancala wardii jalqabaa ykn dhumaa mul'isa. Qabduuwwan jidduu fayyadamaa akka fuulduraa fi duubatti caancaloota wardii hunda keessa marfatu dandeessisu."
-#: borders.xhp
+#: multi_tables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id7907956\n"
+"multi_tables.xhp\n"
+"par_id3149379\n"
+"6\n"
"help.text"
-msgid "Choose the border options you want to apply and click OK."
-msgstr "Dirqaalaalee handaaraa raawwachuuf barbaaddu filiitii TOLE cuqaasi."
+msgid "If there is insufficient space to display all the sheet tabs, you can increase it by pointing to the separator between the scrollbar and the sheet tabs, pressing the mouse button and, keeping the mouse button pressed, dragging to the right. In doing so you will be sharing the available space between the sheet tabs and horizontal scrollbar."
+msgstr "Yoo caancaloota wardii mara mul'isuuf bakkeen gahaan hin jirre, gara addaan baasaa jidduu kabala marfataa fi caancaloota wardii qubachiisuun, qabduu hantuutee tuquunii fi, qabduu hantuutee gad qabanii turuun, gara mirgaatti harkisuun dabaluu dandeessa."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id1342204\n"
+"multioperation.xhp\n"
+"tit\n"
"help.text"
-msgid "The options in the <emph>Line arrangement</emph> area can be used to apply multiple border styles."
-msgstr "Dirqaalaaleen bal'ina <emph>sirreessa sararaa</emph> keessaa haalata handaaraa baay'ee raawwachuu danda'u."
+msgid "Applying Multiple Operations"
+msgstr "Dalagaalee baay'ee raawwachuu"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"hd_id4454481\n"
+"multioperation.xhp\n"
+"bm_id3147559\n"
"help.text"
-msgid "Selection of cells"
-msgstr "Filannoo man'eelee"
+msgid "<bookmark_value>multiple operations</bookmark_value><bookmark_value>what if operations;two variables</bookmark_value><bookmark_value>tables; multiple operations in</bookmark_value><bookmark_value>data tables; multiple operations in</bookmark_value><bookmark_value>cross-classified tables</bookmark_value>"
+msgstr "<bookmark_value>qooyyaboota baay'ee</bookmark_value><bookmark_value>qooyyaboota yoo-ta'e-maali;jijjiiramoota lama</bookmark_value><bookmark_value>gabateewwan; keessatti qooyyaboota baay'ee</bookmark_value><bookmark_value>gabateewwan deetaa; keessatti qooyyaboota baay'ee</bookmark_value><bookmark_value>gabateewwan qaxxaamura-ramadaman</bookmark_value>"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id7251503\n"
+"multioperation.xhp\n"
+"hd_id3147559\n"
+"5\n"
"help.text"
-msgid "Depending on the selection of cells, the area looks different."
-msgstr "Filannoo man'eelee irratti hundaa'uudhaan, bal'inni adda adda ta'a."
+msgid "<variable id=\"multioperation\"><link href=\"text/scalc/guide/multioperation.xhp\" name=\"Applying Multiple Operations\">Applying Multiple Operations</link></variable>"
+msgstr "<variable id=\"multioperation\"><link href=\"text/scalc/guide/multioperation.xhp\" name=\"Applying Multiple Operations\">Dalagaalee baay'ee raawwachuu</link></variable>"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8716696\n"
+"multioperation.xhp\n"
+"hd_id3145171\n"
+"1\n"
"help.text"
-msgid "Selection"
-msgstr "Filannoo"
+msgid "Multiple Operations in Columns or Rows"
+msgstr "Dalagaalee baay'ee sarjaawwanii fi tarreewwan keessatti"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id4677877\n"
+"multioperation.xhp\n"
+"par_id4123966\n"
"help.text"
-msgid "Line arrangement area"
-msgstr "Bal'ina sirreessa sararaa"
+msgid "The <item type=\"menuitem\">Data - Multiple Operations</item> command provides a planning tool for \"what if\" questions. In your spreadsheet, you enter a formula to calculate a result from values that are stored in other cells. Then, you set up a cell range where you enter some fixed values, and the Multiple Operations command will calculate the results depending on the formula."
+msgstr "Ajajani <item type=\"menuitem\">Deetaa - Dalagaalee baay'ee </item>gaaffiilee \"yoo maali\" dhaaf meeshaa karooraa kenna.Wardii kee keessatti,bu'aa gatiiwwan kan man'eelee biroo keessatti kuufaman irraa shallaguuf foormulaa galchita.Achiin,hammangaa bakka gatiiwwan murtaa'oo galchitu qindeessita,ajajni dalagaalee baay'ee bu'aalee foormulaa irratti hundaa'uudhaan shallaga."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id807824\n"
+"multioperation.xhp\n"
+"par_id3156424\n"
+"2\n"
"help.text"
-msgid "One cell"
-msgstr "Man'ee tokko"
+msgid "In the <emph>Formulas</emph> field, enter the cell reference to the formula that applies to the data range. In the <emph>Column input cell/Row input cell</emph> field, enter the cell reference to the corresponding cell that is part of the formula. This can be explained best by examples:"
+msgstr "Dirree <emph>Foormulaa</emph> keessatti,wabeeffata man'ee gara foormulaa kan hammangaa deetaa irratti raawwatu galchi.Dirree <emph>Man'ee naqa sarjaa/Man'ee naqa tarree</emph>keessatti,wabeeffata man'ee gara gita man'ee kan qaama foormulaa ta'etti galchi.Kun caalaatti fakkeenyaan ibsamuu danda'a."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8473464\n"
+"multioperation.xhp\n"
+"hd_id3159153\n"
+"7\n"
"help.text"
-msgid "<image id=\"img_id1737113\" src=\"res/helpimg/border_ca_1.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1737113\">borders with one cell selected</alt></image>"
-msgstr "<image id=\"img_id1737113\" src=\"res/helpimg/border_ca_1.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1737113\">handaarawwan kan man'een tokko filatame</alt></image>"
+msgid "Examples"
+msgstr "Fakkeenyota"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id3509933\n"
+"multioperation.xhp\n"
+"par_id3153189\n"
+"8\n"
"help.text"
-msgid "Cells in a column"
-msgstr "Maadheelee sarjaa keessaa"
+msgid "You produce toys which you sell for $10 each. Each toy costs $2 to make, in addition to which you have fixed costs of $10,000 per year. How much profit will you make in a year if you sell a particular number of toys?"
+msgstr "Tooyii kan tokkoo tokkoo isaa $10 tiin gurgurtu$2 qopheessita. Tokkoon tokkoo tooyii hojjechuuf $2 baasa, gatii dhaabbataa waggaatti $10,000 dabalataan qabdu wajjin. Yoo tooyii lakkoofsa murtaa'aa gurgurte waggaa tokkotti bu'aa hangam argatta?"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id6635639\n"
+"multioperation.xhp\n"
+"par_id6478774\n"
"help.text"
-msgid "<image id=\"img_id1680959\" src=\"res/helpimg/border_ca_2.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1680959\">borders with a column selected</alt></image>"
-msgstr "<image id=\"img_id1680959\" src=\"res/helpimg/border_ca_2.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1680959\">handaarawwan kan sarjaan filatame</alt></image>"
+msgid "<image id=\"img_id1621753\" src=\"res/helpimg/what-if.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id1621753\">what-if sheet area</alt></image>"
+msgstr "<image id=\"img_id1621753\" src=\"res/helpimg/what-if.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id1621753\">bal'ina wardii yoo-maali</alt></image>"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8073366\n"
+"multioperation.xhp\n"
+"hd_id3145239\n"
+"41\n"
"help.text"
-msgid "Cells in a row"
-msgstr "Maadheelee tarree keessaa"
+msgid "Calculating With One Formula and One Variable"
+msgstr "Foormulaa tokkoo fi jijjiiramaa tokkoon shallaguu"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id6054567\n"
+"multioperation.xhp\n"
+"par_id3146888\n"
+"42\n"
"help.text"
-msgid "<image id=\"img_id9623096\" src=\"res/helpimg/border_ca_3.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id9623096\">borders with a row selected</alt></image>"
-msgstr "<image id=\"img_id9623096\" src=\"res/helpimg/border_ca_3.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id9623096\">handaarawwan kan tarreen filatame</alt></image>"
+msgid "To calculate the profit, first enter any number as the quantity (items sold) - in this example 2000. The profit is found from the formula Profit=Quantity * (Selling price - Direct costs) - Fixed costs. Enter this formula in B5."
+msgstr "Bu'aa shallaguuf,jalqaba lakkoofsa kamiyyuu akka baay'inaatti(waanta gurgurame) galchi - fakkeenya kana keessatti 2000.Bu'aan foormulaa Bu'aa=Baay'ina * (Gatii gurgurtaa - gatiiwwan kallachaa) - gatiiwwan dhaabbataa irraa argama.Foormula kana B5 keessatti galchi."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id466322\n"
+"multioperation.xhp\n"
+"par_id3157875\n"
+"43\n"
"help.text"
-msgid "Cells in a block of 2x2 or more"
-msgstr "Madheelee garee 2x2 yookiin ol"
+msgid "In column D enter given annual sales, one below the other; for example, 500 to 5000, in steps of 500."
+msgstr "Sarjaa D keessatti gurgurtaa waggaa kenname,tokko jala tokkootti galchi;fakkeenyaaf,500 gara 5000,ejjattoowwan 500 keessatti"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id4511551\n"
+"multioperation.xhp\n"
+"par_id3159115\n"
+"44\n"
"help.text"
-msgid "<image id=\"img_id8139591\" src=\"res/helpimg/border_ca_4.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id8139591\">borders with a block selected</alt></image>"
-msgstr "<image id=\"img_id8139591\" src=\"res/helpimg/border_ca_4.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id8139591\">handaarawwan kan gareen filatame</alt></image>"
+msgid "Select the range D2:E11, and thus the values in column D and the empty cells alongside in column E."
+msgstr "Hammangaa D2:E11,akkaumas gatiiwwan sarjaa D fi man'eelee duwwaa bukkee sarjaa E keessaa filadhu."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id5383465\n"
+"multioperation.xhp\n"
+"par_id3149723\n"
+"45\n"
"help.text"
-msgid "You cannot apply borders to multiple selections."
-msgstr "Handaarawwan filannoowwan baay'eef raawwachuu hin dandeessu."
+msgid "Choose <emph>Data - Multiple operations</emph>."
+msgstr "<emph>Deetaa - Dalagaalee baay'ee</emph>."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"hd_id7790154\n"
+"multioperation.xhp\n"
+"par_id3149149\n"
+"46\n"
"help.text"
-msgid "Default Settings"
-msgstr "Qindaa'inoota Durtii"
+msgid "With the cursor in the <emph>Formulas </emph>field, click cell B5."
+msgstr "Qaree dirree <emph>Foormulaawwan </emph>keessa kaa'uun,man'ee B5 cuqaasi."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id2918485\n"
+"multioperation.xhp\n"
+"par_id3149355\n"
+"47\n"
"help.text"
-msgid "Click one of the <emph>Default</emph> icons to set or reset multiple borders."
-msgstr "Handaarawwan baay'ee qindeessuuf yookiin lamuu qindeessuuf sajoowwan <emph>Durtii</emph> keessaa tokko cuqaasi."
+msgid "Set the cursor in the <emph>Column input cell</emph> field and click cell B4. This means that B4, the quantity, is the variable in the formula, which is replaced by the selected column values."
+msgstr "Qaree dirree <emph>man'ee naqa sarjaa</emph> keessa kaa'iitii man'ee B4 cuqaasi.Kana jechuun B4,bal'inni,jijjiiramaa foormulaa keessatti gatiiwwan sarjaa filatamaniin bakka bu'u dha."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id1836909\n"
+"multioperation.xhp\n"
+"par_id3149009\n"
+"48\n"
"help.text"
-msgid "The thin gray lines inside an icon show the borders that will be reset or cleared."
-msgstr "Sararootni dalachi qal'oon sajoo keessaa handaarawwan kan qindaa'an yookiin qulqullaa'an agarsiisu."
+msgid "Close the dialog with <emph>OK</emph>. You see the profits for the different quantities in column E."
+msgstr "Qaaqa <emph>TOLE</emph> dhaan cufi.Bu'aalee bal'ina garaagaraa sarjaa E keessatti argita."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id5212561\n"
+"multioperation.xhp\n"
+"hd_id3148725\n"
+"49\n"
"help.text"
-msgid "The dark lines inside an icon show the lines that will be set using the selected line style and color."
-msgstr "Sararootni dukkanaa'oon sajoo keessaa sararoota kan haalataa fi halluu filatamanitti fayyadamuudhaan qindaa'an yookiin qulqullaa'an garsiisu."
+msgid "Calculating with Several Formulas Simultaneously"
+msgstr "Foormulaawwan baay'eedhaan altokkotti shallaguu"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id4818872\n"
+"multioperation.xhp\n"
+"par_id3146880\n"
+"50\n"
"help.text"
-msgid "The thick gray lines inside an icon show the lines that will not be changed."
-msgstr "Sararootni daalachi furdoon sajoo keessaa sararoota hin jijjiiramne garsiisu."
+msgid "Delete column E."
+msgstr "Sarjaa E haqi."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"hd_id8989226\n"
+"multioperation.xhp\n"
+"par_id3154675\n"
+"51\n"
"help.text"
-msgid "Examples"
-msgstr "Fakkeenyota"
+msgid "Enter the following formula in C5: = B5 / B4. You are now calculating the annual profit per item sold."
+msgstr "Foormulaa armaan gadii C5: = B5 / B4 keessatti galchi.Amma bu'aa waggaa tokkoon tokkoo waanta gurguramee shallagaa jirta."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id622577\n"
+"multioperation.xhp\n"
+"par_id3148885\n"
+"52\n"
"help.text"
-msgid "Select a block of about 8x8 cells, then choose <emph>Format - Cells - Borders</emph>."
-msgstr "Garee man'ee hanga 8x8 filadhu, achiin <emph>Dhangii - Man'eelee - Handaarawwan</emph> fili."
+msgid "Select the range D2:F11, thus three columns."
+msgstr "Hammangaa D2:F11 filadhu, egasuu sarjaawwan sadii"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8119754\n"
+"multioperation.xhp\n"
+"par_id3147474\n"
+"53\n"
"help.text"
-msgid "<image id=\"img_id7261268\" src=\"res/helpimg/border_ca_5.png\" width=\"1.0937in\" height=\"0.2189in\"><alt id=\"alt_id7261268\">default icon row of Borders tab page</alt></image>"
-msgstr "<image id=\"img_id7261268\" src=\"res/helpimg/border_ca_5.png\" width=\"1.0937in\" height=\"0.2189in\"><alt id=\"alt_id7261268\">tarree sajoo durtii kan fuula caancala handaarawwanii</alt></image>"
+msgid "Choose <emph>Data - Multiple Operations</emph>."
+msgstr "<emph>Deetaa- Dalagaalee baay'ee </emph> filadhu."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8964201\n"
+"multioperation.xhp\n"
+"par_id3154846\n"
+"54\n"
"help.text"
-msgid "Click the left icon to clear all lines. This removes all outer borders, all inner lines, and all diagonal lines."
-msgstr "Sararoota hundaa qulqulleessuuf sajoo bitaa cuqaasi.Kun handaarawwan alaa hunda,sararoota keessaa hunda, akkasumas sararoota shaffaxaa hunda balleessa."
+msgid "With the cursor in the <emph>Formulas</emph> field, select cells B5 thru C5."
+msgstr "Qaree dirree <emph>Foormulaawwan</emph>keessa jiruun,man'eelee B5 hanga C5 filadhu."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id6048463\n"
+"multioperation.xhp\n"
+"par_id3153931\n"
+"55\n"
"help.text"
-msgid "Click the second icon from the left to set an outer border and to remove all other lines."
-msgstr "Handaara alaa qindeessuu fi sararoota biroo hunda balleessuuf bitaa irraa sajoo isa lammaffaa cuqaasi."
+msgid "Set the cursor in the <emph>Column input cell</emph> field and click cell B4."
+msgstr "Qaree dirree <emph>man'ee naqa sarjaa</emph>keessa kaa'iitii man'ee B4 cuqaasi."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id1495406\n"
+"multioperation.xhp\n"
+"par_id3150862\n"
+"56\n"
"help.text"
-msgid "Click the rightmost icon to set an outer border. The inner lines are not changed, except the diagonal lines, which will be removed."
-msgstr "Handaara alaa qindeessuuf mirga dhuma irraa sajoo cuqaasi.Sararoota shaffaxaa, kan balleeffaman, malee sararootni keessaa hin jijjiiraman."
+msgid "Close the dialog with <emph>OK</emph>. You will now see the profits in column E and the annual profit per item in column F."
+msgstr "Qaaqa <emph>TOLE</emph> dhaan cufi.Amma bu'aalee sarjaa E keessaattii fi bu'aa waggaa waanta tokkoo sarjaa F keessatti agarta."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id9269386\n"
+"multioperation.xhp\n"
+"hd_id3146139\n"
+"3\n"
"help.text"
-msgid "Now you can continue to see which lines the other icons will set or remove."
-msgstr "Amma sararoota kam akka sajoowwan biroo qindeessan yookiin balleessan itti fuftee arguu dandeessa."
+msgid "Multiple Operations Across Rows and Columns"
+msgstr "Dalagaalee Baay'ee Tarreewwanii fi Sarjaalee Keessaa"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"hd_id3593554\n"
+"multioperation.xhp\n"
+"par_id3148584\n"
+"4\n"
"help.text"
-msgid "User Defined Settings"
-msgstr "Qindaa'inoota Fayyadamaan Ibsaman"
+msgid "<item type=\"productname\">%PRODUCTNAME</item> allows you to carry out joint multiple operations for columns and rows in so-called cross-tables. The formula cell has to refer to both the data range arranged in rows and the one arranged in columns. Select the range defined by both data ranges and call the multiple operation dialog. Enter the reference to the formula in the <emph>Formulas</emph> field. The <emph>Row input cell</emph> and the <emph>Column input cell</emph> fields are used to enter the reference to the corresponding cells of the formula."
+msgstr "<item type=\"productname\">%PRODUCTNAME</item> dalagaalee walii baay'ee sarjaalee fi tarreewwan kan gabatee-cehaa jedhaman keessatti dalaguuf si dandeessisa. Maadheen foormulaa hammangaa deetaa tarreewwanii fi sarjaalee keessatti qindaa'an lachuu wabeeffachuu qaba. Hammangaa deetaan lamaaniin qindaa'e filadhuutii qaaqa dalagaa baay'ee waami. Wabii gara foormulaa dirree <emph>Foormulaa</emph> keessaatti galchi. Dirreewwan <emph>Maadhee naqa tarree</emph> fi the <emph>Maadhee naqa sarjaa</emph> wabii gara maadheelee foormulaa isaaniitti galchuuf fayyadu."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id4018066\n"
+"multioperation.xhp\n"
+"hd_id3149949\n"
+"57\n"
"help.text"
-msgid "In the <emph>User defined</emph> area, you can click to set or remove individual lines. The preview shows lines in three different states."
-msgstr "Bal'ina <emph>Fayyadamaan qindaa'e</emph> keessatti,sararootaa dhuunfaa qindeessuuf yookiin balleessuuf cuqaasuu dandeessa."
+msgid "Calculating with Two Variables"
+msgstr "Jijjiiramoota Lamaan Shallaguu"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8004699\n"
+"multioperation.xhp\n"
+"par_id3154808\n"
+"58\n"
"help.text"
-msgid "Repeatedly click an edge or a corner to switch through the three different states."
-msgstr "Haala adda addaa sadii keessa walitti ceesisuuf deddeebisiitii qarree yookiin xiyyoo cuqaasi."
+msgid "Consider columns A and B of the sample table above. You now want to vary not just the quantity produced annually, but also the selling price, and you are interested in the profit in each case."
+msgstr "Sarjaa A fi B kan gabatee olii fudhu. Amma baay'ina waggaan oomishamu qofa jijjiiruu hin barbaaddu, gatii gurgurtaas malee, kanaafuu bu'aa irratti xiyyeeffachuu barbaadda."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8037659\n"
+"multioperation.xhp\n"
+"par_id3149731\n"
+"59\n"
"help.text"
-msgid "Line types"
-msgstr "Gosoota sararaa"
+msgid "Expand the table shown above. D2 thru D11 contain the numbers 500, 1000 and so on, up to 5000. In E1 through H1 enter the numbers 8, 10, 15 and 20."
+msgstr "Gabatee olii babal'isi. D2 hanaga D11 lakkoofsota 500, 1000 and kkf, hanga 5000 qabata. E1 hanga H1 lakkoofsota 8, 10, 15 fi 20 galchi."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id2305978\n"
+"multioperation.xhp\n"
+"par_id3152810\n"
+"95\n"
"help.text"
-msgid "Image"
-msgstr "Fakkii"
+msgid "Select the range D1:H11."
+msgstr "Hammangaa D1:H11 filadhu."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8716086\n"
+"multioperation.xhp\n"
+"par_id3153620\n"
+"96\n"
"help.text"
-msgid "Meaning"
-msgstr "Hiikoo"
+msgid "Choose <emph>Data - Multiple Operations</emph>."
+msgstr "<emph>Deetaa- Dalagaalee baay'ee </emph> filadhu."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id3978087\n"
+"multioperation.xhp\n"
+"par_id3149981\n"
+"97\n"
"help.text"
-msgid "A black line"
-msgstr "Sarara gurraacha"
+msgid "With the cursor in the <emph>Formulas</emph> field, click cell B5."
+msgstr "Qaree dirree <emph>Foormulaawwan </emph>keessa kaa'uun,man'ee B5 cuqaasi."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id4065065\n"
+"multioperation.xhp\n"
+"par_id3156113\n"
+"98\n"
"help.text"
-msgid "<image id=\"img_id9379863\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9379863\">solid line for user defined border</alt></image>"
-msgstr "<image id=\"img_id9379863\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9379863\">sarara jajjaboo handaarawwan fayyadamaan qindaa'aniif</alt></image>"
+msgid "Set the cursor in the <emph>Row input cell</emph> field and click cell B1. This means that B1, the selling price, is the horizontally entered variable (with the values 8, 10, 15 and 20)."
+msgstr "Qaree dirree <emph>Maadhee naqa tarree</emph> keessa kaa'iitii maadhee B1 cuqaasi. Kana jechuun B1, gatii gurgurtaa, jijjiiramaa dalga galchame dha(gatiiwwan 8, 10, 15 fi 20 wajjin)."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id6987823\n"
+"multioperation.xhp\n"
+"par_id3154049\n"
+"99\n"
"help.text"
-msgid "A black line sets the corresponding line of the selected cells. The line is shown as a dotted line when you choose the 0.05 pt line style. Double lines are shown when you select a double line style."
-msgstr "Sararri gurraachi gita sarara man'eelee filatamanii qindeessa.Sararri akka sarara tuqaatti yeroo haalata sararaa 0.05 pt filattu mul'ata.Sararootni dachaan kan mul'atan yeroo haalata dachaa filattu dha."
+msgid "Set the cursor in the <emph>Column input cell</emph> field and click in B4. This means that B4, the quantity, is the vertically entered variable."
+msgstr "Qaree dirree <emph>Maadhee naqa sarjaa</emph> keessa kaa'iitii B4 keessa cuqaasi. Kana jechuun B4, baay'ina, jijjiiramaa irraan gadee galchame dha."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id1209143\n"
+"multioperation.xhp\n"
+"par_id3149141\n"
+"100\n"
"help.text"
-msgid "A gray line"
-msgstr "Sarara daalacha"
+msgid "Close the dialog with OK. You see the profits for the different selling prices in the range E2:H11."
+msgstr "Qaaqa TOLE dhaan cufi. Bu'aawwan kan gatiiwwan gurgurtaa addaa addaa hammangaa E2:H11 keessaa argita."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id6653340\n"
+"multioperation.xhp\n"
+"par_id3155104\n"
+"101\n"
"help.text"
-msgid "<image id=\"img_id6972563\" src=\"res/helpimg/border_ca_gray.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id6972563\">gray line for user defined border</alt></image>"
-msgstr "<image id=\"img_id6972563\" src=\"res/helpimg/border_ca_gray.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id6972563\">sarara daalacha handaarawwan fayyadamaan qindaa'aniif</alt></image>"
+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\">Dalaagaalee baay'ee</link>"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id2278817\n"
+"multitables.xhp\n"
+"tit\n"
"help.text"
-msgid "A gray line is shown when the corresponding line of the selected cells will not be changed. No line will be set or removed at this position."
-msgstr "Sararri daalachi kan mul'atu yeroo gitni sarara man'eelee filatamanii hin jijjiiramne dha.Iddoo kanatti sararri homtuu hin qindaa'u yookiin balleeffamu."
+msgid "Applying Multiple Sheets"
+msgstr "Wardiilee Baay'ee Raawwachuu"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id5374919\n"
+"multitables.xhp\n"
+"bm_id3154759\n"
"help.text"
-msgid "A white line"
-msgstr "Sarara adii"
+msgid "<bookmark_value>sheets; inserting</bookmark_value> <bookmark_value>inserting; sheets</bookmark_value> <bookmark_value>sheets; selecting multiple</bookmark_value> <bookmark_value>appending sheets</bookmark_value> <bookmark_value>selecting;multiple sheets</bookmark_value> <bookmark_value>multiple sheets</bookmark_value> <bookmark_value>calculating;multiple sheets</bookmark_value>"
+msgstr "<bookmark_value>wardiilee; saaguu</bookmark_value> <bookmark_value>saaguu; wardiilee</bookmark_value> <bookmark_value>wardiilee; baay'ee filachuu</bookmark_value> <bookmark_value>ardiilee itti maxxansuu</bookmark_value> <bookmark_value>filachuu;wardiilee hedduu</bookmark_value> <bookmark_value>wardiilee hedduu</bookmark_value> <bookmark_value>shallaguu;wardiilee hedduu</bookmark_value>"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id52491\n"
+"multitables.xhp\n"
+"hd_id3154759\n"
+"9\n"
"help.text"
-msgid "<image id=\"img_id3801080\" src=\"res/helpimg/border_ca_white.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id3801080\">white line for user defined border</alt></image>"
-msgstr "<image id=\"img_id3801080\" src=\"res/helpimg/border_ca_white.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id3801080\">sarara adii handaara fayyadamaan qindaa'eef</alt></image>"
+msgid "<variable id=\"multitables\"><link href=\"text/scalc/guide/multitables.xhp\" name=\"Applying Multiple Sheets\">Applying Multiple Sheets</link></variable>"
+msgstr "<variable id=\"multitables\"><link href=\"text/scalc/guide/multitables.xhp\" name=\"Applying Multiple Sheets\">Wardiilee Baay'ee Raawwachuu</link></variable>"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id372325\n"
+"multitables.xhp\n"
+"hd_id3148576\n"
+"10\n"
"help.text"
-msgid "A white line is shown when the corresponding line of the selected cells will be removed."
-msgstr "Sararri adiin kan mul'atu yeroo gitni sarara maadheelee filatamaii balleeffamani dha."
+msgid "Inserting a Sheet"
+msgstr "Waardii Saaguu"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"hd_id7282937\n"
+"multitables.xhp\n"
+"par_id3154731\n"
+"4\n"
"help.text"
-msgid "Examples"
-msgstr "Fakkeenyota"
+msgid "Choose <item type=\"menuitem\">Insert - Sheet</item> to insert a new sheet or an existing sheet from another file."
+msgstr "Wardii haaraa ykn faayilii biraa irraa saaguuf <item type=\"menuitem\">Saagi - Wardii</item> filadhu."
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id4230780\n"
+"multitables.xhp\n"
+"par_id05092009140203598\n"
"help.text"
-msgid "Select a single cell, then choose <emph>Format - Cells - Borders</emph>."
-msgstr "Man'ee qeenxee fili,achiin <emph>Dhangii - Man'eelee - Handaarawwan</emph> filadhu."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog box where you can assign macros to sheet events.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Qaaqaa, tarree keessatti bakka ati afaan tokko ida'uu dandeessuu bana.</ahelp>"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id1712393\n"
+"multitables.xhp\n"
+"par_id05092009140203523\n"
"help.text"
-msgid "Click the lower edge to set a very thin line as a lower border. All other lines will be removed from the cell."
-msgstr "Sarara baay'ee haphii akka handaara gadiitti qindeessuuf qarree jalaa cuqaasi.Sararootni biroo hundi man'ee irraa balleeffamu."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a window where you can assign a color to the sheet tab.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Qaaqaa, tarree keessatti bakka ati afaan tokko ida'uu dandeessuu bana.</ahelp>"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id5149693\n"
+"multitables.xhp\n"
+"par_id050920091402035\n"
"help.text"
-msgid "<image id=\"img_id9467452\" src=\"res/helpimg/border_ca_6.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9467452\">setting a thin lower border</alt></image>"
-msgstr "<image id=\"img_id9467452\" src=\"res/helpimg/border_ca_6.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9467452\">handaara haphii jalaa qindeessuu</alt></image>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to select all sheets in the document.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Galmee keessatti wardiilee mara filuuf cuqaasi.</ahelp>"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id5759453\n"
+"multitables.xhp\n"
+"par_id0509200914020391\n"
"help.text"
-msgid "Choose a thicker line style and click the lower edge. This sets a thicker line as a lower border."
-msgstr "Haalata sararaa furdaa filiitii qarree jalaa cuqaasi.Kun sarara furdaa akka handaara furdaatti qindeessa."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to deselect all sheets in the document, except the current sheet.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Galmee keessatti wardiilee mara filatamaleessuuf, wardii ammaa malee.</ahelp>"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id6342051\n"
+"multitables.xhp\n"
+"hd_id3154491\n"
+"11\n"
"help.text"
-msgid "<image id=\"img_id7431562\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id7431562\">setting a thick line as a border</alt></image>"
-msgstr "<image id=\"img_id7431562\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id7431562\">sarara yabbuu akka handaaraatti qindeessuu</alt></image>"
+msgid "Selecting Multiple Sheets"
+msgstr "Wardiilee Baay'ee Filachuu"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id5775322\n"
+"multitables.xhp\n"
+"par_id3145251\n"
+"6\n"
"help.text"
-msgid "Click the second <emph>Default</emph> icon from the left to set all four borders. Then repeatedly click the lower edge until a white line is shown. This removes the lower border."
-msgstr "Handaarawwan afran hunda qindeessuuf sajoo <emph>Durtii</emph> lammaffaa bitaa irraa cuqaasi.Achiin qarree jalaa hanga sararri adii mul'atutti deddeebisiitii cuqaasi.Kun handaara jalaa balleessa."
+msgid "The sheet tab of the current sheet is always visible in white in front of the other sheet tabs. The other sheet tabs are gray when they are not selected. By clicking other sheet tabs while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> you can select multiple sheets."
+msgstr ""
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id2882778\n"
+"multitables.xhp\n"
+"par_idN106B7\n"
"help.text"
-msgid "<image id=\"img_id8155766.00000001\" src=\"res/helpimg/border_ca_8.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id8155766.00000001\">removing lower border</alt></image>"
-msgstr "<image id=\"img_id8155766.00000001\" src=\"res/helpimg/border_ca_8.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id8155766.00000001\">handaara jalaa balleessuu</alt></image>"
+msgid "You can use Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down to select multiple sheets using the keyboard."
+msgstr "Wardiilee baay'ee gabatee cuqoon filachuuf Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up ykn Page Down fayyadamuu dandeessa."
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8102053\n"
+"multitables.xhp\n"
+"hd_id3155600\n"
+"12\n"
"help.text"
-msgid "You can combine several line types and styles. The last image shows how to set thick outer borders (the thick black lines), while any diagonal lines inside the cell will not be touched (gray lines)."
-msgstr "Gosootaa fi haalata sararaa baay'ee walitti makuu dandeessa.Fakkiin dhumaa akkaataa handaarawwan alaa itti yabbiftu agarsiisu(sararoota gugurraacha yabbuu),sararootni shaffaxaa man'ee keessaa kamiyyuu immoo hin tuqamani(sararoota daalachoo)"
+msgid "Undoing a Selection"
+msgstr "Filannoo Gaabbuu"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id2102420\n"
+"multitables.xhp\n"
+"par_id3146969\n"
+"13\n"
"help.text"
-msgid "<image id=\"img_id5380718\" src=\"res/helpimg/border_ca_9.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id5380718\">advanced example for cell borders</alt></image>"
-msgstr "<image id=\"img_id5380718\" src=\"res/helpimg/border_ca_9.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id5380718\">Fakkeenyota olaanoo handaarawwan man'eetiif</alt></image>"
+msgid "To undo the selection of a sheet, click its sheet tab again while pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key. The sheet that is currently visible cannot be removed from the selection."
+msgstr ""
-#: userdefined_function.xhp
+#: multitables.xhp
msgctxt ""
-"userdefined_function.xhp\n"
+"multitables.xhp\n"
+"hd_id3156382\n"
+"15\n"
+"help.text"
+msgid "Calculating Across Multiple Sheets"
+msgstr "Wardiilee Baay'ee Irraa Shallaguu"
+
+#: multitables.xhp
+msgctxt ""
+"multitables.xhp\n"
+"par_id3155333\n"
+"16\n"
+"help.text"
+msgid "You can refer to a range of sheets in a formula by specifying the first and last sheet of the range, for example, <item type=\"literal\">=SUM(Sheet1.A1:Sheet3.A1) </item>sums up all A1 cells on Sheet1 through Sheet3."
+msgstr "Wardii hammangaa kan jalqabaa fi dhumaa ifteessuudhaan hammangaa wardiilee foormulaa keessaa wabeeffachuu dandeessa, fakkeenyaaf, <item type=\"literal\">=IDA'I(Wardii1.A1:Wardii3.A1) </item> man'eelee A1 Wardii1 hanga Wardii3 hunda ida'a."
+
+#: note_insert.xhp
+msgctxt ""
+"note_insert.xhp\n"
"tit\n"
"help.text"
-msgid "User-Defined Functions"
-msgstr "Dalagaalee Fayyadamaan qindaa'an"
+msgid "Inserting and Editing Comments"
+msgstr "Yaadota Saaguu fi Gulaaluu"
-#: userdefined_function.xhp
+#: note_insert.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"bm_id3155411\n"
+"note_insert.xhp\n"
+"bm_id3153968\n"
"help.text"
-msgid "<bookmark_value>functions; user-defined</bookmark_value><bookmark_value>user-defined functions</bookmark_value><bookmark_value>Basic IDE for user-defined functions</bookmark_value><bookmark_value>IDE; Basic IDE</bookmark_value><bookmark_value>programming;functions</bookmark_value>"
-msgstr "<bookmark_value>dalagaalee; fayyadamaan qindaa'an</bookmark_value><bookmark_value>dalagaalee fayyadamaan qindaa'an</bookmark_value><bookmark_value>Basic IDE dalagaalee fayyadamaan qindaa'aniif</bookmark_value><bookmark_value>IDE; Basic IDE</bookmark_value><bookmark_value>saganteessuu;dalagaalee</bookmark_value>"
+msgid "<bookmark_value>comments; on cells</bookmark_value> <bookmark_value>cells;comments</bookmark_value> <bookmark_value>remarks on cells</bookmark_value> <bookmark_value>formatting;comments on cells</bookmark_value> <bookmark_value>viewing;comments on cells</bookmark_value> <bookmark_value>displaying; comments</bookmark_value>"
+msgstr "<bookmark_value>yaadota; man'eelee irra</bookmark_value><bookmark_value>man'eelee;yaadota</bookmark_value><bookmark_value>yaadota; man'eelee irra</bookmark_value><bookmark_value>yaadachiisa man'eelee irraa</bookmark_value><bookmark_value>dhangeessuu;yaadota man'eelee irraa</bookmark_value><bookmark_value>arguu;yaadota man'eelee irraa</bookmark_value>"
-#: userdefined_function.xhp
+#: note_insert.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"hd_id3155411\n"
-"1\n"
+"note_insert.xhp\n"
+"hd_id3153968\n"
+"31\n"
"help.text"
-msgid "<variable id=\"userdefined_function\"><link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Defining Functions Yourself\">User-Defined Functions</link></variable>"
-msgstr "<variable id=\"userdefined_function\"><link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Defining Functions Yourself\">Dalagaalee Fayyadamaan qindaa'an</link></variable>"
+msgid "<variable id=\"note_insert\"><link href=\"text/scalc/guide/note_insert.xhp\" name=\"Inserting and Editing Comments\">Inserting and Editing Comments</link></variable>"
+msgstr "<variable id=\"note_insert\"><link href=\"text/scalc/guide/note_insert.xhp\" name=\"Inserting and Editing Comments\">Yaadawwan Saaguu fi Gulaaluu</link></variable>"
-#: userdefined_function.xhp
+#: note_insert.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3153969\n"
-"2\n"
+"note_insert.xhp\n"
+"par_id3150440\n"
+"32\n"
"help.text"
-msgid "You can apply user-defined functions in $[officename] Calc in the following ways:"
-msgstr "Dalagaalee fayyadamaan qindaa'an $[officename] Calc keessatti karaalee armaan gadii raawwachuu dandeessa."
+msgid "You can assign a comment to each cell by choosing <link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\"><emph>Insert - Comment</emph></link>. The comment is indicated by a small red square, the comment indicator, in the cell."
+msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\"><emph>Saagi - Yaada</emph></link> filachuudhaan yaadota tokkoon tokkoo man'eef ramaduu dandeessa. Yaadota man'ee keessatti skuweerii diimaa xiqqaan, agarsiisaa yaadaa, agarsiifama."
-#: userdefined_function.xhp
+#: note_insert.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3145366\n"
-"4\n"
+"note_insert.xhp\n"
+"par_id3145750\n"
+"34\n"
"help.text"
-msgid "You can define your own functions using the Basic-IDE. This method requires a basic knowledge of programming."
-msgstr "Basic-IDE fayyadamuudhaan dalagaalee mataa keetii qindeessuu dandeessa."
+msgid "The comment is visible whenever the mouse pointer is over the cell, provided you have activated <emph>Help - Tips</emph> or - <emph>Extended Tips</emph>."
+msgstr "Yaanni yeroo qareen hantuutee man'ee irra bu'e, yoo <emph>Gargaarsa - Qajeelcha</emph> ykn - <emph>Qajeelcha Baldhate</emph> kakastee jiraatte ni mul'ata."
-#: userdefined_function.xhp
+#: note_insert.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3153768\n"
-"3\n"
+"note_insert.xhp\n"
+"par_id3148575\n"
+"33\n"
"help.text"
-msgid "You can program functions as <link href=\"text/scalc/01/04060111.xhp\" name=\"add-ins\">add-ins</link>. This method requires an advanced knowledge of programming."
-msgstr "Dalagaalee akka <link href=\"text/scalc/01/04060111.xhp\" name=\"add-ins\">add-ins</link> saganteessuu dandeessa. Malli kun beekumsa saganteessuu olaanaa barbaada."
+msgid "When you select the cell, you can choose <emph>Show Comment</emph> from the context menu of the cell. Doing so keeps the comment visible until you deactivate the <emph>Show Comment</emph> command from the same context menu."
+msgstr "Yeroo man'ee filattu, <emph>Yaada Agarsiisi</emph> baafata haallee man'ee irraa filachuu dandeessa. Kana gochuun amma ajaja <emph>Yaada Agarsiisi</emph> baafata haallee sanumarraa kakaala taasiftutti Yaada mul'isa."
-#: userdefined_function.xhp
+#: note_insert.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"hd_id3149260\n"
-"6\n"
+"note_insert.xhp\n"
+"par_id3149958\n"
+"35\n"
"help.text"
-msgid "Defining A Function Using %PRODUCTNAME Basic"
-msgstr "Dalagaa %PRODUCTNAME Basic Fayyadamuudhaan Qindeessuu"
+msgid "To edit a permanently visible comment, just click in it. If you delete the entire text of the comment, the comment itself is deleted."
+msgstr "Yaada dhaabbataan mul'atu gulaaluuf, keessa isaa cuqaasi. Yoo barruu guutuu yaadannichaa balleessite, yaadannichi mataansaa ni bada."
-#: userdefined_function.xhp
+#: note_insert.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3148456\n"
-"7\n"
+"note_insert.xhp\n"
+"par_idN10699\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item>."
-msgstr "<item type=\"menuitem\">Meeshaalee - Macros - Macros qindeessi - %PRODUCTNAME Basic</item> filadhu."
+msgid "Move or resize each comment as you like."
+msgstr "Tokkoon tokkoo yaada akka feetetti deemsisi ykn guddisi"
-#: userdefined_function.xhp
+#: note_insert.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3154510\n"
-"8\n"
+"note_insert.xhp\n"
+"par_idN1069D\n"
"help.text"
-msgid "Click the <emph>Edit</emph> button. You will now see the Basic IDE."
-msgstr "Qabduu <emph>Gulaali</emph> cuqaasi. Amma Basic IDE argita."
+msgid "Format each comment by specifying background color, transparency, border style, and text alignment. Choose the commands from the context menu of the comment."
+msgstr "Tokkoon tokkoo yaada halluu duubee, iftoomina, haalata handaaraa, fi walqixxaata barruu ifteessuudhaan dhangeessi. Ajajoota baafata haallee yaada irraa filadhu."
-#: userdefined_function.xhp
+#: note_insert.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3150327\n"
-"9\n"
+"note_insert.xhp\n"
+"par_id3144764\n"
+"38\n"
"help.text"
-msgid "Enter the function code. In this example, we define a <item type=\"literal\">VOL(a; b; c)</item> function that calculates the volume of a rectangular solid with side lengths <item type=\"literal\">a</item>, <item type=\"literal\">b</item> and <item type=\"literal\">c</item>:"
-msgstr "Lakaddaa dalagaa galchi. Fakkeenaya kana keessatti, dalagaa <item type=\"literal\">VOL(a; b; c)</item> kan qabiyyee jajjabaa rogafree fageenyota rogaa <item type=\"literal\">a</item>, <item type=\"literal\">b</item> and <item type=\"literal\">c</item> qaban shallagu qindeessina:"
+msgid "To show or hide the comment indicator, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph> and mark or unmark the <emph>Comment indicator</emph> check box."
+msgstr ""
-#: userdefined_function.xhp
+#: note_insert.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3155443\n"
-"10\n"
+"note_insert.xhp\n"
+"par_id3150715\n"
+"39\n"
"help.text"
-msgid "Close the Basic-IDE window."
-msgstr "Foddaa Basic-IDE cufi."
+msgid "To display a help tip for a selected cell, use <emph>Data - Validity - Input Help</emph>."
+msgstr "Qajeelcha gargaarsaa maadhee filatamee mul'isuuf, <emph>Deetaa - Sirrummaa - Gargaarsa Naqaa</emph>."
-#: userdefined_function.xhp
+#: note_insert.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3150043\n"
-"11\n"
+"note_insert.xhp\n"
+"par_id3153707\n"
+"36\n"
"help.text"
-msgid "Your function is automatically saved in the default module and is now available. If you apply the function in a Calc document that is to be used on another computer, you can copy the function to the Calc document as described in the next section."
-msgstr "Dalagaan kee ufmaan muraa dutii keessatti olkaa'amee amma ni jira. Yoo dalagaa galmee Calc keessaa kan kompiwutara biraa irratti fayyaduuf ta'u raawwatte, dalagaa gara galmee Calc akkuma kutaa ittaanu keessatti ibsamutti garagalchuu dandeessa."
+msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\">Insert - Comment</link>"
+msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\">Saagi - Yaada</link>"
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"hd_id3147340\n"
-"18\n"
+"numbers_text.xhp\n"
+"tit\n"
"help.text"
-msgid "Copying a Function To a Document"
-msgstr "Dalagaa gara galmeetti garagalchi"
+msgid "Converting Text to Numbers"
+msgstr "Barruu Lakkoofsotatti Geeddaruu"
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3145232\n"
-"19\n"
+"numbers_text.xhp\n"
+"bm_id3145068\n"
"help.text"
-msgid "In stage 2 of \"Defining A Function Using %PRODUCTNAME Basic\", in the <emph>Macro</emph> dialog you clicked on <emph>Edit </emph>. As the default, in the <emph>Macro from</emph> field the <emph>My Macros - Standard - Module1</emph> module is selected. The <emph>Standard</emph> library resides locally in your user directory."
-msgstr "Sadarkaa 2 \"Dalagaa %PRODUCTNAME Basic fayyadamuun qindeessuu\" keessatti, qaaqa <emph>Macro</emph> keessatti <emph>Gulaali </emph> cuqaaste. Akka durtiitti, dirree <emph>Macro irraa</emph> keessatti muraan <emph>Macros koo - Durtii - Muraa1</emph> ni filatama. Galmee<emph>Durtii</emph> galeeloo fayyadamaa keessa jira.."
+msgid "<bookmark_value>formats; text as numbers</bookmark_value> <bookmark_value>time format conversion</bookmark_value> <bookmark_value>date formats;conversion</bookmark_value> <bookmark_value>converting;text, into numbers</bookmark_value>"
+msgstr ""
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3154022\n"
-"20\n"
+"numbers_text.xhp\n"
+"hd_id0908200901265171\n"
"help.text"
-msgid "If you want to copy the user-defined function to a Calc document:"
-msgstr "Yoo dalagaa fayyadamaan qindaa'e gara galmee Calc tti garagalchuu barbaadde:"
+msgid "<variable id=\"numbers_text\"><link href=\"text/scalc/guide/numbers_text.xhp\" name=\"Converting Text to Numbers\">Converting Text to Numbers</link></variable>"
+msgstr "<variable id=\"numbers_text\"><link href=\"text/scalc/guide/numbers_text.xhp\" name=\"Converting Text to Numbers\">Barruu Lakkoofsotatti Geeddaruu</link></variable>"
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3150304\n"
-"21\n"
+"numbers_text.xhp\n"
+"par_id0908200901265127\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item> ."
-msgstr "<item type=\"menuitem\">Miyoota - Macros - Macros qindeessi - %PRODUCTNAME Basic</item> filadhu."
+msgid "Calc converts text inside cells to the respective numeric values if an unambiguous conversion is possible. If no conversion is possible, Calc returns a #VALUE! error."
+msgstr "Geeddarumsi garlameelli yoo danda'ame Calc barruu man'ee keessaa gatiiwwan lakkoofsaa walsimanitti geeddara. Geeddarumsi kan hin danda'amne yoo tahe, Calc dogoggora #VALUE! kenna."
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3150086\n"
-"22\n"
+"numbers_text.xhp\n"
+"par_id0908200901265196\n"
"help.text"
-msgid "In the <emph>Macro from</emph> field select <emph>My Macros - Standard - Module1</emph> and click <emph>Edit</emph>."
-msgstr "Dirree <emph>Macro irraa</emph> keessatti koo<emph>Micros - Durtii - Muraa1</emph>. <emph>Gulaali</emph> cuqaasi."
+msgid "Only integer numbers including exponent are converted, and ISO 8601 dates and times in their extended formats with separators. Anything else, like fractional numbers with decimal separators or dates other than ISO 8601, is not converted, as the text string would be locale dependent. Leading and trailing blanks are ignored."
+msgstr "Lakkoofsota inteegraa qofatu eksipoonentii dabalatanii geeddaramu, dabalatees guyyootaa fi yeroowwan ISO 8601 dhangiilee isaanii dheerataniin gargareessaawwan waliin. Diraan barruu gitoo biyyaatti waan hundaa'uuf, wantoonni biroo kamiyyuu, kan akka lakkoofsota eentaa gargareessaawwan kurnyee waliin ykn guyyoota ISO 8601n ala ta'an, ni geeddaramu. Iddoowwan duwwaan jalqabaa fi dhumaa ni tuffatamu."
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3166430\n"
-"23\n"
+"numbers_text.xhp\n"
+"par_id0908200901265220\n"
"help.text"
-msgid "In the Basic-IDE, select the source of your user-defined function and copy it to the clipboard."
-msgstr "Basic-IDE keessatti,madda dalagaa fayyadamaan qindaa'e filadhuutii gara muraa gabateetti garagalchi."
+msgid "The following ISO 8601 formats are converted:"
+msgstr "Dhangiileen ISO 8601 armaan gadii ni geeddaramu:"
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_idN1081D\n"
+"numbers_text.xhp\n"
+"par_id0908200901265288\n"
"help.text"
-msgid "Close the Basic-IDE."
-msgstr "Basic-IDE cufi."
+msgid "CCYY-MM-DD"
+msgstr "CCYY-MM-DD"
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3150517\n"
-"24\n"
+"numbers_text.xhp\n"
+"par_id0908200901265267\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item> ."
-msgstr "<item type=\"menuitem\">Miyoota - Macros - Macros qindeessi - %PRODUCTNAME Basic</item> filadhu."
+msgid "CCYY-MM-DDThh:mm"
+msgstr "CCYY-MM-DDThh:mm"
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3145384\n"
-"25\n"
+"numbers_text.xhp\n"
+"par_id0908200901265248\n"
"help.text"
-msgid "In the <emph>Macro from</emph> field select <emph>(Name of the Calc document) - Standard - Module1</emph>. Click <emph>Edit</emph>."
-msgstr "Dirree <emph>Macro irraa</emph> keessatti <emph>(Maqaa galmee Calc) - Durtii - Muraa1</emph>. <emph>Gulaali</emph> cuqaasi."
+msgid "CCYY-MM-DDThh:mm:ss"
+msgstr "CCYY-MM-DDThh:mm:ss"
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3148699\n"
-"26\n"
+"numbers_text.xhp\n"
+"par_id0908200901265374\n"
"help.text"
-msgid "Paste the clipboard contents in the Basic-IDE of the document."
-msgstr "Qabiyyeewwan gabatee muraa Basic-IDE galmee keessatti maxxansi."
+msgid "CCYY-MM-DDThh:mm:ss,s"
+msgstr "CCYY-MM-DDThh:mm:ss,s"
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"hd_id3153305\n"
+"numbers_text.xhp\n"
+"par_id0908200901265327\n"
+"help.text"
+msgid "CCYY-MM-DDThh:mm:ss.s"
+msgstr "CCYY-MM-DDThh:mm:ss.s"
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265399\n"
+"help.text"
+msgid "hh:mm"
+msgstr "hh:mm"
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265347\n"
+"help.text"
+msgid "hh:mm:ss"
+msgstr "hh:mm:ss"
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265349\n"
+"help.text"
+msgid "hh:mm:ss,s"
+msgstr "hh:mm:ss,s"
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265342\n"
+"help.text"
+msgid "hh:mm:ss.s"
+msgstr "hh:mm:ss.s"
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265491\n"
+"help.text"
+msgid "The century code CC may not be omitted. Instead of the T date and time separator, exactly one space character may be used."
+msgstr "Lakkaddaan seencharii baduu danda'a. Qooda guyyaa T fi gargareessaa yeroo, arfii iddoo duwwaa tokkoo qofatu fayyadamuu danda'a."
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265467\n"
+"help.text"
+msgid "If a date is given, it must be a valid Gregorian calendar date. In this case the optional time must be in the range 00:00 to 23:59:59.99999..."
+msgstr "Guyyaan yoo kenname, guyyaa dhaha warra Awurooppa gataa'aa tahuu qaba. Haala kanaan yeroon dirqalee hangii 00:00 hanga 23:59:59.99999... keessa tahuu qaba."
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265420\n"
+"help.text"
+msgid "If only a time string is given, it may have an hours value of more than 24, while minutes and seconds can have a maximum value of 59."
+msgstr "Diraan yeroo qofti yoo kan kenname tahe, daqiiqaawwanii fi sekoondiiwwan gatii olaantoo 59 qabaachuu yoo danda'an, gatii sa'aatii 24 ol qabaachuu danda'a."
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265448\n"
+"help.text"
+msgid "The conversion is done for single arguments only, as in =A1+A2, or =\"1E2\"+1. Cell range arguments are not affected, so SUM(A1:A2) differs from A1+A2 if at least one of the two cells contain a convertible string."
+msgstr "Geeddarumsi kan adeemsifamu qajeelchota baaqqeef qofa tahuu danda'a, kan akka =A1+A2, ykn =\"1E2\"+1. Yoo xinnaate man'eewwan lamaan keessaa inni tokko diraa geeddaramaa kan ofkeessaa qabu yoo tahe qajeelchonni hangii man'ee hin miidhaman, kanaaf SUM(A1:A2) fi A1+A2 garaa gara."
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id090820090126540\n"
+"help.text"
+msgid "Strings inside formulas are also converted, such as in =\"1999-11-22\"+42, which returns the date 42 days after November 22nd, 1999. Calculations involving localized dates as strings inside the formula return an error. For example, the localized date string \"11/22/1999\" or \"22.11.1999\" cannot be used for the automatic conversion."
+msgstr "Diraawwan foormulaawwan keessaa, kan akka =\"1999-11-22\"+42, Sadaasa 22, 1999 booda guyyaadhaaf guyyoota 42 kennan geeddara. Shallagni guyyoota biyyoomsaman akka diraawwan foormulaa keessaa dogoggora kenna. Fakkeenyaaf, diraan guyyaa biyyoome \"11/22/1999\" ykn \"22.11.1999\" geeddariinsa ofmaatiif fayyaduu hin danda'an."
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"hd_id1005200903485368\n"
+"help.text"
+msgid "Example"
+msgstr "Fakkeenyota"
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id1005200903485359\n"
+"help.text"
+msgid "In A1 enter the text <item type=\"literal\">'1e2</item> (which is converted to the number 100 internally)."
+msgstr ""
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id1005200903485341\n"
+"help.text"
+msgid "In A2 enter <item type=\"literal\">=A1+1</item> (which correctly results in 101)."
+msgstr ""
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id0908200901265544\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Dhangii - Man'eewwan - Lakkoofsota</link>"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"tit\n"
+"help.text"
+msgid "Printing Sheet Details"
+msgstr "Waa'ee Wardii Maxxansaa"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"bm_id3154346\n"
+"help.text"
+msgid "<bookmark_value>printing;sheet details</bookmark_value><bookmark_value>sheets; printing details</bookmark_value><bookmark_value>grids; printing sheet grids</bookmark_value><bookmark_value>formulas; printing, instead of results</bookmark_value><bookmark_value>comments; printing</bookmark_value><bookmark_value>charts;printing</bookmark_value><bookmark_value>sheet grids; printing</bookmark_value><bookmark_value>cells; printing grids</bookmark_value><bookmark_value>borders; printing cells</bookmark_value><bookmark_value>zero values; printing</bookmark_value><bookmark_value>null values; printing</bookmark_value><bookmark_value>draw objects;printing</bookmark_value>"
+msgstr "<bookmark_value>maxxansuu;baldhintaa wardii</bookmark_value><bookmark_value>wardiilee;baldhintaa maxxansuu</bookmark_value><bookmark_value>tarsaawwan; tarsaawwan wardii maxxansuu</bookmark_value><bookmark_value>foormulaawwan; maxxansuu, bu'alee osoo hin ta'in</bookmark_value><bookmark_value>yaadawwan; maxxansuu</bookmark_value><bookmark_value>taattoowwan;maxxansuu</bookmark_value><bookmark_value>tarsaawwan wardii; maxxansuu</bookmark_value><bookmark_value>man'eewwan; tarsaawwan maxxansuu</bookmark_value><bookmark_value>handaarawwan; man'eelee maxxansuu</bookmark_value><bookmark_value>gatiiwwan zeeroo; maxxansuu</bookmark_value><bookmark_value>gatiiwwan duwwaa; maxxansuu</bookmark_value><bookmark_value>waantota fakkisaa; maxxansaa</bookmark_value>"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"hd_id3154346\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"print_details\"><link href=\"text/scalc/guide/print_details.xhp\" name=\"Printing Sheet Details\">Printing Sheet Details</link></variable>"
+msgstr "<variable id=\"print_details\"><link href=\"text/scalc/guide/print_details.xhp\" name=\"Printing Sheet Details\">Waa'ee wardii maxxansuu</link></variable>"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3153728\n"
+"2\n"
+"help.text"
+msgid "When printing a sheet you can select which details are to be printed:"
+msgstr "Yeroo wardii maxxansitu waa'ee maxxansamuu filachuu dandeessa:"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3150010\n"
+"3\n"
+"help.text"
+msgid "Row and column headers"
+msgstr "Irraantowwan tarree fi sarjaa"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3154013\n"
+"4\n"
+"help.text"
+msgid "Sheet grid"
+msgstr "Tarsaa wardii"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3145273\n"
+"5\n"
+"help.text"
+msgid "Comments"
+msgstr "Yaadota"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3145801\n"
+"6\n"
+"help.text"
+msgid "Objects and graphics"
+msgstr "Waantotaa fi Saxaatoo"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3154491\n"
+"7\n"
+"help.text"
+msgid "Charts"
+msgstr "Taattoowwan"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3154731\n"
+"8\n"
+"help.text"
+msgid "Drawing objects"
+msgstr "Waantota fakkisaa"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3149400\n"
+"9\n"
+"help.text"
+msgid "Formulas"
+msgstr "Foormulaawwan"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3150752\n"
+"10\n"
+"help.text"
+msgid "To choose the details proceed as follows:"
+msgstr "Waa'ee filachuuf akka armaan gadiitti itti fufi:"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3145640\n"
+"11\n"
+"help.text"
+msgid "Select the sheet you want to print."
+msgstr "Wardii maxxansuu barbaaddu filadhu."
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3150042\n"
"12\n"
"help.text"
-msgid "Applying a User-defined Function in $[officename] Calc"
-msgstr "Dalagaa namaan qindaa'e $[officename] Calc keessatti raawwachuu"
+msgid "Choose <emph>Format - Page</emph>."
+msgstr "<emph>Dhangii - Fuulaa</emph> filadhu."
-#: userdefined_function.xhp
+#: print_details.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3148869\n"
+"print_details.xhp\n"
+"par_id3147340\n"
"13\n"
"help.text"
-msgid "Once you have defined the function <item type=\"literal\">VOL(a; b; c)</item> in the Basic-IDE, you can apply it the same way as the built-in functions of $[officename] Calc."
-msgstr "Tokkicha dalagaa <item type=\"literal\">VOL(a; b; c)</item> erga Basic-IDE keessatti qindeessitee,akkuma dalagaalee keessaa $[officename] Calc tti haaluma tokkoon raawwachuu dandeessa."
+msgid "The command is not visible if the sheet was opened with write protection on. In that case, click the <emph>Edit File </emph>icon on the <emph>Standard</emph> Bar."
+msgstr "Ajajni yoo wardiin dhorki barreessuu banaa ta'uun yoo banamee ture hin mul'atu.Haala kanaan,sajoo <emph>Faayilii gulaali </emph> kabala <emph>Durtii</emph>irraa cuqaasi."
-#: userdefined_function.xhp
+#: print_details.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3148606\n"
+"print_details.xhp\n"
+"par_id3146916\n"
"14\n"
"help.text"
-msgid "Open a Calc document and enter numbers for the function parameters <item type=\"literal\">a</item>, <item type=\"literal\">b</item>, and <item type=\"literal\">c</item> in cells A1, B1, and C1."
-msgstr "Galmee Calc baniitii ulaagaalee dalagaa <item type=\"literal\">a</item>, <item type=\"literal\">b</item> fi <item type=\"literal\">c</item> man'eelee A1,B1 fi C1 keessaatti lakkoofsota galchi."
+msgid "Select the <emph>Sheet</emph> tab. In the <emph>Print </emph>area mark the details to be printed and click OK."
+msgstr "Caancala <emph>Wardii</emph> filadhu.Bal'ina <emph>Maxxansi </emph> keessatti waa'ee maxxansitu mallatttoo itti gochiitii TOLE cuqaasi."
-#: userdefined_function.xhp
+#: print_details.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3156019\n"
+"print_details.xhp\n"
+"par_id3145789\n"
"15\n"
"help.text"
-msgid "Set the cursor in another cell and enter the following:"
-msgstr "Qaree maadhee biraa keessa kaa'iitii kan armaan gadii galchi:"
+msgid "Print the document."
+msgstr "Galmee maxxansi"
-#: userdefined_function.xhp
+#: print_details.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3155264\n"
+"print_details.xhp\n"
+"par_id3150345\n"
"16\n"
"help.text"
-msgid "=VOL(A1;B1;C1)"
-msgstr "=VOL(A1;B1;C1)"
+msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
+msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">Argi - Durargii muraa fuulaa</link>"
-#: userdefined_function.xhp
+#: print_exact.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3146776\n"
-"17\n"
+"print_exact.xhp\n"
+"tit\n"
"help.text"
-msgid "The function is evaluated and you will see the result in the selected cell."
-msgstr "Dalagaan ni madaalameetu bu'aa maadhee filatame keessatti agarta."
+msgid "Defining Number of Pages for Printing"
+msgstr "Lakkoofsa fuulaa maxxansaaf qindeessuu"
-#: cellstyle_minusvalue.xhp
+#: print_exact.xhp
msgctxt ""
-"cellstyle_minusvalue.xhp\n"
-"tit\n"
+"print_exact.xhp\n"
+"bm_id3153194\n"
"help.text"
-msgid "Highlighting Negative Numbers"
-msgstr "Lakkoofsota Negaatiivii Shooluu"
+msgid "<bookmark_value>printing; sheet counts</bookmark_value><bookmark_value>sheets; printing sheet counts</bookmark_value><bookmark_value>page breaks; spreadsheet preview</bookmark_value><bookmark_value>editing;print ranges</bookmark_value><bookmark_value>viewing;print ranges</bookmark_value><bookmark_value>previews;page breaks for printing</bookmark_value>"
+msgstr "<bookmark_value>maxxansuu; lakkaawwii wardii</bookmark_value><bookmark_value>wardii; lakkaawwii wardii maxxansuu</bookmark_value><bookmark_value>muraalee fuulaa; durargii wardii</bookmark_value><bookmark_value>gulaaluu;hammangaa maxxansi</bookmark_value><bookmark_value>arguu;hammangaa maxxansi</bookmark_value><bookmark_value>durargiiwwan;muraa fuulaa maxxansaaf</bookmark_value>"
-#: cellstyle_minusvalue.xhp
+#: print_exact.xhp
msgctxt ""
-"cellstyle_minusvalue.xhp\n"
-"bm_id3147434\n"
+"print_exact.xhp\n"
+"hd_id3153194\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>negative numbers</bookmark_value> <bookmark_value>numbers; highlighting negative numbers</bookmark_value> <bookmark_value>highlighting;negative numbers</bookmark_value> <bookmark_value>colors;negative numbers</bookmark_value> <bookmark_value>number formats;colors for negative numbers</bookmark_value>"
-msgstr "<bookmark_value>lakkoofsota negaatiivii</bookmark_value> <bookmark_value>lakkoofsota; lakkoofsota negaatiivii shooluu</bookmark_value> <bookmark_value>shooluu;lakkoofsota negaatiivii</bookmark_value> <bookmark_value>halluuwwan;dhangiiwwan lakkoofsaa</bookmark_value> <bookmark_value>dhangiiwwan lakkoofsaa;halluuwwan</bookmark_value>"
+msgid "<variable id=\"print_exact\"><link href=\"text/scalc/guide/print_exact.xhp\" name=\"Defining Number of Pages for Printing\">Defining Number of Pages for Printing</link></variable>"
+msgstr "<variable id=\"print_exact\"><link href=\"text/scalc/guide/print_exact.xhp\" name=\"Defining Number of Pages for Printing\">Lakkoofsa fuulaa maxxansaaf qindeessuu</link></variable>"
-#: cellstyle_minusvalue.xhp
+#: print_exact.xhp
msgctxt ""
-"cellstyle_minusvalue.xhp\n"
-"hd_id3147434\n"
-"31\n"
+"print_exact.xhp\n"
+"par_id3153771\n"
+"2\n"
"help.text"
-msgid "<variable id=\"cellstyle_minusvalue\"><link href=\"text/scalc/guide/cellstyle_minusvalue.xhp\" name=\"Highlighting Negative Numbers\">Highlighting Negative Numbers</link></variable>"
-msgstr "<variable id=\"cellstyle_minusvalue\"><link href=\"text/scalc/guide/cellstyle_minusvalue.xhp\" name=\"Highlighting Negative Numbers\">Lakkoofsota Negaatiivii Shooluu</link></variable>"
+msgid "If a sheet is too large for a single printed page, $[officename] Calc will print the current sheet evenly divided over several pages. Since the automatic page break does not always take place in the optimal position, you can define the page distribution yourself."
+msgstr "Yoo wardiin fuula baaqqee maxxansamuuf irra baay'ee guddaa ta'e, $[officename] Calc wardii ammee walqixatti hiruun fuulota baay'ee irratti maxxansa. Waan citni fuulaa ufmaa hoggayyuu qubannoo waaltawaa irraa hin jirreef, tamsa'ina fuulaa mataa keetiin qindeessuu dandeessa."
-#: cellstyle_minusvalue.xhp
+#: print_exact.xhp
msgctxt ""
-"cellstyle_minusvalue.xhp\n"
-"par_id3153878\n"
-"33\n"
+"print_exact.xhp\n"
+"par_id3159155\n"
+"3\n"
"help.text"
-msgid "You can format cells with a number format that highlights negative numbers in red. Alternatively, you can define your own number format in which negative numbers are highlighted in other colors."
-msgstr "Maadheelee dhangii lakkoofsaa kan lakkoofsota negaatiivii diimaan shooluutiin dhangeessuu dandeessa. Karaa biraa, dhangii lakkoofsa mataa keetii kan lakkoofsonni negaatiivii halluu birootiin shoolaman qindeessuu dandeessa."
+msgid "Go to the sheet to be printed."
+msgstr "Gara wardii maxxansamuu deemi."
-#: cellstyle_minusvalue.xhp
+#: print_exact.xhp
msgctxt ""
-"cellstyle_minusvalue.xhp\n"
-"par_id3155600\n"
-"34\n"
+"print_exact.xhp\n"
+"par_id3150012\n"
+"4\n"
"help.text"
-msgid "Select the cells and choose <emph>Format - Cells</emph>."
-msgstr "Man'eelee filiitii <emph>Dhangii - Man'eelee</emph> filadhu."
+msgid "Choose <emph>View - Page Break Preview</emph>."
+msgstr "<emph>Argi - Durargii Cita Fuulaa</emph> fili."
-#: cellstyle_minusvalue.xhp
+#: print_exact.xhp
msgctxt ""
-"cellstyle_minusvalue.xhp\n"
-"par_id3146969\n"
-"35\n"
+"print_exact.xhp\n"
+"par_id3146974\n"
+"5\n"
"help.text"
-msgid "On the <emph>Numbers</emph> tab, select a number format and mark <emph>Negative numbers red</emph> check box. Click <emph>OK</emph>."
-msgstr "Caancala <emph>Lakkoofsa</emph> irratti, dhangii lakkoofsaa filiitii sanduuqa filannoo <emph>Lakkoofsota negaatiivii diimaa</emph> mallattoo itti godhi. <emph>Tole</emph> cuqaasi."
+msgid "You will see the automatic distribution of the sheet across the print pages. The automatically created print ranges are indicated by dark blue lines, and the user-defined ones by light blue lines. The page breaks (line breaks and column breaks) are marked as black lines."
+msgstr "Tamsa'ina wardii ufmaa fuulota maxxansaa irraa ni argita. Hammangaan maxxansaa ufmaan uumaman sararoota cuquliisaa yabbuun yoo agarsiifaman, kanneen fayyadamaan qindaa'an sararoota cuquliisa haphiin agarsiifamu. Citoonni fuulaa(citoota sararaa fi citoota sarjaa) akka sararoota gurraachaatti mallatteeffamu."
-#: cellstyle_minusvalue.xhp
+#: print_exact.xhp
msgctxt ""
-"cellstyle_minusvalue.xhp\n"
-"par_id3145640\n"
-"36\n"
+"print_exact.xhp\n"
+"par_id3152578\n"
+"6\n"
"help.text"
-msgid "The cell number format is defined in two parts. The format for positive numbers and zero is defined in front of the semicolon; after the semicolon the formula for negative numbers is defined. You can change the code (RED) under <item type=\"menuitem\">Format code</item>. For example, instead of RED, enter <item type=\"literal\">YELLOW</item>. If the new code appears in the list after clicking the <item type=\"menuitem\">Add</item> icon, this is a valid entry."
-msgstr "Dhangiin lakkoofsa man'ee kutaalee lamaan qindaa'a. Dhangiin lakkoofsa poozetiivii fi zeeroo buufata xiqqaa fuulduratti qindaa'a; buufta xiqqaa booda foormulaa lakkoofsota negaatiiviitu qindaa'a. Koodii(DIIMAA) jala <item type=\"menuitem\">Koodii dhangii</item> jalaa jijjiiruu dandeessa. Fakkeenyaaf, (DIIMAA) osoo hin ta'in, <item type=\"literal\">KEELLOO</item> galchi. Yoo koodiin haaraa tarree keessatti erga sajoo <item type=\"menuitem\">Dabali</item> cuqaasteen booda mul'ate, kun galfata sirrii dha."
+msgid "You can move the blue lines with the mouse. You will find further options in the Context menu, including adding an additional print range, removing the scaling and inserting additional manual line and column breaks."
+msgstr "Sararoota cuquliisa hantuuteen deemsisuu dandeessa. Dirqaalaalee biroo baafata haallee keessaa, hammangaa maxxansaa dabalataa dabaluu, sarara harkaa dabalataa guddisuu fi saaguu balleessuu fi citoota sarjaa dabalatee argachuu dandeessa."
+
+#: print_exact.xhp
+msgctxt ""
+"print_exact.xhp\n"
+"par_id3151073\n"
+"7\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
+msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">Argi - Durargii muraa fuulaa</link>"
#: print_landscape.xhp
msgctxt ""
@@ -9932,1733 +9093,1771 @@ msgctxt ""
msgid "<link href=\"text/scalc/guide/printranges.xhp\">Defining Print Ranges on a Sheet</link>"
msgstr "<link href=\"text/scalc/guide/printranges.xhp\">Hammangaa maxxansuu wardii irratti qindeessi</link>"
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
+"print_title_row.xhp\n"
"tit\n"
"help.text"
-msgid "Calculating With Dates and Times"
-msgstr "Guyyootaa fi yeroodhaan shallaguu"
+msgid "Printing Rows or Columns on Every Page"
+msgstr "Tarreewwanii fi sarjaawwan fuula mara irraa maxxansuu"
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"bm_id3146120\n"
+"print_title_row.xhp\n"
+"bm_id3151112\n"
"help.text"
-msgid "<bookmark_value>dates; in cells</bookmark_value> <bookmark_value>times; in cells</bookmark_value> <bookmark_value>cells;date and time formats</bookmark_value> <bookmark_value>current date and time values</bookmark_value>"
-msgstr "<bookmark_value>guyyoota; man'eelee keessatti</bookmark_value> <bookmark_value>yeroo; man'eelee keessatti</bookmark_value> <bookmark_value>man'eelee;dhangiiwwan guyyaa fi yeroo</bookmark_value><bookmark_value>gatiiwwan guyyaa fi yeroo ammee</bookmark_value>"
+msgid "<bookmark_value>printing; sheets on multiple pages</bookmark_value><bookmark_value>sheets; printing on multiple pages</bookmark_value><bookmark_value>rows; repeating when printing</bookmark_value><bookmark_value>columns; repeating when printing</bookmark_value><bookmark_value>repeating;columns/rows on printed pages</bookmark_value><bookmark_value>title rows; printing on all sheets</bookmark_value><bookmark_value>headers; printing on sheets</bookmark_value><bookmark_value>footers; printing on sheets</bookmark_value><bookmark_value>printing; rows/columns as table headings</bookmark_value><bookmark_value>headings;repeating rows/columns as</bookmark_value>"
+msgstr "<bookmark_value>maxxansuu; wardiilee fuula danuu irraa</bookmark_value><bookmark_value>wardiilee; fuulota baay'ee irratti maxxansuu</bookmark_value><bookmark_value>tarreewwan; yeroo maxxansaa irra deebi'uu</bookmark_value><bookmark_value>sarjaawwan; yeroo maxxansaa irra deebi'uu</bookmark_value><bookmark_value>irra deebi'uu;sarjaawwan/tarreewwan fuulota maxxansaman irraa</bookmark_value><bookmark_value>tarreewwan mataduree; wardiilee hunda irratti maxxansuu</bookmark_value><bookmark_value>irraantota; wardiilee irratti maxxansuu</bookmark_value><bookmark_value>jalaantoota; wardiilee irratti maxxansuu</bookmark_value><bookmark_value>maxxansuu; tarreewwan/sarjaawwan akka irraantoowwan gabateewwaniif</bookmark_value><bookmark_value>irraantota;tarreewwan/sarjaawwan irra deebi'uu </bookmark_value>"
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"hd_id3146120\n"
-"11\n"
+"print_title_row.xhp\n"
+"hd_id3153727\n"
+"21\n"
"help.text"
-msgid "<variable id=\"calc_date\"><link href=\"text/scalc/guide/calc_date.xhp\" name=\"Calculating With Dates and Times\">Calculating With Dates and Times</link></variable>"
-msgstr "<variable id=\"calc_date\"><link href=\"text/scalc/guide/calc_date.xhp\" name=\"Calculating With Dates and Times\">Guyyootaa fi yeroodhaan shallaguu</link></variable>"
+msgid "<variable id=\"print_title_row\"><link href=\"text/scalc/guide/print_title_row.xhp\" name=\"Printing Rows or Columns on Every Page\">Printing Rows or Columns on Every Page</link></variable>"
+msgstr "<variable id=\"print_title_row\"><link href=\"text/scalc/guide/print_title_row.xhp\" name=\"Printing Rows or Columns on Every Page\">Tarreewwan ykn sarjaawwan fuula hunda irratti maxxansuu</link></variable>"
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3154320\n"
-"12\n"
+"print_title_row.xhp\n"
+"par_id3154014\n"
+"2\n"
"help.text"
-msgid "In $[officename] Calc, you can perform calculations with current date and time values. As an example, to find out exactly how old you are in seconds or hours, follow the following steps:"
-msgstr "$[officename] Calc keessatti,shallaggii gatiiwwan guyyaa fi yeroo ammeetiin raawwachuu dandeessa.Akka fakkeenyaatti,umurii kee sirrumaan daqiiqaadhaan yookiin sa'aatiin argachuuf,ejjatoo armaan gadii hordofi:"
+msgid "If you have a sheet that is so large that it will be printed multiple pages, you can set up rows or columns to repeat on each printed page."
+msgstr "Yoo wardii baay'ee guddaa kan fuulota baay'ee irratti maxxansamu qabaatte,fuula maxxansamu hunda irratti irra deebi'uuf tarreewwan ykn sarjaawwan qindeessuu dandeessa."
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3150750\n"
-"13\n"
+"print_title_row.xhp\n"
+"par_id3146975\n"
+"7\n"
"help.text"
-msgid "In a spreadsheet, enter your birthday in cell A1."
-msgstr "Wardii keessatti,guyyaa dhaloota keetii man'ee A1 keessatti galchi."
+msgid "As an example, If you want to print the top two rows of the sheet as well as the first column (A)on all pages, do the following:"
+msgstr "Akka fakkeenyaatti,yoo tarreewwan wardii lamaan gubbaa akkasumas sarjaa jalqabaa(A) fuula hunda irratti maxxansuu barbaadde,kan armaan gadii godhi:"
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3145642\n"
-"14\n"
+"print_title_row.xhp\n"
+"par_id3163710\n"
+"8\n"
"help.text"
-msgid "Enter the following formula in cell A3: <item type=\"literal\">=NOW()-A1</item>"
-msgstr "Formulaa armaan gadii man'ee A3 keessati galchi: <item type=\"literal\">=NOW()-A1</item>"
+msgid "Choose <emph>Format - Print Ranges - Edit</emph>. The <emph>Edit Print Ranges</emph> dialog appears."
+msgstr "<emph>Dhangii - Hammangaa maxxansaa - Gulaali</emph>fili.Qaaqni<emph>Hammangaa maxxansaa gulaalaa</emph> ni mul'ata."
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3149020\n"
-"52\n"
+"print_title_row.xhp\n"
+"par_id3149958\n"
+"9\n"
"help.text"
-msgid "After pressing the <item type=\"keycode\">Enter</item> key you will see the result in date format. Since the result should show the difference between two dates as a number of days, you must format cell A3 as a number."
-msgstr "Furtuu <item type=\"keycode\">Enter</item> tuquun booda bu'aa dhangii guyyaatiin argita. Sababa bu'aan garaagarummaa guyyoota lama jidduu akka lakkoofsa guyyaatti agarsiisuu qabuuf,man'ee A3 akka lakkoofsaatti dhangeessuu qabda."
+msgid "Click the icon at the far right of the <emph>Rows to repeat</emph> area."
+msgstr "Sajoo qarqara mirga bal'ina <emph>Tarreewwan irra deebi'amant</emph> cuqaasi."
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3155335\n"
-"53\n"
+"print_title_row.xhp\n"
+"par_id3145800\n"
+"10\n"
"help.text"
-msgid "Place the cursor in cell A3, right-click to open a context menu and choose <emph>Format Cells</emph>."
-msgstr "Qaree man'ee A3 keessa qubachiisi, baafata haallee banuuf mirgaan cuqaasiitii<emph>Man'eelee dhangeessi</emph> filadhu."
+msgid "The dialog shrinks so that you can see more of the sheet."
+msgstr "Akka wardii bal'inaan agartuuf qaaqni ni suntuura."
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3147343\n"
-"54\n"
+"print_title_row.xhp\n"
+"par_id3155602\n"
+"11\n"
"help.text"
-msgid "The <item type=\"menuitem\">Format Cells</item> dialog appears. On the <item type=\"menuitem\">Numbers</item> tab, the \"Number\" category will appear already highlighted. The format is set to \"General\", which causes the result of a calculation containing date entries to be displayed as a date. To display the result as a number, set the number format to \"-1,234\" and close the dialog with the <item type=\"menuitem\">OK</item> button."
-msgstr "Qaaqni <item type=\"menuitem\">Man'eelee Dhangeessi</item> ni mul'ata. Caancala <item type=\"menuitem\">Lakkoofsota</item> irratti, akaakuun \"Lakkoofsaa\" dursee shoolamee ni mul'ata. Dhangiin \"Dimshaasha\" ta'ee qindaa'a, kun immoo bu'aan shallaggii galfatoota guyyaa qabate akka guyyaatti akka mul'atu sababa ta'a. Bu'aan akka lakkoofsaatti akka mul'atuuf, dhangii lakkoofsaa gara \"-1,234\" qindeessiitii qaaqa qabduu <item type=\"menuitem\">Tole</item> dhaan cufi."
+msgid "Select the first two rows and, for this example, click cell A1 and drag to A2."
+msgstr "Tarreewwan jalqabaa lamaan filadhuutii,fakkeenyaaf,man'ee A1 cuqaasiitii gara A2 harkisi."
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3147001\n"
+"print_title_row.xhp\n"
+"par_id3154018\n"
+"12\n"
+"help.text"
+msgid "In the shrunk dialog you will see $1:$2. Rows 1 and 2 are now rows to repeat."
+msgstr "Qaaqa xiqqaate keessatti $1:$2 argita. Tarree 1 fi 2 amma tarreewwan irra deebi'amani dha."
+
+#: print_title_row.xhp
+msgctxt ""
+"print_title_row.xhp\n"
+"par_id3153707\n"
+"13\n"
+"help.text"
+msgid "Click the icon at the far right of the <emph>Rows to repeat</emph> area. The dialog is restored again."
+msgstr "Sajoo qarqara mirga bal'ina <emph>Tarreewwan irra deebi'amant</emph> cuqaasi. Qaaqni ammas bakka deebi'a."
+
+#: print_title_row.xhp
+msgctxt ""
+"print_title_row.xhp\n"
+"par_id3155443\n"
+"14\n"
+"help.text"
+msgid "If you also want column A as a column to repeat, click the icon at the far right of the <emph>Columns to repeat</emph> area."
+msgstr "Yoo sarjaa A akka sarjaa irra deebiitti barbaaddes, sajoo qarqara mirgaa bal'ina <emph>Sarjaalee irra deebi'aman</emph> keessa jiru cuqaasi."
+
+#: print_title_row.xhp
+msgctxt ""
+"print_title_row.xhp\n"
+"par_id3154256\n"
"15\n"
"help.text"
-msgid "The number of days between today's date and the specified date is displayed in cell A3."
-msgstr "Lakkoofsi guyyaa kan guyyaa har'aa fi guyyaa murtaa'e jidduu jiru maadhee A3 keessatti mul'atu."
+msgid "Click column A (not in the column header)."
+msgstr "Sarjaa A cuqaasi(irraantoo sarjaa keessa miti)."
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3150304\n"
+"print_title_row.xhp\n"
+"par_id3154704\n"
"16\n"
"help.text"
-msgid "Experiment with some additional formulas: in A4 enter =A3*24 to calculate the hours, in A5 enter =A4*60 for the minutes, and in A6 enter =A5*60 for seconds. Press the <item type=\"keycode\">Enter</item> key after each formula."
-msgstr "Yaalii foormulaawwan dabalataa muraasa wajjin:A4 keessatti sa'aatii shallaguuf =A3*24 galchi,A5 keessatti daqiiqaadhaaf =A4*60 galchi,akkasumas A6 keessatti sekondiiwwaniif =A5*60 galchi.Furtuu <item type=\"keycode\">Enter</item> foormulaa haggayyuu booda tuqi."
+msgid "Click the icon again at the far right of the <emph>Columns to repeat</emph> area."
+msgstr "Sajoo qarqara mirga bal'ina <emph>Tarreewwan irra deebi'amant</emph> cuqaasi."
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3149207\n"
+"print_title_row.xhp\n"
+"par_id3150088\n"
"17\n"
"help.text"
-msgid "The time since your date of birth will be calculated and displayed in the various units. The values are calculated as of the exact moment when you entered the last formula and pressed the <item type=\"keycode\">Enter</item> key. This value is not automatically updated, although \"Now\" continuously changes. In the <emph>Tools</emph> menu, the menu item <emph>Cell Contents - AutoCalculate</emph> is normally active; however, automatic calculation does not apply to the function NOW. This ensures that your computer is not solely occupied with updating the sheet."
-msgstr "Yeroon dhaloota kee irraa kaasee yuuniitii adda addaatiin shallagamee mul'ata.Gatiiwwan akka yeroo foormulaa dhumaa galchituuttii fi furtuu <item type=\"keycode\">Enter</item> tuqxuutti shallagama.Gatiin kun ufmaan hin fooyya'u, \"Amma\" itti fufaan jijjiiramu iyyuu.Baafata <emph>Miyoota</emph> keessatti,maalimni baafataa <emph>Qabiyyeewwan man'ee - Ufmaan shallagi</emph> baratamaan kaka'aa dha;garuu,shallaggiin ufmaa dalagaa AMMA irratti hin raawwatu.Kun amma kompiwutarri kee wardii fooyyeessuu qofaan hin qabamne mirkaneessa."
+msgid "Rows to repeat are rows from the sheet. You can define headers and footers to be printed on each print page independently of this in <emph>Format - Page</emph>."
+msgstr "Tarreewwan irra deebi'aman tarreewwan wardii irraa ti. Irraantotaa fi jalaantota maxxansamuuf jadhan fuula maxxansaa mara irratti kanaa alatti <emph>Dhangii - Fuula</emph> keessatti qindeessuu dandeessa."
-#: format_value_userdef.xhp
+#: print_title_row.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"tit\n"
+"print_title_row.xhp\n"
+"par_id3155380\n"
+"18\n"
"help.text"
-msgid "User-defined Number Formats"
-msgstr "Dhangiiwwan Lakkoofsaa Fayyadamaan qindaa'an"
+msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
+msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">Argi - Durargii muraa fuulaa</link>"
-#: format_value_userdef.xhp
+#: print_title_row.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"bm_id3143268\n"
+"print_title_row.xhp\n"
+"par_id3154371\n"
+"19\n"
"help.text"
-msgid "<bookmark_value>numbers;user-defined formatting</bookmark_value> <bookmark_value>formatting; user-defined numbers</bookmark_value> <bookmark_value>number formats; millions</bookmark_value> <bookmark_value>format codes; user-defined number formats</bookmark_value>"
-msgstr "<bookmark_value>lakkoofsota; dhangeessuu fayyadamaan qindaa'e gabatee keessatti</bookmark_value><bookmark_value>dhangeessuu; lakkoofsota fayyadamaan qindaa'an</bookmark_value><bookmark_value>dhangiiwwan lakkoofsaa; miliyoonota</bookmark_value><bookmark_value>koodiiwwan dhnagii; dhangiiwwan lakkoofsota fayyadamaan qindaa'an</bookmark_value>"
+msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Format - Print ranges - Edit</link>"
+msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Dhangii - Hammangaawwan maxxansaa - Gulaali</link>"
-#: format_value_userdef.xhp
+#: print_title_row.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"hd_id3143268\n"
-"26\n"
+"print_title_row.xhp\n"
+"par_id3146113\n"
+"20\n"
"help.text"
-msgid "<variable id=\"format_value_userdef\"><link href=\"text/scalc/guide/format_value_userdef.xhp\" name=\"User-defined Number Formats\">User-defined Number Formats</link></variable>"
-msgstr "<variable id=\"format_value_userdef\"><link href=\"text/scalc/guide/format_value_userdef.xhp\" name=\"User-defined Number Formats\">Dhangiiwwan Lakkoofsaa Fayyadamaan qindaa'an</link> </variable>"
+msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format - Page - (Header / Footer)\">Format - Page - (Header / Footer)</link>"
+msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format - Page - (Header / Footer)\">Dhangii - Fuula - (Irraantoo / Jalaantoo)</link>"
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3150400\n"
-"1\n"
+"printranges.xhp\n"
+"tit\n"
"help.text"
-msgid "You can define your own number formats to display numbers in <item type=\"productname\">%PRODUCTNAME</item> Calc."
-msgstr "Lakkoofsota <item type=\"productname\">%PRODUCTNAME</item> Calc keessatti mul'isuuf dhangiiwwan lakkoofsaa mataa keetii qindeessuu dandeessa."
+msgid "Using Print Ranges on a Spreadsheet"
+msgstr "Wardii irratti Hammangaawwan Maxxansaa Fayyadamuu"
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3150767\n"
-"2\n"
+"printranges.xhp\n"
+"bm_id14648\n"
"help.text"
-msgid "As an example, to display the number 10,200,000 as 10.2 Million:"
-msgstr "akka fakkeenyaatti, lakkoofsa 10,200,000 akka miliyoona 10.2 tti mul'isuuf:"
+msgid "<bookmark_value>exporting;cells</bookmark_value><bookmark_value>printing; cells</bookmark_value><bookmark_value>ranges;print ranges</bookmark_value><bookmark_value>PDF export of print ranges</bookmark_value><bookmark_value>cell ranges; printing</bookmark_value><bookmark_value>cells; print ranges</bookmark_value><bookmark_value>print ranges</bookmark_value><bookmark_value>clearing, see also deleting/removing</bookmark_value><bookmark_value>defining;print ranges</bookmark_value><bookmark_value>extending print ranges</bookmark_value><bookmark_value>deleting;print ranges</bookmark_value>"
+msgstr "<bookmark_value>alerguu;man'eelee</bookmark_value><bookmark_value>maxxansuu; man'eelee</bookmark_value><bookmark_value>hangiiwwan;hangiiwwan maxxansaa</bookmark_value><bookmark_value>hangiiwwan maxxansaa alerga PDF</bookmark_value><bookmark_value>hangiiwwan man'ee; maxxansuu</bookmark_value><bookmark_value>man'eelee; hangiiwwan maxxansaa</bookmark_value><bookmark_value>hangiiwwan maxxansaa</bookmark_value><bookmark_value>qulqulleessuu, haquu/balleessuu ilaali</bookmark_value><bookmark_value>ibsuu;hangiiwwan maxxansaa</bookmark_value><bookmark_value>hangiiwwan maxxansaa bal'isuu</bookmark_value><bookmark_value>haquu;hangiiwwan maxxansaa</bookmark_value>"
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3150868\n"
-"3\n"
+"printranges.xhp\n"
+"par_idN108D7\n"
"help.text"
-msgid "Select the cells to which you want to apply a new, user-defined format."
-msgstr "Maadheelee kan dhangii haaraa, fayyadamaan qindaa'e irratti raawwachuu barbaaddu filadhu."
+msgid "<variable id=\"printranges\"><link href=\"text/scalc/guide/printranges.xhp\">Defining Print Ranges on a Sheet</link> </variable>"
+msgstr "<variable id=\"printranges\"><link href=\"text/scalc/guide/printranges.xhp\">Wardii irratti Hangiiwwan Maxxansaa Ibsuu</link> </variable>"
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3149664\n"
-"4\n"
+"printranges.xhp\n"
+"par_idN108F5\n"
"help.text"
-msgid "Choose <emph>Format - Cells - Numbers</emph>."
-msgstr "<emph>Dhangii - Man'eelee - Lakkoofsota</emph> fili."
+msgid "You can define which range of cells on a spreadsheet to print."
+msgstr "Hammangaa maadheelee kam akka wardii keessatti maxxansitu qindeessuu dandeessa."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3149260\n"
-"5\n"
+"printranges.xhp\n"
+"par_idN108FB\n"
"help.text"
-msgid "In the <emph>Categories</emph> list box select \"User-defined\"."
-msgstr "Sanduuqa tarree <emph>Akaakuuwwan</emph> keessatti \"Fayyadamaan qindaa'e\" filadhu."
+msgid "The cells on the sheet that are not part of the defined print range are not printed or exported. Sheets without a defined print range are not printed and not exported to a PDF file, unless the document uses the Excel file format."
+msgstr "Maadheeleen wardii irraa kan qaama hammangaa maxxansaa qindaa'e hin taane hin maxxansaman ykn alergaman. Wardiileen hammanga maxxansaa qindaa'e hin qabne hin maxxansaman akkasumas gara faayilii PDF hin alergaman, yoo galmee dhangee faayilii Excel fayyadame malee."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3148646\n"
-"6\n"
+"printranges.xhp\n"
+"par_idN1077A\n"
"help.text"
-msgid "In the <emph>Format code</emph> text box enter the following code:"
-msgstr "Sanduuqa barruu <emph>Koodii dhangii</emph> keessatti koodii armaan gadii galchi:"
+msgid "For files opened in Excel format, all sheets that do not contain a defined print range are printed. The same behavior occurs when you export the Excel formatted spreadsheet to a PDF file."
+msgstr "Faayiloota dhangii Excel dhaan banamaniif, wardiileen hundi kan hammangaa maxxansuu qindaa'e hin qabne ni maxxansamu. Yeroo wardii Excel dhangeeffame gara faayilii PDF alergitus amaluma fakkaataatu mul'ata."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3152596\n"
-"7\n"
+"printranges.xhp\n"
+"par_idN108FE\n"
"help.text"
-msgid "0.0,, \"Million\""
-msgstr "0.0,, \"Miliyoona\""
+msgid "To Define a Print Range"
+msgstr "Hammangaa Maxxansaa Qindeessuu"
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3144764\n"
-"8\n"
+"printranges.xhp\n"
+"par_idN10905\n"
"help.text"
-msgid "Click OK."
-msgstr "TOLE cuqaasi."
+msgid "Select the cells that you want to print."
+msgstr "Maadheelee maxxansuu barbaaddu filadhu."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3155417\n"
-"9\n"
+"printranges.xhp\n"
+"par_idN10909\n"
"help.text"
-msgid "The following table shows the effects of rounding, thousands delimiters (,), decimal delimiters (.) and the placeholders # and 0."
-msgstr "Gabateen armaan gadii bu'aalee sissiqsuu, daangessoota kumaa(,), daangessoota deesiimaalii(.), fi iddooqota # fi 0 agarsiisa."
+msgid "Choose <emph>Format - Print Ranges - Define</emph>."
+msgstr "<emph>Dhangii - Hammangaawwan Maxxansaa - Qindeessi</emph> filadhu."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3146971\n"
-"10\n"
+"printranges.xhp\n"
+"par_idN10910\n"
"help.text"
-msgid "Number"
-msgstr "Lakkoofsa"
+msgid "To Add Cells to a Print Range"
+msgstr "Maadheelee gara Hammangaa Maxxansaatti Dabaluu"
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3154757\n"
-"11\n"
+"printranges.xhp\n"
+"par_idN10917\n"
"help.text"
-msgid ".#,, \"Million\""
-msgstr ".#,, \"Miliyoona\""
+msgid "Select the cells that you want to add to the existing print range."
+msgstr "Maadheelee kan gara hammangaa maxxansaa jiranitti dabaluu barbaaddu filadhu."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3147338\n"
-"12\n"
+"printranges.xhp\n"
+"par_idN1091B\n"
"help.text"
-msgid "0.0,, \"Million\""
-msgstr "0.0,, \"Miliyoona\""
+msgid "Choose <emph>Format - Print Ranges - Add</emph>."
+msgstr "<emph>Dhangii - Fuulaa</emph> fili."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3146920\n"
-"13\n"
+"printranges.xhp\n"
+"par_idN10922\n"
"help.text"
-msgid "#,, \"Million\""
-msgstr "#,, \"Miliyoona\""
+msgid "To Clear a Print Range"
+msgstr "Hammangaa Maxxansaa Qulqulleessuu"
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3147344\n"
-"14\n"
+"printranges.xhp\n"
+"par_idN10929\n"
"help.text"
-msgid "10200000"
-msgstr "10200000"
+msgid "Choose <emph>Format - Print Ranges - Remove</emph>."
+msgstr "<emph>Dhangii - Hammangaawwan Maxxansaa - Haqi</emph> filadhu."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3147003\n"
-"15\n"
+"printranges.xhp\n"
+"par_idN10953\n"
"help.text"
-msgid "10.2 Million"
-msgstr "Miliyoona 10.2"
+msgid "Using the Page Break Preview to Edit Print Ranges"
+msgstr "Hammangaawwan Maxxansaa Gulaaluuf Durargii Cita Fuulaa Fayyadamuu"
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3166426\n"
-"16\n"
+"printranges.xhp\n"
+"par_idN1093E\n"
"help.text"
-msgid "10.2 Million"
-msgstr "Miliyoona 10.2"
+msgid "In the <emph>Page Break Preview</emph>, print ranges as well as page break regions are outlined by a blue border and contain a centered page number in gray. Nonprinting areas have a gray background."
+msgstr "<emph>Durargii Cita Fuulaa</emph> keessatti, hammangaawwan maxxansaa akkasumas kutaaleen cita fuulaa handaara cuquliisaan tooreffamanii lakkoofsa fuulaa halluu daalachaa gidduutti qabatu."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3155113\n"
-"17\n"
+"printranges.xhp\n"
+"par_id3153143\n"
+"8\n"
"help.text"
-msgid "10 Million"
-msgstr "Miliyoona 10"
+msgid "To define a new page break region, drag the border to a new location. When you define a new page break region, an automatic page break is replaced by a manual page break."
+msgstr "Kutaa cita fuulaa haaraa qindeessuuf, handaara gara argama haaraatti harkisi. Yeroo kutaa cita fuulaa haaraa qindeessitu, citni fuulaa ufmaa cita fuulaa harkaatiin bakka bu'a."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3150369\n"
-"18\n"
+"printranges.xhp\n"
+"par_idN10930\n"
"help.text"
-msgid "500000"
-msgstr "500000"
+msgid "To View and Edit Print Ranges"
+msgstr "Hammangaawwan Maxxansaa Arguu fi Gulaaluu"
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3145585\n"
-"19\n"
+"printranges.xhp\n"
+"par_idN10937\n"
"help.text"
-msgid ".5 Million"
-msgstr "Miliyoona .5"
+msgid "Choose <emph>View - Page Break Preview</emph>."
+msgstr "<emph>Argi - Durargii Cita Fuulaa</emph> fili."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3154486\n"
-"20\n"
+"printranges.xhp\n"
+"par_idN1082A\n"
"help.text"
-msgid "0.5 Million"
-msgstr "Miliyoona 0.5"
+msgid "To change the default zoom factor of the <emph>Page Break Preview</emph>, double click the percentage value on the <emph>Status</emph> bar, and select a new zoom factor."
+msgstr "Lakkoofsa guddisuu durtuu <emph>Durargii Cita Fuulaa</emph> jijjiiruuf, gatii persentii kabala <emph>Haala</emph> irra jiru lamcuqaasiitii, lakkoofsa guddisuu haaraa filadhu."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3146114\n"
-"21\n"
+"printranges.xhp\n"
+"par_idN10836\n"
"help.text"
-msgid "1 Million"
-msgstr "Miliyoona 1"
+msgid "Edit the print range."
+msgstr "Hammangaa maxxansuu gulaali"
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3155810\n"
-"22\n"
+"printranges.xhp\n"
+"par_idN10944\n"
"help.text"
-msgid "100000000"
-msgstr "100000000"
+msgid "To change the size of a print range, drag a border of the range to a new location."
+msgstr "Hanga hammangaa maxxansaa jijjiiruuf, hammangaa handaaraa gara bakka haaraatti harkisi."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3153818\n"
-"23\n"
+"printranges.xhp\n"
+"par_id3151075\n"
+"12\n"
"help.text"
-msgid "100. Million"
-msgstr "Miliyoona 100."
+msgid "To delete a manual page break that is contained in a print range, drag the border of the page break outside of the print range."
+msgstr "Cita fuulaa harkaa kan hammangaa maxxansaa keessaa balleessuuf, handaara cita fuulaa ala hammangaa maxxansaatti harkisi."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3151241\n"
-"24\n"
+"printranges.xhp\n"
+"par_idN10948\n"
"help.text"
-msgid "100.0 Million"
-msgstr "Miliyoona 100.0"
+msgid "To clear a print range, drag a border of the range onto the opposite border of the range."
+msgstr "Hammangaa maxxansaa qulqulleessuuf, handaara hammangaa gara gubbaa handaara hammangaa faallaatti harkisi."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3144771\n"
-"25\n"
+"printranges.xhp\n"
+"par_idN10862\n"
"help.text"
-msgid "100 Million"
-msgstr "Miliyoona 100"
+msgid "To exit the <emph>Page Break Preview</emph>, choose <emph>View - Normal</emph>."
+msgstr "<emph>Durargii Cita Fuulaa</emph> dhaamsuuf, <emph>Argi - Baratamaa</emph> filadhu."
-#: edit_multitables.xhp
+#: printranges.xhp
msgctxt ""
-"edit_multitables.xhp\n"
+"printranges.xhp\n"
+"par_idN109CF\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05080300.xhp\">Editing Print Ranges</link>"
+msgstr "<link href=\"text/scalc/01/05080300.xhp\">Hammangaawwan Maxxansaa Gulaaluu</link>"
+
+#: relativ_absolut_ref.xhp
+msgctxt ""
+"relativ_absolut_ref.xhp\n"
"tit\n"
"help.text"
-msgid "Copying to Multiple Sheets"
-msgstr "Wardiilee Baay'eetti Garagalchuu"
+msgid "Addresses and References, Absolute and Relative"
+msgstr "Teessoowwanii fi Wabiilee, Of danda'aa fi Hirkataa"
-#: edit_multitables.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"edit_multitables.xhp\n"
-"bm_id3149456\n"
+"relativ_absolut_ref.xhp\n"
+"bm_id3156423\n"
"help.text"
-msgid "<bookmark_value>copying;values, to multiple sheets</bookmark_value><bookmark_value>pasting;values in multiple sheets</bookmark_value><bookmark_value>data;inserting in multiple sheets</bookmark_value> <bookmark_value>sheets; simultaneous multiple filling</bookmark_value>"
-msgstr "<bookmark_value>garagalchuu;gatiiwwan, wardiilee baay'eetti</bookmark_value><bookmark_value>maxxansuu;gatiiwwan wardiilee baay'ee keessaa</bookmark_value><bookmark_value>deetaa;wardiilee baay'ee keessatti saaguu</bookmark_value><bookmark_value>wardiilee;guutinsa baay'ee altokkoo</bookmark_value>"
+msgid "<bookmark_value>addressing; relative and absolute</bookmark_value><bookmark_value>references; absolute/relative</bookmark_value><bookmark_value>absolute addresses in spreadsheets</bookmark_value><bookmark_value>relative addresses</bookmark_value><bookmark_value>absolute references in spreadsheets</bookmark_value><bookmark_value>relative references</bookmark_value><bookmark_value>references; to cells</bookmark_value><bookmark_value>cells; references</bookmark_value>"
+msgstr "<bookmark_value>teessessuu; hirkataa fi of danda'aa</bookmark_value><bookmark_value>wabiilee; of danda'aa/hirkataa</bookmark_value><bookmark_value>teessoowwan of danda'oo wardiilee keessaa</bookmark_value><bookmark_value>teessoowwan hirkatoo</bookmark_value><bookmark_value>wabiilee of danda'oo wardiilee keessaa</bookmark_value><bookmark_value>wabiilee hirkataa</bookmark_value><bookmark_value>wabiilee; gara maadheeleetti</bookmark_value><bookmark_value>maadheelee; wabiilee</bookmark_value>"
-#: edit_multitables.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"edit_multitables.xhp\n"
-"hd_id3149456\n"
-"3\n"
+"relativ_absolut_ref.xhp\n"
+"hd_id3156423\n"
+"53\n"
"help.text"
-msgid "<variable id=\"edit_multitables\"><link href=\"text/scalc/guide/edit_multitables.xhp\" name=\"Copying to Multiple Sheets\">Copying to Multiple Sheets</link> </variable>"
-msgstr "<variable id=\"edit_multitables\"><link href=\"text/scalc/guide/edit_multitables.xhp\" name=\"Copying to Multiple Sheets\">Wardiilee Baay'eetti Garagalchuu</link> </variable>"
+msgid "<variable id=\"relativ_absolut_ref\"><link href=\"text/scalc/guide/relativ_absolut_ref.xhp\" name=\"Addresses and References, Absolute and Relative\">Addresses and References, Absolute and Relative</link></variable>"
+msgstr "<variable id=\"relativ_absolut_ref\"><link href=\"text/scalc/guide/relativ_absolut_ref.xhp\" name=\"Addresses and References, Absolute and Relative\">Teessoowwanii fi Wabiilee, Of danda'aa fi Hirkataa</link></variable>"
-#: edit_multitables.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"edit_multitables.xhp\n"
-"par_id3150868\n"
-"6\n"
+"relativ_absolut_ref.xhp\n"
+"hd_id3163712\n"
+"3\n"
"help.text"
-msgid "In $[officename] Calc, you can insert values, text or formulas that are simultaneously copied to other selected sheets of your document."
-msgstr "$[officename] Calc keessatti, gatiiwwan, barruu ykn foormulaawwan kan altokkotti gara wardiilee galmee kee keessaa filataman birootti garagalchaman saaguu dandeessa."
+msgid "Relative Addressing"
+msgstr "Teessessuu Hirkataa"
-#: edit_multitables.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"edit_multitables.xhp\n"
-"par_id3153768\n"
-"8\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3146119\n"
+"4\n"
"help.text"
-msgid "Select all desired sheets by holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key and clicking the corresponding register tabs that are still gray at the bottom margin of the workspace. All selected register tabs are now white."
-msgstr ""
+msgid "The cell in column A, row 1 is addressed as A1. You can address a range of adjacent cells by first entering the coordinates of the upper left cell of the area, then a colon followed by the coordinates of the lower right cell. For example, the square formed by the first four cells in the upper left corner is addressed as A1:B2."
+msgstr "Maadheen sarjaa A, tarree 1 keessaa A1 ta'ee teessoo argata. Jalqaba koordineetii maadhee gubbaa bitaa bal'inaa galchuudhaan, achiin buufata xiqqaa koordineetii maadhee jala mirgaan hordofamuun hammangaa maadheelee wal cinaa teessessuu dandeessa. Fakkeenyaaf, iskuweeriin maadheelee afran jalqabaatiin xiyyoo gubbaa bitaa keessatti uumamu akka A1:B2 tti wabeeffama."
-#: edit_multitables.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"edit_multitables.xhp\n"
-"par_idN10614\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3154730\n"
+"5\n"
"help.text"
-msgid "You can use Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down to select multiple sheets using the keyboard."
-msgstr "Wardiilee danuu gabatee cuqootiin fayyadamuudhaan filachuuf Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up ykn Page Down fayyadamuu dandeessa."
+msgid "By addressing an area in this way, you are making a relative reference to A1:B2. Relative here means that the reference to this area will be adjusted automatically when you copy the formulas."
+msgstr "Bal'ina haala kanaan teessessuun, wabii hirkataa gara A1:B2 gochaa jirta. Hirkataa jechuun asitti akka wabiin gara bal'ina kanaa ufmaan yeroo foormulaawwan garagalchitu akka sirreeffamu dha."
-#: edit_multitables.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"edit_multitables.xhp\n"
-"par_id3147435\n"
-"7\n"
+"relativ_absolut_ref.xhp\n"
+"hd_id3149377\n"
+"6\n"
"help.text"
-msgid "Now when you insert values, text or formulas into the active sheet, they will also appear in the identical positions in the other selected sheets. For example, data entered in cell A1 of the active sheet is automatically entered into cell A1 of any other seleted sheet."
-msgstr "Amma yeroo gatiiwwan, barruu ykn foormulaawwan wardii keessatti saagdu, wardiilee biroo filataman keessatti qubannoo walfakkaatu irratti argamu. Fakkeenyaaf, deetaa man'ee A1 wardii ka'aa keessatti galfame man'ee A1 wardii filatame kamiyyuutti ofmaan galfama."
+msgid "Absolute Addressing"
+msgstr "Teessessuu Of danda'aa"
-#: sorted_list.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"sorted_list.xhp\n"
-"tit\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3154943\n"
+"7\n"
"help.text"
-msgid "Applying Sort Lists"
-msgstr "Tarreewwan Fo'uu Raawwachuu"
+msgid "Absolute references are the opposite of relative addressing. A dollar sign is placed before each letter and number in an absolute reference, for example, $A$1:$B$2."
+msgstr "Wabiileen of danda'oo faallaa teessessuu hirkataa ti. Mallattoon doolaarii fuuldura qubee fi lakkoofsota wabii of danda'aa keessaa, fakkeenyaaf, $A$1:$B$2 taa'a."
-#: sorted_list.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"sorted_list.xhp\n"
-"bm_id3150870\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3147338\n"
+"36\n"
"help.text"
-msgid "<bookmark_value>filling;customized lists</bookmark_value><bookmark_value>sort lists;applying</bookmark_value><bookmark_value>defining;sort lists</bookmark_value><bookmark_value>geometric lists</bookmark_value><bookmark_value>arithmetic lists</bookmark_value><bookmark_value>series;sort lists</bookmark_value><bookmark_value>lists; user-defined</bookmark_value><bookmark_value>customized lists</bookmark_value>"
-msgstr "<bookmark_value>guutuu;tarreewwan maamiloo</bookmark_value><bookmark_value>tarreewwan fo'uu;raawwachuu</bookmark_value><bookmark_value>qindeessuu;tarreewwan fo'uu</bookmark_value><bookmark_value>tarreewwan ji'oomeetirii</bookmark_value><bookmark_value>tarreewwan herregaa</bookmark_value><bookmark_value>walfaannee;tarreewwan fo'uu</bookmark_value><bookmark_value>tarreewwan; hayyadamaan kan qindaa'e</bookmark_value><bookmark_value>tarreewwan maamiloo</bookmark_value>"
+msgid "$[officename] can convert the current reference, in which the cursor is positioned in the input line, from relative to absolute and vice versa by pressing Shift +F4. If you start with a relative address such as A1, the first time you press this key combination, both row and column are set to absolute references ($A$1). The second time, only the row (A$1), and the third time, only the column ($A1). If you press the key combination once more, both column and row references are switched back to relative (A1)"
+msgstr "$[officename] wabii ammee jijjiiruu danda'a, kan qareen sarara naqaa keessa qubatu, hirkataa irraa gara of danda'aattii fi garagaltoon Shift +F4 dhiibuun. Yoo teessoo hirkataa kan akka A1 dhaan jalqabde, yeroo jalqaba makaa furtuuwwan kanaan jalqabdu, tarree fi sarjaan lamaanuu gara wabiilee of dandaa'aatti qindaa'u($A$1). Yeroo lammaffaa, tarree (A$1) qofa, fi yeroo sadaffaa, tarree$A1) qofa. Yoo makaa furtuuwwanii ammas dabaltee tuqxe, wabiileen tarree fi sarjaa lamaanuu gara hirkataatti deebi'u(A1)"
-#: sorted_list.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"sorted_list.xhp\n"
-"hd_id3150870\n"
-"3\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3153963\n"
+"52\n"
"help.text"
-msgid "<variable id=\"sorted_list\"><link href=\"text/scalc/guide/sorted_list.xhp\" name=\"Applying Sort Lists\">Applying Sort Lists</link> </variable>"
-msgstr "<variable id=\"sorted_list\"><link href=\"text/scalc/guide/sorted_list.xhp\" name=\"Applying Sort Lists\">Tarreewwan Fo'uu Raawwachuu</link> </variable>"
+msgid "$[officename] Calc shows the references to a formula. If, for example you click the formula =SUM(A1:C5;D15:D24) in a cell, the two referenced areas in the sheet will be highlighted in color. For example, the formula component \"A1:C5\" may be in blue and the cell range in question bordered in the same shade of blue. The next formula component \"D15:D24\" can be marked in red in the same way."
+msgstr "$[officename] Calc wabiilee foormulaatti jiran agarsiisa. Yoo, fakkeenyaaf foormulaa =IDA'A(A1:C5;D15:D24) man'ee keessaa cuqaaste, bal'inoonni wardii keessatti wabeeffataman lamaan halluun shoolamu. Fakkeenyaaf, qabeentaan foormulaa \"A1:C5\" cuquliisaan ta'uu danda'a akkasumas hammangaan man'ee gaaffii keessaa diba halluu walfakkaatuun cuquliisaan handaaramuu danda'a. Qabeentaan foormulaa ittaanu \"D15:D24\" diimaan haaluma kanaan mallattaa'uu danda'a."
-#: sorted_list.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"sorted_list.xhp\n"
-"par_id3159154\n"
-"7\n"
+"relativ_absolut_ref.xhp\n"
+"hd_id3154704\n"
+"29\n"
"help.text"
-msgid "Sort lists allow you to type one piece of information in a cell, then drag it to fill in a consecutive list of items."
-msgstr "Tarreewwan fo'uu odeeffannoo maadhee keessatti barreessuu si dandeessisu, achiin tarree waantota walitti aananii guutuuf harkisi."
+msgid "When to Use Relative and Absolute References"
+msgstr "Yeroo Wabiilee Hirkatoo fi Of danda'oo Fayyadamnu"
-#: sorted_list.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"sorted_list.xhp\n"
-"par_id3148645\n"
-"4\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3147346\n"
+"8\n"
"help.text"
-msgid "For example, enter the text \"Jan\" or \"January\" in an empty cell. Select the cell and click the mouse on the lower right corner of the cell border. Then drag the selected cell a few cells to the right or downwards. When you release the mouse button, the highlighted cells will be filled with the names of the months."
-msgstr "Fakkeenyaaf, barruu \"Ama\" ykn \"Amajjii\" maadhee duwwaa keessatti galchi. Maadhee filadhuutii xiyyoo jala mirgaa kan handaara maadhee irratti hantuutee cuqaasi. Achiin maadhee filatame maadheelee muraasa irra gara mirgaatti ykn asiin gadi harkisi. Yeroo qabduu hantuutee gad dhiistu, maadheeleen shoolaman maqaalee ji'ootaatiin guutamu."
+msgid "What distinguishes a relative reference? Assume you want to calculate in cell E1 the sum of the cells in range A1:B2. The formula to enter into E1 would be: =SUM(A1:B2). If you later decide to insert a new column in front of column A, the elements you want to add would then be in B1:C2 and the formula would be in F1, not in E1. After inserting the new column, you would therefore have to check and correct all formulas in the sheet, and possibly in other sheets."
+msgstr "Wabii hirkataa maaltu adda baasaa? Akka man'ee E1 keessatti ida'ama man'eelee hammangaa A1:B2 shallagdu jedhii yaadi. Foormulaan E1 keessatti galchitu:=IDA'A(A1:B2) dha. Yoo booda sarjaa haaraa fuuldura sarjaa A irratti saaguuf murteessitu, miseensonni dabaluu barbaaddu achiin B1:C2 keessatti ta'ee foormulaan F1 keessatti ta'a, E1 keessatti miti. Erga sarjaa haaraa saagdee booda, kanaafuu foormulaawwan wardii keessaa hunda mirkaneessuu fi sirreessuu qabda, akkasumas wardiilee biroo keessatti."
-#: sorted_list.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"sorted_list.xhp\n"
-"par_id2367931\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3155335\n"
+"9\n"
"help.text"
-msgid "Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> if you do not want to fill the cells with different values."
-msgstr ""
+msgid "Fortunately, $[officename] does this work for you. After having inserted a new column A, the formula =SUM(A1:B2) will be automatically updated to =SUM(B1:C2). Row numbers will also be automatically adjusted when a new row 1 is inserted. Absolute and relative references are always adjusted in $[officename] Calc whenever the referenced area is moved. But be careful if you are copying a formula since in that case only the relative references will be adjusted, not the absolute references."
+msgstr "Carraan, $[officename] hojii kana siif hojjeta. Erga sarjaa haaraa A saagdee booda, foormulaan =IDA'A(A1:B2) ufmaan gara =IDA'A(B1:C2) fooyya'a. Lakkoofsonni tarrees ufmaan yeroo tarree1 haaraa saagamu sirreeffamu. Wabiileen of danda'aa fi hirkataa $[officename] Calc keessatti hoggayyuu yeroo bal'inni wabeeffame deemsifame ni sirreeffamu. Garuu yoo foormulaa garagalchitu waan haala kanaan wabiileen hirkatoo qofti sirreeffamaniif, wabiilee of dandaa'oo waan hin taaneef of eeggadhu."
-#: sorted_list.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"sorted_list.xhp\n"
-"par_id3152577\n"
-"5\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3145791\n"
+"39\n"
"help.text"
-msgid "The predefined series can be found under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</emph>. You can also create your own lists of text strings tailored to your needs, such as a list of your company's branch offices. When you use the information in these lists later (for example, as headings), just enter the first name in the list and expand the entry by dragging it with your mouse."
-msgstr ""
+msgid "Absolute references are used when a calculation refers to one specific cell in your sheet. If a formula that refers to exactly this cell is copied relatively to a cell below the original cell, the reference will also be moved down if you did not define the cell coordinates as absolute."
+msgstr "Wabiileen of danda'oon yeroo shallaggiin maadhee murtaa'e tokko wardii kee keessatti wabeeffatu fayyadu. Yoo foormulaan sirriitti maadhee kana wabeeffatu hirkataan gara maadhee jala maadhee jalqabaatti garagalchame, wabiinis yoo koordineetii maadhee akka of danda'aatti hin qindeessine gara deema."
-#: sorted_list.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"sorted_list.xhp\n"
-"par_id3147434\n"
-"6\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3147005\n"
+"10\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Sort lists</link>"
-msgstr "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Tarreewwan fo'i</link>"
+msgid "Aside from when new rows and columns are inserted, references can also change when an existing formula referring to particular cells is copied to another area of the sheet. Assume you entered the formula =SUM(A1:A9) in row 10. If you want to calculate the sum for the adjacent column to the right, simply copy this formula to the cell to the right. The copy of the formula in column B will be automatically adjusted to =SUM(B1:B9)."
+msgstr "Yeroo tarreewwanii fi sarjaaleen saagaman irraa kan hafe, wabiileen yeroo foormulaan dura man'eelee murtaa'aa wabeeffatee jiru gara bal'ina wardii biraatti garagalchamu jijjiiramuu danda'a. Akka foormulaa =IDA'A(A1:A9) tarree 10 keessa galchiteetti yaadi. Yoo ida'ama sarjaa wal cinaa gara mirgaatiif shallaguu barbaadde, salphumatti foormulaa kana man'ee keessatti gara gara mirgaatti garagalchi. Garagalchi foormulaa sarjaa B keessaa ufmaan gara =IDA'A(B1:B9) sirreeffama."
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
+"rename_table.xhp\n"
"tit\n"
"help.text"
-msgid "Entering Formulas"
-msgstr "Foormulaawwan Galchuu"
+msgid "Renaming Sheets"
+msgstr "Wardiilee Maqaa jijjiiri"
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"bm_id3150868\n"
+"rename_table.xhp\n"
+"bm_id3150398\n"
"help.text"
-msgid "<bookmark_value>formula bar; input line</bookmark_value><bookmark_value>input line in formula bar</bookmark_value><bookmark_value>formulas; inputting</bookmark_value><bookmark_value>inserting;formulas</bookmark_value>"
-msgstr "<bookmark_value>kabala foormulaa; sarara naqaa</bookmark_value><bookmark_value>sarara naqaa kabala foormulaa keessatti</bookmark_value><bookmark_value>foormulaawwan; naquu</bookmark_value><bookmark_value>saaguu;foormulaawwan</bookmark_value>"
+msgid "<bookmark_value>renaming;sheets</bookmark_value> <bookmark_value>sheet tabs;renaming</bookmark_value> <bookmark_value>tables;renaming</bookmark_value> <bookmark_value>names; sheets</bookmark_value>"
+msgstr "<bookmark_value>maqaa jijjiiruu;wardiilee</bookmark_value> <bookmark_value>caancaloota wardii;maqaa jijjiiruu</bookmark_value> <bookmark_value>gabateewwan;maqaa jijjiiruu</bookmark_value> <bookmark_value>maqaalee; wardiilee</bookmark_value>"
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"hd_id3150868\n"
-"9\n"
+"rename_table.xhp\n"
+"hd_id3150398\n"
+"11\n"
"help.text"
-msgid "<variable id=\"formula_enter\"><link href=\"text/scalc/guide/formula_enter.xhp\" name=\"Entering Formulas\">Entering Formulas</link></variable>"
-msgstr "<variable id=\"formula_enter\"><link href=\"text/scalc/guide/formula_enter.xhp\" name=\"Entering Formulas\">Foormulaawwan Galchuu</link></variable>"
+msgid "<variable id=\"rename_table\"><link href=\"text/scalc/guide/rename_table.xhp\" name=\"Renaming Sheets\">Renaming Sheets</link></variable>"
+msgstr "<variable id=\"rename_table\"><link href=\"text/scalc/guide/rename_table.xhp\" name=\"Renaming Sheets\">Wardiilee Maqaa jijjiiruu</link></variable>"
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id6848353\n"
+"rename_table.xhp\n"
+"par_id3155131\n"
+"12\n"
"help.text"
-msgid "You can enter formulas in several ways: using the icons, or by typing on the keyboard, or by a mixture of both methods."
-msgstr "Foormulaawwan karaa hedduu galchuu dandeessa: sajoolee fayyadamuu, ykn gabatee cuqoo irraa barreessuun, ykn makaa maloota lamaamiin."
+msgid "Click the name of the sheet that you want to change."
+msgstr "Maqaa wardii kan jijjiiruu barbaaddu cuqaasi."
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3145364\n"
-"10\n"
+"rename_table.xhp\n"
+"par_id3146976\n"
+"13\n"
"help.text"
-msgid "Click the cell in which you want to enter the formula."
-msgstr "Maadhee foormulaa keessa galchuu barbaadde cuqaasi."
+msgid "Open the context menu and choose the <emph>Rename Sheet</emph> command. A dialog box appears where you can enter a new name."
+msgstr "Baafata haallee baniitii ajaja <emph>Maqaa jijjiiri</emph> filadhu. Qaaqni bakki maqaa haaraa galchi ni mul'ata."
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3150012\n"
-"11\n"
+"rename_table.xhp\n"
+"par_id3149260\n"
+"15\n"
"help.text"
-msgid "Click the <emph>Function</emph> icon on the Formula Bar."
-msgstr "Sajoo <emph>Dalagaa</emph> Kabala Foormulaa irraa cuqaasi."
+msgid "Enter a new name for the sheet and click <emph>OK</emph>."
+msgstr "Maqaa haaraa wardiif galchiitii <emph>TOLE</emph> cuqaasi."
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3156441\n"
-"12\n"
+"rename_table.xhp\n"
+"par_id3149667\n"
+"27\n"
"help.text"
-msgid "You will now see an equals sign in the input line and you can begin to input the formula."
-msgstr "Amma mallattoo walqixaa sarara naqaa keessaa argita akkasumas naqa foormulaa jalqabuu dandeessa."
+msgid "Alternatively, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option key</caseinline><defaultinline>Alt key</defaultinline></switchinline> and click on any sheet name and enter the new name directly."
+msgstr "Karaa biraatiin, <switchinline select=\"sys\"><caseinline select=\"MAC\">furtuu Dirqalaa</caseinline><defaultinline>furtuu Alt</defaultinline></switchinline> gad qabuudhaan maqaa wardii feete irratti cuqaasiitii kallattiin maqaa haaraa galchi."
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3153726\n"
-"3\n"
+"rename_table.xhp\n"
+"par_id0909200810502833\n"
"help.text"
-msgid "After entering the required values, press Enter or click <emph>Accept</emph> to insert the result in the active cell. If you want to clear your entry in the input line, press Escape or click <emph>Cancel</emph>."
-msgstr "Erga gatiiwwan barbaachisan galanii booda, bu'aa man'ee kaka'aa keessatti saaguuf Enter tuqi ykn <emph>Fuudhi</emph> cuqaasi. Yoo galfata sarara naqaa kee keessaa qulqulleessuu barbaadde, Escape tuqi ykn <emph>Dhiisi</emph> cuqaasi."
+msgid "Sheet names can contain almost any character. Some naming restrictions apply when you want to save the spreadsheet to Microsoft Excel format."
+msgstr "Maqaaleen wardii arfii kamiyyuu ofkeessaa qabaachuu danda'a. Yammuu ati wardii dhangii Microsoft Exceltiin olkaa'uu barbaaddu daangessoonni maqaa tokko tokko ni fayyadamu."
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3147394\n"
-"8\n"
+"rename_table.xhp\n"
+"par_id090920081050283\n"
"help.text"
-msgid "You can also enter the values and the formulas directly into the cells, even if you cannot see an input cursor. Formulas must always begin with an equals sign."
-msgstr "Gatiiwwanii fi foormulaawwan kallattiin maadheelee keessatti galchuus dandeessa, yoo qaree naqaa arguu baatteyyuu. Foormulaawwan mallattoo walqixaatiin jalqabuu qabu."
+msgid "When saving to Microsoft Excel format, the following characters are not allowed in sheet names:"
+msgstr "Yammuu dhangiin Microsoft Exceltti olkaa'amu, arfiileen armaan gadii maqaalee wardii keessatti hin hayyamaman:"
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id4206976\n"
+"rename_table.xhp\n"
+"par_id090920081050281\n"
"help.text"
-msgid "You can also press the + or - key on the numerical keyboard to start a formula. NumLock must be \"on\". For example, press the following keys in succession:"
-msgstr "Foormulaa jalqabuuf + ykn - gabatee lakkoofsaa irraa tuquus dandeessa. NumLock \"banaa\" ta'uu qaba. Fakkeenyaaf, walitti aansiitii furtuuwwan kanaa gadii tuqi:"
+msgid "colon :"
+msgstr "Xuqlamee :"
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id1836909\n"
+"rename_table.xhp\n"
+"par_id0909200810502897\n"
"help.text"
-msgid "+ 5 0 - 8 Enter"
-msgstr "+ 5 0 - 8 Enter"
+msgid "back slash \\"
+msgstr "haxaarroo duubaa \\"
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id8171330\n"
+"rename_table.xhp\n"
+"par_id090920081050299\n"
"help.text"
-msgid "You see the result <item type=\"literal\">42</item> in the cell. The cell contains the formula <item type=\"literal\">=+50-8</item>."
-msgstr "Bu'aa <item type=\"literal\">42</item> man'ee keessatti argita. Man'een foormulaa <item type=\"literal\">=+50-8</item> qabata."
+msgid "forward slash /"
+msgstr "haxaaroo fuulduraa /"
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3155764\n"
-"6\n"
+"rename_table.xhp\n"
+"par_id0909200810502913\n"
"help.text"
-msgid "If you are editing a formula with references, the references and the associated cells will be highlighted with the same color. You can now resize the reference border using the mouse, and the reference in the formula displayed in the input line also changes. <emph>Show references in color</emph> can be deactivated under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060300.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>."
-msgstr ""
+msgid "question mark ?"
+msgstr "mallattoo gaaffii ?"
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3149210\n"
-"7\n"
+"rename_table.xhp\n"
+"par_id090920081050298\n"
"help.text"
-msgid "<variable id=\"tip\">If you would like to view the calculation of individual elements of a formula, select the respective elements and press F9. For example, in the formula =SUM(A1:B12)*SUM(C1:D12) select the section SUM(C1:D12) and press F9 to view the subtotal for this area. </variable>"
-msgstr "<variable id=\"tip\">Yoo shallaggii tokkoon tokkoo miseensota foormulaa arguu barbaadde, miseensota barbaadde filiitii F9 tuqi. Fakkeenyaaf, foormulaa =IDA'A(A1:B12)*IDA'A(C1:D12) keessatti filannoo IDA'A(C1:D12) filadhuutii cita ida'ama bal'ina kanaa arguuf F9 tuqi. </variable>"
+msgid "asterisk *"
+msgstr "urjoo *"
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3150304\n"
-"5\n"
+"rename_table.xhp\n"
+"par_id0909200810502969\n"
"help.text"
-msgid "If an error occurs when creating the formula, an <link href=\"text/scalc/05/02140000.xhp\" name=\"error message\">error message</link> appears in the active cell."
-msgstr "Yoo yemmuu foormulaa uumtu dogoggorri uumame,<link href=\"text/scalc/05/02140000.xhp\" name=\"error message\">ergaa dogoggoraa</link> man'ee kaka'aa keessatti mul'ata."
+msgid "left square bracket ["
+msgstr "sadallaa isquurii bitaa ["
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3152993\n"
-"13\n"
+"rename_table.xhp\n"
+"par_id0909200810502910\n"
"help.text"
-msgid "<link href=\"text/scalc/main0206.xhp\" name=\"Formula bar\">Formula bar</link>"
-msgstr "<link href=\"text/scalc/main0206.xhp\" name=\"Formula bar\">Kabala foormulaa</link>"
+msgid "right square bracket ]"
+msgstr "sadallaa isquurii mirgaa ]"
-#: cellstyle_by_formula.xhp
+#: rename_table.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"tit\n"
+"rename_table.xhp\n"
+"par_id0909200810502971\n"
"help.text"
-msgid "Assigning Formats by Formula"
-msgstr "Dhangiiwwan Foormulaadhaan Ramaduu"
+msgid "single quote ' as the first or last character of the name"
+msgstr "mallattoo waraabbii baaqqee ' akka arfii jalqabaa ykn dhumaa maqaattii"
-#: cellstyle_by_formula.xhp
+#: rename_table.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"bm_id3145673\n"
+"rename_table.xhp\n"
+"par_id090920081050307\n"
"help.text"
-msgid "<bookmark_value>formats; assigning by formulas</bookmark_value> <bookmark_value>cell formats; assigning by formulas</bookmark_value> <bookmark_value>STYLE function example</bookmark_value> <bookmark_value>cell styles;assigning by formulas</bookmark_value> <bookmark_value>formulas;assigning cell formats</bookmark_value>"
-msgstr "<bookmark_value>dhangiiwwan; foormulaawwaniin ramaduu</bookmark_value> <bookmark_value>dhangiiwwan man'ee; foormulaawwaniin ramaduu</bookmark_value> <bookmark_value>fakkeenya dalagaa HAALATA</bookmark_value> <bookmark_value>haalatoota man'ee;assifoormulaawwaniin ramaduu</bookmark_value> <bookmark_value>foormulaawwan;dhangiiwwan man'ee ramaduu</bookmark_value>"
+msgid "In cell references, a sheet name has to be enclosed in single quotes ' if the name contains other characters than alphanumeric or underscore. A single quote contained within a name has to be escaped by doubling it (two single quotes). For example, you want to reference the cell A1 on a sheet with the following name:"
+msgstr "Maqaan arfiilee katabbii ykn jalamurii yoo ofkeessaa qabaate, wabiilee man'ee keessatti, maqaan wardii mallattoolee waraabbii baaqqee ' keessatti hammatamuu qaba. Mallattoon waraabbii baaqqeen maqaa keessatti hammatame escapedhaan dachaafamuu(mallattoolee waraabbii baaqqee) danda'a. Fakkeenyaaf, Man'ee A1 wardii irratti maqaa armaan gadiitiin wabeessuu barbaadda:"
-#: cellstyle_by_formula.xhp
+#: rename_table.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"hd_id3145673\n"
-"13\n"
+"rename_table.xhp\n"
+"par_id0909200810503071\n"
"help.text"
-msgid "<variable id=\"cellstyle_by_formula\"><link href=\"text/scalc/guide/cellstyle_by_formula.xhp\" name=\"Assigning Formats by Formula\">Assigning Formats by Formula</link> </variable>"
-msgstr "<variable id=\"cellstyle_by_formula\"><link href=\"text/scalc/guide/cellstyle_by_formula.xhp\" name=\"Assigning Formats by Formula\">Dhangiiwwan Foormulaadhaan Ramaduu</link> </variable>"
+msgid "This year's sheet"
+msgstr "Wardii waggaa kanaa"
-#: cellstyle_by_formula.xhp
+#: rename_table.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3150275\n"
-"14\n"
+"rename_table.xhp\n"
+"par_id0909200810503054\n"
"help.text"
-msgid "The STYLE() function can be added to an existing formula in a cell. For example, together with the CURRENT function, you can color a cell depending on its value. The formula =...+STYLE(IF(CURRENT()>3; \"Red\"; \"Green\")) applies the cell style \"Red\" to cells if the value is greater than 3, otherwise the cell style \"Green\" is applied."
-msgstr "Dalagaan HAALATA() foormulaa duraan man'ee keessa jirutti dabalamuu danda'a. Fakkeenyaaf, dalagaa AMMEE wajjin, gatii isaa irratti hundaa'uudhaan man'ee halleessuu dandeessa. Foormulaan =...+HAALATA(YOO(AMMEE()>3;\"Diimaa\";\"Magariisa\")) haalata man'ee \"Diimaa\" yoo gatiin irra guddaa 3 ta'e raawwata, ta'uu baannaan haalata man'ee \"Magariisa\" ni raawwata."
+msgid "The reference must be enclosed in single quotes, and the one single quote inside the name must be doubled:"
+msgstr "Wabiin mallattoolee baaqqee keessatti hammatamuu qabu, dabalatees mallattoon waraabbii maqaa keessaa lama tahuu qabuP"
-#: cellstyle_by_formula.xhp
+#: rename_table.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3151385\n"
-"15\n"
+"rename_table.xhp\n"
+"par_id0909200810503069\n"
"help.text"
-msgid "If you would like to apply a formula to all cells in a selected area, you can use the <item type=\"menuitem\">Find & Replace</item> dialog."
-msgstr "Yoo foormulaa man'eelee bal'ina filatame keessaa hundatti rawwachuu barbaadde, qaaqa <item type=\"menuitem\">Barbaadii & Bakkabuusi</item> fayyadamuu dandeessa."
+msgid "'This year''s sheet'.A1"
+msgstr "'Wardii waggaa kanaa'.A1"
-#: cellstyle_by_formula.xhp
+#: rename_table.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3149456\n"
+"rename_table.xhp\n"
+"par_id3155444\n"
"16\n"
"help.text"
-msgid "Select all the desired cells."
-msgstr "Maadheelee feete hunda filadhu."
+msgid "The name of a sheet is independent of the name of the spreadsheet. You enter the spreadsheet name when you save it for the first time as a file. The document can contain up to 256 individual sheets, which can have different names."
+msgstr "Maqaan wardii keessaa maqaa wardii guddaa irraa of danda'aa dha. Yeroo jalqaba akka faayiliitti olkeessu maqaa wardii galchi. Galmeen wardiilee hanga 256, kan maqaa adda addaa qabaachuu kan danda'an qabat."
-#: cellstyle_by_formula.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3148797\n"
-"17\n"
+"rounding_numbers.xhp\n"
+"tit\n"
"help.text"
-msgid "Select the menu command <emph>Edit - Find & Replace</emph>."
-msgstr "Ajaja baafataa <emph>Gulaali - Argachuu & Bakka buusuu</emph> filadhu."
+msgid "Using Rounded Off Numbers"
+msgstr "Lakkoofsota Sissiqanitti Fayyadamuu"
-#: cellstyle_by_formula.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3150767\n"
-"18\n"
+"rounding_numbers.xhp\n"
+"bm_id3153361\n"
"help.text"
-msgid "For the <item type=\"menuitem\">Search for</item> term, enter: .<item type=\"literal\">*</item>"
-msgstr "Tarmii <item type=\"menuitem\">Barbaadi</item> dhaaf kana galchi: .<item type=\"literal\">*</item>"
+msgid "<bookmark_value>numbers; rounded off</bookmark_value><bookmark_value>rounded off numbers</bookmark_value><bookmark_value>exact numbers in $[officename] Calc</bookmark_value><bookmark_value>decimal places; showing</bookmark_value><bookmark_value>changing;number of decimal places</bookmark_value><bookmark_value>values;rounded in calculations</bookmark_value><bookmark_value>calculating;rounded off values</bookmark_value><bookmark_value>numbers; decimal places</bookmark_value><bookmark_value>precision as shown</bookmark_value><bookmark_value>rounding precision</bookmark_value><bookmark_value>spreadsheets; values as shown</bookmark_value>"
+msgstr "<bookmark_value>lakkoofsota; sissiqsi</bookmark_value><bookmark_value>lakkoofsota sissiqsi</bookmark_value><bookmark_value>lakkoofsota sirrii $[officename] Calc keessaa</bookmark_value><bookmark_value>bakkeewwan deesiimaalii; agarsiisuu</bookmark_value><bookmark_value>jijjiiruu;lakkoofsa bakkeewwan deesiimaalii</bookmark_value><bookmark_value>gatiiwwan;shallagii keessatti sissiqan</bookmark_value><bookmark_value>shallaguu;gatiiwwan sissiqan</bookmark_value><bookmark_value>lakkoofsota; bakkeewwan deesiimaalii</bookmark_value><bookmark_value>sirrummaa akka argametti</bookmark_value><bookmark_value>sirrummaa sissiqsaa</bookmark_value><bookmark_value>wardiilee; gatiiwwan akka argamaniitti</bookmark_value>"
-#: cellstyle_by_formula.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3153770\n"
-"19\n"
+"rounding_numbers.xhp\n"
+"hd_id3156422\n"
+"2\n"
"help.text"
-msgid "\".*\" is a regular expression that designates the contents of the current cell."
-msgstr "\".*\" himannoo sirraawaa kan qabayyeewwan maadhee ammee agarsiisuu dha."
+msgid "<variable id=\"rounding_numbers\"><link href=\"text/scalc/guide/rounding_numbers.xhp\" name=\"Using Rounded Off Numbers\">Using Rounded Off Numbers</link></variable>"
+msgstr "<variable id=\"rounding_numbers\"><link href=\"text/scalc/guide/rounding_numbers.xhp\" name=\"Using Rounded Off Numbers\">Lakkoofsota sissiqanitti fayyadamuu</link></variable>"
-#: cellstyle_by_formula.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3153143\n"
-"20\n"
+"rounding_numbers.xhp\n"
+"par_id3153726\n"
+"3\n"
"help.text"
-msgid "Enter the following formula in the <item type=\"menuitem\">Replace with</item> field: <item type=\"literal\">=&+STYLE(IF(CURRENT()>3;\"Red\";\"Green\"))</item>"
-msgstr "Foormulaa armaan gadii dirree <item type=\"menuitem\">Bakkabuusii</item> keessatti galchi: <item type=\"literal\">=&+STYLE(IF(CURRENT()>3;\"Red\";\"Green\"))</item>"
+msgid "In $[officename] Calc, all decimal numbers are displayed rounded off to two decimal places."
+msgstr "$[officename] Calc keessatti, lakkoofsonni deesiimaalii marti gara bakka deesiimaalii lamaatti sissiqanii mul'atu."
-#: cellstyle_by_formula.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3146975\n"
-"21\n"
+"rounding_numbers.xhp\n"
+"hd_id3152596\n"
+"4\n"
"help.text"
-msgid "The \"&\" symbol designates the current contents of the <emph>Search for</emph> field. The line must begin with an equal sign, since it is a formula. It is assumed that the cell styles \"Red\" and \"Green\" already exist."
-msgstr "Mallattoon \"&\" qabiyyeewwan ammee dirree <emph>Barbaadi</emph> agarsiisa. Sararri waan foormulaa ta'eef mallattoo wal qixaatiin eegaluu qaba. Akka haalatootni maadhee \"Diimaa\" fi \"Magariisa\" dura jiran tilmaamama."
+msgid "To change this for selected cells"
+msgstr "Kana maadheelee filatamaniif jijjiiruuf"
-#: cellstyle_by_formula.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3149262\n"
-"22\n"
+"rounding_numbers.xhp\n"
+"par_id3154321\n"
+"5\n"
"help.text"
-msgid "Mark the fields <link href=\"text/shared/01/02100000.xhp\" name=\"Regular expressions\"><emph>Regular expressions</emph></link> and <emph>Current selection only</emph>. Click <emph>Find All</emph>."
-msgstr "Dirreewwan <link href=\"text/shared/01/02100000.xhp\" name=\"Regular expressions\"><emph>Himannoowwan sirraawaa</emph></link> fi <emph>Filannoo ammee qofa</emph> mallattoo itti godhi.<emph>Hunda Argadhu</emph> cuqaasi."
+msgid "Mark all the cells you want to modify."
+msgstr "Maadheelee fooyyessuu barbaaddu mara mallatto itti godhi."
-#: cellstyle_by_formula.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3144767\n"
-"24\n"
+"rounding_numbers.xhp\n"
+"par_id3147428\n"
+"6\n"
"help.text"
-msgid "All cells with contents that were included in the selection are now highlighted."
-msgstr "Maadheeleen hundi kan qabiyyeewwan isaanii filannoo keessa gale amma ni shoolamu."
+msgid "Choose <emph>Format - Cells</emph> and go to the <emph>Numbers</emph> tab page."
+msgstr "<emph>Dhangii - Man'eelee</emph> filiitii gara fuula caancala <emph>Lakkoofsota</emph> deemi."
-#: cellstyle_by_formula.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3147127\n"
-"23\n"
+"rounding_numbers.xhp\n"
+"par_id3153876\n"
+"7\n"
"help.text"
-msgid "Click <item type=\"menuitem\">Replace all</item>."
-msgstr "<item type=\"menuitem\">Hunda bakkabuusi</item> cuqaasi."
+msgid "In the <emph>Category</emph> field, select <emph>Number</emph>. Under <emph>Options</emph>, change the number of <emph>Decimal places</emph> and exit the dialog with OK."
+msgstr "Dirree <emph>Akaakuu</emph> keessatti, <emph>Lakkoofsa</emph> filadhu. <emph>Options</emph> jalatti, lakkoofsa <emph>Bakkee deesiimaalii</emph> jijjiiriitii qaaqa TOLE dhaan cufi.."
-#: print_exact.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"print_exact.xhp\n"
-"tit\n"
+"rounding_numbers.xhp\n"
+"hd_id3155415\n"
+"8\n"
"help.text"
-msgid "Defining Number of Pages for Printing"
-msgstr "Lakkoofsa fuulaa maxxansaaf qindeessuu"
+msgid "To change this everywhere"
+msgstr ""
-#: print_exact.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"print_exact.xhp\n"
-"bm_id3153194\n"
+"rounding_numbers.xhp\n"
+"par_id3150715\n"
+"9\n"
"help.text"
-msgid "<bookmark_value>printing; sheet counts</bookmark_value><bookmark_value>sheets; printing sheet counts</bookmark_value><bookmark_value>page breaks; spreadsheet preview</bookmark_value><bookmark_value>editing;print ranges</bookmark_value><bookmark_value>viewing;print ranges</bookmark_value><bookmark_value>previews;page breaks for printing</bookmark_value>"
-msgstr "<bookmark_value>maxxansuu; lakkaawwii wardii</bookmark_value><bookmark_value>wardii; lakkaawwii wardii maxxansuu</bookmark_value><bookmark_value>muraalee fuulaa; durargii wardii</bookmark_value><bookmark_value>gulaaluu;hammangaa maxxansi</bookmark_value><bookmark_value>arguu;hammangaa maxxansi</bookmark_value><bookmark_value>durargiiwwan;muraa fuulaa maxxansaaf</bookmark_value>"
+msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph>."
+msgstr "Galmee <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 wajjin filiitii Tab dhiibi"
-#: print_exact.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"print_exact.xhp\n"
-"hd_id3153194\n"
-"1\n"
+"rounding_numbers.xhp\n"
+"par_id3153707\n"
+"10\n"
"help.text"
-msgid "<variable id=\"print_exact\"><link href=\"text/scalc/guide/print_exact.xhp\" name=\"Defining Number of Pages for Printing\">Defining Number of Pages for Printing</link></variable>"
-msgstr "<variable id=\"print_exact\"><link href=\"text/scalc/guide/print_exact.xhp\" name=\"Defining Number of Pages for Printing\">Lakkoofsa fuulaa maxxansaaf qindeessuu</link></variable>"
+msgid "Go to the <emph>Calculate</emph> page. Modify the number of <emph>Decimal places</emph> and exit the dialog with OK."
+msgstr "Gara fuula <emph>Shallagi</emph> deemi. Lakkoofsa <emph>Bakka deesiimaalii</emph> fooyyessiitii qaaqa TOLE dhaan cufi."
-#: print_exact.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"print_exact.xhp\n"
-"par_id3153771\n"
-"2\n"
+"rounding_numbers.xhp\n"
+"hd_id3154755\n"
+"11\n"
"help.text"
-msgid "If a sheet is too large for a single printed page, $[officename] Calc will print the current sheet evenly divided over several pages. Since the automatic page break does not always take place in the optimal position, you can define the page distribution yourself."
-msgstr "Yoo wardiin fuula baaqqee maxxansamuuf irra baay'ee guddaa ta'e, $[officename] Calc wardii ammee walqixatti hiruun fuulota baay'ee irratti maxxansa. Waan citni fuulaa ufmaa hoggayyuu qubannoo waaltawaa irraa hin jirreef, tamsa'ina fuulaa mataa keetiin qindeessuu dandeessa."
+msgid "To calculate with the rounded off numbers instead of the internal exact values"
+msgstr "Gatiiwwan sirrii keessaatiin osoo hin ta'in lakkoofsota sissiqaniin shallaguu"
-#: print_exact.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"print_exact.xhp\n"
-"par_id3159155\n"
-"3\n"
+"rounding_numbers.xhp\n"
+"par_id3150045\n"
+"12\n"
"help.text"
-msgid "Go to the sheet to be printed."
-msgstr "Gara wardii maxxansamuu deemi."
+msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph>."
+msgstr "Galmee <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 wajjin filiitii Tab dhiibi"
-#: print_exact.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"print_exact.xhp\n"
-"par_id3150012\n"
-"4\n"
+"rounding_numbers.xhp\n"
+"par_id3146920\n"
+"13\n"
"help.text"
-msgid "Choose <emph>View - Page Break Preview</emph>."
-msgstr "<emph>Argi - Durargii muraa fuulaa</emph> fili."
+msgid "Go to the <emph>Calculate</emph> page. Mark the <emph>Precision as shown</emph> field and exit the dialog with OK."
+msgstr "Gara fuula <emph>Shallagi</emph> deemi. Dirree <emph>Sirrummaa akka agarsiifametti</emph> mallattoo itti gochiitii qaaqa TOLE dhaan cufi."
-#: print_exact.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"print_exact.xhp\n"
-"par_id3146974\n"
-"5\n"
+"rounding_numbers.xhp\n"
+"par_id3145790\n"
+"14\n"
"help.text"
-msgid "You will see the automatic distribution of the sheet across the print pages. The automatically created print ranges are indicated by dark blue lines, and the user-defined ones by light blue lines. The page breaks (line breaks and column breaks) are marked as black lines."
-msgstr "Tamsa'ina wardii ufmaa fuulota maxxansaa irraa ni argita. Hammangaan maxxansaa ufmaan uumaman sararoota cuquliisaa yabbuun yoo agarsiifaman, kanneen fayyadamaan qindaa'an sararoota cuquliisa haphiin agarsiifamu. Citoonni fuulaa(citoota sararaa fi citoota sarjaa) akka sararoota gurraachaatti mallatteeffamu."
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Lakkoofsota</link>"
-#: print_exact.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"print_exact.xhp\n"
-"par_id3152578\n"
-"6\n"
+"rounding_numbers.xhp\n"
+"par_id3147005\n"
+"15\n"
"help.text"
-msgid "You can move the blue lines with the mouse. You will find further options in the Context menu, including adding an additional print range, removing the scaling and inserting additional manual line and column breaks."
-msgstr "Sararoota cuquliisa hantuuteen deemsisuu dandeessa. Dirqaalaalee biroo baafata haallee keessaa, hammangaa maxxansaa dabalataa dabaluu, sarara harkaa dabalataa guddisuu fi saaguu balleessuu fi citoota sarjaa dabalatee argachuu dandeessa."
+msgid "<link href=\"text/shared/optionen/01060500.xhp\" name=\"Calculate\">Calculate</link>"
+msgstr "<link href=\"text/shared/optionen/01060500.xhp\" name=\"Calculate\">Shallagi</link>"
-#: print_exact.xhp
+#: row_height.xhp
msgctxt ""
-"print_exact.xhp\n"
-"par_id3151073\n"
-"7\n"
+"row_height.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
-msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">Argi - Durargii muraa fuulaa</link>"
+msgid "Changing Row Height or Column Width"
+msgstr "Hojjaa Tarree ykn Dalga Sarjaa jijjiiruu"
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"tit\n"
+"row_height.xhp\n"
+"bm_id3145748\n"
"help.text"
-msgid "Filtering Cell Ranges"
-msgstr "Hammangaawwam Man'ee Gingilchuu"
+msgid "<bookmark_value>heights of cells</bookmark_value><bookmark_value>cell heights</bookmark_value><bookmark_value>cell widths</bookmark_value><bookmark_value>cells; heights and widths</bookmark_value><bookmark_value>widths of cells</bookmark_value><bookmark_value>column widths</bookmark_value><bookmark_value>rows; heights</bookmark_value><bookmark_value>columns; widths</bookmark_value><bookmark_value>changing;row heights/column widths</bookmark_value>"
+msgstr "<bookmark_value>hojjaawwan maadheelee</bookmark_value><bookmark_value>hojjaawwan maadhee</bookmark_value><bookmark_value>dalgeewwan maadhee</bookmark_value><bookmark_value>maadheelee; hojjaawwanii fi dalgeewwan</bookmark_value><bookmark_value>dalgeewwan maadheelee</bookmark_value><bookmark_value>dalgeewwan sarjaa</bookmark_value><bookmark_value>tarrreewwan; hojjaawwan</bookmark_value><bookmark_value>sarjaawwan; dalgeewwan</bookmark_value><bookmark_value>jijjiiruu;hojjaawwan tarree/dalgeewwan sarjaa</bookmark_value>"
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"bm_id3153541\n"
+"row_height.xhp\n"
+"hd_id3145748\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>cell ranges;applying/removing filters</bookmark_value> <bookmark_value>filtering;cell ranges/database ranges</bookmark_value> <bookmark_value>database ranges;applying/removing filters</bookmark_value> <bookmark_value>removing;cell range filters</bookmark_value>"
-msgstr "<bookmark_value>hammangaawwan man'ee;gingilchaawwan raawwachuu/balleessuu</bookmark_value> <bookmark_value>gingilchuu;hammangaawwan man'ee/hammangaawwan kuusaa deetaa</bookmark_value> <bookmark_value>hammangaawwan kuusaa deetaa;gingilchaawwan raawwachuu/balleessuu</bookmark_value> <bookmark_value>balleessuu;gingilchaawwan hammangaa man'ee</bookmark_value>"
+msgid "<variable id=\"row_height\"><link href=\"text/scalc/guide/row_height.xhp\" name=\"Changing Row Height or Column Width\">Changing Row Height or Column Width</link></variable>"
+msgstr "<variable id=\"row_height\"><link href=\"text/scalc/guide/row_height.xhp\" name=\"Changing Row Height or Column Width\">Hojjaa Tarree ykn Dalga Sarjaa jijjiiruu</link></variable>"
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"hd_id3153541\n"
-"47\n"
+"row_height.xhp\n"
+"par_id3154017\n"
+"2\n"
"help.text"
-msgid "<variable id=\"database_filter\"><link href=\"text/scalc/guide/database_filter.xhp\" name=\"Filtering Cell Ranges\">Filtering Cell Ranges</link></variable>"
-msgstr "<variable id=\"database_filter\"><link href=\"text/scalc/guide/database_filter.xhp\" name=\"Filtering Cell Ranges\">Hammangaawwam Maadhee Gingilchuu</link></variable>"
+msgid "You can change the height of the rows with the mouse or through the dialog."
+msgstr "Hojjaa tarreewwanii hantuuteen ykn karaa qaaqaan jijjiiruu dandeessa."
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id3145069\n"
-"48\n"
+"row_height.xhp\n"
+"par_id3154702\n"
+"3\n"
"help.text"
-msgid "You can use several filters to filter cell ranges in spreadsheets. A standard filter uses the options that you specify to filter the data. An AutoFilter filters data according to a specific value or string. An advanced filter uses filter criteria from specified cells."
-msgstr "Gingilchaawwan baay'ee hammangaawwan maadhee wardiilee keessatti gingilchuuf fayyadamuu dandeessa. Gingilchaan durtii dirqaalaalee kan deetaa gingilchuuf ifteessite fayyadama. Gingilchaan ufmaa deetaa akkaataa gatii ykn diraa murtaa'eetti gingilcha. Gingilchaan olaanaa ulaagaa gingilchaa maadheelee murtaa'an irraa fayyadama."
+msgid "What is described here for rows and row height applies accordingly for columns and column width."
+msgstr "Kan asitti tarreewwanii fi hojjaa tarreetiif ibsame haaluma kanaan sarjaalee fi dalga sarjaatiif ni raawwata."
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN10682\n"
+"row_height.xhp\n"
+"hd_id3153963\n"
+"4\n"
"help.text"
-msgid "To Apply a Standard Filter to a Cell Range"
-msgstr "Gingilchaa durtii hammangaa man'eetti raawwadhu."
+msgid "Using the mouse to change the row height or column width"
+msgstr "Hojjaa tarree ykn dalga sarjaa jijjiiruuf hantuutee fayyadamuu"
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id3150398\n"
-"50\n"
+"row_height.xhp\n"
+"par_id3154020\n"
+"5\n"
"help.text"
-msgid "Click in a cell range."
-msgstr "Hammangaa maadhee keessatti cuqaasi."
+msgid "Click the area of the headers on the separator below the current row, keep the mouse button pressed and drag up or down in order to change the row height."
+msgstr "Bal'ina irraantotaa addaan baasaa jala tarree ammee irraa cuqaasi, qabduu hantuutee qabii turi,akkasumas hojjaa tarree jijjiiruuf ol ykn gad harkisi."
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN10693\n"
+"row_height.xhp\n"
+"par_id3159237\n"
+"6\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Data - Filter - Standard Filter</item>."
-msgstr "<item type=\"menuitem\">Gulaali - Gingilchi - Gingilchaawwan durtii</item> fili."
+msgid "Select the optimal row height by double-clicking the separator below the row."
+msgstr "Addaan baasaa jala tarree jiru lamcuqaasuudhaan hojjaa tarree giddugaleessa filadhu."
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id3156422\n"
-"51\n"
+"row_height.xhp\n"
+"hd_id3154659\n"
+"7\n"
"help.text"
-msgid "In the <emph>Standard Filter</emph> dialog, specify the filter options that you want."
-msgstr "Qaaqa <emph>Gingilcha Durtii</emph> keessatti,dirqaalaalee gingilchaa barbaaddu ifteessi."
+msgid "Using the dialog to change the row height or column width"
+msgstr "Hojjaa tarree ykn dalga sarjaa jijjiiruuf qaaqa fayyadamuu"
-#: database_filter.xhp
-#, fuzzy
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN106A5\n"
+"row_height.xhp\n"
+"par_id3150367\n"
+"8\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "#-#-#-#-# guide.po (PACKAGE VERSION) #-#-#-#-#\\n<emph>TOLE</emph>Cuqaasi\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\n<emph>Tole</emph>cuqaasi.\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\n<emph>TOLE</emph>cuqaasi."
+msgid "Click the row so that you achieve the focus."
+msgstr "Akka xiyyeeffannoo argattuuf tarree cuqaasi."
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id3153143\n"
-"52\n"
+"row_height.xhp\n"
+"par_id3166432\n"
+"9\n"
"help.text"
-msgid "The records that match the filter options that you specified are shown."
-msgstr "Galmeewwan kan dirqaalaalee gingilchaa ifteessite faana wal siman ni mul'atu."
+msgid "Start the context menu on the header at the left-hand side."
+msgstr "Baafata haallee irraantoo gara harka bitaa jiru irraa kaachisi."
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id3153728\n"
-"53\n"
+"row_height.xhp\n"
+"par_id3150519\n"
+"10\n"
"help.text"
-msgid "To Apply an AutoFilter to a Cell Range"
-msgstr "Ufmaan gingilchaa hammangaa maadheetti raawwachuuf"
+msgid "You will see the commands <emph>Row Height</emph> and <emph>Optimal row height</emph>. Choosing either opens a dialog."
+msgstr "Ajajoota <emph>Hojjaa</emph> fi <emph>Hojjaa tarree giddugaleessa</emph> argita. Isaan keessaa tokko filachuun qaaqa bana."
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id3144764\n"
-"54\n"
+"row_height.xhp\n"
+"par_id3154487\n"
+"11\n"
"help.text"
-msgid "Click in a cell range or a database range."
-msgstr "Hammanga maadhee ykn kuusaa deetaa keessatti cuqaasi."
+msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Row height\">Row height</link>"
+msgstr "<link href=\"text/shared/01/05340100.xhp\" name=\"Row height\">Hojjaa tarree</link>"
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id9303872\n"
+"row_height.xhp\n"
+"par_id3149408\n"
+"12\n"
"help.text"
-msgid "If you want to apply multiple AutoFilters to the same sheet, you must first define database ranges, then apply the AutoFilters to the database ranges."
-msgstr "Yoo ufmaan gingilchaa baay'ee wardii tokkotti raawwachuu barbaadde,jalqaba hammangaawwan kuusaa deetaa qindeessuu qabda,achiin ufmaan gingilchaa hammangaawwan kuusaa deetaa irratti raawwadhu."
+msgid "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal row height\">Optimal row height</link>"
+msgstr "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal row height\">Hojjaa tarree giddugaleessa</link>"
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id3154944\n"
-"55\n"
+"row_height.xhp\n"
+"par_id3153305\n"
+"13\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Data - Filter - AutoFilter</item>."
-msgstr "<item type=\"menuitem\">Deetaa - Gingilcha - Ufmaan gingilchi</item>filadhu."
+msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Column width\">Column width</link>"
+msgstr "<link href=\"text/shared/01/05340200.xhp\" name=\"Column width\">Dalga sarjaa</link>"
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN106DB\n"
+"row_height.xhp\n"
+"par_id3153815\n"
+"14\n"
"help.text"
-msgid "An arrow button is added to the head of each column in the database range."
-msgstr "Qabduun xiyyaa hammangaa kuusaa deetaa keessatti mataa sarjaa hundaatti dabalama."
+msgid "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal column width\">Optimal column width</link>"
+msgstr "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal column width\">Dalga sarjaa giddugaleessa</link>"
-#: database_filter.xhp
+#: scenario.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id3153878\n"
-"56\n"
+"scenario.xhp\n"
+"tit\n"
"help.text"
-msgid "Click the arrow button in the column that contains the value or string that you want to set as the filter criteria."
-msgstr "Qabduu xiyyaa sarjaa kan gatii ykn diraa isa ati akka ulaagaa gingilchaatti kaa'uu barbaaddu qabatu cuqaasi."
+msgid "Using Scenarios"
+msgstr "Mul'inatti fayyadamuu"
-#: database_filter.xhp
+#: scenario.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN10749\n"
+"scenario.xhp\n"
+"bm_id3149664\n"
"help.text"
-msgid "Select the value or string that you want to use as the filter criteria."
-msgstr "gatii ykn diraa akka ulaagaa gingilchaatti fayyadamuu barbaaddu filadhu."
+msgid "<bookmark_value>scenarios; creating/editing/deleting</bookmark_value><bookmark_value>opening;scenarios</bookmark_value><bookmark_value>selecting;scenarios in Navigator</bookmark_value>"
+msgstr "<bookmark_value>mul'ina; uumuu/gulaaluu/haquu</bookmark_value><bookmark_value>banuu;mul'ina</bookmark_value><bookmark_value>filachuu;mul'ina Naannessa keessaa</bookmark_value>"
-#: database_filter.xhp
+#: scenario.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN1074C\n"
+"scenario.xhp\n"
+"hd_id3125863\n"
+"1\n"
"help.text"
-msgid "The records that match the filter criteria that you selected are shown."
-msgstr "Galmeewwan kan ulaagaa gingilchaa filatte guutan ni mul'atu."
+msgid "<variable id=\"scenario\"><link href=\"text/scalc/guide/scenario.xhp\" name=\"Using Scenarios\">Using Scenarios</link></variable>"
+msgstr "<variable id=\"scenario\"><link href=\"text/scalc/guide/scenario.xhp\" name=\"Using Scenarios\">Mul'inatti Fayyadamuu</link></variable>"
-#: database_filter.xhp
+#: scenario.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN106E8\n"
+"scenario.xhp\n"
+"par_id3150869\n"
+"2\n"
"help.text"
-msgid "To Remove a Filter From a Cell Range"
-msgstr "Gingilchaa hammangaa maadhee irraa haquuf"
+msgid "A $[officename] Calc scenario is a set of cell values that can be used within your calculations. You assign a name to every scenario on your sheet. Define several scenarios on the same sheet, each with some different values in the cells. Then you can easily switch the sets of cell values by their name and immediately observe the results. Scenarios are a tool to test out \"what-if\" questions."
+msgstr "Mul'anni $[officename] Calc tuuta gatiiwwan maadhee kan shallaggii kee keessatti fayyadani dha. Maqaa tokkoon tokkoo mul'ina wardii kee irraatiif ni ramadda. Mul'inoota baay'ee wardii tokko irratti, tokkoon tokkoo isaanii gatiiwwan adda addaatiin qindeessi. Achiin tuutota gatiiwwan maadhee maqaa isaaniitiin salphaatti daddabarsitee battalumatti bu'aalee isaa hubachuu dandeessa. Mul'inoonni maadhaa gaaffiilee \"yoo-maali\" ittiin mirkaneessinu dha."
-#: database_filter.xhp
+#: scenario.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN1075C\n"
+"scenario.xhp\n"
+"hd_id3149255\n"
+"15\n"
"help.text"
-msgid "Click in a filtered cell range."
-msgstr "Hammangaa maadhee gingilchamanii keessa cuqaasi."
+msgid "Creating Your Own Scenarios"
+msgstr "Mul'inoota Mataa Keetii Uumuu"
-#: database_filter.xhp
+#: scenario.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN106EC\n"
+"scenario.xhp\n"
+"par_id3154704\n"
+"16\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Data - Filter - Remove Filter</item>."
-msgstr "<item type=\"menuitem\">Deetaa - Gingilchi - Haqi</item> fili."
+msgid "To create a scenario, select all the cells that provide the data for the scenario."
+msgstr "Mul'ina uumuuf, man'eelee hunda kan deetaa mul'inaaf kennan filadhu."
-#: database_filter.xhp
+#: scenario.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id4525284\n"
+"scenario.xhp\n"
+"par_id3154020\n"
+"17\n"
"help.text"
-msgid "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\">Wiki page about defining a data range</link>"
+msgid "Select the cells that contain the values that will change between scenarios. To select multiple cells, hold down the <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline></item> key as you click each cell."
msgstr ""
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"tit\n"
+"scenario.xhp\n"
+"par_id3150364\n"
+"18\n"
"help.text"
-msgid "Selecting Themes for Sheets"
-msgstr "Wardiileef dhamsoota filachuu"
+msgid "Choose <emph>Tools - Scenarios</emph>. The <emph>Create Scenario</emph> dialog appears."
+msgstr "<emph>Meeshaalee - Mul'inoota</emph> fili. Qaaqni <emph>Mul'ina Uumi</emph> ni mul'ata."
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"bm_id3150791\n"
+"scenario.xhp\n"
+"par_id3166426\n"
+"19\n"
"help.text"
-msgid "<bookmark_value>theme selection for sheets</bookmark_value><bookmark_value>layout;spreadsheets</bookmark_value><bookmark_value>cell styles; selecting</bookmark_value><bookmark_value>selecting;formatting themes</bookmark_value><bookmark_value>sheets;formatting themes</bookmark_value><bookmark_value>formats;themes for sheets</bookmark_value><bookmark_value>formatting;themes for sheets</bookmark_value>"
-msgstr "<bookmark_value>filannoo dhamsaa wardiileedhaaf</bookmark_value><bookmark_value>teessuma;wardiilee</bookmark_value><bookmark_value>haalatoota maadhee; filachuu</bookmark_value><bookmark_value>filachuu;dhamsoota dhangeessuu</bookmark_value><bookmark_value>wardiilee;dhamsoota dhangeessuu</bookmark_value><bookmark_value>dhangiiwwan;dhamsoota wardiileedhaaf</bookmark_value><bookmark_value>dhangeessuu;dhamsoota wardiileedhaaf</bookmark_value>"
+msgid "Enter a name for the new scenario and leave the other fields unchanged with their default values. Close the dialog with OK. Your new scenario is automatically activated."
+msgstr "Maqaa mul'inaa filiitii dirreewwan biroo gatiiwwan durtii isaa faana osoo hin jijjiiramin dhiisi. Qaaqa TOLE dhaan cufi. Mul'inni kee haaraan ufmaan kaka'a."
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"hd_id3150791\n"
-"6\n"
+"scenario.xhp\n"
+"hd_id3149664\n"
+"3\n"
"help.text"
-msgid "<variable id=\"design\"><link href=\"text/scalc/guide/design.xhp\" name=\"Selecting Themes for Sheets\">Selecting Themes for Sheets</link> </variable>"
-msgstr "<variable id=\"design\"><link href=\"text/scalc/guide/design.xhp\" name=\"Selecting Themes for Sheets\">Wardiileef Dhamsoota Filachuu</link> </variable>"
+msgid "Using Scenarios"
+msgstr "Mul'inatti fayyadamuu"
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3145786\n"
-"13\n"
+"scenario.xhp\n"
+"par_id3153415\n"
+"11\n"
"help.text"
-msgid "$[officename] Calc comes with a predefined set of formatting themes that you can apply to your spreadsheets."
-msgstr "$[officename] Calc tuuta durmurtaawwaa dhamsoota dhangeessuu kan wardiilee kee irratti raawwattu wajjin dhufa."
+msgid "Scenarios can be selected in the Navigator:"
+msgstr "Mul'inni Naannessa keessaa filatamuu danda'u:"
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3154490\n"
-"16\n"
+"scenario.xhp\n"
+"par_id3150752\n"
+"12\n"
"help.text"
-msgid "It is not possible to add themes to Calc, and they cannot be modified. However, you can modify their styles after you apply them to a spreadsheet."
-msgstr "Dhamsoota gara Calc dabaluun hin danda'amu, kanaafuu fooyya'uu hin danda'an. Garuu, haalata isaanii erga wardiitti raawwattee booda fooyyeessuu dandeessa."
+msgid "Open the Navigator with the <emph>Navigator</emph> icon <image id=\"img_id1593676\" src=\"cmd/sc_navigator.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id1593676\">Navigator icon</alt></image> on the Standard bar."
+msgstr "Naannessa sajoo <emph>Naannessa</emph> dhaan kabala durtii irraa <image id=\"img_id1593676\" src=\"cmd/sc_navigator.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id1593676\">Sajoo naannessaa</alt></image> bani."
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3154757\n"
-"17\n"
+"scenario.xhp\n"
+"par_id3155764\n"
+"13\n"
"help.text"
-msgid "Before you format a sheet with a theme, you have to apply at least one custom cell style to the cells on the sheet. You can then change the cell formatting by selecting and applying a theme in the <emph>Theme Selection</emph> dialog."
-msgstr "Osoo wardii dhamsaan hin dhangeessin dura, yoo xiqqaate haalata maadhee tokko maadheelee wardii irraatti raawwachuu qabda. Achiin dhangeessuu maadhee dhamsa qaaqa <emph>Filannoo Dhamsaa</emph> keessaa filachuu fi raawwachuu dandeessa."
+msgid "Click the <emph>Scenarios</emph> icon <image id=\"img_id7617114\" src=\"sc/imglst/na07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id7617114\">Scenarios icon</alt></image> in the Navigator."
+msgstr ""
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3156382\n"
-"18\n"
+"scenario.xhp\n"
+"par_id3154256\n"
+"14\n"
"help.text"
-msgid "To apply a custom cell style to a cell, you can open the Styles and Formatting window and, in its lower list box, set the Custom Styles view. A list of the existing custom defined cell styles will be displayed. Double click a name from the Styles and Formatting window to apply this style to the selected cells."
-msgstr "Haalata maadhee maamiloo maadhee irratti raawwachuuf, foddaa Haalataa fi Dhangeessuu banuu dandeessa, sanduuqa tarree jalaa isaa keessatti, argii Haalata Maamiloo qindeessi. Tarreen haalata maadhee maamiloo qindaa'anii jiran ni mul'atu. Haalata kana maadheelee filatamaniif fayyadamuuf maqaa foddaa Haalataa fi Dhangeessuu irraa lamcuqaasi."
+msgid "In the Navigator, you see the defined scenarios with the comments that were entered when the scenarios were created."
+msgstr "Naannessa keessatti, mul'inoota qindaa'an yaadota kan yeroo mul'inootni uumamanii turan galchaman wajjin argita."
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3153963\n"
-"19\n"
+"scenario.xhp\n"
+"par_id1243629\n"
"help.text"
-msgid "To apply a theme to a spreadsheet:"
-msgstr "Dhamsa wardiitti raawwachuu:"
+msgid "Double-click a scenario name in the Navigator to apply that scenario to the current sheet."
+msgstr "Mul'ina sana wardii ammeetiif raawwachuuf maqaa mul'inaa Naannessa keessaa lamcuqaasi."
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3146920\n"
-"15\n"
+"scenario.xhp\n"
+"par_id9044770\n"
"help.text"
-msgid "Click the <emph>Choose Themes</emph> icon in the <emph>Tools</emph> bar."
-msgstr "Sajoo <emph>Dhamsoota Filadhu</emph> kabala <emph>Meeshaalee</emph> keessaa filadhu."
+msgid "To delete a scenario, right-click the name in the Navigator and choose <emph>Delete</emph>."
+msgstr "Mul'ina balleessuuf, maqaa Naannessa keessaa mirgaan cuqaasiitii <emph>Haqi</emph> fili."
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3148488\n"
-"20\n"
+"scenario.xhp\n"
+"par_id3674123\n"
"help.text"
-msgid "The <emph>Theme Selection</emph> dialog appears. This dialog lists the available themes for the whole spreadsheet and the Styles and Formatting window lists the custom styles for specific cells."
-msgstr "Qaaqni <emph>Filannoo Dhamsaa</emph> ni mul'ata. Qaaqni kun dhamsoota jiran wardiilee guutuuf tarreessa akkasumas foddaan Haalatootaa fi Dhangeessuu haalatoota maamiloo man'eelee murtaa'aniif tarreessa."
+msgid "To edit a scenario, right-click the name in the Navigator and choose <emph>Properties</emph>."
+msgstr "Mul'ina gulaaluuf, maqaa Naannessa keessaa mirgaan cuqaasiitii <emph>Amaloota</emph> fili."
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3155114\n"
-"9\n"
+"scenario.xhp\n"
+"par_id3424481\n"
"help.text"
-msgid "In the <emph>Theme Selection </emph>dialog, select the theme that you want to apply to the spreadsheet."
-msgstr "Qaaqa <emph>Filannoo Dhamsaa</emph> keessatti, dhamsa kan wardii irratti raawwachuu barbaadde filadhu."
+msgid "To hide the border of a set of cells that are part of a scenario, open the <emph>Properties</emph> dialog for each scenario that affects the cells and clear the Display border checkbox. Hiding the border also removes the listbox on the sheet where you can choose the scenarios."
+msgstr "Handaara tuuta maadheelee kan kutaa mul'inaa dhoksuuf, qaaqa <emph>Amaloota</emph> mul'ina hunda kan maadheelee irratti raawwatu baniitii sanduuqa filannoo handaara Agarsiisi qulqulleessi. Handaara dhoksuun sanduuqa tarree bakka mul'inoota filattus ni balleessa."
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3150090\n"
-"21\n"
+"scenario.xhp\n"
+"par_id3154368\n"
+"22\n"
"help.text"
-msgid "Click OK"
-msgstr "TOLE cuqaasi."
+msgid "If you want to know which values in the scenario affect other values, choose <emph>Tools - Detective - Trace Dependents</emph>. You see arrows to the cells that are directly dependent on the current cell."
+msgstr "Yoo gatiiwwan kamitu mul'ina keessaa gatiiwwan biroo akka miidhu baruu barbaadde, <emph>Meeshaalee - Detective - Trace Dependents</emph> filadhu. Xiyyoota gara man'eelee kan man'ee ammee irratti kallattiin hirkatan argita."
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3150201\n"
-"22\n"
+"scenario.xhp\n"
+"par_id3154484\n"
+"29\n"
"help.text"
-msgid "As soon as you select another theme in the <emph>Theme Selection</emph> dialog, some of the properties of the custom style will be applied to the current spreadsheet. The modifications will be immediately visible in your spreadsheet."
-msgstr "Akkuma dhamsa biraa qaaqa <emph>Filannoo Dhamsaa</emph> keessaa filatteen, amalootni haalata maamiloo keessaa muraasni wardii ammee irratti raawwatu. Fooyyeen battalumatti wardii kee keessatti mul'ata."
+msgid "<link href=\"text/scalc/01/06050000.xhp\" name=\"Creating Scenarios\">Creating Scenarios</link>"
+msgstr "<link href=\"text/scalc/01/06050000.xhp\" name=\"Creating Scenarios\">Mul'ina Uumuu</link>"
-#: design.xhp
+#: sorted_list.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3146979\n"
-"12\n"
+"sorted_list.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Theme selection\">Theme selection</link>"
-msgstr "<link href=\"text/scalc/02/06080000.xhp\" name=\"Theme selection\">Filannoo Dhamsaa</link>"
+msgid "Applying Sort Lists"
+msgstr "Tarreewwan Fo'uu Raawwachuu"
-#: cell_unprotect.xhp
+#: sorted_list.xhp
msgctxt ""
-"cell_unprotect.xhp\n"
-"tit\n"
+"sorted_list.xhp\n"
+"bm_id3150870\n"
"help.text"
-msgid "Unprotecting Cells"
-msgstr "Man'ee dhorkuu dhiisuu"
+msgid "<bookmark_value>filling;customized lists</bookmark_value><bookmark_value>sort lists;applying</bookmark_value><bookmark_value>defining;sort lists</bookmark_value><bookmark_value>geometric lists</bookmark_value><bookmark_value>arithmetic lists</bookmark_value><bookmark_value>series;sort lists</bookmark_value><bookmark_value>lists; user-defined</bookmark_value><bookmark_value>customized lists</bookmark_value>"
+msgstr "<bookmark_value>guutuu;tarreewwan maamiloo</bookmark_value><bookmark_value>tarreewwan fo'uu;raawwachuu</bookmark_value><bookmark_value>qindeessuu;tarreewwan fo'uu</bookmark_value><bookmark_value>tarreewwan ji'oomeetirii</bookmark_value><bookmark_value>tarreewwan herregaa</bookmark_value><bookmark_value>walfaannee;tarreewwan fo'uu</bookmark_value><bookmark_value>tarreewwan; hayyadamaan kan qindaa'e</bookmark_value><bookmark_value>tarreewwan maamiloo</bookmark_value>"
-#: cell_unprotect.xhp
+#: sorted_list.xhp
msgctxt ""
-"cell_unprotect.xhp\n"
-"bm_id3153252\n"
+"sorted_list.xhp\n"
+"hd_id3150870\n"
+"3\n"
"help.text"
-msgid "<bookmark_value>cell protection; unprotecting</bookmark_value> <bookmark_value>protecting; unprotecting cells</bookmark_value> <bookmark_value>unprotecting cells</bookmark_value>"
-msgstr "<bookmark_value>dhorka man'ee; dhorkuu dhiisuu</bookmark_value> <bookmark_value>dhorkuu; man'eelee dhorkuu dhiisuu</bookmark_value> <bookmark_value>man'eelee dhorkuu dhiisuu</bookmark_value>"
+msgid "<variable id=\"sorted_list\"><link href=\"text/scalc/guide/sorted_list.xhp\" name=\"Applying Sort Lists\">Applying Sort Lists</link> </variable>"
+msgstr "<variable id=\"sorted_list\"><link href=\"text/scalc/guide/sorted_list.xhp\" name=\"Applying Sort Lists\">Tarreewwan Fo'uu Raawwachuu</link> </variable>"
-#: cell_unprotect.xhp
+#: sorted_list.xhp
msgctxt ""
-"cell_unprotect.xhp\n"
-"hd_id3153252\n"
-"14\n"
+"sorted_list.xhp\n"
+"par_id3159154\n"
+"7\n"
"help.text"
-msgid "<variable id=\"cell_unprotect\"><link href=\"text/scalc/guide/cell_unprotect.xhp\" name=\"Unprotecting Cells\">Unprotecting Cells</link> </variable>"
-msgstr "<variable id=\"cell_unprotect\"><link href=\"text/scalc/guide/cell_unprotect.xhp\" name=\"Unprotecting Cells\">maadheelee dhorkuu dhiisuu</link> </variable>"
+msgid "Sort lists allow you to type one piece of information in a cell, then drag it to fill in a consecutive list of items."
+msgstr "Tarreewwan fo'uu odeeffannoo maadhee keessatti barreessuu si dandeessisu, achiin tarree waantota walitti aananii guutuuf harkisi."
-#: cell_unprotect.xhp
+#: sorted_list.xhp
msgctxt ""
-"cell_unprotect.xhp\n"
-"par_id3151112\n"
-"15\n"
+"sorted_list.xhp\n"
+"par_id3148645\n"
+"4\n"
"help.text"
-msgid "Click the sheet for which you want to cancel the protection."
-msgstr "Wardii kan dhorka irraa mulquu barbaaddu cuqaasi."
+msgid "For example, enter the text \"Jan\" or \"January\" in an empty cell. Select the cell and click the mouse on the lower right corner of the cell border. Then drag the selected cell a few cells to the right or downwards. When you release the mouse button, the highlighted cells will be filled with the names of the months."
+msgstr "Fakkeenyaaf, barruu \"Ama\" ykn \"Amajjii\" maadhee duwwaa keessatti galchi. Maadhee filadhuutii xiyyoo jala mirgaa kan handaara maadhee irratti hantuutee cuqaasi. Achiin maadhee filatame maadheelee muraasa irra gara mirgaatti ykn asiin gadi harkisi. Yeroo qabduu hantuutee gad dhiistu, maadheeleen shoolaman maqaalee ji'ootaatiin guutamu."
-#: cell_unprotect.xhp
+#: sorted_list.xhp
msgctxt ""
-"cell_unprotect.xhp\n"
-"par_id3149656\n"
-"16\n"
+"sorted_list.xhp\n"
+"par_id2367931\n"
"help.text"
-msgid "Select <emph>Tools - Protect Document</emph>, then choose <emph>Sheet</emph> or <emph>Document</emph> to remove the check mark indicating the protected status."
-msgstr "<emph>Miyoota - Galmee dhorki</emph> filadhu, achiin <emph>Wardii</emph> yookiin <emph>Galmee</emph> mallattoo filannoo kan haala dhorkaa mul'istu balleessuuf filadhu.."
+msgid "Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> if you do not want to fill the cells with different values."
+msgstr ""
-#: cell_unprotect.xhp
+#: sorted_list.xhp
msgctxt ""
-"cell_unprotect.xhp\n"
-"par_id3145171\n"
-"17\n"
+"sorted_list.xhp\n"
+"par_id3152577\n"
+"5\n"
"help.text"
-msgid "If you have assigned a password, enter it in this dialog and click <emph>OK</emph>."
-msgstr "Yoo iggita kennitee jiraatte,qaaqa kana keessatti galchitii <emph>TOLE</emph> cuqaasi."
+msgid "The predefined series can be found under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</emph>. You can also create your own lists of text strings tailored to your needs, such as a list of your company's branch offices. When you use the information in these lists later (for example, as headings), just enter the first name in the list and expand the entry by dragging it with your mouse."
+msgstr ""
-#: cell_unprotect.xhp
+#: sorted_list.xhp
msgctxt ""
-"cell_unprotect.xhp\n"
-"par_id3153771\n"
-"18\n"
+"sorted_list.xhp\n"
+"par_id3147434\n"
+"6\n"
"help.text"
-msgid "The cells can now be edited, the formulas can be viewed, and all cells can be printed until you reactivate the protection for the sheet or document."
-msgstr "Man'eeleen amma gulaalamuu danda'u,foormulaawwan argamuu danda'u,akkasumas man'eeleen marti amma ati dhorka lamuu wardiif yookiin galmeedhaaf kakaastutti maxxansamuu danda'u."
+msgid "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Sort lists</link>"
+msgstr "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Tarreewwan foyi</link>"
-#: year2000.xhp
+#: specialfilter.xhp
msgctxt ""
-"year2000.xhp\n"
+"specialfilter.xhp\n"
"tit\n"
"help.text"
-msgid "19xx/20xx Years"
-msgstr "Baroota 19xx/20xx"
+msgid "Filter: Applying Advanced Filters"
+msgstr "Gingilcha:Gingilchaawwan Olaanoo Raawwachuu"
-#: year2000.xhp
+#: specialfilter.xhp
msgctxt ""
-"year2000.xhp\n"
-"bm_id3150439\n"
+"specialfilter.xhp\n"
+"bm_id3148798\n"
"help.text"
-msgid "<bookmark_value>years; 2-digits</bookmark_value><bookmark_value>dates; 19xx/20xx</bookmark_value>"
-msgstr "<bookmark_value>waggoota; dijiitii-2</bookmark_value><bookmark_value>guyyoota; 19xx/20xx</bookmark_value>"
+msgid "<bookmark_value>filters;defining advanced filters </bookmark_value><bookmark_value>advanced filters</bookmark_value><bookmark_value>defining; advanced filters</bookmark_value><bookmark_value>database ranges; advanced filters</bookmark_value>"
+msgstr "<bookmark_value>gingilchaawwan;Gingilchaawwan Olaanoo qindeessuu </bookmark_value><bookmark_value>Gingilchaawwan Olaanoo</bookmark_value><bookmark_value>qindeessuu; Gingilchaawwan Olaanoo</bookmark_value><bookmark_value>hammangaa kuusaa deetaa; Gingilchaawwan Olaanoo</bookmark_value>"
-#: year2000.xhp
+#: specialfilter.xhp
msgctxt ""
-"year2000.xhp\n"
-"hd_id3150439\n"
+"specialfilter.xhp\n"
+"hd_id3148798\n"
"18\n"
"help.text"
-msgid "<variable id=\"year2000\"><link href=\"text/scalc/guide/year2000.xhp\" name=\"19xx/20xx Years\">19xx/20xx Years</link></variable>"
-msgstr "<variable id=\"year2000\"><link href=\"text/scalc/guide/year2000.xhp\" name=\"19xx/20xx Years\">Baroota 19xx/20xx </link></variable>"
+msgid "<variable id=\"specialfilter\"><link href=\"text/scalc/guide/specialfilter.xhp\" name=\"Filter: Applying Advanced Filters\">Filter: Applying Advanced Filters</link> </variable>"
+msgstr "<variable id=\"specialfilter\"><link href=\"text/scalc/guide/specialfilter.xhp\" name=\"Filter: Applying Advanced Filters\">Gingilcha:Gingilchaawwan Olaanoo Raawwachuu</link> </variable>"
-#: year2000.xhp
+#: specialfilter.xhp
msgctxt ""
-"year2000.xhp\n"
-"par_id3151116\n"
-"17\n"
+"specialfilter.xhp\n"
+"par_id3145785\n"
+"19\n"
"help.text"
-msgid "The year in a date entry is often entered as two digits. Internally, the year is managed by $[officename] as four digits, so that in the calculation of the difference from 1/1/99 to 1/1/01, the result will correctly be two years."
-msgstr "Barri galfata guyyaa keessaa yeroo baay'ee akka dijiitii lamaatti galchama.Keessatti,barri akka dijiitii afuriitti taliigama, kanaafuu shallaggii garaagarummaa 1/1/99 irraa gara 1/1/01 keessatti bu'aan sirrii waggaa lama dha."
+msgid "Copy the column headers of the sheet ranges to be filtered into an empty area of the sheet, and then enter the criteria for the filter in a row beneath the headers. Horizontally arranged data in a row will always be logically connected with AND, and vertically arranged data in a column will always be logically connected with OR."
+msgstr "Irraantota sarjaa hammangaawwan wardii gara bal'ina duwwaa wardiitti garagalchi, achiin ulaagaa gingilchaaf tarree jala irraantota keessatti galchi. Deetaan dalga qindaa'an tarree keessatti yaayaa FI wajjin hoggayyuu walitti hidhamu, deetaan irraan gadee sarjaa keessatti hoggayyuu yaayaa YKN wajjin hoggayyuu walitti hidhamu."
-#: year2000.xhp
+#: specialfilter.xhp
msgctxt ""
-"year2000.xhp\n"
-"par_id3154011\n"
-"19\n"
+"specialfilter.xhp\n"
+"par_id3153142\n"
+"20\n"
"help.text"
-msgid "Under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - General</emph> you can define the century that is used when you enter a year with only two digits. The default is 1930 to 2029."
-msgstr ""
+msgid "Once you have created a filter matrix, select the sheet ranges to be filtered. Open the <emph>Advanced Filter</emph> dialog by choosing <emph>Data - Filter - Advanced Filter</emph>, and define the filter conditions."
+msgstr "Erga tokkicha tarreentaa gingilchaa uumtee booda, hammangaa man'ee kan maxxansamuuf jedhu filadhu. Qaaqa <emph>Gingilchaa Olaanoo</emph> <emph>Deetaa - Gingilchaa - Gingilchaa Olaanoo</emph> filachuudhaan baniitii, haalleen gingilchaa qindeessi."
-#: year2000.xhp
+#: specialfilter.xhp
msgctxt ""
-"year2000.xhp\n"
-"par_id3150010\n"
-"20\n"
+"specialfilter.xhp\n"
+"par_id3153726\n"
+"21\n"
"help.text"
-msgid "This means that if you enter a date of 1/1/30 or higher, it will be treated internally as 1/1/1930 or higher. All lower two-digit years apply to the 20xx century. So, for example, 1/1/20 is converted into 1/1/2020."
-msgstr "Kana jechuun yoo guyyaa 1/1/30 yookiin ol galchite,keessatti akka 1/1/1930 yookiin oliitti beekama.Barootni dijiitii lamaa gadii hundi jaarraa 20xx tti raawwatu.Kanaafuu,fakkeenyaaf,1/1/20 gara 1/1/2020 tti jijjiirama."
+msgid "Then click OK, and you will see that only the rows from the original sheet whose contents have met the search criteria are still visible. All other rows are temporarily hidden and can be made to reappear with the <emph>Format - Row - Show </emph>command."
+msgstr "TOLE cuqaasi,tarreewwan wardii jalqabaa kan qabiyyeewwan isaanii ulaagaa barbaachaa guutan qofatu akka ammallee mul'atan argita. Tarreewwan biroo hundi yeroof dhokatan booda ajaja <emph>Dhangii - Tarree - Mul'isi </emph> dhaan booda lamuu argamuu danda'a."
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"tit\n"
+"specialfilter.xhp\n"
+"par_id3149664\n"
+"22\n"
"help.text"
-msgid "Applying Conditional Formatting"
-msgstr "Dhangeessuu Otoolaa Raawwachuu"
+msgid "<emph>Example</emph>"
+msgstr "<emph>Fakkeenya</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"bm_id3149263\n"
+"specialfilter.xhp\n"
+"par_id3147427\n"
+"23\n"
"help.text"
-msgid "<bookmark_value>conditional formatting; cells</bookmark_value> <bookmark_value>cells; conditional formatting</bookmark_value> <bookmark_value>formatting; conditional formatting</bookmark_value> <bookmark_value>styles;conditional styles</bookmark_value> <bookmark_value>cell formats; conditional</bookmark_value> <bookmark_value>random numbers;examples</bookmark_value> <bookmark_value>cell styles; copying</bookmark_value> <bookmark_value>copying; cell styles</bookmark_value> <bookmark_value>tables; copying cell styles</bookmark_value>"
-msgstr "<bookmark_value>dhangeessuu otoolaa; man'eelee</bookmark_value> <bookmark_value>man'eelee; dhangeessuu otoolaa</bookmark_value> <bookmark_value>dhangeessuu; dhangeessuu otoolaa</bookmark_value> <bookmark_value>haalatoota;haalata otoolaa</bookmark_value> <bookmark_value>dhnagiiwwan man'ee;otoolaa</bookmark_value> <bookmark_value>lakkoofsota tasaa;fakkeenyota</bookmark_value> <bookmark_value>haalata man'ee; copying</bookmark_value> <bookmark_value>garagalchuu; cell styles</bookmark_value> <bookmark_value>gabateewwan; haalata man'ee garagalchuu</bookmark_value>"
+msgid "Load a spreadsheet with a large number of records. We are using a fictional <emph>Turnover</emph> document, but you can just as easily use any other document. The document has the following layout:"
+msgstr "Wardii tarreewwan baay'ee qabate fe'adhu. Galmee <emph>Turnover</emph> fayyadamaa jirra, garuu galmee biraa kamiyyuu salphaatti fayyadamuu dandeessa. Galmeen teessuma armaan gadii qaba:"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"hd_id3149263\n"
+"specialfilter.xhp\n"
+"par_id3154510\n"
"24\n"
"help.text"
-msgid "<variable id=\"cellstyle_conditional\"><link href=\"text/scalc/guide/cellstyle_conditional.xhp\" name=\"Applying Conditional Formatting\">Applying Conditional Formatting</link></variable>"
-msgstr "<variable id=\"cellstyle_conditional\"><link href=\"text/scalc/guide/cellstyle_conditional.xhp\" name=\"Applying Conditional Formatting\">Dhangeessuu Otoolaa Raawwachuua</link></variable>"
+msgid "<emph>A</emph>"
+msgstr "<emph>A</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3159156\n"
+"specialfilter.xhp\n"
+"par_id3150327\n"
"25\n"
"help.text"
-msgid "Using the menu command <emph>Format - Conditional formatting</emph>, the dialog allows you to define up to three conditions per cell, which must be met in order for the selected cells to have a particular format."
-msgstr "Ajaja baafataa <emph>Dhangii - Dhangeessuu otoolaa</emph> fayyadamudhaan, qaaqni man'ee tokkoof haalleen hanga sadiitti qindeessuu si dandeessisa, man'eeleen filataman dhangii murtaa'aa qabaachuuf kun guutuu qaba."
+msgid "<emph>B</emph>"
+msgstr "<emph>B</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id8039796\n"
+"specialfilter.xhp\n"
+"par_id3154756\n"
+"26\n"
"help.text"
-msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose <emph>Tools - Cell Contents - AutoCalculate</emph> (you see a check mark next to the command when AutoCalculate is enabled)."
-msgstr "Dhangeessuu otoolaa raawwachuuf, Ufmaa shallagni dandeessifamuu qaba. <emph>Meeshaalee - Qabiyyeewwan Maadhee - Ufmaa shallaggii</emph> filadhu(mallattoo filannoo cina ajajichaatti yeroo Ufmaa shallaguun dandeessifame argita)."
+msgid "<emph>C</emph>"
+msgstr "<emph>C</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3154944\n"
-"26\n"
+"specialfilter.xhp\n"
+"par_id3155335\n"
+"27\n"
"help.text"
-msgid "With conditional formatting, you can, for example, highlight the totals that exceed the average value of all totals. If the totals change, the formatting changes correspondingly, without having to apply other styles manually."
-msgstr "Dhangeessuu otoolaatiin, fakkeenyaaf, ida'ama gatii avereejii ida'ama hundaa caalu shooluu dandeessa. Yoo ida'amni jijjiirame, dhangeessuun osoo haalata biroo harkaan raawwatin haalaan jijjiirama."
+msgid "<emph>D</emph>"
+msgstr "<emph>D</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"hd_id4480727\n"
+"specialfilter.xhp\n"
+"par_id3146315\n"
+"28\n"
"help.text"
-msgid "To Define the Conditions"
-msgstr "Haalota Ibsuu"
+msgid "<emph>E</emph>"
+msgstr "<emph>E</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3154490\n"
-"27\n"
+"specialfilter.xhp\n"
+"par_id3145790\n"
+"29\n"
"help.text"
-msgid "Select the cells to which you want to apply a conditional style."
-msgstr "Maadheelee kan haalata otoolaa irratti raawwachuu barbaaddu filadhu."
+msgid "<emph>1</emph>"
+msgstr "<emph>1</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3155603\n"
-"28\n"
+"specialfilter.xhp\n"
+"par_id3159239\n"
+"30\n"
"help.text"
-msgid "Choose <emph>Format - Conditional Formatting</emph>."
-msgstr "<emph>Dhangii - Dhangeessuu Otoolaa</emph> filadhu."
+msgid "Month"
+msgstr "Ji'a"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3146969\n"
-"29\n"
+"specialfilter.xhp\n"
+"par_id3150086\n"
+"31\n"
"help.text"
-msgid "Enter the condition(s) into the dialog box. The dialog is described in detail in <link href=\"text/scalc/01/05120000.xhp\" name=\"$[officename] Help\">$[officename] Help</link>, and an example is provided below:"
-msgstr "Haala(lleen) gara sanduuqa qaaqaa galchi. Qaaqni bal'inaan <link href=\"text/scalc/01/05120000.xhp\" name=\"$[officename] Help\">$[officename] Help</link> keessatti ibsama, akkasumas fakkeenyi armaan gaditti kennameera."
+msgid "Standard"
+msgstr "Durtii"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"hd_id3155766\n"
-"38\n"
+"specialfilter.xhp\n"
+"par_id3150202\n"
+"32\n"
"help.text"
-msgid "Example of Conditional Formatting: Highlighting Totals Above/Under the Average Value"
-msgstr "Fakkeenya Dhangeessuu Otoolaa: Gatii Jiddugalee Gubbaatti/Jalatti Ida'ammii Shooluu"
+msgid "Business"
+msgstr "Daldala"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"hd_id4341868\n"
+"specialfilter.xhp\n"
+"par_id3150883\n"
+"33\n"
"help.text"
-msgid "Step1: Generate Number Values"
-msgstr "Ejjatoo1: Gatiiwwan Lakkoofsaa Uumi"
+msgid "Luxury"
+msgstr "Luxury"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3150043\n"
+"specialfilter.xhp\n"
+"par_id3152987\n"
+"34\n"
+"help.text"
+msgid "Suite"
+msgstr "Guutarta"
+
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3154486\n"
+"35\n"
+"help.text"
+msgid "<emph>2</emph>"
+msgstr "<emph>2</emph>"
+
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3148839\n"
+"36\n"
+"help.text"
+msgid "January"
+msgstr "Amajjii"
+
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3153816\n"
+"37\n"
+"help.text"
+msgid "125600"
+msgstr "125600"
+
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3157978\n"
+"38\n"
+"help.text"
+msgid "200500"
+msgstr "200500"
+
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3155268\n"
"39\n"
"help.text"
-msgid "You want to give certain values in your tables particular emphasis. For example, in a table of turnovers, you can show all the values above the average in green and all those below the average in red. This is possible with conditional formatting."
-msgstr "Gatiiwwan muraasa gabatee kee keessatti xiyyeeffannaa murtaa'e kennuu barbaadda. Fakkeenyaaf, gabatee g urgurammeewwan keessatti, gatiiwwan avereejii olii hunda magariisaan akkasumas gatiiwwan avereejii gadii diimaan agarsiisuu dandeessa. Kun dhangeessuu otoolaatiin ni dandeessa."
+msgid "240000"
+msgstr "240000"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3155337\n"
+"specialfilter.xhp\n"
+"par_id3153286\n"
"40\n"
"help.text"
-msgid "First of all, write a table in which a few different values occur. For your test you can create tables with any random numbers:"
-msgstr "Dursee, gabatee gatiiwwan addaa muraasni keessaatti mul'atan barreessi. Yaalii keetiif gabateewwan lakkoofsota hin murtoofne faana uumuu dandeessa:"
+msgid "170000"
+msgstr "170000"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3149565\n"
+"specialfilter.xhp\n"
+"par_id3146782\n"
"41\n"
"help.text"
-msgid "In one of the cells enter the formula =RAND(), and you will obtain a random number between 0 and 1. If you want integers of between 0 and 50, enter the formula =INT(RAND()*50)."
-msgstr "Man'eelee tokkoo isaanii keessatti foormulaa =RAND() galchitii, lakkoofsa hin murtoofne 0 fi 1 jidduu argatta. Yoo intiijerii jidduu 0 fi 50 barbaadde, foormulaa =INT(RAND()*50) galchi."
+msgid "<emph>3</emph>"
+msgstr "<emph>3</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3149258\n"
+"specialfilter.xhp\n"
+"par_id3149900\n"
"42\n"
"help.text"
-msgid "Copy the formula to create a row of random numbers. Click the bottom right corner of the selected cell, and drag to the right until the desired cell range is selected."
-msgstr "Tarree lakkoofsa hin murtoofnee uumuuf foormulaa garagalchi. Xiyyoo jala mirgaa maadhee filatamee cuqaasiitii gara mirgaatti hanga haammangaan maadhee barbaadame filatamuutti harkisi."
+msgid "February"
+msgstr "Guraandhala"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3159236\n"
+"specialfilter.xhp\n"
+"par_id3154763\n"
"43\n"
"help.text"
-msgid "In the same way as described above, drag down the corner of the rightmost cell in order to create more rows of random numbers."
-msgstr "Haala walfakkaatuun akka olitti ibsametti, tarreewwan lakkoofsota hin mutoofnee uumuuf xiyyoo maadhee mirgaa gad harkisi."
+msgid "160000"
+msgstr "160000"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"hd_id3149211\n"
+"specialfilter.xhp\n"
+"par_id3150050\n"
"44\n"
"help.text"
-msgid "Step 2: Define Cell Styles"
-msgstr "Ejjatoo 2: Haalota Man'ee Ibsi"
+msgid "180300"
+msgstr "180300"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3154659\n"
+"specialfilter.xhp\n"
+"par_id3153801\n"
"45\n"
"help.text"
-msgid "The next step is to apply a cell style to all values that represent above-average turnover, and one to those that are below the average. Ensure that the Styles and Formatting window is visible before proceeding."
-msgstr "Ejjatoon ittaanu haalata man'ee gatiiwwan hunda kan turnover avereejii olii fi gadii bakka bu'u raawwachuu dha."
+msgid "362000"
+msgstr "362000"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3150883\n"
+"specialfilter.xhp\n"
+"par_id3154708\n"
"46\n"
"help.text"
-msgid "Click in a blank cell and select the command <emph>Format Cells</emph> in the context menu."
-msgstr "Maadhee duwwaa keessa cuqaasiitii ajaja <emph>Maadheelee Dhangeessi</emph> baafata haallee keessaa filadhu."
+msgid "220000"
+msgstr "220000"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3155529\n"
+"specialfilter.xhp\n"
+"par_id3151191\n"
"47\n"
"help.text"
-msgid "In the <emph>Format Cells</emph> dialog on the <emph>Background</emph> tab, select a background color. Click <emph>OK</emph>."
-msgstr "Qaaqa <emph>Man'eelee Dhangeessi</emph> keessatti caancala <emph>Duubee</emph> irratti, halluu duubee filadhu. <emph>TOLE</emph> cuqaasi."
+msgid "<emph>4</emph>"
+msgstr "<emph>4</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3154484\n"
+"specialfilter.xhp\n"
+"par_id3147250\n"
"48\n"
"help.text"
-msgid "In the Styles and Formatting window, click the <emph>New Style from Selection</emph> icon. Enter the name of the new style. For this example, name the style \"Above\"."
-msgstr "Foddaa Haalataa fi Dhangeessuu keessatti, sajoo <emph>Haalata Haaraa Filannoo irraa</emph> cuqaasi. Maqaa haalata haaraa galchi. Fakkeenyaaf, haalata \"Gubbaa\" jedhii moggaasi."
+msgid "March"
+msgstr "Bitootessa"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3152889\n"
+"specialfilter.xhp\n"
+"par_id3153334\n"
"49\n"
"help.text"
-msgid "To define a second style, click again in a blank cell and proceed as described above. Assign a different background color for the cell and assign a name (for this example, \"Below\")."
-msgstr "Haalata lammaffaa qindeessuuf, ammas man'ee duwwaa keessa cuqaasiitii akka armaan gadiitti ibsameen itti fufi. Man'eef haalluu duubee addaa kenniitii maqaa(fakkeenya kanaaf, \"Jala\") ramadi."
+msgid "170000"
+msgstr "170000"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"hd_id3148704\n"
-"60\n"
+"specialfilter.xhp\n"
+"par_id3151391\n"
+"50\n"
"help.text"
-msgid "Step 3: Calculate Average"
-msgstr "Ejjatoo: Jiddugalee Shallagi"
+msgid "and so on..."
+msgstr "kkf"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3148837\n"
+"specialfilter.xhp\n"
+"par_id3147300\n"
"51\n"
"help.text"
-msgid "In our particular example, we are calculating the average of the random values. The result is placed in a cell:"
-msgstr "Fakkeenya murtaawaa keenya keessatti, avereejii gatiiwwan hin murtoofnee shallagaa jirra. Bu'aan maadhee keessaa kaawwama:"
+msgid "Copy row 1 with the row headers (field names), to row 20, for example. Enter the filter conditions linked with OR in rows 21, 22, and so on."
+msgstr "Tarree 1 irraantota tarree wajjin(maqaalee dirree), gara tarree 20,fakkeenyaaf garagalchi. Haalleen gingilchaa kan tarreewan 21,22, fi kkf tti geessan ykn keessaa galchi."
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3144768\n"
+"specialfilter.xhp\n"
+"par_id3159115\n"
"52\n"
"help.text"
-msgid "Set the cursor in a blank cell, for example, J14, and choose <emph>Insert - Function</emph>."
-msgstr "Qaree man'ee duwwaa keessa, fakkeenyaaf, J14, kaa'iitii <emph>Saagi - Dalagaa</emph> filadhu."
+msgid "<emph>A</emph>"
+msgstr "<emph>A</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3156016\n"
+"specialfilter.xhp\n"
+"par_id3146886\n"
"53\n"
"help.text"
-msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink / Maximize</item></link> icon."
-msgstr "Dalagaa AVIREEGII filadhu. Lakkoofsota tasaa kee filachuuf hantuutee fayyadami. Yoo hammangaa hunda arguu hin dandeenye, sababa Masakaan Dalagaa dhorkseef, qaaqa yeroof sajoo <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Qooqsi / Guddisi</item></link> fayyadamuudhaan suntuursuu dandeessa."
+msgid "<emph>B</emph>"
+msgstr "<emph>B</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3153246\n"
+"specialfilter.xhp\n"
+"par_id3153124\n"
"54\n"
"help.text"
-msgid "Close the Function Wizard with <item type=\"menuitem\">OK</item>."
-msgstr "Masakaa Dalagaa <item type=\"menuitem\">Tole</item> dhaan cufi."
-
-#: cellstyle_conditional.xhp
-msgctxt ""
-"cellstyle_conditional.xhp\n"
-"hd_id3149898\n"
-"50\n"
-"help.text"
-msgid "Step 4: Apply Cell Styles"
-msgstr "Ejjatoo: Haalota Man'ee Fayyadami"
+msgid "<emph>C</emph>"
+msgstr "<emph>C</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3149126\n"
+"specialfilter.xhp\n"
+"par_id3152979\n"
"55\n"
"help.text"
-msgid "Now you can apply the conditional formatting to the sheet:"
-msgstr "Amma dhangeessuu otoolaa wardiitti raawwachuu dandeessa:"
+msgid "<emph>D</emph>"
+msgstr "<emph>D</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3150049\n"
+"specialfilter.xhp\n"
+"par_id3145827\n"
"56\n"
"help.text"
-msgid "Select all cells with the random numbers."
-msgstr "Maadheelee hunda lakkoofsota hin murtoofne qaban filadhu."
+msgid "<emph>E</emph>"
+msgstr "<emph>E</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3153801\n"
+"specialfilter.xhp\n"
+"par_id3149892\n"
"57\n"
"help.text"
-msgid "Choose the <emph>Format - Conditional Formatting</emph> command to open the corresponding dialog."
-msgstr "Qaaqa isaa banuuf ajaja <emph>Dhangii - Dhangeessuu Otoolaa</emph> filadhu."
+msgid "<emph>20</emph>"
+msgstr "<emph>20</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3153013\n"
+"specialfilter.xhp\n"
+"par_id3150693\n"
"58\n"
"help.text"
-msgid "Define the condition as follows: If cell value is less than J14, format with cell style \"Below\", and if cell value is greater than or equal to J14, format with cell style \"Above\"."
-msgstr "Haala akka armaan gadiitti qindeessi:Yoo gatiin man'ee J14 gadi ta'e, haalata man'ee \"Jala\" dhaan dhangeessi, akkasumas yoo gatiin man'ee irra guddaa ykn walqixa J14 ta'e, haalata man'ee \"Gubbaa\" tiin dhangeessi."
+msgid "Month"
+msgstr "Ji'a"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"hd_id3155761\n"
+"specialfilter.xhp\n"
+"par_id3147475\n"
+"59\n"
+"help.text"
+msgid "Standard"
+msgstr "Durtii"
+
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3154846\n"
+"60\n"
+"help.text"
+msgid "Business"
+msgstr "Daldala"
+
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3153082\n"
"61\n"
"help.text"
-msgid "Step 5: Copy Cell Style"
-msgstr "Ejjatoo: Haalota Man'ee Garagalchi"
+msgid "Luxury"
+msgstr "Luxury"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3145320\n"
+"specialfilter.xhp\n"
+"par_id3149506\n"
"62\n"
"help.text"
-msgid "To apply the conditional formatting to other cells later:"
-msgstr "Dhangeessuu otoolaa gara maadheelee birootti booda raawwachuu:"
+msgid "Suite"
+msgstr "Guutarta"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3153074\n"
+"specialfilter.xhp\n"
+"par_id3149188\n"
"63\n"
"help.text"
-msgid "Click one of the cells that has been assigned conditional formatting."
-msgstr "Maadheelee dhangeessuu otoolaa fudhatanii turan keessaa tokko cuqaasi."
+msgid "<emph>21</emph>"
+msgstr "<emph>21</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3149051\n"
+"specialfilter.xhp\n"
+"par_id3149956\n"
"64\n"
"help.text"
-msgid "Copy the cell to the clipboard."
-msgstr "Maadhee gara gabatee muraatti garagalchi."
+msgid "January"
+msgstr "Amajjii"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3150436\n"
+"specialfilter.xhp\n"
+"par_id3150865\n"
"65\n"
"help.text"
-msgid "Select the cells that are to receive this same formatting."
-msgstr "Maadheelee dhangeessuu walfakkaatu kana fudhachuuf ta'an filadhu."
+msgid "<emph>22</emph>"
+msgstr "<emph>22</emph>"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3147298\n"
+"specialfilter.xhp\n"
+"par_id3155957\n"
"66\n"
"help.text"
-msgid "Choose <emph>Edit - Paste Special</emph>. The <emph>Paste Special</emph> dialog appears."
-msgstr "<emph>Gulaali - Adda Maxxansi</emph> fili. Qaaqni <emph>Adda Maxxansi</emph> ni mul'ata."
+msgid "<160000"
+msgstr "<160000"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3166465\n"
+"specialfilter.xhp\n"
+"par_id3153566\n"
"67\n"
"help.text"
-msgid "In the <emph>Selection</emph> area, check only the <emph>Formats</emph> box. All other boxes must be unchecked. Click <emph>OK</emph>."
-msgstr "Bal'ina <emph>Filannoo</emph> keessatti, sanduuqa <emph>Dhangiiwwan</emph> qofa mallattoo itti godhi. Sanduuqotni biroo marti mallattoo qabaachuu hin qabani. <emph>TOLE</emph> cuqaasi."
+msgid "Specify that only rows which either have the value <item type=\"literal\">January</item> in the <emph>Month</emph> cells OR a value of under 160000 in the <emph>Standard</emph> cells will be displayed."
+msgstr "Akka tarreewwan kan gatii <item type=\"literal\">Amajjii</item> man'eelee <emph>Ji'a</emph> keessaa ykn gatii 160000 man'eelee <emph>Durtii</emph> keessaa qaban mul'atan ifteesa."
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3159123\n"
+"specialfilter.xhp\n"
+"par_id3147372\n"
"68\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05120000.xhp\" name=\"Format - Conditional formatting\">Format - Conditional formatting</link>"
-msgstr "<link href=\"text/scalc/01/05120000.xhp\" name=\"Format - Conditional formatting\">Dhangii - Dhangeessuu otoolaa</link>"
+msgid "Choose <emph>Data - Filter - Advanced Filter</emph>, and then select the range A20:E22. After you click OK, only the filtered rows will be displayed. The other rows will be hidden from view."
+msgstr "<emph>Deetaa - Gingilcha - Gingilcha Olaanoo</emph> filadhuutii, hammangaa A20:E22 filadhu. Erga TOLE cuqaastee booda, tarreewwan gingilchaman qofatu mul' ata. Tarreewwan biroo argii irraa dhokatu."
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
+"super_subscript.xhp\n"
"tit\n"
"help.text"
-msgid "Entering Matrix Formulas"
-msgstr "Foormulaawwan Tarreentaa Galchuu"
-
-#: matrixformula.xhp
-msgctxt ""
-"matrixformula.xhp\n"
-"bm_id3153969\n"
-"help.text"
-msgid "<bookmark_value>matrices; entering matrix formulas</bookmark_value><bookmark_value>formulas; matrix formulas</bookmark_value><bookmark_value>inserting;matrix formulas</bookmark_value>"
-msgstr "<bookmark_value>tarreentota; foormulaawwan tarreentaa galchuu</bookmark_value><bookmark_value>foormulaawwan; foormulaawwan tarreentaa</bookmark_value><bookmark_value>saaguu;foormulaawwan tarreentaa</bookmark_value>"
+msgid "Text Superscript / Subscript"
+msgstr "Irrarfii/ Jalarfii Barruu"
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
-"hd_id3153969\n"
-"13\n"
+"super_subscript.xhp\n"
+"bm_id3151112\n"
"help.text"
-msgid "<variable id=\"matrixformula\"><link href=\"text/scalc/guide/matrixformula.xhp\" name=\"Entering Matrix Formulas\">Entering Matrix Formulas</link></variable>"
-msgstr "<variable id=\"matrixformula\"><link href=\"text/scalc/guide/matrixformula.xhp\" name=\"Entering Matrix Formulas\">Foormulaawwan Tarreentaa Galchuu</link></variable>"
+msgid "<bookmark_value>superscript text in cells</bookmark_value><bookmark_value>subscript text in cells</bookmark_value><bookmark_value>cells; text super/sub</bookmark_value><bookmark_value>characters;superscript/subscript</bookmark_value>"
+msgstr "<bookmark_value>barruu irrarfii maadheelee keessaa</bookmark_value><bookmark_value>barruu jalarfii maadheelee keessaa</bookmark_value><bookmark_value>maadheelee; barruu irroo/sub</bookmark_value><bookmark_value>arfiilee;irrarfii/jalarfii</bookmark_value>"
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
-"par_id3153144\n"
-"14\n"
+"super_subscript.xhp\n"
+"hd_id3151112\n"
+"1\n"
"help.text"
-msgid "The following is an example of how you can enter a matrix formula, without going into the details of matrix functions."
-msgstr "Kan armaan gadii fakkeenya akkaataa foormulaa tarreentaa, osoo bal'ina dalagaalee tarreentaa hin deemin galchitu dha."
+msgid "<variable id=\"super_subscript\"><link href=\"text/scalc/guide/super_subscript.xhp\" name=\"Text Superscript / Subscript\">Text Superscript / Subscript</link></variable>"
+msgstr "<variable id=\"super_subscript\"><link href=\"text/scalc/guide/super_subscript.xhp\" name=\"Text Superscript / Subscript\">Irrarfii / Jalarfii Barruu</link></variable>"
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
-"par_id3153188\n"
-"15\n"
+"super_subscript.xhp\n"
+"par_id3154684\n"
+"2\n"
"help.text"
-msgid "Assume you have entered 10 numbers in Columns A and B (A1:A10 and B1:B10), and would like to calculate the sum of each row in Column C."
-msgstr "Akka lakkoofsota 10 Sarjaalee A fi B keessatti galchitetti(A1:A10 and B1:B10), ida'ama tokkoon tokkoo tarree sarjaa C keessatti shallaguu akka barbaaddu tilmaami."
+msgid "In the cell, select the character that you want to put in superscript or subscript."
+msgstr "Maadhee keessaa, arfii irrarfii ykn jalarfii keessa kaa'uu barbaadde filadhu."
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
-"par_id3154321\n"
-"16\n"
+"super_subscript.xhp\n"
+"par_id3150439\n"
+"3\n"
"help.text"
-msgid "Using the mouse, select the range C1:C10, in which the results are to be displayed."
-msgstr "Hantuutee fayyadamuudhaan, hammangaa C1:C10 filadhu, kan bu'aaleen keessatti mul'atani dha."
+msgid "If, for example, you want to write H20 with a subscript 2, select the 2 in the cell (not in the input line)."
+msgstr "Yoo, fakkeenyaaf, H20 jalarfii 2 wajjin barreessuu barbaadde, maadhee keessaa 2 filadhu(sarara naqaa keessaa miti)."
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
+"super_subscript.xhp\n"
"par_id3149260\n"
-"17\n"
-"help.text"
-msgid "Press F2, or click in the input line of the Formula bar."
-msgstr "F2 cuqaasi, ykn sarara naqaa kabala Foormulaa keessatti cuqaasi."
-
-#: matrixformula.xhp
-msgctxt ""
-"matrixformula.xhp\n"
-"par_id3154944\n"
-"18\n"
-"help.text"
-msgid "Enter an equal sign (=)."
-msgstr "Mallattoo walqixaa galchi(=)."
-
-#: matrixformula.xhp
-msgctxt ""
-"matrixformula.xhp\n"
-"par_id3145252\n"
-"19\n"
-"help.text"
-msgid "Select the range A1:A10, which contains the first values for the sum formula."
-msgstr "Hammangaa A1:A10, kan gatiiwwan jalqabaa foormulaa ida'uu qabatan filadhu."
-
-#: matrixformula.xhp
-msgctxt ""
-"matrixformula.xhp\n"
-"par_id3144767\n"
-"20\n"
+"4\n"
"help.text"
-msgid "Press the (+) key from the numerical keypad."
-msgstr "Cuqoo lakkoofsaa irraa furtuu (+) cuqaasi."
+msgid "Open the context menu for the selected character and choose <emph>Character</emph>. You will see the <emph>Character</emph> dialog."
+msgstr "Arfii filatameef baafata haallee baniitii <emph>Arfii</emph> filadhu. Qaaqa <emph>Arfii</emph> argita."
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
-"par_id3154018\n"
-"21\n"
+"super_subscript.xhp\n"
+"par_id3153142\n"
+"5\n"
"help.text"
-msgid "Select the numbers in the second column in cells B1:B10."
-msgstr "Lakkoofsota sarjaa lammaffaa maadhee B1:B10 keessaa fili."
+msgid "Click the <emph>Font Position</emph> tab."
+msgstr "Caancala <emph>Qubannoo Bocquu</emph> cuqaasi."
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
-"par_id3150716\n"
-"22\n"
+"super_subscript.xhp\n"
+"par_id3153954\n"
+"6\n"
"help.text"
-msgid "End the input with the matrix key combination: Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
-msgstr "Naqa makaa furtuu tarreentaatiin xumuri: Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
+msgid "Select the <emph>Subscript</emph> option and click OK."
+msgstr "Dirqaala <emph>Jalarfii</emph> filadhuutii TOLE cuqaasi."
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
-"par_id3145640\n"
-"23\n"
+"super_subscript.xhp\n"
+"par_id3153876\n"
+"7\n"
"help.text"
-msgid "The matrix area is automatically protected against modifications, such as deleting rows or columns. It is, however, possible to edit any formatting, such as the cell background."
-msgstr "Bal'inni tarreentaa ufmaan fooyyee kan akka tarreewwan ykn sarjaalee balleessuu irraa dhorkama. Garuu, dhangeessuu kamiyyuu, kan akka duubee maadhe gulaaluun ni danda'ama."
+msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Context menu - Character - Font Position\">Context menu - Character - Font Position</link>"
+msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Context menu - Character - Font Position\">Baafata haallee - Arfii - Qubannoo Bocquu</link>"
#: table_cellmerge.xhp
msgctxt ""
@@ -11748,553 +10947,1288 @@ msgctxt ""
msgid "Choose <emph>Format - Merge Cells - Split Cells</emph>."
msgstr ""
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
+"table_rotate.xhp\n"
"tit\n"
"help.text"
-msgid "Sorting Data"
-msgstr "Deetaa Foo'uu"
+msgid "Rotating Tables (Transposing)"
+msgstr "Gabateewwan Naannessuu(Transposing)"
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"bm_id3150767\n"
+"table_rotate.xhp\n"
+"bm_id3154346\n"
"help.text"
-msgid "<bookmark_value>database ranges; sorting</bookmark_value> <bookmark_value>sorting; database ranges</bookmark_value> <bookmark_value>data;sorting in databases</bookmark_value>"
-msgstr "<bookmark_value>hammangaawwan kuusaa deetaa; foyuu</bookmark_value> <bookmark_value>foyuu; hammangaawwan kuusaa deetaa</bookmark_value> <bookmark_value>deetaa;kuusaa deetaa keessatti foyuu</bookmark_value>"
+msgid "<bookmark_value>tables; transposing</bookmark_value><bookmark_value>transposing tables</bookmark_value><bookmark_value>inverting tables</bookmark_value><bookmark_value>swapping tables</bookmark_value><bookmark_value>columns; swap with rows</bookmark_value><bookmark_value>rows; swapping with columns</bookmark_value><bookmark_value>tables; rotating</bookmark_value><bookmark_value>rotating; tables</bookmark_value>"
+msgstr "<bookmark_value>gabateewwan; naannessuu</bookmark_value><bookmark_value>gabateewwan naannessuu</bookmark_value><bookmark_value>gabateewwan garagalchuu</bookmark_value><bookmark_value>gabateewwan wal jala fuudhuu</bookmark_value><bookmark_value>sarjaawwan; tarreewwaniin wal jala fuudhuu</bookmark_value><bookmark_value>tarreewwan; sarjaawwaniin wal jala fuudhuu</bookmark_value><bookmark_value>gabateewwan; rotating</bookmark_value><bookmark_value>naannessuu; gabateewwan</bookmark_value>"
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"hd_id3150767\n"
-"44\n"
+"table_rotate.xhp\n"
+"hd_id3154346\n"
+"1\n"
"help.text"
-msgid "<variable id=\"database_sort\"><link href=\"text/scalc/guide/database_sort.xhp\" name=\"Sorting Database Ranges\">Sorting Data</link></variable>"
-msgstr "<variable id=\"database_sort\"><link href=\"text/scalc/guide/database_sort.xhp\" name=\"Sorting Database Ranges\">Deetaa Foo'uu</link></variable>"
+msgid "<variable id=\"table_rotate\"><link href=\"text/scalc/guide/table_rotate.xhp\" name=\"Rotating Tables (Transposing)\">Rotating Tables (Transposing)</link></variable>"
+msgstr "<variable id=\"table_rotate\"><link href=\"text/scalc/guide/table_rotate.xhp\" name=\"Rotating Tables (Transposing)\">Gabateewwan Naannessuu(Transposing)</link></variable>"
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"par_id3145751\n"
-"45\n"
+"table_rotate.xhp\n"
+"par_id3154013\n"
+"2\n"
"help.text"
-msgid "Click in a database range."
-msgstr "Hammangaa kuusaa deetaa keessatti cuqaasi."
+msgid "In $[officename] Calc, there is a way to \"rotate\" a spreadsheet so that rows become columns and columns become rows."
+msgstr "$[officename] Calc keessatti, wardii akka tarreewwan gara sarjaawwan fi sarjaawwan gara tarreewwanii jijjiiraman karaan \"naannessuu\" ni jira."
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"par_id121020081121549\n"
+"table_rotate.xhp\n"
+"par_id3153142\n"
+"3\n"
"help.text"
-msgid "If you select a range of cells, only these cells will get sorted. If you just click one cell without selecting, then the whole database range will get sorted."
-msgstr "Hangii man'eewwanii yoo filatte, man'eewwan kanneen qofatu kuufama. Filmaata malee man'ee tokko yoo cuqaaste, hangiin kuusdeetaa waamaraa ni kuufama."
+msgid "Select the cell range that you want to transpose."
+msgstr "Hammangaa maadhee kan naannessuu barbaadde filadhu."
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"par_idN10635\n"
+"table_rotate.xhp\n"
+"par_id3153191\n"
+"4\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Data - Sort</item>."
-msgstr "<item type=\"menuitem\">Deetaa - Foyi</item> filadhu."
+msgid "Choose <emph>Edit - Cut</emph>."
+msgstr "<emph>Gulaali - Muri</emph> filadhu."
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"par_id121020081121547\n"
+"table_rotate.xhp\n"
+"par_id3148575\n"
+"6\n"
"help.text"
-msgid "The range of cells that will get sorted is shown in inverted colors."
-msgstr "Hangiin man'eewwan kuufamanii halluuwwan garagaltoon mul'atu."
+msgid "Click the cell that is to be the top left cell in the result."
+msgstr "Maadhee gubbaa bitaa maadhee bu'aa keessaa ta'u cuqaasi."
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"par_idN10645\n"
+"table_rotate.xhp\n"
+"par_id3156286\n"
+"7\n"
"help.text"
-msgid "Select the sort options that you want."
-msgstr "Dirqaalaalee foyuu barbaaddu filadhu."
+msgid "Choose <emph>Edit - Paste Special</emph>."
+msgstr "<emph>Gulaali - Adda Maxxansi</emph>."
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"par_idN1063D\n"
+"table_rotate.xhp\n"
+"par_id3144764\n"
+"8\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "<emph>Tole</emph> cuqaasi."
+msgid "In the dialog, mark <emph>Paste all</emph> and <emph>Transpose</emph>."
+msgstr "Qaaqa keessatti, <emph>Hunda Maxxansi</emph> fi <emph>Geeddari</emph> malkateessi."
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"par_id1846980\n"
+"table_rotate.xhp\n"
+"par_id3155600\n"
+"9\n"
"help.text"
-msgid "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\">Wiki page about defining a data range</link>"
-msgstr ""
+msgid "If you now click OK the columns and rows are transposed."
+msgstr "Yoo amma TOLE cuqaaste sarjaawwanii fi tarreewwan ni naanna'u."
-#: formula_value.xhp
+#: table_rotate.xhp
msgctxt ""
-"formula_value.xhp\n"
+"table_rotate.xhp\n"
+"par_id3146969\n"
+"10\n"
+"help.text"
+msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
+msgstr "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Adda Maxxansi</link>"
+
+#: table_view.xhp
+msgctxt ""
+"table_view.xhp\n"
"tit\n"
"help.text"
-msgid "Displaying Formulas or Values"
-msgstr "Foormulaawwan ykn Gatiiwwan Mul'isuu"
+msgid "Changing Table Views"
+msgstr "Argiiwwan Gabatee Jijjiiruu"
-#: formula_value.xhp
+#: table_view.xhp
msgctxt ""
-"formula_value.xhp\n"
-"bm_id3153195\n"
+"table_view.xhp\n"
+"bm_id3147304\n"
"help.text"
-msgid "<bookmark_value>formulas; displaying in cells</bookmark_value><bookmark_value>values; displaying in tables</bookmark_value><bookmark_value>tables; displaying formulas/values</bookmark_value><bookmark_value>results display vs. formulas display</bookmark_value><bookmark_value>displaying; formulas instead of results</bookmark_value>"
-msgstr "<bookmark_value>foormulaawwan; maadheelee keessatti agarsiisuu</bookmark_value><bookmark_value>gatiiwwan; gabateewwan keessatti agarsiisuu</bookmark_value><bookmark_value>gabateewwan; foormulaawwan/gatiiwwan agarsiisuu</bookmark_value><bookmark_value>agarsiisa bu'aalee vs. agarsiisa foormulaawwanii</bookmark_value><bookmark_value>agarsiisuu; bu'aalee osoo hin ta'in foormulaawwan</bookmark_value>"
+msgid "<bookmark_value>row headers; hiding</bookmark_value><bookmark_value>column headers; hiding</bookmark_value><bookmark_value>tables; views</bookmark_value><bookmark_value>views; tables</bookmark_value><bookmark_value>grids;hiding lines in sheets</bookmark_value><bookmark_value>hiding;headers/grid lines</bookmark_value><bookmark_value>changing;table views</bookmark_value>"
+msgstr "<bookmark_value>irraantoowwan tarrree; dhoksuu</bookmark_value><bookmark_value>irraantoowwan sarjaa; hiding</bookmark_value><bookmark_value>gabateewwan; argiiwwan</bookmark_value><bookmark_value>argiiwwan; gabateewwan</bookmark_value><bookmark_value>tarsaawwan;sararoota wardiilee keessa dhoksuu</bookmark_value><bookmark_value>dhoksuu;irraantoowwan/sararoota tarsaa</bookmark_value><bookmark_value>jijjiiruu;argiiwwan gabatee</bookmark_value>"
-#: formula_value.xhp
+#: table_view.xhp
msgctxt ""
-"formula_value.xhp\n"
-"hd_id3153195\n"
+"table_view.xhp\n"
+"hd_id3147304\n"
"1\n"
"help.text"
-msgid "<variable id=\"formula_value\"><link href=\"text/scalc/guide/formula_value.xhp\" name=\"Displaying Formulas or Values\">Displaying Formulas or Values</link></variable>"
-msgstr "<variable id=\"formula_value\"><link href=\"text/scalc/guide/formula_value.xhp\" name=\"Displaying Formulas or Values\">Foormulaawwan ykn Gatiiwwan Mul'isuu</link></variable>"
+msgid "<variable id=\"table_view\"><link href=\"text/scalc/guide/table_view.xhp\" name=\"Changing Table Views\">Changing Table Views</link></variable>"
+msgstr "<variable id=\"table_view\"><link href=\"text/scalc/guide/table_view.xhp\" name=\"Changing Table Views\">Argiiwwan Gabatee Jijjiiruu</link></variable>"
-#: formula_value.xhp
+#: table_view.xhp
msgctxt ""
-"formula_value.xhp\n"
-"par_id3150010\n"
+"table_view.xhp\n"
+"par_id3153192\n"
"2\n"
"help.text"
-msgid "If you want to display the formulas in the cells, for example in the form =SUM(A1:B5), proceed as follows:"
-msgstr "Yoo foormulaawwan man'eelee keessatti agarsiisuu barbaadde, fakkeenyaaf gita =IDA'A(A1:B5) tiin, akka armaan gadiitti itti fufi:"
+msgid "To hide column and line headers in a table:"
+msgstr "Sarjaa fi irraantoowwan sararaa gabatee keessatti dhaabbataan dhoksuu"
-#: formula_value.xhp
-#, fuzzy
+#: table_view.xhp
msgctxt ""
-"formula_value.xhp\n"
-"par_id3151116\n"
+"table_view.xhp\n"
+"par_id3153768\n"
"3\n"
"help.text"
-msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph>."
-msgstr "Galmee <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 wajjin filiitii Tab dhiibi"
+msgid "Under the menu item <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc,</emph> go to the <emph>View</emph> tab page. Unmark<emph> Column/row headers</emph>. Confirm with <emph>OK</emph>."
+msgstr ""
-#: formula_value.xhp
+#: table_view.xhp
msgctxt ""
-"formula_value.xhp\n"
-"par_id3146120\n"
+"table_view.xhp\n"
+"par_id3147436\n"
"4\n"
"help.text"
-msgid "In the <emph>Display</emph> area mark the <emph>Formulas</emph> box. Click OK."
-msgstr "Bal'ina <emph>Agarsiisi</emph> keessatti sanduuqa <emph>Foormulaawwan</emph> mallattoo itti godhi. TOLE cuqaasi."
+msgid "To hide grid lines:"
+msgstr "Sararoota tarsaa dhoksuu"
-#: formula_value.xhp
+#: table_view.xhp
msgctxt ""
-"formula_value.xhp\n"
-"par_id3147396\n"
+"table_view.xhp\n"
+"par_id3153726\n"
"5\n"
"help.text"
-msgid "If you want to view the calculation results instead of the formula, do not mark the Formulas box."
-msgstr "Yoo foormulaawwan osoo hin ta'in bu'aalee shallaggii alerguu barbaadde, SanduuqaFoormulaawwanii mallattoo itti hin godhin."
+msgid "Under the menu item <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph><emph>,</emph> go to the <emph>View</emph> tab page. Unmark <emph>Grid lines</emph>. Confirm with <emph>OK</emph>."
+msgstr ""
-#: formula_value.xhp
+#: text_numbers.xhp
msgctxt ""
-"formula_value.xhp\n"
-"par_id3153157\n"
-"6\n"
+"text_numbers.xhp\n"
+"tit\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>"
-msgstr ""
+msgid "Formatting Numbers as Text"
+msgstr "Lakkoofsa akka Barruutti Dhangeessuu"
-#: format_value.xhp
+#: text_numbers.xhp
msgctxt ""
-"format_value.xhp\n"
+"text_numbers.xhp\n"
+"bm_id3145068\n"
+"help.text"
+msgid "<bookmark_value>numbers;entering as text</bookmark_value> <bookmark_value>text formats; for numbers</bookmark_value> <bookmark_value>formats; numbers as text</bookmark_value> <bookmark_value>cell formats; text/numbers</bookmark_value> <bookmark_value>formatting;numbers as text</bookmark_value>"
+msgstr "<bookmark_value>lakkoofsota; akka barruu</bookmark_value> <bookmark_value>dhangiiwwan barruu; lakkoofsotaaf</bookmark_value> <bookmark_value>lakkoofsota; dhangiiwwan lakkoofsaa malee galchuu </bookmark_value> <bookmark_value>dhangiiwwan; lakkoofsota akka barruu</bookmark_value> <bookmark_value>dhangiiwwan man'ee; barruu/lakkoofsota</bookmark_value> <bookmark_value>dhangeessuu;lakkoofsota akka barruu</bookmark_value>"
+
+#: text_numbers.xhp
+msgctxt ""
+"text_numbers.xhp\n"
+"hd_id3145068\n"
+"46\n"
+"help.text"
+msgid "<variable id=\"text_numbers\"><link href=\"text/scalc/guide/text_numbers.xhp\" name=\"Formatting Numbers as Text\">Formatting Numbers as Text</link></variable>"
+msgstr "<variable id=\"text_numbers\"><link href=\"text/scalc/guide/text_numbers.xhp\" name=\"Formatting Numbers as Text\">Lakkoofsa akka Barruutti Dhangeessuu</link></variable>"
+
+#: text_numbers.xhp
+msgctxt ""
+"text_numbers.xhp\n"
+"par_id3156280\n"
+"43\n"
+"help.text"
+msgid "You can format numbers as text in $[officename] Calc. Open the context menu of a cell or range of cells and choose <emph>Format Cells - Numbers</emph>, then select \"Text\" from the <emph>Category</emph> list. Any numbers subsequently entered into the formatted range are interpreted as text. The display of these \"numbers\" is left-justified, just as with other text."
+msgstr "Lakkoofsota akka barruutti $[officename] Calc keessatti dhangeessuu dandeessa. Baafata haallee man'ee ykn hammangaa man'ee baniitii <emph>Man'eelee Dhangeessi - Lakkoofsota</emph> filadhu, achiin \"Barruu\" tarree <emph>Akaakuu</emph> irraa filadhu. Lakkoofsonni kamuu hamangaa dhangeeffame keessatti galan akka barruutti hiikamu. Argamni \"Lakkoofsa\" kanneenii bitaan wal qixxaateera, akkuma barruu biroo."
+
+#: text_numbers.xhp
+msgctxt ""
+"text_numbers.xhp\n"
+"par_id3149377\n"
+"44\n"
+"help.text"
+msgid "If you have already entered normal numbers in cells and have afterwards changed the format of the cells to \"Text\", the numbers will remain normal numbers. They will not be converted. Only numbers entered afterwards, or numbers which are then edited, will become text numbers."
+msgstr "Yoo lakkoofsota baratamoo man'eelee keessatti durumaanuu galchitee jiraattee fi isaan booda dhangii man'eelee gara \"Barruu\" tti jijjiirte, lakkoofsonni baratamoo ta'anii hafu. Hin jijjiiraman. Lakkoofsota isaan booda galan, ykn lakkoofsota achiin gulaalaman, qofatu lakkoofsota barruu ta'a."
+
+#: text_numbers.xhp
+msgctxt ""
+"text_numbers.xhp\n"
+"par_id3144765\n"
+"45\n"
+"help.text"
+msgid "If you decide to enter a number directly as text, enter an apostrophe (') first. For example, for years in column headings, you can enter '1999, '2000 and '2001. The apostrophe is not visible in the cell, it only indicates that the entry is to be recognized as a text. This is useful if, for example, you enter a telephone number or postal code that begins with a zero (0), because a zero (0) at the start of a sequence of digits is removed in normal number formats."
+msgstr "Yoo lakkoofsa kallattiin akka barruutti galchuu mutteessite, jalaqaba hudhaa(') galchi. Fakkeenyaaf, waggoota irraantota sarjaa keessa jiraniif, '1999, '2000 fi '2001 galchuu dandeessa. Hudhaan man'ee keessatti hin mul'atu, galfatni akka barruutti akka beekamu qofa agarsiisa. Kun yoo, fakkeenyaaf, lakkoofsa bilbilaa ykn postaa kan zeeroon jalqabu, sababni isaas zeroon jalqaba dijiitii dhangiiwwan lakkoofsaa baratamaa keessaa badu galchitu barbaachisaa dha."
+
+#: text_numbers.xhp
+msgctxt ""
+"text_numbers.xhp\n"
+"par_id3156284\n"
+"47\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Dhangii - Man'eewwan - Lakkoofsota</link>"
+
+#: text_rotate.xhp
+msgctxt ""
+"text_rotate.xhp\n"
"tit\n"
"help.text"
-msgid "Formatting Numbers With Decimals"
-msgstr "Lakkoofsota Deesiimaaliidhaan Dhangeessuu"
+msgid "Rotating Text"
+msgstr "Barruu Naannessuu"
-#: format_value.xhp
+#: text_rotate.xhp
msgctxt ""
-"format_value.xhp\n"
-"bm_id3145367\n"
+"text_rotate.xhp\n"
+"bm_id3151112\n"
"help.text"
-msgid "<bookmark_value>numbers;formatting decimals</bookmark_value> <bookmark_value>formats; numbers in tables</bookmark_value> <bookmark_value>tables; number formats</bookmark_value> <bookmark_value>defaults; number formats in spreadsheets</bookmark_value> <bookmark_value>decimal places;formatting numbers</bookmark_value> <bookmark_value>formatting;numbers with decimals</bookmark_value> <bookmark_value>formatting;adding/deleting decimal places</bookmark_value> <bookmark_value>number formats; adding/deleting decimal places in cells</bookmark_value> <bookmark_value>deleting; decimal places</bookmark_value> <bookmark_value>decimal places; adding/deleting</bookmark_value>"
-msgstr "<bookmark_value>lakkoofsota; gabateewwan keessatti dhangeessuu</bookmark_value><bookmark_value>dhangiiwwan; lakkoofsota gabateewwan keessaa</bookmark_value><bookmark_value>gabateewwan; dhangiiwwan lakkoofsaa</bookmark_value><bookmark_value>durtiiwwan; dhangiiwwan lakkoofsaa wardiilee keessaa</bookmark_value><bookmark_value>bakkeewwan deesiimaalii;lakkoofsota dhnageessuu</bookmark_value><bookmark_value>dhnageessuu;lakkoofsota deesiimaalii waliinii</bookmark_value><bookmark_value>dhnageessuu;bakkeewwan deesiimaaliidabaluu/balleessuu</bookmark_value><bookmark_value>dhangiiwwan lakkoofsaa; bakkeewwan deesiimaalii maadheelee keessaa dabaluu/balleessuu</bookmark_value><bookmark_value>balleessuu; bakkeewwan deesiimaalii</bookmark_value><bookmark_value>bakkeewwan deesiimaalii; adding/deleting</bookmark_value>"
+msgid "<bookmark_value>cells; rotating text</bookmark_value> <bookmark_value>rotating; text in cells</bookmark_value> <bookmark_value>text in cells; writing vertically</bookmark_value>"
+msgstr "<bookmark_value>man'eelee; barruu naannessuu</bookmark_value> <bookmark_value>naannessuu; barruu man'eelee keessaa</bookmark_value> <bookmark_value>barruu man'eelee keessaa; irraangadee barreessuu</bookmark_value>"
-#: format_value.xhp
+#: text_rotate.xhp
msgctxt ""
-"format_value.xhp\n"
-"hd_id3145367\n"
+"text_rotate.xhp\n"
+"hd_id3151112\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"text_rotate\"><link href=\"text/scalc/guide/text_rotate.xhp\" name=\"Rotating Text\">Rotating Text</link></variable>"
+msgstr "<variable id=\"text_rotate\"><link href=\"text/scalc/guide/text_rotate.xhp\" name=\"Rotating Text\">Barruu Naannessuu</link></variable>"
+
+#: text_rotate.xhp
+msgctxt ""
+"text_rotate.xhp\n"
+"par_id3145171\n"
+"2\n"
+"help.text"
+msgid "Select the cells whose text you want to rotate."
+msgstr "Maadheelee kan barruu isaanii naannessuu barbaaddu filadhu."
+
+#: text_rotate.xhp
+msgctxt ""
+"text_rotate.xhp\n"
+"par_id3155133\n"
+"3\n"
+"help.text"
+msgid "Choose <emph>Format - Cells</emph>. You will see the <emph>Format Cells</emph> dialog."
+msgstr "<emph>Faayilii - Maxxansi</emph>fili.Qaaqa <emph>Maxxansi</emph> argita."
+
+#: text_rotate.xhp
+msgctxt ""
+"text_rotate.xhp\n"
+"par_id3155854\n"
"4\n"
"help.text"
-msgid "<variable id=\"format_value\"><link href=\"text/scalc/guide/format_value.xhp\" name=\"Formatting Numbers With Decimals\">Formatting Numbers With Decimals</link></variable>"
-msgstr "<variable id=\"format_value\"><link href=\"text/scalc/guide/format_value.xhp\" name=\"Formatting Numbers With Decimals\">Lakkoofsota Deesiimaaliidhaan Dhangeessuu</link></variable>"
+msgid "Click the <emph>Alignment</emph> tab."
+msgstr "Caancala <emph>Walqixxeessa</emph> cuqaasi."
-#: format_value.xhp
+#: text_rotate.xhp
msgctxt ""
-"format_value.xhp\n"
-"par_id3148576\n"
+"text_rotate.xhp\n"
+"par_id3147426\n"
"5\n"
"help.text"
-msgid "Enter a number into the sheet, for example, 1234.5678. This number will be displayed in the default number format, with two decimal places. You will see 1234.57 when you confirm the entry. Only the display in the document will be rounded off; internally, the number retains all four decimal places after the decimal point."
-msgstr "Lakkoofsa maadhee keessatti, fakkeenyaaf, 1234.5678 galchi. Lakkoofsi kun bakkee deesiimaalii durtiin mul'ata, bakka deesiimaalii lamaan. Yeroo galafata mirkaneessitu 1234.57 argita. Argama galmee keessaa qofatu cufama; keessatti, lakkoofsi bakkee deesiimaalii afranuu tuqaa deesiimaalii boodatti ni qabata."
+msgid "In the <emph>Text orientation</emph> area use the mouse to select in the preview wheel the direction in which the text is to be rotated. Click <emph>OK</emph>."
+msgstr "Wiilii durargii keessatti kallattii barruun itti naannesamu filachuuf bal'ina <emph>Kallattii barruu</emph> keessatti hantuutee fayyadami. <emph>TOLE</emph> cuqaasi."
-#: format_value.xhp
+#: text_rotate.xhp
msgctxt ""
-"format_value.xhp\n"
-"par_id3154012\n"
-"12\n"
+"text_rotate.xhp\n"
+"par_id3148456\n"
+"7\n"
"help.text"
-msgid "To format numbers with decimals:"
-msgstr "Lakkoofsota deesiimaaliidhaan dhangeessuu:"
+msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cells\">Format - Cells</link>"
+msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cells\">Dhangii - Maadheelee</link>"
-#: format_value.xhp
+#: text_rotate.xhp
msgctxt ""
-"format_value.xhp\n"
-"par_id3147394\n"
-"6\n"
+"text_rotate.xhp\n"
+"par_id3154944\n"
+"8\n"
"help.text"
-msgid "Set the cursor at the number and choose <emph>Format - Cells</emph> to start the <emph>Format Cells</emph> dialog."
-msgstr "Qaree lakkoofsa irra kaa'iitii qaaqa <emph>Maadheelee Dhangeessi</emph> jalqabuuf <emph>Dhangii - Maadheelee</emph> filadhu."
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\">Format - Cells - Alignment</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\">Dhangii - Maadheelee - Walqixxeessa</link>"
-#: format_value.xhp
+#: text_wrap.xhp
msgctxt ""
-"format_value.xhp\n"
-"par_id3153157\n"
-"9\n"
+"text_wrap.xhp\n"
+"tit\n"
"help.text"
-msgid "On the <emph>Numbers</emph> tab you will see a selection of predefined number formats. In the bottom right in the dialog you will see a preview of how your current number would look if you were to give it a particular format."
-msgstr "Caancala <emph>Lakkoofsota</emph> irratti filannoo dhangiiwwan lakkoofsaa dur murtaawwaa argita. Jala mirgaa qaaqaa keessatti durargii akkaataa lakkoofsi ammee kee yoo dhangii murtaa'e kennuuf jettu itti mul'atu argita."
+msgid "Writing Multi-line Text"
+msgstr "Barruu Sarar-baay'ee Barreessuu"
-#: format_value.xhp
+#: text_wrap.xhp
msgctxt ""
-"format_value.xhp\n"
-"par_id3155766\n"
+"text_wrap.xhp\n"
+"bm_id3154346\n"
"help.text"
-msgid "<image id=\"img_id3149021\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149021\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149021\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3149021\">Sajoo</alt></image>"
+msgid "<bookmark_value>text in cells; multi-line</bookmark_value><bookmark_value>cells; text breaks</bookmark_value><bookmark_value>breaks in cells</bookmark_value><bookmark_value>multi-line text in cells</bookmark_value>"
+msgstr "<bookmark_value>barruu maadheelee keessaa; sarar-baay'ee</bookmark_value><bookmark_value>maadheelee; citoota barruu</bookmark_value><bookmark_value>citoota maadheelee keessaa</bookmark_value><bookmark_value>barruu sarar-baay'ee maadheelee keessaa</bookmark_value>"
-#: format_value.xhp
+#: text_wrap.xhp
msgctxt ""
-"format_value.xhp\n"
-"par_id3149256\n"
-"10\n"
+"text_wrap.xhp\n"
+"hd_id3154346\n"
+"42\n"
"help.text"
-msgid "If you only want to modify the number of the decimal places displayed, the easiest method is to use the <emph>Number Format: Add Decimal Place</emph> or <emph>Number Format: Delete Decimal Place</emph> icons on the Formatting Bar."
-msgstr "Yoo lakkoofsa bakka deesiimaalii mul'atu qofa fooyyessuu yoo barbaadde, malli salphaan sajoolee <emph>Dhangii Lakkoofsaa: Bakka Deesiimaalii Dabali</emph> ykn <emph>Dhangii Lakkoofsaa: Bakka Deesiimaalii Balleessi</emph> Kabala Dhangeessuu irraa fayyadamuu dha."
+msgid "<variable id=\"text_wrap\"><link href=\"text/scalc/guide/text_wrap.xhp\" name=\"Writing Multi-line Text\">Writing Multi-line Text</link></variable>"
+msgstr "<variable id=\"text_wrap\"><link href=\"text/scalc/guide/text_wrap.xhp\" name=\"Writing Multi-line Text\">Barruu Sarar-baay'ee Barreessuu</link></variable>"
-#: print_title_row.xhp
+#: text_wrap.xhp
msgctxt ""
-"print_title_row.xhp\n"
+"text_wrap.xhp\n"
+"par_id3156280\n"
+"41\n"
+"help.text"
+msgid "Pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter keys inserts a manual line break. This shortcut works directly in the cell or in the input line. The input line can be expaneded to the multi-line by the Down arrow button on the right."
+msgstr ""
+
+#: text_wrap.xhp
+msgctxt ""
+"text_wrap.xhp\n"
+"par_id3153142\n"
+"43\n"
+"help.text"
+msgid "If you want the text to automatically break at the right border of the cell, proceed as follows:"
+msgstr "Yoo barruun akka ufmaan xiyyoo mirgaa maadheetti citu barbaadde, akka armaan gadiitti itti fufi:"
+
+#: text_wrap.xhp
+msgctxt ""
+"text_wrap.xhp\n"
+"par_id3153951\n"
+"44\n"
+"help.text"
+msgid "Select all the cells where you want the text to break at the right border."
+msgstr "Maadheelee hunda bakka barruun xiyyoo mirgaa irratti akka citu barbaaddu filadhu."
+
+#: text_wrap.xhp
+msgctxt ""
+"text_wrap.xhp\n"
+"par_id3148575\n"
+"45\n"
+"help.text"
+msgid "In <emph>Format - Cells - Alignment</emph>, mark the <emph>Wrap text automatically</emph> option and click OK."
+msgstr "<emph>Dhangii - Man'eewwan - Hiriirfama</emph> keessatti, dirqaala <emph>Barruu ofmaan marsi</emph> malkateessiitii Tole cuqaasi."
+
+#: text_wrap.xhp
+msgctxt ""
+"text_wrap.xhp\n"
+"par_id3145799\n"
+"46\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cell\">Format - Cell</link>"
+msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cell\">Dhangii - Maadhee</link>"
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
"tit\n"
"help.text"
-msgid "Printing Rows or Columns on Every Page"
-msgstr "Tarreewwanii fi sarjaawwan fuula mara irraa maxxansuu"
+msgid "User-Defined Functions"
+msgstr "Dalagaalee Fayyadamaan qindaa'an"
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"bm_id3151112\n"
+"userdefined_function.xhp\n"
+"bm_id3155411\n"
"help.text"
-msgid "<bookmark_value>printing; sheets on multiple pages</bookmark_value><bookmark_value>sheets; printing on multiple pages</bookmark_value><bookmark_value>rows; repeating when printing</bookmark_value><bookmark_value>columns; repeating when printing</bookmark_value><bookmark_value>repeating;columns/rows on printed pages</bookmark_value><bookmark_value>title rows; printing on all sheets</bookmark_value><bookmark_value>headers; printing on sheets</bookmark_value><bookmark_value>footers; printing on sheets</bookmark_value><bookmark_value>printing; rows/columns as table headings</bookmark_value><bookmark_value>headings;repeating rows/columns as</bookmark_value>"
-msgstr "<bookmark_value>maxxansuu; wardiilee fuula danuu irraa</bookmark_value><bookmark_value>wardiilee; fuulota baay'ee irratti maxxansuu</bookmark_value><bookmark_value>tarreewwan; yeroo maxxansaa irra deebi'uu</bookmark_value><bookmark_value>sarjaawwan; yeroo maxxansaa irra deebi'uu</bookmark_value><bookmark_value>irra deebi'uu;sarjaawwan/tarreewwan fuulota maxxansaman irraa</bookmark_value><bookmark_value>tarreewwan mataduree; wardiilee hunda irratti maxxansuu</bookmark_value><bookmark_value>irraantota; wardiilee irratti maxxansuu</bookmark_value><bookmark_value>jalaantoota; wardiilee irratti maxxansuu</bookmark_value><bookmark_value>maxxansuu; tarreewwan/sarjaawwan akka irraantoowwan gabateewwaniif</bookmark_value><bookmark_value>irraantota;tarreewwan/sarjaawwan irra deebi'uu </bookmark_value>"
+msgid "<bookmark_value>functions; user-defined</bookmark_value><bookmark_value>user-defined functions</bookmark_value><bookmark_value>Basic IDE for user-defined functions</bookmark_value><bookmark_value>IDE; Basic IDE</bookmark_value><bookmark_value>programming;functions</bookmark_value>"
+msgstr "<bookmark_value>dalagaalee; fayyadamaan qindaa'an</bookmark_value><bookmark_value>dalagaalee fayyadamaan qindaa'an</bookmark_value><bookmark_value>Basic IDE dalagaalee fayyadamaan qindaa'aniif</bookmark_value><bookmark_value>IDE; Basic IDE</bookmark_value><bookmark_value>saganteessuu;dalagaalee</bookmark_value>"
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"hd_id3153727\n"
-"21\n"
+"userdefined_function.xhp\n"
+"hd_id3155411\n"
+"1\n"
"help.text"
-msgid "<variable id=\"print_title_row\"><link href=\"text/scalc/guide/print_title_row.xhp\" name=\"Printing Rows or Columns on Every Page\">Printing Rows or Columns on Every Page</link></variable>"
-msgstr "<variable id=\"print_title_row\"><link href=\"text/scalc/guide/print_title_row.xhp\" name=\"Printing Rows or Columns on Every Page\">Tarreewwan ykn sarjaawwan fuula hunda irratti maxxansuu</link></variable>"
+msgid "<variable id=\"userdefined_function\"><link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Defining Functions Yourself\">User-Defined Functions</link></variable>"
+msgstr "<variable id=\"userdefined_function\"><link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Defining Functions Yourself\">Dalagaalee Fayyadamaan qindaa'an</link></variable>"
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3154014\n"
+"userdefined_function.xhp\n"
+"par_id3153969\n"
"2\n"
"help.text"
-msgid "If you have a sheet that is so large that it will be printed multiple pages, you can set up rows or columns to repeat on each printed page."
-msgstr "Yoo wardii baay'ee guddaa kan fuulota baay'ee irratti maxxansamu qabaatte,fuula maxxansamu hunda irratti irra deebi'uuf tarreewwan ykn sarjaawwan qindeessuu dandeessa."
+msgid "You can apply user-defined functions in $[officename] Calc in the following ways:"
+msgstr "Dalagaalee fayyadamaan qindaa'an $[officename] Calc keessatti karaalee armaan gadii raawwachuu dandeessa."
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3146975\n"
+"userdefined_function.xhp\n"
+"par_id3145366\n"
+"4\n"
+"help.text"
+msgid "You can define your own functions using the Basic-IDE. This method requires a basic knowledge of programming."
+msgstr "Basic-IDE fayyadamuudhaan dalagaalee mataa keetii qindeessuu dandeessa."
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3153768\n"
+"3\n"
+"help.text"
+msgid "You can program functions as <link href=\"text/scalc/01/04060111.xhp\" name=\"add-ins\">add-ins</link>. This method requires an advanced knowledge of programming."
+msgstr "Dalagaalee akka <link href=\"text/scalc/01/04060111.xhp\" name=\"add-ins\">add-ins</link> saganteessuu dandeessa. Malli kun beekumsa saganteessuu olaanaa barbaada."
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"hd_id3149260\n"
+"6\n"
+"help.text"
+msgid "Defining A Function Using %PRODUCTNAME Basic"
+msgstr "Dalagaa %PRODUCTNAME Basic Fayyadamuudhaan Qindeessuu"
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3148456\n"
"7\n"
"help.text"
-msgid "As an example, If you want to print the top two rows of the sheet as well as the first column (A)on all pages, do the following:"
-msgstr "Akka fakkeenyaatti,yoo tarreewwan wardii lamaan gubbaa akkasumas sarjaa jalqabaa(A) fuula hunda irratti maxxansuu barbaadde,kan armaan gadii godhi:"
+msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item>."
+msgstr "<item type=\"menuitem\">Meeshaalee - Macros - Macros qindeessi - %PRODUCTNAME Basic</item> filadhu."
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3163710\n"
+"userdefined_function.xhp\n"
+"par_id3154510\n"
"8\n"
"help.text"
-msgid "Choose <emph>Format - Print Ranges - Edit</emph>. The <emph>Edit Print Ranges</emph> dialog appears."
-msgstr "<emph>Dhangii - Hammangaa maxxansaa - Gulaali</emph>fili.Qaaqni<emph>Hammangaa maxxansaa gulaalaa</emph> ni mul'ata."
+msgid "Click the <emph>Edit</emph> button. You will now see the Basic IDE."
+msgstr "Qabduu <emph>Gulaali</emph> cuqaasi. Amma Basic IDE argita."
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3149958\n"
+"userdefined_function.xhp\n"
+"par_id3150327\n"
"9\n"
"help.text"
-msgid "Click the icon at the far right of the <emph>Rows to repeat</emph> area."
-msgstr "Sajoo qarqara mirga bal'ina <emph>Tarreewwan irra deebi'amant</emph> cuqaasi."
+msgid "Enter the function code. In this example, we define a <item type=\"literal\">VOL(a; b; c)</item> function that calculates the volume of a rectangular solid with side lengths <item type=\"literal\">a</item>, <item type=\"literal\">b</item> and <item type=\"literal\">c</item>:"
+msgstr "Lakaddaa dalagaa galchi. Fakkeenaya kana keessatti, dalagaa <item type=\"literal\">VOL(a; b; c)</item> kan qabiyyee jajjabaa rogafree fageenyota rogaa <item type=\"literal\">a</item>, <item type=\"literal\">b</item> and <item type=\"literal\">c</item> qaban shallagu qindeessina:"
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3145800\n"
+"userdefined_function.xhp\n"
+"par_id3155443\n"
"10\n"
"help.text"
-msgid "The dialog shrinks so that you can see more of the sheet."
-msgstr "Akka wardii bal'inaan agartuuf qaaqni ni suntuura."
+msgid "Close the Basic-IDE window."
+msgstr "Foddaa Basic-IDE cufi."
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3155602\n"
+"userdefined_function.xhp\n"
+"par_id3150043\n"
"11\n"
"help.text"
-msgid "Select the first two rows and, for this example, click cell A1 and drag to A2."
-msgstr "Tarreewwan jalqabaa lamaan filadhuutii,fakkeenyaaf,man'ee A1 cuqaasiitii gara A2 harkisi."
+msgid "Your function is automatically saved in the default module and is now available. If you apply the function in a Calc document that is to be used on another computer, you can copy the function to the Calc document as described in the next section."
+msgstr "Dalagaan kee ufmaan muraa dutii keessatti olkaa'amee amma ni jira. Yoo dalagaa galmee Calc keessaa kan kompiwutara biraa irratti fayyaduuf ta'u raawwatte, dalagaa gara galmee Calc akkuma kutaa ittaanu keessatti ibsamutti garagalchuu dandeessa."
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3154018\n"
+"userdefined_function.xhp\n"
+"hd_id3147340\n"
+"18\n"
+"help.text"
+msgid "Copying a Function To a Document"
+msgstr "Dalagaa gara galmeetti garagalchi"
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3145232\n"
+"19\n"
+"help.text"
+msgid "In stage 2 of \"Defining A Function Using %PRODUCTNAME Basic\", in the <emph>Macro</emph> dialog you clicked on <emph>Edit </emph>. As the default, in the <emph>Macro from</emph> field the <emph>My Macros - Standard - Module1</emph> module is selected. The <emph>Standard</emph> library resides locally in your user directory."
+msgstr "Sadarkaa 2 \"Dalagaa %PRODUCTNAME Basic fayyadamuun qindeessuu\" keessatti, qaaqa <emph>Macro</emph> keessatti <emph>Gulaali </emph> cuqaaste. Akka durtiitti, dirree <emph>Macro irraa</emph> keessatti muraan <emph>Macros koo - Durtii - Muraa1</emph> ni filatama. Galmee<emph>Durtii</emph> galeeloo fayyadamaa keessa jira.."
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3154022\n"
+"20\n"
+"help.text"
+msgid "If you want to copy the user-defined function to a Calc document:"
+msgstr "Yoo dalagaa fayyadamaan qindaa'e gara galmee Calc tti garagalchuu barbaadde:"
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3150304\n"
+"21\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item> ."
+msgstr "<item type=\"menuitem\">Miyoota - Macros - Macros qindeessi - %PRODUCTNAME Basic</item> filadhu."
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3150086\n"
+"22\n"
+"help.text"
+msgid "In the <emph>Macro from</emph> field select <emph>My Macros - Standard - Module1</emph> and click <emph>Edit</emph>."
+msgstr "Dirree <emph>Macro irraa</emph> keessatti koo<emph>Micros - Durtii - Muraa1</emph>. <emph>Gulaali</emph> cuqaasi."
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3166430\n"
+"23\n"
+"help.text"
+msgid "In the Basic-IDE, select the source of your user-defined function and copy it to the clipboard."
+msgstr "Basic-IDE keessatti,madda dalagaa fayyadamaan qindaa'e filadhuutii gara muraa gabateetti garagalchi."
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_idN1081D\n"
+"help.text"
+msgid "Close the Basic-IDE."
+msgstr "Basic-IDE cufi."
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3150517\n"
+"24\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item> ."
+msgstr "<item type=\"menuitem\">Miyoota - Macros - Macros qindeessi - %PRODUCTNAME Basic</item> filadhu."
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3145384\n"
+"25\n"
+"help.text"
+msgid "In the <emph>Macro from</emph> field select <emph>(Name of the Calc document) - Standard - Module1</emph>. Click <emph>Edit</emph>."
+msgstr "Dirree <emph>Macro irraa</emph> keessatti <emph>(Maqaa galmee Calc) - Durtii - Muraa1</emph>. <emph>Gulaali</emph> cuqaasi."
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3148699\n"
+"26\n"
+"help.text"
+msgid "Paste the clipboard contents in the Basic-IDE of the document."
+msgstr "Qabiyyeewwan gabatee muraa Basic-IDE galmee keessatti maxxansi."
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"hd_id3153305\n"
"12\n"
"help.text"
-msgid "In the shrunk dialog you will see $1:$2. Rows 1 and 2 are now rows to repeat."
-msgstr "Qaaqa xiqqaate keessatti $1:$2 argita. Tarree 1 fi 2 amma tarreewwan irra deebi'amani dha."
+msgid "Applying a User-defined Function in $[officename] Calc"
+msgstr "Dalagaa namaan qindaa'e $[officename] Calc keessatti raawwachuu"
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3153707\n"
+"userdefined_function.xhp\n"
+"par_id3148869\n"
"13\n"
"help.text"
-msgid "Click the icon at the far right of the <emph>Rows to repeat</emph> area. The dialog is restored again."
-msgstr "Sajoo qarqara mirga bal'ina <emph>Tarreewwan irra deebi'amant</emph> cuqaasi. Qaaqni ammas bakka deebi'a."
+msgid "Once you have defined the function <item type=\"literal\">VOL(a; b; c)</item> in the Basic-IDE, you can apply it the same way as the built-in functions of $[officename] Calc."
+msgstr "Tokkicha dalagaa <item type=\"literal\">VOL(a; b; c)</item> erga Basic-IDE keessatti qindeessitee,akkuma dalagaalee keessaa $[officename] Calc tti haaluma tokkoon raawwachuu dandeessa."
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3155443\n"
+"userdefined_function.xhp\n"
+"par_id3148606\n"
"14\n"
"help.text"
-msgid "If you also want column A as a column to repeat, click the icon at the far right of the <emph>Columns to repeat</emph> area."
-msgstr "Yoo sarjaa A akka sarjaa irra deebiitti barbaaddes, sajoo qarqara mirgaa bal'ina <emph>Sarjaalee irra deebi'aman</emph> keessa jiru cuqaasi."
+msgid "Open a Calc document and enter numbers for the function parameters <item type=\"literal\">a</item>, <item type=\"literal\">b</item>, and <item type=\"literal\">c</item> in cells A1, B1, and C1."
+msgstr "Galmee Calc baniitii ulaagaalee dalagaa <item type=\"literal\">a</item>, <item type=\"literal\">b</item> fi <item type=\"literal\">c</item> man'eelee A1,B1 fi C1 keessaatti lakkoofsota galchi."
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3154256\n"
+"userdefined_function.xhp\n"
+"par_id3156019\n"
"15\n"
"help.text"
-msgid "Click column A (not in the column header)."
-msgstr "Sarjaa A cuqaasi(irraantoo sarjaa keessa miti)."
+msgid "Set the cursor in another cell and enter the following:"
+msgstr "Qaree maadhee biraa keessa kaa'iitii kan armaan gadii galchi:"
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3154704\n"
+"userdefined_function.xhp\n"
+"par_id3155264\n"
"16\n"
"help.text"
-msgid "Click the icon again at the far right of the <emph>Columns to repeat</emph> area."
-msgstr "Sajoo qarqara mirga bal'ina <emph>Tarreewwan irra deebi'amant</emph> cuqaasi."
+msgid "=VOL(A1;B1;C1)"
+msgstr "=VOL(A1;B1;C1)"
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3150088\n"
+"userdefined_function.xhp\n"
+"par_id3146776\n"
"17\n"
"help.text"
-msgid "Rows to repeat are rows from the sheet. You can define headers and footers to be printed on each print page independently of this in <emph>Format - Page</emph>."
-msgstr "Tarreewwan irra deebi'aman tarreewwan wardii irraa ti. Irraantotaa fi jalaantota maxxansamuuf jadhan fuula maxxansaa mara irratti kanaa alatti <emph>Dhangii - Fuula</emph> keessatti qindeessuu dandeessa."
+msgid "The function is evaluated and you will see the result in the selected cell."
+msgstr "Dalagaan ni madaalameetu bu'aa maadhee filatame keessatti agarta."
-#: print_title_row.xhp
+#: validity.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3155380\n"
+"validity.xhp\n"
+"tit\n"
+"help.text"
+msgid "Validity of Cell Contents"
+msgstr "Sirrummaa qabiyyeewwan maadhee"
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"bm_id3156442\n"
+"help.text"
+msgid "<bookmark_value>values; limiting on input</bookmark_value><bookmark_value>limits; specifying value limits on input</bookmark_value><bookmark_value>permitted cell contents</bookmark_value><bookmark_value>data validity</bookmark_value><bookmark_value>validity</bookmark_value><bookmark_value>cells; validity</bookmark_value><bookmark_value>error messages; defining for incorrect input</bookmark_value><bookmark_value>actions in case of incorrect input</bookmark_value><bookmark_value>Help tips; defining text for cell input</bookmark_value><bookmark_value>comments;help text for cells</bookmark_value><bookmark_value>cells; defining input help</bookmark_value><bookmark_value>macros; running when incorrect input</bookmark_value><bookmark_value>data; validity check</bookmark_value>"
+msgstr "<bookmark_value>gatiiwwan; daangessa naqaarraa</bookmark_value><bookmark_value>daangessoota; daangessa gatii naqa irraa ifteessuuu</bookmark_value><bookmark_value>qabeentoota man'ee eeyyamamu</bookmark_value><bookmark_value>gataa'insa deetaa</bookmark_value><bookmark_value>gataa'insa</bookmark_value><bookmark_value>man'eelee; gataa'insa</bookmark_value><bookmark_value>ergaawwan dogoggoraa; naqa sirrii hin taaneef ibsuu</bookmark_value><bookmark_value>gochaa yoo naqni sirrii hin taane mudate</bookmark_value><bookmark_value>qajeelcha Gargaarsaa; naqa man'eetiif barruu ibsuu</bookmark_value><bookmark_value>yaadawwan;barruu gargaarsaa man'eef</bookmark_value><bookmark_value>man'eelee; gargaarsa naqaa ibsuu</bookmark_value><bookmark_value>maakroowwan; yeroo naqa sirrii hin taane kaachisuu</bookmark_value><bookmark_value>deetaa; mirkaneessa gataa'insaa</bookmark_value>"
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"hd_id3156442\n"
+"22\n"
+"help.text"
+msgid "<variable id=\"validity\"><link href=\"text/scalc/guide/validity.xhp\" name=\"Validity of Cell Contents\">Validity of Cell Contents</link></variable>"
+msgstr "<variable id=\"validity\"><link href=\"text/scalc/guide/validity.xhp\" name=\"Validity of Cell Contents\">Sirrummaa qabiyyeewwan maadhee</link></variable>"
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3156283\n"
+"2\n"
+"help.text"
+msgid "For each cell, you can define entries to be valid. Invalid entries to a cell will be rejected."
+msgstr "Tokkoon tokkoo man'eetiif,galfatoota sirrii qindeessuu dandeessa.Galfatootni sirrii hin taane ni gatama."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3145252\n"
+"3\n"
+"help.text"
+msgid "The validity rule is activated when a new value is entered. If an invalid value has already been inserted into the cell, or if you insert a value in the cell either with drag-and-drop or by copying and pasting, the validity rule will not take effect."
+msgstr "Seerri sirrummaa yeroo gatiin haaraa galchamu kaka'a.Yoo gatiin sirrii hin taane dursee man'ee keessatti saagamee jiraate,yookiin yoo gatii man'ee keessatti harkisii-kaa'iin ykn garagalchaa fi maxxansuudhaan saagde,seerri sirrummaa bu'aa hin qabu."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id5174718\n"
+"help.text"
+msgid "You can choose <emph>Tools - Detective</emph> at any time and choose the command <link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\"><emph>Mark Invalid Data</emph></link> to display which cells contain invalid values."
+msgstr "<emph>Miyoota - Argamaa</emph> yeroo kamittuu filuu dandeessa akkasumas man'eelee kamtu gatiiwwan sirrii hin taane qabatan mul'isuuf ajaja <link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\"><emph>Deetaa sirrii hin taane mallatteessi</emph></link> filadhu."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"hd_id3155603\n"
+"5\n"
+"help.text"
+msgid "Using Cell Contents Validity"
+msgstr "Sirrummaa qabiyyeewwan maadhee fayyadamuu"
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3155959\n"
+"6\n"
+"help.text"
+msgid "Select the cells for which you want to define a new validity rule."
+msgstr "Maadhee kan seera sirrummaa haaraa qindeessuufii barbaaddu filadhu."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3148837\n"
+"8\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Data - Validity</item>."
+msgstr "<item type=\"menuitem\">Deetaa - sirrummaa</item> fili."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3156020\n"
+"9\n"
+"help.text"
+msgid "On the <emph>Criteria</emph> tab page, enter the conditions for new values entered into cells."
+msgstr "Fuula caancala <emph>Ulaagaa</emph> irratti, haallan gatiiwwan haaraa man'eelee keessatti galan galchi."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3159208\n"
+"10\n"
+"help.text"
+msgid "In the <emph>Allow</emph> field, select an option."
+msgstr "Dirree <emph>Eeyyami</emph> keessa,dirqaala filadhu."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3153011\n"
+"11\n"
+"help.text"
+msgid "If you select \"Whole Numbers\", values such as \"12.5\" are not allowed. Choosing \"Date\" allows date information both in the local date format as well as in the form of a <link href=\"text/sbasic/shared/03030101.xhp\" name=\"serial date\">serial date</link>. Similarly, the \"Time\" condition permits time values such as \"12:00\" or serial time numbers. \"Text Length\" stipulates that cells are allowed to contain text only."
+msgstr "Yoo \"Lakkoofsa hundaa\" filatte,gatiiwwan akka \"12.5\" hin eeyyamaman.\"Guyyaa\" filachuun odeeffannoo guyyaa dhangii guyyaa baramaa akkasumas haala <link href=\"text/sbasic/shared/03030101.xhp\" name=\"serial date\">guyyaa tartiibaa</link> tiin si dandeessisa.Haala walfakkaatuun,haalli \"yeroo\" gatiiwwan yeroo akka \"12:00\" ykn lakkoofsota yeroo tartiibaa eeyyama.\"Dheerina barruu\" akka man'eeleen barruu qofa qabachuu danda'an murteessa."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id9224829\n"
+"help.text"
+msgid "Select \"List\" to enter a list of valid entries."
+msgstr "Tarree galfatoota sirrii galchuuf \"Tarree\" fili."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3149317\n"
+"13\n"
+"help.text"
+msgid "Select the next condition under <emph>Data</emph>. According to what you choose, additional options will be selectable."
+msgstr "Haala itti aanu <emph>Deetaa</emph> jalaa filadhu.Akkaataa waanata filattuutiin,dirqaalaaleen dabalataa filatamuu danda'u."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3151389\n"
+"15\n"
+"help.text"
+msgid "After you have determined the conditions for cell validity, you can use the other two tab pages to create message boxes:"
+msgstr "Erga haallan sirrummaa man'eetiif murteessitee booda,fuulota caancalaa biroo lamaan sanduuqota ergaa uumuuf fayyadamuu dandeesa."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3159261\n"
+"16\n"
+"help.text"
+msgid "On the <emph>Input Help</emph> tab page, enter the title and the text of the tip, which will then be displayed if the cell is selected."
+msgstr "Fuula caancala <emph>Gargaarsa naqaa</emph> irratti,mataduree fi barruu qajeelchaa ,isa yeroo maadheen filatamu mul'atu, galchi."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3156396\n"
+"17\n"
+"help.text"
+msgid "On the <emph>Error Alert</emph> tab page, select the action to be carried out in the event of an error."
+msgstr "Fuula caancala <emph>Of eeggannoo dogoggoraa</emph> irratti,gochaa mudata dogoggoraa irratti raawwatu filadhu."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3147416\n"
"18\n"
"help.text"
-msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
-msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">Argi - Durargii Cita Fuulaa</link>"
+msgid "If you select \"Stop\" as the action, invalid entries are not accepted, and the previous cell contents are retained."
+msgstr "Yoo akka gochaatti \"Dhaabi\" filatte,galfatootni sirrii hin taane hin fudhatman, akkasumas qabiyyeewwan man'ee isaan duraanii ni jiraatu."
-#: print_title_row.xhp
+#: validity.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3154371\n"
+"validity.xhp\n"
+"par_id3150033\n"
"19\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Format - Print ranges - Edit</link>"
-msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Dhangiit - Hammangaawwan maxxansaa - Edit</link>"
+msgid "Select \"Warning\" or \"Information\" to display a dialog in which the entry can either be canceled or accepted."
+msgstr "Qaaqa keessatti galfatni haqamu ykn fudhatamu mul'isuuf \"Of eeggannoo\" ykn \"Odeeffannoo\" filadhu."
-#: print_title_row.xhp
+#: validity.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3146113\n"
+"validity.xhp\n"
+"par_id3149947\n"
"20\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format - Page - (Header / Footer)\">Format - Page - (Header / Footer)</link>"
-msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format - Page - (Header / Footer)\">Dhangii - Fuula - (Irraantoo / Jalaantoo)</link>"
+msgid "If you select \"Macro\", then by using the <emph>Browse</emph> button you can specify a macro to be run in the event of an error."
+msgstr "Yoo \"Micro\" filatte,achiin qabduu <emph>Sakatta'i</emph> fayyadamuudhaan macro mudata dogoggoraa keessa kaachifamu ifteessuu dandeessa."
-#: print_details.xhp
+#: validity.xhp
msgctxt ""
-"print_details.xhp\n"
+"validity.xhp\n"
+"par_id3149011\n"
+"35\n"
+"help.text"
+msgid "To display the error message, select <emph>Show error message when invalid values are entered</emph>."
+msgstr "Ergaa dogoggoraa mul'isuuf,<emph>yeroo gatiiwwan sirrii hin taane galchaman ergaa dogoggoraa agarsiisi</emph> filadhu."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3148586\n"
+"21\n"
+"help.text"
+msgid "After changing the action for a cell on the <emph>Error Alert</emph> tab page and closing the dialog with OK, you must first select another cell before the change takes effect."
+msgstr "Erga man'ee fuula caancala <emph>Of eeggannoo dogoggoraa</emph> irra jiruuf gochaa jijjiirtee fi qaaqa TOLE dhaan cuftee booda,osoo jijjiiramni hin raawwatin dura man'ee biraa filachuu qabda."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3154805\n"
+"30\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Data - Validity\">Data - Validity</link>"
+msgstr "<link href=\"text/scalc/01/12120000.xhp\" name=\"Data - Validity\">Deetaa - gataa'insa</link>"
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
"tit\n"
"help.text"
-msgid "Printing Sheet Details"
-msgstr "Waa'ee Wardii Maxxansaa"
+msgid "Naming Cells"
+msgstr "Maadheelee moggaasuu"
-#: print_details.xhp
+#: value_with_name.xhp
msgctxt ""
-"print_details.xhp\n"
-"bm_id3154346\n"
+"value_with_name.xhp\n"
+"bm_id3147434\n"
"help.text"
-msgid "<bookmark_value>printing;sheet details</bookmark_value><bookmark_value>sheets; printing details</bookmark_value><bookmark_value>grids; printing sheet grids</bookmark_value><bookmark_value>formulas; printing, instead of results</bookmark_value><bookmark_value>comments; printing</bookmark_value><bookmark_value>charts;printing</bookmark_value><bookmark_value>sheet grids; printing</bookmark_value><bookmark_value>cells; printing grids</bookmark_value><bookmark_value>borders; printing cells</bookmark_value><bookmark_value>zero values; printing</bookmark_value><bookmark_value>null values; printing</bookmark_value><bookmark_value>draw objects;printing</bookmark_value>"
-msgstr "<bookmark_value>maxxansuu;baldhintaa wardii</bookmark_value><bookmark_value>wardiilee;baldhintaa maxxansuu</bookmark_value><bookmark_value>tarsaawwan; tarsaawwan wardii maxxansuu</bookmark_value><bookmark_value>foormulaawwan; maxxansuu, bu'alee osoo hin ta'in</bookmark_value><bookmark_value>yaadawwan; maxxansuu</bookmark_value><bookmark_value>taattoowwan;maxxansuu</bookmark_value><bookmark_value>tarsaawwan wardii; maxxansuu</bookmark_value><bookmark_value>man'eewwan; tarsaawwan maxxansuu</bookmark_value><bookmark_value>handaarawwan; man'eelee maxxansuu</bookmark_value><bookmark_value>gatiiwwan zeeroo; maxxansuu</bookmark_value><bookmark_value>gatiiwwan duwwaa; maxxansuu</bookmark_value><bookmark_value>waantota fakkisaa; maxxansaa</bookmark_value>"
+msgid "<bookmark_value>cells; defining names</bookmark_value> <bookmark_value>names; defining for cells</bookmark_value> <bookmark_value>values; defining names</bookmark_value> <bookmark_value>constants definition</bookmark_value> <bookmark_value>variables; defining names</bookmark_value> <bookmark_value>cell ranges; defining names</bookmark_value> <bookmark_value>defining;names for cell ranges</bookmark_value> <bookmark_value>formulas; defining names</bookmark_value> <bookmark_value>addressing; by defined names</bookmark_value> <bookmark_value>cell names; defining/addressing</bookmark_value> <bookmark_value>references; by defined names</bookmark_value> <bookmark_value>allowed cell names</bookmark_value> <bookmark_value>renaming;cells</bookmark_value>"
+msgstr "<bookmark_value>man'eelee; maqaalee ibsuu</bookmark_value> <bookmark_value>maqaalee; man'eeleef ibsuu</bookmark_value> <bookmark_value>gatiiwwan; maqaalee ibsuu</bookmark_value> <bookmark_value>hiikoo seranaa</bookmark_value> <bookmark_value>jijjiiramtoota; maqaalee ibsuu</bookmark_value> <bookmark_value>hangiiwwan man'ee; maqaalee ibsuu</bookmark_value> <bookmark_value>ibsuu;maqaalee hangiiwwan man'eetiif</bookmark_value> <bookmark_value>foormulaawwan; maqaalee ibsuu</bookmark_value> <bookmark_value>teessessuu; maqaalee ibsamaniin</bookmark_value> <bookmark_value>maqaalee man'ee; ibsuu/teessessuu</bookmark_value> <bookmark_value>wabiilee; maqaalee ibsamaniin</bookmark_value> <bookmark_value>maqaalee man'ee eeyyamaman</bookmark_value> <bookmark_value>maqaa jijjiiruu;man'eewwan</bookmark_value>"
-#: print_details.xhp
+#: value_with_name.xhp
msgctxt ""
-"print_details.xhp\n"
-"hd_id3154346\n"
+"value_with_name.xhp\n"
+"hd_id3147434\n"
"1\n"
"help.text"
-msgid "<variable id=\"print_details\"><link href=\"text/scalc/guide/print_details.xhp\" name=\"Printing Sheet Details\">Printing Sheet Details</link></variable>"
-msgstr "<variable id=\"print_details\"><link href=\"text/scalc/guide/print_details.xhp\" name=\"Printing Sheet Details\">Waa'ee wardii maxxansuu</link></variable>"
+msgid "<variable id=\"value_with_name\"><link href=\"text/scalc/guide/value_with_name.xhp\" name=\"Naming Cells\">Naming Cells</link></variable>"
+msgstr "<variable id=\"value_with_name\"><link href=\"text/scalc/guide/value_with_name.xhp\" name=\"Naming Cells\">Maadheelee moggaasuu</link></variable>"
-#: print_details.xhp
+#: value_with_name.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3153728\n"
+"value_with_name.xhp\n"
+"hd_id4391918\n"
+"help.text"
+msgid "Allowed names"
+msgstr "Maqaalee eeyyamaman"
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id2129581\n"
+"help.text"
+msgid "Names in Calc can contain letters, numeric characters, and some special characters. Names must start with a letter or an underline character."
+msgstr "Maqaaleen Calc keessaa qubeelee,lakkoofsotaa, fi arfiilee addaa qabachuu danda'a.Maqaaleen arfiin ykn jalmuraan jalqabuu qabu."
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id1120029\n"
+"help.text"
+msgid "Allowed special characters:"
+msgstr "Arfiilee addaa eeyyamaman"
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3362224\n"
+"help.text"
+msgid "underline (_)"
+msgstr "jalmura(_)"
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id4891506\n"
+"help.text"
+msgid "period (.) - allowed within a name, but not as first or last character"
+msgstr "tuqaa (.)-maqaa keessatti ni eeyyamama, garuu akka qubee jalqabaa ykn dhumaa hin ta'u"
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id2816553\n"
+"help.text"
+msgid "blank ( ) - allowed within a name, but not as first or last character, and not for a cell range"
+msgstr "duwwaa ( )-maqaa keessatti ni eeyyamama, garuu akka qubee jalqabaa ykn dhumaa hin ta'u, akkasumas hammangaa man'eef hin ta'u"
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id328989\n"
+"help.text"
+msgid "Names must not be the same as cell references. For example, the name A1 is invalid because A1 is a cell reference to the top left cell."
+msgstr "Maqaaleen akka qabii man'eetti tokko ta'uu hin qaban.Fakkeenyaaf,maqaan A1 sirrii miti sababni isaas A1 wabii man'ee gubbaa bitaa ti."
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id32898987\n"
+"help.text"
+msgid "Names must not start with the letter R followed by a number. See the ADDRESS function for more information."
+msgstr ""
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id4769737\n"
+"help.text"
+msgid "Names for cell ranges must not include blanks. Blanks are allowed within names for single cells, sheets and documents."
+msgstr "Maqaaleen hammangaawwan man'ee bakka duwwaa qabaachuu hin qaban.Bakki duwwaa kan eeyyamamu maqaalee man'eewwan,wardiilee fi galmeelee baaqqee keessatti dha."
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"hd_id1226233\n"
+"help.text"
+msgid "Naming cells and formulas"
+msgstr "Maadheelee fi foormulaa moggaasuu"
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id5489364\n"
+"help.text"
+msgid "A good way of making the references to cells and cell ranges in formulas legible is to give the ranges names. For example, you can name the range A1:B2 <emph>Start</emph>. You can then write a formula such as \"=SUM(Start)\". Even after you insert or delete rows or columns, $[officename] still correctly assigns the ranges identified by name. Range names must not contain any spaces."
+msgstr "Karaan man'eelee fi hammangaa man'eee foormulaa keessa jiru wabeeffachuu gaariin maqaalee hammangaawwanii kennuu dha.Fakkenyaaf,hammangaa A1:B2 <emph>Jalqaba</emph> jettee moggaasuu dandeessa.Achiin foormulaa kan akka \"=SUM(Jalqaba)\" barreessuu dandessa.Erga tarreewwan ykn sarjaawwan saagdee yookiin haqxee boodayyuu,$[officename] ammayyuu hammangaawwan maqaan addaan bahan sirriidhaan ramada.Maqaaleen hammangaa iddoolee qabaachuu hin qaban."
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id953398\n"
+"help.text"
+msgid "For example, it is much easier to read a formula for sales tax if you can write \"= Amount * Tax_rate\" instead of \"= A5 * B12\". In this case, you would name cell A5 \"Amount\" and cell B12 \"Tax_rate.\""
+msgstr "Fakkeenyaaf,foormulaa ashuuraa gurgurtaa dubbisuun yoo \"= Amount * Tax_rate\" barreessuu dandeesse,\"= A5 * B12\" irra baay'ee salphaa dha."
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id4889675\n"
+"help.text"
+msgid "Use the <emph>Define Names</emph> dialog to define names for formulas or parts of formulas you need more often. In order to specify range names,"
+msgstr "Maqaalee formulaawwan yookiin qaamolee foormulaawwanii kan yeroo baay'ee barbaadamaniif qindeessuuf qaaqa <emph>Maqaalee qindeessuu</emph>fayyadami.Maqaalee hammangaa qindeessuuf,"
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3153954\n"
+"3\n"
+"help.text"
+msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
+msgstr "Man'ee yookiin hammanga man'eelee filadhu,achiin <emph>Saagi - Maqaalee - Qindeessi</emph> fili.Qaaqni <emph>Maqaalee qindeessi</emph> ni mul'ata."
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3156283\n"
+"4\n"
+"help.text"
+msgid "Type the name of the selected area in the <emph>Name</emph> field. Click <emph>Add</emph>. The newly defined name appears in the list below. Click OK to close the dialog."
+msgstr "Maqaa bal'ina filatamee dirree <emph>Maqaa</emph> keessatti barreessi.<emph>Dabali</emph> cuqaasi.Maqaan haaraa qindaa'e tarree armaan gadii keessatti mul'ata.Qaaqa cufuuf TOLE cuqaasi."
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id5774101\n"
+"help.text"
+msgid "You can also name other cell ranges in this dialog by entering the name in the field and then selecting the respective cells."
+msgstr "Hammangaawwan maadhee biroos qaaqa kana keessatti maqaa dirree keesatti galchuudhaan moggaasuu fi achiin maadheelee isaanii filachuu dandeessa."
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3154942\n"
+"5\n"
+"help.text"
+msgid "If you type the name in a formula, after the first few characters entered you will see the entire name as a tip."
+msgstr "Yoo maqaa foormulaa keessatti barreessite,erga qubeen muraasni barreeffamee maqaa guutuu akka qajeelchaatti argita."
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3154510\n"
+"6\n"
+"help.text"
+msgid "Press the Enter key in order to accept the name from the tip."
+msgstr "Maqaa qajeelcha irraa fudhachuuf furtuu Enter tuqi."
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3150749\n"
+"7\n"
+"help.text"
+msgid "If more than one name starts with the same characters, you can scroll through all the names using the Tab key."
+msgstr "Maqaan tokkoo ol qubeelee walfakkaataan yoo jalqabe,maqaalee hundarra furtuu Tab fayyadamuun marfachuu dandeessa."
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3153711\n"
+"8\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
+msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Saagi - Maqaalee - Qindeessi</link>"
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"tit\n"
+"help.text"
+msgid "Inserting External Data in Table (WebQuery)"
+msgstr "Deetaa alaa gabatee keessatti saaguu(GaafataSaaphaphuu)"
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"bm_id3154346\n"
+"help.text"
+msgid "<bookmark_value>HTML WebQuery</bookmark_value><bookmark_value>ranges; inserting in tables</bookmark_value><bookmark_value>external data; inserting</bookmark_value><bookmark_value>tables; inserting external data</bookmark_value><bookmark_value>web pages; importing data</bookmark_value><bookmark_value>WebQuery filter</bookmark_value><bookmark_value>inserting; external data</bookmark_value><bookmark_value>data sources; external data</bookmark_value>"
+msgstr "<bookmark_value>GaafataSaaphaphuu HTML</bookmark_value><bookmark_value>hammangaawwan; gabateewwan keessatti saaguu</bookmark_value><bookmark_value>deetaa alaa; saaguu</bookmark_value><bookmark_value>gabateewwan; deetaa alaa saaguu</bookmark_value><bookmark_value>fuulota saaphaphuu; deetaa alaaguu</bookmark_value><bookmark_value>gingilcha GaafataSaaphaphuu</bookmark_value><bookmark_value>saaguu; deetaa alaa</bookmark_value><bookmark_value>maddeen deetaa; deetaa alaa</bookmark_value>"
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"hd_id3125863\n"
"2\n"
"help.text"
-msgid "When printing a sheet you can select which details are to be printed:"
-msgstr "Yeroo wardii maxxansitu waa'ee maxxansamuu filachuu dandeessa:"
+msgid "<variable id=\"webquery\"><link href=\"text/scalc/guide/webquery.xhp\" name=\"Inserting External Data in Table (WebQuery)\">Inserting External Data in Table (WebQuery)</link></variable>"
+msgstr "<variable id=\"webquery\"><link href=\"text/scalc/guide/webquery.xhp\" name=\"Inserting External Data in Table (WebQuery)\">Deetaa alaa gabatee keessatti saaguu (GaafataSaaphaphuu)</link></variable>"
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3150010\n"
+"webquery.xhp\n"
+"par_id3155131\n"
"3\n"
"help.text"
-msgid "Row and column headers"
-msgstr "Irraantowwan tarree fi sarjaa"
+msgid "With the help of the <emph>Web Page Query ($[officename] Calc)</emph> import filter, you can insert tables from HTML documents in a Calc spreadsheet."
+msgstr "Gingilcha alaaguu <emph>Gaafata fuula saaphaphuu ($[officename] Calc)</emph> fayyadamuudhaan, gabateewwan galmee HTML irraa wardii Calc keessaa saaguu dandeessa."
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3154013\n"
+"webquery.xhp\n"
+"par_id3148575\n"
"4\n"
"help.text"
-msgid "Sheet grid"
-msgstr "Tarsaa wardii"
+msgid "You can use the same method to insert ranges defined by name from a Calc or Microsoft Excel spreadsheet."
+msgstr "Hammanga murtaa'e maqaadhaan Calc yookiin wardii Microsoft Excel irraa saaguuf mala sanumatti fayyadamuu dandeessa."
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3145273\n"
+"webquery.xhp\n"
+"par_id3149664\n"
"5\n"
"help.text"
-msgid "Comments"
-msgstr "Yaadota"
+msgid "The following insert methods are available:"
+msgstr "Malli saaguu armaan gadii ni jiru:"
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3145801\n"
+"webquery.xhp\n"
+"hd_id3146976\n"
"6\n"
"help.text"
-msgid "Objects and graphics"
-msgstr "Waantotaa fi Saxaatoo"
+msgid "Inserting by Dialog"
+msgstr "Qaaqaan saaguu"
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3154491\n"
+"webquery.xhp\n"
+"par_id3154319\n"
"7\n"
"help.text"
-msgid "Charts"
-msgstr "Taattoowwan"
+msgid "Set the cell cursor at the cell where the new content will be inserted."
+msgstr "Qaree maadhee bakka qabiyyeen haaraa saagamutti kaa'a."
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3154731\n"
+"webquery.xhp\n"
+"par_id3145750\n"
"8\n"
"help.text"
-msgid "Drawing objects"
-msgstr "Waantota fakkisaa"
+msgid "Choose <emph>Insert - Link to External Data</emph>. This opens the <link href=\"text/scalc/01/04090000.xhp\">External Data</link> dialog."
+msgstr "<emph>Saagi - Geessituu gara deetaa alaa</emph> filadhu. Kun qaaqa <link href=\"text/scalc/01/04090000.xhp\">Deetaa Alaa</link> bana."
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3149400\n"
+"webquery.xhp\n"
+"par_id3149958\n"
"9\n"
"help.text"
-msgid "Formulas"
-msgstr "Foormulaawwan"
+msgid "Enter the URL of the HTML document or the name of the spreadsheet. Press Enter when finished. Click the <emph>...</emph> button to open a file selection dialog."
+msgstr "URL galmee HTML yookiin maqaa wardii galchi.Yeroo dhumu Enter tuqi.Qaaqa filannoo faayilii banuuf qabduu <emph>...</emph> cuqaasi."
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3150752\n"
+"webquery.xhp\n"
+"par_id3149400\n"
"10\n"
"help.text"
-msgid "To choose the details proceed as follows:"
-msgstr "Waa'ee filachuuf akka armaan gadiitti itti fufi:"
+msgid "In the large list box of the dialog, select the named ranges or tables you want to insert."
+msgstr "Sanduuqa tarree guddaa kan qaaqaa keessatti,hammangaawwan mogga'an yookiin gabateewwan saaguu barbaaddu filadhu."
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3145640\n"
+"webquery.xhp\n"
+"par_id3155064\n"
"11\n"
"help.text"
-msgid "Select the sheet you want to print."
-msgstr "Wardii maxxansuu barbaaddu filadhu."
+msgid "You can also specify that the ranges or tables are updated every n seconds."
+msgstr "Hammangaawwan yookiin gabateewwan akka hoggayyuu sekondiiwwan n keessatti fooyya'an ifteessuus ni dandeessa."
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3150042\n"
-"12\n"
+"webquery.xhp\n"
+"par_id3155443\n"
+"30\n"
"help.text"
-msgid "Choose <emph>Format - Page</emph>."
-msgstr "<emph>Dhangii - Fuulaa</emph> fili."
+msgid "The import filter can create names for cell ranges on the fly. As much formatting as possible is retained, while the filter intentionally does not load any images."
+msgstr "Gingilchi alaaguu maqaalee hammangaawwan man'eetiif uumuu danda'a.Dhangeessi amma danda'amu ni qabatama,gingilchi garuu beekuma fakkii homaayyuu hin fe'u."
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3147340\n"
-"13\n"
+"webquery.xhp\n"
+"hd_id3149021\n"
+"12\n"
"help.text"
-msgid "The command is not visible if the sheet was opened with write protection on. In that case, click the <emph>Edit File </emph>icon on the <emph>Standard</emph> Bar."
-msgstr "Ajajni yoo wardiin dhorki barreessuu banaa ta'uun yoo banamee ture hin mul'atu.Haala kanaan,sajoo <emph>Faayilii gulaali </emph> kabala <emph>Durtii</emph>irraa cuqaasi."
+msgid "Inserting by Navigator"
+msgstr "Naannessaadhaan saaguu"
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3146916\n"
+"webquery.xhp\n"
+"par_id3153965\n"
"14\n"
"help.text"
-msgid "Select the <emph>Sheet</emph> tab. In the <emph>Print </emph>area mark the details to be printed and click OK."
-msgstr "Caancala <emph>Wardii</emph> filadhu.Bal'ina <emph>Maxxansi </emph> keessatti waa'ee maxxansitu mallatttoo itti gochiitii TOLE cuqaasi."
+msgid "Open two documents: the $[officename] Calc spreadsheet in which the external data is to be inserted (target document) and the document from which the external data derives (source document)."
+msgstr "Galmeelee lama bani:wardii $[officename] Calc kan deetaan alaa keessatti saagamuuf jedhu(galmee galtee) fi galmee kan deetaan alaa irraa ba'u(galmee maddaa)"
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3145789\n"
-"15\n"
+"webquery.xhp\n"
+"par_id3150205\n"
+"16\n"
"help.text"
-msgid "Print the document."
-msgstr "Galmee maxxansi"
+msgid "In the target document open the Navigator."
+msgstr "Galmee galtee keessaa naannessa bani"
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3150345\n"
-"16\n"
+"webquery.xhp\n"
+"par_id3152990\n"
+"18\n"
"help.text"
-msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
-msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">Argi - Durargii muraa fuulaa</link>"
+msgid "In the lower combo box of the Navigator select the source document. The Navigator now shows the range names and database ranges or the tables contained in the source document."
+msgstr "Sanduuqa makaa naannessaa gadii keessaa galmee maddaa filadhu.Naannessi amma maqaalee hammangaa fi hammangaawwan kuusaa deetaa yookiin gabateewwan galmee maddaa keessa jiran agarsiisa."
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3148842\n"
+"20\n"
+"help.text"
+msgid "In the Navigator select the <emph>Insert as link</emph> drag mode <image id=\"img_id3152985\" src=\"sw/imglst/sc20238.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152985\">Icon</alt></image>."
+msgstr "Naannessa keessatti <emph>akkasitti saagi link</emph> haalata harkisaa <image id=\"img_id3152985\" src=\"sw/imglst/sc20238.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152985\">Sajoo</alt></image> filadhu."
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3157978\n"
+"22\n"
+"help.text"
+msgid "Drag the desired external data from the Navigator into the target document."
+msgstr "Deetaa alaa feete naannessa irraa gara galmee galteetti harkisi."
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3144768\n"
+"23\n"
+"help.text"
+msgid "If you have loaded an HTML document with the <emph>Web Page Query</emph> filter as the source document, you will find the tables in the Navigator, named continuously from \"HTML_table1\" onwards, and also two range names that have been created:"
+msgstr "Yoo galmee HTML gingilcha <emph>Gaafata teessoo saaphaphuu</emph> wajjin akka galmee maddaatti feetee jiraatte,gabateewwan naannessa keessatti itti fufaan \"HTML_gabatee1\" irraa kaasanii kan mogga'an , akkasumas maqoota hammanga lamaa kan uumamanii turan agarta."
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3152873\n"
+"24\n"
+"help.text"
+msgid "<item type=\"literal\">HTML_all</item> - designates the entire document"
+msgstr "<item type=\"literal\">HTML_hunda</item> - galmee hunda agarsiisa"
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3149897\n"
+"25\n"
+"help.text"
+msgid "<item type=\"literal\">HTML_tables</item> - designates all HTML tables in the document"
+msgstr "<item type=\"literal\">Gabateewwan_HTML</item> - gabateewwan HTML hunda galmee keessa jiran agarsiisa"
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"hd_id3149126\n"
+"26\n"
+"help.text"
+msgid "Editing the external data"
+msgstr "Deetaa alaa gulaaluu"
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3159228\n"
+"27\n"
+"help.text"
+msgid "Open <emph>Edit - Links</emph>. Here you can edit the link to the external data."
+msgstr "<emph>Gulaali - Geessituu</emph> bani. Asitti geessituu gara deetaa alaa gulaaluu dandeessa."
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3154650\n"
+"28\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External data dialog\">External data dialog</link>"
+msgstr "<link href=\"text/scalc/01/04090000.xhp\" name=\"External data dialog\">Qaaqa deetaa alaa</link>"
+
+#: year2000.xhp
+msgctxt ""
+"year2000.xhp\n"
+"tit\n"
+"help.text"
+msgid "19xx/20xx Years"
+msgstr "Baroota 19xx/20xx"
+
+#: year2000.xhp
+msgctxt ""
+"year2000.xhp\n"
+"bm_id3150439\n"
+"help.text"
+msgid "<bookmark_value>years; 2-digits</bookmark_value><bookmark_value>dates; 19xx/20xx</bookmark_value>"
+msgstr "<bookmark_value>waggoota; dijiitii-2</bookmark_value><bookmark_value>guyyoota; 19xx/20xx</bookmark_value>"
+
+#: year2000.xhp
+msgctxt ""
+"year2000.xhp\n"
+"hd_id3150439\n"
+"18\n"
+"help.text"
+msgid "<variable id=\"year2000\"><link href=\"text/scalc/guide/year2000.xhp\" name=\"19xx/20xx Years\">19xx/20xx Years</link></variable>"
+msgstr "<variable id=\"year2000\"><link href=\"text/scalc/guide/year2000.xhp\" name=\"19xx/20xx Years\">Baroota 19xx/20xx </link></variable>"
+
+#: year2000.xhp
+msgctxt ""
+"year2000.xhp\n"
+"par_id3151116\n"
+"17\n"
+"help.text"
+msgid "The year in a date entry is often entered as two digits. Internally, the year is managed by $[officename] as four digits, so that in the calculation of the difference from 1/1/99 to 1/1/01, the result will correctly be two years."
+msgstr "Barri galfata guyyaa keessaa yeroo baay'ee akka dijiitii lamaatti galchama.Keessatti,barri akka dijiitii afuriitti taliigama, kanaafuu shallaggii garaagarummaa 1/1/99 irraa gara 1/1/01 keessatti bu'aan sirrii waggaa lama dha."
+
+#: year2000.xhp
+msgctxt ""
+"year2000.xhp\n"
+"par_id3154011\n"
+"19\n"
+"help.text"
+msgid "Under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - General</emph> you can define the century that is used when you enter a year with only two digits. The default is 1930 to 2029."
+msgstr ""
+
+#: year2000.xhp
+msgctxt ""
+"year2000.xhp\n"
+"par_id3150010\n"
+"20\n"
+"help.text"
+msgid "This means that if you enter a date of 1/1/30 or higher, it will be treated internally as 1/1/1930 or higher. All lower two-digit years apply to the 20xx century. So, for example, 1/1/20 is converted into 1/1/2020."
+msgstr "Kana jechuun yoo guyyaa 1/1/30 yookiin ol galchite,keessatti akka 1/1/1930 yookiin oliitti beekama.Barootni dijiitii lamaa gadii hundi jaarraa 20xx tti raawwatu.Kanaafuu,fakkeenyaaf,1/1/20 gara 1/1/2020 tti jijjiirama."
diff --git a/source/om/helpcontent2/source/text/schart.po b/source/om/helpcontent2/source/text/schart.po
index 4ca489569bd..66b439e5d16 100644
--- a/source/om/helpcontent2/source/text/schart.po
+++ b/source/om/helpcontent2/source/text/schart.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-06 09:30+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,237 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"tit\n"
-"help.text"
-msgid "$[officename] Chart Features"
-msgstr "Amalawwan Chart $[officename]"
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"hd_id3150543\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/schart/main0503.xhp\" name=\"$[officename] Chart Features\">$[officename] Chart Features</link>"
-msgstr "<link href=\"text/schart/main0503.xhp\" name=\"$[officename] Chart Features\">Amalawwan Chart $[officename]</link>"
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3150868\n"
-"2\n"
-"help.text"
-msgid "Charts allow you to present data so that it is easy to visualize."
-msgstr "Taattoowwanii akka deetaa dhiyyeessuu siif hayyama, isaaniis arguu salphisa."
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3146974\n"
-"6\n"
-"help.text"
-msgid "You can create a chart from source data in a Calc spreadsheet or a Writer table. When the chart is embedded in the same document as the data, it stays linked to the data, so that the chart automatically updates when you change the source data."
-msgstr "Taattoo deetaa maddaa irraa, wardii Calc tokko ykn gabatee Barreessaa tokko keessatti uumuu ni dandeessa. Yammuu taattoochii akka deetaatti galmicha keessatti idaa'aamuu, deetaatti akka walqabateeti tura, isaaniis yammuu deetaa maddaa jijjiirtuu, taattoochii ofumaan haaromsu."
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"hd_id3153143\n"
-"7\n"
-"help.text"
-msgid "Chart Types"
-msgstr "Akaakuuwwan Taattoo"
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3151112\n"
-"8\n"
-"help.text"
-msgid "Choose from a variety of 3D charts and 2D charts, such as bar charts, line charts, stock charts. You can change chart types with a few clicks of the mouse."
-msgstr "Taattoowwan G3 fi taattoowwan G2 hedduu irraa filadhu, isaaniis taattoowwan kabalaa, taattoowwan sararaa, taattoowwan kaabaa filadhu."
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"hd_id3149665\n"
-"10\n"
-"help.text"
-msgid "Individual Formatting"
-msgstr "Dhangeessaa Matamataa"
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3156441\n"
-"11\n"
-"help.text"
-msgid "You can customize individual chart elements, such as axes, data labels, and legends, by right-clicking them in the chart, or with toolbar icons and menu commands."
-msgstr "Taattoocha keessa mirga-cuqaasuun, yk sajoowwan kamshaa fi ajajawwan bafataatiin, miseensa taattoo, isaaniis siiqqota, moggaasaa deetaa, fi waayoota mata mataan maamileessuu nidandeessa."
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"tit\n"
-"help.text"
-msgid "Formatting Bar"
-msgstr "Kabala Dhangeessuu"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id0810200911433792\n"
-"help.text"
-msgid "<link href=\"text/schart/main0202.xhp\" name=\"Formatting Bar\">Formatting Bar</link>"
-msgstr "<link href=\"text/schart/main0202.xhp\" name=\"Formatting Bar\">Kabala Dhangeessuu</link>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200911433835\n"
-"help.text"
-msgid "The Formatting Bar is shown when a chart is set to edit mode. Double-click a chart to enter edit mode. Click outside the chart to leave edit mode."
-msgstr "Yeroo taattoon haalata guulaaluutti qindaa'u kaballi dhangeessuu ni mul'ata. Haalata guulaaluu galchuuf taattoo lama-cuqaasi. Haalata guulaaluu dhiisuuf taattoon alatti cuqaasi."
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200911433878\n"
-"help.text"
-msgid "You can edit the formatting of a chart using the controls and icons on the Formatting Bar."
-msgstr "To'annaawwanii fi sajoowwan kabala dhangeessuu irraa fayyadamuun dhangii taattoo gulaaluu dandeessa."
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id0810200902300436\n"
-"help.text"
-msgid "Select Chart Element"
-msgstr "Maalimaa Taattoo Filadhu"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200902300479\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select the element from the chart that you want to format. The element gets selected in the chart preview. Click Format Selection to open the properties dialog for the selected element.</ahelp>"
-msgstr "<ahelp hid=\".\">Maalimaa dhangeessuu barbaaddu taattoo keessaa filadhu. Maalimni durargii taattoo irratti filatama. Maalimaa filameef qaaqa amalootaa banuuf filannoo dhangii cuqaasi.</ahelp>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id0810200902300555\n"
-"help.text"
-msgid "Format Selection"
-msgstr "Filannoo Dhangii"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200902300539\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the properties dialog for the selected element.</ahelp>"
-msgstr "<ahelp hid=\".\">Maalimaa filameef qaaqa amalootaa bana.</ahelp>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id0810200902300545\n"
-"help.text"
-msgid "Chart Type"
-msgstr "Gosa Taattoo"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200902300594\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Chart Type dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">Qaaqa Gosa Taattoo bana.</ahelp>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id0810200902300537\n"
-"help.text"
-msgid "Chart Data Table"
-msgstr "Taattoo Gabatee Deetaa"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200902300699\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Data Table dialog where you can edit the chart data.</ahelp>"
-msgstr "<ahelp hid=\".\">Bakka taattoo deetaa gulaaluu dandeessutti qaaqa Gabatee Deetaa bana.</ahelp>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id0810200902300672\n"
-"help.text"
-msgid "Horizontal Grid On/Off"
-msgstr "Surdala Tarsaa Bani/Dhaamsi"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200902300630\n"
-"help.text"
-msgid "<ahelp hid=\".\">The Horizontal Grid On/Off icon on the Formatting bar toggles the visibility of the grid display for the Y axis.</ahelp>"
-msgstr ""
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id0810200902300738\n"
-"help.text"
-msgid "Legend On/Off"
-msgstr "Waayoo Bani/Dhaamsi"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id081020090230076\n"
-"help.text"
-msgid "<ahelp hid=\".\">To show or hide a legend, click Legend On/Off on the Formatting bar.</ahelp>"
-msgstr "<ahelp hid=\".\">Waayoo agarsiisuuf yookaan dhoksuuf, kabala dhangeessuu Waayoo Bani/Dhaamsi irratti cuqaasi.</ahelp>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id0810200902300785\n"
-"help.text"
-msgid "Scale Text"
-msgstr "Barruu Safaraa"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200902300784\n"
-"help.text"
-msgid "<ahelp hid=\".\">Rescales the text in the chart when you change the size of the chart.</ahelp>"
-msgstr "<ahelp hid=\".\">Yeroo hammamtaa taattoo jijjiirtu barruu taattoo keessaa irra deebi'e safara.</ahelp>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id081020090230087\n"
-"help.text"
-msgid "Automatic Layout"
-msgstr "Teessuma Ofumaanii"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200902300834\n"
-"help.text"
-msgid "<ahelp hid=\".\">Moves all chart elements to their default positions inside the current chart. This function does not alter the chart type or any other attributes other than the position of elements.</ahelp>"
-msgstr "<ahelp hid=\".\">Keessa taattoo ammeetti maalimoota taattoo hunda gara qubannoo durtiitti siiqsa. Faankishiniin kun gosa taattoo ykn amaloota kan biroo hin jijjiiru garuu qubannoo jijjiiruu danda'a.</ahelp>"
-
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -791,3 +560,234 @@ msgctxt ""
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Resets all data points to default format.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Akeekiiwwan deetaa hunda gara dhangii durtiitti deebisa.</ahelp>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"tit\n"
+"help.text"
+msgid "Formatting Bar"
+msgstr "Kabala Dhangeessuu"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200911433792\n"
+"help.text"
+msgid "<link href=\"text/schart/main0202.xhp\" name=\"Formatting Bar\">Formatting Bar</link>"
+msgstr "<link href=\"text/schart/main0202.xhp\" name=\"Formatting Bar\">Kabala Dhangeessuu</link>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200911433835\n"
+"help.text"
+msgid "The Formatting Bar is shown when a chart is set to edit mode. Double-click a chart to enter edit mode. Click outside the chart to leave edit mode."
+msgstr "Yeroo taattoon haalata guulaaluutti qindaa'u kaballi dhangeessuu ni mul'ata. Haalata guulaaluu galchuuf taattoo lama-cuqaasi. Haalata guulaaluu dhiisuuf taattoon alatti cuqaasi."
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200911433878\n"
+"help.text"
+msgid "You can edit the formatting of a chart using the controls and icons on the Formatting Bar."
+msgstr "To'annaawwanii fi sajoowwan kabala dhangeessuu irraa fayyadamuun dhangii taattoo gulaaluu dandeessa."
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300436\n"
+"help.text"
+msgid "Select Chart Element"
+msgstr "Maalimaa Taattoo Filadhu"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300479\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the element from the chart that you want to format. The element gets selected in the chart preview. Click Format Selection to open the properties dialog for the selected element.</ahelp>"
+msgstr "<ahelp hid=\".\">Maalimaa dhangeessuu barbaaddu taattoo keessaa filadhu. Maalimni durargii taattoo irratti filatama. Maalimaa filameef qaaqa amalootaa banuuf filannoo dhangii cuqaasi.</ahelp>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300555\n"
+"help.text"
+msgid "Format Selection"
+msgstr "Filannoo Dhangii"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300539\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the properties dialog for the selected element.</ahelp>"
+msgstr "<ahelp hid=\".\">Maalimaa filameef qaaqa amalootaa bana.</ahelp>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300545\n"
+"help.text"
+msgid "Chart Type"
+msgstr "Gosa Taattoo"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300594\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Chart Type dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Qaaqa Gosa Taattoo bana.</ahelp>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300537\n"
+"help.text"
+msgid "Chart Data Table"
+msgstr "Taattoo Gabatee Deetaa"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300699\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Data Table dialog where you can edit the chart data.</ahelp>"
+msgstr "<ahelp hid=\".\">Bakka taattoo deetaa gulaaluu dandeessutti qaaqa Gabatee Deetaa bana.</ahelp>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300672\n"
+"help.text"
+msgid "Horizontal Grid On/Off"
+msgstr "Surdala Tarsaa Bani/Dhaamsi"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300630\n"
+"help.text"
+msgid "<ahelp hid=\".\">The Horizontal Grid On/Off icon on the Formatting bar toggles the visibility of the grid display for the Y axis.</ahelp>"
+msgstr ""
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300738\n"
+"help.text"
+msgid "Legend On/Off"
+msgstr "Waayoo Bani/Dhaamsi"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id081020090230076\n"
+"help.text"
+msgid "<ahelp hid=\".\">To show or hide a legend, click Legend On/Off on the Formatting bar.</ahelp>"
+msgstr "<ahelp hid=\".\">Waayoo agarsiisuuf yookaan dhoksuuf, kabala dhangeessuu Waayoo Bani/Dhaamsi irratti cuqaasi.</ahelp>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300785\n"
+"help.text"
+msgid "Scale Text"
+msgstr "Barruu Safaraa"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300784\n"
+"help.text"
+msgid "<ahelp hid=\".\">Rescales the text in the chart when you change the size of the chart.</ahelp>"
+msgstr "<ahelp hid=\".\">Yeroo hammamtaa taattoo jijjiirtu barruu taattoo keessaa irra deebi'e safara.</ahelp>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id081020090230087\n"
+"help.text"
+msgid "Automatic Layout"
+msgstr "Teessuma Ofumaanii"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300834\n"
+"help.text"
+msgid "<ahelp hid=\".\">Moves all chart elements to their default positions inside the current chart. This function does not alter the chart type or any other attributes other than the position of elements.</ahelp>"
+msgstr "<ahelp hid=\".\">Keessa taattoo ammeetti maalimoota taattoo hunda gara qubannoo durtiitti siiqsa. Faankishiniin kun gosa taattoo ykn amaloota kan biroo hin jijjiiru garuu qubannoo jijjiiruu danda'a.</ahelp>"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"tit\n"
+"help.text"
+msgid "$[officename] Chart Features"
+msgstr "Amalawwan Chart $[officename]"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3150543\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/schart/main0503.xhp\" name=\"$[officename] Chart Features\">$[officename] Chart Features</link>"
+msgstr "<link href=\"text/schart/main0503.xhp\" name=\"$[officename] Chart Features\">Amalawwan Chart $[officename]</link>"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3150868\n"
+"2\n"
+"help.text"
+msgid "Charts allow you to present data so that it is easy to visualize."
+msgstr "Taattoowwanii akka deetaa dhiyyeessuu siif hayyama, isaaniis arguu salphisa."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3146974\n"
+"6\n"
+"help.text"
+msgid "You can create a chart from source data in a Calc spreadsheet or a Writer table. When the chart is embedded in the same document as the data, it stays linked to the data, so that the chart automatically updates when you change the source data."
+msgstr "Taattoo deetaa maddaa irraa, wardii Calc tokko ykn gabatee Barreessaa tokko keessatti uumuu ni dandeessa. Yammuu taattoochii akka deetaatti galmicha keessatti idaa'aamuu, deetaatti akka walqabateeti tura, isaaniis yammuu deetaa maddaa jijjiirtuu, taattoochii ofumaan haaromsu."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3153143\n"
+"7\n"
+"help.text"
+msgid "Chart Types"
+msgstr "Akaakuuwwan Taattoo"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3151112\n"
+"8\n"
+"help.text"
+msgid "Choose from a variety of 3D charts and 2D charts, such as bar charts, line charts, stock charts. You can change chart types with a few clicks of the mouse."
+msgstr "Taattoowwan G3 fi taattoowwan G2 hedduu irraa filadhu, isaaniis taattoowwan kabalaa, taattoowwan sararaa, taattoowwan kaabaa filadhu."
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3149665\n"
+"10\n"
+"help.text"
+msgid "Individual Formatting"
+msgstr "Dhangeessaa Matamataa"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3156441\n"
+"11\n"
+"help.text"
+msgid "You can customize individual chart elements, such as axes, data labels, and legends, by right-clicking them in the chart, or with toolbar icons and menu commands."
+msgstr "Taattoocha keessa mirga-cuqaasuun, yk sajoowwan kamshaa fi ajajawwan bafataatiin, miseensa taattoo, isaaniis siiqqota, moggaasaa deetaa, fi waayoota mata mataan maamileessuu nidandeessa."
diff --git a/source/om/helpcontent2/source/text/schart/00.po b/source/om/helpcontent2/source/text/schart/00.po
index 3d301d47918..3197ee18670 100644
--- a/source/om/helpcontent2/source/text/schart/00.po
+++ b/source/om/helpcontent2/source/text/schart/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:03+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -41,7 +41,6 @@ msgid "Choose <emph>View - Chart Data Table</emph> (Charts)"
msgstr "<emph> Mul'isi - Gabatee Deetaa Taattoo</emph> (Taattoota) fili"
#: 00000004.xhp
-#, fuzzy
msgctxt ""
"00000004.xhp\n"
"par_id3154686\n"
@@ -394,7 +393,7 @@ msgctxt ""
"59\n"
"help.text"
msgid "On Formatting bar, click"
-msgstr "Kabala Dhangeessuu irraa,"
+msgstr "Kabala dhangii irraa,"
#: 00000004.xhp
msgctxt ""
@@ -523,7 +522,7 @@ msgctxt ""
"52\n"
"help.text"
msgid "Vertical Grid On/Off"
-msgstr "Tarsaa Sarjaa Banuu/Dhaamsuu"
+msgstr "Tarsaan Sarjaa Banuu/Dhaamsuu"
#: 00000004.xhp
msgctxt ""
@@ -554,5 +553,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"slp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, mark Smooth lines checkbox, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgstr ""
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id8513095\n"
+"help.text"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
msgstr ""
diff --git a/source/om/helpcontent2/source/text/schart/01.po b/source/om/helpcontent2/source/text/schart/01.po
index 4c40858e062..e312c8c869c 100644
--- a/source/om/helpcontent2/source/text/schart/01.po
+++ b/source/om/helpcontent2/source/text/schart/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:06+0200\n"
"PO-Revision-Date: 2011-04-09 12:03+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,734 +14,924 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
+"03010000.xhp\n"
"tit\n"
"help.text"
-msgid "Chart Type Pie"
-msgstr "Akaakuu Taattoo Deloo"
+msgid "Data Table"
+msgstr "Gabatee Deetaa"
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"bm_id7621997\n"
+"03010000.xhp\n"
+"hd_id3150869\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>donut charts</bookmark_value> <bookmark_value>pie charts;types</bookmark_value> <bookmark_value>chart types;pie/donut</bookmark_value>"
-msgstr "<bookmark_value>taattoota donaatii</bookmark_value> <bookmark_value>taattoota piyaa</bookmark_value> <bookmark_value>akaakuwwan taattoo;piyaa/donaatii</bookmark_value>"
+msgid "<link href=\"text/schart/01/03010000.xhp\" name=\"Data Table\">Data Table</link>"
+msgstr "<link href=\"text/schart/01/03010000.xhp\" name=\"Data Table\">Gabatee Deetaa</link>"
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"hd_id3365276\n"
+"03010000.xhp\n"
+"par_id3151115\n"
+"2\n"
"help.text"
-msgid "<variable id=\"type_pie\"><link href=\"text/schart/01/type_pie.xhp\">Chart Type Pie</link></variable>"
-msgstr "<variable id=\"type_pie\"><link href=\"text/schart/01/type_pie.xhp\">Akaakuu Taattoo Deloo</link></variable>"
+msgid "<ahelp hid=\".uno:DiagramData\">Opens the<emph> Data Table </emph>dialog where you can edit the chart data.</ahelp>"
+msgstr "<ahelp hid=\".uno:DiagramData\">Bani<emph> Gabatee Deetaa </emph>qaaqaq yeroo deetaa taattoo gulaalu dandeesuudha.</ahelp>"
-#: type_pie.xhp
-#, fuzzy
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"par_id245979\n"
+"03010000.xhp\n"
+"par_id3149667\n"
+"51\n"
"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
-msgstr "Akaakuu taattoo fuula duraa <link href=\"text/schart/01/wiz_chart_type.xhp\">Taattoo Masaka</link> irraa filuu ni dandeessa."
+msgid "The<emph> Data Table </emph>dialog is not available if you insert a chart that is based on a Calc sheet or on a Writer table."
+msgstr "Kana<emph> Gabatee Deetaa </emph>yoo taattoon wardii herregduu ykn gabatee barreessitu ti saagamee qaaqan hin mul'atu."
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"hd_id5799432\n"
+"03010000.xhp\n"
+"par_id6746421\n"
"help.text"
-msgid "Pie"
-msgstr "Deloo"
+msgid "<link href=\"text/swriter/01/06990000.xhp\">To update a chart manually when a Writer table got changed</link>"
+msgstr "<link href=\"text/swriter/01/06990000.xhp\">Taattoo hujeeka haaromsuuf yoo gabteen heeregduu jijjiiramee qoofadha</link>"
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"par_id6549272\n"
+"03010000.xhp\n"
+"par_id2565996\n"
"help.text"
-msgid "A pie chart shows values as circular sectors of the total circle. The length of the arc, or the area of each sector, is proportional to its value."
-msgstr "Taattoon deloo gatiiwwan akka kutaalee geengawaa ida`ama geengoo agarsiisa. Dheerini golboo, ykn bal`inni tokko tokkoo kutaa, gitaalaa gatii isaati."
+msgid "Some changes will become visible only after you close and reopen the dialog."
+msgstr "Jijjiiramnii tokko tokko kan mul'atu ergaa qaaqa cuftee deebitee bantee booda."
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"par_id6529740\n"
+"03010000.xhp\n"
+"hd_id6129947\n"
"help.text"
-msgid "Pie - this subtype shows sectors as colored areas of the total pie, for one data column only. In the created chart, you can click and drag any sector to separate that sector from the remaining pie or to join it back."
-msgstr "Deloo - citni kun kutaalee akka bal`ina halluu dibamee ida`ama deloo, tarjaa deetaa tokko qofaaf agarsiisa. Taattoo uumame keessatti, kutaa deloo hafe addaan baasuuf ykn boodatti walqabsiisuuf kutaa kamiyyuu cuqaasuu fi harkisu ni dandeessa."
+msgid "To change chart data"
+msgstr "Taattoo deetaa jijjiirufi"
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"par_id9121982\n"
+"03010000.xhp\n"
+"par_id8141117\n"
"help.text"
-msgid "Exploded pie - this subtype shows the sectors already separated from each other. In the created chart, you can click and drag any sector to move it along a radial from the pie's center."
-msgstr "Deloo dhowwame- citni akaakuu kun kutaalee aloo jalqaba tokko tokkoo isaanii irraa addaan ba`an agarsiisa. Taattoo uumame keessatti, kutaalee aloo kan donuti qixxalamaanii irraa karaa caliirra siiqsuuf cuqaasuu fi harkisu ni dandeessa."
+msgid "When you create a chart that is based on default data, or when you copy a chart into your document, you can open the Data Table dialog to enter your own data. The chart responds to the data in a live preview."
+msgstr "Yeemu taattoo deetaa durtii irra ti hundooftee uumtuu, ykn yeemu taattoo galmee kee keessati garagalchiitu, Deetaa kee saaguu fi qaaqa gabatee deetaa bani. Taattoon kan deebi kenu deetaa durargii ammee ti."
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"par_id3808404\n"
+"03010000.xhp\n"
+"par_id9487594\n"
"help.text"
-msgid "Donut - this subtype can show multiple data columns. Each data column is shown as one donut shape with a hole inside, where the next data column can be shown. In the created chart, you can click and drag an outer sector to move it along a radial from the donut's center."
-msgstr "Donuti - citni akaakuu kun tarjaalee deetaa hedduu ni agarsiisa. Tokko tokkoon tarjaa deetaa bool`a keessaa waliin akka boca donuti tokkootti, iddoo tarjaan deetaa itti aanuu agarsiifamuu danda`uutti ni agarsiisama. Taattoo uumame keessatti, kutaalee aloo kan donuti qixxalamaanii irraa karaa caliirra siiqsuuf cuqaasuu fi harkisu ni dandeessa."
+msgid "Close the Chart Data dialog to apply all changes to the chart. Choose <emph>Edit - Undo</emph> to cancel the changes."
+msgstr "Jijjiiramaa hundaa taattoo fayyadamuf qaaqa deetaa taattoo cufi.Fili <emph>Gulaali - Gaabbi</emph> jijjiiramaa dhiisuuf."
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"par_id2394482\n"
+"03010000.xhp\n"
+"par_id4149906\n"
"help.text"
-msgid "Exploded donut - this subtype shows the outer sectors already separated from the remaining donut. In the created chart, you can click and drag an outer sector to move it along a radial from the donut's center."
-msgstr "Donuti dhowwame - citni akaakuu kun kutaalee aloo jalqaba donut hafe irraa addaan ba`e agarsiisa. Taattoo uumame keessatti, kutaalee aloo kan donuti qixxalamaanii irraa karaa caliirra siiqsuuf cuqaasuu fi harkisu ni dandeessa."
+msgid "Insert or select a chart that is not based on existing cell data."
+msgstr "Taattoo issa deetaa man'ee jiraataa irrati hin hundoofnee saagi ykn fili."
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"tit\n"
+"03010000.xhp\n"
+"par_id6064943\n"
"help.text"
-msgid "Chart Wizard - Chart Type"
-msgstr "Taattoo Masaka - Akaakuu Taattoo"
+msgid "Choose <emph>View - Chart Data Table</emph> to open the Data Table dialog."
+msgstr "Fili <emph>Mul'annoo - Gabatee Deetaa Taattoo</emph> qaaqa gabatee deetaa banuuf."
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"bm_id4266792\n"
+"03010000.xhp\n"
+"par_id3236182\n"
"help.text"
-msgid "<bookmark_value>charts;choosing chart types</bookmark_value>"
-msgstr "<bookmark_value>charts;choosing chart types</bookmark_value>"
+msgid "The data series are organized in columns. The role of the left most column is set to categories or data labels respectively. The contents of the left most column are always formatted as text. You can insert more text columns to be used as hierarchical labels."
+msgstr ""
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"hd_id1536606\n"
+"03010000.xhp\n"
+"par_id9799798\n"
"help.text"
-msgid "<variable id=\"wiz_chart_type\"><link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard - Chart Type</link></variable>"
-msgstr "<variable id=\"wiz_chart_type\"><link href=\"text/schart/01/wiz_chart_type.xhp\">Taattoo Masaka - Akaakuu Taattoo</link></variable>"
+msgid "Click a cell in the dialog and change the contents. Click another cell to see the changed contents in the preview."
+msgstr "Man'ee qaaqa keessa cuqaasi ti qabiyyee issa jijjiirii. Man'een birra keessa cuqaasi jijjiiramaa qabiyyee durargii irrati laali."
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id6006958\n"
+"03010000.xhp\n"
+"par_id1251258\n"
"help.text"
-msgid "On the first page of the Chart Wizard you can <link href=\"text/schart/01/choose_chart_type.xhp\">choose a chart type</link>."
-msgstr "Taattoo masaka fuula duraa irraa <link href=\"text/schart/01/choose_chart_type.xhp\">Akaakuu taattoo filuu</link> ni dandeessa."
+msgid "Enter the name of the data series in the text box above the column."
+msgstr "Maqaa walfaannee deetaa sanduuqa barruu keessa tarjaan oliiti saagi."
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"hd_id3919186\n"
+"03010000.xhp\n"
+"par_id743430\n"
"help.text"
-msgid "To choose a chart type"
-msgstr "Akaakuu taattoo filuu"
+msgid "Use the icons above the table to insert or delete rows and columns. For data series with multiple columns, only whole data series can be inserted or deleted."
+msgstr "Tarree ykn tarjaa saaguuf ykn haquuf sajoo gabateen oli jiru fayyadami. Walfaannee deetaa tarjaa heedduu fi, walfaannee deetaa guutumma qoofaatu sagama ykn haqamma."
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id3453169\n"
+"03010000.xhp\n"
+"par_id8111819\n"
"help.text"
-msgid "Choose a basic <link href=\"text/schart/01/choose_chart_type.xhp\">chart type</link>: click any of the entries labeled Column, Bar, Pie, and so on."
-msgstr "Bu`uura <link href=\"text/schart/01/choose_chart_type.xhp\">akaakuu taattoo</link>: galfata tarjaa moggafame, Kabala, Muraangoo, fi kkf fili."
+msgid "The order of the data series in the chart is the same as in the data table. Use the <emph>Move Series Right</emph> icon to switch the current column with its neighbor on the right."
+msgstr "Tartiibni walfaannee deetaa taattoo keessaa gabatee deetaa keessa waliin tokko. kana fayyadamii <emph>Walfaannee mirgati siqsi</emph> Sajoo issa tarjaa ammee keessaa gara mirga ola'aa issati jijjiiri."
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id8406933\n"
+"03010000.xhp\n"
+"par_id9116794\n"
"help.text"
-msgid "The contents on the right side will change to offer more options depending on the basic chart type."
-msgstr "Akaakuu bu`uura taattoo irratti hundaa`uudhaan filannoo caalu kennuuf qabeentootni hark mirgaa ni jijjiiramu."
+msgid "The order of the categories or data points in the chart is the same as in the data table. Use the <emph>Move Row Down</emph> icon to switch the current row with its neighbor below."
+msgstr "Tartiibni akkakuu ykn tuqaalee deetaa . kana fayyadamii <emph>Tarree gadi siqsi</emph> Sajoo issa tarree ammee keessaa gara gadi ti ola'aa issati jijjiiri."
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id8230231\n"
+"03010000.xhp\n"
+"par_id3150297\n"
+"20\n"
"help.text"
-msgid "Optionally, click any of the options. While you change the settings in the wizard, watch the preview in the document to see how the chart will look."
-msgstr "Filannoodhaan, filannoo kamiyyuu cuuqaasi.Qindaa`inoota masaka keessatti jijjiirtuyyuu, galmee keessaa taattoon maal akka fakkaatu ilaaluuf durargii ilaali."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new row below the current row.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tarree haaraa tarree ammee jala ti saagi.</ahelp>"
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id3267006\n"
+"03010000.xhp\n"
+"par_id3145384\n"
+"23\n"
"help.text"
-msgid "Press <item type=\"keycode\">Shift+F1</item> and point to a control to see an extended help text."
-msgstr "Gargaarsa barruu baay'ata tooachuu fi ilaaluuf <item type=\"keycode\">Shift+F1</item> dhiibuudhaan agarsiisi."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new data series after the current column.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tarjaa haaraa tarjaa ammee jala ti saagi.</ahelp>"
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id7251503\n"
+"03010000.xhp\n"
+"par_id3152297\n"
"help.text"
-msgid "Click <emph>Finish</emph> on any wizard page to close the wizard and create the chart using the current settings."
-msgstr "Qindaa`inoota ammee fayyadamuun masaka cufuu fitaattoo uumuuf fuula masaka kamiiyyuu irra <emph>Xumuri</emph> cuuqaasi."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new text column after the current column for hierarchical axes descriptions.</ahelp>"
+msgstr ""
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id3191625\n"
+"03010000.xhp\n"
+"par_id3159231\n"
+"26\n"
"help.text"
-msgid "Click <emph>Next</emph> to see the next wizard page, or click the entries on the left side of the wizard to go to that page."
-msgstr "Fuula masakaa itti aanu ilaaluuf ykn gara fuula dhaquuf galfata gama hark bita masaka <emph>Kan itti aanu</emph> cuuqaasi."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the current row. It is not possible to delete the label row.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tarree ammee haqi. Tarree asxaa haquu hin dandeesuu.</ahelp>"
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id7659535\n"
+"03010000.xhp\n"
+"par_id3153336\n"
+"29\n"
"help.text"
-msgid "Click <emph>Back</emph> to see the previous wizard page."
-msgstr "Fuula masaka duraanii ilaaluuf <emph>Deebi'ii</emph> cuuqaasi."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the current series or text column. It is not possible to delete the first text column.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tarjaa ammee haqi. Tarjaa asxaa haquu hin dandeesuu.</ahelp>"
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id8420056\n"
+"03010000.xhp\n"
+"par_id4089175\n"
"help.text"
-msgid "Click <emph>Cancel</emph> to close the wizard without creating a chart."
-msgstr "Masaka taattoo uumame malee cufuuf <emph>Dhiisi</emph> cuuqaasi."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Switches the current column with its neighbor at the right.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tarjaa ammee hollaa issa waliin gara mirgaa ti ceesiisu.</ahelp>"
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id2284920\n"
+"03010000.xhp\n"
+"par_id3949095\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to go to the named wizard page.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gara fuula masaka moggafame deemuuf cuuqaasi.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Switches the current row with its neighbor below.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tarree ammee hollaa issa waliin gara jala ti ceesiisu.</ahelp>"
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id3184301\n"
+"03010000.xhp\n"
+"par_id6697286\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a basic chart type.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Akaakuu taattoo bu`uuraa fili.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter names for the data series.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Walfaannee deetaa fi maqaa galchi.</ahelp>"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id2129276\n"
+"04010000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a sub type of the basic chart type.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Akaakuu taattoo bu`uuraa kan akkaakuu sub fili.</ahelp>"
+msgid "Titles"
+msgstr "Matduroota"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id9719229\n"
+"04010000.xhp\n"
+"hd_id3147345\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enables a 3D look for the data values.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gatiiwwan deetaaf 3D argamu dandeessisi.</ahelp>"
+msgid "Titles"
+msgstr "Matduroota"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id3860896\n"
+"04010000.xhp\n"
+"par_id3150298\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the type of 3D look.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Akaakuu 3D argamuu fili.</ahelp>"
+msgid "<variable id=\"titel\"><ahelp hid=\".uno:InsertMenuTitles\">Opens a dialog to enter or modify the titles in a chart.</ahelp></variable> You can define the text for the main title, subtitle and the axis labels, and specify if they are displayed."
+msgstr "<variable id=\"titel\"><ahelp hid=\".uno:InsertMenuTitles\">Matduree taatoo keessa galchuu fi ykn fooyyessu fi qaqaa bani.</ahelp></variable> Barruu matadurree issa gudda fi qindeessu dandeessa, matdurree xiqqa fi asxaa siiqqee, itti fufii yoo issan agarsiifamman ifteessi."
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id4041871\n"
+"04010000.xhp\n"
+"hd_id3150207\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a shape from the list.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tarree keessaa boca fili.</ahelp>"
+msgid "Main Title"
+msgstr "Matdurree Gudda"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id9930722\n"
+"04010000.xhp\n"
+"par_id3150371\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays stacked series for Line charts.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Sarara taattooleef tartiiba walfaannee agarsiisi.</ahelp>"
+msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_MAINTITLE\">Marking the <emph>Main Title</emph> option activates the main title. Enter the desired title in the corresponding text field.</ahelp>"
+msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_MAINTITLE\">Kana uumuufi <emph>Matdurree Xiqqa </emph> dirqala kaka'umsa matadurree xiqqa. Matdurree barbachisa dirree barruu firoomina ti saagi.</ahelp>"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id5749687\n"
+"04010000.xhp\n"
+"hd_id3146980\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Stack series display values on top of each other.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tartiibni walfaannee gatiiwwan gubbaa tokko tokkoo isaanii irratti agarsiisa.</ahelp>"
+msgid "Subtitle"
+msgstr "Matdurreexiqqa"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id79348\n"
+"04010000.xhp\n"
+"par_id3149404\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Stack series display values as percent.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tartiibni walfaannee gatiiwwan akka dhibbeentaatti agarsiisa.</ahelp>"
+msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_SUBTITLE\">Marking the <emph>Subtitle</emph> option activates the subtitle. Enter the desired title in the corresponding text field.</ahelp>"
+msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_SUBTITLE\">Kana uumuufi <emph>Matdurreexiqqa</emph> dirala kaka'umsa matdurreexiqqa. Matdurree barbachisa dirree barruu firoomina ti saagi.</ahelp>"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id2414014\n"
+"04010000.xhp\n"
+"par_id3152901\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">The lines are shown as curves.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Sararootni kan akka qonyooleetti agarsiifamani dha.</ahelp>"
+msgid "<variable id=\"sytexttitel\"><ahelp hid=\".uno:ToggleTitle\">Click <emph>Title On/Off</emph> on the Formatting bar to show or hide the title and subtitle.</ahelp></variable>"
+msgstr "<variable id=\"sytexttitel\"><ahelp hid=\".uno:ToggleTitle\">Cuqaasi <emph>Matdurree Banaa/Dhaamaa</emph> Matdurree fi matdurreexiqqa kabala dhangeessu irra jiru mul'si ykn dhoksi.</ahelp></variable>"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id7617114\n"
+"04010000.xhp\n"
+"hd_id3156018\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to set the curve properties.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Amaloota qonyoo qindeessuuf qaaqa bani.</ahelp>"
+msgid "X axis"
+msgstr "Siilloo X"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id6649372\n"
+"04010000.xhp\n"
+"par_id3152869\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Connects points by ascending X values, even if the order of values is different, in an XY scatter diagram.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tuqaalee gatiiwwan X oleen, gatiiwwan tartiibaa adda adda ta`uyyuu,bittimsuu safaka XY keessatti walindhi.</ahelp>"
+msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_X_AXIS\">Marking the <emph>X axis</emph> option activates the X axis title. Enter the desired title in the corresponding text field.</ahelp>"
+msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_X_AXIS\">Kana uumuufi <emph>siiqqee X</emph> dirqala kaka'umsa matdurree siiqqee X. Matdurree barbachisa dirree barruu firoomina ti saagi.</ahelp>"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id7334208\n"
+"04010000.xhp\n"
+"hd_id3159226\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the number of lines for the Column and Line chart type.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tarjaa fi akaakuu taattoo sararaf lakkoofsa sararootaa qindeessi.</ahelp>"
+msgid "Y axis"
+msgstr "Siilloo Y"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id4485000\n"
+"04010000.xhp\n"
+"par_id3154763\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Chart Type dialog.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Qaaqa Akaakuu taattoo bani.</ahelp>"
+msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Y_AXIS\">Marking the <emph>Y axis</emph> option activates the Y axis title. Enter the desired title in the corresponding text field.</ahelp>"
+msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Y_AXIS\">kana uumuufi <emph>Y axis</emph> dirqala kaka'umsa matdurree siiqqee Y. Matduree barbachisa dirree barruu firoomina ti saagi.</ahelp>"
-#: wiz_data_range.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
+"04010000.xhp\n"
+"hd_id3153009\n"
+"12\n"
+"help.text"
+msgid "Z axis"
+msgstr "Siilloo Z"
+
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id3154710\n"
+"13\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Z_AXIS\">Marking the <emph>Z axis</emph> option activates the Z axis title. Enter the desired title in the corresponding text field.</ahelp> This option is only available for 3-D charts."
+msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Z_AXIS\">kana uumuufi <emph>Siiqqee Z</emph> dirqala kaka'umsa matdurree siiqqee Z. Matdurree barbachisa dirree barruu firoomina ti saagi.</ahelp> Dirqalii kun kan mula'atu garsadee taattoo duwwaafi."
+
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id3153073\n"
+"14\n"
+"help.text"
+msgid "<variable id=\"sytextachse\"><ahelp hid=\".uno:ToggleAxisTitle\">Click <emph>Axes Title On/Off</emph> on the Formatting bar to show or hide the axis labels.</ahelp></variable>"
+msgstr "<variable id=\"sytextachse\"><ahelp hid=\".uno:ToggleAxisTitle\">Cuqaasi <emph>Matdurree Siiqqee Banaa/Dhaamaa</emph> Asxaa Siiqqee kabala dhangeessu irra jiru mul'si ykn Dhoksi.</ahelp></variable>"
+
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
"tit\n"
"help.text"
-msgid "Chart Wizard - Data Range"
-msgstr "Taattoo Masaka - Hangii Deetaa"
+msgid "Legend"
+msgstr "Waayoo"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"bm_id2429578\n"
+"04020000.xhp\n"
+"bm_id3156441\n"
"help.text"
-msgid "<bookmark_value>data ranges in charts</bookmark_value>"
-msgstr "<bookmark_value>data ranges in charts</bookmark_value>"
+msgid "<bookmark_value>chart legends; hiding</bookmark_value><bookmark_value>hiding;chart legends</bookmark_value>"
+msgstr "<bookmark_value>Waayoo taattoo; dhoksu</bookmark_value><bookmark_value>dhoksu;waayoo taattoo</bookmark_value>"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"hd_id8313852\n"
+"04020000.xhp\n"
+"hd_id3156441\n"
+"1\n"
"help.text"
-msgid "<variable id=\"wiz_data_range\"><link href=\"text/schart/01/wiz_data_range.xhp\">Chart Wizard - Data Range</link></variable>"
-msgstr "<variable id=\"wiz_data_range\"><link href=\"text/schart/01/wiz_data_range.xhp\">Taattoo Masaka - Hangii Deetaa</link></variable>"
+msgid "Legend"
+msgstr "Waayoo"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id8829309\n"
+"04020000.xhp\n"
+"par_id3155413\n"
+"2\n"
"help.text"
-msgid "On this page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can select one single source of data range. This range may consist of more than one rectangular range of cells."
-msgstr "Fuula <link href=\"text/schart/01/wiz_chart_type.xhp\">Taattoo-Masaka</link> kana irratti madda qeenxee hangii deetaa filuu ni dandeessa. Hangiin kun hangii man`eewwan reektaangulaarawaa tokkoo ol irraa ijaaramuu ni danda`a."
+msgid "<variable id=\"legende\"><ahelp hid=\".uno:InsertMenuLegend\">Opens the <emph>Legend </emph>dialog, which allows you to change the position of legends in the chart, and to specify whether the legend is displayed.</ahelp></variable>"
+msgstr "<variable id=\"legende\"><ahelp hid=\".uno:InsertMenuLegend\">Qaaqa <emph>Waayoo </emph> kana bani, kun qubannoo waayoo taattoo keesssa jiru jijjiirufi hayyama siif kena, itti fufee waayoon akka inni agarsiifamme ifteessi.</ahelp></variable>"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id6401867\n"
+"04020000.xhp\n"
+"par_id3149124\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Data Ranges dialog where you can edit Data Range and Data Series.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Iddoo Hangii Deetaa fi Deetaa walfaannee guulaaluu dandeesu qaaqa hammanga deetaa bani.</ahelp>"
+msgid "<variable id=\"sytextlegende\"><ahelp hid=\".uno:ToggleLegend\">To show or hide a legend, click <emph>Legend On/Off</emph> on the <emph>Formatting</emph> bar.</ahelp></variable>"
+msgstr "<variable id=\"sytextlegende\"><ahelp hid=\".uno:ToggleLegend\">Waayoo mul'suufi ykn dhoksuufi, cuqaasi <emph>Waayoo Banaa/Dhaamaa</emph> kana irra <emph>Dhangeessa</emph> kabala.</ahelp></variable>"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id2025818\n"
+"04020000.xhp\n"
+"par_id3145230\n"
"help.text"
-msgid "Use the Chart Wizard - Data Series page if you need more control over the data ranges."
-msgstr "Yoo hammanga deetaa iirratti too`anna caalu barbaade fuula Taattoo Masaka - Deetaa Walfaannee gargaarami."
+msgid "<image id=\"img_id3147346\" src=\"cmd/sc_togglelegend.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147346\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147346\" src=\"cmd/sc_togglelegend.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147346\">Sajoo</alt></image>"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id8466139\n"
+"04020000.xhp\n"
+"par_id3149207\n"
+"16\n"
"help.text"
-msgid "This dialog is only available for charts based on a Calc or Writer table."
-msgstr "Qaaqan kun taattoolee gabatee calc ykn Writer irratti hundaa`anniif qofa argama."
+msgid "Legend On/Off"
+msgstr "Waayoo Banaa/Dhaamaa"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"hd_id1877193\n"
+"04020000.xhp\n"
+"hd_id3155114\n"
+"6\n"
"help.text"
-msgid "To specify a data range"
-msgstr "Hangii deetaa ifteessuuf"
+msgid "Display"
+msgstr "Agarsiisaa"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id5924863\n"
+"04020000.xhp\n"
+"par_id3150206\n"
+"7\n"
"help.text"
-msgid "Select the data range. Do one of the following:"
-msgstr "Hangii deetaa fili. Kanneen armaan gadii keessaa tokko hojjedhu."
+msgid "<ahelp hid=\"SCH_CHECKBOX_DLG_LEGEND_CBX_SHOW\">Specifies whether to display a legend for the chart.</ahelp> This option is only visible if you call the dialog by choosing <emph>Insert - Legend</emph>."
+msgstr "<ahelp hid=\"SCH_CHECKBOX_DLG_LEGEND_CBX_SHOW\">Waayoon akka inni taattoo fi agarsiifamme ifteessi.</ahelp> Dirqalii kun mula'ataa kan inni ta'u yoo qaaqa fiiluun bilbiltee qoofa <emph>Saagi - Waayoo</emph>."
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id4357432\n"
+"04020000.xhp\n"
+"hd_id3150201\n"
+"4\n"
"help.text"
-msgid "Enter the data range in the text box."
-msgstr "Sanduuqa barruu keessa hangii deetaa saagi."
+msgid "Position"
+msgstr "Qubannoo"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id5626392\n"
+"04020000.xhp\n"
+"par_id3155376\n"
+"5\n"
"help.text"
-msgid "In Calc, an example data range would be \"$Sheet1.$B$3:$B$14\". Note that a data range may consist of more than one region in a spreadsheet, e.g. \"$Sheet1.A1:A5;$Sheet1.D1:D5\" is also a valid data range. In Writer, an example data range would be \"Table1.A1:E4\"."
-msgstr "Calc keessatti, fakkeenyi hammanga deetaa \"$Sheet1.$B$3:$B$14\" ta`a. hubachiisa wardii keessatti hammangaan deetaa tarii naannoo tkkoo ol irraa ijaaramuu ni danda`a, fakkeenyaaf \"$Sheet1.A1:A5;$Sheet1.D1:D5\" hammangaan deetaa dabalataan gataa`aa dha. Writer keessatti, fakkeenyi hammangaa deetaa \"Table1.A1:E4\" ni ta`a."
+msgid "Select the position for the legend:"
+msgstr "Qubannoo waayoo fi fili:"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id1363872\n"
+"04020000.xhp\n"
+"hd_id3152988\n"
+"8\n"
"help.text"
-msgid "In Calc, click <emph>Select data range</emph> to minimize the dialog, then drag over a cell area to select the data range."
-msgstr "Qaaqa Calc keessatti gadeessuuf, <emph>hammanga deetaa fili</emph> cuuqaasi, itti aansuudhaan hammangaa deetaa filuuf harkisi."
+msgid "Left"
+msgstr "Bitaa"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id6823938\n"
+"04020000.xhp\n"
+"par_id3155087\n"
+"9\n"
"help.text"
-msgid "If you want a data range of multiple cell areas that are not next to each other, enter the first range, then manually add a semicolon at the end of the text box, then enter the other ranges. Use a semicolon as delimiter between ranges."
-msgstr "Yoo hammanga deetaa bal`insoota man`ee hedduu tokko tokkoo isaaniitti kan hin aanne barbaade, hangii jalqabaa saagi, achii dhuma sanduuqa barruu irratti hujeekan tuq lameedabali, itti aansuudhaan hammangalee biraa saagi. Akka daanggessaatti gidduu hammangaleetti tuq lamee gargaarami."
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_LEFT\">Positions the legend at the left of the chart.</ahelp>"
+msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_LEFT\">Waayoo gara bitaa taattoo ti qubachiisi.</ahelp>"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id1434369\n"
+"04020000.xhp\n"
+"hd_id3153816\n"
+"10\n"
"help.text"
-msgid "Click one of the options for data series in rows or in columns."
-msgstr "Deetaa walfaanneef terreewwan ykn tarjaalee keessaa filannoo tokko cuuqaasi."
+msgid "Top"
+msgstr "Irra"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id7524033\n"
+"04020000.xhp\n"
+"par_id3153912\n"
+"11\n"
"help.text"
-msgid "Check whether the data range has labels in the first row or in the first column or both."
-msgstr "Hammangaan deetaa akka moggaasa terree duraa ykn tarjaa duraa ykn lamanuu keessatti qabu mirkaneessi."
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_TOP\">Positions the legend at the top of the chart.</ahelp>"
+msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_TOP\">Waayoo gara irra taattoo ti qubachiisi.</ahelp>"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id5256508\n"
+"04020000.xhp\n"
+"hd_id3144773\n"
+"12\n"
"help.text"
-msgid "In the preview you can see how the final chart will look."
-msgstr "Durargii keessatti taattoon dhumaa maal akka fakkaatu ilaaluun ni danda`ama."
+msgid "Right"
+msgstr "Mirga"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id379650\n"
+"04020000.xhp\n"
+"par_id3155268\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the data range that you want to include in your chart. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Taattoo kee keessa hammangaa deetaa saaguuf barbaade saagi. Hamamtaa deetaa calc keesaa filuun qaaqa gadeessuuf, qabduu <emph>Hamamtaa deetaa fili</emph> cuuqaasi.</ahelp>"
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_RIGHT\">Positions the legend at the right of the chart.</ahelp>"
+msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_RIGHT\">Waayoo gara mirga taattoo ti qubachiisi.</ahelp>"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id953703\n"
+"04020000.xhp\n"
+"hd_id3152871\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Data series get their data from consecutive rows in the selected range. For scatter charts, the first data series will contain x-values for all series. All other data series are used as y-values, one for each series.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Deetaa walfaannee tarreewwan tarreen hammangaa irraa filaman keessaa deetaa isaanii argatu. Taattooleen bittimsuuf, walfaannee hundaaf tarjaan deetaa duraa gatiiwwan-x ofkeessatti qabata. Tarjaaleen deetaa biraan hundi akka gatiiwwan-yti, tokko tokkoo walfanneef tokko ni gargaaru.</ahelp>"
+msgid "Bottom"
+msgstr "Jala"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id4496597\n"
+"04020000.xhp\n"
+"par_id3153249\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Data series get their data from consecutive columns in the selected range. For scatter charts, the first data column will contain x-values for all series. All other data columns are used as y-values, one for each series.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Deetaa walfaannee tarjaalee tarreen hammangaa irraa filaman keessaa deetaa isaanii argatu. Taattooleen bittimsuuf, walfaannee hundaaf tarjaan deetaa duraa gatiiwwan-x ofkeessatti qabata. Tarjaaleen deetaa biraan hundi akka gatiiwwan-yti, tokko tokkoo walfanneef tokko ni gargaaru.</ahelp>"
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_BOTTOM\">Positions the legend at the bottom of the chart.</ahelp>"
+msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_BOTTOM\">Waayoo gara jala taattoo ti qubachiisi.</ahelp>"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id2898953\n"
+"04020000.xhp\n"
+"hd_id1106200812072645\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">For data series in columns: The first row in the range is used as names for data series. For data series in rows: The first row in the range is used as categories. The remaining rows comprise the data series. If this check box is not selected, all rows are data series.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Deetaa walfaannee tarjaalee keessaaf: Tarree duraa hammangaa keessaa deetaa walfaanneef akka maqaati gargaaru dha. Deetaa walfaanneef kan keessaa tarree: Tarree duraa hammangaa keessaa kan akka akaakuuwwaniitti gargaaru dha. Tarjaaleen hafan deetaa tarjaalee walmadaalsisu. Osoo saanduqni filannoo kun filamuu dhiise, tarjaaleen hundi deetaa tarjaalee ti.</ahelp>"
+msgid "Text Orientation"
+msgstr "Qabachiisa Barruu"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id7546311\n"
+"04020000.xhp\n"
+"par_id1106200812072653\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">For data series in columns: The first column in the range is used as names for data series. For data series in rows: The first column in the range is used as categories. The remaining columns comprise the data columns. If this check box is not selected, all columns are data columns.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Deetaa walfaannee tarjaalee keessaaf: Tarjaa duraa hammangaa keessaa deetaa walfaanneef akka maqaati gargaaru dha. Deetaa walfaanneef kan keessaa tarree: Tarjaa duraa hammangaa keessaa kan akka akaakuuwwaniitti gargaaru dha. Tarjaaleen hafan deetaa tarjaalee walmadaalsisu. Osoo saanduqni filannoo kun filamuu dhiise, tarjaaleen hundi deetaa tarjaalee ti.</ahelp>"
+msgid "This feature is only available if complex text layout support is enabled in <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages</item>."
+msgstr ""
-#: type_xy.xhp
+#: 04020000.xhp
msgctxt ""
-"type_xy.xhp\n"
+"04020000.xhp\n"
+"hd_id1106200812112444\n"
+"help.text"
+msgid "Text Direction"
+msgstr "Qixa Barruu"
+
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"par_id1106200812112530\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
+msgstr "<ahelp hid=\".\">Keewwata teessuma barruu xaxaa fayyadamuuf qixa barruu ifteessi (CTL). Amalli kun kan jiraatu yoo deeggarsi teessuma barruu xaxaa kakaafame.</ahelp>"
+
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
"tit\n"
"help.text"
-msgid "Chart Type XY"
-msgstr "Akaakuu Taattoo XY"
+msgid "Data Labels"
+msgstr "Moggaasa Deetaa"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"bm_id84231\n"
+"04030000.xhp\n"
+"bm_id3150275\n"
"help.text"
-msgid "<bookmark_value>scatter charts</bookmark_value><bookmark_value>XY charts</bookmark_value><bookmark_value>chart types;XY (scatter)</bookmark_value><bookmark_value>error indicators in charts</bookmark_value><bookmark_value>error bars in charts</bookmark_value><bookmark_value>averages in charts</bookmark_value><bookmark_value>statistics in charts</bookmark_value><bookmark_value>variances in charts</bookmark_value><bookmark_value>standard deviation in charts</bookmark_value>"
-msgstr "<bookmark_value>scatter charts</bookmark_value><bookmark_value>XY charts</bookmark_value><bookmark_value>chart types;XY (scatter)</bookmark_value><bookmark_value>error indicators in charts</bookmark_value><bookmark_value>error bars in charts</bookmark_value><bookmark_value>averages in charts</bookmark_value><bookmark_value>statistics in charts</bookmark_value><bookmark_value>variances in charts</bookmark_value><bookmark_value>standard deviation in charts</bookmark_value>"
+msgid "<bookmark_value>data labels in charts</bookmark_value> <bookmark_value>labels; for charts</bookmark_value> <bookmark_value>charts; data labels</bookmark_value> <bookmark_value>data values in charts</bookmark_value> <bookmark_value>chart legends; showing icons with labels</bookmark_value>"
+msgstr "<bookmark_value>moggaasa deetaa taattoo keessa</bookmark_value> <bookmark_value>Moggaasa; taattoo fi</bookmark_value> <bookmark_value>taattoo; moggaasa deetaa</bookmark_value> <bookmark_value>gatii deetaa taattoo keessa</bookmark_value> <bookmark_value>Waayoo taattoo; sajoo moggaasa issan mul'su </bookmark_value>"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"hd_id9346598\n"
+"04030000.xhp\n"
+"hd_id3150275\n"
+"1\n"
"help.text"
-msgid "<variable id=\"type_xy\"><link href=\"text/schart/01/type_xy.xhp\">Chart Type XY (Scatter)</link></variable>"
-msgstr "<variable id=\"type_xy\"><link href=\"text/schart/01/type_xy.xhp\">Akaakuu Taattoo XY (Bittimfaa)s</link></variable>"
+msgid "<variable id=\"datenbeschriftung\"><link href=\"text/schart/01/04030000.xhp\" name=\"Data labels\">Data Labels</link></variable>"
+msgstr "<variable id=\"datenbeschriftung\"><link href=\"text/schart/01/04030000.xhp\" name=\"Data labels\">Moggaasa Deetaa</link></variable>"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id2003845\n"
+"04030000.xhp\n"
+"par_id3154684\n"
+"2\n"
"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
-msgstr "Fuula duraa <link href=\"text/schart/01/wiz_chart_type.xhp\">taattoo Masaka</link> irraa akaakuu taattoo filuu dandeessa."
+msgid "<variable id=\"besch\"><ahelp hid=\".uno:InsertMenuDataLabels\">Opens the<emph> Data Labels </emph>dialog, which enables you to set the data labels.</ahelp></variable>"
+msgstr "<variable id=\"besch\"><ahelp hid=\".uno:InsertMenuDataLabels\">Qaaqa<emph> Moggaasa Deetaa </emph>kana bani, moggaasa deetaa qindeessufi si dandeessiisa.</ahelp></variable>"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"hd_id7757194\n"
+"04030000.xhp\n"
+"par_id0810200912120416\n"
"help.text"
-msgid "XY (Scatter)"
-msgstr "XY (Bittimfaa)"
+msgid "If an element of a data series is selected, this command works on that data series only. If no element is selected, this command works on all data series."
+msgstr "Yoo maalimaan walfaannee deetaa filame, ajajni kun walfaannee deetaa qofa irratti hojjeta. Yoo maalimni hin filatamiin, ajajni kun walfaannee deetaa hunda irratti hojjeta."
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id5977965\n"
+"04030000.xhp\n"
+"hd_id3149401\n"
+"17\n"
"help.text"
-msgid "An XY chart in its basic form is based on one data series consisting of a name, a list of x‑values, and a list of y‑values. Each value pair (x|y) is shown as a point in a coordinate system. The name of the data series is associated with the y‑values and shown in the legend."
-msgstr "Taattoon XY unkaa bu`uura isaa keessatti deetaa walfaannee maqaa, tarree gatiiwwaan‑x, fi tarree gatiiwwan‑y ofkeessatti qabatu tokko irratti hundaa`a. Tokko tokkoon gatii dachaa (x|y) cirna walgita keessaatti akka tuqaati agarsiisama. Maqaan deetaa walfaannee gatiiwwan‑y waliin firooma akkasumas waayoo keessatti agarsiisama."
+msgid "Show value as number"
+msgstr "Gatii akka lakkoofsati mul'si"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id4381847\n"
+"04030000.xhp\n"
+"par_id3150751\n"
+"18\n"
"help.text"
-msgid "Choose an XY chart for the following example tasks:"
-msgstr "Taattoo XY fakkeenya hojoolee armaan gadiif fili:"
+msgid "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_NUMBER\">Displays the absolute values of the data points.</ahelp>"
+msgstr "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_NUMBER\">Tuqaalee deetaa gatii of daanda'aan agarsiisu.</ahelp>"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id1336710\n"
+"04030000.xhp\n"
+"hd_id5077059\n"
"help.text"
-msgid "scale the x‑axis"
-msgstr "siiqqee‑x madaali"
+msgid "Number format"
+msgstr "Dhangii lakkoofsa"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id1221655\n"
+"04030000.xhp\n"
+"par_id9794610\n"
"help.text"
-msgid "generate a parameter curve, for example a spiral"
-msgstr "ulaagaa qonyoo uumi, fakkeenyaaf mari"
+msgid "<ahelp hid=\".\">Opens a dialog to select the number format.</ahelp>"
+msgstr "<ahelp hid=\".\">Dhangii lakkoofsa fiilu fi qaaqa bani.</ahelp>"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id3397320\n"
+"04030000.xhp\n"
+"hd_id3145643\n"
+"9\n"
"help.text"
-msgid "draw the graph of a function"
-msgstr "faankishinii caatoo fakkasi"
+msgid "Show value as percentage"
+msgstr "Dhibbeentaa gatii mul'si"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id7657399\n"
+"04030000.xhp\n"
+"par_id3156382\n"
+"10\n"
"help.text"
-msgid "explore the statistical association of quantitative variables"
-msgstr "aloolaa jijjiiramaawwan hangaa firoomina xiinannoo"
+msgid "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_PERCENT\">Displays the percentage of the data points in each column.</ahelp>"
+msgstr "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_PERCENT\">Tuqaalee deetaa tarjaa keessa dhibbeentaan agarsiisu.</ahelp>"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id8925138\n"
+"04030000.xhp\n"
+"hd_id1316873\n"
"help.text"
-msgid "Your XY chart may have more than one data series."
-msgstr "Taattoon XY kee tarii deetaa walfaannee tokkoo ol qabaachuu danda`a."
+msgid "Percentage format"
+msgstr "Dhangii dhibbeentaa"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"hd_id5461897\n"
+"04030000.xhp\n"
+"par_id5476241\n"
"help.text"
-msgid "XY Chart Variants"
-msgstr "Addaba'oota Taattoo XY"
+msgid "<ahelp hid=\".\">Opens a dialog to select the percentage format.</ahelp>"
+msgstr "<ahelp hid=\".\">Dhangii lakkoofsaa fiilu fi qaaqa bani.</ahelp>"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id8919339\n"
+"04030000.xhp\n"
+"hd_id3145228\n"
+"11\n"
"help.text"
-msgid "You can choose an XY chart variant on the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link>, or by choosing <item type=\"menuitem\">Format - Chart Type </item>for a chart in edit mode."
-msgstr "Fuula duraa <link href=\"text/schart/01/wiz_chart_type.xhp\">Taattoo Masaka</link> irraa, ykn <item type=\"menuitem\">Dhangii - Akaakuu Taattoo </item>taattoof gulaalaa haalata keessaa filuudhaan taattoo XY addaa filuu ni dandeessa."
+msgid "Show category"
+msgstr "Akaaku mul'si"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id4634235\n"
+"04030000.xhp\n"
+"par_id3154702\n"
+"12\n"
"help.text"
-msgid "The chart is created with default settings. After the chart is finished, you can edit its properties to change the appearance. Line styles and icons can be changed on the <emph>Line</emph>tab page of the data series properties dialog."
-msgstr "Taattoon qindaa`inoota durtii waliin uumama. Taattoon iddoo xumurame booda, mul'annoo jijjiiruuf amaloota isaa gulaaluu dandeessa. Akkaataalee fi sajoolee sarara amaloota qaaqa deetaa walfaannee fuula taabii <emph>Sarara</emph> irratti ni jijjiiramu."
+msgid "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_TEXT\">Shows the data point text labels.</ahelp>"
+msgstr "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_TEXT\">Asxaa barruu tuqaalee deetaa mul'su.</ahelp>"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id5482039\n"
+"04030000.xhp\n"
+"hd_id3150298\n"
+"15\n"
"help.text"
-msgid "Double-click any data point to open the <item type=\"menuitem\">Data Series</item> dialog. In this dialog, you can change many properties of the data series."
-msgstr "Qaaqa <item type=\"menuitem\">Deetaa Walfaannee</item> banuuf tuqaa deetaa kamiyyuu lama cuqaasi. Qaaqa kana keessatti, amaloota baay'ee deetaa walfaannee jijjiiruu dandeessa."
+msgid "Show legend key"
+msgstr "Furtuu waayoo mul'su"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id0805200810492449\n"
+"04030000.xhp\n"
+"par_id3150205\n"
+"16\n"
"help.text"
-msgid "For 2D charts, you can choose <item type=\"menuitem\">Insert - Y Error Bars</item> to enable the display of error bars."
-msgstr "Taattoowwan 2D dhaaf, agarsiisa kabalawwan dogongoraa dandeessisuuf <item type=\"menuitem\">saagi - Kabalawwan dogongoraa Y</item> filachuu dandeessa."
+msgid "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_SYMBOL\">Displays the legend icons next to each data point label.</ahelp>"
+msgstr "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_SYMBOL\">Sajoo waayoo asxaa tuqaalee deetaa itti aane'ee jiru agarsiisi.</ahelp>"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id6221198\n"
+"04030000.xhp\n"
+"hd_id3836787\n"
"help.text"
-msgid "You can enable the display of mean value lines and trend lines using commands on the Insert menu."
-msgstr "Ajajoota baafata Saagi gargaaramuun sararoota gatii gidduu galeessaa fi sararoota adeemsa agarsiisu dandeessa."
+msgid "Separator"
+msgstr "Foo'aa"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"hd_id1393475\n"
+"04030000.xhp\n"
+"par_id6668904\n"
"help.text"
-msgid "Points only"
-msgstr "Tuqaalee Qofa"
+msgid "<ahelp hid=\".\">Selects the separator between multiple text strings for the same object.</ahelp>"
+msgstr "<ahelp hid=\".\">Diraa Barruu hedduu wanta wal fakkataa foo'aa gar gar baasu fili.</ahelp>"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id6571550\n"
+"04030000.xhp\n"
+"hd_id4319284\n"
"help.text"
-msgid "Each data point is shown by an icon. %PRODUCTNAME uses default icons with different forms and colors for each data series. The default colors are set in <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Charts - Default Colors</item>."
+msgid "Placement"
+msgstr "Iddoo"
+
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id5159459\n"
+"help.text"
+msgid "<ahelp hid=\".\">Selects the placement of data labels relative to the objects.</ahelp>"
+msgstr "<ahelp hid=\".\">Iddoo asxaa deetaa wanta irra fili.</ahelp>"
+
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"hd_id1106200812280727\n"
+"help.text"
+msgid "Text Direction"
+msgstr "Qixa Barruu"
+
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id1106200812280719\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
+msgstr "<ahelp hid=\".\">Keewwata teessuma barruu xaxaa fayyadamuuf qixa barruu ifteessi (CTL). Amalli kun kan jiraatu yoo deeggarsi teessuma barruu xaxaa kakaafame.</ahelp>"
+
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"hd_id1007200901590713\n"
+"help.text"
+msgid "Rotate Text"
+msgstr "Barruu marsuu"
+
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id1007200901590752\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click in the dial to set the text orientation for the data labels.</ahelp>"
msgstr ""
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"hd_id5376140\n"
+"04030000.xhp\n"
+"par_id1007200901590757\n"
"help.text"
-msgid "Lines Only"
-msgstr "Sararoota Qofa"
+msgid "<ahelp hid=\".\">Enter the counterclockwise rotation angle for the data labels.</ahelp>"
+msgstr ""
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id4408093\n"
+"04040000.xhp\n"
+"tit\n"
"help.text"
-msgid "This variant draws straight lines from one data point to the next. The data points are not shown by icons."
-msgstr "Addaddummaan kunsararoota sirrii tuqaa deetaa tokko irraa gara itti aanuutti fakkaasa.Tuqaaleen deetaa sajooleetiin hin agarsiisaman."
+msgid "Axes"
+msgstr "Siiqqota"
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id7261268\n"
+"04040000.xhp\n"
+"bm_id3147428\n"
"help.text"
-msgid "The drawing order is the same as the order in the data series. Mark <emph>Sort by X Values</emph> to draw the lines in the order of the x values. This sorting applies only to the chart, not to the data in the table."
-msgstr "Tartiibni fakkasa tartiiba deetaa walfaannee keessaa waliin walfakkaata.Tartiiba gatiiwwan x keessatti sararoota kaasuuf <emph>Gatiiwwan x Tartiiba qabsiisi</emph> mallatteessi. Tartiiba qabsiisiin taattoo qofatti fayyadama, deetaa gabatee keessaatti miti."
+msgid "<bookmark_value>axes; showing axes in charts</bookmark_value><bookmark_value>charts; showing axes</bookmark_value><bookmark_value>X axes; showing</bookmark_value><bookmark_value>Y axes; showing</bookmark_value><bookmark_value>Z axes; showing</bookmark_value><bookmark_value>axes; better scaling</bookmark_value><bookmark_value>secondary axes in charts</bookmark_value>"
+msgstr "<bookmark_value>siiqqota; Siiqqota taattoo keesssa mul'si </bookmark_value><bookmark_value>taattoo; siiqqotaa mul'si</bookmark_value><bookmark_value>Siiqqota X; mul'si</bookmark_value><bookmark_value>Siiqqota Y; mul'si</bookmark_value><bookmark_value>Siiqqota Z; mul'si</bookmark_value><bookmark_value>siiqqota; safaraa garii</bookmark_value><bookmark_value>Siiqqota lammataa taattoo keessaa</bookmark_value>"
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"hd_id6949369\n"
+"04040000.xhp\n"
+"hd_id3147428\n"
+"1\n"
"help.text"
-msgid "Points and Lines"
-msgstr "Tuqaalee fi Sararoota"
+msgid "Axes"
+msgstr "Siiqqota"
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id9611499\n"
+"04040000.xhp\n"
+"par_id3150330\n"
+"2\n"
"help.text"
-msgid "This variant shows points and lines at the same time."
-msgstr "Addaddummaan kun tuuqaalee fi sararoota sa`a walfakkaataa irratti agarsiisa."
+msgid "<variable id=\"achsen\"><ahelp hid=\".uno:InsertMenuAxes\">Specifies the axes to be displayed in the chart.</ahelp></variable>"
+msgstr "<variable id=\"achsen\"><ahelp hid=\".uno:InsertMenuAxes\">Siiqqota taattoo keessaa ti agarsiifamman ifteessi.</ahelp></variable>"
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"hd_id6765953\n"
+"04040000.xhp\n"
+"hd_id3156385\n"
+"46\n"
"help.text"
-msgid "3D Lines"
-msgstr "Sararoota 3D"
+msgid "Major axis"
+msgstr "Siiqqee buraalaa"
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id7422711\n"
+"04040000.xhp\n"
+"hd_id3146316\n"
+"5\n"
"help.text"
-msgid "The lines are shown like tapes. The data points are not shown by icons. In the finished chart choose <link href=\"text/schart/01/three_d_view.xhp\">3D View</link> to set properties like illumination and angle of view."
-msgstr "Sararootni akka teeppiitti agarsiifamu.Tuqaaleen deetaa sajooleetiin hin agarsiifamani. Amaloota kan akka calaqqee fi mul`isu kofa qindeessuuf xumura taattoo keessaa <link href=\"text/schart/01/three_d_view.xhp\">3D Mul`isi</link> fili."
+msgid "X axis"
+msgstr "Siilloo X"
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"hd_id239265\n"
+"04040000.xhp\n"
+"par_id3145230\n"
+"6\n"
"help.text"
-msgid "Smooth Lines"
-msgstr "Sararoota Simeessa"
+msgid "<ahelp hid=\"SCH_CHECKBOX_DLG_AXIS_CB_X_PRIMARY\">Displays the X axis as a line with subdivisions.</ahelp>"
+msgstr "<ahelp hid=\"SCH_CHECKBOX_DLG_AXIS_CB_X_PRIMARY\">Siiqqee X akka sarara qooda ti agarsiisi.</ahelp>"
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id7957396\n"
+"04040000.xhp\n"
+"hd_id3147003\n"
+"17\n"
"help.text"
-msgid "Mark <emph>Smooth Lines</emph> to draw curves instead of straight line segments."
-msgstr "Iddoo muraalee sarara sirrii qonyoota kaasuuf<emph>Sararoota Simeessa</emph> mallatteessi."
+msgid "Y axis"
+msgstr "Siilloo Y"
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id1202124\n"
+"04040000.xhp\n"
+"par_id3154020\n"
+"18\n"
"help.text"
-msgid "Click <emph>Properties</emph> to set details for the curves."
-msgstr "Bal'ina qonyootaaf qindeessuuf <emph>Amaloota</emph> cuuqaasi."
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_PRIMARY\">Displays the Y axis as a line with subdivisions.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_PRIMARY\">Siiqqee Y akka sarara qooda ti agarsiisi.</ahelp>"
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id5989562\n"
+"04040000.xhp\n"
+"hd_id3150345\n"
+"28\n"
"help.text"
-msgid "<emph>Cubic Spline</emph> interpolates your data points with polynomials of degree 3. The transitions between the polynomial pieces are smooth, having the same slope and curvature."
-msgstr "<emph>Cubic Spline</emph> tuqaalee deetaa keessaan pooliynomiyaalii digiriii 3 waliin walqabsiisa. Cehumsi kutaalee pooliynoomiyaalii simeessa, irraagadee fi qonyoowwan walfakkaatan qabu dha."
+msgid "Z axis"
+msgstr "Siilloo Z"
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id6128421\n"
+"04040000.xhp\n"
+"par_id3155113\n"
+"29\n"
"help.text"
-msgid "The <emph>Resolution</emph> determines how many line segments are calculated to draw a piece of polynomial between two data points. You can see the intermediate points if you click any data point."
-msgstr "<emph>Qulqullini</emph> pooliynoomiyaali xixiqqooo tuuqaalee deetaa gidduutti kaasuuf muraaleen sarara hammam akka herregaman murteesa. Osoo tuqaa deetaa kamiyyuu cuuqaaste giddugaleessa tuqaalee ilaaluu ni dandeessa."
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Z_PRIMARY\">Displays the Z axis as a line with subdivisions.</ahelp> This axis can only be displayed in 3D charts."
+msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Z_PRIMARY\">Siiqqee Z akka sarara qooda ti agarsiisi.</ahelp> Siiqqeen kun kan inni agarsiifammu garsadee taattoo keessa ti."
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id9280373\n"
+"04040000.xhp\n"
+"hd_id3150206\n"
+"36\n"
"help.text"
-msgid "<emph>B-Spline</emph> uses a parametric, interpolating B-spline curve. Those curves are built piecewise from polynomials. The <emph>Degree of polynomials</emph> sets the degree of these polynomials."
-msgstr ""
+msgid "Secondary axis"
+msgstr "Siiqqee lammataa"
+
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"par_id3166428\n"
+"37\n"
+"help.text"
+msgid "Use this area to assign a second axis to your chart. If a data series is already assigned to this axis, $[officename] automatically displays the axis and the label. You can turn off these settings later on. If no data has been assigned to this axis and you activate this area, the values of the primary Y axis are applied to the secondary axis."
+msgstr "Siiqqee lammataa taattoo kee kessaa ti ramaduf idoo kan fayyadami. Yoo walfaanneen deetaa siiqqee kana ti ramadamerra ta'e, $[officename] Siiqqee fi moggaasa ofumaan agarsiisa. Qindaa'ina kana booda dhaamsuu dandeesa. Yoo deetaan siiqqee kanati ramadamee hin jiru ta'e fi idoo kana kakaasi, Gatiin siiqqee Y dursaa gara siiqqee lammataa ti fayyadami."
+
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"hd_id3152988\n"
+"44\n"
+"help.text"
+msgid "X axis"
+msgstr "Siilloo X"
+
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"par_id3156445\n"
+"45\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_X_SECONDARY\">Displays a secondary X axis in the chart.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_X_SECONDARY\">Siiqqee X lammataa taattoo kessaa jiru agarsiisi.</ahelp>"
+
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"hd_id3152896\n"
+"38\n"
+"help.text"
+msgid "Y axis"
+msgstr "Siilloo Y"
+
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"par_id3153818\n"
+"39\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">Displays a secondary Y axis in the chart.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">Siiqqee Y lammataa taattoo keessaa jiru agarsiisi.</ahelp>"
+
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"par_id3154762\n"
+"41\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">The major axis and the secondary axis can have different scaling. For example, you can scale one axis to 2 in. and the other to 1.5 in. </ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">Siiqqee buraalaa fi siiqqeen lammataa safaraa ada adda qabu. Fakkeenya fi, safaraa siiqqee tokkoo inchii 2. fi kan birra ti safaraa inchii 1.5. </ahelp>"
#: 04050000.xhp
msgctxt ""
@@ -1063,513 +1253,861 @@ msgctxt ""
msgid "<ahelp hid=\".\">Shows only negative error bars.</ahelp>"
msgstr "<ahelp hid=\".\">Kabalawwan neegatiivii qofa agarsiisa.</ahelp>"
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
+"04050100.xhp\n"
"tit\n"
"help.text"
-msgid "Smooth Line Properties"
-msgstr "Amala sarara siimessa"
+msgid "Trend Lines"
+msgstr "Adeemsa sarara"
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"bm_id3803827\n"
+"04050100.xhp\n"
+"bm_id1744743\n"
"help.text"
-msgid "<bookmark_value>curves;properties in line charts/XY charts</bookmark_value><bookmark_value>properties;smooth lines in line charts/XY charts</bookmark_value>"
-msgstr "<bookmark_value>curves;properties in line charts/XY charts</bookmark_value><bookmark_value>properties;smooth lines in line charts/XY charts</bookmark_value>"
+msgid "<bookmark_value>calculating;regression curves</bookmark_value> <bookmark_value>regression curves in charts</bookmark_value> <bookmark_value>trend lines in charts</bookmark_value> <bookmark_value>mean value lines in charts</bookmark_value>"
+msgstr "<bookmark_value>Herreguu;Qonyoo regreessiioni</bookmark_value> <bookmark_value>Qonyoo regreessiioni taattoo keessa</bookmark_value> <bookmark_value>Sarara adeemsa taattoo keessa</bookmark_value> <bookmark_value>Sarara gatii meeanii taattoo keessa</bookmark_value>"
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"hd_id3050325\n"
+"04050100.xhp\n"
+"hd_id5409405\n"
"help.text"
-msgid "Smooth Line Properties"
-msgstr "Amala sarara siimessa"
+msgid "<variable id=\"regression\"><link href=\"text/schart/01/04050100.xhp\">Trend Lines</link></variable>"
+msgstr "<variable id=\"regression\"><link href=\"text/schart/01/04050100.xhp\">Sarara adeemsa</link></variable>"
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id9421979\n"
+"04050100.xhp\n"
+"par_id7272255\n"
"help.text"
-msgid "In a chart that displays lines (Line type or XY type), you can choose to show curves instead of straight lines. Some options control the properties of those curves."
-msgstr "Taattoo sarara mul'isu keessatti(Akaakuu sararaa yookan akaakuu XY)qonyoo irra sarara qajeeelaa agarsiisuu dandeessa. Filannoon tokko tokko amala qonyoo kannenii too'atu."
+msgid "<variable id=\"trendlinestext\"><ahelp hid=\".\">Trend lines can be added to all 2D chart types except for Pie and Stock charts.</ahelp></variable>"
+msgstr "<variable id=\"trendlinestext\"><ahelp hid=\".\">Qonyoo regreessiioni, itti dabala'an kaniin beekamu sarara adeemsan, kun kaaniin ida'amu taattoo garlammee hundaa fi yoo ta'u taattoo deloo fi taattoo kuussa ti garru hin ida'amu.</ahelp></variable>"
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"hd_id1228370\n"
+"04050100.xhp\n"
+"par_id143436\n"
"help.text"
-msgid "To change line properties"
-msgstr "Amala sarara jijjiiruuf"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">No trend line is shown.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Sararan adeemsa mul'atee hin jiru.</ahelp>"
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id1601611\n"
+"04050100.xhp\n"
+"par_id5716727\n"
"help.text"
-msgid "Select Cubic Spline or B-Spline."
-msgstr "Rogsadee Spline yookan Rogsadee lamee filadhu."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">A linear trend line is shown.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Sarara adeemsa sorooroo mul'isuu.</ahelp>"
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id879848\n"
+"04050100.xhp\n"
+"par_id5840021\n"
"help.text"
-msgid "These are mathematical models that influence the display of the curves. The curves are created by joining together segments of polynomials."
-msgstr ""
+msgid "<ahelp hid=\".\" visibility=\"hidden\">A logarithmic trend line is shown.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Sarara adeemsa logaarizimii mul'isuu.</ahelp>"
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id3464461\n"
+"04050100.xhp\n"
+"par_id9417096\n"
"help.text"
-msgid "Optionally set the resolution. A higher value leads to a smoother line."
-msgstr "Akka filannootti qulqullina qindeessa. Gatiin guddaan gara sarara siimessatti nama geessa."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">An exponential trend line is shown.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Sarara adeemsa exponeenshaalii mul'isuu.</ahelp>"
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id6998809\n"
+"04050100.xhp\n"
+"par_id8482924\n"
"help.text"
-msgid "For B-spline lines optionally set the degree of the polynomials."
-msgstr ""
+msgid "<ahelp hid=\".\" visibility=\"hidden\">A power trend line is shown.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Sarara adeemsa humna mul'isuu.</ahelp>"
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id3424481\n"
+"04050100.xhp\n"
+"par_id8962370\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Apply a cubic spline model.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Haalata rogsadee spilayinii fayyadami.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the trend line equation next to the trend line.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Sarara adeemsaa qixxaatoo issa sarara adeemsaa ti annee jiru.</ahelp>"
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id1068758\n"
+"04050100.xhp\n"
+"par_id6889858\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Apply a B-spline model.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Haalata B-spilaayinii fayyadami.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the coefficient of determination next to the trend line.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Firoomina fuldurra sarara adeemsaa itti annee jiru agarsiisa.</ahelp>"
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id2320932\n"
+"04050100.xhp\n"
+"par_id8398998\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the resolution.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Qulqullina qindeessi.</ahelp>"
+msgid "If you insert a trend line to a chart type that uses categories, like <emph>Line </emph>or <emph>Column, </emph>then the numbers 1, 2, 3, <emph>…</emph> are used as x-values to calculate the trend line."
+msgstr "Sarara adeemsa yoo taattoo issa akaakuu adda addaa fayyadamuti saagt'ee, Fakkatii <emph>Sarara </emph>ykn <emph>tarjaa, </emph>itti fufee lakkoofsa 1, 2, 3, <emph>…</emph> hudii kun akka gatii-x ti sarara adeemsa irrati heeregama."
-#: smooth_line_properties.xhp
-#, fuzzy
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id8638874\n"
+"04050100.xhp\n"
+"par_id5676747\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the degree of the polynomials.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Qulqullina qindeessi.</ahelp>"
+msgid "To insert trend lines for all data series, double-click the chart to enter edit mode. Choose <item type=\"menuitem\">Insert - Trend Lines</item>, then select the type of trend line from None, Linear, Logarithmic, Exponential, or Power trend line."
+msgstr "Sarara adeemsa walfaannee deetaa hundaa ti saaguf, haalata gulaali galchuuf taattoo lama cuqaasi . Fili <item type=\"menuitem\">Saagi - Sarara Adeemsa</item>, itti fufuun sarara adeemsa hooma keessa ti fili, Sorooroo, Logaarizimii, Exponeentialii, ykn humna sarara adeemsa."
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"tit\n"
+"04050100.xhp\n"
+"par_id4349192\n"
"help.text"
-msgid "Chart Type Area"
-msgstr "Akaakuu Bal'ina Taattoo"
+msgid "To insert a trend line for a single data series, select the data series in the chart, right-click to open the context menu, and choose <item type=\"menuitem\">Insert - Trend Line</item>."
+msgstr "Sarara adeemsa walfaanneee deetaa tokkee ti saaguf, walfaannee deeataa taattoo keessati fili, baafata halqara banuuf mirga cuqaasi, itti fufuun fili <item type=\"menuitem\">Saagi - Sarara Adeemsa</item>."
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"bm_id4130680\n"
+"04050100.xhp\n"
+"par_id9337443\n"
"help.text"
-msgid "<bookmark_value>area charts</bookmark_value><bookmark_value>chart types;area</bookmark_value>"
-msgstr "<bookmark_value>bal'ina taattoo</bookmark_value><bookmark_value>chart types;area</bookmark_value>"
+msgid "To delete a single trend line or mean value line, click the line, then press the Del key."
+msgstr "Sarara adeemsa altokkee haqufi ykn gatii sarara miinii, Sarara irra cuqaasi,itti fufuun Furtuu Haqxuu dhiibi."
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"hd_id310678\n"
+"04050100.xhp\n"
+"par_id4529251\n"
"help.text"
-msgid "<variable id=\"type_area\"><link href=\"text/schart/01/type_area.xhp\">Chart Type Area</link></variable>"
-msgstr "<variable id=\"type_area\"><link href=\"text/schart/01/type_area.xhp\">Akaakuu Bal'ina Taattoo</link></variable>"
+msgid "To delete all trend lines, choose <item type=\"menuitem\">Insert - Trend Lines</item>, then select <emph>None</emph>."
+msgstr "Sarara adeemsa hundaa haquuf, fili <item type=\"menuitem\">Saagi - Sarara Adeemsa</item>, itti fufuun fili <emph>Hooma</emph>."
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"par_id916776\n"
+"04050100.xhp\n"
+"par_id296334\n"
"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
-msgstr "Fuula isa jalqabaa irratti <link href=\"text/schart/01/wiz_chart_type.xhp\">Gargaartuu Taattoo</link> akaakuu taattoo filachuu dandeessa."
+msgid "A trend line is shown in the legend automatically."
+msgstr "Sararan adeemsa waayoo ofumaa keessati mul'ata."
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"hd_id961943\n"
+"04050100.xhp\n"
+"par_id4072084\n"
"help.text"
-msgid "Area"
-msgstr "Bal'ina"
+msgid "<ahelp hid=\".\">Mean Value Lines are special trend lines that show the mean value. Use <item type=\"menuitem\">Insert - Mean Value Lines</item> to insert mean value lines for data series.</ahelp>"
+msgstr "<ahelp hid=\".\">Sararan gatii miinii sarara adeemsa addaa issa gatii miini mul'sudha. Fayyadamii <item type=\"menuitem\">Saagi - Sarara gatii miinii</item> Sarara gatii miinii walfaannee deetaa hundaa ti saaguf.</ahelp>"
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"par_id631733\n"
+"04050100.xhp\n"
+"par_id9569689\n"
"help.text"
-msgid "An area chart shows values as points on the y axis. The x axis shows categories. The y values of each data series are connected by a line. The area between each two lines is filled with a color. The area chart's focus is to emphasize the changes from one category to the next."
-msgstr "Bal'inni taattoo gatii siilloo y irratti akka qabxiitii agarsiisa. Siilloon x akaakuu agarsiisa. Gatiin y walfakanne deetaa maraa sararaan wal qabata. Bal'inni sararoota lamaan gidduu jiru halluun guutama. Taattoon bal'inaa kan irratti xiyyeefatu jijjiiraa akaakuu tokko irra gara birootti."
+msgid "The trend line has the same color as the corresponding data series. To change the line properties, select the trend line and choose <item type=\"menuitem\">Format - Format Selection - Line</item>."
+msgstr "Sararan adeemsa walfaannee deetaa wajjiin halluu wal fakkataa qaba. Amala sarara jijjiiruuf, Sarara adeemsa fili itti fufuun fili <item type=\"menuitem\">Dhangii - Amala Wanta - Sarara</item>."
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"par_id7811822\n"
+"04050100.xhp\n"
+"par_id846888\n"
"help.text"
-msgid "Normal - this subtype plots all values as absolute y values. It first plots the area of the last column in the data range, then the next to last, and so on, and finally the first column of data is drawn. Thus, if the values in the first column are higher than other values, the last drawn area will hide the other areas."
-msgstr "Baratamoo -Akaakuu xiqqaan kun gatii hunda akka of danda'aa y ti kaasa. Dursee bal'ina tarjaa dhumaa hangii deetaa irratti kaase itti aanee hanga dhumaatti fi kanaaf kan kan fakkata fi dhuma irratti jalqabni tarjaa deetaa ni kaafama.kanaaf, yoo gatiin tarjaa duraa irra guddaa gatii biroo ta'e bal'inni dhuma irratti kaafamu bal'inoota biroo dhoksa."
+msgid "<ahelp hid=\".\">To show the trend line equation, select the trend line in the chart, right-click to open the context menu, and choose <emph>Insert Trend Line Equation</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\">Sarara adeemsa qixxaatoo mul'suu fi, sarara adeemsa taattoo keessati fili, Baafata halqara banuuf mirgaa cuqaasi, itti fufuun fili <emph>Sarara Adeemsa Qixxaatoo Saagi</emph>.</ahelp>"
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"par_id3640247\n"
+"04050100.xhp\n"
+"par_id8962065\n"
"help.text"
-msgid "Stacked - this subtypes plots values cumulatively stacked on each other. It ensures that all values are visible, and no data set is hidden by others. However, the y values no longer represent absolute values, except for the last column which is drawn at the bottom of the stacked areas."
-msgstr "Walirra Tuulamaa- Akaakuun xiqqaan kun gatii waliigalatti wal'irra tuulamaa tokko tokkoo kaasa. Gatii martuu akka mul'atan mirkaneesse deetaan kamiyyuu deetaa birootiin hin dhokatu. Haata'u malee gatiin y hammana gatii y murtaa'ee bakka hin bu'u. Tarsaa dhumaa qofaaf yoo ta'e malee kan garjallaa walirra tuulamaa irratti ka'e."
+msgid "When the chart is in edit mode, %PRODUCTNAME gives you the equation of the trend line and the coefficient of determination R². Click on the trend line to see the information in the status bar."
+msgstr "Yeroo taattoon haalata gulaali keessa jiru, %PRODUCTNAME sarara adeemsa qixxaatoo fi fuldurre firoomina R² siif kenna. Odeeffannoo kabala haalojii irra ilaaluf sarara adeemsa irratti cuqaasi."
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"par_id4585100\n"
+"04050100.xhp\n"
+"par_id1328470\n"
"help.text"
-msgid "Percent - this subtype plots values cumulatively stacked on each other and scaled as percentage of the category total."
-msgstr "Dhibbayyaa - akaakuun xiqqaan gatii kaastuu kun waliigalatti walirra tuulaa fi akka akaakuu dhibbeentaa madaalli waliigalaati."
+msgid "For a category chart (for example a line chart), the trend line information is calculated using numbers 1, 2, 3, … as x-values. This is also true if your data series uses other numbers as names for the x-values. For such charts the XY chart type might be more suitable."
+msgstr "Taattoo akaakuu adda addaa fi (fakkenyaafi sarara taattoo), dadhabbiin odeeffannoo kan heeregamu lakkoofsa kana fayyadamuun 1, 2, 3, … akka gatii-x. Yoo sararan deetaa kee lakkoofsa birra akka maqaa gatii-x fayyadamaa ta'e kunnis ni dhugooma. Taattoo akkanaan XY akaakuun taattoo kun mijja'adha."
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"tit\n"
+"04050100.xhp\n"
+"par_id8092593\n"
"help.text"
-msgid "Data Table"
-msgstr "Gabatee Deetaa"
+msgid "To show the equation and the coefficient of determination, select the trend line and choose <item type=\"menuitem\">Format - Format Selection - Equation</item>."
+msgstr "Qixxaatoo fi fuldurre firoomina mul'suuf, qonyoo dadhabbii fili itti fufuun fili <item type=\"menuitem\">Dhangii - Amala Wantaa - Qixxaatoo</item>."
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id3150869\n"
-"1\n"
+"04050100.xhp\n"
+"par_id7971434\n"
"help.text"
-msgid "<link href=\"text/schart/01/03010000.xhp\" name=\"Data Table\">Data Table</link>"
-msgstr "<link href=\"text/schart/01/03010000.xhp\" name=\"Data Table\">Gabatee Deetaa</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable Show equation to see the equation of the trend line.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Qonyoo dadhabbii qixxaatoo ilaaluf qixxaatoo dandeessiisu mul'su.</ahelp>"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3151115\n"
-"2\n"
+"04050100.xhp\n"
+"par_id558793\n"
"help.text"
-msgid "<ahelp hid=\".uno:DiagramData\">Opens the<emph> Data Table </emph>dialog where you can edit the chart data.</ahelp>"
-msgstr "<ahelp hid=\".uno:DiagramData\">Bani<emph> Gabatee Deetaa </emph>qaaqaq yeroo deetaa taattoo gulaalu dandeesuudha.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable Show Coefficient of Determination to see the determination coefficient of the trend line.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Maxxantoon Dutannoo maxxantoo dutannoo ilaaluuf dandeessiisu mul'isu.</ahelp>"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3149667\n"
-"51\n"
+"04050100.xhp\n"
+"par_id7735221\n"
"help.text"
-msgid "The<emph> Data Table </emph>dialog is not available if you insert a chart that is based on a Calc sheet or on a Writer table."
-msgstr "Kana<emph> Gabatee Deetaa </emph>yoo taattoon wardii herregduu ykn gabatee barreessitu ti saagamee qaaqan hin mul'atu."
+msgid "You can also calculate the parameters using Calc functions as follows."
+msgstr "Ulaagaa kana dalaga herregduu fayyadamuun akkataa kanan gadiiti herrguu dandeesa."
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id6746421\n"
+"04050100.xhp\n"
+"hd_id5744193\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06990000.xhp\">To update a chart manually when a Writer table got changed</link>"
-msgstr "<link href=\"text/swriter/01/06990000.xhp\">Taattoo hujeeka haaromsuuf yoo gabteen heeregduu jijjiiramee qoofadha</link>"
+msgid "The linear regression equation"
+msgstr "Sorooroo dadhabbii qixxaatoo"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id2565996\n"
+"04050100.xhp\n"
+"par_id9251991\n"
"help.text"
-msgid "Some changes will become visible only after you close and reopen the dialog."
-msgstr "Jijjiiramnii tokko tokko kan mul'atu ergaa qaaqa cuftee deebitee bantee booda."
+msgid "The <emph>linear regression</emph> follows the equation <item type=\"literal\">y=m*x+b</item>."
+msgstr "Kana <emph>Dadhabbii sorooroo</emph> qixxaatoo faana bu'ii <item type=\"literal\">y=m*x+b</item>."
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id6129947\n"
+"04050100.xhp\n"
+"par_id7951902\n"
"help.text"
-msgid "To change chart data"
-msgstr "Taattoo deetaa jijjiirufi"
+msgid "m = SLOPE(Data_Y;Data_X)"
+msgstr "m = SLOOPII(Deetaa_Y;Deetaa_X)"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id8141117\n"
+"04050100.xhp\n"
+"par_id6637165\n"
"help.text"
-msgid "When you create a chart that is based on default data, or when you copy a chart into your document, you can open the Data Table dialog to enter your own data. The chart responds to the data in a live preview."
-msgstr "Yeemu taattoo deetaa durtii irra ti hundooftee uumtuu, ykn yeemu taattoo galmee kee keessati garagalchiitu, Deetaa kee saaguu fi qaaqa gabatee deetaa bani. Taattoon kan deebi kenu deetaa durargii ammee ti."
+msgid "b = INTERCEPT(Data_Y ;Data_X)"
+msgstr "b = INTEERCEPTII(Deetaa_Y ;Deetaa_X)"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id9487594\n"
+"04050100.xhp\n"
+"par_id7879268\n"
"help.text"
-msgid "Close the Chart Data dialog to apply all changes to the chart. Choose <emph>Edit - Undo</emph> to cancel the changes."
-msgstr "Jijjiiramaa hundaa taattoo fayyadamuf qaaqa deetaa taattoo cufi.Fili <emph>Gulaali - Gaabbi</emph> jijjiiramaa dhiisuuf."
+msgid "Calculate the coefficient of determination by"
+msgstr "Hubbaanno fuldurre heereguuf kanan fayyadamii"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id4149906\n"
+"04050100.xhp\n"
+"par_id9244361\n"
"help.text"
-msgid "Insert or select a chart that is not based on existing cell data."
-msgstr "Taattoo issa deetaa man'ee jiraataa irrati hin hundoofnee saagi ykn fili."
+msgid "r² = RSQ(Data_Y;Data_X)"
+msgstr "r² = RSQ(Deetaa_Y;Deetaa_X)"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id6064943\n"
+"04050100.xhp\n"
+"par_id2083498\n"
"help.text"
-msgid "Choose <emph>View - Chart Data Table</emph> to open the Data Table dialog."
-msgstr "Fili <emph>Mul'annoo - Gabatee Deetaa Taattoo</emph> qaaqa gabatee deetaa banuuf."
+msgid "Besides m, b and r² the array function <emph>LINEST</emph> provides additional statistics for a regression analysis."
+msgstr "m garrasiiti, b fi r² dalaga waraantoo ti <emph>LIINESTII</emph> xiinannoo dabalataa xiinxala dadhabbiif laattu."
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3236182\n"
+"04050100.xhp\n"
+"hd_id2538834\n"
"help.text"
-msgid "The data series are organized in columns. The role of the left most column is set to categories or data labels respectively. The contents of the left most column are always formatted as text. You can insert more text columns to be used as hierarchical labels."
-msgstr ""
+msgid "The logarithm regression equation"
+msgstr "Sorooroo dadhabbii logaarizimii qixxaatoo"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id9799798\n"
+"04050100.xhp\n"
+"par_id394299\n"
"help.text"
-msgid "Click a cell in the dialog and change the contents. Click another cell to see the changed contents in the preview."
-msgstr "Man'ee qaaqa keessa cuqaasi ti qabiyyee issa jijjiirii. Man'een birra keessa cuqaasi jijjiiramaa qabiyyee durargii irrati laali."
+msgid "The <emph>logarithm regression</emph> follows the equation <item type=\"literal\">y=a*ln(x)+b</item>."
+msgstr "The <emph>dadhabbii logaarizimii</emph> qixxaatoo faana bu'ii <item type=\"literal\">y=a*ln(x)+b</item>."
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id1251258\n"
+"04050100.xhp\n"
+"par_id2134159\n"
"help.text"
-msgid "Enter the name of the data series in the text box above the column."
-msgstr "Maqaa walfaannee deetaa sanduuqa barruu keessa tarjaan oliiti saagi."
+msgid "a = SLOPE(Data_Y;LN(Data_X))"
+msgstr "a = SLOOPII(Deetaa_Y;LN(Deetaa_X))"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id743430\n"
+"04050100.xhp\n"
+"par_id5946531\n"
"help.text"
-msgid "Use the icons above the table to insert or delete rows and columns. For data series with multiple columns, only whole data series can be inserted or deleted."
-msgstr "Tarree ykn tarjaa saaguuf ykn haquuf sajoo gabateen oli jiru fayyadami. Walfaannee deetaa tarjaa heedduu fi, walfaannee deetaa guutumma qoofaatu sagama ykn haqamma."
+msgid "b = INTERCEPT(Data_Y ;LN(Data_X))"
+msgstr "b = INTEERCEPTII(Deetaa_Y ;LN(Deetaa_X))"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id8111819\n"
+"04050100.xhp\n"
+"par_id5649281\n"
"help.text"
-msgid "The order of the data series in the chart is the same as in the data table. Use the <emph>Move Series Right</emph> icon to switch the current column with its neighbor on the right."
-msgstr "Tartiibni walfaannee deetaa taattoo keessaa gabatee deetaa keessa waliin tokko. kana fayyadamii <emph>Walfaannee mirgati siqsi</emph> Sajoo issa tarjaa ammee keessaa gara mirga ola'aa issati jijjiiri."
+msgid "r² = RSQ(Data_Y;LN(Data_X))"
+msgstr "r² = RSQ(Deetaa_Y;LN(Deetaa_X))"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id9116794\n"
+"04050100.xhp\n"
+"hd_id7874080\n"
"help.text"
-msgid "The order of the categories or data points in the chart is the same as in the data table. Use the <emph>Move Row Down</emph> icon to switch the current row with its neighbor below."
-msgstr "Tartiibni akkakuu ykn tuqaalee deetaa . kana fayyadamii <emph>Tarree gadi siqsi</emph> Sajoo issa tarree ammee keessaa gara gadi ti ola'aa issati jijjiiri."
+msgid "The exponential regression equation"
+msgstr "Sorooroo dadhabbii expoonentialii qixxaatoo"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3150297\n"
-"20\n"
+"04050100.xhp\n"
+"par_id4679097\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new row below the current row.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tarree haaraa tarree ammee jala ti saagi.</ahelp>"
+msgid "For exponential trend lines a transformation to a linear model takes place. The optimal curve fitting is related to the linear model and the results are interpreted accordingly."
+msgstr "Qonyoo dadhabbii exponeenshaalii fi sorooroon ilaallata muuxatatu bakka bua'a. Qonyoon waltaasisi gaari sorooroo ilaallata wajiin wal fakkata ta'e bu'aan issa akkasumman hiikaama."
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3145384\n"
-"23\n"
+"04050100.xhp\n"
+"par_id9112216\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new data series after the current column.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tarjaa haaraa tarjaa ammee jala ti saagi.</ahelp>"
+msgid "The exponential regression follows the equation <item type=\"literal\">y=b*exp(a*x)</item> or <item type=\"literal\">y=b*m^x</item>, which is transformed to <item type=\"literal\">ln(y)=ln(b)+a*x</item> or <item type=\"literal\">ln(y)=ln(b)+ln(m)*x</item> respectively."
+msgstr "Dadhabbiin exponeenshaalii qixxaatoo hordoofee gala <item type=\"literal\">y=b*exp(a*x)</item> ykn <item type=\"literal\">y=b*m^x</item>, garra muuxata kan ti <item type=\"literal\">ln(y)=ln(b)+a*x</item> ykn <item type=\"literal\">ln(y)=ln(b)+ln(m)*x</item> tartiiban."
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3152297\n"
+"04050100.xhp\n"
+"par_id4416638\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new text column after the current column for hierarchical axes descriptions.</ahelp>"
-msgstr ""
+msgid "a = SLOPE(LN(Data_Y);Data_X)"
+msgstr "a = SLOOPEII(LN(Deetaa_Y);Deetaa_X)"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3159231\n"
-"26\n"
+"04050100.xhp\n"
+"par_id1039155\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the current row. It is not possible to delete the label row.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tarree ammee haqi. Tarree asxaa haquu hin dandeesuu.</ahelp>"
+msgid "The variables for the second variation are calculated as follows:"
+msgstr "Jijjiiramaan garra garrumma lammataa akkataa kana heeregama:"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3153336\n"
-"29\n"
+"04050100.xhp\n"
+"par_id7184057\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the current series or text column. It is not possible to delete the first text column.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tarjaa ammee haqi. Tarjaa asxaa haquu hin dandeesuu.</ahelp>"
+msgid "m = EXP(SLOPE(LN(Data_Y);Data_X))"
+msgstr "m = EXP(SLOOPEII(LN(Deetaa_Y);Deeta_X))"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id4089175\n"
+"04050100.xhp\n"
+"par_id786767\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Switches the current column with its neighbor at the right.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tarjaa ammee hollaa issa waliin gara mirgaa ti ceesiisu.</ahelp>"
+msgid "b = EXP(INTERCEPT(LN(Data_Y);Data_X))"
+msgstr "b = EXP(INTERCEEPTII(LN(Deetaa_Y);Deetaa_X))"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3949095\n"
+"04050100.xhp\n"
+"par_id7127292\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Switches the current row with its neighbor below.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tarree ammee hollaa issa waliin gara jala ti ceesiisu.</ahelp>"
+msgid "Calculate the coefficient of determination by"
+msgstr "Hubbaanno fuldurre heereguuf kanan fayyadamii"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id6697286\n"
+"04050100.xhp\n"
+"par_id5437177\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter names for the data series.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Walfaannee deetaa fi maqaa galchi.</ahelp>"
+msgid "r² = RSQ(LN(Data_Y);Data_X)"
+msgstr "r² = RSQ(LN(Deetaa_Y);Deetaa_X)"
-#: 05030000.xhp
+#: 04050100.xhp
msgctxt ""
-"05030000.xhp\n"
-"tit\n"
+"04050100.xhp\n"
+"par_id6946317\n"
"help.text"
-msgid "Legend"
-msgstr "Waayoo"
+msgid "Besides m, b and r² the array function LOGEST provides additional statistics for a regression analysis."
+msgstr "m garrasiiti, b and r² dalaga waraantoo LOOGESTIIN xiinannoo dabalataa xiinxala dadhabbiif laattu."
-#: 05030000.xhp
+#: 04050100.xhp
msgctxt ""
-"05030000.xhp\n"
-"hd_id3145800\n"
-"1\n"
+"04050100.xhp\n"
+"hd_id6349375\n"
"help.text"
-msgid "Legend"
-msgstr "Waayoo"
+msgid "The power regression equation"
+msgstr "Humna dadhabii qixxaatoo"
-#: 05030000.xhp
+#: 04050100.xhp
msgctxt ""
-"05030000.xhp\n"
-"par_id3146972\n"
-"2\n"
+"04050100.xhp\n"
+"par_id1857661\n"
"help.text"
-msgid "<variable id=\"legende\"><ahelp hid=\".uno:Legend\">Defines the border, area and character attributes for a legend.</ahelp></variable>"
-msgstr "<variable id=\"legende\"><ahelp hid=\".uno:Legend\">Amala daangaa,bal'ina fi arfii waayoof qindeessa.</ahelp></variable>"
+msgid "For <emph>power regression</emph> curves a transformation to a linear model takes place. The power regression follows the equation <item type=\"literal\">y=b*x^a</item> , which is transformed to <item type=\"literal\">ln(y)=ln(b)+a*ln(x)</item>."
+msgstr "kana fi <emph>dadhabbii humna</emph> qonyoon muuxata ilaallata sorooroon bakka bu'a. Dadhabbiin humna qixxaatoo hordoofee gala <item type=\"literal\">y=b*x^a</item> , garra muuxata kana ti <item type=\"literal\">ln(y)=ln(b)+a*ln(x)</item>."
-#: 05030000.xhp
+#: 04050100.xhp
msgctxt ""
-"05030000.xhp\n"
-"hd_id3145232\n"
-"4\n"
+"04050100.xhp\n"
+"par_id8517105\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Arfii</link>"
+msgid "a = SLOPE(LN(Data_Y);LN(Data_X))"
+msgstr "a = SLOOPEII(LN(Deetaa_Y);LN(Deetaa_X))"
-#: 05030000.xhp
+#: 04050100.xhp
msgctxt ""
-"05030000.xhp\n"
-"hd_id3147344\n"
-"3\n"
+"04050100.xhp\n"
+"par_id9827265\n"
"help.text"
-msgid "<link href=\"text/schart/01/04020000.xhp\" name=\"Display\">Display</link>"
-msgstr "<link href=\"text/schart/01/04020000.xhp\" name=\"Display\">Mul'ata</link>"
+msgid "b = EXP(INTERCEPT(LN(Data_Y);LN(Data_X))"
+msgstr "b = EXP(INTERCEEPTII(LN(Deetaa_Y);LN(Deetaa_X))"
-#: 05120000.xhp
+#: 04050100.xhp
msgctxt ""
-"05120000.xhp\n"
+"04050100.xhp\n"
+"par_id2357249\n"
+"help.text"
+msgid "r² = RSQ(LN(Data_Y);LN(Data_X))"
+msgstr "r² = RSQ(LN(Deetaa_Y);LN(Deetaa_X))"
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"hd_id9204077\n"
+"help.text"
+msgid "Constraints"
+msgstr "Gahuu dhabu'u"
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id7393719\n"
+"help.text"
+msgid "The calculation of the trend line considers only data pairs with the following values:"
+msgstr "Herregiin sarara adeemsa kan inni qabbattu deetaa lammee fi gatii kan gadiiti:"
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id7212744\n"
+"help.text"
+msgid "logarithm regression: only positive x-values are considered,"
+msgstr "Dadhabbii logaarizimii: gatii-X daballa qoofaatu illalama,"
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id1664479\n"
+"help.text"
+msgid "exponential regression: only positive y-values are considered,"
+msgstr "Dadhabbiin expoonentialii: gatii-y daballa qoofaatu illalama,"
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id8734702\n"
+"help.text"
+msgid "power regression: only positive x-values and positive y-values are considered."
+msgstr "dadhabbii humna: gatii-x fi gatii-y qoofaatu illalama."
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id181279\n"
+"help.text"
+msgid "You should transform your data accordingly; it is best to work on a copy of the original data and transform the copied data."
+msgstr "Deetaa kee akkaata knan gadiiti muuxata;galragalcha deetaa issa durtii garii deetaa issa garagalchaa irrati muuxatau."
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"hd_id7907040\n"
+"help.text"
+msgid "The polynomial regression equation"
+msgstr "Sorooroo dadhabbiin polonoomialii qixxaatoo"
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id8918729\n"
+"help.text"
+msgid "A <emph>polynomial regression</emph> curve cannot be added automatically. You must calculate this curve manually."
+msgstr "A <emph>dadhabbii polonoomialii</emph> qonyoon ofumman ida'uun hin danda'amu. Qonyoo kana dirqaaman hujeekan herregu."
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id33875\n"
+"help.text"
+msgid "Create a table with the columns x, x², x³, … , xⁿ, y up to the desired degree n."
+msgstr "Gabatee tarjaa waliin uummi x, x², x³, … , xⁿ, y hangaa digirii n barbachiisa ta'e ti."
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id8720053\n"
+"help.text"
+msgid "Use the formula <item type=\"literal\">=LINEST(Data_Y,Data_X)</item> with the complete range x to xⁿ (without headings) as Data_X."
+msgstr "Foormulaa kana fayyadamii <item type=\"literal\">=LINEST(Data_Y,Data_X)</item> hangii guutuun x garra xⁿ (Mataduree ottu hin qabattiin) akka Deetaa_X."
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id5068514\n"
+"help.text"
+msgid "The first row of the LINEST output contains the coefficients of the regression polynomial, with the coefficient of xⁿ at the leftmost position."
+msgstr "Tarree issa tokkoffaa LIINESTII bahaan kan inni qabbattu fuldurre dadhabbii polonoomialii, fuldurre dhan xⁿ garra qubannoo bitaa ti."
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id8202154\n"
+"help.text"
+msgid "The first element of the third row of the LINEST output is the value of r². See the <link href=\"text/scalc/01/04060107.xhp#Section8\">LINEST</link> function for details on proper use and an explanation of the other output parameters."
+msgstr "Maalimaa tokkoffaa issa tarree saddaffa LINESTII gatiin issa kan bahaa r². Ilaali <link href=\"text/scalc/01/04060107.xhp#Section8\">LINESTII</link> dalaga bal'inan iddo barbachiisa ti ulaaga fi hiikaa bahaa kan biroo waliin fayyadamu."
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id4562211\n"
+"help.text"
+msgid "<link href=\"text/schart/01/04050000.xhp\">Y Error Bars tab page</link>"
+msgstr "<link href=\"text/schart/01/04050000.xhp\">Fuula caancala kabala dogongoraa Y </link>"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
"tit\n"
"help.text"
-msgid "Arrangement"
-msgstr "Qindaa'ina"
+msgid "Options"
+msgstr "Filmaata"
-#: 05120000.xhp
+#: 04060000.xhp
msgctxt ""
-"05120000.xhp\n"
-"hd_id3159153\n"
+"04060000.xhp\n"
+"bm_id3149400\n"
+"help.text"
+msgid "<bookmark_value>aligning; 2D charts</bookmark_value> <bookmark_value>charts; aligning</bookmark_value> <bookmark_value>pie charts;options</bookmark_value>"
+msgstr "<bookmark_value>hiriirsuu; taattoo Garlammee</bookmark_value> <bookmark_value>taattoo; hiriirsuu</bookmark_value> <bookmark_value>taatto deloo;dirqala</bookmark_value>"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3149400\n"
"1\n"
"help.text"
-msgid "<link href=\"text/schart/01/05120000.xhp\" name=\"Arrangement\">Arrangement</link>"
-msgstr "<link href=\"text/schart/01/05120000.xhp\" name=\"Arrangement\">Qindaa'ina</link>"
+msgid "<link href=\"text/schart/01/04060000.xhp\" name=\"Options\">Options</link>"
+msgstr "<link href=\"text/schart/01/04060000.xhp\" name=\"Options\">Dirqala</link>"
-#: 05120000.xhp
+#: 04060000.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3145750\n"
+"04060000.xhp\n"
+"par_id3155067\n"
"2\n"
"help.text"
-msgid "Allows you to modify the order of the data series already set in the chart."
-msgstr "Tartiiba walfaannee deetaa taattoo keessatti dursee qindeeffame fooyyessuuf eeyyama."
+msgid "Use this dialog to define some options that are available for specific chart types. The contents of the Options dialog vary with the chart type."
+msgstr "Qaaqaa kana fayyadamuun hiika dirqala akaakuu taattoo murta'ee ti mul'at. Qabiyyeen qaaqa dirqala akaakuu taattoo wajjiin garra garrumma qaba."
-#: 05120000.xhp
+#: 04060000.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3155411\n"
-"8\n"
+"04060000.xhp\n"
+"hd_id3150043\n"
+"9\n"
"help.text"
-msgid "The position of the data in the data table remains unchanged. You can only choose the commands after inserting a chart in $[officename] Calc."
-msgstr "Qabannoon deetaa gabatee deetaa keessatti osoo hin jijjiiramin hafa. Ajaja taattoo $[officename] Calc keessattii erga suuqxeen booda filachuu dandeessa."
+msgid "Align data series to:"
+msgstr "Walfaannee deetaa garra kanati hiriirsii:"
-#: 05120000.xhp
+#: 04060000.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3154757\n"
+"04060000.xhp\n"
+"par_id3145228\n"
+"10\n"
+"help.text"
+msgid "In this area you can choose between two Y axis scaling modes. The axes can only be scaled and given properties separately."
+msgstr "Iddo kana ti siiqqee Y haalata hammamteessa lammanii giddu jiru fili. Siiqqee kana hammamteessi ti amala adda addaa keni."
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3147346\n"
+"4\n"
+"help.text"
+msgid "Primary Y axis"
+msgstr "Siiqqee Y issa tokkoffaa"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3147005\n"
+"15\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_1\">This option is active as default. All data series are aligned to the primary Y axis.</ahelp>"
+msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_1\">This option is active as default. All data series are aligned to the primary Y axis.</ahelp>"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3143221\n"
"5\n"
"help.text"
-msgid "This function is only available if you have data displayed in columns. It is not possible to switch to data display in rows."
-msgstr "Faankishiniin kun kan jiraatu yoo deetaan torree irratti mul'ate qofa. Deetaa tarreen jiru jijjiiruun hin danda'amu."
+msgid "Secondary Y axis"
+msgstr "siiqqee Y lammataa"
-#: 05120000.xhp
+#: 04060000.xhp
msgctxt ""
-"05120000.xhp\n"
-"hd_id3147339\n"
-"3\n"
+"04060000.xhp\n"
+"par_id3154656\n"
+"11\n"
"help.text"
-msgid "Bring Forward"
-msgstr "Fuulduraatti Fiduu"
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_2\">Changes the scaling of the Y axis. This axis is only visible when at least one data series is assigned to it and the axis view is active.</ahelp>"
+msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_2\">Changes the scaling of the Y axis. This axis is only visible when at least one data series is assigned to it and the axis view is active.</ahelp>"
-#: 05120000.xhp
+#: 04060000.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3149259\n"
+"04060000.xhp\n"
+"hd_id3166423\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\".uno:Forward\">Brings the selected data series forward (to the right).</ahelp>"
-msgstr "<ahelp hid=\".uno:Forward\">Walfakkannee deetaa filamee fulduratti fidi (gara mirgaatti).</ahelp>"
+msgid "Settings"
+msgstr "Ijaarsa"
-#: 05120000.xhp
+#: 04060000.xhp
msgctxt ""
-"05120000.xhp\n"
-"hd_id3146316\n"
-"4\n"
+"04060000.xhp\n"
+"par_id3150365\n"
+"12\n"
"help.text"
-msgid "Send Backward"
-msgstr "Duubatti Ergi"
+msgid "Define the settings for a bar chart in this area. Any changes apply to all data series of the chart, not to the selected data only."
+msgstr "Define the settings for a bar chart in this area. Any changes apply to all data series of the chart, not to the selected data only."
-#: 05120000.xhp
+#: 04060000.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3147001\n"
+"04060000.xhp\n"
+"hd_id3145584\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\".uno:Backward\">Sends the selected data series backward (to the left).</ahelp>"
-msgstr "<ahelp hid=\".uno:Backward\">Walfaannee deetaa filamee duubatti ergi(gara bitaatti).</ahelp>"
+msgid "Spacing"
+msgstr "Addaan Fageenya"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3155376\n"
+"13\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_GAP\">Defines the spacing between the columns in percent.</ahelp> The maximal spacing is 600%."
+msgstr "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_GAP\">Addaan fageenya giddu lammen tarjaa dhibbeentaan qindeessu.</ahelp> Addaan fageenyi olaa kun 600%."
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3145384\n"
+"8\n"
+"help.text"
+msgid "Overlap"
+msgstr "Walirra"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3156447\n"
+"14\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_OVERLAP\">Defines the necessary settings for overlapping data series.</ahelp> You can choose between -100 and +100%."
+msgstr "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_OVERLAP\">Defines the necessary settings for overlapping data series.</ahelp> You can choose between -100 and +100%."
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3153305\n"
+"16\n"
+"help.text"
+msgid "Connection Lines"
+msgstr "Sararoota walindhaa"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3148868\n"
+"17\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_OPTIONS:CB_CONNECTOR\">For \"stacked\" and \"percent\" column (vertical bar) charts, mark this check box to connect the column layers that belong together with lines.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_OPTIONS:CB_CONNECTOR\"> \"stacked\" fi \"percent\" tiif tattoo tarjaa( kabala dalgoo), sanduuqa mirkaneessaa kana erga mallattessite booda baqaana tarjaa walitti hidhii kan sararaan wal fakkatu waliin.</ahelp>"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id9842219\n"
+"help.text"
+msgid "Show bars side by side"
+msgstr "Kabaloota moggaa moggaadhaan agarsiisi"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id9800103\n"
+"help.text"
+msgid "If two axes are shown in a bar chart, and some data series are attached to the first axis, while some other data series are attached to the second axis, then both sets of data series are shown independently, overlapping each other."
+msgstr "Yoo siiqqonni taattoo keessatti agarsiifaman fi walfaanneen deetaa siiqqonnitti tokkoffatti miilta'e, karaa biroon immoo walfakkannen deetaa siiqqoo lammaffaatti milta'u, walfakkaanneen deetaa lamaanuu gargar agarsiifamamii tokkoon tokkoo isaaniis wal'irra ta'u."
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id2144535\n"
+"help.text"
+msgid "As a result, bars attached to the first y-axis are partly or completely hidden by bars attached to the second y-axis. To avoid this, enable the option to display bars side by side. <ahelp hid=\".\">The bars from different data series are shown as if they were attached only to one axis.</ahelp>"
+msgstr "Akka bu'aatti, kabalaan siilloo y ti miilta'e walakkaan isaa ykn gutummaan guututti kabala siilloo y isa lammaffaadhaan dhokata. Kana dhorkuuf, moggaa moggadhaan filannoon akka mul'atu taasisi. <ahelp hid=\".\">Yoo siilloon tokko qofa irraatti miilta'e kabalaan walfaanee garaagaraa ni agarsiifamu.</ahelp>"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id24414\n"
+"help.text"
+msgid "Clockwise direction"
+msgstr "Faallee sa'aatii"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id2527237\n"
+"help.text"
+msgid "Available for pie and donut charts. <ahelp hid=\".\">The default direction in which the pieces of a pie chart are ordered is counterclockwise. Enable the <emph>Clockwise direction</emph> checkbox to draw the pieces in opposite direction.</ahelp>"
+msgstr "Taattoo deeloo fi donutii tiif ni jira. <ahelp hid=\".\">Kallattiin durtii biilee taattoo deeloo itti qindaa'e kallattii sa'aatitiini <emph>Faallee sa'aatii </emph> haalojii dandeesisi kallattii biilee faallaan kaasuuf.</ahelp>"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id401013\n"
+"help.text"
+msgid "Starting angle"
+msgstr "Kofa jalqabaa"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id761131\n"
+"help.text"
+msgid "<ahelp hid=\".\">Drag the small dot along the circle or click any position on the circle to set the starting angle of a pie or donut chart. The starting angle is the mathematical angle position where the first piece is drawn. The value of 90 degrees draws the first piece at the 12 o'clock position. A value of 0 degrees starts at the 3 o'clock position.</ahelp>"
+msgstr "<ahelp hid=\".\">Tuqaa xiqqaa karaa geengootiin harkisi yookan geengoo irratti qabannoo kamiiyyuu cuqaasi kofa jalqabaa kan deeloo yookan donutii taattoo qindeessuuf. Kofni jalqabaa qabannoo kofa herreeguu ti kan biileen irraa kaafamu. Gatiin diigrii 90 qabannoo sa'aatii 12 citaa tokkoffaa kaasa. Gatiin diigrii qabduu sa'aa 3 irraa eegala.</ahelp>"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id553910\n"
+"help.text"
+msgid "In 3D pie and donut charts that were created with older versions of the software, the starting angle is 0 degrees instead of 90 degrees. For old and new 2D charts the default starting angle is 90 degrees."
+msgstr "Taattoo deeloo fi donuutii 3D keessatti kan mosajjii fooyyeen isaa duraanii ta'een uumama. Kofni jalqabaa diigrii 0 bakka diigrii 90. Taattoo haraa fi duraanii kan 2D durtii kofni diigrii jalqabaa 90."
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id1414838\n"
+"help.text"
+msgid "When you change the starting angle or the direction, only current versions of the software show the changed values. Older versions of the software display the same document using the default values: Always counterclockwise direction and a starting value of 90 degrees (2D pie charts) or 0 degrees (3D pie charts)."
+msgstr "Yommuu kofa jalqabaa yookan kallattii jijjiirtu, mosajjii fooyyee ammaa gatii jijjiirama qofa agarsiiisa. Fooyyeen mosajjii duraanii galmee walfakkaatu gatii durtii fayyadamuun agarsiisa. Yeroo hunda kallattiin sa'aatii fi gatii jalqabaa diigrii (taattoo deeloo 2D) yookan diigrii 0(taattoo deeloo 3D) dha."
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3179723\n"
+"help.text"
+msgid "Degrees"
+msgstr "Diigrii"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id2164067\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the starting angle between 0 and 359 degrees. You can also click the arrows to change the displayed value.</ahelp>"
+msgstr "<ahelp hid=\".\">Kofa jalqabaa diigrii 0 fi 359 gidduu jiru galchi. Gatii agarsiifame jijjiiruuf xiyya cuqaasuu dandeessa.</ahelp>"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id0305200910524613\n"
+"help.text"
+msgid "Plot missing values"
+msgstr "Gatiiwwan hin jirre hojjadhu"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id0305200910524650\n"
+"help.text"
+msgid "Sometimes values are missing in a data series that is shown in a chart. You can select from different options how to plot the missing values. The options are available for some chart types only."
+msgstr "Walfaannee deetaa taattoo keessatti mul'ifamu keessaa takka takka gatiiwwan deetaa baduu danda'u. Gatiiwwan hin jirre kana akkatti hojjettu baruuf dirqaalee hedduu keessaa filachuu dandeessa. Gosawwan taattoo qofaaf dirqaaleen kun ni jiraatu."
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id0305200910524823\n"
+"help.text"
+msgid "Leave gap"
+msgstr "Addaan fageenya hambisi"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id0305200910524811\n"
+"help.text"
+msgid "<ahelp hid=\".\">For a missing value, no data will be shown. This is the default for chart types Column, Bar, Line, Net.</ahelp>"
+msgstr "<ahelp hid=\".\">Gatii hinjirreef, deetaan homtuu hin agarsiifamu. Kun durtii gosawwan taattooti Tarjaa, Kabala, Sarara, Culqee.</ahelp>"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id0305200910524811\n"
+"help.text"
+msgid "Assume zero"
+msgstr "Zeeroo fudhu"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id030520091052489\n"
+"help.text"
+msgid "<ahelp hid=\".\">For a missing value, the y-value will be shown as zero. This is the default for chart type Area.</ahelp>"
+msgstr "<ahelp hid=\".\">Gatii hin jirreef, gatiin-y akka zeerootti agarsiifama. Kun naannoo gosa taattoof durtii dha.</ahelp>"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id0305200910524837\n"
+"help.text"
+msgid "Continue line"
+msgstr "Sarara itti fufi"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id0305200910524938\n"
+"help.text"
+msgid "<ahelp hid=\".\">For a missing value, the interpolation from the neighbor values will be shown. This is the default for chart type XY.</ahelp>"
+msgstr "<ahelp hid=\".\">Gatii hin jirreef, tilmaamni gatiiwwan bukkee irraa ni argama. Gosa taattoo XY tiif kun durtii dha.</ahelp>"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id0305200910524937\n"
+"help.text"
+msgid "Include values from hidden cells"
+msgstr "Gatiiwwan mandheewwan dhokatan irraa dabali"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id030520091052494\n"
+"help.text"
+msgid "<ahelp hid=\".\">Check to also show values of currently hidden cells within the source cell range.</ahelp>"
+msgstr "<ahelp hid=\".\">Gatiiwwan maandheewwan ammee hangii mandhee maddaa keessa dhokatanii jiran agarsiisuuf mirkaneessi.</ahelp>"
#: 04070000.xhp
msgctxt ""
@@ -1767,754 +2305,321 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_Z_HELP\">Adds gridlines that subdivide the Z axis into smaller sections.</ahelp> This option is only available if you're working with 3D charts."
msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_Z_HELP\">Sarara tarsaa kan qoqoodama siilloo Z gara kutaa xixxiqaati ida'a..</ahelp> Filannoon kun kan dalagu yoo taattoo 3D hojjette qofa."
-#: 05040100.xhp
+#: 05010000.xhp
msgctxt ""
-"05040100.xhp\n"
+"05010000.xhp\n"
"tit\n"
"help.text"
-msgid "Axes"
-msgstr "Siiqqota"
+msgid "Format Selection"
+msgstr "Filannoo Dhangii"
-#: 05040100.xhp
+#: 05010000.xhp
msgctxt ""
-"05040100.xhp\n"
-"bm_id3153768\n"
+"05010000.xhp\n"
+"bm_id3149666\n"
"help.text"
-msgid "<bookmark_value>axes;formatting</bookmark_value>"
-msgstr "<bookmark_value>axes;formatting</bookmark_value>"
+msgid "<bookmark_value>objects;properties of charts</bookmark_value><bookmark_value>charts; properties</bookmark_value><bookmark_value>properties;charts</bookmark_value>"
+msgstr "<bookmark_value>wanta; amala taattoo</bookmark_value><bookmark_value>taattoo; amala</bookmark_value><bookmark_value>amala;taattoo</bookmark_value>"
-#: 05040100.xhp
+#: 05010000.xhp
msgctxt ""
-"05040100.xhp\n"
-"hd_id3153768\n"
+"05010000.xhp\n"
+"hd_id3149666\n"
"1\n"
"help.text"
-msgid "Axes"
-msgstr "Siiqqota"
+msgid "Format Selection"
+msgstr "Filannoo Dhangii"
-#: 05040100.xhp
+#: 05010000.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_id3154319\n"
+"05010000.xhp\n"
+"par_id3156284\n"
"2\n"
"help.text"
-msgid "<variable id=\"achsen\"><ahelp hid=\".uno:DiagramAxisAll\">Opens a dialog, where you can edit the properties of the selected axis.</ahelp></variable> The name of the dialog depends on the selected axis."
-msgstr "<variable id=\"achsen\"><ahelp hid=\".uno:DiagramAxisAll\">Qaaqa bani, amala siilloo filamee iddoo itti gulaaltu.</ahelp></variable> Maqaan qaaqaa siilloo filatame irratti hundaa'a."
+msgid "<variable id=\"objekteigenschaften\"><ahelp hid=\".\">Formats the selected object.</ahelp></variable> Depending on the object selected, the command opens dialogs that you can also open by choosing the following commands from the <emph>Format</emph> menu:"
+msgstr "<variable id=\"objekteigenschaften\"><ahelp hid=\".\">Wanta filatame dhangeessi.</ahelp></variable> Wanta filatame irratti hundaa'uun, ajajni qaaqa banama kan malees ajaja kana baafata fayyadamuun <emph>Dhangii</emph> banuu dandeessa."
-#: 05040100.xhp
+#: 05010000.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_id3149667\n"
+"05010000.xhp\n"
+"hd_id3153418\n"
"3\n"
"help.text"
-msgid "The <link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">Y axis</link> has an enhanced dialog. For X-Y charts, the X axis chart is also enhanced by the <link href=\"text/schart/01/05040201.xhp\" name=\"Scaling\"><emph>Scaling</emph></link> tab."
-msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">Siilloo Y</link>qaaqan gargaarsaa qaba.Taattoo Siilloo X-Y , taattoon siilloo X gargaarsa qaba. <link href=\"text/schart/01/05040201.xhp\" name=\"Scaling\"><emph>Safaru</emph></link> caancala."
+msgid "<link href=\"text/schart/01/05060000.xhp\" name=\"Chart Wall\">Chart Wall</link>"
+msgstr "<link href=\"text/schart/01/05060000.xhp\" name=\"Chart Wall\">Daaggoo Taattoo</link>"
-#: 05040100.xhp
+#: 05010000.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_id3159266\n"
+"05010000.xhp\n"
+"hd_id3155766\n"
"4\n"
"help.text"
-msgid "Scaling the X axis is only possible in the X-Y chart type."
-msgstr "Siilloo X safaruun gosa taattoo X-Y qofaan danda'ama."
+msgid "<link href=\"text/schart/01/05080000.xhp\" name=\"Chart Area\">Chart Area</link>"
+msgstr "<link href=\"text/schart/01/05080000.xhp\" name=\"Chart Area\">Bal'ina Taattoo</link>"
-#: 05040100.xhp
+#: 05010000.xhp
msgctxt ""
-"05040100.xhp\n"
-"hd_id3145230\n"
+"05010000.xhp\n"
+"hd_id3154255\n"
"5\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Arfii</link>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"tit\n"
-"help.text"
-msgid "3D View"
-msgstr "3d Ilaala"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"bm_id3156423\n"
-"help.text"
-msgid "<bookmark_value>3D charts</bookmark_value> <bookmark_value>charts; 3D views</bookmark_value> <bookmark_value>illumination; 3D charts</bookmark_value>"
-msgstr "<bookmark_value>taatoota 3D</bookmark_value> <bookmark_value>taatoota; mul'attoota 3D</bookmark_value> <bookmark_value>Calaqqee; taatoota 3D</bookmark_value>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"hd_id3464461\n"
-"help.text"
-msgid "<variable id=\"three_d_view\"><link href=\"text/schart/01/three_d_view.xhp\">3D View</link></variable>"
-msgstr "<variable id=\"three_d_view\"><link href=\"text/schart/01/three_d_view.xhp\">Ilaala 3D </link></variable>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id6998809\n"
-"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> or in the context menu of a chart you can choose a chart type. <ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to edit the properties of a three dimensional view for Column, Bar, Pie, and Area charts. For Line and XY (Scatter) charts you can see 3D lines.</ahelp>"
-msgstr "Fuula jalqabaa irratti <link href=\"text/schart/01/wiz_chart_type.xhp\">Masaka Toottoo</link> Taattoo baafata dubbii hallee keessatti akaakuu taattoo filachuu dandeessa. <ahelp hid=\".\" visibility=\"hidden\">Torree ilaalcha fuulsadee, kabala, deloo, fi bali'ina taattoo. Sarara fi XY(faca'iinsa) taattoo sarara 3D ilaaluu dandeessa.</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id6942045\n"
-"help.text"
-msgid "The chart preview responds to the new settings that you enter in the dialog."
-msgstr "Durargii taattoo qindaa'ina isa haraa qaaqaa kessatti galchitee gabaasa."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id3806878\n"
-"help.text"
-msgid "When you leave the dialog with OK, the settings are applied permanently."
-msgstr "Yoo qaaqa TOLE jette kessaa baate qindaa'inni yeroo hundaaf fayyada."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id130619\n"
-"help.text"
-msgid "When you leave the dialog with Cancel or Escape, the chart returns to the state when you opened the dialog."
-msgstr "Yoo qaaqa dhiistee yookan irra utaalte kessaa baate, taattoon haalatti deebi'a yoo ati qaaqa bantu."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id8081911\n"
-"help.text"
-msgid "For a 3D chart you can choose <item type=\"menuitem\">Format - 3D View</item> to set perspective, appearance and illumination."
-msgstr "Taattoo 3D dhaaf <item type=\"menuitem\">Dhangii - Ilaaloo 3D </item> filachuun kaadhima, argamsaa fi calaqqee qindeessuu dandeessa."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"hd_id2924283\n"
-"help.text"
-msgid "Perspective"
-msgstr "Tilmaamuu"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id5781731\n"
-"help.text"
-msgid "Enter the values for rotation of the chart on the three axes and for a perspective view."
-msgstr "Gatii marsaa taattootiif siiqqoo sadee irratti fi tilmaama mil'annoo galchi."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id9999694\n"
-"help.text"
-msgid "Set all angles to 0 for a front view of the chart. Pie charts and donut charts are shown as circles."
-msgstr "Kofa hunda 0 tti taattoo mul'anno fuldurattif qindeessi.Taattoo deloo fi taattoo donuutii akka geengootti agarsiifamu."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id2861720\n"
-"help.text"
-msgid "With Right-angled axes enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders."
-msgstr "Siiqqota gara mirgaa waliin hojjeta, qabiyyee taattoo kallattii X fi Y kessatti marsuu dandeessa, innis daangaa taattootiin walmaddii dha."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id2216559\n"
-"help.text"
-msgid "An x value of 90, with y and z set to 0, provides a view from top down to the chart. With x set to -90, you see the bottom of the chart."
-msgstr "Gatiin x inni 90 y fi z waliin 0 tti qindaa'uun, mul'ata gubba gara jala taattootti agarsiisa. Gara jala taattoo x waliin -90 qindaa'e argita."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id7869502\n"
-"help.text"
-msgid "The rotations are applied in the order first x, then y, last z."
-msgstr "Marsaan tartiiba dura x, itti aanee y, dhuma irratti z fayyadama."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id9852900\n"
-"help.text"
-msgid "When shading is enabled and you rotate a chart, the lights are rotated as if they are fixed to the chart."
-msgstr "Yoo gadideessuun hojate fi taattoo marsite fi yoo ifni taattootti murataa'e ifni ni marsama."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id2578203\n"
-"help.text"
-msgid "The rotation axes always relate to the page, not to the chart's axes. This is different from some other chart programs."
-msgstr "Siiqqonni marsaa yeroo hunda fuula walitti foraa'a, taattoo siiqqotaati miti."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id4923245\n"
-"help.text"
-msgid "Select the Perspective check box to view the chart in central perspective as through a camera lens instead of using a parallel projection."
-msgstr "Tilmaama haalhojii tattoo filadhu tilmaama keessaa akka doo'atuuf fakkaftuu mul'istu fayyadami iddoo karoortii walmaddii fayyadamuun."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id3416547\n"
-"help.text"
-msgid "Set the focus length with the spin button. 100% gives a perspective view where a far edge in the chart looks approximately half as big as a near edge."
-msgstr "Dheerina xiyyeffanna qabduu qaanxii waliin qindeessi. 100% tilmaama mul'ataa kenna yommuu afoon fagoo guddinni taattoo tilmaaman walakka afoo cinaa fakkaatu."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id3791924\n"
-"help.text"
-msgid "Older versions of %PRODUCTNAME cannot display the percentage of perspective the same way as the current version."
-msgstr "Fooyyeen durattii %PRODUCTNAME kan agarsiisa paarsantii tilmaamaa foyyee ammee waliin tokko ta'e."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id7623828\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">If Right-angled axes is enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders. Right-angled axes is enabled by default for newly created 3D charts. Pie and Donut charts do not support right-angled axes.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Yoo kofni mirgaa dalage,qabiyyee taattoo kallattii X fi Y qofatti marsuu dandeessa. Innis,walmaddii daangaa taattootti. Siiqqoon kofa sirrii durtiin taattoo haraa 3D dhaan uumame dandeesifama . Deloo fi Donuutiin siiqqota kofa sirrii hin deegarani.</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id4721823\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the x axis. The preview responds to the new settings.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Marsaa taattoo siilloo x irratti qindeessi. Durargiin qindaa'ina haraaf gabaasa.</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id5806756\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the y axis. The preview responds to the new settings.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Marsaa taattoo siilloo y irratti qindeessi. Durargiin qindaa'ina haraaf gabaasa.</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id8915372\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the z axis. The preview responds to the new settings.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Marsaa taattoo siilloo z irratti qindeessi. Durargiin qindaa'ina haraaf gabaasa.</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id6070436\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Mark the Perspective box to view the chart as through a camera lens. Use the spin button to set the percentage. With a high percentage nearer objects look bigger than more distant objects.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Sanduuqa itti aanee dhufu doo'innee fakkaftuu keessatti mul'isuuf mallattoo itti godhi. Paarsanteejii qindeessuuf qaanxii qabduu fayyadamai. Paarsanteejii baay'een wanti dhiyoo jiru wanta fagoo jiru irra guddaa fakkaata.</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"hd_id7564012\n"
-"help.text"
-msgid "Appearance"
-msgstr "Danaa"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id1186254\n"
-"help.text"
-msgid "Select a scheme from the list box."
-msgstr "Gurmoo sanduuqa tarree irraa filadhu."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id7432477\n"
-"help.text"
-msgid "By selecting a scheme, the check boxes and the light sources are set accordingly."
-msgstr "Gurmoo filachuun, sanduuqa filannoo fi maddi ifaa haalaa galuumsaan qindaa'u."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id7141026\n"
-"help.text"
-msgid "If you mark or unmark a combination of check boxes that is not given by the Realistic or Simple scheme, you create a Custom scheme."
-msgstr "Yoo makaa sanduuqa filannoo mallatteesite yookan mallatttessu baatte, gurmoo qabataman yookan gurmoo salphaan hin kennamu, gurmoo baratamaa uumta."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id1579027\n"
-"help.text"
-msgid "Mark <emph>Shading</emph> to use the Gouraud method for rendering the surface, otherwise a flat method is used."
-msgstr "Gaadideessuu <emph>Mallatteessi</emph> mala giraawundii haala irrataatiif fayyadami, yoo ta'uu baate malli batteetu faayyada."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id5624561\n"
-"help.text"
-msgid "The flat method sets a single color and brightness for each polygon. The edges are visible, soft gradients and spot lights are not possible."
-msgstr "Mallii batteen halluu baaqqee fi balqeessisaa pooligoonii hindaaf qindeessa."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id5901058\n"
-"help.text"
-msgid "The Gouraud method applies gradients for a smoother, more realistic look."
-msgstr "Malli giraawundii siimessa garagartoof fayyadama, baay'een qabatamaa fakkaata."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id8469191\n"
-"help.text"
-msgid "Mark <emph>Object Borders</emph> to draw lines along the edges."
-msgstr "Daangaa wantaa <emph>Mallateessi</emph> qarqara irratti sarara kaasuuf."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id4407483\n"
-"help.text"
-msgid "Mark <emph>Rounded Edges</emph> to smooth the edges of box shapes."
-msgstr "Qarqara kolboo <emph>Mallateessi</emph> qarqara boca sanduuqa siimessuuf."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id8531449\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a scheme from the list box, or click any of the check boxes below.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gurmoo sanduuqa tarree keessaa filadhu yookan sanduuqa filannoo gadii cuqaasi.</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id9183935\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies Gouraud shading if marked, or flat shading if unmarked.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Yoo mallatteffame gaadideessu giraaawundii fayyadami yookan yoo hin mallatteefamne gaadideessu battee fayyadami .</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id946684\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows borders around the areas by setting the line style to Solid.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Haala sararaa jajjabootti qindeessuun daangaa naannoo bal'inaa agarsiisa.</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id9607226\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Edges are rounded by 5%.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Qarqarri kolboo 5% marfama.</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"hd_id1939451\n"
-"help.text"
-msgid "Illumination"
-msgstr "Calaqqee"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id9038972\n"
-"help.text"
-msgid "Set the light sources for the 3D view."
-msgstr "Mul'annoo 3D dhaaf madda ifaa qindeessi."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id6531266\n"
-"help.text"
-msgid "Click any of the eight buttons to switch a directed light source on or off."
-msgstr "Qabduu saddeettan keessaa ifa kallattii banuu yookan cufuu irraatti biliqsuuf cuqaasi."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id6173894\n"
-"help.text"
-msgid "By default, the second light source is switched on. It is the first of seven \"normal\", uniform light sources. The light source number one projects a specular light with highlights."
-msgstr "Durtiin maddi ifaa inni lammaffan ni biliqa. Innis tokkoffaa torban \"normal\" keessa madda ifaa walfakkaataniti.Maddi ifaa lakkofsa waajama tokkoo balqeessisuu ifaa shoola waliin ta'a."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id2761314\n"
-"help.text"
-msgid "For the selected light source, you can then choose a color and intensity in the list box just below the eight buttons. The brightness values of all lights are added, so use dark colors when you enable multiple lights."
-msgstr "Madda ifaa filameef, halluu filuu fi hamma saduuqa tarree keessatti qabduu saddetanii gadi ta'a. Gatiin balaqeessa'uu ifa hundaa ni ida'ama. Kanaafuu yoo ifa karaa baay'een dandeesiftu halluu dukkana'aa fayyadami."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id3912778\n"
-"help.text"
-msgid "The small preview inside this tab page has two sliders to set the vertical and horizontal position of the selected light source. The light source always aims to the middle of the object."
-msgstr "Durargii xiqqaan sarjaa fi surdala qabannoo qindeessuuf madda ifa filamee fuula caancalee keessatti islaayiderii lama qaba."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id3163853\n"
-"help.text"
-msgid "The button in the corner of the small preview switches the internal illumination model between a sphere and a cube."
-msgstr "Qabannoon xiyyoo durargii xiqqaa keessaa calaqqee gara keessaa halata mulullee fi kiyuubii gidduu agarsiisa."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id121158\n"
-"help.text"
-msgid "Use the Ambient light list box to define the ambient light which shines with a uniform intensity from all directions."
-msgstr "Saduuqa taree ifa baramaa fayyadamii ifa baramaa qindeessuuf kan kallattii hundaan irraa haala walfakkatan ifa ibsu."
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id2423780\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Drag the right slider to set the vertical height and direction of the selected light source.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Islaayidarii gara mirgaa harkisi dheerina sarjaa fi kallattii madda ifa filamee qindeessuuf.</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id2569658\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Drag the bottom slider to set the horizontal position and direction of the selected light source.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Islaayidarii gara jalaa harkisi qabannoo sardala fi kallattii madda ifa filamee qindeessuuf.</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id6394238\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to switch between an illumination model of a sphere or a cube.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gidduu halata calaqqee mulullee yookan kiyuubii jijjiiruuf cuqaasi.</ahelp>"
-
-#: three_d_view.xhp
-msgctxt ""
-"three_d_view.xhp\n"
-"par_id533768\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to enable or disable the specular light source with highlights.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Balaqqisuu madda ifaa shoola waliin dandeesisuuf yookan dhaamsuuf cuqaasi.</ahelp>"
+msgid "<link href=\"text/schart/01/05070000.xhp\" name=\"Chart Floor\">Chart Floor</link>"
+msgstr "<link href=\"text/schart/01/05070000.xhp\" name=\"Chart Floor\">Taattoo Lafaa</link>"
-#: three_d_view.xhp
+#: 05010000.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id7214270\n"
+"05010000.xhp\n"
+"hd_id3146313\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to enable or disable the uniform light source.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Madda ifaa walfakkaataa dandeesisuuf yookan dhaamsuuf cuqaasi.</ahelp>"
+msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Title\">Title</link>"
+msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Title\">Mataduree</link>"
-#: three_d_view.xhp
+#: 05010000.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id2186346\n"
+"05010000.xhp\n"
+"hd_id3150297\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color for the selected light source.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Madda ifaa filameef halluu fili.</ahelp>"
+msgid "<link href=\"text/schart/01/05030000.xhp\" name=\"Legend\">Legend</link>"
+msgstr "<link href=\"text/schart/01/05030000.xhp\" name=\"Legend\">Waayoo</link>"
-#: three_d_view.xhp
+#: 05010000.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id1331217\n"
+"05010000.xhp\n"
+"hd_id3143219\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color using the color dialog.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Qaaqa halluu fayyadamuun halluu fili.</ahelp>"
+msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"X Axis\">X Axis</link>"
+msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"X Axis\">Siilloo X</link>"
-#: three_d_view.xhp
+#: 05010000.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id393993\n"
+"05010000.xhp\n"
+"hd_id3150207\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color for the ambient light.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ifa baramaaf halluu fili.</ahelp>"
+msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Y Axis\">Y Axis</link>"
+msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Y Axis\">Siilloo Y</link>"
-#: three_d_view.xhp
+#: 05010000.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id5871761\n"
+"05010000.xhp\n"
+"hd_id3166432\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color using the color dialog.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Qaaqa halluu fayyadamuun halluu fili.</ahelp>"
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Grid\">Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Grid\">Tarsaa</link>"
-#: 05040202.xhp
+#: 05010100.xhp
msgctxt ""
-"05040202.xhp\n"
+"05010100.xhp\n"
"tit\n"
"help.text"
-msgid "Positioning"
-msgstr "Qubachiisuu"
-
-#: 05040202.xhp
-msgctxt ""
-"05040202.xhp\n"
-"bm_id3150869\n"
-"help.text"
-msgid "<bookmark_value>positioning; axes</bookmark_value><bookmark_value>charts;positioning axes</bookmark_value><bookmark_value>X axes;positioning</bookmark_value><bookmark_value>Y axes;positioning</bookmark_value><bookmark_value>axes;interval marks</bookmark_value>"
-msgstr "<bookmark_value>qubachiisuu; siiqqeewwan</bookmark_value><bookmark_value>taaattoowwan;siiqqeewwan qubachiisuu</bookmark_value><bookmark_value>siiqqeewwan X;qubachiisuu</bookmark_value><bookmark_value>siiqqeewwan Y;qubachiisuu</bookmark_value><bookmark_value>siiqqeewwan;mallattoowwan giddu'u</bookmark_value>"
+msgid "Data Point"
+msgstr "Akeeki Deetaa"
-#: 05040202.xhp
+#: 05010100.xhp
msgctxt ""
-"05040202.xhp\n"
-"hd_id3150868\n"
+"05010100.xhp\n"
+"hd_id3153768\n"
"1\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040202.xhp\" name=\"positioning\">Positioning</link>"
-msgstr "<link href=\"text/schart/01/05040202.xhp\" name=\"positioning\">qubachiisuu</link>"
+msgid "<link href=\"text/schart/01/05010100.xhp\" name=\"Data Point\">Data Point</link>"
+msgstr "<link href=\"text/schart/01/05010100.xhp\" name=\"Data Point\">Akeeki Deetaa</link>"
-#: 05040202.xhp
+#: 05010100.xhp
msgctxt ""
-"05040202.xhp\n"
-"par_id3154013\n"
+"05010100.xhp\n"
+"par_id3152577\n"
"2\n"
"help.text"
-msgid "Controls the positioning of the axis."
-msgstr "Qubachiisa siiqqeewwanii to'ata."
-
-#: 05040202.xhp
-msgctxt ""
-"05040202.xhp\n"
-"hd_id1006200801024782\n"
-"help.text"
-msgid "Axis line"
-msgstr "sarara siiqqee"
-
-#: 05040202.xhp
-msgctxt ""
-"05040202.xhp\n"
-"par_id1006200801024970\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select where to cross the other axis: at start, at end, at a specified value, or at a category.</ahelp>"
-msgstr "<ahelp hid=\".\">Bakka itti siiqqee biroo qaxxaamuru filadhu: jalqabarratti, dhumarratti, gatii ifteessamerratti, ykn akaakuurratti.</ahelp>"
-
-#: 05040202.xhp
-msgctxt ""
-"05040202.xhp\n"
-"par_id1006200801024957\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value where the axis line should cross the other axis.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gatii iddoo sararri siiqqee kun itti siiqqee biroo itti qaxxaamuru qabu galchi.</ahelp>"
-
-#: 05040202.xhp
-msgctxt ""
-"05040202.xhp\n"
-"par_id100620080102503\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the category where the axis line should cross the other axis.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Iddootti sararri siiqqee siqqe birroo qaxaamuruu qabu akaakuu filadhu.</ahelp>"
-
-#: 05040202.xhp
-msgctxt ""
-"05040202.xhp\n"
-"hd_id100620080102509\n"
-"help.text"
-msgid "Labels"
-msgstr "Asxaawwan"
+msgid "This dialog allows you to change the properties of a selected data point. The dialog appears when there is only one data point selected when you choose <emph>Format - Format Selection</emph>. Some of the menu entries are only available for 2D or 3D charts."
+msgstr "Qaaqaan kun qaphxii deetaa filamee akka jijjiiramu eeyyama. Qaaqaan kun kan mul'atu gosni deetaa tokkoo qofti yoo filatamee yommuu ati <emph>Dhangii - Filannoo Dhangii</emph> filattu. Baafanni tokko tokko galfataa taatoo 2D yookan 3D dhaan qofa argama."
-#: 05040202.xhp
+#: 05010100.xhp
msgctxt ""
-"05040202.xhp\n"
-"hd_id1006200801523879\n"
+"05010100.xhp\n"
+"par_id3149121\n"
+"3\n"
"help.text"
-msgid "Place labels"
-msgstr "Asxaawwan qubachiisi"
+msgid "Any changes made only affect this one data point. For example, if you edit the color of a bar, only the color of that bar will be different."
+msgstr "Jijjiiramni uumamae kamiyyuu qaphxii deetaa tokkoo qofa miidha. Fakkeenyaaf, yoo halluu kabala gulaalte halluu kabalaa qofatu adda ta'a."
-#: 05040202.xhp
+#: 05010200.xhp
msgctxt ""
-"05040202.xhp\n"
-"par_id1006200801523889\n"
+"05010200.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">Select where to place the labels: near axis, near axis (other side), outside start, or outside end.</ahelp>"
-msgstr "<ahelp hid=\".\">Iddootti asxaawwan qubachiiftu filadhu: siiqqee bira, siiqqee bira (moggaa biraan), jalqaba alatti, ykn dhuma alatti.</ahelp>"
+msgid "Data Series"
+msgstr "Walfaannee Deetaa"
-#: 05040202.xhp
+#: 05010200.xhp
msgctxt ""
-"05040202.xhp\n"
-"hd_id1006200801025030\n"
+"05010200.xhp\n"
+"hd_id3150449\n"
+"1\n"
"help.text"
-msgid "Interval marks"
-msgstr "Mallattoowwan giddu'u"
+msgid "<link href=\"text/schart/01/05010200.xhp\" name=\"Data Series\">Data Series</link>"
+msgstr "<link href=\"text/schart/01/05010200.xhp\" name=\"Data Series\">Walfaannee Deetaa</link>"
-#: 05040202.xhp
+#: 05010200.xhp
msgctxt ""
-"05040202.xhp\n"
-"hd_id3149048\n"
-"65\n"
+"05010200.xhp\n"
+"par_id3145750\n"
+"2\n"
"help.text"
-msgid "Major:"
-msgstr "Buraalaa:"
+msgid "Use this to change the properties of a selected data series. This dialog appears when one data series is selected when you choose <emph>Format - Format Selection</emph>. Some of the menu entries are only available for 2D or 3D charts."
+msgstr "Amala walfaanee deetaa filamee jijjiiruuf kana fayyadami. Qaaqni kun kan mul'atu walfaanneen deetaa yoo filame <emph>Dhangii - Filannoo Dhangii</emph> yommu filatamu. Baafanni tokko tokko galfata taatoo 2D yookan 3D dhaan qofa argama."
-#: 05040202.xhp
+#: 05010200.xhp
msgctxt ""
-"05040202.xhp\n"
-"par_id3150397\n"
-"71\n"
+"05010200.xhp\n"
+"par_id3154015\n"
+"4\n"
"help.text"
-msgid "Specifies whether the marks are to be on the inner or outer side of the axis. It is possible to combine both: you will then see marks on both sides."
-msgstr "Yoo mallattoon gara keessa yookan gara alaa siillooti argamuu ibsa. Lachanuu walitti makuun ni danda'ama: Isaan booda mallattoo gara lamaanuttu argita."
+msgid "Any changes made here affect the entire data series. For example, if you change the color, all elements belonging to this data series will change color."
+msgstr "Jijjiiramni uumame kamiyyuu qaphxii deetaa tokkoo qofa miidha. Fakkeenyaaf, yoo halluu jijjiirte maalimni hundi kan deetaa walfaannee keessaa halluu jijjiira."
-#: 05040202.xhp
+#: 05010200.xhp
msgctxt ""
-"05040202.xhp\n"
-"hd_id3151387\n"
-"66\n"
+"05010200.xhp\n"
+"hd_id3146916\n"
+"3\n"
"help.text"
-msgid "Inner"
-msgstr "Keessoo"
+msgid "<link href=\"text/schart/01/04050000.xhp\" name=\"Y Error Bars\">Y Error Bars</link>"
+msgstr "<link href=\"text/schart/01/04050000.xhp\" name=\"Y Error Bars\">Kabala dogongoraa Y</link>"
-#: 05040202.xhp
+#: 05020000.xhp
msgctxt ""
-"05040202.xhp\n"
-"par_id3156399\n"
-"72\n"
+"05020000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_TICKS_INNER\">Specifies that marks are placed on the inner side of the axis.</ahelp>"
-msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_TICKS_INNER\"> Mallattoon gara keessa siillootti argamuu ibsa.</ahelp>"
+msgid "Title"
+msgstr "Mataduree"
-#: 05040202.xhp
+#: 05020000.xhp
msgctxt ""
-"05040202.xhp\n"
-"hd_id3166469\n"
-"67\n"
+"05020000.xhp\n"
+"bm_id3150791\n"
"help.text"
-msgid "Outer"
-msgstr "Ala"
+msgid "<bookmark_value>titles; formatting charts</bookmark_value><bookmark_value>formatting; chart titles</bookmark_value>"
+msgstr "<bookmark_value>titles; formatting charts</bookmark_value><bookmark_value>formatting; chart titles</bookmark_value>"
-#: 05040202.xhp
+#: 05020000.xhp
msgctxt ""
-"05040202.xhp\n"
-"par_id3153120\n"
-"73\n"
+"05020000.xhp\n"
+"hd_id3150791\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_TICKS_OUTER\">Specifies that marks are placed on the outer side of the axis.</ahelp>"
-msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_TICKS_OUTER\">Mallattoon gara moggaa ala siillootti argamuu ibsa.</ahelp>"
+msgid "<link href=\"text/schart/01/05020000.xhp\" name=\"Title\">Title</link>"
+msgstr "<link href=\"text/schart/01/05020000.xhp\" name=\"Title\">Mataduree</link>"
-#: 05040202.xhp
+#: 05020000.xhp
msgctxt ""
-"05040202.xhp\n"
-"hd_id3159128\n"
-"68\n"
+"05020000.xhp\n"
+"par_id3125863\n"
+"2\n"
"help.text"
-msgid "Minor:"
-msgstr "Muraalaa:"
+msgid "The<emph> Title </emph>menu command opens a submenu for editing the properties of the titles in the chart."
+msgstr "<emph> Mataduree </emph> jedhamu baafata ajajaa baafata birkoo amala mataduree taattoo keessatti gulaaluf."
-#: 05040202.xhp
+#: 05020000.xhp
msgctxt ""
-"05040202.xhp\n"
-"par_id3146885\n"
-"74\n"
+"05020000.xhp\n"
+"hd_id3155414\n"
+"3\n"
"help.text"
-msgid "This area is used to define the marking dashes between the axis marks. It is possible to activate both fields. This will result in a marking line running from the outside to the inside."
-msgstr "Bal'inni kun bakka duwwaa mallattoo siilloo gidduu jiru qindeessuuf gargaara. Dirreewwan lachuu kakaaasuun ni danda'ama. Kun kaasa sararaa gara alaatii gara keessatti mallatteefamuu mul'isa."
+msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Main title\">Main title</link>"
+msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Main title\">Guuma Mataduree</link>"
-#: 05040202.xhp
+#: 05020000.xhp
msgctxt ""
-"05040202.xhp\n"
-"hd_id3150654\n"
-"69\n"
+"05020000.xhp\n"
+"hd_id3156441\n"
+"4\n"
"help.text"
-msgid "Inner"
-msgstr "Keessoo"
+msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Subtitle\">Subtitle</link>"
+msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Subtitle\">Mataduree Birkoo</link>"
-#: 05040202.xhp
+#: 05020000.xhp
msgctxt ""
-"05040202.xhp\n"
-"par_id3146880\n"
-"75\n"
+"05020000.xhp\n"
+"hd_id3151073\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_HELPTICKS_INNER\">Specifies that minor interval marks are placed on the inner side of the axis.</ahelp>"
-msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_HELPTICKS_INNER\">Mallattoo gadaantoo orofaa siilloo moggaa gara keessaatti olka'amu ibsa.</ahelp>"
+msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"X-axis title\">X-axis title</link>"
+msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"X-axis title\">Mataduree siilloo-X</link>"
-#: 05040202.xhp
+#: 05020000.xhp
msgctxt ""
-"05040202.xhp\n"
-"hd_id3154677\n"
-"70\n"
+"05020000.xhp\n"
+"hd_id3154732\n"
+"6\n"
"help.text"
-msgid "Outer"
-msgstr "Ala"
+msgid "<link href=\"text/schart/01/05020200.xhp\" name=\"Y-axis title\">Y-axis title</link>"
+msgstr "<link href=\"text/schart/01/05020200.xhp\" name=\"Y-axis title\">Mataduree siilloo-Y</link>"
-#: 05040202.xhp
+#: 05020000.xhp
msgctxt ""
-"05040202.xhp\n"
-"par_id3150745\n"
-"76\n"
+"05020000.xhp\n"
+"hd_id3154017\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_HELPTICKS_OUTER\">Specifies that minor interval marks are placed on the outer side of the axis.</ahelp>"
-msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_HELPTICKS_OUTER\">Mallattoo gadaantoo orofaa siilloo moggaa gara alaatiin olka'amu ibsa.</ahelp>"
+msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Z-axis title\">Z-axis title</link>"
+msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Z-axis title\">Mataduree siilloo-Z</link>"
-#: 05040202.xhp
+#: 05020000.xhp
msgctxt ""
-"05040202.xhp\n"
-"hd_id1006200801025271\n"
+"05020000.xhp\n"
+"hd_id3153711\n"
+"8\n"
"help.text"
-msgid "Place marks"
-msgstr "Mallattoowwan qubachiisi"
+msgid "<link href=\"text/schart/01/05020200.xhp\" name=\"All titles\">All titles</link>"
+msgstr "<link href=\"text/schart/01/05020200.xhp\" name=\"All titles\">Mataduree Hunda</link>"
-#: 05040202.xhp
+#: 05020100.xhp
msgctxt ""
-"05040202.xhp\n"
-"par_id1006200801025278\n"
+"05020100.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">Select where to place the marks: at labels, at axis, or at axis and labels.</ahelp>"
-msgstr "<ahelp hid=\".\">Mallattoowwan bakka qubachiisuu barbaaddu filadhu: asxaawwan irratti, siiqqeewwan irratti, ykn siiqqeewwanii fi asxaawwan irratti.</ahelp>"
+msgid "Title"
+msgstr "Mataduree"
-#: 05070000.xhp
+#: 05020100.xhp
msgctxt ""
-"05070000.xhp\n"
-"tit\n"
+"05020100.xhp\n"
+"bm_id3150769\n"
"help.text"
-msgid "Chart Floor"
-msgstr "Taattoo Dilgatoo"
+msgid "<bookmark_value>editing; titles</bookmark_value>"
+msgstr "<bookmark_value>editing; titles</bookmark_value>"
-#: 05070000.xhp
+#: 05020100.xhp
msgctxt ""
-"05070000.xhp\n"
-"bm_id3154346\n"
+"05020100.xhp\n"
+"hd_id3150769\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>charts; formatting floors</bookmark_value><bookmark_value>formatting; chart floors</bookmark_value>"
-msgstr "<bookmark_value>charts; formatting floors</bookmark_value><bookmark_value>formatting; chart floors</bookmark_value>"
+msgid "Title"
+msgstr "Mataduree"
-#: 05070000.xhp
+#: 05020100.xhp
msgctxt ""
-"05070000.xhp\n"
-"hd_id3154346\n"
+"05020100.xhp\n"
+"par_id3149666\n"
"1\n"
"help.text"
-msgid "Chart Floor"
-msgstr "Taattoo Dilgatoo"
+msgid "<variable id=\"titel\"><ahelp hid=\".uno:ZTitle\">Modifies the properties of the selected title.</ahelp></variable>"
+msgstr "<variable id=\"titel\"><ahelp hid=\".uno:ZTitle\">Amala mataduree filamanii foyyessa.</ahelp></variable>"
-#: 05070000.xhp
+#: 05020100.xhp
msgctxt ""
-"05070000.xhp\n"
-"par_id3150767\n"
-"2\n"
+"05020100.xhp\n"
+"hd_id3149378\n"
+"3\n"
"help.text"
-msgid "<variable id=\"diagrammboden\"><ahelp hid=\".uno:DiagramFloor\">Opens the<emph> Chart Floor</emph> dialog, where you can modify the properties of the chart floor. The chart floor is the lower area in 3D charts. This function is only available for 3D charts.</ahelp></variable>"
-msgstr "<variable id=\"diagrammboden\"><ahelp hid=\".uno:DiagramFloor\">Qaaqa taattoo dilgatoo<emph> banuun</emph>Iddoo amala taattoo dilgatoo itti fooyyesitu. Taattoo dilgatoo bali'na xiqqaa 3D dhaan. Faankishiniin kun taattoo 3D tiif jiraata.</ahelp></variable>"
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Arfii</link>"
#: 05020101.xhp
msgctxt ""
@@ -2568,96 +2673,40 @@ msgctxt ""
msgid "Please note that problems may arise in displaying labels if the size of your chart is too small. You can avoid this by either enlarging the view or decreasing the font size."
msgstr "Hubachiisa: yoo hamamtaa taattoon kee xiqqaa ta'e rakkoon waammee agarsiistuu irratti mul'achuu danda'a.Rakkoo kan hamamtaa bocquu hir'isuun yookan mul'annoo guddisuun balleessuu ni dandeessa."
-#: 05080000.xhp
+#: 05020200.xhp
msgctxt ""
-"05080000.xhp\n"
+"05020200.xhp\n"
"tit\n"
"help.text"
-msgid "Chart Area"
-msgstr "Bal'ina Taattoo"
-
-#: 05080000.xhp
-msgctxt ""
-"05080000.xhp\n"
-"bm_id3149670\n"
-"help.text"
-msgid "<bookmark_value>charts; formatting areas</bookmark_value><bookmark_value>formatting; chart areas</bookmark_value>"
-msgstr "<bookmark_value>charts; formatting areas</bookmark_value><bookmark_value>formatting; chart areas</bookmark_value>"
+msgid "Title"
+msgstr "Mataduree"
-#: 05080000.xhp
+#: 05020200.xhp
msgctxt ""
-"05080000.xhp\n"
-"hd_id3149670\n"
+"05020200.xhp\n"
+"hd_id3150541\n"
"1\n"
"help.text"
-msgid "Chart Area"
-msgstr "Bal'ina Taattoo"
+msgid "Title"
+msgstr "Mataduree"
-#: 05080000.xhp
+#: 05020200.xhp
msgctxt ""
-"05080000.xhp\n"
-"par_id3125864\n"
+"05020200.xhp\n"
+"par_id3145173\n"
"2\n"
"help.text"
-msgid "<variable id=\"diagrammflaeche\"><ahelp visibility=\"visible\" hid=\".uno:DiagramArea\">Opens the<emph> Chart Area</emph> dialog, where you can modify the properties of the chart area. The chart area is the background behind all elements of the chart.</ahelp></variable>"
-msgstr "<variable id=\"diagrammflaeche\"><ahelp visibility=\"visible\" hid=\".uno:DiagramArea\">Qaaqa bal'ina taattoo<emph> banuun</emph>Bakka ati amala bal'ina taattoo itti fooyyesitu. Bal'inni taattoo madda keessootti cinaa maalima taattoo hundaaati.</ahelp></variable>"
-
-#: type_bubble.xhp
-msgctxt ""
-"type_bubble.xhp\n"
-"tit\n"
-"help.text"
-msgid "Chart Type Bubble"
-msgstr "Hoomacha gosa taattoo"
-
-#: type_bubble.xhp
-msgctxt ""
-"type_bubble.xhp\n"
-"bm_id2183975\n"
-"help.text"
-msgid "<bookmark_value>bubble charts</bookmark_value> <bookmark_value>chart types;bubble</bookmark_value>"
-msgstr "<bookmark_value>taattoowwan hoomachaa</bookmark_value> <bookmark_value>gosawwan taattoo;hoomacha</bookmark_value>"
-
-#: type_bubble.xhp
-msgctxt ""
-"type_bubble.xhp\n"
-"hd_id1970722\n"
-"help.text"
-msgid "<variable id=\"type_bubble\"><link href=\"text/schart/01/type_bubble.xhp\">Chart Type Bubble</link></variable>"
-msgstr "<variable id=\"type_bubble\"><link href=\"text/schart/01/type_bubble.xhp\">Hoomacha gosa taattoo</link></variable>"
-
-#: type_bubble.xhp
-#, fuzzy
-msgctxt ""
-"type_bubble.xhp\n"
-"par_id40589\n"
-"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
-msgstr "Fuula jalqabaa <link href=\"text/schart/01/wiz_chart_type.xhp\">Masaka Taattoo</link> irratti gosa taattoo filachuu dandeessa."
-
-#: type_bubble.xhp
-msgctxt ""
-"type_bubble.xhp\n"
-"hd_id0526200904491284\n"
-"help.text"
-msgid "Bubble"
-msgstr "Hoomacha"
-
-#: type_bubble.xhp
-msgctxt ""
-"type_bubble.xhp\n"
-"par_id0526200904491222\n"
-"help.text"
-msgid "A bubble chart shows the relations of three variables. Two variables are used for the position on the X-axis and Y-axis, while the third variable is shown as the relative size of each bubble."
-msgstr "Taattoon homachaa walitti dhufeenya jijjiramoota sadii agarsiisa. Qubachiisa siiqqee-X fi siiqqee-Y jijjiiramoota lamaan fayyadama, jijjiiramaan sadaffaa akka hammamtaa firoomaa hoomichaawwan tokko tokkootti agarsiifama."
+msgid "<variable id=\"titel\"><ahelp hid=\".uno:YTitle\">Modifies the properties of the selected title or the properties of all titles together.</ahelp></variable>"
+msgstr "<variable id=\"titel\"><ahelp hid=\".uno:YTitle\">Amala mataduree filamee yookan amala mataduree walumatti fooyyeessa.</ahelp></variable>"
-#: type_bubble.xhp
+#: 05020200.xhp
msgctxt ""
-"type_bubble.xhp\n"
-"par_id0526200906040162\n"
+"05020200.xhp\n"
+"hd_id3152596\n"
+"3\n"
"help.text"
-msgid "The data series dialog for a bubble chart has an entry to define the data range for the Bubble Sizes."
-msgstr "Taattoo homachaaf qaaqni adeemsa deetaa galfata hamamtaa hoomachaaf hangii deetaa qindeessuu qaba."
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Arfii</link>"
#: 05020201.xhp
msgctxt ""
@@ -2980,93 +3029,1083 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
msgstr "<ahelp hid=\".\">Keewwata teessuma barruu xaxaa fayyadamuuf qixa barruu ifteessi (CTL). Amalli kun kan jiraatu yoo deeggarsi teessuma barruu xaxaa kakaafame.</ahelp>"
-#: 05010200.xhp
+#: 05030000.xhp
msgctxt ""
-"05010200.xhp\n"
+"05030000.xhp\n"
"tit\n"
"help.text"
-msgid "Data Series"
-msgstr "Walfaannee Deetaa"
+msgid "Legend"
+msgstr "Waayoo"
-#: 05010200.xhp
+#: 05030000.xhp
msgctxt ""
-"05010200.xhp\n"
-"hd_id3150449\n"
+"05030000.xhp\n"
+"hd_id3145800\n"
"1\n"
"help.text"
-msgid "<link href=\"text/schart/01/05010200.xhp\" name=\"Data Series\">Data Series</link>"
-msgstr "<link href=\"text/schart/01/05010200.xhp\" name=\"Data Series\">Walfaannee Deetaa</link>"
+msgid "Legend"
+msgstr "Waayoo"
-#: 05010200.xhp
+#: 05030000.xhp
msgctxt ""
-"05010200.xhp\n"
-"par_id3145750\n"
+"05030000.xhp\n"
+"par_id3146972\n"
"2\n"
"help.text"
-msgid "Use this to change the properties of a selected data series. This dialog appears when one data series is selected when you choose <emph>Format - Format Selection</emph>. Some of the menu entries are only available for 2D or 3D charts."
-msgstr "Amala walfaanee deetaa filamee jijjiiruuf kana fayyadami. Qaaqni kun kan mul'atu walfaanneen deetaa yoo filame <emph>Dhangii - Filannoo Dhangii</emph> yommu filatamu. Baafanni tokko tokko galfata taatoo 2D yookan 3D dhaan qofa argama."
+msgid "<variable id=\"legende\"><ahelp hid=\".uno:Legend\">Defines the border, area and character attributes for a legend.</ahelp></variable>"
+msgstr "<variable id=\"legende\"><ahelp hid=\".uno:Legend\">Amala daangaa,bal'ina fi arfii waayoof qindeessa.</ahelp></variable>"
-#: 05010200.xhp
+#: 05030000.xhp
msgctxt ""
-"05010200.xhp\n"
-"par_id3154015\n"
+"05030000.xhp\n"
+"hd_id3145232\n"
"4\n"
"help.text"
-msgid "Any changes made here affect the entire data series. For example, if you change the color, all elements belonging to this data series will change color."
-msgstr "Jijjiiramni uumame kamiyyuu qaphxii deetaa tokkoo qofa miidha. Fakkeenyaaf, yoo halluu jijjiirte maalimni hundi kan deetaa walfaannee keessaa halluu jijjiira."
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Arfii</link>"
-#: 05010200.xhp
+#: 05030000.xhp
msgctxt ""
-"05010200.xhp\n"
-"hd_id3146916\n"
+"05030000.xhp\n"
+"hd_id3147344\n"
"3\n"
"help.text"
-msgid "<link href=\"text/schart/01/04050000.xhp\" name=\"Y Error Bars\">Y Error Bars</link>"
-msgstr "<link href=\"text/schart/01/04050000.xhp\" name=\"Y Error Bars\"> Kabala Dogogora Y</link>"
+msgid "<link href=\"text/schart/01/04020000.xhp\" name=\"Display\">Display</link>"
+msgstr "<link href=\"text/schart/01/04020000.xhp\" name=\"Display\">Mul'ata</link>"
-#: 05020100.xhp
+#: 05040000.xhp
msgctxt ""
-"05020100.xhp\n"
+"05040000.xhp\n"
"tit\n"
"help.text"
-msgid "Title"
-msgstr "Mataduree"
+msgid "Axis"
+msgstr "Siiqqota"
-#: 05020100.xhp
+#: 05040000.xhp
msgctxt ""
-"05020100.xhp\n"
-"bm_id3150769\n"
+"05040000.xhp\n"
+"hd_id3149456\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>editing; titles</bookmark_value>"
-msgstr "<bookmark_value>editing; titles</bookmark_value>"
+msgid "<link href=\"text/schart/01/05040000.xhp\" name=\"Axis\">Axis</link>"
+msgstr "<link href=\"text/schart/01/05040000.xhp\" name=\"Axis\">Siilloo</link>"
-#: 05020100.xhp
+#: 05040000.xhp
msgctxt ""
-"05020100.xhp\n"
-"hd_id3150769\n"
+"05040000.xhp\n"
+"par_id3150441\n"
"2\n"
"help.text"
-msgid "Title"
-msgstr "Mataduree"
+msgid "This opens a submenu to edit axial properties."
+msgstr "Kun amala jiru gulaaluuf baafata xiqqaa bana."
-#: 05020100.xhp
+#: 05040000.xhp
msgctxt ""
-"05020100.xhp\n"
-"par_id3149666\n"
+"05040000.xhp\n"
+"par_id3154319\n"
+"11\n"
+"help.text"
+msgid "The tabs in the dialogs depend on the chart type selected."
+msgstr "Caancalli qaaqaa keessa jiru gosa taattoo filamee irratti hunda'a."
+
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
+"hd_id3153729\n"
+"3\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"X axis\">X axis</link>"
+msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"X axis\">Siilloo X</link>"
+
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
+"hd_id3147394\n"
+"4\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">Y axis</link>"
+msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">Siilloo Y</link>"
+
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
+"hd_id3153160\n"
+"9\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"Secondary X Axis\">Secondary X Axis</link>"
+msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"Secondary X Axis\">Siilloo X lammaffaa</link>"
+
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
+"par_id3149401\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\".uno:DiagramAxisA\">Opens a dialog where you can edit the properties of the secondary X axis. To insert a secondary X axis, choose <emph>Insert - Axes</emph> and select <emph>X axis</emph>.</ahelp>"
+msgstr "<ahelp hid=\".uno:DiagramAxisA\">Amala siilloo X lammaffaa gulaaluuf qaaqa bana filadhu <emph>Suuqaa-siiqqota</emph> fi <emph> siilloo X</emph>. filadhu</ahelp>"
+
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
+"hd_id3145640\n"
+"7\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Secondary Y Axis\">Secondary Y Axis</link>"
+msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Secondary Y Axis\">Siilloo Y lammaffaa</link>"
+
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
+"par_id3159264\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\".uno:DiagramAxisB\">Opens a dialog where you can edit the properties of the secondary Y axis. To insert a secondary Y axis, choose <emph>Insert - Axes</emph> and select <emph>Y axis</emph>.</ahelp>"
+msgstr "<ahelp hid=\".uno:DiagramAxisB\">Amala siilloo Y lammaffaa gulaaluuf qaaqa bana. Siilloo Y lammaffaa suuquuf <emph>Suuqaa-Siiqqota</emph> filadhutii <emph>Siilloo Y</emph> filadhu.</ahelp>"
+
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
+"hd_id3145228\n"
+"5\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"Z axis\">Z axis</link>"
+msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"Z axis\">Siilloo Z </link>"
+
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
+"hd_id3147345\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"All axes\">All axes</link>"
+msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"All axes\">Siiqqota hunda</link>"
+
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Axes"
+msgstr "Siiqqota"
+
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"bm_id3153768\n"
+"help.text"
+msgid "<bookmark_value>axes;formatting</bookmark_value>"
+msgstr "<bookmark_value>axes;formatting</bookmark_value>"
+
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"hd_id3153768\n"
"1\n"
"help.text"
-msgid "<variable id=\"titel\"><ahelp hid=\".uno:ZTitle\">Modifies the properties of the selected title.</ahelp></variable>"
-msgstr "<variable id=\"titel\"><ahelp hid=\".uno:ZTitle\">Amala mataduree filamanii foyyessa.</ahelp></variable>"
+msgid "Axes"
+msgstr "Siiqqota"
-#: 05020100.xhp
+#: 05040100.xhp
msgctxt ""
-"05020100.xhp\n"
-"hd_id3149378\n"
+"05040100.xhp\n"
+"par_id3154319\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"achsen\"><ahelp hid=\".uno:DiagramAxisAll\">Opens a dialog, where you can edit the properties of the selected axis.</ahelp></variable> The name of the dialog depends on the selected axis."
+msgstr "<variable id=\"achsen\"><ahelp hid=\".uno:DiagramAxisAll\">Qaaqa bani, amala siilloo filamee iddoo itti gulaaltu.</ahelp></variable> Maqaan qaaqaa siilloo filatame irratti hundaa'a."
+
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"par_id3149667\n"
+"3\n"
+"help.text"
+msgid "The <link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">Y axis</link> has an enhanced dialog. For X-Y charts, the X axis chart is also enhanced by the <link href=\"text/schart/01/05040201.xhp\" name=\"Scaling\"><emph>Scaling</emph></link> tab."
+msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">Siilloo Y</link>qaaqan gargaarsaa qaba.Taattoo Siilloo X-Y , taattoon siilloo X gargaarsa qaba. <link href=\"text/schart/01/05040201.xhp\" name=\"Scaling\"><emph>Safaru</emph></link> caancala."
+
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"par_id3159266\n"
+"4\n"
+"help.text"
+msgid "Scaling the X axis is only possible in the X-Y chart type."
+msgstr "Siilloo X safaruun gosa taattoo X-Y qofaan danda'ama."
+
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"hd_id3145230\n"
+"5\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Arfii</link>"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Y Axis"
+msgstr "Siilloo Y"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"bm_id3145673\n"
+"help.text"
+msgid "<bookmark_value>Y axes; formatting</bookmark_value>"
+msgstr "<bookmark_value>Y axes; formatting</bookmark_value>"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"hd_id3145673\n"
+"1\n"
+"help.text"
+msgid "Y Axis"
+msgstr "Siilloo Y"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"par_id3155628\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"yachse\"><ahelp hid=\".uno:DiagramAxisY\">Opens the<emph> Y Axis </emph>dialog, to change properties of the Y axis.</ahelp></variable>"
+msgstr "<variable id=\"yachse\"><ahelp hid=\".uno:DiagramAxisY\">Siilloo Y <emph>qaaqaa bana</emph>amala siilloo Y jijjiiruuf.</ahelp></variable>"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"hd_id3145171\n"
"3\n"
"help.text"
msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Arfii</link>"
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"hd_id3146119\n"
+"4\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Lakkoofsota</link>"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"tit\n"
+"help.text"
+msgid "Scale"
+msgstr "Madaala"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"bm_id3150868\n"
+"help.text"
+msgid "<bookmark_value>scaling; axes</bookmark_value><bookmark_value>logarithmic scaling along axes</bookmark_value><bookmark_value>charts;scaling axes</bookmark_value><bookmark_value>X axes;scaling</bookmark_value><bookmark_value>Y axes; scaling</bookmark_value>"
+msgstr "<bookmark_value>madaaluu; siiqqota</bookmark_value><bookmark_value>naannoo siiqqotaatti logaarizimii madaaluu </bookmark_value><bookmark_value>taatoota;siiqqota madaaluu</bookmark_value><bookmark_value>X siiqqota;madaaluu</bookmark_value><bookmark_value>siiqqota Y; madaaluu</bookmark_value>"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3150868\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05040201.xhp\" name=\"Scale\">Scale</link>"
+msgstr "<link href=\"text/schart/01/05040201.xhp\" name=\"Scale\">Madaala</link>"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3154013\n"
+"2\n"
+"help.text"
+msgid "Controls the scaling of the X or Y axis."
+msgstr "Qubachiisa siiqqeewwanii to'ata."
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3148576\n"
+"79\n"
+"help.text"
+msgid "The axes are automatically scaled by $[officename] so that all values are optimally displayed."
+msgstr "Siilloon Y ofumaan fayyadamuun $[officename] madaalama kanaafuu gatiin guutolaa ni mul'ata."
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3149379\n"
+"3\n"
+"help.text"
+msgid "To achieve specific results, you can manually change the axis scaling. For example, you can display only the top areas of the columns by shifting the zero line upwards."
+msgstr "Bu'aa murtaa'e irra gahuuf, madaallii siilloo harkaan jijjiruu dandeessa. Fakkenyaaf, bali'na gubbaa qofa mul'isuun sarara duwwaa gara oliitti orofuu dandeessa"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3154730\n"
+"4\n"
+"help.text"
+msgid "Scale"
+msgstr "Madaala"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3149400\n"
+"5\n"
+"help.text"
+msgid "You can enter values for subdividing axes in this area. You can automatically set the properties <emph>Minimum, Maximum, Major interval, Minor interval count</emph> and <emph>Reference value</emph>."
+msgstr "Siiqqota bal'ina kana irratti garagar qooduuf gatii galchuu dandeessa. Amaloota shanan ofumaan qindeessi <emph>Gadaantoo, Irrata, Orofaa buraalaa, Orofaa maddee</emph> fi <emph>Gatii raggoo</emph>."
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3150751\n"
+"6\n"
+"help.text"
+msgid "Minimum"
+msgstr "Gadaantoo"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3153713\n"
+"7\n"
+"help.text"
+msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MIN\">Defines the minimum value for the beginning of the axis.</ahelp>"
+msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MIN\">Gadaantoo siilloo jalqabaatiif gatii xiqqaa qindeessa.</ahelp>"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3156385\n"
+"8\n"
+"help.text"
+msgid "Maximum"
+msgstr "Buraalaa"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3159266\n"
+"9\n"
+"help.text"
+msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MAX\">Defines the maximum value for the end of the axis.</ahelp>"
+msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MAX\">Buraalaa siilloo dhumaatiif gatii guddaa qindeessa.</ahelp>"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3155336\n"
+"10\n"
+"help.text"
+msgid "Major interval"
+msgstr "Buraalaa orofaa"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3143218\n"
+"11\n"
+"help.text"
+msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_MAIN\">Defines the interval for the main division of the axes.</ahelp> The main interval cannot be larger than the value area."
+msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_MAIN\">Qoqoodama Siilloo dursaaf orofaa siiqqoo qindeessa.</ahelp> Orofaan dursaa irra guddaa gatii bal'inaa hin ta'u."
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3154020\n"
+"12\n"
+"help.text"
+msgid "Minor interval count"
+msgstr "Lakkaawwi orofaa gadaantoo"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3154656\n"
+"13\n"
+"help.text"
+msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_HELP\">Defines the interval for the subdivision of the axes.</ahelp>"
+msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_HELP\">Orofaa qoqoodama siqqotaaf qindeessa.</ahelp>"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3150089\n"
+"14\n"
+"help.text"
+msgid "Reference value"
+msgstr "Gatii raggoo"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3152990\n"
+"15\n"
+"help.text"
+msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_ORIGIN\">Specifies at which position to display the values along the axis.</ahelp>"
+msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_ORIGIN\">Qabannoo gatii siilloo kam irratti mul'isuu akka qabdu ibsa.</ahelp>"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3166432\n"
+"62\n"
+"help.text"
+msgid "Automatic"
+msgstr "Ofumaa"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3145389\n"
+"63\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_AUTO_ORIGIN\">You must first deselect the <emph>Automatic</emph> option in order to modify the values.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_AUTO_ORIGIN\">Gatii haaromsuuf duraan dursitee<emph>Ofumaan</emph> filannoo filachuu hin qabdu.</ahelp>"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3149129\n"
+"64\n"
+"help.text"
+msgid "Disable this feature if you are working with \"fixed\" values, as it does not permit automatic scaling."
+msgstr "Yoo gatii \"fixed\" tiin dalagde haala kana akka hin hojjenne dhorki, akka inni madaalli ofumaa hin eeyyamne."
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3159206\n"
+"16\n"
+"help.text"
+msgid "Logarithmic scale"
+msgstr "Madaalli logartimaa"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3145360\n"
+"17\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_LOGARITHM\">Specifies that you want the axis to be subdivided logarithmically.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_LOGARITHM\">Siiqqoon logartimaan yoo garagar qooduu barbaadde ibsa.</ahelp>"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3153956\n"
+"61\n"
+"help.text"
+msgid "Use this feature if you are working with values that differ sharply from each other. You can use logarithmic scaling to make the grid lines of the axis equidistant but have values that may increase or decrease."
+msgstr "Gatiilee gongumaa gargar ta'aaniin hojechuu yoo barbaadde haala kan fayydami. Madaalli logaartimaa fayyadamuu dandeessa tarsaa sararaa kan siilloo fageenya walqixa, garuu gatii hir'isu yookan dabalu danda'a."
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id9941404\n"
+"help.text"
+msgid "Reverse direction"
+msgstr "Kallattii faallaa"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id5581835\n"
+"help.text"
+msgid "<ahelp hid=\".\">Defines where the lower and where the higher values are displayed at the axis. The unchecked state is the mathematical direction.</ahelp> That means for Cartesian coordinate systems that the x-axis shows the lower values on the left and the y-axis shows the lower values at the bottom. For polar coordinate systems the mathematical angle axis direction is counterclockwise and the radial axis is from inner to outer."
+msgstr "<ahelp hid=\".\">Gatii guddaa fi xiqqaan siilloo irrati eessatti akka mul'atu qindeessa. Haalli hin mirkaneeffamne kallatii herregatini.</ahelp> Kana jechuun sirna qaxxamura walgitaa kan siilloon x gatii gadii fi siilloon y gatii gadii gara jalaatti agarsiisu. Sirna waggee walgitaaf kofni herregummaa kallattiin siilloo kallatti sa'aatii fi siilloo calii gara keessaati gara alaati."
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id922204\n"
+"help.text"
+msgid "Type"
+msgstr "Akaakuu"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id59225\n"
+"help.text"
+msgid "<ahelp hid=\".\">For some types of axes, you can select to format an axis as text or date, or to detect the type automatically.</ahelp> For the axis type \"Date\" you can set the following options."
+msgstr ""
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id1159225\n"
+"help.text"
+msgid "Minimum and maximum value to be shown on the ends of the scale."
+msgstr ""
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id2259225\n"
+"help.text"
+msgid "<ahelp hid=\".\">Resolution can be set to show days, months, or years as interval steps.</ahelp>"
+msgstr "<ahelp hid=\".\">Bal'ina guddaa ykn xiqqaa mul'isuuf agarsiisa jijjiira.</ahelp>"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3359225\n"
+"help.text"
+msgid "<ahelp hid=\".\">Major interval can be set to show a certain number of days, months, or years.</ahelp>"
+msgstr "<ahelp hid=\".\">Galmeewwan gaafataa hunda agarsiisuuf filadhu.</ahelp>"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id4459225\n"
+"help.text"
+msgid "<ahelp hid=\".\">Minor interval can be set to show a certain number of days, months, or years.</ahelp>"
+msgstr "<ahelp hid=\".\">Galmeewwan gaafataa hunda agarsiisuuf filadhu.</ahelp>"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"tit\n"
+"help.text"
+msgid "Positioning"
+msgstr "Qubachiisuu"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"bm_id3150869\n"
+"help.text"
+msgid "<bookmark_value>positioning; axes</bookmark_value><bookmark_value>charts;positioning axes</bookmark_value><bookmark_value>X axes;positioning</bookmark_value><bookmark_value>Y axes;positioning</bookmark_value><bookmark_value>axes;interval marks</bookmark_value>"
+msgstr "<bookmark_value>qubachiisuu; siiqqeewwan</bookmark_value><bookmark_value>taaattoowwan;siiqqeewwan qubachiisuu</bookmark_value><bookmark_value>siiqqeewwan X;qubachiisuu</bookmark_value><bookmark_value>siiqqeewwan Y;qubachiisuu</bookmark_value><bookmark_value>siiqqeewwan;mallattoowwan giddu'u</bookmark_value>"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"hd_id3150868\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05040202.xhp\" name=\"positioning\">Positioning</link>"
+msgstr "<link href=\"text/schart/01/05040202.xhp\" name=\"positioning\">qubachiisuu</link>"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"par_id3154013\n"
+"2\n"
+"help.text"
+msgid "Controls the positioning of the axis."
+msgstr "Qubachiisa siiqqeewwanii to'ata."
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"hd_id1006200801024782\n"
+"help.text"
+msgid "Axis line"
+msgstr "sarara siiqqee"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"par_id1006200801024970\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select where to cross the other axis: at start, at end, at a specified value, or at a category.</ahelp>"
+msgstr "<ahelp hid=\".\">Bakka itti siiqqee biroo qaxxaamuru filadhu: jalqabarratti, dhumarratti, gatii ifteessamerratti, ykn akaakuurratti.</ahelp>"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"par_id1006200801024957\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value where the axis line should cross the other axis.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gatii iddoo sararri siiqqee kun itti siiqqee biroo itti qaxxaamuru qabu galchi.</ahelp>"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"par_id100620080102503\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the category where the axis line should cross the other axis.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Iddootti sararri siiqqee siqqe birroo qaxaamuruu qabu akaakuu filadhu.</ahelp>"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"hd_id100620080102509\n"
+"help.text"
+msgid "Labels"
+msgstr "Asxaawwan"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"hd_id1006200801523879\n"
+"help.text"
+msgid "Place labels"
+msgstr "Asxaawwan qubachiisi"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"par_id1006200801523889\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select where to place the labels: near axis, near axis (other side), outside start, or outside end.</ahelp>"
+msgstr "<ahelp hid=\".\">Iddootti asxaawwan qubachiiftu filadhu: siiqqee bira, siiqqee bira (moggaa biraan), jalqaba alatti, ykn dhuma alatti.</ahelp>"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"hd_id1006200801025030\n"
+"help.text"
+msgid "Interval marks"
+msgstr "Mallattoowwan giddu'u"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"hd_id3149048\n"
+"65\n"
+"help.text"
+msgid "Major:"
+msgstr "Buraalaa:"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"par_id3150397\n"
+"71\n"
+"help.text"
+msgid "Specifies whether the marks are to be on the inner or outer side of the axis. It is possible to combine both: you will then see marks on both sides."
+msgstr "Yoo mallattoon gara keessa yookan gara alaa siillooti argamuu ibsa. Lachanuu walitti makuun ni danda'ama: Isaan booda mallattoo gara lamaanuttu argita."
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"hd_id3151387\n"
+"66\n"
+"help.text"
+msgid "Inner"
+msgstr "Keessoo"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"par_id3156399\n"
+"72\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_TICKS_INNER\">Specifies that marks are placed on the inner side of the axis.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_TICKS_INNER\"> Mallattoon gara keessa siillootti argamuu ibsa.</ahelp>"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"hd_id3166469\n"
+"67\n"
+"help.text"
+msgid "Outer"
+msgstr "Ala"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"par_id3153120\n"
+"73\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_TICKS_OUTER\">Specifies that marks are placed on the outer side of the axis.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_TICKS_OUTER\">Mallattoon gara moggaa ala siillootti argamuu ibsa.</ahelp>"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"hd_id3159128\n"
+"68\n"
+"help.text"
+msgid "Minor:"
+msgstr "Muraalaa:"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"par_id3146885\n"
+"74\n"
+"help.text"
+msgid "This area is used to define the marking dashes between the axis marks. It is possible to activate both fields. This will result in a marking line running from the outside to the inside."
+msgstr "Bal'inni kun bakka duwwaa mallattoo siilloo gidduu jiru qindeessuuf gargaara. Dirreewwan lachuu kakaaasuun ni danda'ama. Kun kaasa sararaa gara alaatii gara keessatti mallatteefamuu mul'isa."
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"hd_id3150654\n"
+"69\n"
+"help.text"
+msgid "Inner"
+msgstr "Keessoo"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"par_id3146880\n"
+"75\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_HELPTICKS_INNER\">Specifies that minor interval marks are placed on the inner side of the axis.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_HELPTICKS_INNER\">Mallattoo gadaantoo orofaa siilloo moggaa gara keessaatti olka'amu ibsa.</ahelp>"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"hd_id3154677\n"
+"70\n"
+"help.text"
+msgid "Outer"
+msgstr "Ala"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"par_id3150745\n"
+"76\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_HELPTICKS_OUTER\">Specifies that minor interval marks are placed on the outer side of the axis.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_HELPTICKS_OUTER\">Mallattoo gadaantoo orofaa siilloo moggaa gara alaatiin olka'amu ibsa.</ahelp>"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"hd_id1006200801025271\n"
+"help.text"
+msgid "Place marks"
+msgstr "Mallattoowwan qubachiisi"
+
+#: 05040202.xhp
+msgctxt ""
+"05040202.xhp\n"
+"par_id1006200801025278\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select where to place the marks: at labels, at axis, or at axis and labels.</ahelp>"
+msgstr "<ahelp hid=\".\">Mallattoowwan bakka qubachiisuu barbaaddu filadhu: asxaawwan irratti, siiqqeewwan irratti, ykn siiqqeewwanii fi asxaawwan irratti.</ahelp>"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Grid"
+msgstr "Tarsaa"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"bm_id3155602\n"
+"help.text"
+msgid "<bookmark_value>grids; formatting axes</bookmark_value><bookmark_value>axes; formatting grids</bookmark_value>"
+msgstr "<bookmark_value>grids; formatting axes</bookmark_value><bookmark_value>axes; formatting grids</bookmark_value>"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3155602\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05050000.xhp\" name=\"Grid\">Grid</link>"
+msgstr "<link href=\"text/schart/01/05050000.xhp\" name=\"Grid\">Tarsaa</link>"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"par_id3155764\n"
+"2\n"
+"help.text"
+msgid "Opens a submenu, where you select the grid you want to format."
+msgstr "Baafata xiqqaan bakka tarsaa dhanguu barbaadde itti filattu."
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3150045\n"
+"3\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Major Grid\">X Axis Major Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Major Grid\">Buraalaa tarsaa silloo X </link>"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3145228\n"
+"4\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Major Grid\">Y Axis Major Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Major Grid\">Buraalaa tarsaa silloo Y</link>"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3147346\n"
+"5\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis Major Grid\">Z Axis Major Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis Major Grid\">Buraalaa tarsaa silloo Z </link>"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3154021\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Minor Grid\">X Axis Minor Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Minor Grid\">Maddee tarsaa silloo X </link>"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3150307\n"
+"7\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Minor Grid\">Y Axis Minor Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Minor Grid\">Maddee tarsaa silloo Y</link>"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3166428\n"
+"8\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis minor Grid\">Z Axis minor Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis minor Grid\">Maddee tarsaa silloo Z</link>"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3145585\n"
+"9\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"All Axis Grids\">All Axis Grids</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"All Axis Grids\">Tarsaa siilloo hundaa</link>"
+
+#: 05050100.xhp
+msgctxt ""
+"05050100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Grid"
+msgstr "Tarsaa"
+
+#: 05050100.xhp
+msgctxt ""
+"05050100.xhp\n"
+"bm_id3150398\n"
+"help.text"
+msgid "<bookmark_value>X axes;grid formatting</bookmark_value><bookmark_value>Y axes;grid formatting</bookmark_value><bookmark_value>Z axes; grid formatting</bookmark_value>"
+msgstr "<bookmark_value>X axes;grid formatting</bookmark_value><bookmark_value>Y axes;grid formatting</bookmark_value><bookmark_value>Z axes; grid formatting</bookmark_value>"
+
+#: 05050100.xhp
+msgctxt ""
+"05050100.xhp\n"
+"hd_id3150398\n"
+"2\n"
+"help.text"
+msgid "Grid"
+msgstr "Tarsaa"
+
+#: 05050100.xhp
+msgctxt ""
+"05050100.xhp\n"
+"par_id3152577\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"gitter\"><ahelp hid=\".uno:DiagramGridAll\">Opens the <emph>Grid</emph> dialog for defining grid properties.</ahelp></variable>"
+msgstr "<variable id=\"gitter\"><ahelp hid=\".uno:DiagramGridAll\">Tarsaa qaaqaa <emph>banuun</emph> amala tarsaa qindeessa.</ahelp></variable>"
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Chart Wall"
+msgstr "Daaggoo Taattoo"
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"bm_id3150792\n"
+"help.text"
+msgid "<bookmark_value>charts; formatting walls</bookmark_value><bookmark_value>formatting;chart walls</bookmark_value>"
+msgstr "<bookmark_value>charts; formatting walls</bookmark_value><bookmark_value>formatting;chart walls</bookmark_value>"
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"hd_id3150792\n"
+"1\n"
+"help.text"
+msgid "Chart Wall"
+msgstr "Daaggoo Taattoo"
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id3154685\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"diagramm\"><ahelp visibility=\"visible\" hid=\".uno:DiagramWall\">Opens the<emph> Chart Wall</emph> dialog, where you can modify the properties of the chart wall. The chart wall is the \"vertical\" background behind the data area of the chart.</ahelp></variable>"
+msgstr "<variable id=\"diagramm\"><ahelp visibility=\"visible\" hid=\".uno:DiagramWall\">Qaaqa daaggoo taattoo<emph> banuun</emph> Iddoo itti amala daaggoo taattoo foyyeesitu. Daaggoon taattoo \"vertical\" bal'ina taattoo deetaa bukkeetti madda keessooti.</ahelp></variable>"
+
+#: 05070000.xhp
+msgctxt ""
+"05070000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Chart Floor"
+msgstr "Taattoo Dilgatoo"
+
+#: 05070000.xhp
+msgctxt ""
+"05070000.xhp\n"
+"bm_id3154346\n"
+"help.text"
+msgid "<bookmark_value>charts; formatting floors</bookmark_value><bookmark_value>formatting; chart floors</bookmark_value>"
+msgstr "<bookmark_value>charts; formatting floors</bookmark_value><bookmark_value>formatting; chart floors</bookmark_value>"
+
+#: 05070000.xhp
+msgctxt ""
+"05070000.xhp\n"
+"hd_id3154346\n"
+"1\n"
+"help.text"
+msgid "Chart Floor"
+msgstr "Taattoo Dilgatoo"
+
+#: 05070000.xhp
+msgctxt ""
+"05070000.xhp\n"
+"par_id3150767\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"diagrammboden\"><ahelp hid=\".uno:DiagramFloor\">Opens the<emph> Chart Floor</emph> dialog, where you can modify the properties of the chart floor. The chart floor is the lower area in 3D charts. This function is only available for 3D charts.</ahelp></variable>"
+msgstr "<variable id=\"diagrammboden\"><ahelp hid=\".uno:DiagramFloor\">Qaaqa taattoo dilgatoo<emph> banuun</emph>Iddoo amala taattoo dilgatoo itti fooyyesitu. Taattoo dilgatoo bali'na xiqqaa 3D dhaan. Faankishiniin kun taattoo 3D tiif jiraata.</ahelp></variable>"
+
+#: 05080000.xhp
+msgctxt ""
+"05080000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Chart Area"
+msgstr "Bal'ina Taattoo"
+
+#: 05080000.xhp
+msgctxt ""
+"05080000.xhp\n"
+"bm_id3149670\n"
+"help.text"
+msgid "<bookmark_value>charts; formatting areas</bookmark_value><bookmark_value>formatting; chart areas</bookmark_value>"
+msgstr "<bookmark_value>charts; formatting areas</bookmark_value><bookmark_value>formatting; chart areas</bookmark_value>"
+
+#: 05080000.xhp
+msgctxt ""
+"05080000.xhp\n"
+"hd_id3149670\n"
+"1\n"
+"help.text"
+msgid "Chart Area"
+msgstr "Bal'ina Taattoo"
+
+#: 05080000.xhp
+msgctxt ""
+"05080000.xhp\n"
+"par_id3125864\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"diagrammflaeche\"><ahelp visibility=\"visible\" hid=\".uno:DiagramArea\">Opens the<emph> Chart Area</emph> dialog, where you can modify the properties of the chart area. The chart area is the background behind all elements of the chart.</ahelp></variable>"
+msgstr "<variable id=\"diagrammflaeche\"><ahelp visibility=\"visible\" hid=\".uno:DiagramArea\">Qaaqa bal'ina taattoo<emph> banuun</emph>Bakka ati amala bal'ina taattoo itti fooyyesitu. Bal'inni taattoo madda keessootti cinaa maalima taattoo hundaaati.</ahelp></variable>"
+
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Arrangement"
+msgstr "Qindaa'ina"
+
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"hd_id3159153\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05120000.xhp\" name=\"Arrangement\">Arrangement</link>"
+msgstr "<link href=\"text/schart/01/05120000.xhp\" name=\"Arrangement\">Qindaa'ina</link>"
+
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id3145750\n"
+"2\n"
+"help.text"
+msgid "Allows you to modify the order of the data series already set in the chart."
+msgstr "Tartiiba walfaannee deetaa taattoo keessatti dursee qindeeffame fooyyessuuf eeyyama."
+
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id3155411\n"
+"8\n"
+"help.text"
+msgid "The position of the data in the data table remains unchanged. You can only choose the commands after inserting a chart in $[officename] Calc."
+msgstr "Qabannoon deetaa gabatee deetaa keessatti osoo hin jijjiiramin hafa. Ajaja taattoo $[officename] Calc keessattii erga suuqxeen booda filachuu dandeessa."
+
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id3154757\n"
+"5\n"
+"help.text"
+msgid "This function is only available if you have data displayed in columns. It is not possible to switch to data display in rows."
+msgstr "Faankishiniin kun kan jiraatu yoo deetaan torree irratti mul'ate qofa. Deetaa tarreen jiru jijjiiruun hin danda'amu."
+
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"hd_id3147339\n"
+"3\n"
+"help.text"
+msgid "Bring Forward"
+msgstr "Fuulduraatti Fiduu"
+
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id3149259\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\".uno:Forward\">Brings the selected data series forward (to the right).</ahelp>"
+msgstr "<ahelp hid=\".uno:Forward\">Walfakkannee deetaa filamee fulduratti fidi (gara mirgaatti).</ahelp>"
+
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"hd_id3146316\n"
+"4\n"
+"help.text"
+msgid "Send Backward"
+msgstr "Duubatti Ergi"
+
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id3147001\n"
+"7\n"
+"help.text"
+msgid "<ahelp hid=\".uno:Backward\">Sends the selected data series backward (to the left).</ahelp>"
+msgstr "<ahelp hid=\".uno:Backward\">Walfaannee deetaa filamee duubatti ergi(gara bitaatti).</ahelp>"
+
#: choose_chart_type.xhp
msgctxt ""
"choose_chart_type.xhp\n"
@@ -3089,7 +4128,7 @@ msgctxt ""
"par_id7085787\n"
"help.text"
msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
-msgstr "Fuula duraa irratti <link href=\"text/schart/01/wiz_chart_type.xhp\">Taattoo Masakaa</link> Akaakuu taattoo filachuu dandeessa."
+msgstr "Akaakuu taattoo fuula duraa <link href=\"text/schart/01/wiz_chart_type.xhp\">Taattoo Masaka</link> irraa filuu ni dandeessa."
#: choose_chart_type.xhp
msgctxt ""
@@ -3251,490 +4290,1453 @@ msgctxt ""
msgid "<link href=\"text/schart/01/type_column_line.xhp\">Column and Line</link>"
msgstr "<link href=\"text/schart/01/type_column_line.xhp\">Torree fi sarara</link>"
-#: type_line.xhp
+#: smooth_line_properties.xhp
msgctxt ""
-"type_line.xhp\n"
+"smooth_line_properties.xhp\n"
"tit\n"
"help.text"
-msgid "Chart Type Line"
-msgstr "Akaakuu Taattoo Sarara"
+msgid "Smooth Line Properties"
+msgstr "Amala sarara siimessa"
-#: type_line.xhp
+#: smooth_line_properties.xhp
msgctxt ""
-"type_line.xhp\n"
-"bm_id2187566\n"
+"smooth_line_properties.xhp\n"
+"bm_id3803827\n"
"help.text"
-msgid "<bookmark_value>line charts</bookmark_value><bookmark_value>chart types;line</bookmark_value>"
-msgstr "g<bookmark_value>line charts</bookmark_value><bookmark_value>chart types;line</bookmark_value>"
+msgid "<bookmark_value>curves;properties in line charts/XY charts</bookmark_value><bookmark_value>properties;smooth lines in line charts/XY charts</bookmark_value>"
+msgstr "<bookmark_value>curves;properties in line charts/XY charts</bookmark_value><bookmark_value>properties;smooth lines in line charts/XY charts</bookmark_value>"
-#: type_line.xhp
+#: smooth_line_properties.xhp
msgctxt ""
-"type_line.xhp\n"
-"hd_id9422894\n"
+"smooth_line_properties.xhp\n"
+"hd_id3050325\n"
"help.text"
-msgid "<variable id=\"type_line\"><link href=\"text/schart/01/type_line.xhp\">Chart Type Line</link></variable>"
-msgstr "<variable id=\"type_line\"><link href=\"text/schart/01/type_line.xhp\">Akaakuu Taattoo Sarara</link></variable>"
+msgid "Smooth Line Properties"
+msgstr "Amala sarara siimessa"
-#: type_line.xhp
+#: smooth_line_properties.xhp
msgctxt ""
-"type_line.xhp\n"
-"par_id389721\n"
+"smooth_line_properties.xhp\n"
+"par_id9421979\n"
+"help.text"
+msgid "In a chart that displays lines (Line type or XY type), you can choose to show curves instead of straight lines. Some options control the properties of those curves."
+msgstr "Taattoo sarara mul'isu keessatti(Akaakuu sararaa yookan akaakuu XY)qonyoo irra sarara qajeeelaa agarsiisuu dandeessa. Filannoon tokko tokko amala qonyoo kannenii too'atu."
+
+#: smooth_line_properties.xhp
+msgctxt ""
+"smooth_line_properties.xhp\n"
+"hd_id1228370\n"
+"help.text"
+msgid "To change line properties"
+msgstr "Amala sarara jijjiiruuf"
+
+#: smooth_line_properties.xhp
+msgctxt ""
+"smooth_line_properties.xhp\n"
+"par_id1601611\n"
+"help.text"
+msgid "Select Cubic Spline or B-Spline."
+msgstr "Rogsadee Spline yookan Rogsadee lamee filadhu."
+
+#: smooth_line_properties.xhp
+msgctxt ""
+"smooth_line_properties.xhp\n"
+"par_id879848\n"
+"help.text"
+msgid "These are mathematical models that influence the display of the curves. The curves are created by joining together segments of polynomials."
+msgstr ""
+
+#: smooth_line_properties.xhp
+msgctxt ""
+"smooth_line_properties.xhp\n"
+"par_id3464461\n"
+"help.text"
+msgid "Optionally set the resolution. A higher value leads to a smoother line."
+msgstr "Akka filannootti qulqullina qindeessa. Gatiin guddaan gara sarara siimessatti nama geessa."
+
+#: smooth_line_properties.xhp
+msgctxt ""
+"smooth_line_properties.xhp\n"
+"par_id6998809\n"
+"help.text"
+msgid "For B-spline lines optionally set the degree of the polynomials."
+msgstr ""
+
+#: smooth_line_properties.xhp
+msgctxt ""
+"smooth_line_properties.xhp\n"
+"par_id3424481\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Apply a line curve model.</ahelp>"
+msgstr ""
+
+#: smooth_line_properties.xhp
+msgctxt ""
+"smooth_line_properties.xhp\n"
+"par_id2320932\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the resolution.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Qulqullina qindeessi.</ahelp>"
+
+#: smooth_line_properties.xhp
+msgctxt ""
+"smooth_line_properties.xhp\n"
+"par_id8638874\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the degree of the polynomials.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Qulqullina qindeessi.</ahelp>"
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"tit\n"
+"help.text"
+msgid "Smooth Line Properties"
+msgstr "Amala sarara siimessa"
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"bm_id1467210\n"
+"help.text"
+msgid "<bookmark_value>curves;properties in line charts/XY charts</bookmark_value><bookmark_value>properties;stepped lines in line charts/XY charts</bookmark_value>"
+msgstr ""
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"hd_id5005971\n"
+"help.text"
+msgid "Stepped Line Properties"
+msgstr ""
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"par_id9485625\n"
+"help.text"
+msgid "In a chart that displays lines (Line type or XY type), you can choose to connect the points with steps instead of straight lines. Some options control the properties of those steps."
+msgstr ""
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"hd_id9438276\n"
+"help.text"
+msgid "Different step types"
+msgstr ""
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"alt_id9078573\n"
+"help.text"
+msgid "Start step icon"
+msgstr ""
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"par_id9047365\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/steppedlinesdlg/step_start_rb\">Start with horizontal line and step up vertically at the end.</ahelp>"
+msgstr ""
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"alt_id05495673\n"
+"help.text"
+msgid "End step icon"
+msgstr ""
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"par_id439028\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/steppedlinesdlg/step_center_x_rb\">Start to step up vertically and end with horizontal line.</ahelp>"
+msgstr ""
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"alt_id9673426\n"
+"help.text"
+msgid "Center X icon"
+msgstr ""
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"par_id4069483\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/steppedlinesdlg/step_end_rb\">Start with horizontal line, step up vertically in the middle of the X values and end with horizontal line.</ahelp>"
+msgstr ""
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"alt_id56635427\n"
+"help.text"
+msgid "Center Y icon"
+msgstr ""
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"par_id0679473\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/steppedlinesdlg/step_center_y_rb\">Start to step up vertically to the middle of the Y values, draw a horizonal line and finish by stepping vertically to the end.</ahelp>"
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"tit\n"
+"help.text"
+msgid "3D View"
+msgstr "3d Ilaala"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"bm_id3156423\n"
+"help.text"
+msgid "<bookmark_value>3D charts</bookmark_value> <bookmark_value>charts; 3D views</bookmark_value> <bookmark_value>illumination; 3D charts</bookmark_value>"
+msgstr "<bookmark_value>taatoota 3D</bookmark_value> <bookmark_value>taatoota; mul'attoota 3D</bookmark_value> <bookmark_value>Calaqqee; taatoota 3D</bookmark_value>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"hd_id3464461\n"
+"help.text"
+msgid "<variable id=\"three_d_view\"><link href=\"text/schart/01/three_d_view.xhp\">3D View</link></variable>"
+msgstr "<variable id=\"three_d_view\"><link href=\"text/schart/01/three_d_view.xhp\">Ilaala 3D </link></variable>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id6998809\n"
+"help.text"
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> or in the context menu of a chart you can choose a chart type. <ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to edit the properties of a three dimensional view for Column, Bar, Pie, and Area charts. For Line and XY (Scatter) charts you can see 3D lines.</ahelp>"
+msgstr "Fuula jalqabaa irratti <link href=\"text/schart/01/wiz_chart_type.xhp\">Masaka Toottoo</link> Taattoo baafata dubbii hallee keessatti akaakuu taattoo filachuu dandeessa. <ahelp hid=\".\" visibility=\"hidden\">Torree ilaalcha fuulsadee, kabala, deloo, fi bali'ina taattoo. Sarara fi XY(faca'iinsa) taattoo sarara 3D ilaaluu dandeessa.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id6942045\n"
+"help.text"
+msgid "The chart preview responds to the new settings that you enter in the dialog."
+msgstr "Durargii taattoo qindaa'ina isa haraa qaaqaa kessatti galchitee gabaasa."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id3806878\n"
+"help.text"
+msgid "When you leave the dialog with OK, the settings are applied permanently."
+msgstr "Yoo qaaqa TOLE jette kessaa baate qindaa'inni yeroo hundaaf fayyada."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id130619\n"
+"help.text"
+msgid "When you leave the dialog with Cancel or Escape, the chart returns to the state when you opened the dialog."
+msgstr "Yoo qaaqa dhiistee yookan irra utaalte kessaa baate, taattoon haalatti deebi'a yoo ati qaaqa bantu."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id8081911\n"
+"help.text"
+msgid "For a 3D chart you can choose <item type=\"menuitem\">Format - 3D View</item> to set perspective, appearance and illumination."
+msgstr "Taattoo 3D dhaaf <item type=\"menuitem\">Dhangii - Ilaaloo 3D </item> filachuun kaadhima, argamsaa fi calaqqee qindeessuu dandeessa."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"hd_id2924283\n"
+"help.text"
+msgid "Perspective"
+msgstr "Tilmaamuu"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id5781731\n"
+"help.text"
+msgid "Enter the values for rotation of the chart on the three axes and for a perspective view."
+msgstr "Gatii marsaa taattootiif siiqqoo sadee irratti fi tilmaama mil'annoo galchi."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id9999694\n"
+"help.text"
+msgid "Set all angles to 0 for a front view of the chart. Pie charts and donut charts are shown as circles."
+msgstr "Kofa hunda 0 tti taattoo mul'anno fuldurattif qindeessi.Taattoo deloo fi taattoo donuutii akka geengootti agarsiifamu."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id2861720\n"
+"help.text"
+msgid "With Right-angled axes enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders."
+msgstr "Siiqqota gara mirgaa waliin hojjeta, qabiyyee taattoo kallattii X fi Y kessatti marsuu dandeessa, innis daangaa taattootiin walmaddii dha."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id2216559\n"
+"help.text"
+msgid "An x value of 90, with y and z set to 0, provides a view from top down to the chart. With x set to -90, you see the bottom of the chart."
+msgstr "Gatiin x inni 90 y fi z waliin 0 tti qindaa'uun, mul'ata gubba gara jala taattootti agarsiisa. Gara jala taattoo x waliin -90 qindaa'e argita."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id7869502\n"
+"help.text"
+msgid "The rotations are applied in the order first x, then y, last z."
+msgstr "Marsaan tartiiba dura x, itti aanee y, dhuma irratti z fayyadama."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id9852900\n"
+"help.text"
+msgid "When shading is enabled and you rotate a chart, the lights are rotated as if they are fixed to the chart."
+msgstr "Yoo gadideessuun hojate fi taattoo marsite fi yoo ifni taattootti murataa'e ifni ni marsama."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id2578203\n"
+"help.text"
+msgid "The rotation axes always relate to the page, not to the chart's axes. This is different from some other chart programs."
+msgstr "Siiqqonni marsaa yeroo hunda fuula walitti foraa'a, taattoo siiqqotaati miti."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id4923245\n"
+"help.text"
+msgid "Select the Perspective check box to view the chart in central perspective as through a camera lens instead of using a parallel projection."
+msgstr "Tilmaama haalhojii tattoo filadhu tilmaama keessaa akka doo'atuuf fakkaftuu mul'istu fayyadami iddoo karoortii walmaddii fayyadamuun."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id3416547\n"
+"help.text"
+msgid "Set the focus length with the spin button. 100% gives a perspective view where a far edge in the chart looks approximately half as big as a near edge."
+msgstr "Dheerina xiyyeffanna qabduu qaanxii waliin qindeessi. 100% tilmaama mul'ataa kenna yommuu afoon fagoo guddinni taattoo tilmaaman walakka afoo cinaa fakkaatu."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id3791924\n"
+"help.text"
+msgid "Older versions of %PRODUCTNAME cannot display the percentage of perspective the same way as the current version."
+msgstr "Fooyyeen durattii %PRODUCTNAME kan agarsiisa paarsantii tilmaamaa foyyee ammee waliin tokko ta'e."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id7623828\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">If Right-angled axes is enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders. Right-angled axes is enabled by default for newly created 3D charts. Pie and Donut charts do not support right-angled axes.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Yoo kofni mirgaa dalage,qabiyyee taattoo kallattii X fi Y qofatti marsuu dandeessa. Innis,walmaddii daangaa taattootti. Siiqqoon kofa sirrii durtiin taattoo haraa 3D dhaan uumame dandeesifama . Deloo fi Donuutiin siiqqota kofa sirrii hin deegarani.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id4721823\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the x axis. The preview responds to the new settings.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Marsaa taattoo siilloo x irratti qindeessi. Durargiin qindaa'ina haraaf gabaasa.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id5806756\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the y axis. The preview responds to the new settings.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Marsaa taattoo siilloo y irratti qindeessi. Durargiin qindaa'ina haraaf gabaasa.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id8915372\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the z axis. The preview responds to the new settings.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Marsaa taattoo siilloo z irratti qindeessi. Durargiin qindaa'ina haraaf gabaasa.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id6070436\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Mark the Perspective box to view the chart as through a camera lens. Use the spin button to set the percentage. With a high percentage nearer objects look bigger than more distant objects.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Sanduuqa itti aanee dhufu doo'innee fakkaftuu keessatti mul'isuuf mallattoo itti godhi. Paarsanteejii qindeessuuf qaanxii qabduu fayyadamai. Paarsanteejii baay'een wanti dhiyoo jiru wanta fagoo jiru irra guddaa fakkaata.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"hd_id7564012\n"
+"help.text"
+msgid "Appearance"
+msgstr "Danaa"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id1186254\n"
+"help.text"
+msgid "Select a scheme from the list box."
+msgstr "Gurmoo sanduuqa tarree irraa filadhu."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id7432477\n"
+"help.text"
+msgid "By selecting a scheme, the check boxes and the light sources are set accordingly."
+msgstr "Gurmoo filachuun, sanduuqa filannoo fi maddi ifaa haalaa galuumsaan qindaa'u."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id7141026\n"
+"help.text"
+msgid "If you mark or unmark a combination of check boxes that is not given by the Realistic or Simple scheme, you create a Custom scheme."
+msgstr "Yoo makaa sanduuqa filannoo mallatteesite yookan mallatttessu baatte, gurmoo qabataman yookan gurmoo salphaan hin kennamu, gurmoo baratamaa uumta."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id1579027\n"
+"help.text"
+msgid "Mark <emph>Shading</emph> to use the Gouraud method for rendering the surface, otherwise a flat method is used."
+msgstr "Gaadideessuu <emph>Mallatteessi</emph> mala giraawundii haala irrataatiif fayyadami, yoo ta'uu baate malli batteetu faayyada."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id5624561\n"
+"help.text"
+msgid "The flat method sets a single color and brightness for each polygon. The edges are visible, soft gradients and spot lights are not possible."
+msgstr "Mallii batteen halluu baaqqee fi balqeessisaa pooligoonii hindaaf qindeessa."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id5901058\n"
+"help.text"
+msgid "The Gouraud method applies gradients for a smoother, more realistic look."
+msgstr "Malli giraawundii siimessa garagartoof fayyadama, baay'een qabatamaa fakkaata."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id8469191\n"
+"help.text"
+msgid "Mark <emph>Object Borders</emph> to draw lines along the edges."
+msgstr "Daangaa wantaa <emph>Mallateessi</emph> qarqara irratti sarara kaasuuf."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id4407483\n"
+"help.text"
+msgid "Mark <emph>Rounded Edges</emph> to smooth the edges of box shapes."
+msgstr "Qarqara kolboo <emph>Mallateessi</emph> qarqara boca sanduuqa siimessuuf."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id8531449\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a scheme from the list box, or click any of the check boxes below.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gurmoo sanduuqa tarree keessaa filadhu yookan sanduuqa filannoo gadii cuqaasi.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id9183935\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies Gouraud shading if marked, or flat shading if unmarked.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Yoo mallatteffame gaadideessu giraaawundii fayyadami yookan yoo hin mallatteefamne gaadideessu battee fayyadami .</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id946684\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows borders around the areas by setting the line style to Solid.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Haala sararaa jajjabootti qindeessuun daangaa naannoo bal'inaa agarsiisa.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id9607226\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Edges are rounded by 5%.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Qarqarri kolboo 5% marfama.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"hd_id1939451\n"
+"help.text"
+msgid "Illumination"
+msgstr "Calaqqee"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id9038972\n"
+"help.text"
+msgid "Set the light sources for the 3D view."
+msgstr "Mul'annoo 3D dhaaf madda ifaa qindeessi."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id6531266\n"
+"help.text"
+msgid "Click any of the eight buttons to switch a directed light source on or off."
+msgstr "Qabduu saddeettan keessaa ifa kallattii banuu yookan cufuu irraatti biliqsuuf cuqaasi."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id6173894\n"
+"help.text"
+msgid "By default, the second light source is switched on. It is the first of seven \"normal\", uniform light sources. The light source number one projects a specular light with highlights."
+msgstr "Durtiin maddi ifaa inni lammaffan ni biliqa. Innis tokkoffaa torban \"normal\" keessa madda ifaa walfakkaataniti.Maddi ifaa lakkofsa waajama tokkoo balqeessisuu ifaa shoola waliin ta'a."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id2761314\n"
+"help.text"
+msgid "For the selected light source, you can then choose a color and intensity in the list box just below the eight buttons. The brightness values of all lights are added, so use dark colors when you enable multiple lights."
+msgstr "Madda ifaa filameef, halluu filuu fi hamma saduuqa tarree keessatti qabduu saddetanii gadi ta'a. Gatiin balaqeessa'uu ifa hundaa ni ida'ama. Kanaafuu yoo ifa karaa baay'een dandeesiftu halluu dukkana'aa fayyadami."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id3912778\n"
+"help.text"
+msgid "The small preview inside this tab page has two sliders to set the vertical and horizontal position of the selected light source. The light source always aims to the middle of the object."
+msgstr "Durargii xiqqaan sarjaa fi surdala qabannoo qindeessuuf madda ifa filamee fuula caancalee keessatti islaayiderii lama qaba."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id3163853\n"
+"help.text"
+msgid "The button in the corner of the small preview switches the internal illumination model between a sphere and a cube."
+msgstr "Qabannoon xiyyoo durargii xiqqaa keessaa calaqqee gara keessaa halata mulullee fi kiyuubii gidduu agarsiisa."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id121158\n"
+"help.text"
+msgid "Use the Ambient light list box to define the ambient light which shines with a uniform intensity from all directions."
+msgstr "Saduuqa taree ifa baramaa fayyadamii ifa baramaa qindeessuuf kan kallattii hundaan irraa haala walfakkatan ifa ibsu."
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id2423780\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Drag the right slider to set the vertical height and direction of the selected light source.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Islaayidarii gara mirgaa harkisi dheerina sarjaa fi kallattii madda ifa filamee qindeessuuf.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id2569658\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Drag the bottom slider to set the horizontal position and direction of the selected light source.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Islaayidarii gara jalaa harkisi qabannoo sardala fi kallattii madda ifa filamee qindeessuuf.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id6394238\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to switch between an illumination model of a sphere or a cube.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gidduu halata calaqqee mulullee yookan kiyuubii jijjiiruuf cuqaasi.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id533768\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to enable or disable the specular light source with highlights.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Balaqqisuu madda ifaa shoola waliin dandeesisuuf yookan dhaamsuuf cuqaasi.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id7214270\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to enable or disable the uniform light source.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Madda ifaa walfakkaataa dandeesisuuf yookan dhaamsuuf cuqaasi.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id2186346\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color for the selected light source.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Madda ifaa filameef halluu fili.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id1331217\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color using the color dialog.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Qaaqa halluu fayyadamuun halluu fili.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id393993\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color for the ambient light.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ifa baramaaf halluu fili.</ahelp>"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id5871761\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color using the color dialog.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Qaaqa halluu fayyadamuun halluu fili.</ahelp>"
+
+#: type_area.xhp
+msgctxt ""
+"type_area.xhp\n"
+"tit\n"
+"help.text"
+msgid "Chart Type Area"
+msgstr "Akaakuu Bal'ina Taattoo"
+
+#: type_area.xhp
+msgctxt ""
+"type_area.xhp\n"
+"bm_id4130680\n"
+"help.text"
+msgid "<bookmark_value>area charts</bookmark_value><bookmark_value>chart types;area</bookmark_value>"
+msgstr "<bookmark_value>bal'ina taattoo</bookmark_value><bookmark_value>chart types;area</bookmark_value>"
+
+#: type_area.xhp
+msgctxt ""
+"type_area.xhp\n"
+"hd_id310678\n"
+"help.text"
+msgid "<variable id=\"type_area\"><link href=\"text/schart/01/type_area.xhp\">Chart Type Area</link></variable>"
+msgstr "<variable id=\"type_area\"><link href=\"text/schart/01/type_area.xhp\">Akaakuu Bal'ina Taattoo</link></variable>"
+
+#: type_area.xhp
+msgctxt ""
+"type_area.xhp\n"
+"par_id916776\n"
"help.text"
msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
msgstr "Akaakuu taattoo fuula duraa <link href=\"text/schart/01/wiz_chart_type.xhp\">Taattoo Masaka</link> irraa filuu ni dandeessa."
-#: type_line.xhp
+#: type_area.xhp
msgctxt ""
-"type_line.xhp\n"
-"hd_id9826349\n"
+"type_area.xhp\n"
+"hd_id961943\n"
"help.text"
-msgid "Line"
-msgstr "Sarara"
+msgid "Area"
+msgstr "Bal'ina"
-#: type_line.xhp
+#: type_area.xhp
msgctxt ""
-"type_line.xhp\n"
-"par_id2334665\n"
+"type_area.xhp\n"
+"par_id631733\n"
"help.text"
-msgid "A line chart shows values as points on the y axis. The x axis shows categories. The y values of each data series can be connected by a line."
-msgstr "Taattoon sarara gatiiwwan akka tuqaaleetti siiqqee y irratti agarsiisa.Siiqqee x kutaalee agarsiisa. Gatiiwwan deetaa walfaannee tokkoon tokko isaanii sararan walindhamu."
+msgid "An area chart shows values as points on the y axis. The x axis shows categories. The y values of each data series are connected by a line. The area between each two lines is filled with a color. The area chart's focus is to emphasize the changes from one category to the next."
+msgstr "Bal'inni taattoo gatii siilloo y irratti akka qabxiitii agarsiisa. Siilloon x akaakuu agarsiisa. Gatiin y walfakanne deetaa maraa sararaan wal qabata. Bal'inni sararoota lamaan gidduu jiru halluun guutama. Taattoon bal'inaa kan irratti xiyyeefatu jijjiiraa akaakuu tokko irra gara birootti."
-#: type_line.xhp
+#: type_area.xhp
msgctxt ""
-"type_line.xhp\n"
-"par_id8956572\n"
+"type_area.xhp\n"
+"par_id7811822\n"
"help.text"
-msgid "Points only - this subtype plots only points."
-msgstr "Tuqaalee qofa - kutaan citaa kun tuqaalee qofa pilootessa."
+msgid "Normal - this subtype plots all values as absolute y values. It first plots the area of the last column in the data range, then the next to last, and so on, and finally the first column of data is drawn. Thus, if the values in the first column are higher than other values, the last drawn area will hide the other areas."
+msgstr "Baratamoo -Akaakuu xiqqaan kun gatii hunda akka of danda'aa y ti kaasa. Dursee bal'ina tarjaa dhumaa hangii deetaa irratti kaase itti aanee hanga dhumaatti fi kanaaf kan kan fakkata fi dhuma irratti jalqabni tarjaa deetaa ni kaafama.kanaaf, yoo gatiin tarjaa duraa irra guddaa gatii biroo ta'e bal'inni dhuma irratti kaafamu bal'inoota biroo dhoksa."
-#: type_line.xhp
+#: type_area.xhp
msgctxt ""
-"type_line.xhp\n"
-"par_id500808\n"
+"type_area.xhp\n"
+"par_id3640247\n"
"help.text"
-msgid "Points and lines - this subtype plots points and connects points of the same data series by a line."
-msgstr "Tuqaalee fi sararoota - kun tuqaalee pilootessuu fi tuqaalee deetaa walfaannee walfakkaata sararan walindha."
+msgid "Stacked - this subtypes plots values cumulatively stacked on each other. It ensures that all values are visible, and no data set is hidden by others. However, the y values no longer represent absolute values, except for the last column which is drawn at the bottom of the stacked areas."
+msgstr "Walirra Tuulamaa- Akaakuun xiqqaan kun gatii waliigalatti wal'irra tuulamaa tokko tokkoo kaasa. Gatii martuu akka mul'atan mirkaneesse deetaan kamiyyuu deetaa birootiin hin dhokatu. Haata'u malee gatiin y hammana gatii y murtaa'ee bakka hin bu'u. Tarsaa dhumaa qofaaf yoo ta'e malee kan garjallaa walirra tuulamaa irratti ka'e."
-#: type_line.xhp
+#: type_area.xhp
msgctxt ""
-"type_line.xhp\n"
-"par_id8366649\n"
+"type_area.xhp\n"
+"par_id4585100\n"
"help.text"
-msgid "Lines only - this subtype plots only lines."
-msgstr "Sararoota qofa - citni akaakuu kun sararoota qofa pilootesa."
+msgid "Percent - this subtype plots values cumulatively stacked on each other and scaled as percentage of the category total."
+msgstr "Dhibbayyaa - akaakuun xiqqaan gatii kaastuu kun waliigalatti walirra tuulaa fi akka akaakuu dhibbeentaa madaalli waliigalaati."
-#: type_line.xhp
+#: type_bubble.xhp
msgctxt ""
-"type_line.xhp\n"
-"par_id476393\n"
+"type_bubble.xhp\n"
+"tit\n"
"help.text"
-msgid "3D lines - this subtype connects points of the same data series by a 3D line."
-msgstr "Sararoota 3D - citni akaakuu kun tuqaalee deetaa walfaannee walfakkaataa sarara 3Dn walindha."
+msgid "Chart Type Bubble"
+msgstr "Hoomacha gosa taattoo"
-#: type_line.xhp
+#: type_bubble.xhp
msgctxt ""
-"type_line.xhp\n"
-"par_id2655720\n"
+"type_bubble.xhp\n"
+"bm_id2183975\n"
"help.text"
-msgid "Mark <emph>Stack series</emph> to arrange the points' y values cumulative above each other. The y values no longer represent absolute values, except for the first column which is drawn at the bottom of the stacked points. If you select <emph>Percent</emph>, the y values are scaled as percentage of the category total."
-msgstr "Gatiiwwan tuqaalee y tokko tokkoo kuusama isaanii gubbaa irratti qindeessuuf <emph>Tartiiba walfaannee</emph> mallateessi.Tarjaa duraa tuqaalee tartiiba jalatti fakkasame malee, gatiiwwan y gatiiwwan sirrii bakka hin bu`ani. Osoo <emph>dhibbayyaa</emph> filte, gatiiwwan y akka akaakuu ida`amati madaalamu."
+msgid "<bookmark_value>bubble charts</bookmark_value> <bookmark_value>chart types;bubble</bookmark_value>"
+msgstr "<bookmark_value>taattoowwan hoomachaa</bookmark_value> <bookmark_value>gosawwan taattoo;hoomacha</bookmark_value>"
-#: type_line.xhp
+#: type_bubble.xhp
msgctxt ""
-"type_line.xhp\n"
-"par_id3682058\n"
+"type_bubble.xhp\n"
+"hd_id1970722\n"
"help.text"
-msgid "Mark <emph>Smooth lines</emph> to draw curves through the points instead of straight lines. Click <emph>Properties</emph> for a <link href=\"text/schart/01/smooth_line_properties.xhp\">dialog</link> to change the curves' properties."
-msgstr "Iddoo muraalee sarara sirrii qonyoota kaasuuf<emph>Sararoota Simeessa</emph> mallatteessi. <emph>Amaloota</emph> cuqaasi <link href=\"text/schart/01/smooth_line_properties.xhp\">Qaaqa</link>f amaloota qonyoo jijjiiri."
+msgid "<variable id=\"type_bubble\"><link href=\"text/schart/01/type_bubble.xhp\">Chart Type Bubble</link></variable>"
+msgstr "<variable id=\"type_bubble\"><link href=\"text/schart/01/type_bubble.xhp\">Hoomacha gosa taattoo</link></variable>"
-#: wiz_data_series.xhp
+#: type_bubble.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
+"type_bubble.xhp\n"
+"par_id40589\n"
+"help.text"
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
+msgstr "Akaakuu taattoo fuula duraa <link href=\"text/schart/01/wiz_chart_type.xhp\">Taattoo Masaka</link> irraa filuu ni dandeessa."
+
+#: type_bubble.xhp
+msgctxt ""
+"type_bubble.xhp\n"
+"hd_id0526200904491284\n"
+"help.text"
+msgid "Bubble"
+msgstr "Hoomacha"
+
+#: type_bubble.xhp
+msgctxt ""
+"type_bubble.xhp\n"
+"par_id0526200904491222\n"
+"help.text"
+msgid "A bubble chart shows the relations of three variables. Two variables are used for the position on the X-axis and Y-axis, while the third variable is shown as the relative size of each bubble."
+msgstr "Taattoon homachaa walitti dhufeenya jijjiramoota sadii agarsiisa. Qubachiisa siiqqee-X fi siiqqee-Y jijjiiramoota lamaan fayyadama, jijjiiramaan sadaffaa akka hammamtaa firoomaa hoomichaawwan tokko tokkootti agarsiifama."
+
+#: type_bubble.xhp
+msgctxt ""
+"type_bubble.xhp\n"
+"par_id0526200906040162\n"
+"help.text"
+msgid "The data series dialog for a bubble chart has an entry to define the data range for the Bubble Sizes."
+msgstr "Taattoo homachaaf qaaqni adeemsa deetaa galfata hamamtaa hoomachaaf hangii deetaa qindeessuu qaba."
+
+#: type_column_bar.xhp
+msgctxt ""
+"type_column_bar.xhp\n"
"tit\n"
"help.text"
-msgid "Chart Wizard - Data Series"
-msgstr "Taattoo Masaka - Deetaa walfaannee"
+msgid "Chart Type Column and Bar"
+msgstr "Akaakuu Taattoo Tarjaa fi Kabala"
-#: wiz_data_series.xhp
+#: type_column_bar.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"bm_id8641621\n"
+"type_column_bar.xhp\n"
+"bm_id4919583\n"
"help.text"
-msgid "<bookmark_value>order of chart data</bookmark_value><bookmark_value>data series</bookmark_value>"
-msgstr "<bookmark_value>order of chart data</bookmark_value><bookmark_value>data series</bookmark_value>"
+msgid "<bookmark_value>column charts</bookmark_value><bookmark_value>bar charts</bookmark_value><bookmark_value>chart types;column and bar</bookmark_value>"
+msgstr "<bookmark_value>column charts</bookmark_value><bookmark_value>bar charts</bookmark_value><bookmark_value>chart types;column and bar</bookmark_value>"
-#: wiz_data_series.xhp
+#: type_column_bar.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"hd_id6124149\n"
+"type_column_bar.xhp\n"
+"hd_id649433\n"
"help.text"
-msgid "<variable id=\"wiz_data_series\"><link href=\"text/schart/01/wiz_data_series.xhp\">Chart Wizard - Data Series</link></variable>"
-msgstr "<variable id=\"wiz_data_series\"><link href=\"text/schart/01/wiz_data_series.xhp\">Taattoo Masaka - Deetaa Walfaannee</link></variable>"
+msgid "<variable id=\"type_column_bar\"><link href=\"text/schart/01/type_column_bar.xhp\">Chart Type Column and Bar</link></variable>"
+msgstr "<variable id=\"type_column_bar\"><link href=\"text/schart/01/type_column_bar.xhp\">Akaakuu Taattoo Tarjaa fi Kabala</link></variable>"
-#: wiz_data_series.xhp
+#: type_column_bar.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id9651478\n"
+"type_column_bar.xhp\n"
+"par_id3430585\n"
"help.text"
-msgid "On this page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can change the source range of all data series separately, including their labels. You can also change the range of the categories. You can first select the data range on the Data Range page and then remove unnecessary data series or add data series from other cells here."
-msgstr "Fuula <link href=\"text/schart/01/wiz_chart_type.xhp\">Taattoo Masaka</link> kana irratti hammangaa maddaa kan walfaannee deetaa hundaa addaan basuun, moggaasolee isaanii qabatee jijjiiruu ni dandeesa. dabalatan akaakuuwwan hammamgaa jijjiiruun ni danda`ama. Dura fuula Data Range irraa hammangaa deetaa filuunii fi deetaa walfaannee hin barbaachifne haquun ykn man`ee biraa irraa walfaannee deetaa dabaluun ni danda`ama."
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
+msgstr "Akaakuu taattoo fuula duraa <link href=\"text/schart/01/wiz_chart_type.xhp\">Taattoo Masaka</link> irraa filuu ni dandeessa."
-#: wiz_data_series.xhp
+#: type_column_bar.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id6326487\n"
+"type_column_bar.xhp\n"
+"hd_id9826960\n"
"help.text"
-msgid "If there seem to be too many options on this page, just define the data range on the Chart Wizard - Data Range page and skip this page."
-msgstr "Fuula kana irratti yoo filannooleen hedduun akka argaman barbaadame, hammangaa deetaa fuula Chart Wizard - Data Range fi fuula kana kan dhosku ibsi."
+msgid "Column"
+msgstr "Tarjaa"
-#: wiz_data_series.xhp
+#: type_column_bar.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id686361\n"
+"type_column_bar.xhp\n"
+"par_id2244026\n"
"help.text"
-msgid "This dialog is only available for charts based on a Calc or Writer table."
-msgstr "Qaaqan kun taattoolee gabatee calc ykn Writer irratti hundaa`anniif qofa argama."
+msgid "This type shows a bar chart or bar graph with vertical bars. The height of each bar is proportional to its value. The x axis shows categories. The y axis shows the value for each category."
+msgstr "Akaakuun kun taattoo kabala yookan caatoo kabala sarjaa kabalootaa waliin agarsiisa. Dheerinni kabala tokkon tokkoo gitaawaa gatii isaati. Siilloon x akaakuu agarsiisa. Siilloon y gatii akaakuu tokkoon tokkoo agarsiisa."
-#: wiz_data_series.xhp
+#: type_column_bar.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"hd_id9241615\n"
+"type_column_bar.xhp\n"
+"par_id1281167\n"
+"help.text"
+msgid "Normal - this subtype shows all data values belonging to a category next to each other. Main focus is on the individual absolute values, compared to every other value."
+msgstr "Baratamoo - Akaakuu xiqqaan gatii deetaa akaakuu hunda walitti aansee dhufuu agarsiisa. Xiyyeffannoo guddaan tokkoon tokkoo gatii deetaa kan biroo waliin wal dorgomsiisu dha."
+
+#: type_column_bar.xhp
+msgctxt ""
+"type_column_bar.xhp\n"
+"par_id3249000\n"
+"help.text"
+msgid "Stacked - this subtype shows the data values of each category on top of each other. Main focus is the overall category value and the individual contribution of each value within its category."
+msgstr "Walirra Tuulaa -Akaakuu xiqqaan gatii deetaa akaakuu tokkoon tokkoo gubbaa walii irratti akka argaman agarsiisa. Xiyyeffanaa guddaan akaakuun hundi fi tokkoon tokkoo gatii akaakuu isaa waliin gahee qabu adda baasudha."
+
+#: type_column_bar.xhp
+msgctxt ""
+"type_column_bar.xhp\n"
+"par_id6968901\n"
+"help.text"
+msgid "Percent - this subtype shows the relative percentage of each data value with regard to the total of its category. Main focus is the relative contribution of each value to the category's total."
+msgstr "Dhiibbayyaa - akaakuu xiqqaan firummaa dhibbeentaa tokkoon tokkoo gatiii deetaa waligala akaakuu hundaa agarsiisa. Xiyyeffannoo inni guddaan gahee deetaan fira ta'aan gatii hundaaa akaakuu maraan qaban beekudha."
+
+#: type_column_bar.xhp
+msgctxt ""
+"type_column_bar.xhp\n"
+"par_id2224494\n"
+"help.text"
+msgid "You can enable a <link href=\"text/schart/01/three_d_view.xhp\">3D view</link> of the data values. The \"realistic\" scheme tries to give the best 3D look. The \"simple\" scheme tries to mimic the chart view of other Office products."
+msgstr "Gatii deetaa <link href=\"text/schart/01/three_d_view.xhp\">3D view</link> dandeessisuu dandeessa. Gurmoon \"realistic\" 3D fakkaatti isaa bareechee mal akka fakkatu kenna. Gurmoon \"simple\" taattoo mul'annoo waajjira oomisha biroo agarsiisuu yaala."
+
+#: type_column_bar.xhp
+msgctxt ""
+"type_column_bar.xhp\n"
+"par_id7359233\n"
+"help.text"
+msgid "For 3D charts, you can select the shape of each data value from Box, Cylinder, Cone, and Pyramid."
+msgstr "Taattoo 3D dhhf, boca gatii tokkoon tokko deetaa Saduuqa, silinderii,koonii fi piraamidii irraa filachuu dandeessa."
+
+#: type_column_bar.xhp
+msgctxt ""
+"type_column_bar.xhp\n"
+"hd_id955839\n"
+"help.text"
+msgid "Bar"
+msgstr "Kabala"
+
+#: type_column_bar.xhp
+msgctxt ""
+"type_column_bar.xhp\n"
+"par_id6596881\n"
+"help.text"
+msgid "This type shows a bar chart or bar graph with horizontal bars. The length of each bar is proportional to its value. The y axis shows categories. The x axis shows the value for each category."
+msgstr "Akaakuun kun kabala taattoo ykn kabala caatoo kabala dalgee agarsiisa. Dheerinni kabala tokkoon tokkoo gatii isaa waliin walgita. Siilloon y akaakuu agarsiisa. Siilloon x gatoo akaakuu hundaa agarsiisa."
+
+#: type_column_bar.xhp
+msgctxt ""
+"type_column_bar.xhp\n"
+"par_id8750572\n"
+"help.text"
+msgid "The subtypes are the same as for the Column type."
+msgstr "Akaakuu xiqqaan gosa tarjaa waliin walfakkata."
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"tit\n"
+"help.text"
+msgid "Chart Type Column and Line"
+msgstr "Akaakuu Taattoo fi Kabala"
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"bm_id5976744\n"
+"help.text"
+msgid "<bookmark_value>column and line charts</bookmark_value><bookmark_value>chart types;column and line</bookmark_value><bookmark_value>combination charts</bookmark_value>"
+msgstr "<bookmark_value>column and line charts</bookmark_value><bookmark_value>chart types;column and line</bookmark_value><bookmark_value>combination charts</bookmark_value>"
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"hd_id8596453\n"
+"help.text"
+msgid "<variable id=\"type_column_line\"><link href=\"text/schart/01/type_column_line.xhp\">Chart Type Column and Line</link></variable>"
+msgstr "<variable id=\"type_column_line\"><link href=\"text/schart/01/type_column_line.xhp\">Akaakuu Taattoo fi Kabala</link></variable>"
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id4818567\n"
+"help.text"
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
+msgstr "Akaakuu taattoo fuula duraa <link href=\"text/schart/01/wiz_chart_type.xhp\">Taattoo Masaka</link> irraa filuu ni dandeessa."
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"hd_id2451551\n"
+"help.text"
+msgid "Column and Line"
+msgstr "Tarjaa fi Sarara"
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id3101901\n"
+"help.text"
+msgid "A Column and Line chart is a combination of a <link href=\"text/schart/01/type_column_bar.xhp\">Column chart</link> with a <link href=\"text/schart/01/type_line.xhp\">Line chart</link>."
+msgstr "Tarjaa fi sararri taattoo makaa <link href=\"text/schart/01/type_column_bar.xhp\">Taattoo tarjaa</link> waliin <link href=\"text/schart/01/type_line.xhp\">sarara taattoo</link>."
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id7910397\n"
+"help.text"
+msgid "Select one of the variants"
+msgstr "Addaba'oo ta'e tokko filadhu"
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id5244300\n"
+"help.text"
+msgid "Columns and Lines. The rectangles of the column data series are drawn side by side so that you can easily compare their values."
+msgstr "Tarjaa fi Sararoota. Sarjaan reektangilii walfakkannee deetaa moggaa moggaadhaan kaafaman kanaaf gatii isaanii haala salphaan dorgomsiisi."
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id7163609\n"
+"help.text"
+msgid "Stacked Columns and Lines. The rectangles of the column data series are drawn stacked above each other, so that the height of a column visualizes the sum of the data values."
+msgstr "Tarjaa walirra tuullee fi Sararoota. Reektaangiliin sarjaa walfakkannee deetaa walii olitti kuufama kanaaf, dheerinni tarjaa ida'ama gatii deetaa mul'isa."
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id1842097\n"
+"help.text"
+msgid "You can insert a second y-axis with <link href=\"text/schart/01/04040000.xhp\">Insert - Axes</link> after you finish the wizard."
+msgstr "Siilloo y suuquu dandeessa <link href=\"text/schart/01/04040000.xhp\">Siiqqota-Suuqaa</link> erga masaka xumurteen booda."
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"hd_id8297677\n"
+"help.text"
+msgid "To specify a data range"
+msgstr "Hangii deetaa ifteessuuf"
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id8871120\n"
+"help.text"
+msgid "The leftmost columns (or the top rows) of the selected data range provide the data that are shown as Columns objects. The other columns or rows of the data range provide the data for the Lines objects. You can change this assignment in the <emph>Data Series</emph> dialog."
+msgstr "Sarjaan gara bitaa (yookan tarree gubbaa) hangi deetaa filamee deetaa akka wanta tarjaatti kenna. Sarjaan biroo yookan tarreen hanga deeataa sarara wantaatiif kenna. Mogaasa qaaqaa kana jijjiiruu <emph>Walfakkannee deetaa</emph> dandeessa."
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id2952055\n"
+"help.text"
+msgid "Select the data range."
+msgstr "Hanga deetaa filadhu."
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id594500\n"
+"help.text"
+msgid "Click one of the options for data series in rows or in columns."
+msgstr "Deetaa walfaanneef terreewwan ykn tarjaalee keessaa filannoo tokko cuuqaasi."
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id1944944\n"
+"help.text"
+msgid "Check whether the data range has labels in the first row or in the first column or both."
+msgstr "Hammangaan deetaa akka moggaasa terree duraa ykn tarjaa duraa ykn lamanuu keessatti qabu mirkaneessi."
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"hd_id6667683\n"
"help.text"
msgid "Organizing data series"
msgstr "Walfaannee deetaa qindeessuu"
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id7159337\n"
+"type_column_line.xhp\n"
+"par_id7616809\n"
"help.text"
msgid "In the Data Series list box you see a list of all data series in the current chart."
msgstr "Taattoo ammee keessaa deetaa walfaannee hunda kan sanduuqa tarree Data Series keessaa ilaali."
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id4921720\n"
+"type_column_line.xhp\n"
+"par_id9770195\n"
+"help.text"
+msgid "The column data series are positioned at the top of the list, the line data series at the bottom of the list."
+msgstr "Sarjaan walfaannee deetaa qabannoo tarree gubbaa irratti fi sararri walfaannee deeataa gara jala tarreetti argama."
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id1446272\n"
"help.text"
msgid "To organize the data series, select an entry in the list."
msgstr "Deetaa walfaannee qindeessuuf, tarree keessaa galfata fili."
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id6627094\n"
+"type_column_line.xhp\n"
+"par_id3779717\n"
"help.text"
msgid "Click Add to add another data series below the selected entry. The new data series has the same type as the selected entry."
msgstr "Galfata filamee gaditti deetaa walfaannee biroo dabaluuf Dabali cuuqaasi."
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id2926419\n"
+"type_column_line.xhp\n"
+"par_id5056611\n"
"help.text"
msgid "Click Remove to remove the selected entry from the Data Series list."
msgstr "Tarree Data Series irraa galfata filame haquuf Haqi cuuqaasi."
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id4443800\n"
+"type_column_line.xhp\n"
+"par_id7786492\n"
"help.text"
-msgid "Use the Up and Down arrow buttons to move the selected entry in the list up or down. This does not change the order in the data source table, but changes only the arrangement in the chart."
-msgstr "Galfata filame tarree gadii fi olii keessaa siiqsuuf qabduulee xiyyaa UP fi Down gargaarami. Kun tartiiba gabatee madda deetaa keessaa hin jijjiiru, garuu taattoo keessaa qindaa'ina qofa jijjiira."
+msgid "Use the Up and Down arrow buttons to move the selected entry in the list up or down. This way you can convert a Column data series to a List data series and back. This does not change the order in the data source table, but changes only the arrangement in the chart."
+msgstr "Xiyya qabduu Olii fi Gadi fayyadami galfata filame tarree keessatti olii fi gadi siqsi. Haala kanaan walfakkaannee sarjaa deetaa gara walfakkaanne tarree deetaatti geedartee duubaatti deebisuu dandeessa. Kun tartiiba gabatee madda deetaa hin jijjiiru garuu qindaa'ina taattoo irrattii qofa jijjiira."
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"hd_id9777520\n"
+"type_column_line.xhp\n"
+"hd_id265816\n"
"help.text"
msgid "Editing data series"
msgstr "Gulaalaa walfaannee deetaa"
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id1474654\n"
+"type_column_line.xhp\n"
+"par_id6768700\n"
"help.text"
msgid "Click an entry in the list to view and edit the properties for that entry."
msgstr "Galfataaf amaloota tarree keessaa ilaaluu fi gulaalaaf galfata cuuqaasi."
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id4855189\n"
+"type_column_line.xhp\n"
+"par_id1924497\n"
"help.text"
msgid "In the Data Ranges list box you see the role names and cell ranges of the data series components."
msgstr "sanduuqa tarree Data Ranges keessaa maqaalee fakkeenyaa fi ma`ee hammangaalee kutaalee walfaannee deetaa ilaali."
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id9475081\n"
+"type_column_line.xhp\n"
+"par_id5081942\n"
"help.text"
msgid "Click an entry, then edit the contents in the text box below."
msgstr "Galfata cuuqaasi, itti aansuun qabeentoota sanduuqa barruu gadii gulaali."
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id4695272\n"
+"type_column_line.xhp\n"
+"par_id2958464\n"
"help.text"
msgid "The label next to the text box states the currently selected role."
msgstr "moggaasni sanduuqa barruutti aanu fakkeenya ammeen filame ibsa."
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id3931699\n"
+"type_column_line.xhp\n"
+"par_id883816\n"
"help.text"
msgid "Enter the range or click <emph>Select data range</emph> to minimize the dialog and select the range with the mouse."
msgstr "qaaqa gadeessuu fi hangii hantuutee waliin filuuf hammangaa saagi ykn <emph>hammanga deetaa fili</emph> cuuqaasi."
-#: wiz_data_series.xhp
-msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id8626667\n"
-"help.text"
-msgid "If you want a data range of multiple cell areas that are not next to each other, enter the first range, then manually add a semicolon at the end of the text box, then enter the other ranges. Use a semicolon as delimiter between ranges."
-msgstr "Yoo hammanga deetaa bal`insoota man`ee hedduu tokko tokkoo isaaniitti kan hin aanne barbaade, hangii jalqabaa saagi, achii dhuma sanduuqa barruu irratti hujeekan tuq lameedabali, itti aansuudhaan hammangalee biraa saagi. Akka daanggessaatti gidduu hammangaleetti tuq lamee gargaarami."
-
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id5971556\n"
+"type_column_line.xhp\n"
+"par_id5091708\n"
"help.text"
msgid "The range for a data role, like Y-Values, must not include a label cell."
msgstr "Hangii fakkeenya deetaaf, kan akka gatiiwwan-Y, dirqama man`ee maggaasa of keessatti hin qabatu."
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"hd_id7622608\n"
+"type_column_line.xhp\n"
+"hd_id974456\n"
"help.text"
msgid "Editing categories or data labels"
msgstr "Gulaalaa akaakuuwwanii ykn moggaasa deetaa"
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id9222693\n"
+"type_column_line.xhp\n"
+"par_id2767113\n"
"help.text"
msgid "Enter or select a cell range that will be used as text for categories or data labels."
msgstr "Man'ee hammanga kan akka barruuti akaakuuwwanii ykn moggaasa deetaaf gargaaru saagi ykn fili."
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id9500106\n"
+"type_column_line.xhp\n"
+"par_id301828\n"
"help.text"
-msgid "Depending on the chart type, the texts are shown on the X axis or as data labels."
-msgstr "Akaakuu taattoo irratti hundaa`uudhaan, barruuleen siiqqee x irratti yookiin akka moggaasa deetaatti agarsiifamu."
+msgid "The values in the Categories range will be shown as labels on the x axis."
+msgstr "Gatiiwwan hammanga akaakuuwwan keessaa siiqqee x irratti akka moggaasaatti agarsiisamu."
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id5201879\n"
+"type_column_line.xhp\n"
+"hd_id8996246\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows a list of all data series in the chart. Click an entry to view and edit that data series. Click <emph>Add</emph> to insert a new series into the list after the selected entry.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Deetaa walfaannee hunda taattoo keessatti agarsiisi. Walfaannee deetaa ilaaluu fi gulaaluuf galfata cuuqaasi. Galfata erga filtee walfaannee haaraa tarreetti saaguuf <emph>Dabali</emph> cuuqaasi.</ahelp>"
+msgid "Inserting chart elements"
+msgstr "Maalimoota taattoo saaguu"
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id2571794\n"
+"type_column_line.xhp\n"
+"par_id5729544\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows all the data ranges used by the data series that is selected in the Data Series list box. Each data range shows the role name and the source range address.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hamamtoota deetaa hunda walfaannee deetaa sanduuqa tarree Data Series keessatti filame agarsiisi. Tokko tokkoon hammangaa deetaa maqaa fakkeenyaa fi teessoo madda hammanga agarsiisu.</ahelp>"
+msgid "Use the Chart Elements page of the Chart Wizard to insert any of the following elements:"
+msgstr "Maalimoota kamiyyuu kan armaan gadii saaguuf fuula maalimoota taattoo kan taattoo masaka gargarami:"
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id2254402\n"
+"type_column_line.xhp\n"
+"par_id2932828\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the source range address from the second column of the Data Range list box. You can change the range in the text box or by dragging in the document. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Madda hamamtaa akaakuu teessoo terree sanduuqa Data Range tarjaa lammataa irraa agarsiisa. Hamamtaa sanduuqa barruu keessatti ni jijjiirama yookiin galmee keessatti harkisuun ni danda`ama. Hamamtaa deetaa calc keesaa filuun qaaqa gadeessuuf, qabduu <emph>Hamamtaa deetaa fili</emph> cuuqaasi.</ahelp>"
+msgid "Chart titles"
+msgstr "Matdureewwan taattoo"
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id2419507\n"
+"type_column_line.xhp\n"
+"par_id9449446\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the source range address of the categories (the texts you can see on the x-axis of a category chart). For an XY-chart, the text box contains the source range of the data labels which are displayed for the data points. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Madda hamamtaa akaakuu teessoo (barruu akaakuu taattoo siiqqee-x irraa ilaaluu dandeessu) agarsiisa. Taattoo-XYf, sanduuqni barruu asxaalee deetaa madda hamamtaa kan tuqaalee deetaaf agarsiisamu ofkeessatti qabata. Hamamtaa deetaa calc keesaa filuun qaaqa hir`isuuf, qabduu <emph>Hamamtaa deetaa fili</emph> cuuqaasi.</ahelp>"
+msgid "Legend"
+msgstr "Waayoo"
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id1091647\n"
+"type_column_line.xhp\n"
+"par_id8122196\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Adds a new entry below the current entry in the Data Series list. If an entry is selected, the new data series gets the same chart type.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Galfata haaraa galfata ammee gaditti tarree walfaannee Deetaa keessatti dabali. Osoo galfani filame, walfaanneen deetaa akaakuu taattoo walfakaata argatu.</ahelp>"
+msgid "Visible grid lines"
+msgstr "Sararoota tarsaa argaman"
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id8831446\n"
+"type_column_line.xhp\n"
+"par_id9909665\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Removes the selected entry from the Data Series list.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Galfata filame tarree Deetaa walfaannee keessaa baasi.</ahelp>"
+msgid "For additional elements use the Insert menu of the chart in edit mode. There you can define the following elements:"
+msgstr "Dabalata maalimootaf taattoo haalata gulaalaa keessaa baafata Saagi gargaarami.Akkasumas maalimoota armaan gadii hiikuu ni dandeessa:"
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id7022309\n"
+"type_column_line.xhp\n"
+"par_id9141819\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves up the selected entry in the Data Series list.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Galfata tarree Deetaa walfaannee keessaa filame ol siiqsi.</ahelp>"
+msgid "Secondary axes"
+msgstr "Siiqqee lammataa"
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id2844019\n"
+"type_column_line.xhp\n"
+"par_id6354869\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves down the selected entry in the Data Series list.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Galfata tarree Deetaa walfaannee keessaa filame gad siiqsi.</ahelp>"
+msgid "Minor grids"
+msgstr "Tarsaa mandhoo"
-#: 05060000.xhp
+#: type_column_line.xhp
msgctxt ""
-"05060000.xhp\n"
+"type_column_line.xhp\n"
+"par_id2685323\n"
+"help.text"
+msgid "Data labels"
+msgstr "Moggaasa deetaa"
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id6042664\n"
+"help.text"
+msgid "Statistics, for example mean values, y error bars and trend lines"
+msgstr "Xiinannoo, fakkeenyaaf gatiiwwan gidduu galeessaa, dogoggora kabala y fi sararoota adeemsa"
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id7889950\n"
+"help.text"
+msgid "To set different data labels for each data series, use the properties dialog of the data series."
+msgstr "Moggaasa deetaa adda addaa tokko tokkoo deetaaa walfaanneef qindeessuuf, amaloota qaaqa deetaa walfaannee gargaarami."
+
+#: type_line.xhp
+msgctxt ""
+"type_line.xhp\n"
"tit\n"
"help.text"
-msgid "Chart Wall"
-msgstr "Daaggoo Taattoo"
+msgid "Chart Type Line"
+msgstr "Akaakuu Taattoo Sarara"
-#: 05060000.xhp
+#: type_line.xhp
msgctxt ""
-"05060000.xhp\n"
-"bm_id3150792\n"
+"type_line.xhp\n"
+"bm_id2187566\n"
"help.text"
-msgid "<bookmark_value>charts; formatting walls</bookmark_value><bookmark_value>formatting;chart walls</bookmark_value>"
-msgstr "<bookmark_value>charts; formatting walls</bookmark_value><bookmark_value>formatting;chart walls</bookmark_value>"
+msgid "<bookmark_value>line charts</bookmark_value><bookmark_value>chart types;line</bookmark_value>"
+msgstr "g<bookmark_value>line charts</bookmark_value><bookmark_value>chart types;line</bookmark_value>"
-#: 05060000.xhp
+#: type_line.xhp
msgctxt ""
-"05060000.xhp\n"
-"hd_id3150792\n"
-"1\n"
+"type_line.xhp\n"
+"hd_id9422894\n"
"help.text"
-msgid "Chart Wall"
-msgstr "Daaggoo Taattoo"
+msgid "<variable id=\"type_line\"><link href=\"text/schart/01/type_line.xhp\">Chart Type Line</link></variable>"
+msgstr "<variable id=\"type_line\"><link href=\"text/schart/01/type_line.xhp\">Akaakuu Taattoo Sarara</link></variable>"
-#: 05060000.xhp
+#: type_line.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3154685\n"
-"2\n"
+"type_line.xhp\n"
+"par_id389721\n"
"help.text"
-msgid "<variable id=\"diagramm\"><ahelp visibility=\"visible\" hid=\".uno:DiagramWall\">Opens the<emph> Chart Wall</emph> dialog, where you can modify the properties of the chart wall. The chart wall is the \"vertical\" background behind the data area of the chart.</ahelp></variable>"
-msgstr "<variable id=\"diagramm\"><ahelp visibility=\"visible\" hid=\".uno:DiagramWall\">Qaaqa daaggoo taattoo<emph> banuun</emph> Iddoo itti amala daaggoo taattoo foyyeesitu. Daaggoon taattoo \"vertical\" bal'ina taattoo deetaa bukkeetti madda keessooti.</ahelp></variable>"
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
+msgstr "Akaakuu taattoo fuula duraa <link href=\"text/schart/01/wiz_chart_type.xhp\">Taattoo Masaka</link> irraa filuu ni dandeessa."
-#: 05040000.xhp
+#: type_line.xhp
msgctxt ""
-"05040000.xhp\n"
+"type_line.xhp\n"
+"hd_id9826349\n"
+"help.text"
+msgid "Line"
+msgstr "Sarara"
+
+#: type_line.xhp
+msgctxt ""
+"type_line.xhp\n"
+"par_id2334665\n"
+"help.text"
+msgid "A line chart shows values as points on the y axis. The x axis shows categories. The y values of each data series can be connected by a line."
+msgstr "Taattoon sarara gatiiwwan akka tuqaaleetti siiqqee y irratti agarsiisa.Siiqqee x kutaalee agarsiisa. Gatiiwwan deetaa walfaannee tokkoon tokko isaanii sararan walindhamu."
+
+#: type_line.xhp
+msgctxt ""
+"type_line.xhp\n"
+"par_id8956572\n"
+"help.text"
+msgid "Points only - this subtype plots only points."
+msgstr "Tuqaalee qofa - kutaan citaa kun tuqaalee qofa pilootessa."
+
+#: type_line.xhp
+msgctxt ""
+"type_line.xhp\n"
+"par_id500808\n"
+"help.text"
+msgid "Points and lines - this subtype plots points and connects points of the same data series by a line."
+msgstr "Tuqaalee fi sararoota - kun tuqaalee pilootessuu fi tuqaalee deetaa walfaannee walfakkaata sararan walindha."
+
+#: type_line.xhp
+msgctxt ""
+"type_line.xhp\n"
+"par_id8366649\n"
+"help.text"
+msgid "Lines only - this subtype plots only lines."
+msgstr "Sararoota qofa - citni akaakuu kun sararoota qofa pilootesa."
+
+#: type_line.xhp
+msgctxt ""
+"type_line.xhp\n"
+"par_id476393\n"
+"help.text"
+msgid "3D lines - this subtype connects points of the same data series by a 3D line."
+msgstr "Sararoota 3D - citni akaakuu kun tuqaalee deetaa walfaannee walfakkaataa sarara 3Dn walindha."
+
+#: type_line.xhp
+msgctxt ""
+"type_line.xhp\n"
+"par_id2655720\n"
+"help.text"
+msgid "Mark <emph>Stack series</emph> to arrange the points' y values cumulative above each other. The y values no longer represent absolute values, except for the first column which is drawn at the bottom of the stacked points. If you select <emph>Percent</emph>, the y values are scaled as percentage of the category total."
+msgstr "Gatiiwwan tuqaalee y tokko tokkoo kuusama isaanii gubbaa irratti qindeessuuf <emph>Tartiiba walfaannee</emph> mallateessi.Tarjaa duraa tuqaalee tartiiba jalatti fakkasame malee, gatiiwwan y gatiiwwan sirrii bakka hin bu`ani. Osoo <emph>dhibbayyaa</emph> filte, gatiiwwan y akka akaakuu ida`amati madaalamu."
+
+#: type_line.xhp
+msgctxt ""
+"type_line.xhp\n"
+"par_id3682058\n"
+"help.text"
+msgid "Choose the <emph>Line type</emph> from the dropdown to select how the points will be connected. You can choose either <emph>Straight</emph> lines, <emph>Smooth</emph> lines to draw curves through the points or <emph>Stepped</emph> lines to draw lines which step from point to point. Click <emph>Properties</emph> to change the properties for the <link href=\"text/schart/01/smooth_line_properties.xhp\">smooth</link> or <link href=\"text/schart/01/stepped_line_properties.xhp\">stepped</link> lines."
+msgstr ""
+
+#: type_net.xhp
+msgctxt ""
+"type_net.xhp\n"
"tit\n"
"help.text"
-msgid "Axis"
-msgstr "Siiqqota"
+msgid "Chart Type Net"
+msgstr "Akaakuu Taattoo Culkee"
-#: 05040000.xhp
+#: type_net.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3149456\n"
-"1\n"
+"type_net.xhp\n"
+"bm_id2193975\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040000.xhp\" name=\"Axis\">Axis</link>"
-msgstr "<link href=\"text/schart/01/05040000.xhp\" name=\"Axis\">Siilloo</link>"
+msgid "<bookmark_value>net charts</bookmark_value><bookmark_value>chart types;net</bookmark_value><bookmark_value>radar charts, see net charts</bookmark_value>"
+msgstr "<bookmark_value>net charts</bookmark_value><bookmark_value>chart types;net</bookmark_value><bookmark_value>radar charts, see net charts</bookmark_value>"
-#: 05040000.xhp
+#: type_net.xhp
msgctxt ""
-"05040000.xhp\n"
-"par_id3150441\n"
-"2\n"
+"type_net.xhp\n"
+"hd_id1990722\n"
"help.text"
-msgid "This opens a submenu to edit axial properties."
-msgstr "Kun amala jiru gulaaluuf baafata xiqqaa bana."
+msgid "<variable id=\"type_net\"><link href=\"text/schart/01/type_net.xhp\">Chart Type Net</link></variable>"
+msgstr "<variable id=\"type_net\"><link href=\"text/schart/01/type_net.xhp\">Akaakuu Taattoo Culkee</link></variable>"
-#: 05040000.xhp
+#: type_net.xhp
msgctxt ""
-"05040000.xhp\n"
-"par_id3154319\n"
-"11\n"
+"type_net.xhp\n"
+"par_id40589\n"
"help.text"
-msgid "The tabs in the dialogs depend on the chart type selected."
-msgstr "Caancalli qaaqaa keessa jiru gosa taattoo filamee irratti hunda'a."
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
+msgstr "Akaakuu taattoo fuula duraa <link href=\"text/schart/01/wiz_chart_type.xhp\">Taattoo Masaka</link> irraa filuu ni dandeessa."
-#: 05040000.xhp
+#: type_net.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3153729\n"
-"3\n"
+"type_net.xhp\n"
+"hd_id1391338\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"X axis\">X axis</link>"
-msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"X axis\">Siilloo X</link>"
+msgid "Net"
+msgstr "Culkee"
-#: 05040000.xhp
+#: type_net.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3147394\n"
-"4\n"
+"type_net.xhp\n"
+"par_id7812433\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">Y axis</link>"
-msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">Siilloo Y</link>"
+msgid "A Net chart displays data values as points connected by some lines, in a grid net that resembles a spider net or a radar tube display."
+msgstr "Taattoon culkee gatiiwwan deetaa akka tuqaalee sararootan walqabataniiti tarsaa culkee kan culkee orbobbiisa fakkaachisuu ykn radaara ujummee agarsiisu keessaatti agarsiisa."
-#: 05040000.xhp
+#: type_net.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3153160\n"
-"9\n"
+"type_net.xhp\n"
+"par_id3512375\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"Secondary X Axis\">Secondary X Axis</link>"
-msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"Secondary X Axis\">Siilloo X lammaffaa</link>"
+msgid "For each row of chart data, a radial is shown on which the data is plotted. All data values are shown with the same scale, so all data values should have about the same magnitude."
+msgstr "Tokko tokkoo tarree deetaaf, caliin iddoo deetaan pilootee ta`uti agarsiisama. Gatiiwwan deetaa hundi madaala walfakkaatu waliin agarsiisamu, kanaaf gatiiwwan deetaa hindi hagammee walfakkaatu qabachuu qabu."
-#: 05040000.xhp
+#: type_pie.xhp
msgctxt ""
-"05040000.xhp\n"
-"par_id3149401\n"
-"10\n"
+"type_pie.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".uno:DiagramAxisA\">Opens a dialog where you can edit the properties of the secondary X axis. To insert a secondary X axis, choose <emph>Insert - Axes</emph> and select <emph>X axis</emph>.</ahelp>"
-msgstr "<ahelp hid=\".uno:DiagramAxisA\">Amala siilloo X lammaffaa gulaaluuf qaaqa bana filadhu <emph>Suuqaa-siiqqota</emph> fi <emph> siilloo X</emph>. filadhu</ahelp>"
+msgid "Chart Type Pie"
+msgstr "Akaakuu Taattoo Deloo"
-#: 05040000.xhp
+#: type_pie.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3145640\n"
-"7\n"
+"type_pie.xhp\n"
+"bm_id7621997\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Secondary Y Axis\">Secondary Y Axis</link>"
-msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Secondary Y Axis\">Siilloo Y lammaffaa</link>"
+msgid "<bookmark_value>donut charts</bookmark_value> <bookmark_value>pie charts;types</bookmark_value> <bookmark_value>chart types;pie/donut</bookmark_value>"
+msgstr "<bookmark_value>taattoota donaatii</bookmark_value> <bookmark_value>taattoota piyaa</bookmark_value> <bookmark_value>akaakuwwan taattoo;piyaa/donaatii</bookmark_value>"
-#: 05040000.xhp
+#: type_pie.xhp
msgctxt ""
-"05040000.xhp\n"
-"par_id3159264\n"
-"8\n"
+"type_pie.xhp\n"
+"hd_id3365276\n"
"help.text"
-msgid "<ahelp hid=\".uno:DiagramAxisB\">Opens a dialog where you can edit the properties of the secondary Y axis. To insert a secondary Y axis, choose <emph>Insert - Axes</emph> and select <emph>Y axis</emph>.</ahelp>"
-msgstr "<ahelp hid=\".uno:DiagramAxisB\">Amala siilloo Y lammaffaa gulaaluuf qaaqa bana. Siilloo Y lammaffaa suuquuf <emph>Suuqaa-Siiqqota</emph> filadhutii <emph>Siilloo Y</emph> filadhu.</ahelp>"
+msgid "<variable id=\"type_pie\"><link href=\"text/schart/01/type_pie.xhp\">Chart Type Pie</link></variable>"
+msgstr "<variable id=\"type_pie\"><link href=\"text/schart/01/type_pie.xhp\">Akaakuu Taattoo Deloo</link></variable>"
-#: 05040000.xhp
+#: type_pie.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3145228\n"
-"5\n"
+"type_pie.xhp\n"
+"par_id245979\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"Z axis\">Z axis</link>"
-msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"Z axis\">Siilloo Z </link>"
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
+msgstr "Akaakuu taattoo fuula duraa <link href=\"text/schart/01/wiz_chart_type.xhp\">Taattoo Masaka</link> irraa filuu ni dandeessa."
-#: 05040000.xhp
+#: type_pie.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3147345\n"
-"6\n"
+"type_pie.xhp\n"
+"hd_id5799432\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"All axes\">All axes</link>"
-msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"All axes\">Siiqqota hunda</link>"
+msgid "Pie"
+msgstr "Deloo"
+
+#: type_pie.xhp
+msgctxt ""
+"type_pie.xhp\n"
+"par_id6549272\n"
+"help.text"
+msgid "A pie chart shows values as circular sectors of the total circle. The length of the arc, or the area of each sector, is proportional to its value."
+msgstr "Taattoon deloo gatiiwwan akka kutaalee geengawaa ida`ama geengoo agarsiisa. Dheerini golboo, ykn bal`inni tokko tokkoo kutaa, gitaalaa gatii isaati."
+
+#: type_pie.xhp
+msgctxt ""
+"type_pie.xhp\n"
+"par_id6529740\n"
+"help.text"
+msgid "Pie - this subtype shows sectors as colored areas of the total pie, for one data column only. In the created chart, you can click and drag any sector to separate that sector from the remaining pie or to join it back."
+msgstr "Deloo - citni kun kutaalee akka bal`ina halluu dibamee ida`ama deloo, tarjaa deetaa tokko qofaaf agarsiisa. Taattoo uumame keessatti, kutaa deloo hafe addaan baasuuf ykn boodatti walqabsiisuuf kutaa kamiyyuu cuqaasuu fi harkisu ni dandeessa."
+
+#: type_pie.xhp
+msgctxt ""
+"type_pie.xhp\n"
+"par_id9121982\n"
+"help.text"
+msgid "Exploded pie - this subtype shows the sectors already separated from each other. In the created chart, you can click and drag any sector to move it along a radial from the pie's center."
+msgstr "Deloo dhowwame- citni akaakuu kun kutaalee aloo jalqaba tokko tokkoo isaanii irraa addaan ba`an agarsiisa. Taattoo uumame keessatti, kutaalee aloo kan donuti qixxalamaanii irraa karaa caliirra siiqsuuf cuqaasuu fi harkisu ni dandeessa."
+
+#: type_pie.xhp
+msgctxt ""
+"type_pie.xhp\n"
+"par_id3808404\n"
+"help.text"
+msgid "Donut - this subtype can show multiple data columns. Each data column is shown as one donut shape with a hole inside, where the next data column can be shown. In the created chart, you can click and drag an outer sector to move it along a radial from the donut's center."
+msgstr "Donuti - citni akaakuu kun tarjaalee deetaa hedduu ni agarsiisa. Tokko tokkoon tarjaa deetaa bool`a keessaa waliin akka boca donuti tokkootti, iddoo tarjaan deetaa itti aanuu agarsiifamuu danda`uutti ni agarsiisama. Taattoo uumame keessatti, kutaalee aloo kan donuti qixxalamaanii irraa karaa caliirra siiqsuuf cuqaasuu fi harkisu ni dandeessa."
+
+#: type_pie.xhp
+msgctxt ""
+"type_pie.xhp\n"
+"par_id2394482\n"
+"help.text"
+msgid "Exploded donut - this subtype shows the outer sectors already separated from the remaining donut. In the created chart, you can click and drag an outer sector to move it along a radial from the donut's center."
+msgstr "Donuti dhowwame - citni akaakuu kun kutaalee aloo jalqaba donut hafe irraa addaan ba`e agarsiisa. Taattoo uumame keessatti, kutaalee aloo kan donuti qixxalamaanii irraa karaa caliirra siiqsuuf cuqaasuu fi harkisu ni dandeessa."
#: type_stock.xhp
msgctxt ""
@@ -3798,7 +5800,7 @@ msgctxt ""
"par_id1022064\n"
"help.text"
msgid "A"
-msgstr "A"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -3806,7 +5808,7 @@ msgctxt ""
"par_id1924192\n"
"help.text"
msgid "B"
-msgstr "B"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -3814,7 +5816,7 @@ msgctxt ""
"par_id3258156\n"
"help.text"
msgid "C"
-msgstr "C"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -3822,7 +5824,7 @@ msgctxt ""
"par_id3161412\n"
"help.text"
msgid "D"
-msgstr "D"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -3830,7 +5832,7 @@ msgctxt ""
"par_id5619373\n"
"help.text"
msgid "E"
-msgstr "E"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -3838,7 +5840,7 @@ msgctxt ""
"par_id6474501\n"
"help.text"
msgid "F"
-msgstr "F"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -3846,7 +5848,7 @@ msgctxt ""
"par_id7411725\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -3894,7 +5896,7 @@ msgctxt ""
"par_id7684560\n"
"help.text"
msgid "2"
-msgstr "2"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -3950,7 +5952,7 @@ msgctxt ""
"par_id4013794\n"
"help.text"
msgid "3"
-msgstr "3"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -4006,7 +6008,7 @@ msgctxt ""
"par_id2374034\n"
"help.text"
msgid "4"
-msgstr "4"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -4062,7 +6064,7 @@ msgctxt ""
"par_id166936\n"
"help.text"
msgid "5"
-msgstr "5"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -4118,7 +6120,7 @@ msgctxt ""
"par_id9461653\n"
"help.text"
msgid "6"
-msgstr "6"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -4401,13 +6403,12 @@ msgid "In Calc, click <emph>Select data range</emph> to minimize the dialog, the
msgstr "Calc, keessaa qaaqa gadeessuuf <emph>hammanga deetaa fili</emph> cuqaasi, itti aansuun hammanga deetaa filuuf harkisi. Yommuu hantuutee gadhiistu, deetaan ni saagama. Hammanga deetaa dabalataan dabaluuf <emph>fili</emph> <emph>hammanga deetaa</emph> cuqaasi. Dirree naqaa qaaqa gadeessame keessaa, galfata booda cuqaasi itti aansuun tuq lamee barreessi. Hammanga itti aanu filuuf harkisi."
#: type_stock.xhp
-#, fuzzy
msgctxt ""
"type_stock.xhp\n"
"par_id8746910\n"
"help.text"
msgid "Click one of the options for data series in rows or in columns."
-msgstr "Deetaa walfaannee tarreewwan ykn tarjaalee keessaaf dirqaalee tokko cuqaasi."
+msgstr "Deetaa walfaanneef terreewwan ykn tarjaalee keessaa filannoo tokko cuuqaasi."
#: type_stock.xhp
msgctxt ""
@@ -4545,645 +6546,365 @@ msgctxt ""
msgid "Select one of the position options. When the chart is finished, you can specify other positions using the Format menu."
msgstr "Dirqalaalee bakkaa tokko fili.Yeroo taattoon xumuramu, baafata Dhangii gargaaramuun bakkoota biraa ifteessuu ni dandeessa."
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
+"type_xy.xhp\n"
"tit\n"
"help.text"
-msgid "Scale"
-msgstr "Madaala"
-
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"bm_id3150868\n"
-"help.text"
-msgid "<bookmark_value>scaling; axes</bookmark_value><bookmark_value>logarithmic scaling along axes</bookmark_value><bookmark_value>charts;scaling axes</bookmark_value><bookmark_value>X axes;scaling</bookmark_value><bookmark_value>Y axes; scaling</bookmark_value>"
-msgstr "<bookmark_value>madaaluu; siiqqota</bookmark_value><bookmark_value>naannoo siiqqotaatti logaarizimii madaaluu </bookmark_value><bookmark_value>taatoota;siiqqota madaaluu</bookmark_value><bookmark_value>X siiqqota;madaaluu</bookmark_value><bookmark_value>siiqqota Y; madaaluu</bookmark_value>"
-
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"hd_id3150868\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/schart/01/05040201.xhp\" name=\"Scale\">Scale</link>"
-msgstr "<link href=\"text/schart/01/05040201.xhp\" name=\"Scale\">Madaala</link>"
-
-#: 05040201.xhp
-#, fuzzy
-msgctxt ""
-"05040201.xhp\n"
-"par_id3154013\n"
-"2\n"
-"help.text"
-msgid "Controls the scaling of the X or Y axis."
-msgstr "Qubachiisa siiqqeewwanii to'ata."
-
-#: 05040201.xhp
-#, fuzzy
-msgctxt ""
-"05040201.xhp\n"
-"par_id3148576\n"
-"79\n"
-"help.text"
-msgid "The axes are automatically scaled by $[officename] so that all values are optimally displayed."
-msgstr "Siilloon Y ofumaan fayyadamuun $[officename] madaalama kanaafuu gatiin guutolaa ni mul'ata."
-
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"par_id3149379\n"
-"3\n"
-"help.text"
-msgid "To achieve specific results, you can manually change the axis scaling. For example, you can display only the top areas of the columns by shifting the zero line upwards."
-msgstr "Bu'aa murtaa'e irra gahuuf, madaallii siilloo harkaan jijjiruu dandeessa. Fakkenyaaf, bali'na gubbaa qofa mul'isuun sarara duwwaa gara oliitti orofuu dandeessa"
-
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"hd_id3154730\n"
-"4\n"
-"help.text"
-msgid "Scale"
-msgstr "Madaala"
-
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"par_id3149400\n"
-"5\n"
-"help.text"
-msgid "You can enter values for subdividing axes in this area. You can automatically set the properties <emph>Minimum, Maximum, Major interval, Minor interval count</emph> and <emph>Reference value</emph>."
-msgstr "Siiqqota bal'ina kana irratti garagar qooduuf gatii galchuu dandeessa. Amaloota shanan ofumaan qindeessi <emph>Gadaantoo, Irrata, Orofaa buraalaa, Orofaa maddee</emph> fi <emph>Gatii raggoo</emph>."
-
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"hd_id3150751\n"
-"6\n"
-"help.text"
-msgid "Minimum"
-msgstr "Gadaantoo"
-
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"par_id3153713\n"
-"7\n"
-"help.text"
-msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MIN\">Defines the minimum value for the beginning of the axis.</ahelp>"
-msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MIN\">Gadaantoo siilloo jalqabaatiif gatii xiqqaa qindeessa.</ahelp>"
+msgid "Chart Type XY"
+msgstr "Akaakuu Taattoo XY"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"hd_id3156385\n"
-"8\n"
+"type_xy.xhp\n"
+"bm_id84231\n"
"help.text"
-msgid "Maximum"
-msgstr "Buraalaa"
+msgid "<bookmark_value>scatter charts</bookmark_value><bookmark_value>XY charts</bookmark_value><bookmark_value>chart types;XY (scatter)</bookmark_value><bookmark_value>error indicators in charts</bookmark_value><bookmark_value>error bars in charts</bookmark_value><bookmark_value>averages in charts</bookmark_value><bookmark_value>statistics in charts</bookmark_value><bookmark_value>variances in charts</bookmark_value><bookmark_value>standard deviation in charts</bookmark_value>"
+msgstr "<bookmark_value>scatter charts</bookmark_value><bookmark_value>XY charts</bookmark_value><bookmark_value>chart types;XY (scatter)</bookmark_value><bookmark_value>error indicators in charts</bookmark_value><bookmark_value>error bars in charts</bookmark_value><bookmark_value>averages in charts</bookmark_value><bookmark_value>statistics in charts</bookmark_value><bookmark_value>variances in charts</bookmark_value><bookmark_value>standard deviation in charts</bookmark_value>"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3159266\n"
-"9\n"
+"type_xy.xhp\n"
+"hd_id9346598\n"
"help.text"
-msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MAX\">Defines the maximum value for the end of the axis.</ahelp>"
-msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MAX\">Buraalaa siilloo dhumaatiif gatii guddaa qindeessa.</ahelp>"
+msgid "<variable id=\"type_xy\"><link href=\"text/schart/01/type_xy.xhp\">Chart Type XY (Scatter)</link></variable>"
+msgstr "<variable id=\"type_xy\"><link href=\"text/schart/01/type_xy.xhp\">Akaakuu Taattoo XY (Bittimfaa)s</link></variable>"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"hd_id3155336\n"
-"10\n"
+"type_xy.xhp\n"
+"par_id2003845\n"
"help.text"
-msgid "Major interval"
-msgstr "Buraalaa orofaa"
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
+msgstr "Akaakuu taattoo fuula duraa <link href=\"text/schart/01/wiz_chart_type.xhp\">Taattoo Masaka</link> irraa filuu ni dandeessa."
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3143218\n"
-"11\n"
+"type_xy.xhp\n"
+"hd_id7757194\n"
"help.text"
-msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_MAIN\">Defines the interval for the main division of the axes.</ahelp> The main interval cannot be larger than the value area."
-msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_MAIN\">Qoqoodama Siilloo dursaaf orofaa siiqqoo qindeessa.</ahelp> Orofaan dursaa irra guddaa gatii bal'inaa hin ta'u."
+msgid "XY (Scatter)"
+msgstr "XY (Bittimfaa)"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"hd_id3154020\n"
-"12\n"
+"type_xy.xhp\n"
+"par_id5977965\n"
"help.text"
-msgid "Minor interval count"
-msgstr "Lakkaawwi orofaa gadaantoo"
+msgid "An XY chart in its basic form is based on one data series consisting of a name, a list of x‑values, and a list of y‑values. Each value pair (x|y) is shown as a point in a coordinate system. The name of the data series is associated with the y‑values and shown in the legend."
+msgstr "Taattoon XY unkaa bu`uura isaa keessatti deetaa walfaannee maqaa, tarree gatiiwwaan‑x, fi tarree gatiiwwan‑y ofkeessatti qabatu tokko irratti hundaa`a. Tokko tokkoon gatii dachaa (x|y) cirna walgita keessaatti akka tuqaati agarsiisama. Maqaan deetaa walfaannee gatiiwwan‑y waliin firooma akkasumas waayoo keessatti agarsiisama."
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3154656\n"
-"13\n"
+"type_xy.xhp\n"
+"par_id4381847\n"
"help.text"
-msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_HELP\">Defines the interval for the subdivision of the axes.</ahelp>"
-msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_HELP\">Orofaa qoqoodama siqqotaaf qindeessa.</ahelp>"
+msgid "Choose an XY chart for the following example tasks:"
+msgstr "Taattoo XY fakkeenya hojoolee armaan gadiif fili:"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"hd_id3150089\n"
-"14\n"
+"type_xy.xhp\n"
+"par_id1336710\n"
"help.text"
-msgid "Reference value"
-msgstr "Gatii raggoo"
+msgid "scale the x‑axis"
+msgstr "siiqqee‑x madaali"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3152990\n"
-"15\n"
+"type_xy.xhp\n"
+"par_id1221655\n"
"help.text"
-msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_ORIGIN\">Specifies at which position to display the values along the axis.</ahelp>"
-msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_ORIGIN\">Qabannoo gatii siilloo kam irratti mul'isuu akka qabdu ibsa.</ahelp>"
+msgid "generate a parameter curve, for example a spiral"
+msgstr "ulaagaa qonyoo uumi, fakkeenyaaf mari"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"hd_id3166432\n"
-"62\n"
+"type_xy.xhp\n"
+"par_id3397320\n"
"help.text"
-msgid "Automatic"
-msgstr "Ofumaan"
+msgid "draw the graph of a function"
+msgstr "faankishinii caatoo fakkasi"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3145389\n"
-"63\n"
+"type_xy.xhp\n"
+"par_id7657399\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_AUTO_ORIGIN\">You must first deselect the <emph>Automatic</emph> option in order to modify the values.</ahelp>"
-msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_AUTO_ORIGIN\">Gatii haaromsuuf duraan dursitee<emph>Ofumaan</emph> filannoo filachuu hin qabdu.</ahelp>"
+msgid "explore the statistical association of quantitative variables"
+msgstr "aloolaa jijjiiramaawwan hangaa firoomina xiinannoo"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3149129\n"
-"64\n"
+"type_xy.xhp\n"
+"par_id8925138\n"
"help.text"
-msgid "Disable this feature if you are working with \"fixed\" values, as it does not permit automatic scaling."
-msgstr "Yoo gatii \"fixed\" tiin dalagde haala kana akka hin hojjenne dhorki, akka inni madaalli ofumaa hin eeyyamne."
+msgid "Your XY chart may have more than one data series."
+msgstr "Taattoon XY kee tarii deetaa walfaannee tokkoo ol qabaachuu danda`a."
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"hd_id3159206\n"
-"16\n"
+"type_xy.xhp\n"
+"hd_id5461897\n"
"help.text"
-msgid "Logarithmic scale"
-msgstr "Madaalli logartimaa"
+msgid "XY Chart Variants"
+msgstr "Addaba'oota Taattoo XY"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3145360\n"
-"17\n"
+"type_xy.xhp\n"
+"par_id8919339\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_LOGARITHM\">Specifies that you want the axis to be subdivided logarithmically.</ahelp>"
-msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_LOGARITHM\">Siiqqoon logartimaan yoo garagar qooduu barbaadde ibsa.</ahelp>"
+msgid "You can choose an XY chart variant on the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link>, or by choosing <item type=\"menuitem\">Format - Chart Type </item>for a chart in edit mode."
+msgstr "Fuula duraa <link href=\"text/schart/01/wiz_chart_type.xhp\">Taattoo Masaka</link> irraa, ykn <item type=\"menuitem\">Dhangii - Akaakuu Taattoo </item>taattoof gulaalaa haalata keessaa filuudhaan taattoo XY addaa filuu ni dandeessa."
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3153956\n"
-"61\n"
+"type_xy.xhp\n"
+"par_id4634235\n"
"help.text"
-msgid "Use this feature if you are working with values that differ sharply from each other. You can use logarithmic scaling to make the grid lines of the axis equidistant but have values that may increase or decrease."
-msgstr "Gatiilee gongumaa gargar ta'aaniin hojechuu yoo barbaadde haala kan fayydami. Madaalli logaartimaa fayyadamuu dandeessa tarsaa sararaa kan siilloo fageenya walqixa, garuu gatii hir'isu yookan dabalu danda'a."
+msgid "The chart is created with default settings. After the chart is finished, you can edit its properties to change the appearance. Line styles and icons can be changed on the <emph>Line</emph>tab page of the data series properties dialog."
+msgstr "Taattoon qindaa`inoota durtii waliin uumama. Taattoon iddoo xumurame booda, mul'annoo jijjiiruuf amaloota isaa gulaaluu dandeessa. Akkaataalee fi sajoolee sarara amaloota qaaqa deetaa walfaannee fuula taabii <emph>Sarara</emph> irratti ni jijjiiramu."
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"hd_id9941404\n"
+"type_xy.xhp\n"
+"par_id5482039\n"
"help.text"
-msgid "Reverse direction"
-msgstr "Kallattii faallaa"
+msgid "Double-click any data point to open the <item type=\"menuitem\">Data Series</item> dialog. In this dialog, you can change many properties of the data series."
+msgstr "Qaaqa <item type=\"menuitem\">Deetaa Walfaannee</item> banuuf tuqaa deetaa kamiyyuu lama cuqaasi. Qaaqa kana keessatti, amaloota baay'ee deetaa walfaannee jijjiiruu dandeessa."
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id5581835\n"
+"type_xy.xhp\n"
+"par_id0805200810492449\n"
"help.text"
-msgid "<ahelp hid=\".\">Defines where the lower and where the higher values are displayed at the axis. The unchecked state is the mathematical direction.</ahelp> That means for Cartesian coordinate systems that the x-axis shows the lower values on the left and the y-axis shows the lower values at the bottom. For polar coordinate systems the mathematical angle axis direction is counterclockwise and the radial axis is from inner to outer."
-msgstr "<ahelp hid=\".\">Gatii guddaa fi xiqqaan siilloo irrati eessatti akka mul'atu qindeessa. Haalli hin mirkaneeffamne kallatii herregatini.</ahelp> Kana jechuun sirna qaxxamura walgitaa kan siilloon x gatii gadii fi siilloon y gatii gadii gara jalaatti agarsiisu. Sirna waggee walgitaaf kofni herregummaa kallattiin siilloo kallatti sa'aatii fi siilloo calii gara keessaati gara alaati."
+msgid "For 2D charts, you can choose <item type=\"menuitem\">Insert - Y Error Bars</item> to enable the display of error bars."
+msgstr "Taattoowwan 2D dhaaf, agarsiisa kabalawwan dogongoraa dandeessisuuf <item type=\"menuitem\">saagi - Kabalawwan dogongoraa Y</item> filachuu dandeessa."
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"hd_id922204\n"
+"type_xy.xhp\n"
+"par_id6221198\n"
"help.text"
-msgid "Type"
-msgstr "Akaakuu"
+msgid "You can enable the display of mean value lines and trend lines using commands on the Insert menu."
+msgstr "Ajajoota baafata Saagi gargaaramuun sararoota gatii gidduu galeessaa fi sararoota adeemsa agarsiisu dandeessa."
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id59225\n"
+"type_xy.xhp\n"
+"hd_id1393475\n"
"help.text"
-msgid "<ahelp hid=\".\">For some types of axes, you can select to format an axis as text or date, or to detect the type automatically.</ahelp> For the axis type \"Date\" you can set the following options."
-msgstr ""
+msgid "Points only"
+msgstr "Tuqaalee Qofa"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id1159225\n"
+"type_xy.xhp\n"
+"par_id6571550\n"
"help.text"
-msgid "Minimum and maximum value to be shown on the ends of the scale."
+msgid "Each data point is shown by an icon. %PRODUCTNAME uses default icons with different forms and colors for each data series. The default colors are set in <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Charts - Default Colors</item>."
msgstr ""
-#: 05040201.xhp
-#, fuzzy
-msgctxt ""
-"05040201.xhp\n"
-"par_id2259225\n"
-"help.text"
-msgid "<ahelp hid=\".\">Resolution can be set to show days, months, or years as interval steps.</ahelp>"
-msgstr "<ahelp hid=\".\">Bal'ina guddaa ykn xiqqaa mul'isuuf agarsiisa jijjiira.</ahelp>"
-
-#: 05040201.xhp
-#, fuzzy
-msgctxt ""
-"05040201.xhp\n"
-"par_id3359225\n"
-"help.text"
-msgid "<ahelp hid=\".\">Major interval can be set to show a certain number of days, months, or years.</ahelp>"
-msgstr "<ahelp hid=\".\">Galmeewwan gaafataa hunda agarsiisuuf filadhu.</ahelp>"
-
-#: 05040201.xhp
-#, fuzzy
-msgctxt ""
-"05040201.xhp\n"
-"par_id4459225\n"
-"help.text"
-msgid "<ahelp hid=\".\">Minor interval can be set to show a certain number of days, months, or years.</ahelp>"
-msgstr "<ahelp hid=\".\">Galmeewwan gaafataa hunda agarsiisuuf filadhu.</ahelp>"
-
-#: 05020200.xhp
-msgctxt ""
-"05020200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Title"
-msgstr "Mataduree"
-
-#: 05020200.xhp
-msgctxt ""
-"05020200.xhp\n"
-"hd_id3150541\n"
-"1\n"
-"help.text"
-msgid "Title"
-msgstr "Mutaduree"
-
-#: 05020200.xhp
-msgctxt ""
-"05020200.xhp\n"
-"par_id3145173\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"titel\"><ahelp hid=\".uno:YTitle\">Modifies the properties of the selected title or the properties of all titles together.</ahelp></variable>"
-msgstr "<variable id=\"titel\"><ahelp hid=\".uno:YTitle\">Amala mataduree filamee yookan amala mataduree walumatti fooyyeessa.</ahelp></variable>"
-
-#: 05020200.xhp
-msgctxt ""
-"05020200.xhp\n"
-"hd_id3152596\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Arfii</link>"
-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Legend"
-msgstr "Waayoo"
-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"bm_id3156441\n"
-"help.text"
-msgid "<bookmark_value>chart legends; hiding</bookmark_value><bookmark_value>hiding;chart legends</bookmark_value>"
-msgstr "<bookmark_value>Waayoo taattoo; dhoksu</bookmark_value><bookmark_value>dhoksu;waayoo taattoo</bookmark_value>"
-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"hd_id3156441\n"
-"1\n"
-"help.text"
-msgid "Legend"
-msgstr "Waayoo"
-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"par_id3155413\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"legende\"><ahelp hid=\".uno:InsertMenuLegend\">Opens the <emph>Legend </emph>dialog, which allows you to change the position of legends in the chart, and to specify whether the legend is displayed.</ahelp></variable>"
-msgstr "<variable id=\"legende\"><ahelp hid=\".uno:InsertMenuLegend\">Qaaqa <emph>Waayoo </emph> kana bani, kun qubannoo waayoo taattoo keesssa jiru jijjiirufi hayyama siif kena, itti fufee waayoon akka inni agarsiifamme ifteessi.</ahelp></variable>"
-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"par_id3149124\n"
-"3\n"
-"help.text"
-msgid "<variable id=\"sytextlegende\"><ahelp hid=\".uno:ToggleLegend\">To show or hide a legend, click <emph>Legend On/Off</emph> on the <emph>Formatting</emph> bar.</ahelp></variable>"
-msgstr "<variable id=\"sytextlegende\"><ahelp hid=\".uno:ToggleLegend\">Waayoo mul'suufi ykn dhoksuufi, cuqaasi <emph>Waayoo Banaa/Dhaamaa</emph> kana irra <emph>Dhangeessa</emph> kabala.</ahelp></variable>"
-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"par_id3145230\n"
-"help.text"
-msgid "<image id=\"img_id3147346\" src=\"cmd/sc_togglelegend.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147346\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147346\" src=\"cmd/sc_togglelegend.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147346\">Sajoo</alt></image>"
-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"par_id3149207\n"
-"16\n"
-"help.text"
-msgid "Legend On/Off"
-msgstr "Waayoo Banaa/Dhaamaa"
-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"hd_id3155114\n"
-"6\n"
-"help.text"
-msgid "Display"
-msgstr "Agarsiisaa"
-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"par_id3150206\n"
-"7\n"
-"help.text"
-msgid "<ahelp hid=\"SCH_CHECKBOX_DLG_LEGEND_CBX_SHOW\">Specifies whether to display a legend for the chart.</ahelp> This option is only visible if you call the dialog by choosing <emph>Insert - Legend</emph>."
-msgstr "<ahelp hid=\"SCH_CHECKBOX_DLG_LEGEND_CBX_SHOW\">Waayoon akka inni taattoo fi agarsiifamme ifteessi.</ahelp> Dirqalii kun mula'ataa kan inni ta'u yoo qaaqa fiiluun bilbiltee qoofa <emph>Saagi - Waayoo</emph>."
-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"hd_id3150201\n"
-"4\n"
-"help.text"
-msgid "Position"
-msgstr "Qubannoo"
-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"par_id3155376\n"
-"5\n"
-"help.text"
-msgid "Select the position for the legend:"
-msgstr "Qubannoo waayoo fi fili:"
-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"hd_id3152988\n"
-"8\n"
-"help.text"
-msgid "Left"
-msgstr "Bitaa"
-
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3155087\n"
-"9\n"
+"type_xy.xhp\n"
+"hd_id5376140\n"
"help.text"
-msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_LEFT\">Positions the legend at the left of the chart.</ahelp>"
-msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_LEFT\">Waayoo gara bitaa taattoo ti qubachiisi.</ahelp>"
+msgid "Lines Only"
+msgstr "Sararoota Qofa"
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id3153816\n"
-"10\n"
+"type_xy.xhp\n"
+"par_id4408093\n"
"help.text"
-msgid "Top"
-msgstr "Irra"
+msgid "This variant draws straight lines from one data point to the next. The data points are not shown by icons."
+msgstr "Addaddummaan kunsararoota sirrii tuqaa deetaa tokko irraa gara itti aanuutti fakkaasa.Tuqaaleen deetaa sajooleetiin hin agarsiisaman."
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3153912\n"
-"11\n"
+"type_xy.xhp\n"
+"par_id7261268\n"
"help.text"
-msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_TOP\">Positions the legend at the top of the chart.</ahelp>"
-msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_TOP\">Waayoo gara irra taattoo ti qubachiisi.</ahelp>"
+msgid "The drawing order is the same as the order in the data series. Mark <emph>Sort by X Values</emph> to draw the lines in the order of the x values. This sorting applies only to the chart, not to the data in the table."
+msgstr "Tartiibni fakkasa tartiiba deetaa walfaannee keessaa waliin walfakkaata.Tartiiba gatiiwwan x keessatti sararoota kaasuuf <emph>Gatiiwwan x Tartiiba qabsiisi</emph> mallatteessi. Tartiiba qabsiisiin taattoo qofatti fayyadama, deetaa gabatee keessaatti miti."
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id3144773\n"
-"12\n"
+"type_xy.xhp\n"
+"hd_id6949369\n"
"help.text"
-msgid "Right"
-msgstr "Mirga"
+msgid "Points and Lines"
+msgstr "Tuqaalee fi Sararoota"
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3155268\n"
-"13\n"
+"type_xy.xhp\n"
+"par_id9611499\n"
"help.text"
-msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_RIGHT\">Positions the legend at the right of the chart.</ahelp>"
-msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_RIGHT\">Waayoo gara mirga taattoo ti qubachiisi.</ahelp>"
+msgid "This variant shows points and lines at the same time."
+msgstr "Addaddummaan kun tuuqaalee fi sararoota sa`a walfakkaataa irratti agarsiisa."
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id3152871\n"
-"14\n"
+"type_xy.xhp\n"
+"hd_id6765953\n"
"help.text"
-msgid "Bottom"
-msgstr "Jala"
+msgid "3D Lines"
+msgstr "Sararoota 3D"
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3153249\n"
-"15\n"
+"type_xy.xhp\n"
+"par_id7422711\n"
"help.text"
-msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_BOTTOM\">Positions the legend at the bottom of the chart.</ahelp>"
-msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_BOTTOM\">Waayoo gara jala taattoo ti qubachiisi.</ahelp>"
+msgid "The lines are shown like tapes. The data points are not shown by icons. In the finished chart choose <link href=\"text/schart/01/three_d_view.xhp\">3D View</link> to set properties like illumination and angle of view."
+msgstr "Sararootni akka teeppiitti agarsiifamu.Tuqaaleen deetaa sajooleetiin hin agarsiifamani. Amaloota kan akka calaqqee fi mul`isu kofa qindeessuuf xumura taattoo keessaa <link href=\"text/schart/01/three_d_view.xhp\">3D Mul`isi</link> fili."
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id1106200812072645\n"
+"type_xy.xhp\n"
+"hd_id239265\n"
"help.text"
-msgid "Text Orientation"
-msgstr "Qabachiisa Barruu"
+msgid "Smooth Lines"
+msgstr "Sararoota Simeessa"
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id1106200812072653\n"
+"type_xy.xhp\n"
+"par_id7957396\n"
"help.text"
-msgid "This feature is only available if complex text layout support is enabled in <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages</item>."
+msgid "Choose <emph>Smooth</emph> from the <emph>Line type</emph> dropdown to draw curves instead of straight line segments."
msgstr ""
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id1106200812112444\n"
+"type_xy.xhp\n"
+"par_id1202124\n"
"help.text"
-msgid "Text Direction"
-msgstr "Qixa Barruu"
+msgid "Click <emph>Properties</emph> to set details for the curves."
+msgstr "Bal'ina qonyootaaf qindeessuuf <emph>Amaloota</emph> cuuqaasi."
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id1106200812112530\n"
+"type_xy.xhp\n"
+"par_id5989562\n"
"help.text"
-msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
-msgstr "<ahelp hid=\".\">Keewwata teessuma barruu xaxaa fayyadamuuf qixa barruu ifteessi (CTL). Amalli kun kan jiraatu yoo deeggarsi teessuma barruu xaxaa kakaafame.</ahelp>"
+msgid "<emph>Cubic Spline</emph> interpolates your data points with polynomials of degree 3. The transitions between the polynomial pieces are smooth, having the same slope and curvature."
+msgstr "<emph>Cubic Spline</emph> tuqaalee deetaa keessaan pooliynomiyaalii digiriii 3 waliin walqabsiisa. Cehumsi kutaalee pooliynoomiyaalii simeessa, irraagadee fi qonyoowwan walfakkaatan qabu dha."
-#: 05050100.xhp
+#: type_xy.xhp
msgctxt ""
-"05050100.xhp\n"
-"tit\n"
+"type_xy.xhp\n"
+"par_id6128421\n"
"help.text"
-msgid "Grid"
-msgstr "Tarsaa"
+msgid "The <emph>Resolution</emph> determines how many line segments are calculated to draw a piece of polynomial between two data points. You can see the intermediate points if you click any data point."
+msgstr "<emph>Qulqullini</emph> pooliynoomiyaali xixiqqooo tuuqaalee deetaa gidduutti kaasuuf muraaleen sarara hammam akka herregaman murteesa. Osoo tuqaa deetaa kamiyyuu cuuqaaste giddugaleessa tuqaalee ilaaluu ni dandeessa."
-#: 05050100.xhp
+#: type_xy.xhp
msgctxt ""
-"05050100.xhp\n"
-"bm_id3150398\n"
+"type_xy.xhp\n"
+"par_id9280373\n"
"help.text"
-msgid "<bookmark_value>X axes;grid formatting</bookmark_value><bookmark_value>Y axes;grid formatting</bookmark_value><bookmark_value>Z axes; grid formatting</bookmark_value>"
-msgstr "<bookmark_value>X axes;grid formatting</bookmark_value><bookmark_value>Y axes;grid formatting</bookmark_value><bookmark_value>Z axes; grid formatting</bookmark_value>"
+msgid "<emph>B-Spline</emph> uses a parametric, interpolating B-spline curve. Those curves are built piecewise from polynomials. The <emph>Degree of polynomials</emph> sets the degree of these polynomials."
+msgstr ""
-#: 05050100.xhp
+#: type_xy.xhp
msgctxt ""
-"05050100.xhp\n"
-"hd_id3150398\n"
-"2\n"
+"type_xy.xhp\n"
+"hd_id5031251\n"
"help.text"
-msgid "Grid"
-msgstr "Tarsaa"
+msgid "Stepped Lines"
+msgstr ""
-#: 05050100.xhp
+#: type_xy.xhp
msgctxt ""
-"05050100.xhp\n"
-"par_id3152577\n"
-"1\n"
+"type_xy.xhp\n"
+"par_id1449076\n"
"help.text"
-msgid "<variable id=\"gitter\"><ahelp hid=\".uno:DiagramGridAll\">Opens the <emph>Grid</emph> dialog for defining grid properties.</ahelp></variable>"
-msgstr "<variable id=\"gitter\"><ahelp hid=\".uno:DiagramGridAll\">Tarsaa qaaqaa <emph>banuun</emph> amala tarsaa qindeessa.</ahelp></variable>"
+msgid "Choose <emph>Stepped</emph> from the <emph>Line type</emph> dropdown to draw lines which step from point to point instead of straight line segments."
+msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"tit\n"
+"type_xy.xhp\n"
+"par_id1202125\n"
"help.text"
-msgid "Title"
-msgstr "Mataduree"
+msgid "Click <emph>Properties</emph> to set details for the curves."
+msgstr "Bal'ina qonyootaaf qindeessuuf <emph>Amaloota</emph> cuuqaasi."
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"bm_id3150791\n"
+"type_xy.xhp\n"
+"par_id9811476\n"
"help.text"
-msgid "<bookmark_value>titles; formatting charts</bookmark_value><bookmark_value>formatting; chart titles</bookmark_value>"
-msgstr "<bookmark_value>titles; formatting charts</bookmark_value><bookmark_value>formatting; chart titles</bookmark_value>"
+msgid "There are 4 different step types:"
+msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3150791\n"
-"1\n"
+"type_xy.xhp\n"
+"alt_id9078573\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020000.xhp\" name=\"Title\">Title</link>"
-msgstr "<link href=\"text/schart/01/05020000.xhp\" name=\"Title\">Mataduree</link>"
+msgid "Start step icon"
+msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"par_id3125863\n"
-"2\n"
+"type_xy.xhp\n"
+"par_id9047365\n"
"help.text"
-msgid "The<emph> Title </emph>menu command opens a submenu for editing the properties of the titles in the chart."
-msgstr "<emph> Mataduree </emph> jedhamu baafata ajajaa baafata birkoo amala mataduree taattoo keessatti gulaaluf."
+msgid "Start with horizontal line and step up vertically at the end."
+msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3155414\n"
-"3\n"
+"type_xy.xhp\n"
+"alt_id05495673\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Main title\">Main title</link>"
-msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Main title\">Guuma Mataduree</link>"
+msgid "End step icon"
+msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3156441\n"
-"4\n"
+"type_xy.xhp\n"
+"par_id439028\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Subtitle\">Subtitle</link>"
-msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Subtitle\">Mataduree Birkoo</link>"
+msgid "Start to step up vertically and end with horizontal line."
+msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3151073\n"
-"5\n"
+"type_xy.xhp\n"
+"alt_id9673426\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"X-axis title\">X-axis title</link>"
-msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"X-axis title\">Mataduree siilloo-X</link>"
+msgid "Center X icon"
+msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3154732\n"
-"6\n"
+"type_xy.xhp\n"
+"par_id4069483\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020200.xhp\" name=\"Y-axis title\">Y-axis title</link>"
-msgstr "<link href=\"text/schart/01/05020200.xhp\" name=\"Y-axis title\">Mataduree siilloo-Y</link>"
+msgid "Start with horizontal line, step up vertically in the middle of the X values and end with horizontal line."
+msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3154017\n"
-"7\n"
+"type_xy.xhp\n"
+"alt_id56635427\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Z-axis title\">Z-axis title</link>"
-msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Z-axis title\">Mataduree siilloo-Z</link>"
+msgid "Center Y icon"
+msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3153711\n"
-"8\n"
+"type_xy.xhp\n"
+"par_id0679473\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020200.xhp\" name=\"All titles\">All titles</link>"
-msgstr "<link href=\"text/schart/01/05020200.xhp\" name=\"All titles\">Mataduree Hunda</link>"
+msgid "Start to step up vertically to the middle of the Y values, draw a horizonal line and finish by stepping vertically to the end."
+msgstr ""
#: wiz_chart_elements.xhp
msgctxt ""
@@ -5407,16 +7128,15 @@ msgctxt ""
"par_id71413\n"
"help.text"
msgid "Select one of the position options. When the chart is finished, you can specify other positions using the Format menu."
-msgstr "Filanoota iddoo keessaa tokko fili. yommuu taattoon xumuramu, bakkoota biraa baafata Dhangii gargaaramuun ifteessuu ni dandeessa."
+msgstr "Dirqalaalee bakkaa tokko fili.Yeroo taattoon xumuramu, baafata Dhangii gargaaramuun bakkoota biraa ifteessuu ni dandeessa."
#: wiz_chart_elements.xhp
-#, fuzzy
msgctxt ""
"wiz_chart_elements.xhp\n"
"par_id4776757\n"
"help.text"
msgid "Grids"
-msgstr "Tarshaalee"
+msgstr "Tarsaa"
#: wiz_chart_elements.xhp
msgctxt ""
@@ -5440,7 +7160,7 @@ msgctxt ""
"par_id7366557\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays grid lines that are perpendicular to the z-axis. This option is only available for three-dimensional charts.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Sararoota tarshaa siiqqee-z waliin walmaddii ta`an agarsiisi. Filannoon kun taattoolee fuul-sadee qofaaf gireessa.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Sararoota tarshaa siiqqee-z waliin walmaddii ta`an agarsiisi. Filannoon kun taattoolee fuul-sadee qofaaf jireessa.</ahelp>"
#: wiz_chart_elements.xhp
msgctxt ""
@@ -5491,13 +7211,12 @@ msgid "Secondary axes"
msgstr "Siiqqee lammataa"
#: wiz_chart_elements.xhp
-#, fuzzy
msgctxt ""
"wiz_chart_elements.xhp\n"
"par_id8915372\n"
"help.text"
msgid "Minor grids"
-msgstr "Tarsaalee maddee"
+msgstr "Tarsaa mandhoo"
#: wiz_chart_elements.xhp
msgctxt ""
@@ -5515,2178 +7234,634 @@ msgctxt ""
msgid "Statistics, for example mean values, y error bars and trend lines"
msgstr "Xiinannoo, fakkeenyaaf gatiiwwan gidduu galeessaa, dogoggora kabala y fi sararoota adeemsa"
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
+"wiz_chart_type.xhp\n"
"tit\n"
"help.text"
-msgid "Format Selection"
-msgstr "Filannoo Dhangii"
+msgid "Chart Wizard - Chart Type"
+msgstr "Taattoo Masaka - Akaakuu Taattoo"
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"bm_id3149666\n"
+"wiz_chart_type.xhp\n"
+"bm_id4266792\n"
"help.text"
-msgid "<bookmark_value>objects;properties of charts</bookmark_value><bookmark_value>charts; properties</bookmark_value><bookmark_value>properties;charts</bookmark_value>"
-msgstr "<bookmark_value>wanta; amala taattoo</bookmark_value><bookmark_value>taattoo; amala</bookmark_value><bookmark_value>amala;taattoo</bookmark_value>"
+msgid "<bookmark_value>charts;choosing chart types</bookmark_value>"
+msgstr "<bookmark_value>charts;choosing chart types</bookmark_value>"
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3149666\n"
-"1\n"
+"wiz_chart_type.xhp\n"
+"hd_id1536606\n"
"help.text"
-msgid "Format Selection"
-msgstr "Filannoo Dhangii"
+msgid "<variable id=\"wiz_chart_type\"><link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard - Chart Type</link></variable>"
+msgstr "<variable id=\"wiz_chart_type\"><link href=\"text/schart/01/wiz_chart_type.xhp\">Taattoo Masaka - Akaakuu Taattoo</link></variable>"
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"par_id3156284\n"
-"2\n"
+"wiz_chart_type.xhp\n"
+"par_id6006958\n"
"help.text"
-msgid "<variable id=\"objekteigenschaften\"><ahelp hid=\".\">Formats the selected object.</ahelp></variable> Depending on the object selected, the command opens dialogs that you can also open by choosing the following commands from the <emph>Format</emph> menu:"
-msgstr "<variable id=\"objekteigenschaften\"><ahelp hid=\".\">Wanta filatame dhangeessi.</ahelp></variable> Wanta filatame irratti hundaa'uun, ajajni qaaqa banama kan malees ajaja kana baafata fayyadamuun <emph>Dhangii</emph> banuu dandeessa."
+msgid "On the first page of the Chart Wizard you can <link href=\"text/schart/01/choose_chart_type.xhp\">choose a chart type</link>."
+msgstr "Taattoo masaka fuula duraa irraa <link href=\"text/schart/01/choose_chart_type.xhp\">Akaakuu taattoo filuu</link> ni dandeessa."
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3153418\n"
-"3\n"
+"wiz_chart_type.xhp\n"
+"hd_id3919186\n"
"help.text"
-msgid "<link href=\"text/schart/01/05060000.xhp\" name=\"Chart Wall\">Chart Wall</link>"
-msgstr "<link href=\"text/schart/01/05060000.xhp\" name=\"Chart Wall\">Daaggoo Taattoo</link>"
+msgid "To choose a chart type"
+msgstr "Akaakuu taattoo filuu"
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3155766\n"
-"4\n"
+"wiz_chart_type.xhp\n"
+"par_id3453169\n"
"help.text"
-msgid "<link href=\"text/schart/01/05080000.xhp\" name=\"Chart Area\">Chart Area</link>"
-msgstr "<link href=\"text/schart/01/05080000.xhp\" name=\"Chart Area\">Bal'ina Taattoo</link>"
+msgid "Choose a basic <link href=\"text/schart/01/choose_chart_type.xhp\">chart type</link>: click any of the entries labeled Column, Bar, Pie, and so on."
+msgstr "Bu`uura <link href=\"text/schart/01/choose_chart_type.xhp\">akaakuu taattoo</link>: galfata tarjaa moggafame, Kabala, Muraangoo, fi kkf fili."
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3154255\n"
-"5\n"
+"wiz_chart_type.xhp\n"
+"par_id8406933\n"
"help.text"
-msgid "<link href=\"text/schart/01/05070000.xhp\" name=\"Chart Floor\">Chart Floor</link>"
-msgstr "<link href=\"text/schart/01/05070000.xhp\" name=\"Chart Floor\">Taattoo Lafaa</link>"
+msgid "The contents on the right side will change to offer more options depending on the basic chart type."
+msgstr "Akaakuu bu`uura taattoo irratti hundaa`uudhaan filannoo caalu kennuuf qabeentootni hark mirgaa ni jijjiiramu."
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3146313\n"
-"6\n"
+"wiz_chart_type.xhp\n"
+"par_id8230231\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Title\">Title</link>"
-msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Title\">Mataduree</link>"
+msgid "Optionally, click any of the options. While you change the settings in the wizard, watch the preview in the document to see how the chart will look."
+msgstr "Filannoodhaan, filannoo kamiyyuu cuuqaasi.Qindaa`inoota masaka keessatti jijjiirtuyyuu, galmee keessaa taattoon maal akka fakkaatu ilaaluuf durargii ilaali."
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3150297\n"
-"7\n"
+"wiz_chart_type.xhp\n"
+"par_id3267006\n"
"help.text"
-msgid "<link href=\"text/schart/01/05030000.xhp\" name=\"Legend\">Legend</link>"
-msgstr "<link href=\"text/schart/01/05030000.xhp\" name=\"Legend\">Waayoo</link>"
+msgid "Press <item type=\"keycode\">Shift+F1</item> and point to a control to see an extended help text."
+msgstr "Gargaarsa barruu baay'ata tooachuu fi ilaaluuf <item type=\"keycode\">Shift+F1</item> dhiibuudhaan agarsiisi."
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3143219\n"
-"8\n"
+"wiz_chart_type.xhp\n"
+"par_id7251503\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"X Axis\">X Axis</link>"
-msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"X Axis\">Siilloo X</link>"
+msgid "Click <emph>Finish</emph> on any wizard page to close the wizard and create the chart using the current settings."
+msgstr "Qindaa`inoota ammee fayyadamuun masaka cufuu fitaattoo uumuuf fuula masaka kamiiyyuu irra <emph>Xumuri</emph> cuuqaasi."
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3150207\n"
-"9\n"
+"wiz_chart_type.xhp\n"
+"par_id3191625\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Y Axis\">Y Axis</link>"
-msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Y Axis\">Siilloo Y</link>"
+msgid "Click <emph>Next</emph> to see the next wizard page, or click the entries on the left side of the wizard to go to that page."
+msgstr "Fuula masakaa itti aanu ilaaluuf ykn gara fuula dhaquuf galfata gama hark bita masaka <emph>Kan itti aanu</emph> cuuqaasi."
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3166432\n"
-"10\n"
+"wiz_chart_type.xhp\n"
+"par_id7659535\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Grid\">Grid</link>"
-msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Grid\">Tarsaa</link>"
+msgid "Click <emph>Back</emph> to see the previous wizard page."
+msgstr "Fuula masaka duraanii ilaaluuf <emph>Deebi'ii</emph> cuuqaasi."
-#: 05010100.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010100.xhp\n"
-"tit\n"
+"wiz_chart_type.xhp\n"
+"par_id8420056\n"
"help.text"
-msgid "Data Point"
-msgstr "Akeeki Deetaa"
+msgid "Click <emph>Cancel</emph> to close the wizard without creating a chart."
+msgstr "Masaka taattoo uumame malee cufuuf <emph>Dhiisi</emph> cuuqaasi."
-#: 05010100.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010100.xhp\n"
-"hd_id3153768\n"
-"1\n"
+"wiz_chart_type.xhp\n"
+"par_id2284920\n"
"help.text"
-msgid "<link href=\"text/schart/01/05010100.xhp\" name=\"Data Point\">Data Point</link>"
-msgstr "<link href=\"text/schart/01/05010100.xhp\" name=\"Data Point\">Akeeki Deetaa</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to go to the named wizard page.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gara fuula masaka moggafame deemuuf cuuqaasi.</ahelp>"
-#: 05010100.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010100.xhp\n"
-"par_id3152577\n"
-"2\n"
+"wiz_chart_type.xhp\n"
+"par_id3184301\n"
"help.text"
-msgid "This dialog allows you to change the properties of a selected data point. The dialog appears when there is only one data point selected when you choose <emph>Format - Format Selection</emph>. Some of the menu entries are only available for 2D or 3D charts."
-msgstr "Qaaqaan kun qaphxii deetaa filamee akka jijjiiramu eeyyama. Qaaqaan kun kan mul'atu gosni deetaa tokkoo qofti yoo filatamee yommuu ati <emph>Dhangii - Filannoo Dhangii</emph> filattu. Baafanni tokko tokko galfataa taatoo 2D yookan 3D dhaan qofa argama."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a basic chart type.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Akaakuu taattoo bu`uuraa fili.</ahelp>"
-#: 05010100.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010100.xhp\n"
-"par_id3149121\n"
-"3\n"
+"wiz_chart_type.xhp\n"
+"par_id2129276\n"
"help.text"
-msgid "Any changes made only affect this one data point. For example, if you edit the color of a bar, only the color of that bar will be different."
-msgstr "Jijjiiramni uumamae kamiyyuu qaphxii deetaa tokkoo qofa miidha. Fakkeenyaaf, yoo halluu kabala gulaalte halluu kabalaa qofatu adda ta'a."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a sub type of the basic chart type.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Akaakuu taattoo bu`uuraa kan akkaakuu sub fili.</ahelp>"
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"tit\n"
+"wiz_chart_type.xhp\n"
+"par_id9719229\n"
"help.text"
-msgid "Grid"
-msgstr "Tarsaa"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enables a 3D look for the data values.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gatiiwwan deetaaf 3D argamu dandeessisi.</ahelp>"
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"bm_id3155602\n"
+"wiz_chart_type.xhp\n"
+"par_id3860896\n"
"help.text"
-msgid "<bookmark_value>grids; formatting axes</bookmark_value><bookmark_value>axes; formatting grids</bookmark_value>"
-msgstr "<bookmark_value>grids; formatting axes</bookmark_value><bookmark_value>axes; formatting grids</bookmark_value>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the type of 3D look.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Akaakuu 3D argamuu fili.</ahelp>"
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3155602\n"
-"1\n"
+"wiz_chart_type.xhp\n"
+"par_id4041871\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050000.xhp\" name=\"Grid\">Grid</link>"
-msgstr "<link href=\"text/schart/01/05050000.xhp\" name=\"Grid\">Tarsaa</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a shape from the list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tarree keessaa boca fili.</ahelp>"
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_id3155764\n"
-"2\n"
+"wiz_chart_type.xhp\n"
+"par_id9930722\n"
"help.text"
-msgid "Opens a submenu, where you select the grid you want to format."
-msgstr "Baafata xiqqaan bakka tarsaa dhanguu barbaadde itti filattu."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays stacked series for Line charts.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Sarara taattooleef tartiiba walfaannee agarsiisi.</ahelp>"
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3150045\n"
-"3\n"
+"wiz_chart_type.xhp\n"
+"par_id5749687\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Major Grid\">X Axis Major Grid</link>"
-msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Major Grid\">Buraalaa tarsaa silloo X </link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Stack series display values on top of each other.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tartiibni walfaannee gatiiwwan gubbaa tokko tokkoo isaanii irratti agarsiisa.</ahelp>"
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3145228\n"
-"4\n"
+"wiz_chart_type.xhp\n"
+"par_id79348\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Major Grid\">Y Axis Major Grid</link>"
-msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Major Grid\">Buraalaa tarsaa silloo Y</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Stack series display values as percent.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tartiibni walfaannee gatiiwwan akka dhibbeentaatti agarsiisa.</ahelp>"
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3147346\n"
-"5\n"
+"wiz_chart_type.xhp\n"
+"par_id2414014\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis Major Grid\">Z Axis Major Grid</link>"
-msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis Major Grid\">Buraalaa tarsaa silloo Z </link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Choose the type of line to draw.</ahelp>"
+msgstr ""
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3154021\n"
-"6\n"
+"wiz_chart_type.xhp\n"
+"par_id7617114\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Minor Grid\">X Axis Minor Grid</link>"
-msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Minor Grid\">Maddee tarsaa silloo X </link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to set the line or curve properties.</ahelp>"
+msgstr ""
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3150307\n"
-"7\n"
+"wiz_chart_type.xhp\n"
+"par_id6649372\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Minor Grid\">Y Axis Minor Grid</link>"
-msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Minor Grid\">Maddee tarsaa silloo Y</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Connects points by ascending X values, even if the order of values is different, in an XY scatter diagram.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tuqaalee gatiiwwan X oleen, gatiiwwan tartiibaa adda adda ta`uyyuu,bittimsuu safaka XY keessatti walindhi.</ahelp>"
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3166428\n"
-"8\n"
+"wiz_chart_type.xhp\n"
+"par_id7334208\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis minor Grid\">Z Axis minor Grid</link>"
-msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis minor Grid\">Maddee tarsaa silloo Z</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the number of lines for the Column and Line chart type.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tarjaa fi akaakuu taattoo sararaf lakkoofsa sararootaa qindeessi.</ahelp>"
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3145585\n"
-"9\n"
+"wiz_chart_type.xhp\n"
+"par_id4485000\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"All Axis Grids\">All Axis Grids</link>"
-msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"All Axis Grids\">Tarsaa siilloo hundaa</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Chart Type dialog.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Qaaqa Akaakuu taattoo bani.</ahelp>"
-#: type_column_bar.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"type_column_bar.xhp\n"
+"wiz_data_range.xhp\n"
"tit\n"
"help.text"
-msgid "Chart Type Column and Bar"
-msgstr "Akaakuu Taattoo Tarjaa fi Kabala"
-
-#: type_column_bar.xhp
-msgctxt ""
-"type_column_bar.xhp\n"
-"bm_id4919583\n"
-"help.text"
-msgid "<bookmark_value>column charts</bookmark_value><bookmark_value>bar charts</bookmark_value><bookmark_value>chart types;column and bar</bookmark_value>"
-msgstr "<bookmark_value>column charts</bookmark_value><bookmark_value>bar charts</bookmark_value><bookmark_value>chart types;column and bar</bookmark_value>"
-
-#: type_column_bar.xhp
-msgctxt ""
-"type_column_bar.xhp\n"
-"hd_id649433\n"
-"help.text"
-msgid "<variable id=\"type_column_bar\"><link href=\"text/schart/01/type_column_bar.xhp\">Chart Type Column and Bar</link></variable>"
-msgstr "<variable id=\"type_column_bar\"><link href=\"text/schart/01/type_column_bar.xhp\">Akaakuu Taattoo Tarjaa fi Kabala</link></variable>"
-
-#: type_column_bar.xhp
-msgctxt ""
-"type_column_bar.xhp\n"
-"par_id3430585\n"
-"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
-msgstr "Fuula duraa irratti <link href=\"text/schart/01/wiz_chart_type.xhp\">Gargaartuu Taattoo</link> akaakuu taattoo filachuu dandeessa."
-
-#: type_column_bar.xhp
-msgctxt ""
-"type_column_bar.xhp\n"
-"hd_id9826960\n"
-"help.text"
-msgid "Column"
-msgstr "Tarjaa"
-
-#: type_column_bar.xhp
-msgctxt ""
-"type_column_bar.xhp\n"
-"par_id2244026\n"
-"help.text"
-msgid "This type shows a bar chart or bar graph with vertical bars. The height of each bar is proportional to its value. The x axis shows categories. The y axis shows the value for each category."
-msgstr "Akaakuun kun taattoo kabala yookan caatoo kabala sarjaa kabalootaa waliin agarsiisa. Dheerinni kabala tokkon tokkoo gitaawaa gatii isaati. Siilloon x akaakuu agarsiisa. Siilloon y gatii akaakuu tokkoon tokkoo agarsiisa."
-
-#: type_column_bar.xhp
-msgctxt ""
-"type_column_bar.xhp\n"
-"par_id1281167\n"
-"help.text"
-msgid "Normal - this subtype shows all data values belonging to a category next to each other. Main focus is on the individual absolute values, compared to every other value."
-msgstr "Baratamoo - Akaakuu xiqqaan gatii deetaa akaakuu hunda walitti aansee dhufuu agarsiisa. Xiyyeffannoo guddaan tokkoon tokkoo gatii deetaa kan biroo waliin wal dorgomsiisu dha."
-
-#: type_column_bar.xhp
-msgctxt ""
-"type_column_bar.xhp\n"
-"par_id3249000\n"
-"help.text"
-msgid "Stacked - this subtype shows the data values of each category on top of each other. Main focus is the overall category value and the individual contribution of each value within its category."
-msgstr "Walirra Tuulaa -Akaakuu xiqqaan gatii deetaa akaakuu tokkoon tokkoo gubbaa walii irratti akka argaman agarsiisa. Xiyyeffanaa guddaan akaakuun hundi fi tokkoon tokkoo gatii akaakuu isaa waliin gahee qabu adda baasudha."
-
-#: type_column_bar.xhp
-msgctxt ""
-"type_column_bar.xhp\n"
-"par_id6968901\n"
-"help.text"
-msgid "Percent - this subtype shows the relative percentage of each data value with regard to the total of its category. Main focus is the relative contribution of each value to the category's total."
-msgstr "Dhiibbayyaa - akaakuu xiqqaan firummaa dhibbeentaa tokkoon tokkoo gatiii deetaa waligala akaakuu hundaa agarsiisa. Xiyyeffannoo inni guddaan gahee deetaan fira ta'aan gatii hundaaa akaakuu maraan qaban beekudha."
-
-#: type_column_bar.xhp
-msgctxt ""
-"type_column_bar.xhp\n"
-"par_id2224494\n"
-"help.text"
-msgid "You can enable a <link href=\"text/schart/01/three_d_view.xhp\">3D view</link> of the data values. The \"realistic\" scheme tries to give the best 3D look. The \"simple\" scheme tries to mimic the chart view of other Office products."
-msgstr "Gatii deetaa <link href=\"text/schart/01/three_d_view.xhp\">3D view</link> dandeessisuu dandeessa. Gurmoon \"realistic\" 3D fakkaatti isaa bareechee mal akka fakkatu kenna. Gurmoon \"simple\" taattoo mul'annoo waajjira oomisha biroo agarsiisuu yaala."
-
-#: type_column_bar.xhp
-msgctxt ""
-"type_column_bar.xhp\n"
-"par_id7359233\n"
-"help.text"
-msgid "For 3D charts, you can select the shape of each data value from Box, Cylinder, Cone, and Pyramid."
-msgstr "Taattoo 3D dhhf, boca gatii tokkoon tokko deetaa Saduuqa, silinderii,koonii fi piraamidii irraa filachuu dandeessa."
-
-#: type_column_bar.xhp
-msgctxt ""
-"type_column_bar.xhp\n"
-"hd_id955839\n"
-"help.text"
-msgid "Bar"
-msgstr "Kabala"
+msgid "Chart Wizard - Data Range"
+msgstr "Taattoo Masaka - Hangii Deetaa"
-#: type_column_bar.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"type_column_bar.xhp\n"
-"par_id6596881\n"
+"wiz_data_range.xhp\n"
+"bm_id2429578\n"
"help.text"
-msgid "This type shows a bar chart or bar graph with horizontal bars. The length of each bar is proportional to its value. The y axis shows categories. The x axis shows the value for each category."
-msgstr "Akaakuun kun kabala taattoo ykn kabala caatoo kabala dalgee agarsiisa. Dheerinni kabala tokkoon tokkoo gatii isaa waliin walgita. Siilloon y akaakuu agarsiisa. Siilloon x gatoo akaakuu hundaa agarsiisa."
+msgid "<bookmark_value>data ranges in charts</bookmark_value>"
+msgstr "<bookmark_value>data ranges in charts</bookmark_value>"
-#: type_column_bar.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"type_column_bar.xhp\n"
-"par_id8750572\n"
+"wiz_data_range.xhp\n"
+"hd_id8313852\n"
"help.text"
-msgid "The subtypes are the same as for the Column type."
-msgstr "Akaakuu xiqqaan gosa tarjaa waliin walfakkata."
+msgid "<variable id=\"wiz_data_range\"><link href=\"text/schart/01/wiz_data_range.xhp\">Chart Wizard - Data Range</link></variable>"
+msgstr "<variable id=\"wiz_data_range\"><link href=\"text/schart/01/wiz_data_range.xhp\">Taattoo Masaka - Hangii Deetaa</link></variable>"
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"tit\n"
+"wiz_data_range.xhp\n"
+"par_id8829309\n"
"help.text"
-msgid "Axes"
-msgstr "Siiqqota"
+msgid "On this page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can select one single source of data range. This range may consist of more than one rectangular range of cells."
+msgstr "Fuula <link href=\"text/schart/01/wiz_chart_type.xhp\">Taattoo-Masaka</link> kana irratti madda qeenxee hangii deetaa filuu ni dandeessa. Hangiin kun hangii man`eewwan reektaangulaarawaa tokkoo ol irraa ijaaramuu ni danda`a."
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"bm_id3147428\n"
+"wiz_data_range.xhp\n"
+"par_id6401867\n"
"help.text"
-msgid "<bookmark_value>axes; showing axes in charts</bookmark_value><bookmark_value>charts; showing axes</bookmark_value><bookmark_value>X axes; showing</bookmark_value><bookmark_value>Y axes; showing</bookmark_value><bookmark_value>Z axes; showing</bookmark_value><bookmark_value>axes; better scaling</bookmark_value><bookmark_value>secondary axes in charts</bookmark_value>"
-msgstr "<bookmark_value>siiqqota; Siiqqota taattoo keesssa mul'si </bookmark_value><bookmark_value>taattoo; siiqqotaa mul'si</bookmark_value><bookmark_value>Siiqqota X; mul'si</bookmark_value><bookmark_value>Siiqqota Y; mul'si</bookmark_value><bookmark_value>Siiqqota Z; mul'si</bookmark_value><bookmark_value>siiqqota; safaraa garii</bookmark_value><bookmark_value>Siiqqota lammataa taattoo keessaa</bookmark_value>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Data Ranges dialog where you can edit Data Range and Data Series.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Iddoo Hangii Deetaa fi Deetaa walfaannee guulaaluu dandeesu qaaqa hammanga deetaa bani.</ahelp>"
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"hd_id3147428\n"
-"1\n"
+"wiz_data_range.xhp\n"
+"par_id2025818\n"
"help.text"
-msgid "Axes"
-msgstr "Siiqqota"
+msgid "Use the Chart Wizard - Data Series page if you need more control over the data ranges."
+msgstr "Yoo hammanga deetaa iirratti too`anna caalu barbaade fuula Taattoo Masaka - Deetaa Walfaannee gargaarami."
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3150330\n"
-"2\n"
+"wiz_data_range.xhp\n"
+"par_id8466139\n"
"help.text"
-msgid "<variable id=\"achsen\"><ahelp hid=\".uno:InsertMenuAxes\">Specifies the axes to be displayed in the chart.</ahelp></variable>"
-msgstr "<variable id=\"achsen\"><ahelp hid=\".uno:InsertMenuAxes\">Siiqqota taattoo keessaa ti agarsiifamman ifteessi.</ahelp></variable>"
+msgid "This dialog is only available for charts based on a Calc or Writer table."
+msgstr "Qaaqan kun taattoolee gabatee calc ykn Writer irratti hundaa`anniif qofa argama."
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"hd_id3156385\n"
-"46\n"
+"wiz_data_range.xhp\n"
+"hd_id1877193\n"
"help.text"
-msgid "Major axis"
-msgstr "Siiqqee buraalaa"
+msgid "To specify a data range"
+msgstr "Hangii deetaa ifteessuuf"
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"hd_id3146316\n"
-"5\n"
+"wiz_data_range.xhp\n"
+"par_id5924863\n"
"help.text"
-msgid "X axis"
-msgstr "Siiqqee X"
+msgid "Select the data range. Do one of the following:"
+msgstr "Hangii deetaa fili. Kanneen armaan gadii keessaa tokko hojjedhu."
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3145230\n"
-"6\n"
+"wiz_data_range.xhp\n"
+"par_id4357432\n"
"help.text"
-msgid "<ahelp hid=\"SCH_CHECKBOX_DLG_AXIS_CB_X_PRIMARY\">Displays the X axis as a line with subdivisions.</ahelp>"
-msgstr "<ahelp hid=\"SCH_CHECKBOX_DLG_AXIS_CB_X_PRIMARY\">Siiqqee X akka sarara qooda ti agarsiisi.</ahelp>"
+msgid "Enter the data range in the text box."
+msgstr "Sanduuqa barruu keessa hangii deetaa saagi."
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"hd_id3147003\n"
-"17\n"
+"wiz_data_range.xhp\n"
+"par_id5626392\n"
"help.text"
-msgid "Y axis"
-msgstr "Siiqqee Y"
+msgid "In Calc, an example data range would be \"$Sheet1.$B$3:$B$14\". Note that a data range may consist of more than one region in a spreadsheet, e.g. \"$Sheet1.A1:A5;$Sheet1.D1:D5\" is also a valid data range. In Writer, an example data range would be \"Table1.A1:E4\"."
+msgstr "Calc keessatti, fakkeenyi hammanga deetaa \"$Sheet1.$B$3:$B$14\" ta`a. hubachiisa wardii keessatti hammangaan deetaa tarii naannoo tkkoo ol irraa ijaaramuu ni danda`a, fakkeenyaaf \"$Sheet1.A1:A5;$Sheet1.D1:D5\" hammangaan deetaa dabalataan gataa`aa dha. Writer keessatti, fakkeenyi hammangaa deetaa \"Table1.A1:E4\" ni ta`a."
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3154020\n"
-"18\n"
+"wiz_data_range.xhp\n"
+"par_id1363872\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_PRIMARY\">Displays the Y axis as a line with subdivisions.</ahelp>"
-msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_PRIMARY\">Siiqqee Y akka sarara qooda ti agarsiisi.</ahelp>"
+msgid "In Calc, click <emph>Select data range</emph> to minimize the dialog, then drag over a cell area to select the data range."
+msgstr "Qaaqa Calc keessatti gadeessuuf, <emph>hammanga deetaa fili</emph> cuuqaasi, itti aansuudhaan hammangaa deetaa filuuf harkisi."
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"hd_id3150345\n"
-"28\n"
+"wiz_data_range.xhp\n"
+"par_id6823938\n"
"help.text"
-msgid "Z axis"
-msgstr "Siiqqee Z"
+msgid "If you want a data range of multiple cell areas that are not next to each other, enter the first range, then manually add a semicolon at the end of the text box, then enter the other ranges. Use a semicolon as delimiter between ranges."
+msgstr "Yoo hammanga deetaa bal`insoota man`ee hedduu tokko tokkoo isaaniitti kan hin aanne barbaade, hangii jalqabaa saagi, achii dhuma sanduuqa barruu irratti hujeekan tuq lameedabali, itti aansuudhaan hammangalee biraa saagi. Akka daanggessaatti gidduu hammangaleetti tuq lamee gargaarami."
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3155113\n"
-"29\n"
+"wiz_data_range.xhp\n"
+"par_id1434369\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Z_PRIMARY\">Displays the Z axis as a line with subdivisions.</ahelp> This axis can only be displayed in 3D charts."
-msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Z_PRIMARY\">Siiqqee Z akka sarara qooda ti agarsiisi.</ahelp> Siiqqeen kun kan inni agarsiifammu garsadee taattoo keessa ti."
+msgid "Click one of the options for data series in rows or in columns."
+msgstr "Deetaa walfaanneef terreewwan ykn tarjaalee keessaa filannoo tokko cuuqaasi."
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"hd_id3150206\n"
-"36\n"
+"wiz_data_range.xhp\n"
+"par_id7524033\n"
"help.text"
-msgid "Secondary axis"
-msgstr "Siiqqee lammataa"
+msgid "Check whether the data range has labels in the first row or in the first column or both."
+msgstr "Hammangaan deetaa akka moggaasa terree duraa ykn tarjaa duraa ykn lamanuu keessatti qabu mirkaneessi."
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3166428\n"
-"37\n"
+"wiz_data_range.xhp\n"
+"par_id5256508\n"
"help.text"
-msgid "Use this area to assign a second axis to your chart. If a data series is already assigned to this axis, $[officename] automatically displays the axis and the label. You can turn off these settings later on. If no data has been assigned to this axis and you activate this area, the values of the primary Y axis are applied to the secondary axis."
-msgstr "Siiqqee lammataa taattoo kee kessaa ti ramaduf idoo kan fayyadami. Yoo walfaanneen deetaa siiqqee kana ti ramadamerra ta'e, $[officename] Siiqqee fi moggaasa ofumaan agarsiisa. Qindaa'ina kana booda dhaamsuu dandeesa. Yoo deetaan siiqqee kanati ramadamee hin jiru ta'e fi idoo kana kakaasi, Gatiin siiqqee Y dursaa gara siiqqee lammataa ti fayyadami."
+msgid "In the preview you can see how the final chart will look."
+msgstr "Durargii keessatti taattoon dhumaa maal akka fakkaatu ilaaluun ni danda`ama."
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"hd_id3152988\n"
-"44\n"
+"wiz_data_range.xhp\n"
+"par_id379650\n"
"help.text"
-msgid "X axis"
-msgstr "Siiqqee X"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the data range that you want to include in your chart. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Taattoo kee keessa hammangaa deetaa saaguuf barbaade saagi. Hamamtaa deetaa calc keesaa filuun qaaqa gadeessuuf, qabduu <emph>Hamamtaa deetaa fili</emph> cuuqaasi.</ahelp>"
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3156445\n"
-"45\n"
+"wiz_data_range.xhp\n"
+"par_id953703\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_X_SECONDARY\">Displays a secondary X axis in the chart.</ahelp>"
-msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_X_SECONDARY\">Siiqqee X lammataa taattoo kessaa jiru agarsiisi.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Data series get their data from consecutive rows in the selected range. For scatter charts, the first data series will contain x-values for all series. All other data series are used as y-values, one for each series.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Deetaa walfaannee tarreewwan tarreen hammangaa irraa filaman keessaa deetaa isaanii argatu. Taattooleen bittimsuuf, walfaannee hundaaf tarjaan deetaa duraa gatiiwwan-x ofkeessatti qabata. Tarjaaleen deetaa biraan hundi akka gatiiwwan-yti, tokko tokkoo walfanneef tokko ni gargaaru.</ahelp>"
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"hd_id3152896\n"
-"38\n"
+"wiz_data_range.xhp\n"
+"par_id4496597\n"
"help.text"
-msgid "Y axis"
-msgstr "Siiqqee Y"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Data series get their data from consecutive columns in the selected range. For scatter charts, the first data column will contain x-values for all series. All other data columns are used as y-values, one for each series.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Deetaa walfaannee tarjaalee tarreen hammangaa irraa filaman keessaa deetaa isaanii argatu. Taattooleen bittimsuuf, walfaannee hundaaf tarjaan deetaa duraa gatiiwwan-x ofkeessatti qabata. Tarjaaleen deetaa biraan hundi akka gatiiwwan-yti, tokko tokkoo walfanneef tokko ni gargaaru.</ahelp>"
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3153818\n"
-"39\n"
+"wiz_data_range.xhp\n"
+"par_id2898953\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">Displays a secondary Y axis in the chart.</ahelp>"
-msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">Siiqqee Y lammataa taattoo keessaa jiru agarsiisi.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">For data series in columns: The first row in the range is used as names for data series. For data series in rows: The first row in the range is used as categories. The remaining rows comprise the data series. If this check box is not selected, all rows are data series.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Deetaa walfaannee tarjaalee keessaaf: Tarree duraa hammangaa keessaa deetaa walfaanneef akka maqaati gargaaru dha. Deetaa walfaanneef kan keessaa tarree: Tarree duraa hammangaa keessaa kan akka akaakuuwwaniitti gargaaru dha. Tarjaaleen hafan deetaa tarjaalee walmadaalsisu. Osoo saanduqni filannoo kun filamuu dhiise, tarjaaleen hundi deetaa tarjaalee ti.</ahelp>"
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3154762\n"
-"41\n"
+"wiz_data_range.xhp\n"
+"par_id7546311\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">The major axis and the secondary axis can have different scaling. For example, you can scale one axis to 2 in. and the other to 1.5 in. </ahelp>"
-msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">Siiqqee buraalaa fi siiqqeen lammataa safaraa ada adda qabu. Fakkeenya fi, safaraa siiqqee tokkoo inchii 2. fi kan birra ti safaraa inchii 1.5. </ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">For data series in columns: The first column in the range is used as names for data series. For data series in rows: The first column in the range is used as categories. The remaining columns comprise the data columns. If this check box is not selected, all columns are data columns.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Deetaa walfaannee tarjaalee keessaaf: Tarjaa duraa hammangaa keessaa deetaa walfaanneef akka maqaati gargaaru dha. Deetaa walfaanneef kan keessaa tarree: Tarjaa duraa hammangaa keessaa kan akka akaakuuwwaniitti gargaaru dha. Tarjaaleen hafan deetaa tarjaalee walmadaalsisu. Osoo saanduqni filannoo kun filamuu dhiise, tarjaaleen hundi deetaa tarjaalee ti.</ahelp>"
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
+"wiz_data_series.xhp\n"
"tit\n"
"help.text"
-msgid "Chart Type Column and Line"
-msgstr "Akaakuu Taattoo fi Kabala"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"bm_id5976744\n"
-"help.text"
-msgid "<bookmark_value>column and line charts</bookmark_value><bookmark_value>chart types;column and line</bookmark_value><bookmark_value>combination charts</bookmark_value>"
-msgstr "<bookmark_value>column and line charts</bookmark_value><bookmark_value>chart types;column and line</bookmark_value><bookmark_value>combination charts</bookmark_value>"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"hd_id8596453\n"
-"help.text"
-msgid "<variable id=\"type_column_line\"><link href=\"text/schart/01/type_column_line.xhp\">Chart Type Column and Line</link></variable>"
-msgstr "<variable id=\"type_column_line\"><link href=\"text/schart/01/type_column_line.xhp\">Akaakuu Taattoo fi Kabala</link></variable>"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id4818567\n"
-"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
-msgstr "Fuula jalqabaa irratti<link href=\"text/schart/01/wiz_chart_type.xhp\">Gargaartuu Taattoo</link> akaakuu taattoo filadhu."
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"hd_id2451551\n"
-"help.text"
-msgid "Column and Line"
-msgstr "Tarjaa fi Sarara"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id3101901\n"
-"help.text"
-msgid "A Column and Line chart is a combination of a <link href=\"text/schart/01/type_column_bar.xhp\">Column chart</link> with a <link href=\"text/schart/01/type_line.xhp\">Line chart</link>."
-msgstr "Tarjaa fi sararri taattoo makaa <link href=\"text/schart/01/type_column_bar.xhp\">Taattoo tarjaa</link> waliin <link href=\"text/schart/01/type_line.xhp\">sarara taattoo</link>."
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id7910397\n"
-"help.text"
-msgid "Select one of the variants"
-msgstr "Addaba'oo ta'e tokko filadhu"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id5244300\n"
-"help.text"
-msgid "Columns and Lines. The rectangles of the column data series are drawn side by side so that you can easily compare their values."
-msgstr "Tarjaa fi Sararoota. Sarjaan reektangilii walfakkannee deetaa moggaa moggaadhaan kaafaman kanaaf gatii isaanii haala salphaan dorgomsiisi."
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id7163609\n"
-"help.text"
-msgid "Stacked Columns and Lines. The rectangles of the column data series are drawn stacked above each other, so that the height of a column visualizes the sum of the data values."
-msgstr "Tarjaa walirra tuullee fi Sararoota. Reektaangiliin sarjaa walfakkannee deetaa walii olitti kuufama kanaaf, dheerinni tarjaa ida'ama gatii deetaa mul'isa."
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id1842097\n"
-"help.text"
-msgid "You can insert a second y-axis with <link href=\"text/schart/01/04040000.xhp\">Insert - Axes</link> after you finish the wizard."
-msgstr "Siilloo y suuquu dandeessa <link href=\"text/schart/01/04040000.xhp\">Siiqqota-Suuqaa</link> erga masaka xumurteen booda."
+msgid "Chart Wizard - Data Series"
+msgstr "Taattoo Masaka - Deetaa walfaannee"
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"hd_id8297677\n"
+"wiz_data_series.xhp\n"
+"bm_id8641621\n"
"help.text"
-msgid "To specify a data range"
-msgstr "Hanga deetaa ifteessuuf"
+msgid "<bookmark_value>order of chart data</bookmark_value><bookmark_value>data series</bookmark_value>"
+msgstr "<bookmark_value>order of chart data</bookmark_value><bookmark_value>data series</bookmark_value>"
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id8871120\n"
+"wiz_data_series.xhp\n"
+"hd_id6124149\n"
"help.text"
-msgid "The leftmost columns (or the top rows) of the selected data range provide the data that are shown as Columns objects. The other columns or rows of the data range provide the data for the Lines objects. You can change this assignment in the <emph>Data Series</emph> dialog."
-msgstr "Sarjaan gara bitaa (yookan tarree gubbaa) hangi deetaa filamee deetaa akka wanta tarjaatti kenna. Sarjaan biroo yookan tarreen hanga deeataa sarara wantaatiif kenna. Mogaasa qaaqaa kana jijjiiruu <emph>Walfakkannee deetaa</emph> dandeessa."
+msgid "<variable id=\"wiz_data_series\"><link href=\"text/schart/01/wiz_data_series.xhp\">Chart Wizard - Data Series</link></variable>"
+msgstr "<variable id=\"wiz_data_series\"><link href=\"text/schart/01/wiz_data_series.xhp\">Taattoo Masaka - Deetaa Walfaannee</link></variable>"
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id2952055\n"
+"wiz_data_series.xhp\n"
+"par_id9651478\n"
"help.text"
-msgid "Select the data range."
-msgstr "Hanga deetaa filadhu."
+msgid "On this page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can change the source range of all data series separately, including their labels. You can also change the range of the categories. You can first select the data range on the Data Range page and then remove unnecessary data series or add data series from other cells here."
+msgstr "Fuula <link href=\"text/schart/01/wiz_chart_type.xhp\">Taattoo Masaka</link> kana irratti hammangaa maddaa kan walfaannee deetaa hundaa addaan basuun, moggaasolee isaanii qabatee jijjiiruu ni dandeesa. dabalatan akaakuuwwan hammamgaa jijjiiruun ni danda`ama. Dura fuula Data Range irraa hammangaa deetaa filuunii fi deetaa walfaannee hin barbaachifne haquun ykn man`ee biraa irraa walfaannee deetaa dabaluun ni danda`ama."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id594500\n"
+"wiz_data_series.xhp\n"
+"par_id6326487\n"
"help.text"
-msgid "Click one of the options for data series in rows or in columns."
-msgstr "Filannoo kenname walfaannee deetaa tarreen yookan tarjaan cuqaasi."
+msgid "If there seem to be too many options on this page, just define the data range on the Chart Wizard - Data Range page and skip this page."
+msgstr "Fuula kana irratti yoo filannooleen hedduun akka argaman barbaadame, hammangaa deetaa fuula Chart Wizard - Data Range fi fuula kana kan dhosku ibsi."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id1944944\n"
+"wiz_data_series.xhp\n"
+"par_id686361\n"
"help.text"
-msgid "Check whether the data range has labels in the first row or in the first column or both."
-msgstr "Hangi deetaa tarree tokkoffaa irra yookan tarjaa tokkoffaa irratti waammee yookan lamaanirraa yoo qabaate mirkaneessi."
+msgid "This dialog is only available for charts based on a Calc or Writer table."
+msgstr "Qaaqan kun taattoolee gabatee calc ykn Writer irratti hundaa`anniif qofa argama."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"hd_id6667683\n"
+"wiz_data_series.xhp\n"
+"hd_id9241615\n"
"help.text"
msgid "Organizing data series"
msgstr "Walfaannee deetaa qindeessuu"
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id7616809\n"
+"wiz_data_series.xhp\n"
+"par_id7159337\n"
"help.text"
msgid "In the Data Series list box you see a list of all data series in the current chart."
-msgstr "Walfaannee deetaa sanduuqa tarree keessaa, tarree deetaa hunda taattoo ammee keessaatti argita."
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id9770195\n"
-"help.text"
-msgid "The column data series are positioned at the top of the list, the line data series at the bottom of the list."
-msgstr "Sarjaan walfaannee deetaa qabannoo tarree gubbaa irratti fi sararri walfaannee deeataa gara jala tarreetti argama."
+msgstr "Taattoo ammee keessaa deetaa walfaannee hunda kan sanduuqa tarree Data Series keessaa ilaali."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id1446272\n"
+"wiz_data_series.xhp\n"
+"par_id4921720\n"
"help.text"
msgid "To organize the data series, select an entry in the list."
-msgstr "Walfaannee deetaaa qindeessuuf, tarree keessaatti galfata filadhu"
+msgstr "Deetaa walfaannee qindeessuuf, tarree keessaa galfata fili."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id3779717\n"
+"wiz_data_series.xhp\n"
+"par_id6627094\n"
"help.text"
msgid "Click Add to add another data series below the selected entry. The new data series has the same type as the selected entry."
-msgstr "Galfata filamee gadittii walfaannee deetaa biroo ida'uuf Ida'aa cuqaasi. Walfaanneen deetaa haraan akaakuu galfata filame waliin gosa tokko."
+msgstr "Galfata filamee gaditti deetaa walfaannee biroo dabaluuf Dabali cuuqaasi."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id5056611\n"
+"wiz_data_series.xhp\n"
+"par_id2926419\n"
"help.text"
msgid "Click Remove to remove the selected entry from the Data Series list."
-msgstr "Tarree walfaannee deetaa kessaa galfata filame haquuf Haqaa cuqaasi."
+msgstr "Tarree Data Series irraa galfata filame haquuf Haqi cuuqaasi."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id7786492\n"
+"wiz_data_series.xhp\n"
+"par_id4443800\n"
"help.text"
-msgid "Use the Up and Down arrow buttons to move the selected entry in the list up or down. This way you can convert a Column data series to a List data series and back. This does not change the order in the data source table, but changes only the arrangement in the chart."
-msgstr "Xiyya qabduu Olii fi Gadi fayyadami galfata filame tarree keessatti olii fi gadi siqsi. Haala kanaan walfakkaannee sarjaa deetaa gara walfakkaanne tarree deetaatti geedartee duubaatti deebisuu dandeessa. Kun tartiiba gabatee madda deetaa hin jijjiiru garuu qindaa'ina taattoo irrattii qofa jijjiira."
+msgid "Use the Up and Down arrow buttons to move the selected entry in the list up or down. This does not change the order in the data source table, but changes only the arrangement in the chart."
+msgstr "Galfata filame tarree gadii fi olii keessaa siiqsuuf qabduulee xiyyaa UP fi Down gargaarami. Kun tartiiba gabatee madda deetaa keessaa hin jijjiiru, garuu taattoo keessaa qindaa'ina qofa jijjiira."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"hd_id265816\n"
+"wiz_data_series.xhp\n"
+"hd_id9777520\n"
"help.text"
msgid "Editing data series"
-msgstr "Walfakkannee deetaa gulaaluu"
+msgstr "Gulaalaa walfaannee deetaa"
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id6768700\n"
+"wiz_data_series.xhp\n"
+"par_id1474654\n"
"help.text"
msgid "Click an entry in the list to view and edit the properties for that entry."
-msgstr "Tarree keessatti amala galfata ilaaluuf ykn gulaaluuf galfata cuqaasi."
+msgstr "Galfataaf amaloota tarree keessaa ilaaluu fi gulaalaaf galfata cuuqaasi."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id1924497\n"
+"wiz_data_series.xhp\n"
+"par_id4855189\n"
"help.text"
msgid "In the Data Ranges list box you see the role names and cell ranges of the data series components."
-msgstr "Hanga deetaa sanduuqa tarree keessatti qooda maqaa fi hangii man'ee qaamota walfaannee deetaa ilaalta."
+msgstr "sanduuqa tarree Data Ranges keessaa maqaalee fakkeenyaa fi ma`ee hammangaalee kutaalee walfaannee deetaa ilaali."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id5081942\n"
+"wiz_data_series.xhp\n"
+"par_id9475081\n"
"help.text"
msgid "Click an entry, then edit the contents in the text box below."
-msgstr "Galfata cuqaasi, itti aansuun qabeentoota sanduuqa barruu keessaa gadii gulaali."
+msgstr "Galfata cuuqaasi, itti aansuun qabeentoota sanduuqa barruu gadii gulaali."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id2958464\n"
+"wiz_data_series.xhp\n"
+"par_id4695272\n"
"help.text"
msgid "The label next to the text box states the currently selected role."
-msgstr "moggasni Sanduuqa barruutti aanu fakkeenya ammeen filame ibsa."
+msgstr "moggaasni sanduuqa barruutti aanu fakkeenya ammeen filame ibsa."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id883816\n"
+"wiz_data_series.xhp\n"
+"par_id3931699\n"
"help.text"
msgid "Enter the range or click <emph>Select data range</emph> to minimize the dialog and select the range with the mouse."
msgstr "qaaqa gadeessuu fi hangii hantuutee waliin filuuf hammangaa saagi ykn <emph>hammanga deetaa fili</emph> cuuqaasi."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id5091708\n"
+"wiz_data_series.xhp\n"
+"par_id8626667\n"
+"help.text"
+msgid "If you want a data range of multiple cell areas that are not next to each other, enter the first range, then manually add a semicolon at the end of the text box, then enter the other ranges. Use a semicolon as delimiter between ranges."
+msgstr "Yoo hammanga deetaa bal`insoota man`ee hedduu tokko tokkoo isaaniitti kan hin aanne barbaade, hangii jalqabaa saagi, achii dhuma sanduuqa barruu irratti hujeekan tuq lameedabali, itti aansuudhaan hammangalee biraa saagi. Akka daanggessaatti gidduu hammangaleetti tuq lamee gargaarami."
+
+#: wiz_data_series.xhp
+msgctxt ""
+"wiz_data_series.xhp\n"
+"par_id5971556\n"
"help.text"
msgid "The range for a data role, like Y-Values, must not include a label cell."
-msgstr "Hammangan ga`ee deetaaf, kan akka gatiiwwan-y, dirqama man`ee moggaasa ofkeessatti hin qabatan."
+msgstr "Hangii fakkeenya deetaaf, kan akka gatiiwwan-Y, dirqama man`ee maggaasa of keessatti hin qabatu."
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"hd_id974456\n"
+"wiz_data_series.xhp\n"
+"hd_id7622608\n"
"help.text"
msgid "Editing categories or data labels"
msgstr "Gulaalaa akaakuuwwanii ykn moggaasa deetaa"
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id2767113\n"
+"wiz_data_series.xhp\n"
+"par_id9222693\n"
"help.text"
msgid "Enter or select a cell range that will be used as text for categories or data labels."
-msgstr "Hammanga man`ee akaakuuwwaniif ykn moggaasa deetaaf akka barruutti gargaaru saagi ykn fili."
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id301828\n"
-"help.text"
-msgid "The values in the Categories range will be shown as labels on the x axis."
-msgstr "Gatiiwwan hammanga akaakuuwwan keessaa siiqqee x irratti akka moggaasaatti agarsiisamu."
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"hd_id8996246\n"
-"help.text"
-msgid "Inserting chart elements"
-msgstr "Maalimoota taattoo saaguu"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id5729544\n"
-"help.text"
-msgid "Use the Chart Elements page of the Chart Wizard to insert any of the following elements:"
-msgstr "Maalimoota kamiyyuu kan armaan gadii saaguuf fuula maalimoota taattoo kan taattoo masaka gargarami:"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id2932828\n"
-"help.text"
-msgid "Chart titles"
-msgstr "Matdureewwan taattoo"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id9449446\n"
-"help.text"
-msgid "Legend"
-msgstr "Waayoo"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id8122196\n"
-"help.text"
-msgid "Visible grid lines"
-msgstr "Sararoota tarsaa argaman"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id9909665\n"
-"help.text"
-msgid "For additional elements use the Insert menu of the chart in edit mode. There you can define the following elements:"
-msgstr "Haalataa gulaali keessaa maalimoota dabalataaf taattoo baafata Saagi gargaarami."
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id9141819\n"
-"help.text"
-msgid "Secondary axes"
-msgstr "Siiqqoota lammataa"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id6354869\n"
-"help.text"
-msgid "Minor grids"
-msgstr "Tarsaalee maddee"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id2685323\n"
-"help.text"
-msgid "Data labels"
-msgstr "Moggaasa deetaa"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id6042664\n"
-"help.text"
-msgid "Statistics, for example mean values, y error bars and trend lines"
-msgstr "Xiinannoo, fakkeenyaaf gatiiwwan gidduu galeessaa, dogoggora kabala y fi sararoota xurree"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id7889950\n"
-"help.text"
-msgid "To set different data labels for each data series, use the properties dialog of the data series."
-msgstr "Moggaasa deetaa adda addaa tokko tokkoo deetaaa walfaanneef qindeessuuf, amaloota qaaqa deetaa walfaannee gargaarami."
-
-#: type_net.xhp
-msgctxt ""
-"type_net.xhp\n"
-"tit\n"
-"help.text"
-msgid "Chart Type Net"
-msgstr "Akaakuu Taattoo Culkee"
-
-#: type_net.xhp
-msgctxt ""
-"type_net.xhp\n"
-"bm_id2193975\n"
-"help.text"
-msgid "<bookmark_value>net charts</bookmark_value><bookmark_value>chart types;net</bookmark_value><bookmark_value>radar charts, see net charts</bookmark_value>"
-msgstr "<bookmark_value>net charts</bookmark_value><bookmark_value>chart types;net</bookmark_value><bookmark_value>radar charts, see net charts</bookmark_value>"
-
-#: type_net.xhp
-msgctxt ""
-"type_net.xhp\n"
-"hd_id1990722\n"
-"help.text"
-msgid "<variable id=\"type_net\"><link href=\"text/schart/01/type_net.xhp\">Chart Type Net</link></variable>"
-msgstr "<variable id=\"type_net\"><link href=\"text/schart/01/type_net.xhp\">Akaakuu Taattoo Culkee</link></variable>"
-
-#: type_net.xhp
-msgctxt ""
-"type_net.xhp\n"
-"par_id40589\n"
-"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
-msgstr "Akaakuu taattoo fuula duraa <link href=\"text/schart/01/wiz_chart_type.xhp\">Taattoo Masaka</link> irraa filuu ni dandeessa."
-
-#: type_net.xhp
-msgctxt ""
-"type_net.xhp\n"
-"hd_id1391338\n"
-"help.text"
-msgid "Net"
-msgstr "Culkee"
-
-#: type_net.xhp
-msgctxt ""
-"type_net.xhp\n"
-"par_id7812433\n"
-"help.text"
-msgid "A Net chart displays data values as points connected by some lines, in a grid net that resembles a spider net or a radar tube display."
-msgstr "Taattoon culkee gatiiwwan deetaa akka tuqaalee sararootan walqabataniiti tarsaa culkee kan culkee orbobbiisa fakkaachisuu ykn radaara ujummee agarsiisu keessaatti agarsiisa."
-
-#: type_net.xhp
-msgctxt ""
-"type_net.xhp\n"
-"par_id3512375\n"
-"help.text"
-msgid "For each row of chart data, a radial is shown on which the data is plotted. All data values are shown with the same scale, so all data values should have about the same magnitude."
-msgstr "Tokko tokkoo tarree deetaaf, caliin iddoo deetaan pilootee ta`uti agarsiisama. Gatiiwwan deetaa hundi madaala walfakkaatu waliin agarsiisamu, kanaaf gatiiwwan deetaa hindi hagammee walfakkaatu qabachuu qabu."
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Data Labels"
-msgstr "Moggaasa Deetaa"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"bm_id3150275\n"
-"help.text"
-msgid "<bookmark_value>data labels in charts</bookmark_value> <bookmark_value>labels; for charts</bookmark_value> <bookmark_value>charts; data labels</bookmark_value> <bookmark_value>data values in charts</bookmark_value> <bookmark_value>chart legends; showing icons with labels</bookmark_value>"
-msgstr "<bookmark_value>moggaasa deetaa taattoo keessa</bookmark_value> <bookmark_value>Moggaasa; taattoo fi</bookmark_value> <bookmark_value>taattoo; moggaasa deetaa</bookmark_value> <bookmark_value>gatii deetaa taattoo keessa</bookmark_value> <bookmark_value>Waayoo taattoo; sajoo moggaasa issan mul'su </bookmark_value>"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id3150275\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"datenbeschriftung\"><link href=\"text/schart/01/04030000.xhp\" name=\"Data labels\">Data Labels</link></variable>"
-msgstr "<variable id=\"datenbeschriftung\"><link href=\"text/schart/01/04030000.xhp\" name=\"Data labels\">Moggaasa Deetaa</link></variable>"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id3154684\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"besch\"><ahelp hid=\".uno:InsertMenuDataLabels\">Opens the<emph> Data Labels </emph>dialog, which enables you to set the data labels.</ahelp></variable>"
-msgstr "<variable id=\"besch\"><ahelp hid=\".uno:InsertMenuDataLabels\">Qaaqa<emph> Moggaasa Deetaa </emph>kana bani, moggaasa deetaa qindeessufi si dandeessiisa.</ahelp></variable>"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id0810200912120416\n"
-"help.text"
-msgid "If an element of a data series is selected, this command works on that data series only. If no element is selected, this command works on all data series."
-msgstr "Yoo maalimaan walfaannee deetaa filame, ajajni kun walfaannee deetaa qofa irratti hojjeta. Yoo maalimni hin filatamiin, ajajni kun walfaannee deetaa hunda irratti hojjeta."
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id3149401\n"
-"17\n"
-"help.text"
-msgid "Show value as number"
-msgstr "Gatii akka lakkoofsati mul'si"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id3150751\n"
-"18\n"
-"help.text"
-msgid "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_NUMBER\">Displays the absolute values of the data points.</ahelp>"
-msgstr "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_NUMBER\">Tuqaalee deetaa gatii of daanda'aan agarsiisu.</ahelp>"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id5077059\n"
-"help.text"
-msgid "Number format"
-msgstr "Dhangii lakkoofsa"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id9794610\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog to select the number format.</ahelp>"
-msgstr "<ahelp hid=\".\">Dhangii lakkoofsa fiilu fi qaaqa bani.</ahelp>"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id3145643\n"
-"9\n"
-"help.text"
-msgid "Show value as percentage"
-msgstr "Dhibbeentaa gatii mul'si"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id3156382\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_PERCENT\">Displays the percentage of the data points in each column.</ahelp>"
-msgstr "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_PERCENT\">Tuqaalee deetaa tarjaa keessa dhibbeentaan agarsiisu.</ahelp>"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id1316873\n"
-"help.text"
-msgid "Percentage format"
-msgstr "Dhangii dhibbeentaa"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id5476241\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog to select the percentage format.</ahelp>"
-msgstr "<ahelp hid=\".\">Dhangii lakkoofsaa fiilu fi qaaqa bani.</ahelp>"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id3145228\n"
-"11\n"
-"help.text"
-msgid "Show category"
-msgstr "Akaaku mul'si"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id3154702\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_TEXT\">Shows the data point text labels.</ahelp>"
-msgstr "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_TEXT\">Asxaa barruu tuqaalee deetaa mul'su.</ahelp>"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id3150298\n"
-"15\n"
-"help.text"
-msgid "Show legend key"
-msgstr "Furtuu waayoo mul'su"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id3150205\n"
-"16\n"
-"help.text"
-msgid "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_SYMBOL\">Displays the legend icons next to each data point label.</ahelp>"
-msgstr "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_SYMBOL\">Sajoo waayoo asxaa tuqaalee deetaa itti aane'ee jiru agarsiisi.</ahelp>"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id3836787\n"
-"help.text"
-msgid "Separator"
-msgstr "Foo'aa"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id6668904\n"
-"help.text"
-msgid "<ahelp hid=\".\">Selects the separator between multiple text strings for the same object.</ahelp>"
-msgstr "<ahelp hid=\".\">Diraa Barruu hedduu wanta wal fakkataa foo'aa gar gar baasu fili.</ahelp>"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id4319284\n"
-"help.text"
-msgid "Placement"
-msgstr "Iddoo"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id5159459\n"
-"help.text"
-msgid "<ahelp hid=\".\">Selects the placement of data labels relative to the objects.</ahelp>"
-msgstr "<ahelp hid=\".\">Iddoo asxaa deetaa wanta irra fili.</ahelp>"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id1106200812280727\n"
-"help.text"
-msgid "Text Direction"
-msgstr "Qixa Barruu"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id1106200812280719\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
-msgstr "<ahelp hid=\".\">Keewwata teessuma barruu xaxaa fayyadamuuf qixa barruu ifteessi (CTL). Amalli kun kan jiraatu yoo deeggarsi teessuma barruu xaxaa kakaafame.</ahelp>"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id1007200901590713\n"
-"help.text"
-msgid "Rotate Text"
-msgstr "Barruu marsuu"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id1007200901590752\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click in the dial to set the text orientation for the data labels.</ahelp>"
-msgstr ""
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id1007200901590757\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the counterclockwise rotation angle for the data labels.</ahelp>"
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Trend Lines"
-msgstr "Adeemsa sarara"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"bm_id1744743\n"
-"help.text"
-msgid "<bookmark_value>calculating;regression curves</bookmark_value> <bookmark_value>regression curves in charts</bookmark_value> <bookmark_value>trend lines in charts</bookmark_value> <bookmark_value>mean value lines in charts</bookmark_value>"
-msgstr "<bookmark_value>Herreguu;Qonyoo regreessiioni</bookmark_value> <bookmark_value>Qonyoo regreessiioni taattoo keessa</bookmark_value> <bookmark_value>Sarara adeemsa taattoo keessa</bookmark_value> <bookmark_value>Sarara gatii meeanii taattoo keessa</bookmark_value>"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"hd_id5409405\n"
-"help.text"
-msgid "<variable id=\"regression\"><link href=\"text/schart/01/04050100.xhp\">Trend Lines</link></variable>"
-msgstr "<variable id=\"regression\"><link href=\"text/schart/01/04050100.xhp\">Sarara adeemsa</link></variable>"
-
-#: 04050100.xhp
-#, fuzzy
-msgctxt ""
-"04050100.xhp\n"
-"par_id7272255\n"
-"help.text"
-msgid "<variable id=\"trendlinestext\"><ahelp hid=\".\">Trend lines can be added to all 2D chart types except for Pie and Stock charts.</ahelp></variable>"
-msgstr "<variable id=\"trendlinestext\"><ahelp hid=\".\">Qonyoo regreessiioni, itti dabala'an kaniin beekamu sarara adeemsan, kun kaaniin ida'amu taattoo garlammee hundaa fi yoo ta'u taattoo deloo fi taattoo kuussa ti garru hin ida'amu.</ahelp></variable>"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id143436\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">No trend line is shown.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Sararan adeemsa mul'atee hin jiru.</ahelp>"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id5716727\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">A linear trend line is shown.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Sarara adeemsa sorooroo mul'isuu.</ahelp>"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id5840021\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">A logarithmic trend line is shown.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Sarara adeemsa logaarizimii mul'isuu.</ahelp>"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id9417096\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">An exponential trend line is shown.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Sarara adeemsa exponeenshaalii mul'isuu.</ahelp>"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8482924\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">A power trend line is shown.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Sarara adeemsa humna mul'isuu.</ahelp>"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8962370\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the trend line equation next to the trend line.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Sarara adeemsaa qixxaatoo issa sarara adeemsaa ti annee jiru.</ahelp>"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id6889858\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the coefficient of determination next to the trend line.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Firoomina fuldurra sarara adeemsaa itti annee jiru agarsiisa.</ahelp>"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8398998\n"
-"help.text"
-msgid "If you insert a trend line to a chart type that uses categories, like <emph>Line </emph>or <emph>Column, </emph>then the numbers 1, 2, 3, <emph>…</emph> are used as x-values to calculate the trend line."
-msgstr "Sarara adeemsa yoo taattoo issa akaakuu adda addaa fayyadamuti saagt'ee, Fakkatii <emph>Sarara </emph>ykn <emph>tarjaa, </emph>itti fufee lakkoofsa 1, 2, 3, <emph>…</emph> hudii kun akka gatii-x ti sarara adeemsa irrati heeregama."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id5676747\n"
-"help.text"
-msgid "To insert trend lines for all data series, double-click the chart to enter edit mode. Choose <item type=\"menuitem\">Insert - Trend Lines</item>, then select the type of trend line from None, Linear, Logarithmic, Exponential, or Power trend line."
-msgstr "Sarara adeemsa walfaannee deetaa hundaa ti saaguf, haalata gulaali galchuuf taattoo lama cuqaasi . Fili <item type=\"menuitem\">Saagi - Sarara Adeemsa</item>, itti fufuun sarara adeemsa hooma keessa ti fili, Sorooroo, Logaarizimii, Exponeentialii, ykn humna sarara adeemsa."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id4349192\n"
-"help.text"
-msgid "To insert a trend line for a single data series, select the data series in the chart, right-click to open the context menu, and choose <item type=\"menuitem\">Insert - Trend Line</item>."
-msgstr "Sarara adeemsa walfaanneee deetaa tokkee ti saaguf, walfaannee deeataa taattoo keessati fili, baafata halqara banuuf mirga cuqaasi, itti fufuun fili <item type=\"menuitem\">Saagi - Sarara Adeemsa</item>."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id9337443\n"
-"help.text"
-msgid "To delete a single trend line or mean value line, click the line, then press the Del key."
-msgstr "Sarara adeemsa altokkee haqufi ykn gatii sarara miinii, Sarara irra cuqaasi,itti fufuun Furtuu Haqxuu dhiibi."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id4529251\n"
-"help.text"
-msgid "To delete all trend lines, choose <item type=\"menuitem\">Insert - Trend Lines</item>, then select <emph>None</emph>."
-msgstr "Sarara adeemsa hundaa haquuf, fili <item type=\"menuitem\">Saagi - Sarara Adeemsa</item>, itti fufuun fili <emph>Hooma</emph>."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id296334\n"
-"help.text"
-msgid "A trend line is shown in the legend automatically."
-msgstr "Sararan adeemsa waayoo ofumaa keessati mul'ata."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id4072084\n"
-"help.text"
-msgid "<ahelp hid=\".\">Mean Value Lines are special trend lines that show the mean value. Use <item type=\"menuitem\">Insert - Mean Value Lines</item> to insert mean value lines for data series.</ahelp>"
-msgstr "<ahelp hid=\".\">Sararan gatii miinii sarara adeemsa addaa issa gatii miini mul'sudha. Fayyadamii <item type=\"menuitem\">Saagi - Sarara gatii miinii</item> Sarara gatii miinii walfaannee deetaa hundaa ti saaguf.</ahelp>"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id9569689\n"
-"help.text"
-msgid "The trend line has the same color as the corresponding data series. To change the line properties, select the trend line and choose <item type=\"menuitem\">Format - Format Selection - Line</item>."
-msgstr "Sararan adeemsa walfaannee deetaa wajjiin halluu wal fakkataa qaba. Amala sarara jijjiiruuf, Sarara adeemsa fili itti fufuun fili <item type=\"menuitem\">Dhangii - Amala Wanta - Sarara</item>."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id846888\n"
-"help.text"
-msgid "<ahelp hid=\".\">To show the trend line equation, select the trend line in the chart, right-click to open the context menu, and choose <emph>Insert Trend Line Equation</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\">Sarara adeemsa qixxaatoo mul'suu fi, sarara adeemsa taattoo keessati fili, Baafata halqara banuuf mirgaa cuqaasi, itti fufuun fili <emph>Sarara Adeemsa Qixxaatoo Saagi</emph>.</ahelp>"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8962065\n"
-"help.text"
-msgid "When the chart is in edit mode, %PRODUCTNAME gives you the equation of the trend line and the coefficient of determination R². Click on the trend line to see the information in the status bar."
-msgstr "Yeroo taattoon haalata gulaali keessa jiru, %PRODUCTNAME sarara adeemsa qixxaatoo fi fuldurre firoomina R² siif kenna. Odeeffannoo kabala haalojii irra ilaaluf sarara adeemsa irratti cuqaasi."
-
-#: 04050100.xhp
-#, fuzzy
-msgctxt ""
-"04050100.xhp\n"
-"par_id1328470\n"
-"help.text"
-msgid "For a category chart (for example a line chart), the trend line information is calculated using numbers 1, 2, 3, … as x-values. This is also true if your data series uses other numbers as names for the x-values. For such charts the XY chart type might be more suitable."
-msgstr "Taattoo akaakuu adda addaa fi (fakkenyaafi sarara taattoo), dadhabbiin odeeffannoo kan heeregamu lakkoofsa kana fayyadamuun 1, 2, 3, … akka gatii-x. Yoo sararan deetaa kee lakkoofsa birra akka maqaa gatii-x fayyadamaa ta'e kunnis ni dhugooma. Taattoo akkanaan XY akaakuun taattoo kun mijja'adha."
-
-#: 04050100.xhp
-#, fuzzy
-msgctxt ""
-"04050100.xhp\n"
-"par_id8092593\n"
-"help.text"
-msgid "To show the equation and the coefficient of determination, select the trend line and choose <item type=\"menuitem\">Format - Format Selection - Equation</item>."
-msgstr "Qixxaatoo fi fuldurre firoomina mul'suuf, qonyoo dadhabbii fili itti fufuun fili <item type=\"menuitem\">Dhangii - Amala Wantaa - Qixxaatoo</item>."
-
-#: 04050100.xhp
-#, fuzzy
-msgctxt ""
-"04050100.xhp\n"
-"par_id7971434\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable Show equation to see the equation of the trend line.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Qonyoo dadhabbii qixxaatoo ilaaluf qixxaatoo dandeessiisu mul'su.</ahelp>"
-
-#: 04050100.xhp
-#, fuzzy
-msgctxt ""
-"04050100.xhp\n"
-"par_id558793\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable Show Coefficient of Determination to see the determination coefficient of the trend line.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Maxxantoon Dutannoo maxxantoo dutannoo ilaaluuf dandeessiisu mul'isu.</ahelp>"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id7735221\n"
-"help.text"
-msgid "You can also calculate the parameters using Calc functions as follows."
-msgstr "Ulaagaa kana dalaga herregduu fayyadamuun akkataa kanan gadiiti herrguu dandeesa."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"hd_id5744193\n"
-"help.text"
-msgid "The linear regression equation"
-msgstr "Sorooroo dadhabbii qixxaatoo"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id9251991\n"
-"help.text"
-msgid "The <emph>linear regression</emph> follows the equation <item type=\"literal\">y=m*x+b</item>."
-msgstr "Kana <emph>Dadhabbii sorooroo</emph> qixxaatoo faana bu'ii <item type=\"literal\">y=m*x+b</item>."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id7951902\n"
-"help.text"
-msgid "m = SLOPE(Data_Y;Data_X)"
-msgstr "m = SLOOPII(Deetaa_Y;Deetaa_X)"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id6637165\n"
-"help.text"
-msgid "b = INTERCEPT(Data_Y ;Data_X)"
-msgstr "b = INTEERCEPTII(Deetaa_Y ;Deetaa_X)"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id7879268\n"
-"help.text"
-msgid "Calculate the coefficient of determination by"
-msgstr "Hubbaanno fuldurre heereguuf kanan fayyadamii"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id9244361\n"
-"help.text"
-msgid "r² = RSQ(Data_Y;Data_X)"
-msgstr "r² = RSQ(Deetaa_Y;Deetaa_X)"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id2083498\n"
-"help.text"
-msgid "Besides m, b and r² the array function <emph>LINEST</emph> provides additional statistics for a regression analysis."
-msgstr "m garrasiiti, b fi r² dalaga waraantoo ti <emph>LIINESTII</emph> xiinannoo dabalataa xiinxala dadhabbiif laattu."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"hd_id2538834\n"
-"help.text"
-msgid "The logarithm regression equation"
-msgstr "Sorooroo dadhabbii logaarizimii qixxaatoo"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id394299\n"
-"help.text"
-msgid "The <emph>logarithm regression</emph> follows the equation <item type=\"literal\">y=a*ln(x)+b</item>."
-msgstr "The <emph>dadhabbii logaarizimii</emph> qixxaatoo faana bu'ii <item type=\"literal\">y=a*ln(x)+b</item>."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id2134159\n"
-"help.text"
-msgid "a = SLOPE(Data_Y;LN(Data_X))"
-msgstr "a = SLOOPII(Deetaa_Y;LN(Deetaa_X))"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id5946531\n"
-"help.text"
-msgid "b = INTERCEPT(Data_Y ;LN(Data_X))"
-msgstr "b = INTEERCEPTII(Deetaa_Y ;LN(Deetaa_X))"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id5649281\n"
-"help.text"
-msgid "r² = RSQ(Data_Y;LN(Data_X))"
-msgstr "r² = RSQ(Deetaa_Y;LN(Deetaa_X))"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"hd_id7874080\n"
-"help.text"
-msgid "The exponential regression equation"
-msgstr "Sorooroo dadhabbii expoonentialii qixxaatoo"
-
-#: 04050100.xhp
-#, fuzzy
-msgctxt ""
-"04050100.xhp\n"
-"par_id4679097\n"
-"help.text"
-msgid "For exponential trend lines a transformation to a linear model takes place. The optimal curve fitting is related to the linear model and the results are interpreted accordingly."
-msgstr "Qonyoo dadhabbii exponeenshaalii fi sorooroon ilaallata muuxatatu bakka bua'a. Qonyoon waltaasisi gaari sorooroo ilaallata wajiin wal fakkata ta'e bu'aan issa akkasumman hiikaama."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id9112216\n"
-"help.text"
-msgid "The exponential regression follows the equation <item type=\"literal\">y=b*exp(a*x)</item> or <item type=\"literal\">y=b*m^x</item>, which is transformed to <item type=\"literal\">ln(y)=ln(b)+a*x</item> or <item type=\"literal\">ln(y)=ln(b)+ln(m)*x</item> respectively."
-msgstr "Dadhabbiin exponeenshaalii qixxaatoo hordoofee gala <item type=\"literal\">y=b*exp(a*x)</item> ykn <item type=\"literal\">y=b*m^x</item>, garra muuxata kan ti <item type=\"literal\">ln(y)=ln(b)+a*x</item> ykn <item type=\"literal\">ln(y)=ln(b)+ln(m)*x</item> tartiiban."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id4416638\n"
-"help.text"
-msgid "a = SLOPE(LN(Data_Y);Data_X)"
-msgstr "a = SLOOPEII(LN(Deetaa_Y);Deetaa_X)"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id1039155\n"
-"help.text"
-msgid "The variables for the second variation are calculated as follows:"
-msgstr "Jijjiiramaan garra garrumma lammataa akkataa kana heeregama:"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id7184057\n"
-"help.text"
-msgid "m = EXP(SLOPE(LN(Data_Y);Data_X))"
-msgstr "m = EXP(SLOOPEII(LN(Deetaa_Y);Deeta_X))"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id786767\n"
-"help.text"
-msgid "b = EXP(INTERCEPT(LN(Data_Y);Data_X))"
-msgstr "b = EXP(INTERCEEPTII(LN(Deetaa_Y);Deetaa_X))"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id7127292\n"
-"help.text"
-msgid "Calculate the coefficient of determination by"
-msgstr "Hubbaanno fuldurre heereguuf kanan fayyadamii"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id5437177\n"
-"help.text"
-msgid "r² = RSQ(LN(Data_Y);Data_X)"
-msgstr "r² = RSQ(LN(Deetaa_Y);Deetaa_X)"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id6946317\n"
-"help.text"
-msgid "Besides m, b and r² the array function LOGEST provides additional statistics for a regression analysis."
-msgstr "m garrasiiti, b and r² dalaga waraantoo LOOGESTIIN xiinannoo dabalataa xiinxala dadhabbiif laattu."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"hd_id6349375\n"
-"help.text"
-msgid "The power regression equation"
-msgstr "Humna dadhabii qixxaatoo"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id1857661\n"
-"help.text"
-msgid "For <emph>power regression</emph> curves a transformation to a linear model takes place. The power regression follows the equation <item type=\"literal\">y=b*x^a</item> , which is transformed to <item type=\"literal\">ln(y)=ln(b)+a*ln(x)</item>."
-msgstr "kana fi <emph>dadhabbii humna</emph> qonyoon muuxata ilaallata sorooroon bakka bu'a. Dadhabbiin humna qixxaatoo hordoofee gala <item type=\"literal\">y=b*x^a</item> , garra muuxata kana ti <item type=\"literal\">ln(y)=ln(b)+a*ln(x)</item>."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8517105\n"
-"help.text"
-msgid "a = SLOPE(LN(Data_Y);LN(Data_X))"
-msgstr "a = SLOOPEII(LN(Deetaa_Y);LN(Deetaa_X))"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id9827265\n"
-"help.text"
-msgid "b = EXP(INTERCEPT(LN(Data_Y);LN(Data_X))"
-msgstr "b = EXP(INTERCEEPTII(LN(Deetaa_Y);LN(Deetaa_X))"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id2357249\n"
-"help.text"
-msgid "r² = RSQ(LN(Data_Y);LN(Data_X))"
-msgstr "r² = RSQ(LN(Deetaa_Y);LN(Deetaa_X))"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"hd_id9204077\n"
-"help.text"
-msgid "Constraints"
-msgstr "Gahuu dhabu'u"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id7393719\n"
-"help.text"
-msgid "The calculation of the trend line considers only data pairs with the following values:"
-msgstr "Herregiin sarara adeemsa kan inni qabbattu deetaa lammee fi gatii kan gadiiti:"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id7212744\n"
-"help.text"
-msgid "logarithm regression: only positive x-values are considered,"
-msgstr "Dadhabbii logaarizimii: gatii-X daballa qoofaatu illalama,"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id1664479\n"
-"help.text"
-msgid "exponential regression: only positive y-values are considered,"
-msgstr "Dadhabbiin expoonentialii: gatii-y daballa qoofaatu illalama,"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8734702\n"
-"help.text"
-msgid "power regression: only positive x-values and positive y-values are considered."
-msgstr "dadhabbii humna: gatii-x fi gatii-y qoofaatu illalama."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id181279\n"
-"help.text"
-msgid "You should transform your data accordingly; it is best to work on a copy of the original data and transform the copied data."
-msgstr "Deetaa kee akkaata knan gadiiti muuxata;galragalcha deetaa issa durtii garii deetaa issa garagalchaa irrati muuxatau."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"hd_id7907040\n"
-"help.text"
-msgid "The polynomial regression equation"
-msgstr "Sorooroo dadhabbiin polonoomialii qixxaatoo"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8918729\n"
-"help.text"
-msgid "A <emph>polynomial regression</emph> curve cannot be added automatically. You must calculate this curve manually."
-msgstr "A <emph>dadhabbii polonoomialii</emph> qonyoon ofumman ida'uun hin danda'amu. Qonyoo kana dirqaaman hujeekan herregu."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id33875\n"
-"help.text"
-msgid "Create a table with the columns x, x², x³, … , xⁿ, y up to the desired degree n."
-msgstr "Gabatee tarjaa waliin uummi x, x², x³, … , xⁿ, y hangaa digirii n barbachiisa ta'e ti."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8720053\n"
-"help.text"
-msgid "Use the formula <item type=\"literal\">=LINEST(Data_Y,Data_X)</item> with the complete range x to xⁿ (without headings) as Data_X."
-msgstr "Foormulaa kana fayyadamii <item type=\"literal\">=LINEST(Data_Y,Data_X)</item> hangii guutuun x garra xⁿ (Mataduree ottu hin qabattiin) akka Deetaa_X."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id5068514\n"
-"help.text"
-msgid "The first row of the LINEST output contains the coefficients of the regression polynomial, with the coefficient of xⁿ at the leftmost position."
-msgstr "Tarree issa tokkoffaa LIINESTII bahaan kan inni qabbattu fuldurre dadhabbii polonoomialii, fuldurre dhan xⁿ garra qubannoo bitaa ti."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8202154\n"
-"help.text"
-msgid "The first element of the third row of the LINEST output is the value of r². See the <link href=\"text/scalc/01/04060107.xhp#Section8\">LINEST</link> function for details on proper use and an explanation of the other output parameters."
-msgstr "Maalimaa tokkoffaa issa tarree saddaffa LINESTII gatiin issa kan bahaa r². Ilaali <link href=\"text/scalc/01/04060107.xhp#Section8\">LINESTII</link> dalaga bal'inan iddo barbachiisa ti ulaaga fi hiikaa bahaa kan biroo waliin fayyadamu."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id4562211\n"
-"help.text"
-msgid "<link href=\"text/schart/01/04050000.xhp\">Y Error Bars tab page</link>"
-msgstr "<link href=\"text/schart/01/04050000.xhp\">Fuula caancala kabala dogongoraa Y </link>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Options"
-msgstr "Filmaata"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"bm_id3149400\n"
-"help.text"
-msgid "<bookmark_value>aligning; 2D charts</bookmark_value> <bookmark_value>charts; aligning</bookmark_value> <bookmark_value>pie charts;options</bookmark_value>"
-msgstr "<bookmark_value>hiriirsuu; taattoo Garlammee</bookmark_value> <bookmark_value>taattoo; hiriirsuu</bookmark_value> <bookmark_value>taatto deloo;dirqala</bookmark_value>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3149400\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/schart/01/04060000.xhp\" name=\"Options\">Options</link>"
-msgstr "<link href=\"text/schart/01/04060000.xhp\" name=\"Options\">Dirqala</link>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3155067\n"
-"2\n"
-"help.text"
-msgid "Use this dialog to define some options that are available for specific chart types. The contents of the Options dialog vary with the chart type."
-msgstr "Qaaqaa kana fayyadamuun hiika dirqala akaakuu taattoo murta'ee ti mul'at. Qabiyyeen qaaqa dirqala akaakuu taattoo wajjiin garra garrumma qaba."
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3150043\n"
-"9\n"
-"help.text"
-msgid "Align data series to:"
-msgstr "Walfaannee deetaa garra kanati hiriirsii:"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3145228\n"
-"10\n"
-"help.text"
-msgid "In this area you can choose between two Y axis scaling modes. The axes can only be scaled and given properties separately."
-msgstr "Iddo kana ti siiqqee Y haalata hammamteessa lammanii giddu jiru fili. Siiqqee kana hammamteessi ti amala adda addaa keni."
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3147346\n"
-"4\n"
-"help.text"
-msgid "Primary Y axis"
-msgstr "Siiqqee Y issa tokkoffaa"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3147005\n"
-"15\n"
-"help.text"
-msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_1\">This option is active as default. All data series are aligned to the primary Y axis.</ahelp>"
-msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_1\">This option is active as default. All data series are aligned to the primary Y axis.</ahelp>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3143221\n"
-"5\n"
-"help.text"
-msgid "Secondary Y axis"
-msgstr "siiqqee Y lammataa"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3154656\n"
-"11\n"
-"help.text"
-msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_2\">Changes the scaling of the Y axis. This axis is only visible when at least one data series is assigned to it and the axis view is active.</ahelp>"
-msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_2\">Changes the scaling of the Y axis. This axis is only visible when at least one data series is assigned to it and the axis view is active.</ahelp>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3166423\n"
-"6\n"
-"help.text"
-msgid "Settings"
-msgstr "Ijaarsa"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3150365\n"
-"12\n"
-"help.text"
-msgid "Define the settings for a bar chart in this area. Any changes apply to all data series of the chart, not to the selected data only."
-msgstr "Define the settings for a bar chart in this area. Any changes apply to all data series of the chart, not to the selected data only."
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3145584\n"
-"7\n"
-"help.text"
-msgid "Spacing"
-msgstr "Addaan Fageenya"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3155376\n"
-"13\n"
-"help.text"
-msgid "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_GAP\">Defines the spacing between the columns in percent.</ahelp> The maximal spacing is 600%."
-msgstr "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_GAP\">Addaan fageenya giddu lammen tarjaa dhibbeentaan qindeessu.</ahelp> Addaan fageenyi olaa kun 600%."
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3145384\n"
-"8\n"
-"help.text"
-msgid "Overlap"
-msgstr "Walirra"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3156447\n"
-"14\n"
-"help.text"
-msgid "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_OVERLAP\">Defines the necessary settings for overlapping data series.</ahelp> You can choose between -100 and +100%."
-msgstr "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_OVERLAP\">Defines the necessary settings for overlapping data series.</ahelp> You can choose between -100 and +100%."
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3153305\n"
-"16\n"
-"help.text"
-msgid "Connection Lines"
-msgstr "Sararoota walindhaa"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3148868\n"
-"17\n"
-"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:TP_OPTIONS:CB_CONNECTOR\">For \"stacked\" and \"percent\" column (vertical bar) charts, mark this check box to connect the column layers that belong together with lines.</ahelp>"
-msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_OPTIONS:CB_CONNECTOR\"> \"stacked\" fi \"percent\" tiif tattoo tarjaa( kabala dalgoo), sanduuqa mirkaneessaa kana erga mallattessite booda baqaana tarjaa walitti hidhii kan sararaan wal fakkatu waliin.</ahelp>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id9842219\n"
-"help.text"
-msgid "Show bars side by side"
-msgstr "Kabaloota moggaa moggaadhaan agarsiisi"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id9800103\n"
-"help.text"
-msgid "If two axes are shown in a bar chart, and some data series are attached to the first axis, while some other data series are attached to the second axis, then both sets of data series are shown independently, overlapping each other."
-msgstr "Yoo siiqqonni taattoo keessatti agarsiifaman fi walfaanneen deetaa siiqqonnitti tokkoffatti miilta'e, karaa biroon immoo walfakkannen deetaa siiqqoo lammaffaatti milta'u, walfakkaanneen deetaa lamaanuu gargar agarsiifamamii tokkoon tokkoo isaaniis wal'irra ta'u."
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id2144535\n"
-"help.text"
-msgid "As a result, bars attached to the first y-axis are partly or completely hidden by bars attached to the second y-axis. To avoid this, enable the option to display bars side by side. <ahelp hid=\".\">The bars from different data series are shown as if they were attached only to one axis.</ahelp>"
-msgstr "Akka bu'aatti, kabalaan siilloo y ti miilta'e walakkaan isaa ykn gutummaan guututti kabala siilloo y isa lammaffaadhaan dhokata. Kana dhorkuuf, moggaa moggadhaan filannoon akka mul'atu taasisi. <ahelp hid=\".\">Yoo siilloon tokko qofa irraatti miilta'e kabalaan walfaanee garaagaraa ni agarsiifamu.</ahelp>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id24414\n"
-"help.text"
-msgid "Clockwise direction"
-msgstr "Faallee sa'aatii"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id2527237\n"
-"help.text"
-msgid "Available for pie and donut charts. <ahelp hid=\".\">The default direction in which the pieces of a pie chart are ordered is counterclockwise. Enable the <emph>Clockwise direction</emph> checkbox to draw the pieces in opposite direction.</ahelp>"
-msgstr "Taattoo deeloo fi donutii tiif ni jira. <ahelp hid=\".\">Kallattiin durtii biilee taattoo deeloo itti qindaa'e kallattii sa'aatitiini <emph>Faallee sa'aatii </emph> haalojii dandeesisi kallattii biilee faallaan kaasuuf.</ahelp>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id401013\n"
-"help.text"
-msgid "Starting angle"
-msgstr "Kofa jalqabaa"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id761131\n"
-"help.text"
-msgid "<ahelp hid=\".\">Drag the small dot along the circle or click any position on the circle to set the starting angle of a pie or donut chart. The starting angle is the mathematical angle position where the first piece is drawn. The value of 90 degrees draws the first piece at the 12 o'clock position. A value of 0 degrees starts at the 3 o'clock position.</ahelp>"
-msgstr "<ahelp hid=\".\">Tuqaa xiqqaa karaa geengootiin harkisi yookan geengoo irratti qabannoo kamiiyyuu cuqaasi kofa jalqabaa kan deeloo yookan donutii taattoo qindeessuuf. Kofni jalqabaa qabannoo kofa herreeguu ti kan biileen irraa kaafamu. Gatiin diigrii 90 qabannoo sa'aatii 12 citaa tokkoffaa kaasa. Gatiin diigrii qabduu sa'aa 3 irraa eegala.</ahelp>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id553910\n"
-"help.text"
-msgid "In 3D pie and donut charts that were created with older versions of the software, the starting angle is 0 degrees instead of 90 degrees. For old and new 2D charts the default starting angle is 90 degrees."
-msgstr "Taattoo deeloo fi donuutii 3D keessatti kan mosajjii fooyyeen isaa duraanii ta'een uumama. Kofni jalqabaa diigrii 0 bakka diigrii 90. Taattoo haraa fi duraanii kan 2D durtii kofni diigrii jalqabaa 90."
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id1414838\n"
-"help.text"
-msgid "When you change the starting angle or the direction, only current versions of the software show the changed values. Older versions of the software display the same document using the default values: Always counterclockwise direction and a starting value of 90 degrees (2D pie charts) or 0 degrees (3D pie charts)."
-msgstr "Yommuu kofa jalqabaa yookan kallattii jijjiirtu, mosajjii fooyyee ammaa gatii jijjiirama qofa agarsiiisa. Fooyyeen mosajjii duraanii galmee walfakkaatu gatii durtii fayyadamuun agarsiisa. Yeroo hunda kallattiin sa'aatii fi gatii jalqabaa diigrii (taattoo deeloo 2D) yookan diigrii 0(taattoo deeloo 3D) dha."
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3179723\n"
-"help.text"
-msgid "Degrees"
-msgstr "Diigrii"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id2164067\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the starting angle between 0 and 359 degrees. You can also click the arrows to change the displayed value.</ahelp>"
-msgstr "<ahelp hid=\".\">Kofa jalqabaa diigrii 0 fi 359 gidduu jiru galchi. Gatii agarsiifame jijjiiruuf xiyya cuqaasuu dandeessa.</ahelp>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id0305200910524613\n"
-"help.text"
-msgid "Plot missing values"
-msgstr "Gatiiwwan hin jirre hojjadhu"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id0305200910524650\n"
-"help.text"
-msgid "Sometimes values are missing in a data series that is shown in a chart. You can select from different options how to plot the missing values. The options are available for some chart types only."
-msgstr "Walfaannee deetaa taattoo keessatti mul'ifamu keessaa takka takka gatiiwwan deetaa baduu danda'u. Gatiiwwan hin jirre kana akkatti hojjettu baruuf dirqaalee hedduu keessaa filachuu dandeessa. Gosawwan taattoo qofaaf dirqaaleen kun ni jiraatu."
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id0305200910524823\n"
-"help.text"
-msgid "Leave gap"
-msgstr "Addaan fageenya hambisi"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id0305200910524811\n"
-"help.text"
-msgid "<ahelp hid=\".\">For a missing value, no data will be shown. This is the default for chart types Column, Bar, Line, Net.</ahelp>"
-msgstr "<ahelp hid=\".\">Gatii hinjirreef, deetaan homtuu hin agarsiifamu. Kun durtii gosawwan taattooti Tarjaa, Kabala, Sarara, Culqee.</ahelp>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id0305200910524811\n"
-"help.text"
-msgid "Assume zero"
-msgstr "Zeeroo fudhu"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id030520091052489\n"
-"help.text"
-msgid "<ahelp hid=\".\">For a missing value, the y-value will be shown as zero. This is the default for chart type Area.</ahelp>"
-msgstr "<ahelp hid=\".\">Gatii hin jirreef, gatiin-y akka zeerootti agarsiifama. Kun naannoo gosa taattoof durtii dha.</ahelp>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id0305200910524837\n"
-"help.text"
-msgid "Continue line"
-msgstr "Sarara itti fufi"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id0305200910524938\n"
-"help.text"
-msgid "<ahelp hid=\".\">For a missing value, the interpolation from the neighbor values will be shown. This is the default for chart type XY.</ahelp>"
-msgstr "<ahelp hid=\".\">Gatii hin jirreef, tilmaamni gatiiwwan bukkee irraa ni argama. Gosa taattoo XY tiif kun durtii dha.</ahelp>"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id0305200910524937\n"
-"help.text"
-msgid "Include values from hidden cells"
-msgstr "Gatiiwwan mandheewwan dhokatan irraa dabali"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id030520091052494\n"
-"help.text"
-msgid "<ahelp hid=\".\">Check to also show values of currently hidden cells within the source cell range.</ahelp>"
-msgstr "<ahelp hid=\".\">Gatiiwwan maandheewwan ammee hangii mandhee maddaa keessa dhokatanii jiran agarsiisuuf mirkaneessi.</ahelp>"
-
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Y Axis"
-msgstr "Siilloo Y"
-
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"bm_id3145673\n"
-"help.text"
-msgid "<bookmark_value>Y axes; formatting</bookmark_value>"
-msgstr "<bookmark_value>Y axes; formatting</bookmark_value>"
-
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"hd_id3145673\n"
-"1\n"
-"help.text"
-msgid "Y Axis"
-msgstr "Siilloo Y"
-
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"par_id3155628\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"yachse\"><ahelp hid=\".uno:DiagramAxisY\">Opens the<emph> Y Axis </emph>dialog, to change properties of the Y axis.</ahelp></variable>"
-msgstr "<variable id=\"yachse\"><ahelp hid=\".uno:DiagramAxisY\">Siilloo Y <emph>qaaqaa bana</emph>amala siilloo Y jijjiiruuf.</ahelp></variable>"
-
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"hd_id3145171\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Arfii</link>"
-
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"hd_id3146119\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
-msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Lakkoofsota</link>"
-
-#: 04010000.xhp
-msgctxt ""
-"04010000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Titles"
-msgstr "Matdurree"
-
-#: 04010000.xhp
-msgctxt ""
-"04010000.xhp\n"
-"hd_id3147345\n"
-"1\n"
-"help.text"
-msgid "Titles"
-msgstr "Matdurree"
-
-#: 04010000.xhp
-msgctxt ""
-"04010000.xhp\n"
-"par_id3150298\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"titel\"><ahelp hid=\".uno:InsertMenuTitles\">Opens a dialog to enter or modify the titles in a chart.</ahelp></variable> You can define the text for the main title, subtitle and the axis labels, and specify if they are displayed."
-msgstr "<variable id=\"titel\"><ahelp hid=\".uno:InsertMenuTitles\">Matduree taatoo keessa galchuu fi ykn fooyyessu fi qaqaa bani.</ahelp></variable> Barruu matadurree issa gudda fi qindeessu dandeessa, matdurree xiqqa fi asxaa siiqqee, itti fufii yoo issan agarsiifamman ifteessi."
-
-#: 04010000.xhp
-msgctxt ""
-"04010000.xhp\n"
-"hd_id3150207\n"
-"3\n"
-"help.text"
-msgid "Main Title"
-msgstr "Matdurree Gudda"
-
-#: 04010000.xhp
-msgctxt ""
-"04010000.xhp\n"
-"par_id3150371\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_MAINTITLE\">Marking the <emph>Main Title</emph> option activates the main title. Enter the desired title in the corresponding text field.</ahelp>"
-msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_MAINTITLE\">Kana uumuufi <emph>Matdurree Xiqqa </emph> dirqala kaka'umsa matadurree xiqqa. Matdurree barbachisa dirree barruu firoomina ti saagi.</ahelp>"
-
-#: 04010000.xhp
-msgctxt ""
-"04010000.xhp\n"
-"hd_id3146980\n"
-"5\n"
-"help.text"
-msgid "Subtitle"
-msgstr "Matdurreexiqqa"
+msgstr "Man'ee hammanga kan akka barruuti akaakuuwwanii ykn moggaasa deetaaf gargaaru saagi ykn fili."
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3149404\n"
-"6\n"
+"wiz_data_series.xhp\n"
+"par_id9500106\n"
"help.text"
-msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_SUBTITLE\">Marking the <emph>Subtitle</emph> option activates the subtitle. Enter the desired title in the corresponding text field.</ahelp>"
-msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_SUBTITLE\">Kana uumuufi <emph>Matdurreexiqqa</emph> dirala kaka'umsa matdurreexiqqa. Matdurree barbachisa dirree barruu firoomina ti saagi.</ahelp>"
+msgid "Depending on the chart type, the texts are shown on the X axis or as data labels."
+msgstr "Akaakuu taattoo irratti hundaa`uudhaan, barruuleen siiqqee x irratti yookiin akka moggaasa deetaatti agarsiifamu."
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3152901\n"
-"7\n"
+"wiz_data_series.xhp\n"
+"par_id5201879\n"
"help.text"
-msgid "<variable id=\"sytexttitel\"><ahelp hid=\".uno:ToggleTitle\">Click <emph>Title On/Off</emph> on the Formatting bar to show or hide the title and subtitle.</ahelp></variable>"
-msgstr "<variable id=\"sytexttitel\"><ahelp hid=\".uno:ToggleTitle\">Cuqaasi <emph>Matdurree Banaa/Dhaamaa</emph> Matdurree fi matdurreexiqqa kabala dhangeessu irra jiru mul'si ykn dhoksi.</ahelp></variable>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows a list of all data series in the chart. Click an entry to view and edit that data series. Click <emph>Add</emph> to insert a new series into the list after the selected entry.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Deetaa walfaannee hunda taattoo keessatti agarsiisi. Walfaannee deetaa ilaaluu fi gulaaluuf galfata cuuqaasi. Galfata erga filtee walfaannee haaraa tarreetti saaguuf <emph>Dabali</emph> cuuqaasi.</ahelp>"
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"hd_id3156018\n"
-"8\n"
+"wiz_data_series.xhp\n"
+"par_id2571794\n"
"help.text"
-msgid "X axis"
-msgstr "Siiqqee X"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows all the data ranges used by the data series that is selected in the Data Series list box. Each data range shows the role name and the source range address.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hamamtoota deetaa hunda walfaannee deetaa sanduuqa tarree Data Series keessatti filame agarsiisi. Tokko tokkoon hammangaa deetaa maqaa fakkeenyaa fi teessoo madda hammanga agarsiisu.</ahelp>"
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3152869\n"
-"9\n"
+"wiz_data_series.xhp\n"
+"par_id2254402\n"
"help.text"
-msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_X_AXIS\">Marking the <emph>X axis</emph> option activates the X axis title. Enter the desired title in the corresponding text field.</ahelp>"
-msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_X_AXIS\">Kana uumuufi <emph>siiqqee X</emph> dirqala kaka'umsa matdurree siiqqee X. Matdurree barbachisa dirree barruu firoomina ti saagi.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the source range address from the second column of the Data Range list box. You can change the range in the text box or by dragging in the document. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Madda hamamtaa akaakuu teessoo terree sanduuqa Data Range tarjaa lammataa irraa agarsiisa. Hamamtaa sanduuqa barruu keessatti ni jijjiirama yookiin galmee keessatti harkisuun ni danda`ama. Hamamtaa deetaa calc keesaa filuun qaaqa gadeessuuf, qabduu <emph>Hamamtaa deetaa fili</emph> cuuqaasi.</ahelp>"
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"hd_id3159226\n"
-"10\n"
+"wiz_data_series.xhp\n"
+"par_id2419507\n"
"help.text"
-msgid "Y axis"
-msgstr "Siiqqee Y"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the source range address of the categories (the texts you can see on the x-axis of a category chart). For an XY-chart, the text box contains the source range of the data labels which are displayed for the data points. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Madda hamamtaa akaakuu teessoo (barruu akaakuu taattoo siiqqee-x irraa ilaaluu dandeessu) agarsiisa. Taattoo-XYf, sanduuqni barruu asxaalee deetaa madda hamamtaa kan tuqaalee deetaaf agarsiisamu ofkeessatti qabata. Hamamtaa deetaa calc keesaa filuun qaaqa hir`isuuf, qabduu <emph>Hamamtaa deetaa fili</emph> cuuqaasi.</ahelp>"
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3154763\n"
-"11\n"
+"wiz_data_series.xhp\n"
+"par_id1091647\n"
"help.text"
-msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Y_AXIS\">Marking the <emph>Y axis</emph> option activates the Y axis title. Enter the desired title in the corresponding text field.</ahelp>"
-msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Y_AXIS\">kana uumuufi <emph>Y axis</emph> dirqala kaka'umsa matdurree siiqqee Y. Matduree barbachisa dirree barruu firoomina ti saagi.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Adds a new entry below the current entry in the Data Series list. If an entry is selected, the new data series gets the same chart type.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Galfata haaraa galfata ammee gaditti tarree walfaannee Deetaa keessatti dabali. Osoo galfani filame, walfaanneen deetaa akaakuu taattoo walfakaata argatu.</ahelp>"
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"hd_id3153009\n"
-"12\n"
+"wiz_data_series.xhp\n"
+"par_id8831446\n"
"help.text"
-msgid "Z axis"
-msgstr "Siiqqee Z"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Removes the selected entry from the Data Series list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Galfata filame tarree Deetaa walfaannee keessaa baasi.</ahelp>"
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3154710\n"
-"13\n"
+"wiz_data_series.xhp\n"
+"par_id7022309\n"
"help.text"
-msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Z_AXIS\">Marking the <emph>Z axis</emph> option activates the Z axis title. Enter the desired title in the corresponding text field.</ahelp> This option is only available for 3-D charts."
-msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Z_AXIS\">kana uumuufi <emph>Siiqqee Z</emph> dirqala kaka'umsa matdurree siiqqee Z. Matdurree barbachisa dirree barruu firoomina ti saagi.</ahelp> Dirqalii kun kan mula'atu garsadee taattoo duwwaafi."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves up the selected entry in the Data Series list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Galfata tarree Deetaa walfaannee keessaa filame ol siiqsi.</ahelp>"
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3153073\n"
-"14\n"
+"wiz_data_series.xhp\n"
+"par_id2844019\n"
"help.text"
-msgid "<variable id=\"sytextachse\"><ahelp hid=\".uno:ToggleAxisTitle\">Click <emph>Axes Title On/Off</emph> on the Formatting bar to show or hide the axis labels.</ahelp></variable>"
-msgstr "<variable id=\"sytextachse\"><ahelp hid=\".uno:ToggleAxisTitle\">Cuqaasi <emph>Matdurree Siiqqee Banaa/Dhaamaa</emph> Asxaa Siiqqee kabala dhangeessu irra jiru mul'si ykn Dhoksi.</ahelp></variable>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves down the selected entry in the Data Series list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Galfata tarree Deetaa walfaannee keessaa filame gad siiqsi.</ahelp>"
diff --git a/source/om/helpcontent2/source/text/schart/02.po b/source/om/helpcontent2/source/text/schart/02.po
index 5f273e593a0..127cdde827c 100644
--- a/source/om/helpcontent2/source/text/schart/02.po
+++ b/source/om/helpcontent2/source/text/schart/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:06+0200\n"
"PO-Revision-Date: 2011-04-06 09:30+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -100,6 +100,57 @@ msgctxt ""
msgid "Data in Columns"
msgstr "Deetaa Tarjaawwaniin"
+#: 01210000.xhp
+msgctxt ""
+"01210000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Scale Text"
+msgstr "Madaala Barruu"
+
+#: 01210000.xhp
+msgctxt ""
+"01210000.xhp\n"
+"bm_id3152996\n"
+"help.text"
+msgid "<bookmark_value>text scaling in charts</bookmark_value><bookmark_value>scaling; text in charts</bookmark_value><bookmark_value>charts;scaling text</bookmark_value>"
+msgstr "<bookmark_value>taattoowwaniin barruu safaruu</bookmark_value><bookmark_value>safaruu; barruu taattoowwaniin</bookmark_value><bookmark_value>taattowwan;barruu safaruu </bookmark_value>"
+
+#: 01210000.xhp
+msgctxt ""
+"01210000.xhp\n"
+"hd_id3152996\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/schart/02/01210000.xhp\" name=\"Scale Text\">Scale Text</link>"
+msgstr "<link href=\"text/schart/02/01210000.xhp\" name=\"Scale Text\">Safaraa Barruu</link>"
+
+#: 01210000.xhp
+msgctxt ""
+"01210000.xhp\n"
+"par_id3144510\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ScaleText\">Rescales the text in the chart when you change the size of the chart.</ahelp>"
+msgstr "<ahelp hid=\".uno:ScaleText\">Yommuu hamamtaa taattoochaa jijjiirtu barruu taattoo keessaa irra deebi'ee safara.</ahelp>"
+
+#: 01210000.xhp
+msgctxt ""
+"01210000.xhp\n"
+"par_id3150441\n"
+"help.text"
+msgid "<image id=\"img_id3159153\" src=\"cmd/sc_scaletext.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3159153\">Icon</alt></image>"
+msgstr "<image id=\"img_id3159153\" src=\"cmd/sc_scaletext.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3159153\">Saajoo</alt></image>"
+
+#: 01210000.xhp
+msgctxt ""
+"01210000.xhp\n"
+"par_id3153190\n"
+"3\n"
+"help.text"
+msgid "Scale Text"
+msgstr "Madaala Barruu"
+
#: 01220000.xhp
msgctxt ""
"01220000.xhp\n"
@@ -176,54 +227,3 @@ msgctxt ""
"help.text"
msgid "<ahelp hid=\".uno:ContextType\" visibility=\"visible\">Displays the name of the current chart type.</ahelp>"
msgstr "<ahelp hid=\".uno:ContextType\" visibility=\"visible\">Maqaa gosa taattoo ammee agarsiisa.</ahelp>"
-
-#: 01210000.xhp
-msgctxt ""
-"01210000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Scale Text"
-msgstr "Madaala Barruu"
-
-#: 01210000.xhp
-msgctxt ""
-"01210000.xhp\n"
-"bm_id3152996\n"
-"help.text"
-msgid "<bookmark_value>text scaling in charts</bookmark_value><bookmark_value>scaling; text in charts</bookmark_value><bookmark_value>charts;scaling text</bookmark_value>"
-msgstr "<bookmark_value>taattoowwaniin barruu safaruu</bookmark_value><bookmark_value>safaruu; barruu taattoowwaniin</bookmark_value><bookmark_value>taattowwan;barruu safaruu </bookmark_value>"
-
-#: 01210000.xhp
-msgctxt ""
-"01210000.xhp\n"
-"hd_id3152996\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/schart/02/01210000.xhp\" name=\"Scale Text\">Scale Text</link>"
-msgstr "<link href=\"text/schart/02/01210000.xhp\" name=\"Scale Text\">Safaraa Barruu</link>"
-
-#: 01210000.xhp
-msgctxt ""
-"01210000.xhp\n"
-"par_id3144510\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ScaleText\">Rescales the text in the chart when you change the size of the chart.</ahelp>"
-msgstr "<ahelp hid=\".uno:ScaleText\">Yommuu hamamtaa taattoochaa jijjiirtu barruu taattoo keessaa irra deebi'ee safara.</ahelp>"
-
-#: 01210000.xhp
-msgctxt ""
-"01210000.xhp\n"
-"par_id3150441\n"
-"help.text"
-msgid "<image id=\"img_id3159153\" src=\"cmd/sc_scaletext.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3159153\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159153\" src=\"cmd/sc_scaletext.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3159153\">Saajoo</alt></image>"
-
-#: 01210000.xhp
-msgctxt ""
-"01210000.xhp\n"
-"par_id3153190\n"
-"3\n"
-"help.text"
-msgid "Scale Text"
-msgstr "safaraa Barruu"
diff --git a/source/om/helpcontent2/source/text/schart/04.po b/source/om/helpcontent2/source/text/schart/04.po
index 427bc36e1e7..d165a5f6c54 100644
--- a/source/om/helpcontent2/source/text/schart/04.po
+++ b/source/om/helpcontent2/source/text/schart/04.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-06 09:30+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/source/om/helpcontent2/source/text/sdraw.po b/source/om/helpcontent2/source/text/sdraw.po
index eb459fba014..961c55e4f29 100644
--- a/source/om/helpcontent2/source/text/sdraw.po
+++ b/source/om/helpcontent2/source/text/sdraw.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-06 09:30+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,202 +14,365 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: main0106.xhp
+#: main0000.xhp
msgctxt ""
-"main0106.xhp\n"
+"main0000.xhp\n"
"tit\n"
"help.text"
-msgid "Tools"
-msgstr "Meeshaalee"
+msgid "Welcome to the $[officename] Draw Help"
+msgstr "Baga Gargaarsa Fakkasaatti $[officename] Nagaan Dhuftan"
-#: main0106.xhp
+#: main0000.xhp
msgctxt ""
-"main0106.xhp\n"
-"hd_id3159155\n"
+"main0000.xhp\n"
+"hd_id3155960\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sdraw/main0106.xhp\" name=\"Tools\">Tools</link>"
-msgstr "<link href=\"text/sdraw/main0106.xhp\" name=\"Tools\">Meeshaalee</link>"
+msgid "<switchinline select=\"appl\"> <caseinline select=\"DRAW\"/> </switchinline>Welcome to the $[officename] Draw Help"
+msgstr "<switchinline select=\"appl\"> <caseinline select=\"DRAW\"/> </switchinline>Baga Gargaarsa Fakkasaa $[officename]tti Nagaan Dhuftan"
-#: main0106.xhp
+#: main0000.xhp
msgctxt ""
-"main0106.xhp\n"
-"par_id3156443\n"
+"main0000.xhp\n"
+"hd_id3154022\n"
+"3\n"
+"help.text"
+msgid "How to Work With $[officename] Draw"
+msgstr "Akkaataa Fakkasaa $[officename] Waliin Dalagdu"
+
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"hd_id3150363\n"
+"5\n"
+"help.text"
+msgid "$[officename] Draw Menus, Toolbars, and Keys"
+msgstr "Baafatawwan Fakkasaa, Kamshaalee, fi Qabduu $[officename]"
+
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"hd_id3166430\n"
+"4\n"
+"help.text"
+msgid "Help about the Help"
+msgstr "Gargaarsa waa'ee Gargaarsaa"
+
+#: main0100.xhp
+msgctxt ""
+"main0100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Menus"
+msgstr "Baafatawwan"
+
+#: main0100.xhp
+msgctxt ""
+"main0100.xhp\n"
+"hd_id3148664\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"main0100\"><link href=\"text/sdraw/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
+msgstr "<variable id=\"main0100\"><link href=\"text/sdraw/main0100.xhp\" name=\"Menus\">Baafatawwan</link></variable>"
+
+#: main0100.xhp
+msgctxt ""
+"main0100.xhp\n"
+"par_id3154684\n"
"2\n"
"help.text"
-msgid "This menu provides tools for $[officename] Draw as well as access to language and system settings."
-msgstr "Bafatii kun, Fakkasaa $[officename] dhaaf meeshaalee, akkasuumas gahi afaanii fi qindaa'ina sagantaa dhiyeesa"
+msgid "The following is a description of all $[officename] Draw menus, submenus and their dialogs."
+msgstr "Kan armaan gadii ibsa baafatootaa, bafatoota xiqqaa fi qaaqota Fakkasaa $[officename] maraati."
-#: main0106.xhp
+#: main0101.xhp
msgctxt ""
-"main0106.xhp\n"
-"hd_id3153415\n"
+"main0101.xhp\n"
+"tit\n"
+"help.text"
+msgid "File"
+msgstr "Faayilii"
+
+#: main0101.xhp
+msgctxt ""
+"main0101.xhp\n"
+"hd_id3149655\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sdraw/main0101.xhp\" name=\"File\">File</link>"
+msgstr "<link href=\"text/sdraw/main0101.xhp\" name=\"File\">Faayilii</link>"
+
+#: main0101.xhp
+msgctxt ""
+"main0101.xhp\n"
+"par_id3150868\n"
+"2\n"
+"help.text"
+msgid "This menu contains general commands for working with Draw documents, such as open, close and print. To close $[officename] Draw, click <emph>Exit</emph>."
+msgstr "Bafatii kun, galmeewwan Fakkasaa waliin hojeechuuf ajajawwan waliigalaa, isaaniis, cufuu fi maxxansuu of keessaa qaba. Fakkasaa $[officename] cufuudhaaf, <emph>Bahi</emph> cuqaasi."
+
+#: main0101.xhp
+msgctxt ""
+"main0101.xhp\n"
+"hd_id3156441\n"
"4\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
-msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">OfiinSirreessaa Dirqaalawwanii</link>"
+msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
+msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Bani</link>"
-#: main0106.xhp
+#: main0101.xhp
msgctxt ""
-"main0106.xhp\n"
-"hd_id3150044\n"
+"main0101.xhp\n"
+"hd_id3153876\n"
"6\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
-msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Maamileessi</link>"
+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"
+"main0101.xhp\n"
+"hd_id3150718\n"
+"7\n"
+"help.text"
+msgid "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">Export</link>"
+msgstr "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">Alergi</link>"
+
+#: main0101.xhp
+msgctxt ""
+"main0101.xhp\n"
+"hd_id3154754\n"
+"14\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
+msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Fooyya'oota</link>"
+
+#: main0101.xhp
+msgctxt ""
+"main0101.xhp\n"
+"hd_id3150044\n"
+"9\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
+msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Amalawwan</link>"
+
+#: main0101.xhp
+msgctxt ""
+"main0101.xhp\n"
+"hd_id3149127\n"
+"12\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
+msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Maxxansi</link>"
+
+#: main0101.xhp
+msgctxt ""
+"main0101.xhp\n"
+"hd_id3145790\n"
+"13\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Printer Settings</link>"
+msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Qindaa'inoota Maxxansaa</link>"
+
+#: main0102.xhp
+msgctxt ""
+"main0102.xhp\n"
"tit\n"
"help.text"
-msgid "$[officename] Draw Features"
-msgstr "Amalawwan Fakkasaa $[officename]"
+msgid "Edit"
+msgstr "Gulaali"
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3148797\n"
+"main0102.xhp\n"
+"hd_id3150868\n"
"1\n"
"help.text"
-msgid "<variable id=\"main0503\"><link href=\"text/sdraw/main0503.xhp\" name=\"$[officename] Draw Features\">$[officename] Draw Features</link></variable>"
-msgstr "<variable id=\"main0503\"><link href=\"text/sdraw/main0503.xhp\" name=\"$[officename] Draw Features\">Amalawwan Fakkasaa $[officename]</link></variable>"
+msgid "<link href=\"text/sdraw/main0102.xhp\" name=\"Edit\">Edit</link>"
+msgstr "<link href=\"text/sdraw/main0102.xhp\" name=\"Edit\">Gulaali</link>"
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3146975\n"
+"main0102.xhp\n"
+"par_id3146974\n"
"2\n"
"help.text"
-msgid "$[officename] Draw lets you create simple and complex drawings and export them in a number of common image formats. You can also insert tables, charts, formulas and other items created in $[officename] programs into your drawings."
-msgstr "Fakkasaan $[officename] dhangiiwwan calaqqee wajjummaa tokko keessatti, fakkasa salphaa fi xaxaa akka uumtu, akkasuumas alergiitu sidandeesiissa. Akkasuumas, fakkasaawwan kee keessatti gabateewwan, taattoowwan, foormulaawwan fi maalimaawwan kabiroo sagantaawwan $[officename] keessatti uumaman saaguu nidandeessa."
+msgid "The commands in this menu are used to edit Draw documents (for example, copying and pasting)."
+msgstr "Ajajawwanii baafata kana keessaa, galmeewwan Fakkasaa akka gulaaluuf (fakkeenyaaf, garagalchuu fi maxaansuu) fayyadu."
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3147435\n"
-"11\n"
+"main0102.xhp\n"
+"hd_id3147396\n"
+"3\n"
"help.text"
-msgid "Vector Graphics"
-msgstr "Saxaatoo Veektarii"
+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>"
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3153142\n"
-"12\n"
+"main0102.xhp\n"
+"hd_id3149400\n"
+"4\n"
"help.text"
-msgid "$[officename] Draw creates vector graphics using lines and curves defined by mathematical vectors. Vectors describe lines, ellipses, and polygons according to their geometry."
-msgstr "Fakkasaan $[officename] sararawwan fi qonyoowwan veektarii herregaan qinda'ee fayyadamuun, saxaatoo veektarii uuma. Veektariin, akkaataa jomeetirii isaaniiti sararawwan, luulloo, fi rogdanee ibsa."
+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 Iddoo Buusi</link>"
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3154320\n"
+"main0102.xhp\n"
+"hd_id3153713\n"
+"13\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
+msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Tuqaalee</link>"
+
+#: main0102.xhp
+msgctxt ""
+"main0102.xhp\n"
+"par_id3147340\n"
"14\n"
"help.text"
-msgid "Creating 3D Objects"
-msgstr "Wantawwan G3 Uumuu"
+msgid "Enables you to edit points on your drawing."
+msgstr "Tuqaalee Fakkasaa keetirraa gulaaluuf si dandeessisa."
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3145251\n"
+"main0102.xhp\n"
+"hd_id3149258\n"
"15\n"
"help.text"
-msgid "You can create simple 3D objects such as cubes, spheres, and cylinders in $[officename] Draw and even modify the light source of the objects."
-msgstr "Wantawwan G3 salphaa kaneen akka kuboowwan, mulullee, fi akmooyyeewwan Fakkasaa $[officename] keessatti uumuu, akkasuumas madda ifaa wantichaa fooyyessuu nidandeessa."
+msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Glue points</link>"
+msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Tuqaalee maxxansi</link>"
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3154491\n"
-"20\n"
+"main0102.xhp\n"
+"par_id3146315\n"
+"16\n"
"help.text"
-msgid "Grids and Snap Lines"
-msgstr ""
+msgid "Enables you to edit glue points on your drawing."
+msgstr "Tuqaalee Fakkasaa keetirraa gulaaluuf si dandeessisa."
-#: main0503.xhp
-#, fuzzy
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3149379\n"
+"main0102.xhp\n"
+"hd_id3147005\n"
+"5\n"
+"help.text"
+msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">Duplicate</link>"
+msgstr "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">Baay'isi</link>"
+
+#: main0102.xhp
+msgctxt ""
+"main0102.xhp\n"
+"hd_id3150205\n"
"6\n"
"help.text"
-msgid "Grids and snap lines provide a visual cue to help you align objects in your drawing. You can also choose to snap an object to a grid line, snap line or to the edge of another object."
-msgstr "Tarsaawwan fi qajeelchotnii, fakkasa kee keessatti yaddachisaa argiitu kan akka wantawwan hiriirsuu sigaragaaruu keena. Akkasuumas, wantichii akka ariitiin sarara tarsaa tokkotti, qajeelchotatti, yk gara qarree wanta kan birootti filachuu nidandeessa."
+msgid "<link href=\"text/simpress/01/02150000.xhp\" name=\"Cross-fading\">Cross-fading</link>"
+msgstr "<link href=\"text/simpress/01/02150000.xhp\" name=\"Cross-fading\">Cross-fading</link>"
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3155601\n"
-"16\n"
+"main0102.xhp\n"
+"hd_id3154650\n"
+"7\n"
"help.text"
-msgid "Connecting Objects to Show Relationships"
-msgstr "Wantawwan Walqabsiissuu Hariiroo Mul'isuuf"
+msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
+msgstr "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Diirreelee</link>"
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3149124\n"
-"17\n"
+"main0102.xhp\n"
+"hd_id3156446\n"
+"10\n"
"help.text"
-msgid "You can connect objects in $[officename] Draw with special lines called \"connectors\" to show the relationship between objects. Connectors attach to glue points on drawing objects and remain attached when the connected objects are moved. Connectors are useful for creating organization charts and technical diagrams."
-msgstr "Hariiroo wantawwan gidduu jiru mul'isuuf, wantawwan Fakkasaa $[officename] keessaa sararawwan addayaa \"kornyoo\" jedhamee waamamu waliin walindhuu nidandeessa. Kornyoowwanii tuqaalee cufaa wantawwan fakkasaa irraa miiltoo tahan, yammuu wantawwan walqabatan siqaniis miiltoo akkuma tahetti hafa. Kornyoowwanii taattoowwan jaarmayaa fi safaka ogummaa uumuuf gargaara."
+msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
+msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Geessitoota</link>"
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3155764\n"
-"21\n"
+"main0102.xhp\n"
+"hd_id3148699\n"
+"11\n"
"help.text"
-msgid "Displaying Dimensions"
-msgstr "Rogawwan Agarsiissuu"
+msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">Barruyyaa Fakkaattii</link>"
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3155333\n"
-"22\n"
+"main0102.xhp\n"
+"hd_id3157867\n"
+"12\n"
"help.text"
-msgid "Technical diagrams often show the dimensions of objects in the drawing. In $[officename] Draw, you can use dimension lines to calculate and display linear dimensions."
-msgstr "Safakawwanii ogummaa, yeroo hedduu garawwan wanta fakkasicha keessaa mul'isu. Fakkasaa $[officename] keessatti, gara sorooroo herreguu, fi agarsiissuuf, sararawwan garaa fayyadamuu nidandeessa."
+msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
+msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Geessituu</link>"
-#: main0503.xhp
+#: main0103.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3154705\n"
-"18\n"
+"main0103.xhp\n"
+"tit\n"
"help.text"
-msgid "Gallery"
-msgstr "Kuusaafaayaa"
+msgid "View"
+msgstr "Mul'isi"
-#: main0503.xhp
+#: main0103.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3154022\n"
-"7\n"
+"main0103.xhp\n"
+"hd_id3152576\n"
+"1\n"
"help.text"
-msgid "The Gallery contains images, animations, sounds and other items that you can insert and use in your drawings as well as other $[officename] programs."
-msgstr "Kuusaafaayaan, calaqqee, sochii fakkinaa, sagalee fi maalimaawwan ka biroo isa ati fakkasaa kee keessatti saaguu fi fayyadamuu dandeessu, akkasuumas sagantaawwan $[officename] ka biroo of keessaa qaba."
+msgid "<link href=\"text/sdraw/main0103.xhp\" name=\"View\">View</link>"
+msgstr "<link href=\"text/sdraw/main0103.xhp\" name=\"View\">Mul'isi</link>"
-#: main0503.xhp
+#: main0103.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3149207\n"
-"19\n"
+"main0103.xhp\n"
+"par_id3159155\n"
+"2\n"
"help.text"
-msgid "Graphic File Formats"
-msgstr "Dhangiiwwan Faayilii Saxaatoo"
+msgid "Sets the display properties of Draw documents."
+msgstr "Amalawwan agarsiisa galmee Fakkasaa qindeessa"
-#: main0503.xhp
+#: main0103.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3155112\n"
-"5\n"
+"main0103.xhp\n"
+"par_idN105AB\n"
"help.text"
-msgid "$[officename] Draw can export to many common graphic file formats, such as BMP, GIF, JPG, and PNG."
-msgstr "Fakkasaan $[officename], faayilii saxaatoo wajjummaa gara dhangiiwwan hedduutti alerguu dandaa'a isaaniis, BMP, GIF, JPG, fi PNG."
+msgid "Normal"
+msgstr "Baratamoo"
+
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_idN105AF\n"
+"help.text"
+msgid "Switch to normal view of the page."
+msgstr "Gara mul'annoo baratamoo fuulaatti jijjiiri."
+
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_idN105B2\n"
+"help.text"
+msgid "Master"
+msgstr "Hundataa"
+
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_idN105B6\n"
+"help.text"
+msgid "Switch to the master page view."
+msgstr "Gara mul'annoo fuula hundataatti jijjiiri."
+
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id3149666\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>"
#: main0104.xhp
msgctxt ""
@@ -441,6 +604,146 @@ msgctxt ""
msgid "<link href=\"text/simpress/01/05140000.xhp\" name=\"Layer\">Layer</link>"
msgstr "<link href=\"text/simpress/01/05140000.xhp\" name=\"Layer\">Baqqaana</link>"
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
+"tit\n"
+"help.text"
+msgid "Tools"
+msgstr "Meeshaalee"
+
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
+"hd_id3159155\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sdraw/main0106.xhp\" name=\"Tools\">Tools</link>"
+msgstr "<link href=\"text/sdraw/main0106.xhp\" name=\"Tools\">Meeshaalee</link>"
+
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
+"par_id3156443\n"
+"2\n"
+"help.text"
+msgid "This menu provides tools for $[officename] Draw as well as access to language and system settings."
+msgstr "Bafatii kun, Fakkasaa $[officename] dhaaf meeshaalee, akkasuumas gahi afaanii fi qindaa'ina sagantaa dhiyeesa"
+
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
+"hd_id3153415\n"
+"4\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">OfiinSirreessaa Dirqaalawwanii</link>"
+
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
+"hd_id3150044\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
+msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Maamileessi</link>"
+
+#: main0200.xhp
+msgctxt ""
+"main0200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Toolbars"
+msgstr "Kamshaalee"
+
+#: main0200.xhp
+msgctxt ""
+"main0200.xhp\n"
+"hd_id3148663\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"main0200\"><link href=\"text/sdraw/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
+msgstr "<variable id=\"main0200\"><link href=\"text/sdraw/main0200.xhp\" name=\"Toolbars\">Kamshaalee</link></variable>"
+
+#: main0200.xhp
+msgctxt ""
+"main0200.xhp\n"
+"par_id3125863\n"
+"2\n"
+"help.text"
+msgid "This section provides an overview of the toolbars available in $[officename] Draw."
+msgstr "Kutaan kun, ilaalcha gubbaa kamshaalee Fakkasaa $[officename] keessa jiran laata."
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"tit\n"
+"help.text"
+msgid "Line and Filling Bar"
+msgstr "Sararaa fi Kabala Guutinsaa"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3149669\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sdraw/main0202.xhp\" name=\"Line and Filling Bar\">Line and Filling Bar</link>"
+msgstr "<link href=\"text/sdraw/main0202.xhp\" name=\"Line and Filling Bar\">Sararaa fi Kabala Guutinsaa</link>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id3150543\n"
+"2\n"
+"help.text"
+msgid "The Line and Filling bar contains commands for the current editing mode."
+msgstr "Sararaa fi kabala Rigdoo haalataa gulaalii ammaatii ajajawwan of keessaa qaba."
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3149664\n"
+"3\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Haalata Sararaa</link>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3156285\n"
+"4\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Yabbina Sararaa</link>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3154015\n"
+"5\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Halluu Sararaa</link>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3155767\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Area Style / Filling</link>"
+msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Teessuma Akkaataa / Rigdoo</link>"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3341471\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05210600.xhp\" name=\"Shadow\">Shadow</link>"
+msgstr "<link href=\"text/shared/01/05210600.xhp\" name=\"Shadow\">Gaaddidduu</link>"
+
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -595,277 +898,6 @@ msgctxt ""
msgid "Switches the 3D effects on and off for the selected objects."
msgstr "Wantoota filamaniif galteewwan g-3 bana, dhaamsa."
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"tit\n"
-"help.text"
-msgid "View"
-msgstr "Mul'isi"
-
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"hd_id3152576\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sdraw/main0103.xhp\" name=\"View\">View</link>"
-msgstr "<link href=\"text/sdraw/main0103.xhp\" name=\"View\">Mul'isi</link>"
-
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"par_id3159155\n"
-"2\n"
-"help.text"
-msgid "Sets the display properties of Draw documents."
-msgstr "Amalawwan agarsiisa galmee Fakkasaa qindeessa"
-
-#: 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 "Switch to normal view of the page."
-msgstr "Gara mul'annoo baratamoo fuulaatti jijjiiri."
-
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"par_idN105B2\n"
-"help.text"
-msgid "Master"
-msgstr "Hundataa"
-
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"par_idN105B6\n"
-"help.text"
-msgid "Switch to the master page view."
-msgstr "Gara mul'annoo fuula hundataatti jijjiiri."
-
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"hd_id3149666\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>"
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"tit\n"
-"help.text"
-msgid "Edit"
-msgstr "Gulaali"
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3150868\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sdraw/main0102.xhp\" name=\"Edit\">Edit</link>"
-msgstr "<link href=\"text/sdraw/main0102.xhp\" name=\"Edit\">Gulaali</link>"
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"par_id3146974\n"
-"2\n"
-"help.text"
-msgid "The commands in this menu are used to edit Draw documents (for example, copying and pasting)."
-msgstr "Ajajawwanii baafata kana keessaa, galmeewwan Fakkasaa akka gulaaluuf (fakkeenyaaf, garagalchuu fi maxaansuu) fayyadu."
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3147396\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
-msgstr "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Addayaatti Maxxansi</link>"
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3149400\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
-msgstr "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Barbaadii Iddoo Buusi</link>"
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3153713\n"
-"13\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
-msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Tuqaalee</link>"
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"par_id3147340\n"
-"14\n"
-"help.text"
-msgid "Enables you to edit points on your drawing."
-msgstr "Tuqaalee Fakkasaa keetirraa akka gulaaltu si dandeessisa."
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3149258\n"
-"15\n"
-"help.text"
-msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Glue points</link>"
-msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Tuqaalee maxxansi</link>"
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"par_id3146315\n"
-"16\n"
-"help.text"
-msgid "Enables you to edit glue points on your drawing."
-msgstr "Fakkasaa kee irratti tuqaalee maxxanee gulaaluu sidandeessisa."
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3147005\n"
-"5\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">Duplicate</link>"
-msgstr "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">Baay'isi</link>"
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3150205\n"
-"6\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/02150000.xhp\" name=\"Cross-fading\">Cross-fading</link>"
-msgstr "<link href=\"text/simpress/01/02150000.xhp\" name=\"Cross-fading\">Cross-fading</link>"
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3154650\n"
-"7\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
-msgstr "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Diirreelee</link>"
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3156446\n"
-"10\n"
-"help.text"
-msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
-msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Geessitoota</link>"
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3148699\n"
-"11\n"
-"help.text"
-msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">Barruyyaa Fakkaattii</link>"
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3157867\n"
-"12\n"
-"help.text"
-msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
-msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Geessituu</link>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"tit\n"
-"help.text"
-msgid "Line and Filling Bar"
-msgstr "Sararaa fi Kabala Guutinsaa"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id3149669\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sdraw/main0202.xhp\" name=\"Line and Filling Bar\">Line and Filling Bar</link>"
-msgstr "<link href=\"text/sdraw/main0202.xhp\" name=\"Line and Filling Bar\">Sararaa fi Kabala Guutinsaa</link>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id3150543\n"
-"2\n"
-"help.text"
-msgid "The Line and Filling bar contains commands for the current editing mode."
-msgstr "Sararaa fi kabala Rigdoo haalataa gulaalii ammaatii ajajawwan of keessaa qaba."
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id3149664\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
-msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Haalata Sararaa</link>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id3156285\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
-msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Yabbina Sararaa</link>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id3154015\n"
-"5\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
-msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Halluu Sararaa</link>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id3155767\n"
-"6\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Area Style / Filling</link>"
-msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Teessuma Akkaataa / Rigdoo</link>"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id3341471\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210600.xhp\" name=\"Shadow\">Shadow</link>"
-msgstr "<link href=\"text/shared/01/05210600.xhp\" name=\"Shadow\">Gaaddidduu</link>"
-
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -902,7 +934,6 @@ msgid "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">Display
msgstr "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">Tarsaa Agarsiisi</link>"
#: main0213.xhp
-#, fuzzy
msgctxt ""
"main0213.xhp\n"
"hd_id3149018\n"
@@ -921,7 +952,6 @@ msgid "<link href=\"text/shared/02/01171300.xhp\" name=\"Snap to Grid\">Snap to
msgstr "<link href=\"text/shared/02/01171300.xhp\" name=\"Snap to Grid\">Tarsaa Ariitii</link>"
#: main0213.xhp
-#, fuzzy
msgctxt ""
"main0213.xhp\n"
"hd_id3146313\n"
@@ -975,187 +1005,154 @@ msgctxt ""
msgid "<link href=\"text/simpress/02/13190000.xhp\" name=\"Select Text Area Only\">Select Text Area Only</link>"
msgstr "<link href=\"text/simpress/02/13190000.xhp\" name=\"Select Text Area Only\">Naannoo Barruu Qofa Fili</link>"
-#: main0000.xhp
+#: main0503.xhp
msgctxt ""
-"main0000.xhp\n"
+"main0503.xhp\n"
"tit\n"
"help.text"
-msgid "Welcome to the $[officename] Draw Help"
-msgstr "Baga Gargaarsa Fakkasaatti $[officename] Nagaan Dhuftan"
+msgid "$[officename] Draw Features"
+msgstr "Amalawwan Fakkasaa $[officename]"
-#: main0000.xhp
+#: main0503.xhp
msgctxt ""
-"main0000.xhp\n"
-"hd_id3155960\n"
+"main0503.xhp\n"
+"hd_id3148797\n"
"1\n"
"help.text"
-msgid "<switchinline select=\"appl\"> <caseinline select=\"DRAW\"/> </switchinline>Welcome to the $[officename] Draw Help"
-msgstr "<switchinline select=\"appl\"> <caseinline select=\"DRAW\"/> </switchinline>Baga Gargaarsa Fakkasaa $[officename]tti Nagaan Dhuftan"
-
-#: main0000.xhp
-msgctxt ""
-"main0000.xhp\n"
-"hd_id3154022\n"
-"3\n"
-"help.text"
-msgid "How to Work With $[officename] Draw"
-msgstr "Akkaataa Fakkasaa $[officename] Waliin Dalagdu"
-
-#: main0000.xhp
-msgctxt ""
-"main0000.xhp\n"
-"hd_id3150363\n"
-"5\n"
-"help.text"
-msgid "$[officename] Draw Menus, Toolbars, and Keys"
-msgstr "Baafatawwan Fakkasaa, Kamshaalee, fi Qabduu $[officename]"
+msgid "<variable id=\"main0503\"><link href=\"text/sdraw/main0503.xhp\" name=\"$[officename] Draw Features\">$[officename] Draw Features</link></variable>"
+msgstr "<variable id=\"main0503\"><link href=\"text/sdraw/main0503.xhp\" name=\"$[officename] Draw Features\">Amalawwan Fakkasaa $[officename]</link></variable>"
-#: main0000.xhp
+#: main0503.xhp
msgctxt ""
-"main0000.xhp\n"
-"hd_id3166430\n"
-"4\n"
+"main0503.xhp\n"
+"par_id3146975\n"
+"2\n"
"help.text"
-msgid "Help about the Help"
-msgstr "Gargaarsa waa'ee Gargaarsaa"
+msgid "$[officename] Draw lets you create simple and complex drawings and export them in a number of common image formats. You can also insert tables, charts, formulas and other items created in $[officename] programs into your drawings."
+msgstr "Fakkasaan $[officename] dhangiiwwan calaqqee wajjummaa tokko keessatti, fakkasa salphaa fi xaxaa akka uumtu, akkasuumas alergiitu sidandeesiissa. Akkasuumas, fakkasaawwan kee keessatti gabateewwan, taattoowwan, foormulaawwan fi maalimaawwan kabiroo sagantaawwan $[officename] keessatti uumaman saaguu nidandeessa."
-#: main0100.xhp
+#: main0503.xhp
msgctxt ""
-"main0100.xhp\n"
-"tit\n"
+"main0503.xhp\n"
+"hd_id3147435\n"
+"11\n"
"help.text"
-msgid "Menus"
-msgstr "Baafatawwan"
+msgid "Vector Graphics"
+msgstr "Saxaatoo Veektarii"
-#: main0100.xhp
+#: main0503.xhp
msgctxt ""
-"main0100.xhp\n"
-"hd_id3148664\n"
-"1\n"
+"main0503.xhp\n"
+"par_id3153142\n"
+"12\n"
"help.text"
-msgid "<variable id=\"main0100\"><link href=\"text/sdraw/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
-msgstr "<variable id=\"main0100\"><link href=\"text/sdraw/main0100.xhp\" name=\"Menus\">Baafatawwan</link></variable>"
+msgid "$[officename] Draw creates vector graphics using lines and curves defined by mathematical vectors. Vectors describe lines, ellipses, and polygons according to their geometry."
+msgstr "Fakkasaan $[officename] sararawwan fi qonyoowwan veektarii herregaan qinda'ee fayyadamuun, saxaatoo veektarii uuma. Veektariin, akkaataa jomeetirii isaaniiti sararawwan, luulloo, fi rogdanee ibsa."
-#: main0100.xhp
+#: main0503.xhp
msgctxt ""
-"main0100.xhp\n"
-"par_id3154684\n"
-"2\n"
+"main0503.xhp\n"
+"hd_id3154320\n"
+"14\n"
"help.text"
-msgid "The following is a description of all $[officename] Draw menus, submenus and their dialogs."
-msgstr "Kan armaan gadii ibsa baafatootaa, bafatoota xiqqaa fi qaaqota Fakkasaa $[officename] maraati."
+msgid "Creating 3D Objects"
+msgstr "Wantawwan G3 Uumuu"
-#: main0200.xhp
+#: main0503.xhp
msgctxt ""
-"main0200.xhp\n"
-"tit\n"
+"main0503.xhp\n"
+"par_id3145251\n"
+"15\n"
"help.text"
-msgid "Toolbars"
-msgstr "Kamshaalee"
+msgid "You can create simple 3D objects such as cubes, spheres, and cylinders in $[officename] Draw and even modify the light source of the objects."
+msgstr "Wantawwan G3 salphaa kaneen akka kuboowwan, mulullee, fi akmooyyeewwan Fakkasaa $[officename] keessatti uumuu, akkasuumas madda ifaa wantichaa fooyyessuu nidandeessa."
-#: main0200.xhp
+#: main0503.xhp
msgctxt ""
-"main0200.xhp\n"
-"hd_id3148663\n"
-"1\n"
+"main0503.xhp\n"
+"hd_id3154491\n"
+"20\n"
"help.text"
-msgid "<variable id=\"main0200\"><link href=\"text/sdraw/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
-msgstr "<variable id=\"main0200\"><link href=\"text/sdraw/main0200.xhp\" name=\"Toolbars\">Kamshaalee</link></variable>"
+msgid "Grids and Snap Lines"
+msgstr ""
-#: main0200.xhp
+#: main0503.xhp
msgctxt ""
-"main0200.xhp\n"
-"par_id3125863\n"
-"2\n"
+"main0503.xhp\n"
+"par_id3149379\n"
+"6\n"
"help.text"
-msgid "This section provides an overview of the toolbars available in $[officename] Draw."
-msgstr "Kutaan kun, ilaalcha gubbaa kamshaalee Fakkasaa $[officename] keessa jiran laata."
+msgid "Grids and snap lines provide a visual cue to help you align objects in your drawing. You can also choose to snap an object to a grid line, snap line or to the edge of another object."
+msgstr "Tarsaawwan fi qajeelchotnii, fakkasa kee keessatti yaddachisaa argiitu kan akka wantawwan hiriirsuu sigaragaaruu keena. Akkasuumas, wantichii akka ariitiin sarara tarsaa tokkotti, qajeelchotatti, yk gara qarree wanta kan birootti filachuu nidandeessa."
-#: main0101.xhp
+#: main0503.xhp
msgctxt ""
-"main0101.xhp\n"
-"tit\n"
+"main0503.xhp\n"
+"hd_id3155601\n"
+"16\n"
"help.text"
-msgid "File"
-msgstr "Faayilii"
+msgid "Connecting Objects to Show Relationships"
+msgstr "Wantawwan Walqabsiissuu Hariiroo Mul'isuuf"
-#: main0101.xhp
+#: main0503.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3149655\n"
-"1\n"
+"main0503.xhp\n"
+"par_id3149124\n"
+"17\n"
"help.text"
-msgid "<link href=\"text/sdraw/main0101.xhp\" name=\"File\">File</link>"
-msgstr "<link href=\"text/sdraw/main0101.xhp\" name=\"File\">Faayilii</link>"
+msgid "You can connect objects in $[officename] Draw with special lines called \"connectors\" to show the relationship between objects. Connectors attach to glue points on drawing objects and remain attached when the connected objects are moved. Connectors are useful for creating organization charts and technical diagrams."
+msgstr "Hariiroo wantawwan gidduu jiru mul'isuuf, wantawwan Fakkasaa $[officename] keessaa sararawwan addayaa \"kornyoo\" jedhamee waamamu waliin walindhuu nidandeessa. Kornyoowwanii tuqaalee cufaa wantawwan fakkasaa irraa miiltoo tahan, yammuu wantawwan walqabatan siqaniis miiltoo akkuma tahetti hafa. Kornyoowwanii taattoowwan jaarmayaa fi safaka ogummaa uumuuf gargaara."
-#: main0101.xhp
+#: main0503.xhp
msgctxt ""
-"main0101.xhp\n"
-"par_id3150868\n"
-"2\n"
+"main0503.xhp\n"
+"hd_id3155764\n"
+"21\n"
"help.text"
-msgid "This menu contains general commands for working with Draw documents, such as open, close and print. To close $[officename] Draw, click <emph>Exit</emph>."
-msgstr "Bafatii kun, galmeewwan Fakkasaa waliin hojeechuuf ajajawwan waliigalaa, isaaniis, cufuu fi maxxansuu of keessaa qaba. Fakkasaa $[officename] cufuudhaaf, <emph>Bahi</emph> cuqaasi."
+msgid "Displaying Dimensions"
+msgstr "Rogawwan Agarsiissuu"
-#: main0101.xhp
+#: main0503.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3156441\n"
-"4\n"
+"main0503.xhp\n"
+"par_id3155333\n"
+"22\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 "Technical diagrams often show the dimensions of objects in the drawing. In $[officename] Draw, you can use dimension lines to calculate and display linear dimensions."
+msgstr "Safakawwanii ogummaa, yeroo hedduu garawwan wanta fakkasicha keessaa mul'isu. Fakkasaa $[officename] keessatti, gara sorooroo herreguu, fi agarsiissuuf, sararawwan garaa fayyadamuu nidandeessa."
-#: main0101.xhp
+#: main0503.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3153876\n"
-"6\n"
+"main0503.xhp\n"
+"hd_id3154705\n"
+"18\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 "Gallery"
+msgstr "Kuusaafaayaa"
-#: main0101.xhp
+#: main0503.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3150718\n"
+"main0503.xhp\n"
+"par_id3154022\n"
"7\n"
"help.text"
-msgid "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">Export</link>"
-msgstr "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">Alergi</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3154754\n"
-"14\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
-msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Fooyya'oota</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3150044\n"
-"9\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
-msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Amalawwan</link>"
+msgid "The Gallery contains images, animations, sounds and other items that you can insert and use in your drawings as well as other $[officename] programs."
+msgstr "Kuusaafaayaan, calaqqee, sochii fakkinaa, sagalee fi maalimaawwan ka biroo isa ati fakkasaa kee keessatti saaguu fi fayyadamuu dandeessu, akkasuumas sagantaawwan $[officename] ka biroo of keessaa qaba."
-#: main0101.xhp
+#: main0503.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3149127\n"
-"12\n"
+"main0503.xhp\n"
+"hd_id3149207\n"
+"19\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 "Graphic File Formats"
+msgstr "Dhangiiwwan Faayilii Saxaatoo"
-#: main0101.xhp
+#: main0503.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3145790\n"
-"13\n"
+"main0503.xhp\n"
+"par_id3155112\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Printer Settings</link>"
-msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Qindaa'inoota Maxxansaa</link>"
+msgid "$[officename] Draw can export to many common graphic file formats, such as BMP, GIF, JPG, and PNG."
+msgstr "Fakkasaan $[officename], faayilii saxaatoo wajjummaa gara dhangiiwwan hedduutti alerguu dandaa'a isaaniis, BMP, GIF, JPG, fi PNG."
diff --git a/source/om/helpcontent2/source/text/sdraw/00.po b/source/om/helpcontent2/source/text/sdraw/00.po
index 2ac10146c4c..486e968927b 100644
--- a/source/om/helpcontent2/source/text/sdraw/00.po
+++ b/source/om/helpcontent2/source/text/sdraw/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-06 09:30+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/source/om/helpcontent2/source/text/sdraw/01.po b/source/om/helpcontent2/source/text/sdraw/01.po
index 26e53d13d12..b0f70b941c1 100644
--- a/source/om/helpcontent2/source/text/sdraw/01.po
+++ b/source/om/helpcontent2/source/text/sdraw/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:06+0200\n"
"PO-Revision-Date: 2011-04-06 09:30+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/source/om/helpcontent2/source/text/sdraw/04.po b/source/om/helpcontent2/source/text/sdraw/04.po
index 7f888db10e1..1ae3186fa5e 100644
--- a/source/om/helpcontent2/source/text/sdraw/04.po
+++ b/source/om/helpcontent2/source/text/sdraw/04.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-06 09:30+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -297,7 +297,7 @@ msgctxt ""
"41\n"
"help.text"
msgid "Shortcut Keys for Drawings"
-msgstr "Furtuuwwan Qaxxaamuraa Fakkiiwwaniif"
+msgstr "Furtuuwwan Qaxxaamuraa Fakkafamawwaniif"
#: 01020000.xhp
msgctxt ""
@@ -787,7 +787,6 @@ msgid "Press the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option<
msgstr "Furtuu<switchinline select=\"sys\"><caseinline select=\"MAC\">Dirqala</caseinline><defaultinline>Alt</defaultinline></switchinline> tuqiiti,hantuuttee waliin harkisi,wanta kaasuu yookiin haammamtaa isa jijjiirtuu haandhuura wanta gara alaa irraa."
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3143232\n"
diff --git a/source/om/helpcontent2/source/text/sdraw/guide.po b/source/om/helpcontent2/source/text/sdraw/guide.po
index b001ada5bf6..f9ce40da2e5 100644
--- a/source/om/helpcontent2/source/text/sdraw/guide.po
+++ b/source/om/helpcontent2/source/text/sdraw/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:06+0200\n"
"PO-Revision-Date: 2011-04-09 12:03+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,6 +14,402 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"tit\n"
+"help.text"
+msgid "Arranging, Aligning and Distributing Objects"
+msgstr "Wantoota Gurmeessuu,Hiriirsuu fi Raabsuu"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"hd_id3149656\n"
+"73\n"
+"help.text"
+msgid "<variable id=\"align_arrange\"><link href=\"text/sdraw/guide/align_arrange.xhp\" name=\"Arranging and Aligning Objects\">Arranging, Aligning and Distributing Objects</link></variable>"
+msgstr "<variable id=\"align_arrange\"><link href=\"text/sdraw/guide/align_arrange.xhp\" name=\"Arranging and Aligning Objects\">Wantoota Gurmeessuu, Hiriirsuu fi Raabsuu</link></variable>"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"bm_id3125863\n"
+"help.text"
+msgid "<bookmark_value>arranging; objects (guide)</bookmark_value><bookmark_value>objects;aligning</bookmark_value><bookmark_value>distributing draw objects</bookmark_value><bookmark_value>aligning;draw objects</bookmark_value>"
+msgstr "<bookmark_value>wantoota gurmeessuu(guide)</bookmark_value><bookmark_value> wantoota;hiriiran</bookmark_value><bookmark_value> wantoota bocaman rabsuu</bookmark_value><bookmark_value>wantoota bocaman hiriirsuu</bookmark_value>"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"hd_id3125863\n"
+"17\n"
+"help.text"
+msgid "Arranging Objects"
+msgstr "Wantoota Gurmeessuu"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3153727\n"
+"18\n"
+"help.text"
+msgid "Each object that you place in your document is successively stacked on the preceding object. To re-arrange the stacking order of a selected object, proceed as follows."
+msgstr "Tokkoon tokkoo want galmee keessa olkeesse milkaa'inaan wanta dura irrattii tarree galeera tuulameera.Wanticha filatame tarreeffame duraa dubaanirra deeebitee gurmeesuuf akka itti anutti jalqabi."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN107D5\n"
+"help.text"
+msgid "Click the object whose position you want to change."
+msgstr "Wanticha iddoo isaa jijjiiruu barbaadde cuqaasi."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3150327\n"
+"78\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to bring up the context menu and choose one of the arrange options:"
+msgstr "<item type=\"menuitem\">Fooyyessii-Gurmeessii </item>Filadhu ibsa hima galuu msichaa fudhuutii tarreeffama tokko filadhu."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN107E6\n"
+"help.text"
+msgid "<emph>Bring to Front</emph> places the object on top of all other objects"
+msgstr "<emph>Bara Fuulduratti Geessi</emph> ammoo wantich gubbaa wantoota biroo hundarragubachiisa"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN107EC\n"
+"help.text"
+msgid "<emph>Bring Forward</emph> places the object one place forward in the stack of objects"
+msgstr "<emph>Fuulduratti Tarkaanfachiisuu</emph> ammoo durse iddoo wantoota tarreeffam kaa'a."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN107F2\n"
+"help.text"
+msgid "<emph>Send Backward</emph> places the object one place back in the stack of objects"
+msgstr "<emph>Duubatti Erga</emph>Wanticha kan olka'u duuba kuufama wantootati"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN107F8\n"
+"help.text"
+msgid "<emph>Send to Back</emph> places the object behind all other objects"
+msgstr "<emph>Duubatti Erguu</emph> wanticha duuba wantoota biroo hundaa kaa'a"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN107FE\n"
+"help.text"
+msgid "<emph>Behind Object</emph> places the object behind another object that you select"
+msgstr "<emph>wantoota Duubaa</emph> ammoo wanticha duuba ta'anta biroo huunda olkaa'a"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"hd_id3155766\n"
+"79\n"
+"help.text"
+msgid "Arranging an Object Behind Another Object"
+msgstr "Wanticha Wanta Biroo Duubatti Gurmeessi"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN10811\n"
+"help.text"
+msgid "Click the object whose position you want to change."
+msgstr "Wanticha iddoo isaa jijjiiruu barbaadde cuqaasi."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3154253\n"
+"80\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to open the context menu and choose <emph>Behind Object</emph>. The mouse pointer changes to a hand."
+msgstr "Fili<item type=\"menuitem\">Fooyyessuu-Gurmeessuu</item> ibsa galumsa banuu fili <emph>Wanta Duuba</emph>. Akeektuun hantuuta gara harkaatti jijjiirama"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3149126\n"
+"81\n"
+"help.text"
+msgid "Click the object behind which you want to place the selected object."
+msgstr "Wanticha filame bakka barbaadde duuba wanticha Cuqaasi."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"hd_id3145789\n"
+"20\n"
+"help.text"
+msgid "Reversing The Stacking Order of Two Objects"
+msgstr "Duraa Duuba tarreeffame Wantoota Lama Wal-dabarsuu"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3154022\n"
+"83\n"
+"help.text"
+msgid "Shift-click both objects to select them."
+msgstr "Wantoota Lamaan Filachuuf cuqaasa jijjiiraa taasisi."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3155114\n"
+"84\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to open the context menu and choose <emph>Reverse</emph>."
+msgstr "Fili<item type=\"menuitem\">Fooyyessi- Gurmeessii</item>ibsa glumsaa banuuf fi <emph>Reverse</emph>filadhu."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"hd_id3166425\n"
+"21\n"
+"help.text"
+msgid "Aligning Objects"
+msgstr "Wantoota Hiriirsuu"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3152994\n"
+"22\n"
+"help.text"
+msgid "The <emph>Alignment</emph> function enables you to align objects relative to each other or relative to the page."
+msgstr "<emph>Hiriirsuu</emph>wantoota walitti dhufeenya waliinii ykn fuulaa hiriirsuufgargaara."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN108A3\n"
+"help.text"
+msgid "Select an object to align it to the page or select multiple objects to align them relative to each other."
+msgstr "Chaarratti hiriirsitu filadhu ykn wantoota hedduu walitti dhufeenya qaban hiriirsuuf fili."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN108A7\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Modify - Alignment</item> and select one of the alignment options."
+msgstr "Fili<item type=\"menuitem\">Fooyyessi-Hiriirsi</item> filannoowwan hiriirchaa tokko filadhu."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN108AE\n"
+"help.text"
+msgid "Distributing Objects"
+msgstr "Wantoota Raabsuu"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3151390\n"
+"71\n"
+"help.text"
+msgid "If you select three or more objects in Draw, you can also use the <link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\"><emph>Distribution</emph></link> command to distribute the vertical and horizontal spacing evenly between the objects."
+msgstr "Wantoota sadii fi isaa ol Bocaman yoo filatuu,dabalataanis <link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\"><emph>Raabsuu</emph></link>ajaja galuumsa iddoo gadee fio dalgee qixa sirriin raabsuu."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN108CE\n"
+"help.text"
+msgid "Select three or more objects to be distributed."
+msgstr "Wantoota sadii fi isaa raabsamuuf ta'an fili."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN108D2\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Modify - Distribution</item>."
+msgstr "Fili<item type=\"menuitem\">Fooyyessi-Raabsama</item>."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN108DA\n"
+"help.text"
+msgid "Select the horizontal and vertical distribution option and click <emph>OK</emph>."
+msgstr "Filannoo facaatii dalgee fi gadee filiitii<emph>TOLE</emph>Cuqaasi."
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3150535\n"
+"72\n"
+"help.text"
+msgid "Selected objects are distributed evenly along the horizontal or vertical axis. The two outermost objects are used as reference points and do not move when the <emph>Distribution</emph> command is applied."
+msgstr "Wantoonni filataman xiyya dalgee fi gadee irratti qixa sirriitiin faca'aniiru.Wantoonni lamaangara alaa akka qabxii wabiitti kan fayyadanii fi yoo ajajani<emph>Facaatii</emph>hojjiirra oole hin socha'u."
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"tit\n"
+"help.text"
+msgid "Defining Custom Colors"
+msgstr "Haalluuwan Baraman Hiikuu"
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"bm_id3149263\n"
+"help.text"
+msgid "<bookmark_value>colors; defining and saving</bookmark_value> <bookmark_value>user-defined colors</bookmark_value> <bookmark_value>custom colors</bookmark_value>"
+msgstr "<bookmark_value>halluuwwan; hiikuu fi olkaa'uu</bookmark_value><bookmark_value>halluuwwan fayyadamtootan beekaman</bookmark_value><bookmark_value>halluuwwan baraman</bookmark_value>"
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"hd_id3149263\n"
+"7\n"
+"help.text"
+msgid "<variable id=\"color_define\"><link href=\"text/sdraw/guide/color_define.xhp\" name=\"Defining Custom Colors\">Defining Custom Colors</link></variable>"
+msgstr "<variable id=\"color_define\"><link href=\"text/sdraw/guide/color_define.xhp\" name=\"Defining Custom Colors\">Halluuwwan Baraman Hiikuu</link></variable>"
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3154511\n"
+"8\n"
+"help.text"
+msgid "If you want, you can mix a custom color and add it to a color table."
+msgstr "Yoo barbaadde halluu baramaa waliin Makuu fi halluu gabateetti dabaluu ni dandeessa."
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"hd_id3155600\n"
+"9\n"
+"help.text"
+msgid "To define a custom color"
+msgstr "Halluu baramaa hiikuuf"
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3150327\n"
+"25\n"
+"help.text"
+msgid "Choose <emph>Format - Area</emph> and click the <emph>Colors</emph> tab. A table of the predefined colors is displayed."
+msgstr "Filadhu<emph>Bal'ina-Qabeentaa</emph> fi cuqaasi<emph>Halluuwwan</emph>Halluuwwan gabaticha dursee hiikame."
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3154657\n"
+"13\n"
+"help.text"
+msgid "Changes made to the standard color table are permanent and are saved automatically."
+msgstr "Jijjiiramni halluu gabatee waltawaa irratti taasifame dhaabbataa fi battalumatti kan olkaa'amuudha."
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3166425\n"
+"14\n"
+"help.text"
+msgid "Click a color in the table that is similar to the one you want to mix. The color appears in the upper preview box to the right of the table."
+msgstr "Hallicha gabattee keessa kan wallin makuu barbaaddeenwalfakkaatucuqaasi. Hallichi gubbaa sanduuqa mul'isa duraa gara mirgaatti mul'ata."
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3152992\n"
+"15\n"
+"help.text"
+msgid "Select the RGB or CMYK color model in the box below the preview boxes."
+msgstr "Halluu ilaallata RGB ykn CMYK sanduuqa gadii keessa sanduuqota mul'isa duraati."
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id4979705\n"
+"help.text"
+msgid "%PRODUCTNAME uses only the RGB color model for printing in color. The CMYK controls are provided only to ease the input of color values using CMYK notation."
+msgstr "%PRODUCTNAME halluu ilaallata RGB halluudhaan maxxansuuf. Qabduuwwan CMYK laataman bu'aa halluu ciicataa haala mijeessuf yaaddannoo CMYK fayyaddamuu."
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3152987\n"
+"16\n"
+"help.text"
+msgid "The RGB color model mixes red, green and blue light to create colors on a computer screen. In the RGB model, the three color components are additive and can have values ranging from 0 (black) to 255 (white). The CMYK color model combines Cyan (C), Magenta (M), Yellow (Y), and blacK (K, also used for \"Key\") to create colors for printing. The four colors of the CMYK models are subtractive and are defined as percentages. Black corresponds to 100 % and white to 0 %."
+msgstr "Halluu ilaallata RGB diimaa ,magariisa fi gurraacha adii waliin makkun halluuwwan argii koompiyuutaraa uummuuf. Ilaallata RGB keessatti , qabiyyeewwan halluu sadan dabalataa fi gati gurraachaa 0 hanga adii 255 qabaachuu danda'a ilaallata halluu CMYK Cyan(C) waliin makuun ,magenta(m),cuiquliisa(y):-fi gurraacha(k,dabalataanis \"key\")halluuwwan maxxansaaf umumuuf fayyada.Halluuwwan afrran ilaallata CMYK kan hir'atanif dhibbeentaa dhaan kan murtaa'aniidha.Gurraachi qixa 100% fi adiin gara 0 %."
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3145386\n"
+"17\n"
+"help.text"
+msgid "Enter a numeric value in the boxes next to the color components. The new color appears in the preview box directly above the color model box."
+msgstr "Gatii lakkoofsa sanduuqawwani qabiyyee halluu keessatti galchi. Halluu haaraan kallattiidhaan sanduuqa mul'isa duraarratti mul'ata."
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3152871\n"
+"18\n"
+"help.text"
+msgid "You can also create a color using a color spectrum. Click the <emph>Edit</emph> button to open the <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link> dialog. Click a color. Use the Hue, Saturation, and Brightness boxes to adjust your color selection."
+msgstr "Halluu hunda galeessatti fayyaddamuun uumuu ni dandeessa cuqaasa<emph>Gulaali </emph><link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"> qabduu banudhaaf <emph>Halluu</emph></link>qaaqa.Hallichaa fi TOLE cuqaasi Filannoo halluu keetii sirreeffachuuf sanduuqawwan Adeemsa bulbulamuu,Halluutoo fi iftooma fayyadami."
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3153011\n"
+"19\n"
+"help.text"
+msgid "Do one of the following:"
+msgstr "Kanneen armaan gadii keessa tokko: raawwadhu."
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3147244\n"
+"26\n"
+"help.text"
+msgid "If you want to replace the color in the standard color table that your custom color is based on, click <emph>Modify</emph>."
+msgstr "Halluu waltawaa; halluu gabatee<emph> baramaa</emph> kee irratti hundaa'utti bakka buusuu yoo barbaade cuqaasi."
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3145116\n"
+"20\n"
+"help.text"
+msgid "If you want to add your custom color to the standard color table, enter a name in the <emph>Name</emph> text box and click <emph>Add</emph>."
+msgstr "Halluu baramaa kee;halluu waltawaa gabateetti dabaluu yoo barbaadde maqaa<emph>Maqaa</emph>keessa galchi,sanduuqa barreffamaa fi cuqaasi<emph>Ida'i</emph>."
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3145236\n"
+"23\n"
+"help.text"
+msgid "<link href=\"text/shared/01/03170000.xhp\" name=\"Color bar\">Color bar</link>"
+msgstr "<link href=\"text/shared/01/03170000.xhp\" name=\"Color bar\">Halluu kabala</link>"
+
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -171,7 +567,7 @@ msgctxt ""
"69\n"
"help.text"
msgid "Select two or more 2D objects."
-msgstr "watoota G-2 lama ykn isaa fili."
+msgstr "Wantoota G-2 walitti makuuf Wantoota lamaa ykn isaa ol filadhu."
#: combine_etc.xhp
msgctxt ""
@@ -314,6 +710,129 @@ msgctxt ""
msgid "The area outside the overlap is removed."
msgstr "Bal'inni ala walirra qunameni haqama."
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"tit\n"
+"help.text"
+msgid "Cross-Fading Two Objects"
+msgstr "Qaxxaamur - Laba'uu Wantoota Lamaa"
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"bm_id3150715\n"
+"help.text"
+msgid "<bookmark_value>draw objects; cross-fading two objects</bookmark_value><bookmark_value>cross-fading; two draw objects</bookmark_value>"
+msgstr "<bookmark_value>watoota fakkasi; wantoota lama qaxxaamura laabba'uu</bookmark_value><bookmark_value>qaxxaamura laabba'uu; wantoota fakkasaa lama</bookmark_value>"
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"hd_id3150715\n"
+"17\n"
+"help.text"
+msgid "<variable id=\"cross_fading\"><link href=\"text/sdraw/guide/cross_fading.xhp\" name=\"Cross-Fading Two Objects\">Cross-Fading Two Objects</link></variable>"
+msgstr "<variable id=\"cross_fading\"><link href=\"text/sdraw/guide/cross_fading.xhp\" name=\"Cross-Fading Two Objects\">Qaxxaamura-laabba'uu Wantoota Lamaa</link></variable>"
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3154754\n"
+"18\n"
+"help.text"
+msgid "Cross-fading creates shapes and distributes them by uniform increments between two drawing objects."
+msgstr "Qaxxaamurri laabba'uu bocawwan wantoota uumee haala kaafama walfakkaatuun wantoota fakkasaa lama gidduu raabsa."
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3155112\n"
+"41\n"
+"help.text"
+msgid "The cross-fading command is only available in $[officename] Draw. You can, however, copy and paste cross-faded objects into $[officename] Impress."
+msgstr "Ajajni qaxxamura laabba'uu harkifama $[officename] keessatti qofa mijaa'a. Garuu qaxxamurri laaba'uu wantoota $[officename] keessatti diinqissisuu garagalchuu fi maxxansuu ni danddeessa."
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"hd_id3149209\n"
+"20\n"
+"help.text"
+msgid "To cross-fade two objects:"
+msgstr "Wantoota-qaxxaamura laabba'uu taasisuuf:"
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3150370\n"
+"45\n"
+"help.text"
+msgid "Hold down Shift and click each object."
+msgstr "Jijjiirraa gadi qabiitii tokkoon tokkoo wantaa cuqaasi."
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3166428\n"
+"22\n"
+"help.text"
+msgid "Choose <emph>Edit - Cross-fading</emph>."
+msgstr "<emph>Gulaali - Qaxxaamura-labbaa'uu</emph>fili."
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3156450\n"
+"44\n"
+"help.text"
+msgid "Enter a value to specify the number of objects between the start and end of the cross-fade in the <emph>Increments</emph> box."
+msgstr "Baay'ina wantoota jalqabbii fi dhuma qaxxaamura-laabba'uu gidduu murteessuuf gatii saanduqa <emph>Dabalata</emph> keessatti galchi."
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3149405\n"
+"23\n"
+"help.text"
+msgid "Click <emph>OK</emph>."
+msgstr "<emph>TOLE</emph>Cuqaasi"
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3151240\n"
+"24\n"
+"help.text"
+msgid "A group containing the two original objects and the specified number (increments) of cross-faded objects is displayed."
+msgstr "Gareen Wantoota jalqabaa lama off keessatti qabatee fi lakkoofsa laa adda(increments) qaxxamurri wantoot qalama gadi lakkise ni mula'ata."
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3159203\n"
+"help.text"
+msgid "<image id=\"img_id3150210\" src=\"res/helpimg/ueberblenden.png\" width=\"74.88mm\" height=\"65.62mm\"><alt id=\"alt_id3150210\">Illustration for crossfading</alt></image>"
+msgstr "<image id=\"img_id3150210\" src=\"res/helpimg/ueberblenden.png\" width=\"74.88mm\" height=\"65.62mm\"><alt id=\"alt_id3150210\">Ibsa qalama gadhiseef</alt></image>"
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3154766\n"
+"25\n"
+"help.text"
+msgid "You can edit the individual objects of a group by selecting the group and pressing F3. Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3 to exit the group editing mode."
+msgstr "Wantoota dhuunfaa garee keessaa gulaaluu ni dandeessa kunis garee filachuudhan fi F3 tuquudhaani garee keessaa bahuuf <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3 Tuqi."
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3155760\n"
+"42\n"
+"help.text"
+msgid "<link href=\"text/simpress/01/02150000.xhp\" name=\"Editing - Cross-fading\">Editing - Cross-fading</link>"
+msgstr "<link href=\"text/simpress/01/02150000.xhp\" name=\"Editing - Cross-fading\">Gulaali-Qaxxaa qalama gadhise</link>"
+
#: draw_sector.xhp
msgctxt ""
"draw_sector.xhp\n"
@@ -438,6 +957,272 @@ msgctxt ""
msgid "To draw an arc based on an ellipse, choose one of the arc icons and follow the same steps for creating a sector based on a circle."
msgstr "Golboo citicharratti gkaasuu yoo barbaadde, sajoo golboo tokko filachuun kan tutaarratti hundaa uumuuf ejjatoo walfakkaatu hordofi."
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"tit\n"
+"help.text"
+msgid "Duplicating Objects"
+msgstr "Wantoota Baayyisuu."
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"bm_id3145750\n"
+"help.text"
+msgid "<bookmark_value>doubling draw objects</bookmark_value><bookmark_value>draw objects; duplicating</bookmark_value><bookmark_value>duplicating draw objects</bookmark_value><bookmark_value>multiplying draw objects</bookmark_value>"
+msgstr "<bookmark_value>wantoota fakkasaa dachaa godhuu</bookmark_value><bookmark_value>wantoota fakkasaa; baay'isuu</bookmark_value><bookmark_value>wantoota fakkasaa baay'isuu</bookmark_value><bookmark_value>wantoota fakkasaa baay'isuu</bookmark_value>"
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"hd_id3145750\n"
+"3\n"
+"help.text"
+msgid "<variable id=\"duplicate_object\"><link href=\"text/sdraw/guide/duplicate_object.xhp\" name=\"Duplicating Objects\">Duplicating Objects</link></variable>"
+msgstr "<variable id=\"duplicate_object\"><link href=\"text/sdraw/guide/duplicate_object.xhp\" name=\"Duplicating Objects\">Wantoota Baayyisuu</link></variable>"
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3149400\n"
+"4\n"
+"help.text"
+msgid "You can create duplicate or multiple copies of an object. The copies can be identical or can differ in size, color, orientation and location."
+msgstr "Baayifama yookiin baayiina garagalchoota wantaa uumuu ni dandeessa .Garagalchoonni hammamtaa, halluun walfakkaachuu yookiin gargar ta'uu nidanda'a."
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3153415\n"
+"5\n"
+"help.text"
+msgid "The following example creates a stack of coins by making multiple copies of a single ellipse."
+msgstr "Fakkeenyi armaan gadii, baayifama garagalchoota cita baaqqee tarreeffama mallaqoota uuma."
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3149129\n"
+"6\n"
+"help.text"
+msgid "Use the <emph>Ellipse</emph> tool to draw a solid yellow ellipse."
+msgstr "<emph>Cita</emph> keelloo jajjaboo meeshaa harkisuu cita fayyadami."
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3149209\n"
+"8\n"
+"help.text"
+msgid "Select the ellipse and choose <emph>Edit - Duplicate</emph>."
+msgstr "Cita filuun <emph>Gulaallii -Baayifama </emph>filadhu."
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3145585\n"
+"9\n"
+"help.text"
+msgid "Enter 12 as <emph>Number of copies.</emph>"
+msgstr "12 akka <emph>lakkoofsa garagalchootaa</emph> galchi."
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3151192\n"
+"11\n"
+"help.text"
+msgid "Enter a negative value for the <emph>Width</emph> and <emph>Height</emph> so that the coins decrease in size as you go up the stack."
+msgstr "<emph>Dalgee</emph> fi <emph>Hojjaa</emph> gatii hi'eentaa galchii, kanaaf mallaqoonni hammamtaan akkasitti hiriisu."
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3151387\n"
+"39\n"
+"help.text"
+msgid "To define a color transition for the coins, select different colors in the <emph>Start</emph> and <emph>End</emph> boxes. The <emph>Start</emph> color is applied to the object that you are duplicating."
+msgstr "Halluu cehuumsaa mallaqootaaf hiikuudhaaf, sanduuqawwan <emph>Jalqaba</emph><emph>Dhuma</emph> keessaa halluuwwan adda addaa fili Malluun <emph>jalqaba</emph> wantichaati baayiftuu irratti hojiirra oola."
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3149947\n"
+"12\n"
+"help.text"
+msgid "Click <emph>OK</emph> to create the duplicates."
+msgstr "Jalteessuu(baayisuu) uumuudhaaf<emph>TOLE</emph>Cuqaasi."
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3153935\n"
+"50\n"
+"help.text"
+msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Edit - Duplicate\">Edit - Duplicate</link>"
+msgstr "<link href=\"text/simpress/01/02120000.xhp\" name=\"Edit - Duplicate\">Gulaalii- Jalteessaa</link>"
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"tit\n"
+"help.text"
+msgid "Replacing Colors"
+msgstr "Halluuwwan bakka buusuu"
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"bm_id3147436\n"
+"help.text"
+msgid "<bookmark_value>eyedropper tool</bookmark_value><bookmark_value>colors; replacing</bookmark_value><bookmark_value>replacing;colors in bitmaps</bookmark_value><bookmark_value>metafiles;replacing colors</bookmark_value><bookmark_value>bitmaps;replacing colors</bookmark_value><bookmark_value>GIF images;replacing colors</bookmark_value>"
+msgstr "<bookmark_value>meeshaalee cocobsaa ijaa</bookmark_value><bookmark_value>halluulee; bakkabuusuu</bookmark_value><bookmark_value>bakkabuusuu;halluulee suurxiqqoo keessaa</bookmark_value><bookmark_value>galsarmeewwan;halluulee bakkabuusuu</bookmark_value><bookmark_value>suurxiqqoota;halluulee bakkabuusuu</bookmark_value><bookmark_value>fakkiilee GIF;halluulee bakkabuusuu</bookmark_value>"
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"hd_id3147436\n"
+"38\n"
+"help.text"
+msgid "<variable id=\"eyedropper\"><link href=\"text/sdraw/guide/eyedropper.xhp\" name=\"Replacing Colors\">Replacing Colors</link></variable>"
+msgstr "<variable id=\"eyedropper\"><link href=\"text/sdraw/guide/eyedropper.xhp\" name=\"Replacing Colors\">Halluuwwan; bakka buusuu</link></variable>"
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3156286\n"
+"24\n"
+"help.text"
+msgid "You can replace colors in bitmaps with the <emph>Color Replacer</emph> tool."
+msgstr "Halluuwwan<emph>Surxiqqoo</emph> keessaa kan meeshaa copha ijaa tiin bakka buusuu ni dandeessa."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3154704\n"
+"25\n"
+"help.text"
+msgid "Up to four colors can be replaced at once."
+msgstr "Hanga halluuwwan afuriitti yeroo tokkoon bakka buusuun ni danda'ama."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3147344\n"
+"26\n"
+"help.text"
+msgid "You can also use the <emph>Transparency</emph> option to replace the transparent areas of an image with a color."
+msgstr "Iddoowwan<emph>Iftooma</emph> fakkichaa hallichaan bakka buusuuf dabalataan dirqala Iftooma fayyademuu ni dandeessa."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3148488\n"
+"27\n"
+"help.text"
+msgid "Similarly, you can use the <emph>Color Replacer</emph> to make a color on your image transparent."
+msgstr "Haaluma walfakkaatuun halluu calaqqee iftoomaa kee irratti uumuudhaaf <emph>Copha ijaa</emph> fayyadamuu ni dandeessa."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"hd_id3150205\n"
+"28\n"
+"help.text"
+msgid "To replace colors with the Color Replacer tool"
+msgstr "Haluuwwan meeshaa copha ijaatiin bakka buusuuf."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3154656\n"
+"29\n"
+"help.text"
+msgid "Ensure that the image you are using is a bitmap (for example, BMP, GIF, JPG, or PNG) or a metafile (for example, WMF)."
+msgstr "calaqqeen ati fayyadamte surxiqqoo akka ta'e mirkaneeffadhu bitmap (for example, BMP, GIF, JPG, or PNG) or a metafile (for example, WMF)."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3150202\n"
+"30\n"
+"help.text"
+msgid "Choose <emph>Tools - Color Replacer</emph>."
+msgstr "<emph>Meeshaalee - Herregii</emph> filadhu"
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3155531\n"
+"31\n"
+"help.text"
+msgid "Click the Color Replacer icon and position the mouse pointer over the color you want to replace in the image. The color appears in the box next to the icon."
+msgstr "Sajoo Copha ijaa cuqaasiifii qaree hantuuttee halluu calaqqee keessaa bakka buusuu barbaadde irra qubachiisi mallichi sanduuqa sajoo copha ijatti aanee jiru keessatti nimul'ata."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3152985\n"
+"32\n"
+"help.text"
+msgid "Click the color in the image. The color appears in the first <emph>Source color</emph> box and the check box next to the color is selected."
+msgstr "Halluu fakkichaa cuqaasi hallichi fuuldura sanduuqa <emph>Burqaa-halluu</emph> kan mul'atuu fi sanduuqni mirkaneessaa itti aanuun."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3148866\n"
+"33\n"
+"help.text"
+msgid "In the <emph>Replace with</emph> box, select the new color."
+msgstr "Sanduuqa <emph>Bakka buusuu</emph> keessatti halluu haarawaa fili."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3145362\n"
+"41\n"
+"help.text"
+msgid "This replaces all occurrences of the <emph>Source color</emph> in the image."
+msgstr "Kun kan bakka bu'u dhimmoota hundaa <emph>Burqaa halluu</emph> calaqqee keessati."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3151191\n"
+"34\n"
+"help.text"
+msgid "If you want to replace another color while the dialog is open, select the check box in front of <emph>Source color</emph> in the next row and repeat steps 3 to 5."
+msgstr "Ennaa qaaqni banamu halluu biroo bakka buusuu yoo barbaadde,sanduuqa mirkaneessaa fuuldura <emph>Burqaa -halluu</emph> torree itti aanuu filuudhaan sadarkaawwan 3 hanga 5 irra deebii."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3149876\n"
+"36\n"
+"help.text"
+msgid "Click <emph>Replace</emph>."
+msgstr "<emph>Bakka buusuu</emph>Cuqaasi."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3157871\n"
+"37\n"
+"help.text"
+msgid "If you want to expand or contract the color selection area, increase or decrease the tolerance of the <emph>Color Replacer</emph> tool and repeat your selection."
+msgstr "Bal'ina filannoo halluu bal'isuudhaaf yookin dhiiphisuuf yoo barbaadde, obsa meeshaa <emph>Coccobsaa Ijaa</emph> guddisi ykn xiqqeessiitii filannoo kee irra deebii."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3146878\n"
+"39\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06030000.xhp\" name=\"Color Replacer\">Color Replacer</link>"
+msgstr "<link href=\"text/shared/01/03170000.xhp\" name=\"Color bar\">Halluu kabala</link>"
+
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -631,7 +1416,7 @@ msgctxt ""
"43\n"
"help.text"
msgid "Choose <emph>Format - Area</emph> and click the <emph>Gradients</emph> tab."
-msgstr "<emph>Bali'ina-Dhangii</emph>filadhuutii, Caancala <emph>Garagaartoowwan</emph>cuqaasi."
+msgstr "<emph>Bal'ina-Dhangii</emph> fi Caancala Filadhutti <emph>Gargaartoowwan</emph>Cuqaasi."
#: gradient.xhp
msgctxt ""
@@ -650,121 +1435,6 @@ msgctxt ""
msgid "To adjust the transparency of an object, select the object, choose <emph>Format - Area</emph> and click the <emph>Transparency</emph> tab."
msgstr "Iftooma wantoota akka barbaachisaansuun ummaa isaatti sirreesuf wanticha filachuun<emph>Bal'ina-Dhangi</emph>filadhu, itti aansuun caancala<emph>Iftooma</emph>Cuqaasi"
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"tit\n"
-"help.text"
-msgid "Assembling 3D Objects"
-msgstr "Wantoota G-3 walitti qabuu"
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"bm_id3154014\n"
-"help.text"
-msgid "<bookmark_value>3D objects; assembling</bookmark_value><bookmark_value>assembled objects in 3D</bookmark_value><bookmark_value>combining;3D objects</bookmark_value><bookmark_value>joining;3D objects</bookmark_value>"
-msgstr "<bookmark_value>wantoota G3; walitti qabuu</bookmark_value><bookmark_value>wantoota G3 keessatti walitti qabaman</bookmark_value><bookmark_value>makuu;wantoota G3</bookmark_value><bookmark_value>walqabsiisuu;wantoota G3</bookmark_value>"
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"hd_id3156442\n"
-"29\n"
-"help.text"
-msgid "<variable id=\"join_objects3d\"><link href=\"text/sdraw/guide/join_objects3d.xhp\" name=\"Assembling 3D Objects\">Assembling 3D Objects</link></variable>"
-msgstr "<variable id=\"join_objects3d\"><link href=\"text/sdraw/guide/join_objects3d.xhp\" name=\"Assembling 3D Objects\">wantoota; G-3 walitti qabuu</link></variable>"
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3145251\n"
-"30\n"
-"help.text"
-msgid "3D objects that each form a 3D scene can be combined into a single 3D scene."
-msgstr ""
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"hd_id3150042\n"
-"41\n"
-"help.text"
-msgid "To combine 3D objects:"
-msgstr "Wantoota G-3 walitti makuuf:"
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3154702\n"
-"31\n"
-"help.text"
-msgid "Insert a 3D object from the <emph>3D Objects</emph> toolbar (for example, a cube)."
-msgstr "Wantoota G-3 kamashaa<emph>wantoota G-3</emph> Irraa saagi (fakkeenyaaf,jahakkuu )"
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3155335\n"
-"32\n"
-"help.text"
-msgid "Insert a second slightly larger 3D object (for example, a sphere)."
-msgstr "Wantoota G-3 kamashaa wantoota G-3 Irraa saagi (fakkeenyaaf ,jahakkuu)."
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3148488\n"
-"33\n"
-"help.text"
-msgid "Select the second 3D object (sphere) and choose <emph>Edit - Cut</emph>."
-msgstr "Wanta G-3 geengoo itti fufaa filadhuuti <emph>Gulaala-Muraa</emph>."
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3149211\n"
-"34\n"
-"help.text"
-msgid "Double-click the first object (cube) to enter its group."
-msgstr "Ramaddii isaa seenuuf wanticha jalqabaa (jahakkuu)Lama-cuqaasi."
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3154652\n"
-"35\n"
-"help.text"
-msgid "Choose <emph>Edit - Paste</emph>. Both objects are now part of the same group. If you want, you can edit the individual objects or change their position within the group."
-msgstr "<emph>Gulaalii - Maxxansi</emph> filadhu.wantonni lamaanuu amma ramaddii kutaa tokkotto yoo barbaadde;wantoota dhunfaan gulaaluu ykn iddo isaanii gartuu waliin jijjiru ni dandessa."
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3155376\n"
-"36\n"
-"help.text"
-msgid "Double-click outside the group to exit the group."
-msgstr "Ramadicha keessa bahuuf gara ala ramaditti lama cuqaasi."
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3148606\n"
-"38\n"
-"help.text"
-msgid "You cannot intersect or subtract 3D objects."
-msgstr "wantoota 3D jidduutti kutu ykn hir'isuu hin dandessu."
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3154537\n"
-"39\n"
-"help.text"
-msgid "<link href=\"text/simpress/02/10090000.xhp\" name=\"Objects in 3D\">Objects in 3D</link>"
-msgstr "<link href=\"text/simpress/02/10090000.xhp\" name=\"Objects in 3D\">wantota 3D keessaa</link>"
-
#: graphic_insert.xhp
msgctxt ""
"graphic_insert.xhp\n"
@@ -826,274 +1496,347 @@ msgctxt ""
msgid "Click <emph>Open</emph> to insert the picture."
msgstr "calaqqee saaguuf <emph>Bani</emph> Cuqaasi."
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
+"groups.xhp\n"
"tit\n"
"help.text"
-msgid "Rotating Objects"
-msgstr "Wantota Naanneessuu"
+msgid "Grouping Objects"
+msgstr "Wantoota Ramaduu"
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"bm_id3154684\n"
+"groups.xhp\n"
+"bm_id3150793\n"
"help.text"
-msgid "<bookmark_value>rotating; draw objects</bookmark_value><bookmark_value>draw objects; rotating</bookmark_value><bookmark_value>pivot points of draw objects</bookmark_value><bookmark_value>skewing draw objects</bookmark_value>"
-msgstr "<bookmark_value>wantoota fakaafaman; naaneessuu</bookmark_value><bookmark_value>fakaafaman wantootaa; naaneessuu</bookmark_value><bookmark_value>qabxiwwaan kaafama wantootaa gubbeessuu </bookmark_value><bookmark_value>fakaafaman wantootaa micciinuu</bookmark_value>"
+msgid "<bookmark_value>grouping; draw objects</bookmark_value><bookmark_value>draw objects; grouping</bookmark_value>"
+msgstr "<bookmark_value>Ramaddii; wantoota fakaafaman</bookmark_value><bookmark_value> wantoota fakaafaman</bookmark_value>"
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"hd_id3154684\n"
-"12\n"
+"groups.xhp\n"
+"hd_id3150793\n"
+"26\n"
"help.text"
-msgid "<variable id=\"rotate_object\"><link href=\"text/sdraw/guide/rotate_object.xhp\" name=\"Rotating Objects\">Rotating Objects</link></variable>"
-msgstr "<variable id=\"rotate_object\"><link href=\"text/sdraw/guide/rotate_object.xhp\" name=\"Rotating Objects\">Wantota Naanneessuu</link></variable>"
+msgid "<variable id=\"groups\"><link href=\"text/sdraw/guide/groups.xhp\" name=\"Grouping Objects\">Grouping Objects</link></variable>"
+msgstr "<variable id=\"groups\"><link href=\"text/sdraw/guide/groups.xhp\" name=\"Grouping Objects\">Wantoota Ramaduu</link></variable>"
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"par_id3149262\n"
-"13\n"
+"groups.xhp\n"
+"par_id3153728\n"
+"27\n"
"help.text"
-msgid "You can rotate an object around its default pivot point (center point) or a pivot point that you designate."
-msgstr "Wanta qabxii gubbisu isaarraa naanneessu ni dandessa (qabxii gidduu) yookiin gubbisuu ati bocu."
+msgid "You can combine several objects into a group so that they act as a single object. You can move and transform all objects in a group as a single unit. You can also change the properties (for example, line size, fill color) of all objects in a group as a whole or for individual objects in a group. Groups can be temporary or assigned:"
+msgstr "Wantoota hedduu ramaddii tokko keessatti wallin makuun akka wanta baaqqeetti hojjetu taasisuu ni dandaama. Wantoota hundaa ramaddii keessaa akka baaqeetti sochoosuu fi ceesisuu ni dandeessa(for example, line size, fill color)."
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"par_id3146975\n"
+"groups.xhp\n"
+"par_id3147434\n"
+"64\n"
"help.text"
-msgid "<image id=\"img_id3154729\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3154729\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154729\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3154729\">Sajoo</alt></image>"
+msgid "Temporary - group only lasts as long as all of the combined objects are selected."
+msgstr "Ramaddiin-yeroo turu kan danda'u hanga wantootnni walmakan hundi filaman qofa."
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"par_id3150716\n"
-"14\n"
+"groups.xhp\n"
+"par_id3154490\n"
+"65\n"
"help.text"
-msgid "Select the object you want to rotate. On the <emph>Mode</emph> toolbar in $[officename] Draw or on the <emph>Drawing</emph> bar in $[officename] Impress, click the <emph>Rotate</emph> icon."
-msgstr "wanta naanneessuudhaaf barbaadde fili. Kamshaa <emph>Haala</emph> irraa kaafama $[officename] keessaa ykn <emph>Fakkasaa</emph> irraa kan dinqisiisaa bar $[officename] keessaa sajoo <emph>Naannessi</emph> cuqaasi."
+msgid "Assigned - group lasts until it is ungrouped through a menu command."
+msgstr "Ramaddiin-garee kan turu hamma ibsi ajaja keessaa hin filaman qofa."
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"par_id3149021\n"
-"69\n"
+"groups.xhp\n"
+"par_id3145252\n"
+"66\n"
"help.text"
-msgid "Move the pointer to a corner handle so that the pointer changes to a rotate symbol. Drag the handle to rotate the object."
-msgstr "Qaree gara fanno moggeetti sichosi,kanaaf qareen gara mallatto naaneessaatti jijirama. Wanticha sochoosuuf qabannoo harkiisi."
+msgid "Groups can also be grouped in other groups. Actions applied to a group do not affect the relative position of the individual objects to each other in the group."
+msgstr "Tuuleen ramaddii biroo keessatti gurmaa'uu ni danda'u.Gochoonni ramaddii irratti hojooman hidhata iddoo dhuunfaa wantoota waliini isaanii gartuu keessaa irratti dhiibbaa hin fidu."
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"par_id0930200803002335\n"
+"groups.xhp\n"
+"hd_id3150716\n"
+"28\n"
"help.text"
-msgid "Hold down the Shift key to restrict the rotation to multiples of 15 degrees."
-msgstr "Baay'attoota digirii 15 qabaniif marsa dhorkuuf furtuu Shift gad qabi."
+msgid "To group objects:"
+msgstr "Wantoota ramaduuf:"
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"par_id0930200803002463\n"
+"groups.xhp\n"
+"par_id3149018\n"
"help.text"
-msgid "Right-click the object to open the context menu. Choose Position and Size - Rotation to enter an exact rotation value."
-msgstr "Baafata halqaraa banuuf wanta mirga cuqaasi. Gatii marsaa sirrii ta'e galchuuf qubannoo fi Hamamtaa - Marsaa filadhu."
+msgid "<image id=\"img_id3145643\" src=\"cmd/sc_formatgroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3145643\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145643\" src=\"cmd/sc_formatgroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3145643\">Sajoo</alt></image>"
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"par_id3155962\n"
+"groups.xhp\n"
+"par_id3147346\n"
+"29\n"
"help.text"
-msgid "<image id=\"img_id3154023\" src=\"res/helpimg/rotieren.png\" width=\"5.424cm\" height=\"3.916cm\"><alt id=\"alt_id3154023\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154023\" src=\"res/helpimg/rotieren.png\" width=\"5.424cm\" height=\"3.916cm\"><alt id=\"alt_id3154023\">Sajoo</alt></image>"
+msgid "Select the objects you want to group and choose <emph>Modify - Group</emph>."
+msgstr "Wantoota ramaduu barbaaddee filuudhaan <emph>Ramddii-Fooyyessuu</emph>."
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"par_id3166424\n"
-"16\n"
+"groups.xhp\n"
+"par_id3148485\n"
+"30\n"
"help.text"
-msgid "To change the pivot point, drag the small circle in the center of the object to a new location."
-msgstr "Iddod gubbeessuu jijjiruuf,geengoo xiqqoo gidduu wanticha keessaa gara argama haaraatti harkisi."
+msgid "For example, you can group all of the objects in a company logo to move and resize the logo as a single object."
+msgstr "Fakkeenyaaf asxaa akka wanta baaqeetti sochoosuu fi deebisuun bal'isuu wantoota hundaa asxaa dhaabatichaatiinramaduun ni dandeessa."
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"par_id3159236\n"
-"28\n"
+"groups.xhp\n"
+"par_id3147002\n"
+"31\n"
"help.text"
-msgid "To skew the object vertically or horizontally, drag one of the side handles."
-msgstr "Wanticha gadee fidalgeetti dabsuuf,cinaa qabannoowan tokkoottii harkisi."
+msgid "After you have grouped objects, selecting any part of the group selects the entire group."
+msgstr "Erga wantoota ramaddeen booda, kutaa ramaddii eenyyuuyyuu filuun ramaddii hundumaa fila."
-#: eyedropper.xhp
+#: groups.xhp
msgctxt ""
-"eyedropper.xhp\n"
+"groups.xhp\n"
+"hd_id3150205\n"
+"55\n"
+"help.text"
+msgid "Selecting Objects in a Group"
+msgstr "Wantoota ramaddii keessa filuu."
+
+#: groups.xhp
+msgctxt ""
+"groups.xhp\n"
+"par_id3150370\n"
+"help.text"
+msgid "<image id=\"img_id3155376\" src=\"cmd/sc_entergroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155376\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155376\" src=\"cmd/sc_entergroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155376\">Saajoo</alt></image>"
+
+#: groups.xhp
+msgctxt ""
+"groups.xhp\n"
+"par_id3156450\n"
+"56\n"
+"help.text"
+msgid "You can select single objects in a group by entering the group. Double-click a group to enter it and click on the object to select it. You can also add or delete objects to and from a group in this mode. The objects that are not part of the group are grayed out."
+msgstr "Gartuu Seenuudhaan wantoota baaqee ramaddii keessa filuu ni dandeessa. Ramaddii seenuuf lama cuqaasi, filachuf ammoo wantoo irratti cuqaasi.Wantoota haala kanaan ramaddii dhaaf yookiin ramaddii irraa balleessuu yookiin ida'uu ni dandeessa.Wantoota kutaa ramaddichaa hin taane."
+
+#: groups.xhp
+msgctxt ""
+"groups.xhp\n"
+"par_id3151239\n"
+"help.text"
+msgid "<image id=\"img_id3155264\" src=\"cmd/sc_leavegroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155264\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155264\" src=\"cmd/sc_leavegroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155264\">Sajoo</alt></image>"
+
+#: groups.xhp
+msgctxt ""
+"groups.xhp\n"
+"par_id3150213\n"
+"58\n"
+"help.text"
+msgid "To exit a group, double-click anywhere outside it."
+msgstr "Ramaddii keessaa bahuuf, ala isaatti eessattiyyuu lama-cuqaasi."
+
+#: join_objects.xhp
+msgctxt ""
+"join_objects.xhp\n"
"tit\n"
"help.text"
-msgid "Replacing Colors"
-msgstr "Halluuwwan bakka buusuu"
+msgid "Connecting Lines"
+msgstr "Sararawwan wal qunnamsiisuu."
-#: eyedropper.xhp
+#: join_objects.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"bm_id3147436\n"
+"join_objects.xhp\n"
+"bm_id3145799\n"
"help.text"
-msgid "<bookmark_value>eyedropper tool</bookmark_value><bookmark_value>colors; replacing</bookmark_value><bookmark_value>replacing;colors in bitmaps</bookmark_value><bookmark_value>metafiles;replacing colors</bookmark_value><bookmark_value>bitmaps;replacing colors</bookmark_value><bookmark_value>GIF images;replacing colors</bookmark_value>"
-msgstr "<bookmark_value>meeshaalee cocobsaa ijaa</bookmark_value><bookmark_value>halluulee; bakkabuusuu</bookmark_value><bookmark_value>bakkabuusuu;halluulee suurxiqqoo keessaa</bookmark_value><bookmark_value>galsarmeewwan;halluulee bakkabuusuu</bookmark_value><bookmark_value>suurxiqqoota;halluulee bakkabuusuu</bookmark_value><bookmark_value>fakkiilee GIF;halluulee bakkabuusuu</bookmark_value>"
+msgid "<bookmark_value>draw objects; connecting lines to</bookmark_value><bookmark_value>connecting; lines</bookmark_value><bookmark_value>lines; connecting objects</bookmark_value><bookmark_value>areas; from connected lines</bookmark_value>"
+msgstr "<bookmark_value>wantoota kaafaman; sararawwan waliin</bookmark_value> walqunnamsiisuu<bookmark_value>sararawwan;walqunnamsiisu</bookmark_value><bookmark_value>sararawwan; wantoota walqunnamsiisuu</bookmark_value><bookmark_value>Bal'inoota;Sarawwan walqunnaman irraa</bookmark_value>"
-#: eyedropper.xhp
+#: join_objects.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"hd_id3147436\n"
-"38\n"
+"join_objects.xhp\n"
+"hd_id3145799\n"
+"1\n"
"help.text"
-msgid "<variable id=\"eyedropper\"><link href=\"text/sdraw/guide/eyedropper.xhp\" name=\"Replacing Colors\">Replacing Colors</link></variable>"
-msgstr "<variable id=\"eyedropper\"><link href=\"text/sdraw/guide/eyedropper.xhp\" name=\"Replacing Colors\">Halluuwwan; bakka buusuu</link></variable>"
+msgid "<variable id=\"join_objects\"><link href=\"text/sdraw/guide/join_objects.xhp\" name=\"Connecting Lines\">Connecting Lines</link></variable>"
+msgstr "<variable id=\"join_objects\"><link href=\"text/sdraw/guide/join_objects.xhp\" name=\"Connecting Lines\">sararawwan Walqunnamsiisuu </link></variable>."
-#: eyedropper.xhp
-#, fuzzy
+#: join_objects.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3156286\n"
-"24\n"
+"join_objects.xhp\n"
+"par_id3154512\n"
+"3\n"
"help.text"
-msgid "You can replace colors in bitmaps with the <emph>Color Replacer</emph> tool."
-msgstr "Halluuwwan<emph>Surxiqqoo</emph> keessaa kan meeshaa copha ijaa tiin bakka buusuu ni dandeessa."
+msgid "When you connect lines, lines are drawn between neighboring endpoints."
+msgstr "Ennaa sararawwan wal qunnamsiiftu,sararawwan dhuma ollaa gidduutti diriirfamaniiru."
-#: eyedropper.xhp
+#: join_objects.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3154704\n"
-"25\n"
+"join_objects.xhp\n"
+"hd_id3150752\n"
+"2\n"
"help.text"
-msgid "Up to four colors can be replaced at once."
-msgstr "Hanga halluuwwan afuriitti yeroo tokkoon bakka buusuun ni danda'ama."
+msgid "To connect lines:"
+msgstr "Sararawwan wal qunnamsiisuuf:"
-#: eyedropper.xhp
+#: join_objects.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3147344\n"
-"26\n"
+"join_objects.xhp\n"
+"par_id3153714\n"
+"4\n"
"help.text"
-msgid "You can also use the <emph>Transparency</emph> option to replace the transparent areas of an image with a color."
-msgstr "Iddoowwan<emph>Iftooma</emph> fakkichaa hallichaan bakka buusuuf dabalataan dirqala Iftooma fayyademuu ni dandeessa."
+msgid "Select two or more lines."
+msgstr "Sararawwan lamaa yookiin isaa ol filadhu."
-#: eyedropper.xhp
-#, fuzzy
+#: join_objects.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3148488\n"
-"27\n"
+"join_objects.xhp\n"
+"par_id3156383\n"
+"5\n"
"help.text"
-msgid "Similarly, you can use the <emph>Color Replacer</emph> to make a color on your image transparent."
-msgstr "Haaluma walfakkaatuun halluu calaqqee iftoomaa kee irratti uumuudhaaf <emph>Copha ijaa</emph> fayyadamuu ni dandeessa."
+msgid "Right-click and choose <emph>Modify - Connect</emph>."
+msgstr "Cuqaasa mirgaa taasisuun<emph>Fooyyesuu-Qunnamuu</emph>filadhu."
-#: eyedropper.xhp
-#, fuzzy
+#: join_objects.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"hd_id3150205\n"
-"28\n"
+"join_objects.xhp\n"
+"par_id3149257\n"
+"11\n"
"help.text"
-msgid "To replace colors with the Color Replacer tool"
-msgstr "Haluuwwan meeshaa copha ijaatiin bakka buusuuf."
+msgid "To create a closed object, right-click a line and choose <emph>Close Object</emph>."
+msgstr "Wanta cufamaa uumuudhaaf, Saaricha cuqaasa mirgaa taasisuu<emph>Cufaa Wantaa</emph>filadhu."
-#: eyedropper.xhp
+#: join_objects.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3154656\n"
+"join_objects.xhp\n"
+"par_id3150363\n"
+"9\n"
+"help.text"
+msgid "You can only use the <emph>Close Object</emph> command on connected lines, <emph>Freeform Lines </emph>and unfilled <emph>Curves</emph>."
+msgstr "Sararawwan wal qunnaman irrattii ajaja <emph>Wanta Cufi</emph>, <emph>Sararoota Unkabilisaa </emph> fi <emph>Qonyoota</emph> fayyadamuu qofa dandeessa."
+
+#: join_objects3d.xhp
+msgctxt ""
+"join_objects3d.xhp\n"
+"tit\n"
+"help.text"
+msgid "Assembling 3D Objects"
+msgstr "Wantoota G-3 walitti qabuu"
+
+#: join_objects3d.xhp
+msgctxt ""
+"join_objects3d.xhp\n"
+"bm_id3154014\n"
+"help.text"
+msgid "<bookmark_value>3D objects; assembling</bookmark_value><bookmark_value>assembled objects in 3D</bookmark_value><bookmark_value>combining;3D objects</bookmark_value><bookmark_value>joining;3D objects</bookmark_value>"
+msgstr "<bookmark_value>wantoota G3; walitti qabuu</bookmark_value><bookmark_value>wantoota G3 keessatti walitti qabaman</bookmark_value><bookmark_value>makuu;wantoota G3</bookmark_value><bookmark_value>walqabsiisuu;wantoota G3</bookmark_value>"
+
+#: join_objects3d.xhp
+msgctxt ""
+"join_objects3d.xhp\n"
+"hd_id3156442\n"
"29\n"
"help.text"
-msgid "Ensure that the image you are using is a bitmap (for example, BMP, GIF, JPG, or PNG) or a metafile (for example, WMF)."
-msgstr "calaqqeen ati fayyadamte surxiqqoo akka ta'e mirkaneeffadhu bitmap (for example, BMP, GIF, JPG, or PNG) or a metafile (for example, WMF)."
+msgid "<variable id=\"join_objects3d\"><link href=\"text/sdraw/guide/join_objects3d.xhp\" name=\"Assembling 3D Objects\">Assembling 3D Objects</link></variable>"
+msgstr "<variable id=\"join_objects3d\"><link href=\"text/sdraw/guide/join_objects3d.xhp\" name=\"Assembling 3D Objects\">wantoota; G-3 walitti qabuu</link></variable>"
-#: eyedropper.xhp
-#, fuzzy
+#: join_objects3d.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3150202\n"
+"join_objects3d.xhp\n"
+"par_id3145251\n"
"30\n"
"help.text"
-msgid "Choose <emph>Tools - Color Replacer</emph>."
-msgstr "<emph>Meeshaalee - Herregii</emph> filadhu"
+msgid "3D objects that each form a 3D scene can be combined into a single 3D scene."
+msgstr ""
-#: eyedropper.xhp
-#, fuzzy
+#: join_objects3d.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3155531\n"
+"join_objects3d.xhp\n"
+"hd_id3150042\n"
+"41\n"
+"help.text"
+msgid "To combine 3D objects:"
+msgstr "Wantoota G-3 walitti makuuf:"
+
+#: join_objects3d.xhp
+msgctxt ""
+"join_objects3d.xhp\n"
+"par_id3154702\n"
"31\n"
"help.text"
-msgid "Click the Color Replacer icon and position the mouse pointer over the color you want to replace in the image. The color appears in the box next to the icon."
-msgstr "Sajoo Copha ijaa cuqaasiifii qaree hantuuttee halluu calaqqee keessaa bakka buusuu barbaadde irra qubachiisi mallichi sanduuqa sajoo copha ijatti aanee jiru keessatti nimul'ata."
+msgid "Insert a 3D object from the <emph>3D Objects</emph> toolbar (for example, a cube)."
+msgstr "Wantoota G-3 kamashaa<emph>wantoota G-3</emph> Irraa saagi (fakkeenyaaf,jahakkuu )"
-#: eyedropper.xhp
+#: join_objects3d.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3152985\n"
+"join_objects3d.xhp\n"
+"par_id3155335\n"
"32\n"
"help.text"
-msgid "Click the color in the image. The color appears in the first <emph>Source color</emph> box and the check box next to the color is selected."
-msgstr "Halluu fakkichaa cuqaasi hallichi fuuldura sanduuqa <emph>Burqaa-halluu</emph> kan mul'atuu fi sanduuqni mirkaneessaa itti aanuun."
+msgid "Insert a second slightly larger 3D object (for example, a sphere)."
+msgstr "Wantoota G-3 kamashaa wantoota G-3 Irraa saagi (fakkeenyaaf ,jahakkuu)."
-#: eyedropper.xhp
+#: join_objects3d.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3148866\n"
+"join_objects3d.xhp\n"
+"par_id3148488\n"
"33\n"
"help.text"
-msgid "In the <emph>Replace with</emph> box, select the new color."
-msgstr "Sanduuqa <emph>Bakka buusuu</emph> keessatti halluu haarawaa fili."
+msgid "Select the second 3D object (sphere) and choose <emph>Edit - Cut</emph>."
+msgstr "Wanta G-3 geengoo itti fufaa filadhuuti <emph>Gulaala-Muraa</emph>."
-#: eyedropper.xhp
+#: join_objects3d.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3145362\n"
-"41\n"
+"join_objects3d.xhp\n"
+"par_id3149211\n"
+"34\n"
"help.text"
-msgid "This replaces all occurrences of the <emph>Source color</emph> in the image."
-msgstr "Kun kan bakka bu'u dhimmoota hundaa <emph>Burqaa halluu</emph> calaqqee keessati."
+msgid "Double-click the first object (cube) to enter its group."
+msgstr "Ramaddii isaa seenuuf wanticha jalqabaa (jahakkuu)Lama-cuqaasi."
-#: eyedropper.xhp
+#: join_objects3d.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3151191\n"
-"34\n"
+"join_objects3d.xhp\n"
+"par_id3154652\n"
+"35\n"
"help.text"
-msgid "If you want to replace another color while the dialog is open, select the check box in front of <emph>Source color</emph> in the next row and repeat steps 3 to 5."
-msgstr "Ennaa qaaqni banamu halluu biroo bakka buusuu yoo barbaadde,sanduuqa mirkaneessaa fuuldura <emph>Burqaa -halluu</emph> torree itti aanuu filuudhaan sadarkaawwan 3 hanga 5 irra deebii."
+msgid "Choose <emph>Edit - Paste</emph>. Both objects are now part of the same group. If you want, you can edit the individual objects or change their position within the group."
+msgstr "<emph>Gulaalii - Maxxansi</emph> filadhu.wantonni lamaanuu amma ramaddii kutaa tokkotto yoo barbaadde;wantoota dhunfaan gulaaluu ykn iddo isaanii gartuu waliin jijjiru ni dandessa."
-#: eyedropper.xhp
+#: join_objects3d.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3149876\n"
+"join_objects3d.xhp\n"
+"par_id3155376\n"
"36\n"
"help.text"
-msgid "Click <emph>Replace</emph>."
-msgstr "<emph>Bakka buusuu</emph>Cuqaasi."
+msgid "Double-click outside the group to exit the group."
+msgstr "Ramadicha keessa bahuuf gara ala ramaditti lama cuqaasi."
-#: eyedropper.xhp
-#, fuzzy
+#: join_objects3d.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3157871\n"
-"37\n"
+"join_objects3d.xhp\n"
+"par_id3148606\n"
+"38\n"
"help.text"
-msgid "If you want to expand or contract the color selection area, increase or decrease the tolerance of the <emph>Color Replacer</emph> tool and repeat your selection."
-msgstr "Bal'ina filannoo halluu bal'isuudhaaf yookin dhiiphisuuf yoo barbaadde, obsa meeshaa <emph>Coccobsaa Ijaa</emph> guddisi ykn xiqqeessiitii filannoo kee irra deebii."
+msgid "You cannot intersect or subtract 3D objects."
+msgstr "wantoota 3D jidduutti kutu ykn hir'isuu hin dandessu."
-#: eyedropper.xhp
-#, fuzzy
+#: join_objects3d.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3146878\n"
+"join_objects3d.xhp\n"
+"par_id3154537\n"
"39\n"
"help.text"
-msgid "<link href=\"text/shared/01/06030000.xhp\" name=\"Color Replacer\">Color Replacer</link>"
-msgstr "<link href=\"text/shared/01/03170000.xhp\" name=\"Color bar\">Halluu kabala</link>"
+msgid "<link href=\"text/simpress/02/10090000.xhp\" name=\"Objects in 3D\">Objects in 3D</link>"
+msgstr "<link href=\"text/simpress/02/10090000.xhp\" name=\"Objects in 3D\">wantota 3D keessaa</link>"
#: keyboard.xhp
msgctxt ""
@@ -1227,454 +1970,6 @@ msgctxt ""
msgid "Press <item type=\"keycode\">Tab</item> until you reach the object you want to select."
msgstr "Hamma wanta filuu barbaadde geessuutti <item type=\"keycode\">Caancala</item> dhiibi."
-#: join_objects.xhp
-msgctxt ""
-"join_objects.xhp\n"
-"tit\n"
-"help.text"
-msgid "Connecting Lines"
-msgstr "Sararawwan wal qunnamsiisuu."
-
-#: join_objects.xhp
-msgctxt ""
-"join_objects.xhp\n"
-"bm_id3145799\n"
-"help.text"
-msgid "<bookmark_value>draw objects; connecting lines to</bookmark_value><bookmark_value>connecting; lines</bookmark_value><bookmark_value>lines; connecting objects</bookmark_value><bookmark_value>areas; from connected lines</bookmark_value>"
-msgstr "<bookmark_value>wantoota kaafaman; sararawwan waliin</bookmark_value> walqunnamsiisuu<bookmark_value>sararawwan;walqunnamsiisu</bookmark_value><bookmark_value>sararawwan; wantoota walqunnamsiisuu</bookmark_value><bookmark_value>Bal'inoota;Sarawwan walqunnaman irraa</bookmark_value>"
-
-#: join_objects.xhp
-msgctxt ""
-"join_objects.xhp\n"
-"hd_id3145799\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"join_objects\"><link href=\"text/sdraw/guide/join_objects.xhp\" name=\"Connecting Lines\">Connecting Lines</link></variable>"
-msgstr "<variable id=\"join_objects\"><link href=\"text/sdraw/guide/join_objects.xhp\" name=\"Connecting Lines\">sararawwan Walqunnamsiisuu </link></variable>."
-
-#: join_objects.xhp
-msgctxt ""
-"join_objects.xhp\n"
-"par_id3154512\n"
-"3\n"
-"help.text"
-msgid "When you connect lines, lines are drawn between neighboring endpoints."
-msgstr "Ennaa sararawwan wal qunnamsiiftu,sararawwan dhuma ollaa gidduutti diriirfamaniiru."
-
-#: join_objects.xhp
-msgctxt ""
-"join_objects.xhp\n"
-"hd_id3150752\n"
-"2\n"
-"help.text"
-msgid "To connect lines:"
-msgstr "Sararawwan wal qunnamsiisuuf:"
-
-#: join_objects.xhp
-msgctxt ""
-"join_objects.xhp\n"
-"par_id3153714\n"
-"4\n"
-"help.text"
-msgid "Select two or more lines."
-msgstr "Sararawwan lamaa yookiin isaa ol filadhu."
-
-#: join_objects.xhp
-msgctxt ""
-"join_objects.xhp\n"
-"par_id3156383\n"
-"5\n"
-"help.text"
-msgid "Right-click and choose <emph>Modify - Connect</emph>."
-msgstr "Cuqaasa mirgaa taasisuun<emph>Fooyyesuu-Qunnamuu</emph>filadhu."
-
-#: join_objects.xhp
-msgctxt ""
-"join_objects.xhp\n"
-"par_id3149257\n"
-"11\n"
-"help.text"
-msgid "To create a closed object, right-click a line and choose <emph>Close Object</emph>."
-msgstr "Wanta cufamaa uumuudhaaf, Saaricha cuqaasa mirgaa taasisuu<emph>Cufaa Wantaa</emph>filadhu."
-
-#: join_objects.xhp
-msgctxt ""
-"join_objects.xhp\n"
-"par_id3150363\n"
-"9\n"
-"help.text"
-msgid "You can only use the <emph>Close Object</emph> command on connected lines, <emph>Freeform Lines </emph>and unfilled <emph>Curves</emph>."
-msgstr "Sararawwan wal qunnaman irrattii ajaja <emph>Wanta Cufi</emph>, <emph>Sararoota Unkabilisaa </emph> fi <emph>Qonyoota</emph> fayyadamuu qofa dandeessa."
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"tit\n"
-"help.text"
-msgid "Cross-Fading Two Objects"
-msgstr "Qaxxaamur - Laba'uu Wantoota Lamaa"
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"bm_id3150715\n"
-"help.text"
-msgid "<bookmark_value>draw objects; cross-fading two objects</bookmark_value><bookmark_value>cross-fading; two draw objects</bookmark_value>"
-msgstr "<bookmark_value>watoota fakkasi; wantoota lama qaxxaamura laabba'uu</bookmark_value><bookmark_value>qaxxaamura laabba'uu; wantoota fakkasaa lama</bookmark_value>"
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"hd_id3150715\n"
-"17\n"
-"help.text"
-msgid "<variable id=\"cross_fading\"><link href=\"text/sdraw/guide/cross_fading.xhp\" name=\"Cross-Fading Two Objects\">Cross-Fading Two Objects</link></variable>"
-msgstr "<variable id=\"cross_fading\"><link href=\"text/sdraw/guide/cross_fading.xhp\" name=\"Cross-Fading Two Objects\">Qaxxaamura-laabba'uu Wantoota Lamaa</link></variable>"
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"par_id3154754\n"
-"18\n"
-"help.text"
-msgid "Cross-fading creates shapes and distributes them by uniform increments between two drawing objects."
-msgstr "Qaxxaamurri laabba'uu bocawwan wantoota uumee haala kaafama walfakkaatuun wantoota fakkasaa lama gidduu raabsa."
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"par_id3155112\n"
-"41\n"
-"help.text"
-msgid "The cross-fading command is only available in $[officename] Draw. You can, however, copy and paste cross-faded objects into $[officename] Impress."
-msgstr "Ajajni qaxxamura laabba'uu harkifama $[officename] keessatti qofa mijaa'a. Garuu qaxxamurri laaba'uu wantoota $[officename] keessatti diinqissisuu garagalchuu fi maxxansuu ni danddeessa."
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"hd_id3149209\n"
-"20\n"
-"help.text"
-msgid "To cross-fade two objects:"
-msgstr "Wantoota-qaxxaamura laabba'uu taasisuuf:"
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"par_id3150370\n"
-"45\n"
-"help.text"
-msgid "Hold down Shift and click each object."
-msgstr "Jijjiirraa gadi qabiitii tokkoon tokkoo wantaa cuqaasi."
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"par_id3166428\n"
-"22\n"
-"help.text"
-msgid "Choose <emph>Edit - Cross-fading</emph>."
-msgstr "<emph>Gulaali - Qaxxaamura-labbaa'uu</emph>fili."
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"par_id3156450\n"
-"44\n"
-"help.text"
-msgid "Enter a value to specify the number of objects between the start and end of the cross-fade in the <emph>Increments</emph> box."
-msgstr "Baay'ina wantoota jalqabbii fi dhuma qaxxaamura-laabba'uu gidduu murteessuuf gatii saanduqa <emph>Dabalata</emph> keessatti galchi."
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"par_id3149405\n"
-"23\n"
-"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "<emph>TOLE</emph>Cuqaasi"
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"par_id3151240\n"
-"24\n"
-"help.text"
-msgid "A group containing the two original objects and the specified number (increments) of cross-faded objects is displayed."
-msgstr "Gareen Wantoota jalqabaa lama off keessatti qabatee fi lakkoofsa laa adda(increments) qaxxamurri wantoot qalama gadi lakkise ni mula'ata."
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"par_id3159203\n"
-"help.text"
-msgid "<image id=\"img_id3150210\" src=\"res/helpimg/ueberblenden.png\" width=\"74.88mm\" height=\"65.62mm\"><alt id=\"alt_id3150210\">Illustration for crossfading</alt></image>"
-msgstr "<image id=\"img_id3150210\" src=\"res/helpimg/ueberblenden.png\" width=\"74.88mm\" height=\"65.62mm\"><alt id=\"alt_id3150210\">Ibsa qalama gadhiseef</alt></image>"
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"par_id3154766\n"
-"25\n"
-"help.text"
-msgid "You can edit the individual objects of a group by selecting the group and pressing F3. Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3 to exit the group editing mode."
-msgstr "Wantoota dhuunfaa garee keessaa gulaaluu ni dandeessa kunis garee filachuudhan fi F3 tuquudhaani garee keessaa bahuuf <switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3 Tuqi."
-
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"par_id3155760\n"
-"42\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/02150000.xhp\" name=\"Editing - Cross-fading\">Editing - Cross-fading</link>"
-msgstr "<link href=\"text/simpress/01/02150000.xhp\" name=\"Editing - Cross-fading\">Gulaali-Qaxxaa qalama gadhise</link>"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"tit\n"
-"help.text"
-msgid "Arranging, Aligning and Distributing Objects"
-msgstr "Wantoota Gurmeessuu,Hiriirsuu fi Raabsuu"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"hd_id3149656\n"
-"73\n"
-"help.text"
-msgid "<variable id=\"align_arrange\"><link href=\"text/sdraw/guide/align_arrange.xhp\" name=\"Arranging and Aligning Objects\">Arranging, Aligning and Distributing Objects</link></variable>"
-msgstr "<variable id=\"align_arrange\"><link href=\"text/sdraw/guide/align_arrange.xhp\" name=\"Arranging and Aligning Objects\">Wantoota Gurmeessuu, Hiriirsuu fi Raabsuu</link></variable>"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"bm_id3125863\n"
-"help.text"
-msgid "<bookmark_value>arranging; objects (guide)</bookmark_value><bookmark_value>objects;aligning</bookmark_value><bookmark_value>distributing draw objects</bookmark_value><bookmark_value>aligning;draw objects</bookmark_value>"
-msgstr "<bookmark_value>wantoota gurmeessuu(guide)</bookmark_value><bookmark_value> wantoota;hiriiran</bookmark_value><bookmark_value> wantoota bocaman rabsuu</bookmark_value><bookmark_value>wantoota bocaman hiriirsuu</bookmark_value>"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"hd_id3125863\n"
-"17\n"
-"help.text"
-msgid "Arranging Objects"
-msgstr "Wantoota Gurmeessuu"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_id3153727\n"
-"18\n"
-"help.text"
-msgid "Each object that you place in your document is successively stacked on the preceding object. To re-arrange the stacking order of a selected object, proceed as follows."
-msgstr "Tokkoon tokkoo want galmee keessa olkeesse milkaa'inaan wanta dura irrattii tarree galeera tuulameera.Wanticha filatame tarreeffame duraa dubaanirra deeebitee gurmeesuuf akka itti anutti jalqabi."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN107D5\n"
-"help.text"
-msgid "Click the object whose position you want to change."
-msgstr "Wanticha iddoo isaa jijjiiruu barbaadde cuqaasi."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_id3150327\n"
-"78\n"
-"help.text"
-msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to bring up the context menu and choose one of the arrange options:"
-msgstr "<item type=\"menuitem\">Fooyyessii-Gurmeessii </item>Filadhu ibsa hima galuu msichaa fudhuutii tarreeffama tokko filadhu."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN107E6\n"
-"help.text"
-msgid "<emph>Bring to Front</emph> places the object on top of all other objects"
-msgstr "<emph>Bara Fuulduratti Geessi</emph> ammoo wantich gubbaa wantoota biroo hundarragubachiisa"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN107EC\n"
-"help.text"
-msgid "<emph>Bring Forward</emph> places the object one place forward in the stack of objects"
-msgstr "<emph>Fuulduratti Tarkaanfachiisuu</emph> ammoo durse iddoo wantoota tarreeffam kaa'a."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN107F2\n"
-"help.text"
-msgid "<emph>Send Backward</emph> places the object one place back in the stack of objects"
-msgstr "<emph>Duubatti Erga</emph>Wanticha kan olka'u duuba kuufama wantootati"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN107F8\n"
-"help.text"
-msgid "<emph>Send to Back</emph> places the object behind all other objects"
-msgstr "<emph>Duubatti Erguu</emph> wanticha duuba wantoota biroo hundaa kaa'a"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN107FE\n"
-"help.text"
-msgid "<emph>Behind Object</emph> places the object behind another object that you select"
-msgstr "<emph>wantoota Duubaa</emph> ammoo wanticha duuba ta'anta biroo huunda olkaa'a"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"hd_id3155766\n"
-"79\n"
-"help.text"
-msgid "Arranging an Object Behind Another Object"
-msgstr "Wanticha Wanta Biroo Duubatti Gurmeessi"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN10811\n"
-"help.text"
-msgid "Click the object whose position you want to change."
-msgstr "Wanticha iddoo isaa jijjiiruu barbaadde cuqaasi"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_id3154253\n"
-"80\n"
-"help.text"
-msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to open the context menu and choose <emph>Behind Object</emph>. The mouse pointer changes to a hand."
-msgstr "Fili<item type=\"menuitem\">Fooyyessuu-Gurmeessuu</item> ibsa galumsa banuu fili <emph>Wanta Duuba</emph>. Akeektuun hantuuta gara harkaatti jijjiirama"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_id3149126\n"
-"81\n"
-"help.text"
-msgid "Click the object behind which you want to place the selected object."
-msgstr "Wanticha filame bakka barbaadde duuba wanticha Cuqaasi."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"hd_id3145789\n"
-"20\n"
-"help.text"
-msgid "Reversing The Stacking Order of Two Objects"
-msgstr "Duraa Duuba tarreeffame Wantoota Lama Wal-dabarsuu"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_id3154022\n"
-"83\n"
-"help.text"
-msgid "Shift-click both objects to select them."
-msgstr "Wantoota Lamaan Filachuuf cuqaasa jijjiiraa taasisi."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_id3155114\n"
-"84\n"
-"help.text"
-msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to open the context menu and choose <emph>Reverse</emph>."
-msgstr "Fili<item type=\"menuitem\">Fooyyessi- Gurmeessii</item>ibsa glumsaa banuuf fi <emph>Reverse</emph>filadhu."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"hd_id3166425\n"
-"21\n"
-"help.text"
-msgid "Aligning Objects"
-msgstr "Wantoota Hiriirsuu"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_id3152994\n"
-"22\n"
-"help.text"
-msgid "The <emph>Alignment</emph> function enables you to align objects relative to each other or relative to the page."
-msgstr "<emph>Hiriirsuu</emph>wantoota walitti dhufeenya waliinii ykn fuulaa hiriirsuufgargaara."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN108A3\n"
-"help.text"
-msgid "Select an object to align it to the page or select multiple objects to align them relative to each other."
-msgstr "Chaarratti hiriirsitu filadhu ykn wantoota hedduu walitti dhufeenya qaban hiriirsuuf fili."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN108A7\n"
-"help.text"
-msgid "Choose <item type=\"menuitem\">Modify - Alignment</item> and select one of the alignment options."
-msgstr "Fili<item type=\"menuitem\">Fooyyessi-Hiriirsi</item> filannoowwan hiriirchaa tokko filadhu."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN108AE\n"
-"help.text"
-msgid "Distributing Objects"
-msgstr "Wantoota Raabsuu"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_id3151390\n"
-"71\n"
-"help.text"
-msgid "If you select three or more objects in Draw, you can also use the <link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\"><emph>Distribution</emph></link> command to distribute the vertical and horizontal spacing evenly between the objects."
-msgstr "Wantoota sadii fi isaa ol Bocaman yoo filatuu,dabalataanis <link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\"><emph>Raabsuu</emph></link>ajaja galuumsa iddoo gadee fio dalgee qixa sirriin raabsuu."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN108CE\n"
-"help.text"
-msgid "Select three or more objects to be distributed."
-msgstr "Wantoota sadii fi isaa raabsamuuf ta'an fili."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN108D2\n"
-"help.text"
-msgid "Choose <item type=\"menuitem\">Modify - Distribution</item>."
-msgstr "Fili<item type=\"menuitem\">Fooyyessi-Raabsama</item>."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN108DA\n"
-"help.text"
-msgid "Select the horizontal and vertical distribution option and click <emph>OK</emph>."
-msgstr "Filannoo facaatii dalgee fi gadee filiitii<emph>TOLE</emph>Cuqaasi."
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_id3150535\n"
-"72\n"
-"help.text"
-msgid "Selected objects are distributed evenly along the horizontal or vertical axis. The two outermost objects are used as reference points and do not move when the <emph>Distribution</emph> command is applied."
-msgstr "Wantoonni filataman xiyya dalgee fi gadee irratti qixa sirriitiin faca'aniiru.Wantoonni lamaangara alaa akka qabxii wabiitti kan fayyadanii fi yoo ajajani<emph>Facaatii</emph>hojjiirra oole hin socha'u."
-
#: main.xhp
msgctxt ""
"main.xhp\n"
@@ -1745,409 +2040,107 @@ msgctxt ""
msgid "Miscellaneous"
msgstr "Wal makaa"
-#: color_define.xhp
+#: rotate_object.xhp
msgctxt ""
-"color_define.xhp\n"
+"rotate_object.xhp\n"
"tit\n"
"help.text"
-msgid "Defining Custom Colors"
-msgstr "Haalluuwan Baraman Hiikuu"
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"bm_id3149263\n"
-"help.text"
-msgid "<bookmark_value>colors; defining and saving</bookmark_value> <bookmark_value>user-defined colors</bookmark_value> <bookmark_value>custom colors</bookmark_value>"
-msgstr "<bookmark_value>halluuwwan; hiikuu fi olkaa'uu</bookmark_value><bookmark_value>halluuwwan fayyadamtootan beekaman</bookmark_value><bookmark_value>halluuwwan baraman</bookmark_value>"
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"hd_id3149263\n"
-"7\n"
-"help.text"
-msgid "<variable id=\"color_define\"><link href=\"text/sdraw/guide/color_define.xhp\" name=\"Defining Custom Colors\">Defining Custom Colors</link></variable>"
-msgstr "<variable id=\"color_define\"><link href=\"text/sdraw/guide/color_define.xhp\" name=\"Defining Custom Colors\">Halluuwwan Baraman Hiikuu</link></variable>"
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3154511\n"
-"8\n"
-"help.text"
-msgid "If you want, you can mix a custom color and add it to a color table."
-msgstr "Yoo barbaadde halluu baramaa waliin Makuu fi halluu gabateetti dabaluu ni dandeessa."
+msgid "Rotating Objects"
+msgstr "Wantota Naanneessuu"
-#: color_define.xhp
+#: rotate_object.xhp
msgctxt ""
-"color_define.xhp\n"
-"hd_id3155600\n"
-"9\n"
+"rotate_object.xhp\n"
+"bm_id3154684\n"
"help.text"
-msgid "To define a custom color"
-msgstr "Halluu baramaa hiikuuf"
+msgid "<bookmark_value>rotating; draw objects</bookmark_value><bookmark_value>draw objects; rotating</bookmark_value><bookmark_value>pivot points of draw objects</bookmark_value><bookmark_value>skewing draw objects</bookmark_value>"
+msgstr "<bookmark_value>wantoota fakaafaman; naaneessuu</bookmark_value><bookmark_value>fakaafaman wantootaa; naaneessuu</bookmark_value><bookmark_value>qabxiwwaan kaafama wantootaa gubbeessuu </bookmark_value><bookmark_value>fakaafaman wantootaa micciinuu</bookmark_value>"
-#: color_define.xhp
+#: rotate_object.xhp
msgctxt ""
-"color_define.xhp\n"
-"par_id3150327\n"
-"25\n"
+"rotate_object.xhp\n"
+"hd_id3154684\n"
+"12\n"
"help.text"
-msgid "Choose <emph>Format - Area</emph> and click the <emph>Colors</emph> tab. A table of the predefined colors is displayed."
-msgstr "Filadhu<emph>Bal'ina-Qabeentaa</emph> fi cuqaasi<emph>Halluuwwan</emph>Halluuwwan gabaticha dursee hiikame."
+msgid "<variable id=\"rotate_object\"><link href=\"text/sdraw/guide/rotate_object.xhp\" name=\"Rotating Objects\">Rotating Objects</link></variable>"
+msgstr "<variable id=\"rotate_object\"><link href=\"text/sdraw/guide/rotate_object.xhp\" name=\"Rotating Objects\">Wantota Naanneessuu</link></variable>"
-#: color_define.xhp
+#: rotate_object.xhp
msgctxt ""
-"color_define.xhp\n"
-"par_id3154657\n"
+"rotate_object.xhp\n"
+"par_id3149262\n"
"13\n"
"help.text"
-msgid "Changes made to the standard color table are permanent and are saved automatically."
-msgstr "Jijjiiramni halluu gabatee waltawaa irratti taasifame dhaabbataa fi battalumatti kan olkaa'amuudha."
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3166425\n"
-"14\n"
-"help.text"
-msgid "Click a color in the table that is similar to the one you want to mix. The color appears in the upper preview box to the right of the table."
-msgstr "Hallicha gabattee keessa kan wallin makuu barbaaddeenwalfakkaatucuqaasi. Hallichi gubbaa sanduuqa mul'isa duraa gara mirgaatti mul'ata."
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3152992\n"
-"15\n"
-"help.text"
-msgid "Select the RGB or CMYK color model in the box below the preview boxes."
-msgstr "Halluu ilaallata RGB ykn CMYK sanduuqa gadii keessa sanduuqota mul'isa duraati."
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id4979705\n"
-"help.text"
-msgid "%PRODUCTNAME uses only the RGB color model for printing in color. The CMYK controls are provided only to ease the input of color values using CMYK notation."
-msgstr "%PRODUCTNAME halluu ilaallata RGB halluudhaan maxxansuuf. Qabduuwwan CMYK laataman bu'aa halluu ciicataa haala mijeessuf yaaddannoo CMYK fayyaddamuu."
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3152987\n"
-"16\n"
-"help.text"
-msgid "The RGB color model mixes red, green and blue light to create colors on a computer screen. In the RGB model, the three color components are additive and can have values ranging from 0 (black) to 255 (white). The CMYK color model combines Cyan (C), Magenta (M), Yellow (Y), and blacK (K, also used for \"Key\") to create colors for printing. The four colors of the CMYK models are subtractive and are defined as percentages. Black corresponds to 100 % and white to 0 %."
-msgstr "Halluu ilaallata RGB diimaa ,magariisa fi gurraacha adii waliin makkun halluuwwan argii koompiyuutaraa uummuuf. Ilaallata RGB keessatti , qabiyyeewwan halluu sadan dabalataa fi gati gurraachaa 0 hanga adii 255 qabaachuu danda'a ilaallata halluu CMYK Cyan(C) waliin makuun ,magenta(m),cuiquliisa(y):-fi gurraacha(k,dabalataanis \"key\")halluuwwan maxxansaaf umumuuf fayyada.Halluuwwan afrran ilaallata CMYK kan hir'atanif dhibbeentaa dhaan kan murtaa'aniidha.Gurraachi qixa 100% fi adiin gara 0 %."
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3145386\n"
-"17\n"
-"help.text"
-msgid "Enter a numeric value in the boxes next to the color components. The new color appears in the preview box directly above the color model box."
-msgstr "Gatii lakkoofsa sanduuqawwani qabiyyee halluu keessatti galchi. Halluu haaraan kallattiidhaan sanduuqa mul'isa duraarratti mul'ata."
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3152871\n"
-"18\n"
-"help.text"
-msgid "You can also create a color using a color spectrum. Click the <emph>Edit</emph> button to open the <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link> dialog. Click a color. Use the Hue, Saturation, and Brightness boxes to adjust your color selection."
-msgstr "Halluu hunda galeessatti fayyaddamuun uumuu ni dandeessa cuqaasa<emph>Gulaali </emph><link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"> qabduu banudhaaf <emph>Halluu</emph></link>qaaqa.Hallichaa fi TOLE cuqaasi Filannoo halluu keetii sirreeffachuuf sanduuqawwan Adeemsa bulbulamuu,Halluutoo fi iftooma fayyadami."
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3153011\n"
-"19\n"
-"help.text"
-msgid "Do one of the following:"
-msgstr "Kanneen armaan gadii keessa tokko: raawwadhu."
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3147244\n"
-"26\n"
-"help.text"
-msgid "If you want to replace the color in the standard color table that your custom color is based on, click <emph>Modify</emph>."
-msgstr "Halluu waltawaa; halluu gabatee<emph> baramaa</emph> kee irratti hundaa'utti bakka buusuu yoo barbaade cuqaasi."
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3145116\n"
-"20\n"
-"help.text"
-msgid "If you want to add your custom color to the standard color table, enter a name in the <emph>Name</emph> text box and click <emph>Add</emph>."
-msgstr "Halluu baramaa kee;halluu waltawaa gabateetti dabaluu yoo barbaadde maqaa<emph>Maqaa</emph>keessa galchi,sanduuqa barreffamaa fi cuqaasi<emph>Ida'i</emph>."
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3145236\n"
-"23\n"
-"help.text"
-msgid "<link href=\"text/shared/01/03170000.xhp\" name=\"Color bar\">Color bar</link>"
-msgstr "<link href=\"text/shared/01/03170000.xhp\" name=\"Color bar\">Halluu kabala</link>"
+msgid "You can rotate an object around its default pivot point (center point) or a pivot point that you designate."
+msgstr "Wanta qabxii gubbisu isaarraa naanneessu ni dandessa (qabxii gidduu) yookiin gubbisuu ati bocu."
-#: groups.xhp
+#: rotate_object.xhp
msgctxt ""
-"groups.xhp\n"
-"tit\n"
+"rotate_object.xhp\n"
+"par_id3146975\n"
"help.text"
-msgid "Grouping Objects"
-msgstr "Wantoota Ramaduu"
+msgid "<image id=\"img_id3154729\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3154729\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154729\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3154729\">Sajoo</alt></image>"
-#: groups.xhp
+#: rotate_object.xhp
msgctxt ""
-"groups.xhp\n"
-"bm_id3150793\n"
+"rotate_object.xhp\n"
+"par_id3150716\n"
+"14\n"
"help.text"
-msgid "<bookmark_value>grouping; draw objects</bookmark_value><bookmark_value>draw objects; grouping</bookmark_value>"
-msgstr "<bookmark_value>Ramaddii; wantoota fakaafaman</bookmark_value><bookmark_value> wantoota fakaafaman</bookmark_value>"
+msgid "Select the object you want to rotate. On the <emph>Mode</emph> toolbar in $[officename] Draw or on the <emph>Drawing</emph> bar in $[officename] Impress, click the <emph>Rotate</emph> icon."
+msgstr "wanta naanneessuudhaaf barbaadde fili. Kamshaa <emph>Haala</emph> irraa kaafama $[officename] keessaa ykn <emph>Fakkasaa</emph> irraa kan dinqisiisaa bar $[officename] keessaa sajoo <emph>Naannessi</emph> cuqaasi."
-#: groups.xhp
+#: rotate_object.xhp
msgctxt ""
-"groups.xhp\n"
-"hd_id3150793\n"
-"26\n"
+"rotate_object.xhp\n"
+"par_id3149021\n"
+"69\n"
"help.text"
-msgid "<variable id=\"groups\"><link href=\"text/sdraw/guide/groups.xhp\" name=\"Grouping Objects\">Grouping Objects</link></variable>"
-msgstr "<variable id=\"groups\"><link href=\"text/sdraw/guide/groups.xhp\" name=\"Grouping Objects\">Wantoota Ramaduu</link></variable>"
+msgid "Move the pointer to a corner handle so that the pointer changes to a rotate symbol. Drag the handle to rotate the object."
+msgstr "Qaree gara fanno moggeetti sichosi,kanaaf qareen gara mallatto naaneessaatti jijirama. Wanticha sochoosuuf qabannoo harkiisi."
-#: groups.xhp
+#: rotate_object.xhp
msgctxt ""
-"groups.xhp\n"
-"par_id3153728\n"
-"27\n"
+"rotate_object.xhp\n"
+"par_id0930200803002335\n"
"help.text"
-msgid "You can combine several objects into a group so that they act as a single object. You can move and transform all objects in a group as a single unit. You can also change the properties (for example, line size, fill color) of all objects in a group as a whole or for individual objects in a group. Groups can be temporary or assigned:"
-msgstr "Wantoota hedduu ramaddii tokko keessatti wallin makuun akka wanta baaqqeetti hojjetu taasisuu ni dandaama. Wantoota hundaa ramaddii keessaa akka baaqeetti sochoosuu fi ceesisuu ni dandeessa(for example, line size, fill color)."
+msgid "Hold down the Shift key to restrict the rotation to multiples of 15 degrees."
+msgstr "Baay'attoota digirii 15 qabaniif marsa dhorkuuf furtuu Shift gad qabi."
-#: groups.xhp
+#: rotate_object.xhp
msgctxt ""
-"groups.xhp\n"
-"par_id3147434\n"
-"64\n"
+"rotate_object.xhp\n"
+"par_id0930200803002463\n"
"help.text"
-msgid "Temporary - group only lasts as long as all of the combined objects are selected."
-msgstr "Ramaddiin-yeroo turu kan danda'u hanga wantootnni walmakan hundi filaman qofa."
+msgid "Right-click the object to open the context menu. Choose Position and Size - Rotation to enter an exact rotation value."
+msgstr "Baafata halqaraa banuuf wanta mirga cuqaasi. Gatii marsaa sirrii ta'e galchuuf qubannoo fi Hamamtaa - Marsaa filadhu."
-#: groups.xhp
+#: rotate_object.xhp
msgctxt ""
-"groups.xhp\n"
-"par_id3154490\n"
-"65\n"
+"rotate_object.xhp\n"
+"par_id3155962\n"
"help.text"
-msgid "Assigned - group lasts until it is ungrouped through a menu command."
-msgstr "Ramaddiin-garee kan turu hamma ibsi ajaja keessaa hin filaman qofa."
+msgid "<image id=\"img_id3154023\" src=\"res/helpimg/rotieren.png\" width=\"5.424cm\" height=\"3.916cm\"><alt id=\"alt_id3154023\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154023\" src=\"res/helpimg/rotieren.png\" width=\"5.424cm\" height=\"3.916cm\"><alt id=\"alt_id3154023\">Sajoo</alt></image>"
-#: groups.xhp
+#: rotate_object.xhp
msgctxt ""
-"groups.xhp\n"
-"par_id3145252\n"
-"66\n"
+"rotate_object.xhp\n"
+"par_id3166424\n"
+"16\n"
"help.text"
-msgid "Groups can also be grouped in other groups. Actions applied to a group do not affect the relative position of the individual objects to each other in the group."
-msgstr "Tuuleen ramaddii biroo keessatti gurmaa'uu ni danda'u.Gochoonni ramaddii irratti hojooman hidhata iddoo dhuunfaa wantoota waliini isaanii gartuu keessaa irratti dhiibbaa hin fidu."
+msgid "To change the pivot point, drag the small circle in the center of the object to a new location."
+msgstr "Iddod gubbeessuu jijjiruuf,geengoo xiqqoo gidduu wanticha keessaa gara argama haaraatti harkisi."
-#: groups.xhp
+#: rotate_object.xhp
msgctxt ""
-"groups.xhp\n"
-"hd_id3150716\n"
+"rotate_object.xhp\n"
+"par_id3159236\n"
"28\n"
"help.text"
-msgid "To group objects:"
-msgstr "Wantoota ramaduuf:"
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"par_id3149018\n"
-"help.text"
-msgid "<image id=\"img_id3145643\" src=\"cmd/sc_formatgroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3145643\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145643\" src=\"cmd/sc_formatgroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3145643\">Sajoo</alt></image>"
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"par_id3147346\n"
-"29\n"
-"help.text"
-msgid "Select the objects you want to group and choose <emph>Modify - Group</emph>."
-msgstr "Wantoota ramaduu barbaaddee filuudhaan <emph>Ramddii-Fooyyessuu</emph>."
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"par_id3148485\n"
-"30\n"
-"help.text"
-msgid "For example, you can group all of the objects in a company logo to move and resize the logo as a single object."
-msgstr "Fakkeenyaaf asxaa akka wanta baaqeetti sochoosuu fi deebisuun bal'isuu wantoota hundaa asxaa dhaabatichaatiinramaduun ni dandeessa."
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"par_id3147002\n"
-"31\n"
-"help.text"
-msgid "After you have grouped objects, selecting any part of the group selects the entire group."
-msgstr "Erga wantoota ramaddeen booda, kutaa ramaddii eenyyuuyyuu filuun ramaddii hundumaa fila."
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"hd_id3150205\n"
-"55\n"
-"help.text"
-msgid "Selecting Objects in a Group"
-msgstr "Wantoota ramaddii keessa filuu."
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"par_id3150370\n"
-"help.text"
-msgid "<image id=\"img_id3155376\" src=\"cmd/sc_entergroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155376\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155376\" src=\"cmd/sc_entergroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155376\">Saajoo</alt></image>"
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"par_id3156450\n"
-"56\n"
-"help.text"
-msgid "You can select single objects in a group by entering the group. Double-click a group to enter it and click on the object to select it. You can also add or delete objects to and from a group in this mode. The objects that are not part of the group are grayed out."
-msgstr "Gartuu Seenuudhaan wantoota baaqee ramaddii keessa filuu ni dandeessa. Ramaddii seenuuf lama cuqaasi, filachuf ammoo wantoo irratti cuqaasi.Wantoota haala kanaan ramaddii dhaaf yookiin ramaddii irraa balleessuu yookiin ida'uu ni dandeessa.Wantoota kutaa ramaddichaa hin taane."
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"par_id3151239\n"
-"help.text"
-msgid "<image id=\"img_id3155264\" src=\"cmd/sc_leavegroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155264\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155264\" src=\"cmd/sc_leavegroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155264\">Sajoo</alt></image>"
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"par_id3150213\n"
-"58\n"
-"help.text"
-msgid "To exit a group, double-click anywhere outside it."
-msgstr "Ramaddii keessaa bahuuf, ala isaatti eessattiyyuu lama-cuqaasi."
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"tit\n"
-"help.text"
-msgid "Duplicating Objects"
-msgstr "Wantoota Baayyisuu."
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"bm_id3145750\n"
-"help.text"
-msgid "<bookmark_value>doubling draw objects</bookmark_value><bookmark_value>draw objects; duplicating</bookmark_value><bookmark_value>duplicating draw objects</bookmark_value><bookmark_value>multiplying draw objects</bookmark_value>"
-msgstr "<bookmark_value>wantoota fakkasaa dachaa godhuu</bookmark_value><bookmark_value>wantoota fakkasaa; baay'isuu</bookmark_value><bookmark_value>wantoota fakkasaa baay'isuu</bookmark_value><bookmark_value>wantoota fakkasaa baay'isuu</bookmark_value>"
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"hd_id3145750\n"
-"3\n"
-"help.text"
-msgid "<variable id=\"duplicate_object\"><link href=\"text/sdraw/guide/duplicate_object.xhp\" name=\"Duplicating Objects\">Duplicating Objects</link></variable>"
-msgstr "<variable id=\"duplicate_object\"><link href=\"text/sdraw/guide/duplicate_object.xhp\" name=\"Duplicating Objects\">Wantoota Baayyisuu</link></variable>"
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3149400\n"
-"4\n"
-"help.text"
-msgid "You can create duplicate or multiple copies of an object. The copies can be identical or can differ in size, color, orientation and location."
-msgstr "Baayifama yookiin baayiina garagalchoota wantaa uumuu ni dandeessa .Garagalchoonni hammamtaa, halluun walfakkaachuu yookiin gargar ta'uu nidanda'a."
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3153415\n"
-"5\n"
-"help.text"
-msgid "The following example creates a stack of coins by making multiple copies of a single ellipse."
-msgstr "Fakkeenyi armaan gadii, baayifama garagalchoota cita baaqqee tarreeffama mallaqoota uuma."
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3149129\n"
-"6\n"
-"help.text"
-msgid "Use the <emph>Ellipse</emph> tool to draw a solid yellow ellipse."
-msgstr "<emph>Cita</emph> keelloo jajjaboo meeshaa harkisuu cita fayyadami."
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3149209\n"
-"8\n"
-"help.text"
-msgid "Select the ellipse and choose <emph>Edit - Duplicate</emph>."
-msgstr "Cita filuun <emph>Gulaallii -Baayifama </emph>filadhu."
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3145585\n"
-"9\n"
-"help.text"
-msgid "Enter 12 as <emph>Number of copies.</emph>"
-msgstr "12 akka <emph>lakkoofsa garagalchootaa</emph> galchi."
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3151192\n"
-"11\n"
-"help.text"
-msgid "Enter a negative value for the <emph>Width</emph> and <emph>Height</emph> so that the coins decrease in size as you go up the stack."
-msgstr "<emph>Dalgee</emph> fi <emph>Hojjaa</emph> gatii hi'eentaa galchii, kanaaf mallaqoonni hammamtaan akkasitti hiriisu."
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3151387\n"
-"39\n"
-"help.text"
-msgid "To define a color transition for the coins, select different colors in the <emph>Start</emph> and <emph>End</emph> boxes. The <emph>Start</emph> color is applied to the object that you are duplicating."
-msgstr "Halluu cehuumsaa mallaqootaaf hiikuudhaaf, sanduuqawwan <emph>Jalqaba</emph><emph>Dhuma</emph> keessaa halluuwwan adda addaa fili Malluun <emph>jalqaba</emph> wantichaati baayiftuu irratti hojiirra oola."
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3149947\n"
-"12\n"
-"help.text"
-msgid "Click <emph>OK</emph> to create the duplicates."
-msgstr "Jalteessuu(baayisuu) uumuudhaaf<emph>TOLE</emph>Cuqaasi."
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3153935\n"
-"50\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Edit - Duplicate\">Edit - Duplicate</link>"
-msgstr "<link href=\"text/simpress/01/02120000.xhp\" name=\"Edit - Duplicate\">Gulaalii- Jalteessaa</link>"
+msgid "To skew the object vertically or horizontally, drag one of the side handles."
+msgstr "Wanticha gadee fidalgeetti dabsuuf,cinaa qabannoowan tokkoottii harkisi."
#: text_enter.xhp
msgctxt ""
diff --git a/source/om/helpcontent2/source/text/shared.po b/source/om/helpcontent2/source/text/shared.po
index b00d6bd34b6..569f5b38acb 100644
--- a/source/om/helpcontent2/source/text/shared.po
+++ b/source/om/helpcontent2/source/text/shared.po
@@ -1,216 +1,19 @@
-#
+#. extracted from helpcontent2/source/text/shared
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-01-18 13:18+0100\n"
-"PO-Revision-Date: 2011-04-09 12:03+0200\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
+"PO-Revision-Date: 2012-09-04 22:09+0000\n"
+"Last-Translator: Diriba Kuma <diribakw@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"
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"tit\n"
-"help.text"
-msgid "Table Data Bar"
-msgstr "Kabala Deetaa Gabatee"
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"hd_id3147102\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/main0212.xhp\" name=\"Table Data Bar\">Table Data Bar</link>"
-msgstr "<link href=\"text/shared/main0212.xhp\" name=\"Table Data Bar\">Kabala Deetaa Gabatee</link>"
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_id3153394\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\".\">Use the Table Data bar to control the data view. </ahelp>"
-msgstr "<ahelp hid=\".\">Mul'annoo deetichaa too'achuuf, Kabala Deetaa Gabatichaa fayyadami. </ahelp>"
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_id3149346\n"
-"12\n"
-"help.text"
-msgid "The filtered data view is active until you change or cancel the sorting or filtering criteria. If a filter is active, the <emph>Apply Filter</emph> icon on the <emph>Table Data</emph> bar is activated."
-msgstr "Mul'annoon deeticha gingilchamee, hamma ati fooyinsicha ykn ulaagaalee gingilchaa jijjiirtuti yk dhiistuuti ka'ee tura. Yoo gingilchaan ka'aa tahe, sajoon <emph>Gingilchaa Fayyadami</emph> kabala <emph>Deetaa Gabatee</emph> irraa nika'aa."
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_id3147303\n"
-"help.text"
-msgid "<image id=\"img_id3153896\" src=\"cmd/sc_recsave.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3153896\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153896\" src=\"cmd/sc_recsave.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153896\">Sajoo</alt></image>"
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_id3153360\n"
-"13\n"
-"help.text"
-msgid "Save Record"
-msgstr "Galmee Olkaa'i"
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_id3145173\n"
-"help.text"
-msgid "<image id=\"img_id3154123\" src=\"cmd/sc_recundo.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3154123\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154123\" src=\"cmd/sc_recundo.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154123\">Sajoo</alt></image>"
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_id3151382\n"
-"14\n"
-"help.text"
-msgid "Undo: Data Input"
-msgstr "Gaabbi: Naqa Deetaa"
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_idN10744\n"
-"help.text"
-msgid "<link href=\"text/shared/02/12070000.xhp\">Data to Text</link>"
-msgstr "<link href=\"text/shared/02/12070000.xhp\">Deetaa gara Barruu</link>"
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_idN10753\n"
-"help.text"
-msgid "<ahelp hid=\".\">Inserts all fields of the marked record into the current document at the cursor position.</ahelp>"
-msgstr "<ahelp hid=\".\">Dirreewwan mara kan kuusa mallattaa'ee, galmee ammaa bakka qubannoo qaree keessatti saaga.</ahelp>"
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_idN10780\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/mailmerge00.xhp\">Mail Merge</link>"
-msgstr "<link href=\"text/swriter/01/mailmerge00.xhp\">Makiinsa Ergannoo</link>"
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_idN1078F\n"
-"help.text"
-msgid "<ahelp hid=\".\">Starts the Mail Merge Wizard to create form letters.</ahelp>"
-msgstr ""
-
-#: main0208.xhp
-msgctxt ""
-"main0208.xhp\n"
-"tit\n"
-"help.text"
-msgid "Status Bar in $[officename] Basic Documents"
-msgstr "Kabala Haalojii Galmeewwan Basic $[officename] keessaa"
-
-#: main0208.xhp
-msgctxt ""
-"main0208.xhp\n"
-"hd_id3148520\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/main0208.xhp\" name=\"Status Bar in $[officename] Basic Documents\">Status Bar in $[officename] Basic Documents</link>"
-msgstr "<link href=\"text/shared/main0208.xhp\" name=\"Status Bar in $[officename] Basic Documents\">Kabala Haalojii Galmeewwan Basic $[officename] keessaa</link>"
-
-#: main0208.xhp
-msgctxt ""
-"main0208.xhp\n"
-"par_id3154136\n"
-"2\n"
-"help.text"
-msgid "The <emph>Status</emph> Bar displays information about the current $[officename] Basic document."
-msgstr "Kabala <emph>Haalojii</emph>, odeeffanno waa'ee galmee Basic $[officename] ammaa agarsiissa."
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Programming $[officename]"
-msgstr "$[officename] Saganteessuu"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"bm_id3154232\n"
-"help.text"
-msgid "<bookmark_value>programming;$[officename]</bookmark_value><bookmark_value>Basic;programming</bookmark_value>"
-msgstr "<bookmark_value>programming;$[officename]</bookmark_value><bookmark_value>Basic;saganteesuu</bookmark_value>"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"hd_id3154232\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Programming $[officename]\">Programming $[officename]</link></variable>"
-msgstr "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Programming $[officename]\">$[officename] Saganteessuu</link></variable>"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3149760\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"basic\">$[officename] can be controlled by using the $[officename] API. </variable>"
-msgstr "<variable id=\"basic\">$[officename] kan too'achuun dandaa'amuu, WSF $[officename] fayyadamuudha. </variable>"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3151111\n"
-"12\n"
-"help.text"
-msgid "$[officename] provides an Application Programming Interface (API) that enables you to control $[officename] components by using various programming languages. A $[officename] Software Development Kit is available for the programming interface."
-msgstr "$[officename] Walqunnama Saganteesuu Fayyadamaa (WSF) isa qaamoota $[officename] too'annaa afaanoota saganteesuu hedduu fayyadamuun dandeessisuu siif laatta. Walqunnama saganteesuutiif Kitii Ijaarsa Mosajjii $[officename] jira."
-
-#: main0600.xhp
-#, fuzzy
-msgctxt ""
-"main0600.xhp\n"
-"par_id3156346\n"
-"15\n"
-"help.text"
-msgid "For more information about $[officename] API reference, please visit http://api.libreoffice.org/"
-msgstr "Odeeffannoo dabalataa waa'ee wabii (WSF) $[officename] tiif, mee http://api.openoffice.org/ doowadhu"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3153825\n"
-"13\n"
-"help.text"
-msgid "Macros created with $[officename] Basic based on the old programming interface will no longer be supported by the current version."
-msgstr "Maakroowwanii walqunnama saganteesuu moofaa Basic $[officename] irratti huundaa'uun uumaman fooyya'aa ammaa irratti ammaan booda deeggarsa hinqaabaatan."
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3149795\n"
-"14\n"
-"help.text"
-msgid "For more information on $[officename] Basic, select \"$[officename] Basic\" in the list box."
-msgstr "Basic $[officename] irratti odeeffanno dabalataatiif, sansduuqa tarree keessaa \"Basic $[officename]\" filadhu."
+"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1346796588.0\n"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -452,6 +255,320 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the Extrusion Color toolbar.</ahelp>"
msgstr "<ahelp hid=\".\">Kamshaa Halluu Keessabaasichaa bana.</ahelp>"
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"tit\n"
+"help.text"
+msgid "Fontwork"
+msgstr "Hojbocquu"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1055A\n"
+"help.text"
+msgid "<link href=\"text/shared/fontwork_toolbar.xhp\">Fontwork</link>"
+msgstr "<link href=\"text/shared/fontwork_toolbar.xhp\">Hojbocquu</link>"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1056A\n"
+"help.text"
+msgid "The Fontwork toolbar opens when you select a Fontwork object."
+msgstr "Kamshaan Hojbocquu kan banamu yammuu wantaa Hojbocquu tokko filatuudha."
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1056D\n"
+"help.text"
+msgid "Fontwork Gallery"
+msgstr "Kuusfaayaa Hojbocquu"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN10571\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Fontwork Gallery where you can select another preview. Click OK to apply the new set of properties to your Fontwork object.</ahelp>"
+msgstr "<ahelp hid=\".\">Kuusfaayaa Hojbocquuchaa, bakka ati durargii kan biraa itti filachuu dandeessu bana. Wanta Hojbocquu keeti amalawwan isa haaraa fayyadamuuf Tole cuqaasi.</ahelp>"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN10588\n"
+"help.text"
+msgid "Fontwork Shape"
+msgstr "Bocaa Hojbocquu"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1058C\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Fontwork Shape toolbar. Click a shape to apply the shape to all selected Fontwork objects.</ahelp>"
+msgstr "<ahelp hid=\".\">Kamshaa Bocaa Hojbocquuchaa bana. Wantawwan Hojbocquu filataman maratti bocicha fayyadamuuf bocaa tokko cuqaasi.</ahelp>"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN105A6\n"
+"help.text"
+msgid "Fontwork Same Letter Heights"
+msgstr "Hojbocquu Hojjaawwan Qubee Walfakki"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN105AA\n"
+"help.text"
+msgid "<ahelp hid=\".\">Switches the letter height of the selected Fontwork objects from normal to the same height for all objects.</ahelp>"
+msgstr "<ahelp hid=\".\">Hojjaa qubee kan wantawwan Hojbocquu filatame wantawwan hojjaa tokicha baratamoo mara irraa jijjiira.</ahelp>"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN105C1\n"
+"help.text"
+msgid "Fontwork Alignment"
+msgstr "Hiriira Hojbocquu"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN105C5\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Fontwork Alignment window.</ahelp>"
+msgstr "<ahelp hid=\".\">Foddaa Hiriira Hojbocquuchaa bana.</ahelp>"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN105DC\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to apply the alignment to the selected Fontwork objects.</ahelp>"
+msgstr "<ahelp hid=\".\">Wantawwan Hojbocquu filatamanitti hiriiricha fayyadamuuf cuqaasi.</ahelp>"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN105F3\n"
+"help.text"
+msgid "Fontwork Character Spacing"
+msgstr "Iddina Arfii Hojbocquu"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN105F7\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Fontwork Character Spacing window.</ahelp>"
+msgstr "<ahelp hid=\".\">Foddaa Iddina Arfii Hojbocquuchaa bana.</ahelp>"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1060E\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to apply the character spacing to the selected Fontwork objects.</ahelp>"
+msgstr "<ahelp hid=\".\">Wantawwan Hojbocquu filatamanitti iddina arfii fayyadamuuf cuqaasi.</ahelp>"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1061D\n"
+"help.text"
+msgid "Custom"
+msgstr "Mammiloo"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN10621\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value.</ahelp>"
+msgstr "<ahelp hid=\".\">Qaaqa Iddina Arfii Hojbocquuchaa, bakka ati gatii iddina arfii haaraa tokko itti galchuu dandeessu bana.</ahelp>"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN10638\n"
+"help.text"
+msgid "Value"
+msgstr "Gatii"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1063C\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the Fontwork character spacing value.</ahelp>"
+msgstr "<ahelp hid=\".\">Gatii iddina arfii Hojbocquuchaa galchi.</ahelp>"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1064B\n"
+"help.text"
+msgid "Kern Character Pairs"
+msgstr "Cimdeewwan Arfii Keernii"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1064F\n"
+"help.text"
+msgid "<ahelp hid=\".\">Switches the <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> of character pairs on and off.</ahelp>"
+msgstr "<ahelp hid=\".\">Rukkina <link href=\"text/shared/00/00000005.xhp#kerning\">cimdaa</link> arfii banaa fi dhammaa jijjiira.</ahelp>"
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"tit\n"
+"help.text"
+msgid "Help"
+msgstr "Gargaarsa"
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"hd_id3155364\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/main0108.xhp\" name=\"Help\">Help</link>"
+msgstr "<link href=\"text/shared/main0108.xhp\" name=\"Help\">Gargaarsa</link>"
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_id3153990\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:HelpMenu\">The Help menu allows you to start and control the $[officename] Help system.</ahelp>"
+msgstr "<ahelp hid=\".uno:HelpMenu\">Bafatii Garagarsichaa, kaasuu fi sirna Gargaarsaa $[officename] too'achu siif hayyama.</ahelp>"
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"hd_id3147399\n"
+"5\n"
+"help.text"
+msgid "$[officename] Help"
+msgstr "Gargaarsa $[officename]"
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_id3147576\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\".uno:HelpIndex\">Opens the main page of the $[officename] Help for the current application.</ahelp> You can scroll through the Help pages and you can search for index terms or any text."
+msgstr "<ahelp hid=\".uno:HelpIndex\">Fayyadama ammaatiif fuula guumaa kan Gargaarsa $[officename] bana.</ahelp> Fuulawwan Gargaarsa keessa marsuu nidandeessa, akkasuumas jechoota kasaa yk barruu kamiiyyu barbaaduu nidandeessa."
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_idN1064A\n"
+"help.text"
+msgid "<image id=\"img_id1619006\" src=\"cmd/sc_helpindex.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id1619006\">icon</alt></image>"
+msgstr "<image id=\"img_id1619006\" src=\"cmd/sc_helpindex.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id1619006\">sajoo</alt></image>"
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_idN10667\n"
+"help.text"
+msgid "%PRODUCTNAME Help"
+msgstr "Gargaarsa %PRODUCTNAME"
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"hd_id2752763\n"
+"help.text"
+msgid "Send Feedback"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_id443534340\n"
+"help.text"
+msgid "<ahelp hid=\".uno:SendFeedback\">Opens a feedback form in the web browser, where users can report software bugs.</ahelp>"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"hd_id4153881\n"
+"7\n"
+"help.text"
+msgid "License Information"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_id4144510\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ShowLicense\">Displays the Licensing and Legal information dialog.</ahelp>"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"hd_id5153881\n"
+"7\n"
+"help.text"
+msgid "%PRODUCTNAME Credits"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_id5144510\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ShowLicense\">Displays the CREDITS.odt document which lists the names of individuals who have contributed to OpenOffice.org source code (and whose contributions were imported into LibreOffice) or LibreOffice since 2010-09-28.</ahelp>"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"hd_id2926419\n"
+"help.text"
+msgid "<link href=\"text/shared/01/online_update.xhp\">Check for Updates</link>"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_id2783898\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enable an Internet connection for %PRODUCTNAME. If you need a Proxy, check the %PRODUCTNAME Proxy settings in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet. Then choose Check for Updates to check for the availability of a newer version of your office suite.</ahelp>"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"hd_id3153881\n"
+"7\n"
+"help.text"
+msgid "About $[officename]"
+msgstr "Waa'ee $[officename]"
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_id3144510\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\".uno:About\">Displays general program information such as version number and copyrights.</ahelp>"
+msgstr "<ahelp hid=\".uno:About\">Odeeffaannoo saganta waliigalaa kuniis, lakkoofsa fooyya'aa fi mirga abbummaa agarsiissa.</ahelp>"
+
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -655,234 +772,215 @@ msgctxt ""
msgid "What's this"
msgstr "Kun Maali"
-#: main0800.xhp
+#: main0204.xhp
msgctxt ""
-"main0800.xhp\n"
+"main0204.xhp\n"
"tit\n"
"help.text"
-msgid "$[officename] and the Internet"
-msgstr "$[officename] fi Interneetiicha"
+msgid "Table Bar"
+msgstr "Kabala Gabatee"
-#: main0800.xhp
+#: main0204.xhp
msgctxt ""
-"main0800.xhp\n"
-"hd_id3153089\n"
-"1\n"
+"main0204.xhp\n"
+"hd_id3145587\n"
"help.text"
-msgid "<link href=\"text/shared/main0800.xhp\" name=\"$[officename] and the Internet\">$[officename] and the Internet</link>"
-msgstr "<link href=\"text/shared/main0800.xhp\" name=\"$[officename] and the Internet\">$[officename] fi Interneetiicha</link>"
+msgid "<link href=\"text/shared/main0204.xhp\" name=\"Table Bar\">Table Bar</link>"
+msgstr "<link href=\"text/swriter/main0204.xhp\" name=\"Table Bar\">Kabala Gabatee</link>"
-#: main0800.xhp
+#: main0204.xhp
msgctxt ""
-"main0800.xhp\n"
-"par_id3155150\n"
-"2\n"
+"main0204.xhp\n"
+"par_id3154252\n"
"help.text"
-msgid "This section provides information on the subject of the Internet. An <link href=\"text/shared/00/00000002.xhp\" name=\"Internet glossary\">Internet glossary</link> explains the most important terms."
-msgstr "Kutaan kun dhimma odeeffanno inteerneetiicha irraa laatta. <link href=\"text/shared/00/00000002.xhp\" name=\"Internet glossary\">Jibsoo Inteerneetii</link>n jechoota hedduu barbaachisa tahaan ibsa."
+msgid "<ahelp hid=\".\">The <emph>Table</emph> Bar contains functions you need when working with tables. It appears when you move the cursor into a table.</ahelp>"
+msgstr "<ahelp hid=\"HID_TABLE_TOOLBOX\">Kabalii <emph>Gabatee </emph>, dalagaawwan isa ati yammuu gabateewwan waliin hojeechuudhaaf sibarbaachissu of keessaa qaba. Yammuu ati qaree gabatee keessatti siqsiitu mul'ata.</ahelp>"
-#: main0500.xhp
+#: main0204.xhp
+#, fuzzy
msgctxt ""
-"main0500.xhp\n"
-"tit\n"
+"main0204.xhp\n"
+"hd_id319945759\n"
"help.text"
-msgid "Glossaries"
-msgstr "Kuusfaayaalee"
+msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Area Style / Filling</link>"
+msgstr "#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\\n<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Haalata Sararaa</link>\\n#-#-#-#-# sdraw.po (PACKAGE VERSION) #-#-#-#-#\\n<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Teessuma Akkaataa / Rigdoo</link>"
-#: main0500.xhp
+#: main0204.xhp
msgctxt ""
-"main0500.xhp\n"
-"hd_id3156183\n"
-"1\n"
+"main0204.xhp\n"
+"hd_id3147592\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/shared/main0500.xhp\" name=\"Glossaries\">Glossaries</link>"
-msgstr "<link href=\"text/shared/main0500.xhp\" name=\"Glossaries\">Kuusfaayaalee</link>"
+msgid "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge Cells\">Merge Cells</link>"
+msgstr "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge Cells\">Man'eewwan Maki</link>"
-#: main0500.xhp
+#: main0204.xhp
msgctxt ""
-"main0500.xhp\n"
-"par_id3157898\n"
-"2\n"
+"main0204.xhp\n"
+"hd_id3147820\n"
+"9\n"
"help.text"
-msgid "This section provides a general glossary of technical terms used in $[officename], along with a list of Internet terms."
-msgstr "Kutaan kun kuusfaayaa waliigalaa kan jechoota ogummaa, $[officename] keessatti tarree jechoota interneetii waliin fayyadan laatta."
+msgid "<link href=\"text/swriter/01/05110500.xhp\" name=\"Delete Row\">Delete Row</link>"
+msgstr "<link href=\"text/swriter/01/05110500.xhp\" name=\"Delete Row\">Tarree Haqi</link>"
-#: main0226.xhp
+#: main0204.xhp
msgctxt ""
-"main0226.xhp\n"
-"tit\n"
+"main0204.xhp\n"
+"hd_id3147231\n"
+"10\n"
"help.text"
-msgid "Form Design Toolbar"
-msgstr "Kamshaa Saxaxa Unkaa"
+msgid "<link href=\"text/swriter/01/05120500.xhp\" name=\"Delete Column\">Delete Column</link>"
+msgstr "<link href=\"text/swriter/01/05120500.xhp\" name=\"Delete Column\">Tarjaa Haqi</link>"
-#: main0226.xhp
+#: main0204.xhp
msgctxt ""
-"main0226.xhp\n"
-"hd_id3148520\n"
-"1\n"
+"main0204.xhp\n"
+"hd_id3134447820\n"
"help.text"
-msgid "<link href=\"text/shared/main0226.xhp\" name=\"Form Design Toolbar\">Form Design Toolbar</link>"
-msgstr "<link href=\"text/shared/main0226.xhp\" name=\"Form Design Toolbar\">Kamshaa Saxaxa Unkaa</link>"
+msgid "<link href=\"text/simpress/01/taskpanel.xhp\" name=\"Table Design\">Table Design</link>"
+msgstr "<link href=\"text/simpress/01/05120000.xhp\" name=\"Slide Design\">Saxaaxi Islaayidii</link>"
-#: main0226.xhp
+#: main0204.xhp
msgctxt ""
-"main0226.xhp\n"
-"par_id3155364\n"
-"2\n"
+"main0204.xhp\n"
+"par_id16200812240344\n"
"help.text"
-msgid "The Form Design toolbar becomes visible as soon as you select a form object when working in the design mode."
-msgstr "Kamshaan Saxaxa Unkaan kan mul'atuu, akkuuma ati haalataa saxaxaan hojeechaa wanta unkaa yammuu filatuudha."
+msgid "Opens the Table Design. Double-click a preview to insert a new table."
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Saxaaxxi Gabatee bana. Gabatee haaraa saaguuf durargii lamcuqaasi.</ahelp>"
-#: main0226.xhp
+#: main0204.xhp
msgctxt ""
-"main0226.xhp\n"
-"hd_id3163802\n"
-"8\n"
+"main0204.xhp\n"
+"hd_id947820\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170400.xhp\" name=\"Add Field\">Add Field</link>"
-msgstr "<link href=\"text/shared/02/01170400.xhp\" name=\"Add Field\">Dirree Ida'i</link>"
+msgid "<link href=\"text/simpress/01/05090000m.xhp\" name=\"Table Properties\">Table Properties</link>"
+msgstr "<link href=\"text/swriter/01/05080000.xhp\" name=\"Object Properties\">Amalawwan Wantaa</link>"
-#: main0226.xhp
+#: main0208.xhp
msgctxt ""
-"main0226.xhp\n"
-"hd_id3150669\n"
-"4\n"
+"main0208.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">Group</link>"
-msgstr "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">Gurmuu</link>"
+msgid "Status Bar in $[officename] Basic Documents"
+msgstr "Kabala Haalojii Galmeewwan Basic $[officename] keessaa"
-#: main0226.xhp
+#: main0208.xhp
msgctxt ""
-"main0226.xhp\n"
-"hd_id3147335\n"
-"5\n"
+"main0208.xhp\n"
+"hd_id3148520\n"
+"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Ungroup</link>"
-msgstr "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Garbaasi</link>"
+msgid "<link href=\"text/shared/main0208.xhp\" name=\"Status Bar in $[officename] Basic Documents\">Status Bar in $[officename] Basic Documents</link>"
+msgstr "<link href=\"text/shared/main0208.xhp\" name=\"Status Bar in $[officename] Basic Documents\">Kabala Haalojii Galmeewwan Basic $[officename] keessaa</link>"
-#: main0226.xhp
+#: main0208.xhp
msgctxt ""
-"main0226.xhp\n"
-"hd_id3156024\n"
-"6\n"
+"main0208.xhp\n"
+"par_id3154136\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">Enter Group</link>"
-msgstr "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">Gurmuu Galchi</link>"
+msgid "The <emph>Status</emph> Bar displays information about the current $[officename] Basic document."
+msgstr "Kabala <emph>Haalojii</emph>, odeeffanno waa'ee galmee Basic $[officename] ammaa agarsiissa."
-#: main0226.xhp
+#: main0212.xhp
msgctxt ""
-"main0226.xhp\n"
-"hd_id3149295\n"
-"7\n"
+"main0212.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Exit Group</link>"
-msgstr "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Gurmuu Keessaa Bahi</link>"
+msgid "Table Data Bar"
+msgstr "Kabala Deetaa Gabatee"
-#: main0226.xhp
+#: main0212.xhp
msgctxt ""
-"main0226.xhp\n"
-"hd_id3150398\n"
-"9\n"
+"main0212.xhp\n"
+"hd_id3147102\n"
+"1\n"
"help.text"
-msgid "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">Display Grid</link>"
-msgstr "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">Agarsiisaa Tarsaa</link>"
+msgid "<link href=\"text/shared/main0212.xhp\" name=\"Table Data Bar\">Table Data Bar</link>"
+msgstr "<link href=\"text/shared/main0212.xhp\" name=\"Table Data Bar\">Kabala Deetaa Gabatee</link>"
-#: main0226.xhp
+#: main0212.xhp
msgctxt ""
-"main0226.xhp\n"
-"hd_id3148798\n"
+"main0212.xhp\n"
+"par_id3153394\n"
"10\n"
"help.text"
-msgid "<link href=\"text/shared/02/01171300.xhp\" name=\"Snap to Grid\">Snap to Grid</link>"
-msgstr "<link href=\"text/shared/02/01171300.xhp\" name=\"Snap to Grid\">Tarsaa gara Ariitii</link>"
+msgid "<ahelp hid=\".\">Use the Table Data bar to control the data view. </ahelp>"
+msgstr "<ahelp hid=\".\">Mul'annoo deetichaa too'achuuf, Kabala Deetaa Gabatichaa fayyadami. </ahelp>"
-#: main0226.xhp
+#: main0212.xhp
msgctxt ""
-"main0226.xhp\n"
-"par_id3145419\n"
+"main0212.xhp\n"
+"par_id3149346\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\".uno:GridUse\">Specifies that you can move objects only between grid points.</ahelp>"
-msgstr "<ahelp hid=\".uno:GridUse\">Wantawwan isa ati tuqaalee tarsaa qofaa gidduu ittiin siqsuu dandeessuu ifteessa.</ahelp>"
-
-#: main0226.xhp
-#, fuzzy
-msgctxt ""
-"main0226.xhp\n"
-"hd_id3148920\n"
-"11\n"
-"help.text"
-msgid "<link href=\"text/shared/02/01171400.xhp\" name=\"Helplines While Moving\">Helplines While Moving</link>"
-msgstr "<link href=\"text/shared/02/01171400.xhp\" name=\"Guides When Moving\">Yammuu Sochii Qajeelcha</link>"
+msgid "The filtered data view is active until you change or cancel the sorting or filtering criteria. If a filter is active, the <emph>Apply Filter</emph> icon on the <emph>Table Data</emph> bar is activated."
+msgstr "Mul'annoon deeticha gingilchamee, hamma ati fooyinsicha ykn ulaagaalee gingilchaa jijjiirtuti yk dhiistuuti ka'ee tura. Yoo gingilchaan ka'aa tahe, sajoon <emph>Gingilchaa Fayyadami</emph> kabala <emph>Deetaa Gabatee</emph> irraa nika'aa."
-#: main0650.xhp
+#: main0212.xhp
msgctxt ""
-"main0650.xhp\n"
-"tit\n"
+"main0212.xhp\n"
+"par_id3147303\n"
"help.text"
-msgid "Java Platform Support"
-msgstr "Deggeersa Hujeffannoo Jaavaa"
+msgid "<image id=\"img_id3153896\" src=\"cmd/sc_recsave.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3153896\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153896\" src=\"cmd/sc_recsave.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153896\">Sajoo</alt></image>"
-#: main0650.xhp
+#: main0212.xhp
msgctxt ""
-"main0650.xhp\n"
-"hd_id3153089\n"
-"1\n"
+"main0212.xhp\n"
+"par_id3153360\n"
+"13\n"
"help.text"
-msgid "<link href=\"text/shared/main0650.xhp\" name=\"Java Platform Support\">Java Platform Support</link>"
-msgstr "<link href=\"text/shared/main0650.xhp\" name=\"Java Platform Support\">Deggeersa Hujeffannoo Jaavaa</link>"
+msgid "Save Record"
+msgstr "Galmee Olkaa'i"
-#: main0650.xhp
+#: main0212.xhp
msgctxt ""
-"main0650.xhp\n"
-"par_id3152363\n"
-"2\n"
+"main0212.xhp\n"
+"par_id3145173\n"
"help.text"
-msgid "$[officename] supports the Java platform for running applications and components based on the JavaBeans architecture."
-msgstr "$[officename] hujeffannoo Jaavaa, fayyadama fi qaamoota ijaarrii JavaBeans irratti hundaa'uun kaasuu deeggara."
+msgid "<image id=\"img_id3154123\" src=\"cmd/sc_recundo.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3154123\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154123\" src=\"cmd/sc_recundo.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154123\">Sajoo</alt></image>"
-#: main0650.xhp
+#: main0212.xhp
msgctxt ""
-"main0650.xhp\n"
-"par_id3154751\n"
-"3\n"
+"main0212.xhp\n"
+"par_id3151382\n"
+"14\n"
"help.text"
-msgid "For $[officename] to support the Java platform, you must install the Java 2 Runtime Environment software. When you installed $[officename], you automatically received the option to install these files if they were not yet installed. You can also install these files now if required."
-msgstr ""
+msgid "Undo: Data Input"
+msgstr "Gaabbi: Naqa Deetaa"
-#: main0650.xhp
+#: main0212.xhp
msgctxt ""
-"main0650.xhp\n"
-"par_id3155338\n"
-"4\n"
+"main0212.xhp\n"
+"par_idN10744\n"
"help.text"
-msgid "The Java platform support needs to be activated under $[officename] to run Java applications."
-msgstr "Fayyadamii Jaavaa kaasuudaaf, deeggarsii hujeffannoo Jaavaa $[officename] jalatti akka kakaastuu barbaadda."
+msgid "<link href=\"text/shared/02/12070000.xhp\">Data to Text</link>"
+msgstr "<link href=\"text/shared/02/12070000.xhp\">Deetaa gara Barruu</link>"
-#: main0650.xhp
+#: main0212.xhp
msgctxt ""
-"main0650.xhp\n"
-"par_id3155892\n"
-"5\n"
+"main0212.xhp\n"
+"par_idN10753\n"
"help.text"
-msgid "Activate Java platform support by choosing <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/java.xhp\" name=\"$[officename] - Java\">$[officename] - Java</link></emph>."
-msgstr ""
+msgid "<ahelp hid=\".\">Inserts all fields of the marked record into the current document at the cursor position.</ahelp>"
+msgstr "<ahelp hid=\".\">Dirreewwan mara kan kuusa mallattaa'ee, galmee ammaa bakka qubannoo qaree keessatti saaga.</ahelp>"
-#: main0650.xhp
+#: main0212.xhp
msgctxt ""
-"main0650.xhp\n"
-"par_id9116183\n"
+"main0212.xhp\n"
+"par_idN10780\n"
"help.text"
-msgid "Before you can use a JDBC driver, you need to add its class path. Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME- Java, and click the Class Path button. After you add the path information, restart %PRODUCTNAME."
-msgstr ""
+msgid "<link href=\"text/swriter/01/mailmerge00.xhp\">Mail Merge</link>"
+msgstr "<link href=\"text/swriter/01/mailmerge00.xhp\">Makiinsa Ergannoo</link>"
-#: main0650.xhp
+#: main0212.xhp
msgctxt ""
-"main0650.xhp\n"
-"par_id3153822\n"
-"11\n"
+"main0212.xhp\n"
+"par_idN1078F\n"
"help.text"
-msgid "Your modifications at the <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Java</emph> tab page will be used even if the Java Virtual Machine (JVM, a virtual machine for the Java platform) already has been started. After modifications to the ClassPath you must restart $[officename]. The same is true for modifications under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet - Proxy</emph>. Only the two boxes \"Http Proxy\" and \"Ftp Proxy\" and their ports don't require a restart, they will be evaluated when you click <emph>OK</emph>."
+msgid "<ahelp hid=\".\">Starts the Mail Merge Wizard to create form letters.</ahelp>"
msgstr ""
#: main0213.xhp
@@ -1000,7 +1098,6 @@ msgid "First Record"
msgstr "Kuusaa Jalqaba"
#: main0213.xhp
-#, fuzzy
msgctxt ""
"main0213.xhp\n"
"par_id3154013\n"
@@ -1079,7 +1176,6 @@ msgid "Last Record"
msgstr "Galmee Xumuraa"
#: main0213.xhp
-#, fuzzy
msgctxt ""
"main0213.xhp\n"
"par_id3155337\n"
@@ -1218,487 +1314,165 @@ msgctxt ""
msgid "<link href=\"text/shared/02/12100100.xhp\" name=\"Sort\">Sort</link>"
msgstr "<link href=\"text/shared/02/12100100.xhp\" name=\"Sort\">Fooyi</link>"
-#: main0108.xhp
+#: main0214.xhp
msgctxt ""
-"main0108.xhp\n"
+"main0214.xhp\n"
"tit\n"
"help.text"
-msgid "Help"
-msgstr "Gargaarsa"
+msgid "Query Design Bar"
+msgstr "Kabala Saxaxa Gaafataa"
-#: main0108.xhp
+#: main0214.xhp
msgctxt ""
-"main0108.xhp\n"
-"hd_id3155364\n"
+"main0214.xhp\n"
+"hd_id3159176\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/main0108.xhp\" name=\"Help\">Help</link>"
-msgstr "<link href=\"text/shared/main0108.xhp\" name=\"Help\">Gargaarsa</link>"
+msgid "<link href=\"text/shared/main0214.xhp\" name=\"Query Design Bar\">Query Design Bar</link>"
+msgstr "<link href=\"text/shared/main0214.xhp\" name=\"Query Design Bar\">Kabala Saxaxa Gaafataa</link>"
-#: main0108.xhp
+#: main0214.xhp
msgctxt ""
-"main0108.xhp\n"
-"par_id3153990\n"
+"main0214.xhp\n"
+"par_id3150085\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:HelpMenu\">The Help menu allows you to start and control the $[officename] Help system.</ahelp>"
-msgstr "<ahelp hid=\".uno:HelpMenu\">Bafatii Garagarsichaa, kaasuu fi sirna Gargaarsaa $[officename] too'achu siif hayyama.</ahelp>"
+msgid "<ahelp hid=\".\">When creating or editing an SQL query, use the icons in the <emph>Query Design</emph> Bar to control the display of data.</ahelp>"
+msgstr "<ahelp hid=\".\">Yeroo Gaafata SQL uumtu ykn gulaaltu, mul'ina deetaa to'achuuf sajoowwan kabala <emph>Saxaxa Gaafataa</emph> keessa jiran fayyadami.</ahelp>"
-#: main0108.xhp
+#: main0214.xhp
msgctxt ""
-"main0108.xhp\n"
-"hd_id3147399\n"
+"main0214.xhp\n"
+"par_id3150276\n"
"5\n"
"help.text"
-msgid "$[officename] Help"
-msgstr "Gargaarsa $[officename]"
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"par_id3147576\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\".uno:HelpIndex\">Opens the main page of the $[officename] Help for the current application.</ahelp> You can scroll through the Help pages and you can search for index terms or any text."
-msgstr "<ahelp hid=\".uno:HelpIndex\">Fayyadama ammaatiif fuula guumaa kan Gargaarsa $[officename] bana.</ahelp> Fuulawwan Gargaarsa keessa marsuu nidandeessa, akkasuumas jechoota kasaa yk barruu kamiiyyu barbaaduu nidandeessa."
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"par_idN1064A\n"
-"help.text"
-msgid "<image id=\"img_id1619006\" src=\"cmd/sc_helpindex.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id1619006\">icon</alt></image>"
-msgstr "<image id=\"img_id1619006\" src=\"cmd/sc_helpindex.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id1619006\">sajoo</alt></image>"
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"par_idN10667\n"
-"help.text"
-msgid "%PRODUCTNAME Help"
-msgstr "Gargaarsa %PRODUCTNAME"
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"hd_id2752763\n"
-"help.text"
-msgid "Send Feedback"
-msgstr ""
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"par_id443534340\n"
-"help.text"
-msgid "<ahelp hid=\".uno:SendFeedback\">Opens a feedback form in the web browser, where users can report software bugs.</ahelp>"
-msgstr ""
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"hd_id4153881\n"
-"7\n"
-"help.text"
-msgid "License Information"
-msgstr ""
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"par_id4144510\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ShowLicense\">Displays the Licensing and Legal information dialog.</ahelp>"
-msgstr ""
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"hd_id5153881\n"
-"7\n"
-"help.text"
-msgid "%PRODUCTNAME Credits"
-msgstr ""
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"par_id5144510\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ShowLicense\">Displays the CREDITS.odt document which lists the names of individuals who have contributed to OpenOffice.org source code (and whose contributions were imported into LibreOffice) or LibreOffice since 2010-09-28.</ahelp>"
-msgstr ""
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"hd_id2926419\n"
-"help.text"
-msgid "<link href=\"text/shared/01/online_update.xhp\">Check for Updates</link>"
-msgstr ""
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"par_id2783898\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enable an Internet connection for %PRODUCTNAME. If you need a Proxy, check the %PRODUCTNAME Proxy settings in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet. Then choose Check for Updates to check for the availability of a newer version of your office suite.</ahelp>"
-msgstr ""
+msgid "Depending on whether you have created the query or view in the <emph>Design</emph> or <emph>SQL</emph> tab page, the following icons appear:"
+msgstr "Akkaataa gafata uumte ykn mul'annoo <emph>Design</emph> keessaa ykn fuula caancala <emph>SQL</emph> irratti hundaa'uun, sajoowwan armaan gadiitu mul'atu:"
-#: main0108.xhp
+#: main0214.xhp
msgctxt ""
-"main0108.xhp\n"
-"hd_id3153881\n"
-"7\n"
+"main0214.xhp\n"
+"hd_id3151384\n"
+"3\n"
"help.text"
-msgid "About $[officename]"
-msgstr "Waa'ee $[officename]"
+msgid "<link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Add Tables</link>"
+msgstr "<link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Gabateewwan Ida'i</link>"
-#: main0108.xhp
+#: main0214.xhp
msgctxt ""
-"main0108.xhp\n"
-"par_id3144510\n"
-"8\n"
+"main0214.xhp\n"
+"par_id3151041\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".uno:About\">Displays general program information such as version number and copyrights.</ahelp>"
-msgstr "<ahelp hid=\".uno:About\">Odeeffaannoo saganta waliigalaa kuniis, lakkoofsa fooyya'aa fi mirga abbummaa agarsiissa.</ahelp>"
+msgid "The following icon is on the <emph>SQL</emph> tab page:"
+msgstr "Fuula caancala <emph>SQL</emph> irra sajoo armaan gadiitu jira:"
-#: main0400.xhp
+#: main0226.xhp
msgctxt ""
-"main0400.xhp\n"
+"main0226.xhp\n"
"tit\n"
"help.text"
-msgid "Shortcut Keys"
-msgstr "Qabduuwwan Qaxxaamuraa"
+msgid "Form Design Toolbar"
+msgstr "Kamshaa Saxaxa Unkaa"
-#: main0400.xhp
+#: main0226.xhp
msgctxt ""
-"main0400.xhp\n"
-"hd_id3149495\n"
+"main0226.xhp\n"
+"hd_id3148520\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/main0400.xhp\" name=\"Shortcut Keys\">Shortcut Keys</link>"
-msgstr "<link href=\"text/shared/main0400.xhp\" name=\"Shortcut Keys\">Qabduuwwan Qaxxaamuraa</link>"
+msgid "<link href=\"text/shared/main0226.xhp\" name=\"Form Design Toolbar\">Form Design Toolbar</link>"
+msgstr "<link href=\"text/shared/main0226.xhp\" name=\"Form Design Toolbar\">Kamshaa Saxaxa Unkaa</link>"
-#: main0400.xhp
+#: main0226.xhp
msgctxt ""
-"main0400.xhp\n"
-"par_id3150040\n"
+"main0226.xhp\n"
+"par_id3155364\n"
"2\n"
"help.text"
-msgid "This section contains descriptions of frequently used shortcut keys in $[officename]."
-msgstr "Kutaan kun ibsawwan qabduuwwan qaxxaamuraa $[officename] keessaa yeroo hedduu fayyadan of keessaa qaba."
+msgid "The Form Design toolbar becomes visible as soon as you select a form object when working in the design mode."
+msgstr "Kamshaan Saxaxa Unkaan kan mul'atuu, akkuuma ati haalataa saxaxaan hojeechaa wanta unkaa yammuu filatuudha."
-#: main0204.xhp
+#: main0226.xhp
msgctxt ""
-"main0204.xhp\n"
-"tit\n"
+"main0226.xhp\n"
+"hd_id3163802\n"
+"8\n"
"help.text"
-msgid "Table Bar"
-msgstr "Kabala Gabatee"
+msgid "<link href=\"text/shared/02/01170400.xhp\" name=\"Add Field\">Add Field</link>"
+msgstr "<link href=\"text/shared/02/01170400.xhp\" name=\"Add Field\">Dirree Ida'i</link>"
-#: main0204.xhp
-#, fuzzy
+#: main0226.xhp
msgctxt ""
-"main0204.xhp\n"
-"hd_id3145587\n"
+"main0226.xhp\n"
+"hd_id3150669\n"
+"4\n"
"help.text"
-msgid "<link href=\"text/shared/main0204.xhp\" name=\"Table Bar\">Table Bar</link>"
-msgstr "<link href=\"text/swriter/main0204.xhp\" name=\"Table Bar\">Kabala Gabatee</link>"
+msgid "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">Group</link>"
+msgstr "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">Gurmuu</link>"
-#: main0204.xhp
-#, fuzzy
+#: main0226.xhp
msgctxt ""
-"main0204.xhp\n"
-"par_id3154252\n"
+"main0226.xhp\n"
+"hd_id3147335\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\".\">The <emph>Table</emph> Bar contains functions you need when working with tables. It appears when you move the cursor into a table.</ahelp>"
-msgstr "<ahelp hid=\"HID_TABLE_TOOLBOX\">Kabalii <emph>Gabatee </emph>, dalagaawwan isa ati yammuu gabateewwan waliin hojeechuudhaaf sibarbaachissu of keessaa qaba. Yammuu ati qaree gabatee keessatti siqsiitu mul'ata.</ahelp>"
+msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Ungroup</link>"
+msgstr "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Garbaasi</link>"
-#: main0204.xhp
-#, fuzzy
+#: main0226.xhp
msgctxt ""
-"main0204.xhp\n"
-"hd_id319945759\n"
+"main0226.xhp\n"
+"hd_id3156024\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Area Style / Filling</link>"
-msgstr "#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\\n<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Haalata Sararaa</link>\\n#-#-#-#-# sdraw.po (PACKAGE VERSION) #-#-#-#-#\\n<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Teessuma Akkaataa / Rigdoo</link>"
+msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">Enter Group</link>"
+msgstr "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">Gurmuu Galchi</link>"
-#: main0204.xhp
+#: main0226.xhp
msgctxt ""
-"main0204.xhp\n"
-"hd_id3147592\n"
-"6\n"
+"main0226.xhp\n"
+"hd_id3149295\n"
+"7\n"
"help.text"
-msgid "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge Cells\">Merge Cells</link>"
-msgstr "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge Cells\">Man'eewwan Maki</link>"
+msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Exit Group</link>"
+msgstr "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Gurmuu Keessaa Bahi</link>"
-#: main0204.xhp
+#: main0226.xhp
msgctxt ""
-"main0204.xhp\n"
-"hd_id3147820\n"
+"main0226.xhp\n"
+"hd_id3150398\n"
"9\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05110500.xhp\" name=\"Delete Row\">Delete Row</link>"
-msgstr "<link href=\"text/swriter/01/05110500.xhp\" name=\"Delete Row\">Tarree Haqi</link>"
+msgid "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">Display Grid</link>"
+msgstr "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">Tarsaa Agarsiisi</link>"
-#: main0204.xhp
+#: main0226.xhp
msgctxt ""
-"main0204.xhp\n"
-"hd_id3147231\n"
+"main0226.xhp\n"
+"hd_id3148798\n"
"10\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05120500.xhp\" name=\"Delete Column\">Delete Column</link>"
-msgstr "<link href=\"text/swriter/01/05120500.xhp\" name=\"Delete Column\">Tarjaa Haqi</link>"
-
-#: main0204.xhp
-#, fuzzy
-msgctxt ""
-"main0204.xhp\n"
-"hd_id3134447820\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/taskpanel.xhp\" name=\"Table Design\">Table Design</link>"
-msgstr "<link href=\"text/simpress/01/05120000.xhp\" name=\"Slide Design\">Saxaaxi Islaayidii</link>"
-
-#: main0204.xhp
-#, fuzzy
-msgctxt ""
-"main0204.xhp\n"
-"par_id16200812240344\n"
-"help.text"
-msgid "Opens the Table Design. Double-click a preview to insert a new table."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Saxaaxxi Gabatee bana. Gabatee haaraa saaguuf durargii lamcuqaasi.</ahelp>"
-
-#: main0204.xhp
-#, fuzzy
-msgctxt ""
-"main0204.xhp\n"
-"hd_id947820\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/05090000m.xhp\" name=\"Table Properties\">Table Properties</link>"
-msgstr "<link href=\"text/swriter/01/05080000.xhp\" name=\"Object Properties\">Amalawwan Wantaa</link>"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"tit\n"
-"help.text"
-msgid "Fontwork"
-msgstr "Hojbocquu"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1055A\n"
-"help.text"
-msgid "<link href=\"text/shared/fontwork_toolbar.xhp\">Fontwork</link>"
-msgstr "<link href=\"text/shared/fontwork_toolbar.xhp\">Hojbocquu</link>"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1056A\n"
-"help.text"
-msgid "The Fontwork toolbar opens when you select a Fontwork object."
-msgstr "Kamshaan Hojbocquu kan banamu yammuu wantaa Hojbocquu tokko filatuudha."
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1056D\n"
-"help.text"
-msgid "Fontwork Gallery"
-msgstr "Kuusfaayaa Hojbocquu"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN10571\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Fontwork Gallery where you can select another preview. Click OK to apply the new set of properties to your Fontwork object.</ahelp>"
-msgstr "<ahelp hid=\".\">Kuusfaayaa Hojbocquuchaa, bakka ati durargii kan biraa itti filachuu dandeessu bana. Wanta Hojbocquu keeti amalawwan isa haaraa fayyadamuuf Tole cuqaasi.</ahelp>"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN10588\n"
-"help.text"
-msgid "Fontwork Shape"
-msgstr "Bocaa Hojbocquu"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1058C\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Fontwork Shape toolbar. Click a shape to apply the shape to all selected Fontwork objects.</ahelp>"
-msgstr "<ahelp hid=\".\">Kamshaa Bocaa Hojbocquuchaa bana. Wantawwan Hojbocquu filataman maratti bocicha fayyadamuuf bocaa tokko cuqaasi.</ahelp>"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN105A6\n"
-"help.text"
-msgid "Fontwork Same Letter Heights"
-msgstr "Hojbocquu Hojjaawwan Qubee Walfakki"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN105AA\n"
-"help.text"
-msgid "<ahelp hid=\".\">Switches the letter height of the selected Fontwork objects from normal to the same height for all objects.</ahelp>"
-msgstr "<ahelp hid=\".\">Hojjaa qubee kan wantawwan Hojbocquu filatame wantawwan hojjaa tokicha baratamoo mara irraa jijjiira.</ahelp>"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN105C1\n"
-"help.text"
-msgid "Fontwork Alignment"
-msgstr "Hiriira Hojbocquu"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN105C5\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Fontwork Alignment window.</ahelp>"
-msgstr "<ahelp hid=\".\">Foddaa Hiriira Hojbocquuchaa bana.</ahelp>"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN105DC\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to apply the alignment to the selected Fontwork objects.</ahelp>"
-msgstr "<ahelp hid=\".\">Wantawwan Hojbocquu filatamanitti hiriiricha fayyadamuuf cuqaasi.</ahelp>"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN105F3\n"
-"help.text"
-msgid "Fontwork Character Spacing"
-msgstr "Iddina Arfii Hojbocquu"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN105F7\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Fontwork Character Spacing window.</ahelp>"
-msgstr "<ahelp hid=\".\">Foddaa Iddina Arfii Hojbocquuchaa bana.</ahelp>"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1060E\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to apply the character spacing to the selected Fontwork objects.</ahelp>"
-msgstr "<ahelp hid=\".\">Wantawwan Hojbocquu filatamanitti iddina arfii fayyadamuuf cuqaasi.</ahelp>"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1061D\n"
-"help.text"
-msgid "Custom"
-msgstr "Mammiloo"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN10621\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value.</ahelp>"
-msgstr "<ahelp hid=\".\">Qaaqa Iddina Arfii Hojbocquuchaa, bakka ati gatii iddina arfii haaraa tokko itti galchuu dandeessu bana.</ahelp>"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN10638\n"
-"help.text"
-msgid "Value"
-msgstr "Gatii"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1063C\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the Fontwork character spacing value.</ahelp>"
-msgstr "<ahelp hid=\".\">Gatii iddina arfii Hojbocquuchaa galchi.</ahelp>"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1064B\n"
-"help.text"
-msgid "Kern Character Pairs"
-msgstr "Cimdeewwan Arfii Keernii"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1064F\n"
-"help.text"
-msgid "<ahelp hid=\".\">Switches the <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> of character pairs on and off.</ahelp>"
-msgstr "<ahelp hid=\".\">Rukkina <link href=\"text/shared/00/00000005.xhp#kerning\">cimdaa</link> arfii banaa fi dhammaa jijjiira.</ahelp>"
-
-#: main0214.xhp
-msgctxt ""
-"main0214.xhp\n"
-"tit\n"
-"help.text"
-msgid "Query Design Bar"
-msgstr "Kabala Saxaxa Gaafataa"
-
-#: main0214.xhp
-msgctxt ""
-"main0214.xhp\n"
-"hd_id3159176\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/main0214.xhp\" name=\"Query Design Bar\">Query Design Bar</link>"
-msgstr "<link href=\"text/shared/main0214.xhp\" name=\"Query Design Bar\">Kabala Saxaxa Gaafataa</link>"
-
-#: main0214.xhp
-msgctxt ""
-"main0214.xhp\n"
-"par_id3150085\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">When creating or editing an SQL query, use the icons in the <emph>Query Design</emph> Bar to control the display of data.</ahelp>"
-msgstr "<ahelp hid=\".\">Yeroo Gaafata SQL uumtu ykn gulaaltu, mul'ina deetaa to'achuuf sajoowwan kabala <emph>Saxaxa Gaafataa</emph> keessa jiran fayyadami.</ahelp>"
-
-#: main0214.xhp
-msgctxt ""
-"main0214.xhp\n"
-"par_id3150276\n"
-"5\n"
-"help.text"
-msgid "Depending on whether you have created the query or view in the <emph>Design</emph> or <emph>SQL</emph> tab page, the following icons appear:"
-msgstr "Akkaataa gafata uumte ykn mul'annoo <emph>Design</emph> keessaa ykn fuula caancala <emph>SQL</emph> irratti hundaa'uun, sajoowwan armaan gadiitu mul'atu:"
+msgid "<link href=\"text/shared/02/01171300.xhp\" name=\"Snap to Grid\">Snap to Grid</link>"
+msgstr "<link href=\"text/shared/02/01171300.xhp\" name=\"Snap to Grid\">Tarsaa gara Ariitii</link>"
-#: main0214.xhp
+#: main0226.xhp
msgctxt ""
-"main0214.xhp\n"
-"hd_id3151384\n"
-"3\n"
+"main0226.xhp\n"
+"par_id3145419\n"
+"12\n"
"help.text"
-msgid "<link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Add Tables</link>"
-msgstr "<link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Gabateewwan Ida'i</link>"
+msgid "<ahelp hid=\".uno:GridUse\">Specifies that you can move objects only between grid points.</ahelp>"
+msgstr "<ahelp hid=\".uno:GridUse\">Wantawwan isa ati tuqaalee tarsaa qofaa gidduu ittiin siqsuu dandeessuu ifteessa.</ahelp>"
-#: main0214.xhp
+#: main0226.xhp
msgctxt ""
-"main0214.xhp\n"
-"par_id3151041\n"
-"4\n"
+"main0226.xhp\n"
+"hd_id3148920\n"
+"11\n"
"help.text"
-msgid "The following icon is on the <emph>SQL</emph> tab page:"
-msgstr "Fuula caancala <emph>SQL</emph> irra sajoo armaan gadiitu jira:"
+msgid "<link href=\"text/shared/02/01171400.xhp\" name=\"Helplines While Moving\">Helplines While Moving</link>"
+msgstr "<link href=\"text/shared/02/01171400.xhp\" name=\"Guides When Moving\">Yammuu Sochii Qajeelcha</link>"
#: main0227.xhp
msgctxt ""
@@ -1820,7 +1594,7 @@ msgctxt ""
"48\n"
"help.text"
msgid "Move Points"
-msgstr "Tuqaalee siqsi"
+msgstr "Tuqaalee Siqsi"
#: main0227.xhp
msgctxt ""
@@ -2127,7 +1901,7 @@ msgctxt ""
"34\n"
"help.text"
msgid "Close Bézier"
-msgstr "Bézierii Cufi"
+msgstr "Bézierii cufi"
#: main0227.xhp
msgctxt ""
@@ -2162,4 +1936,222 @@ msgctxt ""
"37\n"
"help.text"
msgid "Eliminate Points"
-msgstr "Tuqaalee Balleesi"
+msgstr "Akeekiiwwan Balleessi"
+
+#: main0400.xhp
+msgctxt ""
+"main0400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Shortcut Keys"
+msgstr "Qabduuwwan Qaxxaamuraa"
+
+#: main0400.xhp
+msgctxt ""
+"main0400.xhp\n"
+"hd_id3149495\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/main0400.xhp\" name=\"Shortcut Keys\">Shortcut Keys</link>"
+msgstr "<link href=\"text/shared/main0400.xhp\" name=\"Shortcut Keys\">Qabduuwwan Qaxxaamuraa</link>"
+
+#: main0400.xhp
+msgctxt ""
+"main0400.xhp\n"
+"par_id3150040\n"
+"2\n"
+"help.text"
+msgid "This section contains descriptions of frequently used shortcut keys in $[officename]."
+msgstr "Kutaan kun ibsawwan qabduuwwan qaxxaamuraa $[officename] keessaa yeroo hedduu fayyadan of keessaa qaba."
+
+#: main0500.xhp
+msgctxt ""
+"main0500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Glossaries"
+msgstr "Kuusfaayaalee"
+
+#: main0500.xhp
+msgctxt ""
+"main0500.xhp\n"
+"hd_id3156183\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/main0500.xhp\" name=\"Glossaries\">Glossaries</link>"
+msgstr "<link href=\"text/shared/main0500.xhp\" name=\"Glossaries\">Kuusfaayaalee</link>"
+
+#: main0500.xhp
+msgctxt ""
+"main0500.xhp\n"
+"par_id3157898\n"
+"2\n"
+"help.text"
+msgid "This section provides a general glossary of technical terms used in $[officename], along with a list of Internet terms."
+msgstr "Kutaan kun kuusfaayaa waliigalaa kan jechoota ogummaa, $[officename] keessatti tarree jechoota interneetii waliin fayyadan laatta."
+
+#: main0600.xhp
+msgctxt ""
+"main0600.xhp\n"
+"tit\n"
+"help.text"
+msgid "Programming $[officename]"
+msgstr "$[officename] Saganteessuu"
+
+#: main0600.xhp
+msgctxt ""
+"main0600.xhp\n"
+"bm_id3154232\n"
+"help.text"
+msgid "<bookmark_value>programming;$[officename]</bookmark_value><bookmark_value>Basic;programming</bookmark_value>"
+msgstr "<bookmark_value>programming;$[officename]</bookmark_value><bookmark_value>Basic;saganteesuu</bookmark_value>"
+
+#: main0600.xhp
+msgctxt ""
+"main0600.xhp\n"
+"hd_id3154232\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Programming $[officename]\">Programming $[officename]</link></variable>"
+msgstr "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Programming $[officename]\">$[officename] Saganteessuu</link></variable>"
+
+#: main0600.xhp
+msgctxt ""
+"main0600.xhp\n"
+"par_id3149760\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"basic\">$[officename] can be controlled by using the $[officename] API. </variable>"
+msgstr "<variable id=\"basic\">$[officename] kan too'achuun dandaa'amuu, WSF $[officename] fayyadamuudha. </variable>"
+
+#: main0600.xhp
+msgctxt ""
+"main0600.xhp\n"
+"par_id3151111\n"
+"12\n"
+"help.text"
+msgid "$[officename] provides an Application Programming Interface (API) that enables you to control $[officename] components by using various programming languages. A $[officename] Software Development Kit is available for the programming interface."
+msgstr "$[officename] Walqunnama Saganteesuu Fayyadamaa (WSF) isa qaamoota $[officename] too'annaa afaanoota saganteesuu hedduu fayyadamuun dandeessisuu siif laatta. Walqunnama saganteesuutiif Kitii Ijaarsa Mosajjii $[officename] jira."
+
+#: main0600.xhp
+msgctxt ""
+"main0600.xhp\n"
+"par_id3156346\n"
+"15\n"
+"help.text"
+msgid "For more information about $[officename] API reference, please visit http://api.libreoffice.org/"
+msgstr "Odeeffannoo dabalataa waa'ee wabii (WSF) $[officename] tiif, mee http://api.openoffice.org/ doowadhu"
+
+#: main0600.xhp
+msgctxt ""
+"main0600.xhp\n"
+"par_id3153825\n"
+"13\n"
+"help.text"
+msgid "Macros created with $[officename] Basic based on the old programming interface will no longer be supported by the current version."
+msgstr "Maakroowwanii walqunnama saganteesuu moofaa Basic $[officename] irratti huundaa'uun uumaman fooyya'aa ammaa irratti ammaan booda deeggarsa hinqaabaatan."
+
+#: main0600.xhp
+msgctxt ""
+"main0600.xhp\n"
+"par_id3149795\n"
+"14\n"
+"help.text"
+msgid "For more information on $[officename] Basic, select \"$[officename] Basic\" in the list box."
+msgstr "Basic $[officename] irratti odeeffanno dabalataatiif, sansduuqa tarree keessaa \"Basic $[officename]\" filadhu."
+
+#: main0650.xhp
+msgctxt ""
+"main0650.xhp\n"
+"tit\n"
+"help.text"
+msgid "Java Platform Support"
+msgstr "Deggeersa Hujeffannoo Jaavaa"
+
+#: main0650.xhp
+msgctxt ""
+"main0650.xhp\n"
+"hd_id3153089\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/main0650.xhp\" name=\"Java Platform Support\">Java Platform Support</link>"
+msgstr "<link href=\"text/shared/main0650.xhp\" name=\"Java Platform Support\">Deggeersa Hujeffannoo Jaavaa</link>"
+
+#: main0650.xhp
+msgctxt ""
+"main0650.xhp\n"
+"par_id3152363\n"
+"2\n"
+"help.text"
+msgid "$[officename] supports the Java platform for running applications and components based on the JavaBeans architecture."
+msgstr "$[officename] hujeffannoo Jaavaa, fayyadama fi qaamoota ijaarrii JavaBeans irratti hundaa'uun kaasuu deeggara."
+
+#: main0650.xhp
+msgctxt ""
+"main0650.xhp\n"
+"par_id3154751\n"
+"3\n"
+"help.text"
+msgid "For $[officename] to support the Java platform, you must install the Java 2 Runtime Environment software. When you installed $[officename], you automatically received the option to install these files if they were not yet installed. You can also install these files now if required."
+msgstr ""
+
+#: main0650.xhp
+msgctxt ""
+"main0650.xhp\n"
+"par_id3155338\n"
+"4\n"
+"help.text"
+msgid "The Java platform support needs to be activated under $[officename] to run Java applications."
+msgstr "Fayyadamii Jaavaa kaasuudaaf, deeggarsii hujeffannoo Jaavaa $[officename] jalatti akka kakaastuu barbaadda."
+
+#: main0650.xhp
+msgctxt ""
+"main0650.xhp\n"
+"par_id3155892\n"
+"5\n"
+"help.text"
+msgid "Activate Java platform support by choosing <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/java.xhp\" name=\"$[officename] - Advanced\">$[officename] - Advanced</link></emph>."
+msgstr ""
+
+#: main0650.xhp
+msgctxt ""
+"main0650.xhp\n"
+"par_id9116183\n"
+"help.text"
+msgid "Before you can use a JDBC driver, you need to add its class path. Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Advanced, and click the Class Path button. After you add the path information, restart %PRODUCTNAME."
+msgstr ""
+
+#: main0650.xhp
+msgctxt ""
+"main0650.xhp\n"
+"par_id3153822\n"
+"11\n"
+"help.text"
+msgid "Your modifications at the <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Advanced</emph> tab page will be used even if the Java Virtual Machine (JVM, a virtual machine for the Java platform) already has been started. After modifications to the ClassPath you must restart $[officename]. The same is true for modifications under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet - Proxy</emph>. Only the two boxes \"Http Proxy\" and \"Ftp Proxy\" and their ports don't require a restart, they will be evaluated when you click <emph>OK</emph>."
+msgstr ""
+
+#: main0800.xhp
+msgctxt ""
+"main0800.xhp\n"
+"tit\n"
+"help.text"
+msgid "$[officename] and the Internet"
+msgstr "$[officename] fi Interneetiicha"
+
+#: main0800.xhp
+msgctxt ""
+"main0800.xhp\n"
+"hd_id3153089\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/main0800.xhp\" name=\"$[officename] and the Internet\">$[officename] and the Internet</link>"
+msgstr "<link href=\"text/shared/main0800.xhp\" name=\"$[officename] and the Internet\">$[officename] fi Interneetiicha</link>"
+
+#: main0800.xhp
+msgctxt ""
+"main0800.xhp\n"
+"par_id3155150\n"
+"2\n"
+"help.text"
+msgid "This section provides information on the subject of the Internet. An <link href=\"text/shared/00/00000002.xhp\" name=\"Internet glossary\">Internet glossary</link> explains the most important terms."
+msgstr "Kutaan kun dhimma odeeffanno inteerneetiicha irraa laatta. <link href=\"text/shared/00/00000002.xhp\" name=\"Internet glossary\">Jibsoo Inteerneetii</link>n jechoota hedduu barbaachisa tahaan ibsa."
diff --git a/source/om/helpcontent2/source/text/shared/00.po b/source/om/helpcontent2/source/text/shared/00.po
index 180ac81a719..22bb133fcb8 100644
--- a/source/om/helpcontent2/source/text/shared/00.po
+++ b/source/om/helpcontent2/source/text/shared/00.po
@@ -1,809 +1,1766 @@
-#
+#. extracted from helpcontent2/source/text/shared/00
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"
-"PO-Revision-Date: 2012-06-16 15:14+0200\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
+"PO-Revision-Date: 2012-09-04 22:09+0000\n"
+"Last-Translator: Diriba Kuma <diribakw@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: 1346796588.0\n"
-#: 00000407.xhp
+#: 00000001.xhp
msgctxt ""
-"00000407.xhp\n"
+"00000001.xhp\n"
"tit\n"
"help.text"
-msgid "Window Menu"
-msgstr "Foddaa baafattaa"
+msgid "Frequently-Used Buttons"
+msgstr "Qabdoota-Irradaddebiin Fayyadaman"
-#: 00000407.xhp
+#: 00000001.xhp
msgctxt ""
-"00000407.xhp\n"
-"hd_id3154349\n"
+"00000001.xhp\n"
+"hd_id3152952\n"
"1\n"
"help.text"
-msgid "Window Menu"
-msgstr "Foddaa baafattaa"
+msgid "Frequently-Used Buttons"
+msgstr "Qabdoota-Irradaddebiin Fayyadaman"
-#: 00000407.xhp
+#: 00000001.xhp
msgctxt ""
-"00000407.xhp\n"
-"par_id3083278\n"
+"00000001.xhp\n"
+"hd_id3147617\n"
+"4\n"
+"help.text"
+msgid "Cancel"
+msgstr "Dhiisi"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3155913\n"
+"5\n"
+"help.text"
+msgid "<ahelp hid=\".\">Clicking <emph>Cancel</emph> closes a dialog without saving any changes made.</ahelp>"
+msgstr "<ahelp hid=\".\"><emph>Dhiisi</emph> cuqaasuun jijjiirama wrramee tokkolee osso olhinkaaiin qaaqa cufa.</ahelp>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id2341685\n"
+"help.text"
+msgid "Finish"
+msgstr "Xumuri"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id6909390\n"
+"help.text"
+msgid "<ahelp hid=\".\">Applies all changes and closes the wizard.</ahelp>"
+msgstr "<ahelp hid=\".\">Jijjiiramoota hunda fayyadami akkasumas masakiichaas cufa.</ahelp>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3147477\n"
+"39\n"
+"help.text"
+msgid "Toolbars"
+msgstr "Kamshaalee"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3149783\n"
+"40\n"
+"help.text"
+msgid "By clicking the arrow next to some icons you open a toolbar. To move a toolbar, drag the title bar. As soon as you release the mouse button, the toolbar remains at the new position. Drag the title bar to another position, or drag to an edge of the window, where the toolbar will dock. Close a toolbar by clicking the Close Window icon. Make the toolbar visible again by choosing <emph>View - Toolbars - (toolbar name)</emph>."
+msgstr "Xiyyicha soojoowwan tokko tokkoo cina jiran caqasuun kamshaa banta. Kamshichaa sosochoosuuf, kabala matadurichaa harkisi. Battaluma qabdu hantuutttee gadhiisteen, kamshaan iddoo haaraatti hafa. Kamshaa mataduree gara iddoo biraatti harkisi, ykn gara qarree foodichaa, bakka kamshichaatti itti hidhamutti harkisi.Cuftuu foodaa soojoo caqasuun kamshaa cufi. Kamshaa dabalataan akka mul`atu gochuuf <emph>Ilaali - Kamshaalee - (maqaa kamshaa)</emph> fili."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3152414\n"
+"79\n"
+"help.text"
+msgid "Spin button"
+msgstr "Qabduu qaamii"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id1094088\n"
+"help.text"
+msgid "In form controls, a spin button is a property of a numerical field, currency field, date field, or time field. If the property \"Spin button\" is enabled, the field shows a pair of symbols with arrows pointing to opposing directions, either vertically or horizontally."
+msgstr "Akka hunka to'annootti, qaanxiin qabduu amaaloota dirree lakkoofsa, dirree sharafa, dirree guyyaaa, ykn dirree sa'atiiti. Yoo amlichiif spin bootoon hojeete dirricha mallattoolee cimdii irran gadee ykn dagaleen akkatan mul'isa ."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id7493209\n"
+"help.text"
+msgid "In the Basic IDE, a spin button is the name used for the numerical field together with the two arrow symbols."
+msgstr "Bu’uura IDE keessatti, qabduun qanxii maqaa kan xiyya olee lama waliin lakkoofsa dirreef gargaaru dha."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3155599\n"
+"78\n"
+"help.text"
+msgid "You can type a numerical value into the field next to the spin button, or select the value with the up-arrow or down-arrow symbols on the spin button. On the keyboard you can press the up arrow and down arrow keys to increase or reduce the value. You can press the Page Up and Page Down keys to set the maximum and minimum value."
+msgstr "Dirree qabduu qaanxii itti aanu keessatti gatii lakkoofsaa barreessuu, ykn qabduu qaanxii irraa gatii mallattoolee xiyya - olii ykn xiyya - gadii waliin filachuu dandeessa. Gatiicha hir'suuf yookiin dabaluuf gabatee cuqoo irraa furtuulee xiyyaa alkaassaa fi gadbuusaa dhiibu dandeessa. Gatii olaanaa fi gadaanaa qindeessuuf furtuu Fuul Olee fi Fuul Gadee dhiibu dandeessa."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3150264\n"
+"38\n"
+"help.text"
+msgid "If the field next to the spin button defines numerical values, you can also define a <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"measurement unit\">measurement unit</link>, for example, 1 cm or 5 mm, 12 pt or 2\"."
+msgstr "Osoo dirreen qabduu qaanxii itti aanuu gatiiwwan lakkoofsa hiike, dabalataan <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"measurement unit\">safartuu</link> hiikuu dandeessa, fakeenyaaf, 1 cm ykn 5 mm, 12 pt ykn 2\"."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3154232\n"
+"76\n"
+"help.text"
+msgid "Convert"
+msgstr "Jijjiiri"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3148983\n"
+"77\n"
+"help.text"
+msgid "<ahelp hid=\".\">If you click forward through the dialog, this button is called <emph>Next</emph>. On the last page the button has the name <emph>Convert</emph>. The conversion is then performed by clicking the button.</ahelp>"
+msgstr "<ahelp hid=\".\">Qaaqa keessa gara fulduraatti yoo cuqaafte, qabduun kun <emph>itti aanee</emph> jedhama. Fuula jalqabaa irratti qabduun maqaa <emph>Jijjiiri</emph> qaba. Jijjiirraan qabduu cuqaasuun raawwatama.</ahelp>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3145129\n"
+"42\n"
+"help.text"
+msgid "Context Menu"
+msgstr "Baafata Halqaraa"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3156553\n"
+"44\n"
+"help.text"
+msgid "<variable id=\"context\">To activate the context menu of an object, first click the object with the <switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>left</defaultinline></switchinline> mouse button to select it, and then, <switchinline select=\"sys\"><caseinline select=\"MAC\">while holding down the Ctrl key or the Command and Option keys, click the mouse button again</caseinline><defaultinline> click the right mouse button</defaultinline></switchinline>. Some context menus can be called even if the object has not been selected. Context menus are found just about everywhere in $[officename].</variable>"
+msgstr "<variable id=\"context\">Baafata halqara wantaa kakaasuuf, jalqaba wanta fiachuuf<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>left</defaultinline></switchinline>qabduu hantuutee waliin cuqaasi, itti aansuudhaan yeroo furtuu Ctrl ykn ajajaa fi furtuuwwan dirqalaa gad qabdu, <switchinline select=\"sys\"><caseinline select=\"MAC\">qabduu hantuutee irra deebuun cuqaasi </caseinline><defaultinline>qabduu hantuutee mirgaa cuqaasi</defaultinline></switchinline>. Baafatni halqaraa gariin osoodhuma wanti hin filatamiin illee waamamuu danda'u. Baafatni halqaraa $[officename] keessatti iddoo maratti argama.</variable>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3149180\n"
+"24\n"
+"help.text"
+msgid "Delete"
+msgstr "Haqi"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3153750\n"
+"25\n"
+"help.text"
+msgid "<ahelp hid=\".\">Deletes the selected element or elements after confirmation.</ahelp>"
+msgstr "<ahelp hid=\".\">Maalimaa ykn maalimoota filataman dhugoomsa booda haqa.</ahelp>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3147557\n"
+"45\n"
+"help.text"
+msgid "Delete"
+msgstr "Haqi"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3155338\n"
+"46\n"
+"help.text"
+msgid "<ahelp hid=\".\">Deletes the selected element or elements without requiring confirmation.</ahelp>"
+msgstr "<ahelp hid=\".\">Maalimaa ykn maalimoota filataman dhugoomsa osoo hin barbaadiin haqa.</ahelp>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3148620\n"
"6\n"
"help.text"
-msgid "<variable id=\"window\">Choose <emph>Window - New Window</emph></variable>"
-msgstr "<variable id=\"window\"><emph>Foddaa - Foddaa Haaraa</emph>filadhu</variable>"
+msgid "Metrics"
+msgstr "Safartuuwwan"
-#: 00000407.xhp
+#: 00000001.xhp
msgctxt ""
-"00000407.xhp\n"
-"par_id3154545\n"
-"13\n"
+"00000001.xhp\n"
+"par_id3145345\n"
+"7\n"
"help.text"
-msgid "<variable id=\"liste\">Choose <emph>Window</emph> - List of open documents</variable>"
-msgstr "<variable id=\"liste\"><emph>Foddaa</emph> - Galmee tarree banaa</variable>"
+msgid "You can enter values in the input fields in different units of measurement. The default unit is inches. However, if you want a space of exactly 1cm, then type \"1cm\". Additional units are available according to the context, for example, 12 pt for a 12 point spacing. If the value of the new unit is unrealistic, the program uses a predefined maximum or minimum value."
+msgstr "Gatiiwwan dirree naqaa keessa safartuu birootiin galchuu dandeessa. Safaruun durtii inchii dha. Haata'u malee, yoo iddoo 1cm ta'u barbaadde, \"1cm\" barreessi. Baafata irratti hundaa'uun safartootni kan biroos ni argamu, fakkeenyaaf, 12 pt bakka iddoo akeeki 12. Yoo gatiin safartuu haaraa beekamaa hin ta'iin, sagantichi gatii guddaa fi xiqqaa durumaan ibsaman fayyadama."
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"tit\n"
+"00000001.xhp\n"
+"hd_id3155535\n"
+"8\n"
"help.text"
-msgid "See also..."
-msgstr "dabalii ilaali..."
+msgid "Close"
+msgstr "Cufi"
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"hd_id3147527\n"
-"1\n"
+"00000001.xhp\n"
+"par_id3147008\n"
+"9\n"
"help.text"
-msgid "<variable id=\"siehe\">See also... </variable>"
-msgstr "<variable id=\"siehe\">dabalii ilaali... </variable>"
+msgid "<ahelp hid=\".\">Closes the dialog and saves all changes.</ahelp>"
+msgstr "<ahelp hid=\".\">Qaaqa cufee jijjiiramoota mara ol kaa'a.</ahelp>"
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"par_id3143206\n"
+"00000001.xhp\n"
+"hd_id3147275\n"
+"57\n"
+"help.text"
+msgid "Close"
+msgstr "Cufi"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3153031\n"
+"58\n"
+"help.text"
+msgid "<ahelp hid=\".\">Closes the dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Qaaqicha cufa.</ahelp>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3156113\n"
+"16\n"
+"help.text"
+msgid "Apply"
+msgstr "Fayyadami"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3155341\n"
+"17\n"
+"help.text"
+msgid "<ahelp hid=\".\">Applies the modified or selected values without closing the dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Qaaqa osoo hin cufiin gatii foyyaa'e ykn filatame fayyadama.</ahelp>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3153760\n"
+"47\n"
+"help.text"
+msgid "Shrink / Maximize"
+msgstr "Suntuursi / Irraanessi"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3153087\n"
+"48\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click the<emph> Shrink </emph>icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the <emph>Maximize</emph> icon. Click it to restore the dialog to its original size.</ahelp>"
+msgstr "<ahelp hid=\".\"><emph> Qooqsi </emph>sajoo qaaqa gara hamamtaa dirree naqaatti hir'isa. Kanaafuu wabii wardii irratti mallatteessuuf ni salphata. Sajoon ofumaan sajoo birootti jijjirama. Sajoo <emph>Olaansi</emph>. Qaaqa hamamtaa isa duraatti deebisanii kuusuf cuqaasi.</ahelp>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3155062\n"
+"49\n"
+"help.text"
+msgid "The dialog is automatically minimized when you click into a sheet with the mouse. As soon as you release the mouse button, the dialog is restored and the reference range defined with the mouse is highlighted in the document by a blue frame."
+msgstr "Yeroo hantuuteedhaan barruu irratti cuqaastu qaaqni ofumaan xiqqaata. Akkuma ati qabduu hantuutee gad lakkiifteen, qaaqni bakkatti deebi'a akkasumas hangi wabii hantuutee waliin qindaa'e galmee keessatti godayyaa cuquliisaan shoolama."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3157808\n"
+"help.text"
+msgid "<image id=\"img_id3148685\" src=\"formula/res/refinp1.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3148685\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148685\" src=\"formula/res/refinp1.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3148685\">Sajoo</alt></image>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3153321\n"
+"50\n"
+"help.text"
+msgid "Shrink"
+msgstr "Suntuuruu"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3153349\n"
+"help.text"
+msgid "<image id=\"img_id3149784\" src=\"formula/res/refinp2.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149784\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149784\" src=\"formula/res/refinp2.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149784\">Sajoo</alt></image>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3155628\n"
+"51\n"
+"help.text"
+msgid "Maximize"
+msgstr "Irraanessi"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3156192\n"
+"34\n"
+"help.text"
+msgid "Preview Field"
+msgstr "Dirree Durargii"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3154046\n"
+"35\n"
+"help.text"
+msgid "<ahelp hid=\".\">Displays a preview of the current selection.</ahelp>"
+msgstr "<ahelp hid=\".\">Durargii filannoo ammee agarsiisi.</ahelp>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3145609\n"
+"70\n"
+"help.text"
+msgid "Next"
+msgstr "Itti aanee"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3152473\n"
"71\n"
"help.text"
-msgid "<variable id=\"userszenarien\"><link href=\"text/scalc/01/06050000.xhp\" name=\"Tools Menu - Scenarios\">Tools Menu - Scenarios</link></variable>"
-msgstr "<variable id=\"userszenarien\"><link href=\"text/scalc/01/06050000.xhp\" name=\"Tools Menu - Scenarios\">Baafata Meeshaalee - Mul'inoota</link></variable>"
+msgid "<ahelp hid=\".\">Click the<emph> Next </emph>button, and the wizard uses the current dialog settings and proceeds to the next step. If you are on the last step, this button becomes <emph>Create</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\">Qabduu <emph> itti aanee </emph> cuqaaasi, akkasumas masakichi haalataalee qaaqa ammee fayyadama sana booda gara eejjatoo itti aanutti fufa. Yoo eejattoo xumuraa irra jiraatte, qabduun kun <emph>Uumi</emph> ta'a.</ahelp>"
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"par_id3156069\n"
-"83\n"
+"00000001.xhp\n"
+"hd_id3149670\n"
+"13\n"
"help.text"
-msgid "On the help page for <link href=\"text/shared/guide/main.xhp\" name=\"$[officename] general\">$[officename] general</link> you can find instructions that are applicable to all modules, such as working with windows and menus, customizing $[officename], data sources, Gallery, and drag and drop."
-msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"$[officename] general\">Waliigala $[officename]</link>tiif fuula gargaarsaa irratti ajajoota muraalee hunda irratti kan tahu, kan akka foddootaa fi baaffattota, maamila $[officename], maddoota deetaa, galmaayaa faayataa fi Harkisuu fi kaa'uu argachuu dandeessa."
+msgid "Back"
+msgstr "Duuba"
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"par_id3149662\n"
-"84\n"
+"00000001.xhp\n"
+"par_id3145068\n"
+"14\n"
"help.text"
-msgid "If you want help with another module, switch to the help for that module with the combo box in the navigation area."
-msgstr "Muraalee biroo wajjin gargaarsa yoo barbaadde, muraalee sanaaf sanduuqa makaa naannoo naanna'insaa keessaa wajjin gargaarsaaf bancufi."
+msgid "<ahelp hid=\"OFFMGR_PUSHBUTTON_RID_OFADLG_OPTIONS_TREE_PB_BACK\">Resets modified values back to the $[officename] default values.</ahelp>"
+msgstr "<ahelp hid=\"OFFMGR_PUSHBUTTON_RID_OFADLG_OPTIONS_TREE_PB_BACK\">Gatiiwwan fooya'aa gara gatii durtii $[officename] tti haaroomsa.</ahelp>"
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"par_id3154408\n"
-"85\n"
+"00000001.xhp\n"
+"hd_id3148755\n"
+"59\n"
"help.text"
-msgid "<variable id=\"winmanager\">The availability of this function depends on your X Window Manager. </variable>"
-msgstr "<variable id=\"winmanager\">Argamiinsi faankishinii kanaa Taliigaa Foddaa X kee irratti hundaa'a. </variable>"
+msgid "Reset"
+msgstr "Haaromsi"
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"par_idN10632\n"
+"00000001.xhp\n"
+"par_id3149651\n"
+"60\n"
"help.text"
-msgid "<ahelp hid=\".uno:HelperDialog\">Allows you to activate the automatic Help Agent. You can also activate the Help Agent through <emph>$[officename] - General - Help Agent</emph> in the Options dialog box.</ahelp>"
-msgstr "<ahelp hid=\".uno:HelperDialog\">Iddoomaa Gargaarsa ofumaa kakaasuuf sii eyyama. Itti dabaltees Iddoomaa Gargaarsa <emph>Meeshaalee - Dirqaalee - $[officename] - Waliigala - Iddoomaa Gargaarsa</emph> keessatti kakaasuu dandeessa.</ahelp>"
+msgid "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Resets changes made to the current tab to those applicable when this dialog was opened. A confirmation query does not appear when you close the dialog.</ahelp>"
+msgstr "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Jijjiiramoota caancala ammeetiif ta'an gara warreen yeroo qaaqni kun banametti hojiirra olanitti haaroomsa. Gaafatni dhugoomsuu yeroo qaaqa cuftu hin mul'atu.</ahelp>"
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"par_idN10665\n"
+"00000001.xhp\n"
+"hd_id3143278\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\".uno:HelpTip\">Enables the display of icon names at the mouse pointer and other Help contents.</ahelp>"
-msgstr "<ahelp hid=\".uno:HelpTip\">Mul'ina maqaalee sajoo akeektuu hantuutte fi qabeentota Gargaarsaa biroo irratti dandeessisa.</ahelp>"
+msgid "Reset"
+msgstr "Haaromsi"
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"par_idN1067C\n"
+"00000001.xhp\n"
+"par_id3150791\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\".uno:ActiveHelp\">Enables the display of a brief description of menus and icons at the mouse pointer.</ahelp>"
-msgstr "<ahelp hid=\".uno:ActiveHelp\">Mul'ina ibsa cuunfamaa bafattootaa fi sajoo akeektuu hantuutte irratti dandeessisa.</ahelp>"
+msgid "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Resets modified values back to the default values.</ahelp>"
+msgstr "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Gatiiwwan foyyaa'an gara gatiiwwan durtiitti haaromsa.</ahelp>"
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"par_id6200750\n"
+"00000001.xhp\n"
+"par_id3154331\n"
+"20\n"
"help.text"
-msgid "Some of the shortcut keys may be assigned to your desktop system. Keys that are assigned to the desktop system are not available to %PRODUCTNAME. Try to assign different keys either for %PRODUCTNAME, in <emph>Tools - Customize - Keyboard</emph>, or in your desktop system."
-msgstr "Furtuuleen qaxxaamura tokko tokkoo sirna minjaalee keef ramadame. Furtuuleen sirna minjaaleetiif ramadaman %PRODUCTNAME tiif hin argaman. Furtuulee adda addaa %PRODUCTNAME <emph>Meeshaalee - Maamileesi - Minjaalee</emph>, ykn sirna minjaalee keessatiif ramaduuf yaali."
+msgid "A confirmation query does not appear. If you confirm the dialog with OK all settings in this dialog are reset."
+msgstr "Gaafatni dhugoomsuu hin mul'atu. Yoo qaaqa TOLE dhaan dhugoomsite qindaa'inootni hundi qaaqa kana keessa jiran ni haaroomu."
-#: 00000011.xhp
+#: 00000001.xhp
msgctxt ""
-"00000011.xhp\n"
-"tit\n"
+"00000001.xhp\n"
+"hd_id3145173\n"
+"10\n"
"help.text"
-msgid "Menu Commands"
-msgstr "Ajajoota Baafataa"
+msgid "Standard"
+msgstr "Waaltina"
-#: 00000011.xhp
+#: 00000001.xhp
msgctxt ""
-"00000011.xhp\n"
-"hd_id3156045\n"
-"4\n"
+"00000001.xhp\n"
+"par_id3154153\n"
+"11\n"
"help.text"
-msgid "Menu Commands"
-msgstr "Ajajoota Baafataa"
+msgid "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Resets the values visible in the dialog back to the default installation values.</ahelp>"
+msgstr "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Gatiiwwan mul'atoo qaaqa keessaa gara gatiiwwan ijaarsa durtiitti deebisee haaromsa.</ahelp>"
-#: 00000011.xhp
+#: 00000001.xhp
msgctxt ""
-"00000011.xhp\n"
-"par_id3150838\n"
-"5\n"
+"00000001.xhp\n"
+"par_id3154299\n"
+"12\n"
"help.text"
-msgid "The window containing the document you want to work on must be selected in order to use the menu commands. Similarly, you must select an object in the document to use the menu commands associated with the object."
-msgstr "Foddaan galmee of keessatti qabate ati irratti hojjechuu barbaaddu akka ajajoota baafataa fayyadamuuf filatamuu qaba. Haaluma walfakkatuun, ajajoota baafataa wanta waliin firooman fayyadamuuf wanta galmee keessaa filachuu qabda."
+msgid "A confirmation does not appear before the defaults are reloaded."
+msgstr "Osoo durtiiwwan irra deebi'anii hin naqamiin dhugoomsi hin mul'atu."
-#: 00000011.xhp
+#: 00000001.xhp
msgctxt ""
-"00000011.xhp\n"
-"par_id3156027\n"
-"3\n"
+"00000001.xhp\n"
+"hd_id3147502\n"
+"72\n"
"help.text"
-msgid "The menus are context sensitive. This means that those menu items are available that are relevant to the work currently being carried out. If the cursor is located in a text, then all of those menu items are available that are needed to edit the text. If you have selected graphics in a document, then you will see all of the menu items that can be used to edit graphics."
-msgstr "Baafatawwan rifachisaa halqalaati. Kana jechuun maalimootni baafataa kun hojii amma hojjetamaa jiruuf faayidaa qabeessa ta'anii jiraatu. Yoo qareen barruu keessatti iddeeffame, maalimootni baafataa barruu gulaaluuf fayyadan hundi ni jiraatu. Yoo galmee keessaa saxaatoo filatteetta ta'e, maalimoota baafataa saxaatoo gulaaluuf fayyadan hunda agarta."
+msgid "Back"
+msgstr "Duuba"
-#: 00000010.xhp
+#: 00000001.xhp
msgctxt ""
-"00000010.xhp\n"
+"00000001.xhp\n"
+"par_id3150439\n"
+"73\n"
+"help.text"
+msgid "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">View the selections in the dialog made in the previous step. The current settings remain unchanged.</ahelp> This button can only be activated from page two on."
+msgstr "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Filannoowwan qaaqa keessatti ejattoo duraa irratti uumaman mul'isi.</ahelp> Qabduun kun fuula lama irraa qofa kakkaafamuu danda'a."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3147352\n"
+"52\n"
+"help.text"
+msgid "More"
+msgstr "Dabala"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3155314\n"
+"53\n"
+"help.text"
+msgid "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Click the<emph> More</emph> button to expand the dialog to show further options. Click again to restore the dialog.</ahelp>"
+msgstr "Qaaqni akka dirqaalee dabalataa mul'isu bal'isuuf <ahelp hid=\"HID_TABDLG_STANDARD_BTN\">qabduu <emph> Dabalaa</emph> cuqaasi. Qaaqa haaromsuuf irra deebii cuqaasi.</ahelp>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3161659\n"
+"41\n"
+"help.text"
+msgid "<variable id=\"siehe\">See also the following functions: </variable>"
+msgstr "<variable id=\"siehe\">Dabalataan dalagaawwan armaan gadii ilaali: </variable>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3147418\n"
+"55\n"
+"help.text"
+msgid "<variable id=\"regulaer\">The search supports <link href=\"text/shared/01/02100001.xhp\" name=\"regular expressions\">regular expressions</link>. You can enter \"all.*\", for example to find the first location of \"all\" followed by any characters. If you want to search for a text that is also a regular expression, you must precede every character with a \\ character. You can switch the automatic evaluation of regular expression on and off in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - Calculate</link>.</variable>"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3163714\n"
+"56\n"
+"help.text"
+msgid "<variable id=\"wahr\">If an error occurs, the function returns a logical or numerical value. </variable>"
+msgstr "<variable id=\"wahr\">Yoo dogoggorri uumame, faankishiniin kun gatii yaayaa ykn lakkoofsaa debisu. </variable>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3154145\n"
+"54\n"
+"help.text"
+msgid "<variable id=\"kontext\">(This command is only accessible through the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link>). </variable>"
+msgstr "<variable id=\"kontext\">(Ajajni kun kan bira gahamuu danda'u karaa <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">baafata halqaraa</link> qofa). </variable>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3152791\n"
+"61\n"
+"help.text"
+msgid "<variable id=\"wiederholen\">By double-clicking a tool, you can use it for multiple tasks. If you call the tool with a single-click, it reverts back to the last selection after completing the task. </variable>"
+msgstr "<variable id=\"wiederholen\">Meeshaa lama cuqaasuun, dalagaawwan hedduuf fayyadamuu dandeessa. Yoo meeshaa tokko cuqaasuun waamte, erga dalagaa xumureen booda gara filannoo duuraatti duubatti deebisa. </variable>"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id9345377\n"
+"help.text"
+msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control. </variable>"
+msgstr "<variable id=\"ShiftF1\">Shift+F1 dhiibi akkasumas waa'ee to'annaa kanaa dabalataan baruuf gara to'annaatti akeeki. </variable>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
"tit\n"
"help.text"
-msgid "Context Menus"
-msgstr "Baafatawwan halqaraa"
+msgid "Glossary of Internet Terms"
+msgstr "Jibsoo Jechoota Intarneetii"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3160447\n"
+"00000002.xhp\n"
+"bm_id3150702\n"
+"help.text"
+msgid "<bookmark_value>Internet glossary</bookmark_value><bookmark_value>common terms;Internet glossary</bookmark_value><bookmark_value>glossaries;Internet terms</bookmark_value><bookmark_value>terminology;Internet glossary</bookmark_value>"
+msgstr "<bookmark_value>Jibsoo intarneetii</bookmark_value><bookmark_value>jechoota waliinii;Jibsoo intarneetii</bookmark_value><bookmark_value>jibsoota;jechoota intarneetii</bookmark_value><bookmark_value>jechoota;Jibsoo intarneetii</bookmark_value>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3150702\n"
"1\n"
"help.text"
-msgid "Context Menus"
-msgstr "Baafatawwan Halqaraa"
+msgid "<link href=\"text/shared/00/00000002.xhp\" name=\"Glossary of Internet Terms\">Glossary of Internet Terms</link>"
+msgstr "<link href=\"text/shared/00/00000002.xhp\" name=\"Glossary of Internet Terms\">Jibsoo Jechoota Intarneetii</link>"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3148765\n"
-"45\n"
+"00000002.xhp\n"
+"par_id3155577\n"
+"2\n"
"help.text"
-msgid "Cut"
-msgstr "Muri"
+msgid "If you are a newcomer to the Internet, you will be confronted with unfamiliar terms: browser, bookmark, e-mail, homepage, search engine, and many others. To make your first steps easier, this glossary explains some of the more important terminology you may find in the Internet, intranet, mail and news."
+msgstr "Yoo ati Intarneetiidhaaf haaraa taate, jechootni hin beekne si mudatu: sakata'aa, toorbarruu, ergaa-e, manata saphaphuu, mala barbaadaa, fi kan biroos. Ejattoo kee jalqabaa salphisuuf, jibsoon kun jechoota baay'ee barbaachisan gariin kan intarneetii, intraaneetii, ergaa fi oduuwwan ibsa."
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3153383\n"
-"46\n"
+"00000002.xhp\n"
+"hd_id3153146\n"
+"36\n"
"help.text"
-msgid "Cuts out the selected object and stores it on the clipboard. The object can be reinserted from the clipboard by using <emph>Paste</emph>."
-msgstr "Wanta filatame muree baasuun gabatee muraa irratti kuusa. Gabatee muraa <emph>Maxxansi</emph> fayyadamuun wanti irra deebi'ame saagamuu danda'a."
+msgid "Frames"
+msgstr "Goodayyaalee"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3156069\n"
+"00000002.xhp\n"
+"par_id3157909\n"
+"37\n"
+"help.text"
+msgid "Frames are useful for designing the layout of <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> pages. $[officename] uses floating frames into which you can place objects such as graphics, movie files and sound. The context menu of a frame shows the options for restoring or editing frame contents. Some of these commands are also listed in <emph>Edit - Object</emph> when the frame is selected."
+msgstr "sGodayyaawwan teessoo <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> saxaxuuf fayyadu. $[officename] godayyaawwan bololi'aa kan ati wantoota akka saxaatoo, faayiloota fiilmii fi sagalee keessa keessu fayyadama. Baafatni halqaraa godayyaa dirqaalee haroomsuu yookaan gulaaluu godayyaa baafataa mul'isa. Yeroo godayyan filamu gariin ajajootaa <emph>Gulaaluu - Wanta</emph> keessatti tarrreeffamu."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3147077\n"
+"43\n"
+"help.text"
+msgid "FTP"
+msgstr "FTP"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3147335\n"
+"44\n"
+"help.text"
+msgid "FTP stands for File Transfer Protocol and is the standard transfer protocol for files in the Internet. An FTP server is a program on a computer connected to the Internet which stores files to be transmitted with the aid of FTP. While FTP is responsible for transmitting and downloading Internet files, <link href=\"text/shared/00/00000002.xhp#http\" name=\"HTTP\">HTTP</link> (Hypertext Transfer Protocol) provides the connection setup and data transfer between WWW servers and clients."
+msgstr "FTPiin gabaajee Aaloo Dabarsa Faayilii bakka bu'udha akkasumas faayiloota Intarneetii keessa jiraniif dabarsa aaloo durtiiti. Kaadimaan FTP sagantaa koompitara Intarneetiitti wal qabatee kan faayiloota gargaarsa FTP dhaan tamsa'an kuusu dha. Yeroo FTPiin faayiloota Intarneetii tamsaasuu fi gad naquuf itti gaafatamummaa qabaatu, <link href=\"text/shared/00/00000002.xhp#http\" name=\"HTTP\">HTTP</link> (Aaloo Dabarsaa Hypertext)iin qindaa'ina waliindhaa fi dabarsa deetaa kaadimaa fi maamiloota WWW jidduu jiru kenna."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"bm_id3145609\n"
+"help.text"
+msgid "<bookmark_value>HTML; definition</bookmark_value>"
+msgstr "<bookmark_value>HTML; hiika</bookmark_value>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3145609\n"
+"56\n"
+"help.text"
+msgid "HTML"
+msgstr "HTML"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3161459\n"
+"57\n"
+"help.text"
+msgid "HTML (Hypertext Markup Language) is a document code language, which is used as the file format for WWW documents. It is derived from <link href=\"text/shared/00/00000002.xhp#sgml\" name=\"SGML\">SGML</link> and integrates text, graphics, videos and sound."
+msgstr "HTML (Hypertext Markup Language)iin afaan lakkaddaa galmeeti, akka dhangii faayilii galmeewwan WWW tti fayyada. <link href=\"text/shared/00/00000002.xhp#sgml\" name=\"SGML\">SGML</link> irraa fudhatame fi barruu saxaatoo, vidiiyoo fi sagalee walitti qaba."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3154346\n"
+"58\n"
+"help.text"
+msgid "If you want to type HTML commands directly, for example when doing exercises from one of the many available HTML books, remember that HTML pages are pure text files. Save your document under the document type <emph>Text </emph>and give it the file name extension .HTML. Be sure there are no umlauts or other special characters of the extended character set. If you want to re-open this file in $[officename] and edit the HTML code, you must load it with the file type <emph>Text</emph> and not with the file type <emph>Web pages</emph>."
+msgstr "Yoo ajajoota HTMLii kallattiin barreessuu barbaadde, fakkeenyaaf yeroo kitaaboolee HTML hedduu jiran keessaa tokkorratti yeroo dalagdu, akka fuulootni HTMLii faayiloota barruu qulqulluu ta'u isaanii yaadadhu. Galmee kee gosa galmee <emph>Barruu</emph>jalatti ol kaa'i itti aansuun dheertoo maqaa faayilii HTML kenniifii. Arfiiwwan adayyaa arfii dheertoo akka hin jirre mirkaneeffadhu. Faayilii kana $[officename] keessatti irra deebitee banuu fi lakaddaa HTMLii gulaaluu barbaadde, gosa faayilii <emph>Barruu</emph> waliin banuu qabda garuu gosa faayilii <emph>Fuula saphaphuu</emph> waliin banuu hin qabdu."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3153960\n"
+"244\n"
+"help.text"
+msgid "There are several references on the Internet providing an introduction to the HTML language."
+msgstr "Intarneetii irra wabiiwwan hedduun seensa afaan HTML kennan jiru."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3147423\n"
+"59\n"
+"help.text"
+msgid "HTTP"
+msgstr "HTTP"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3153379\n"
+"60\n"
+"help.text"
+msgid "The Hypertext Transfer Protocol is a record of transmission of WWW documents between WWW servers (hosts) and browsers (clients)."
+msgstr "Dabarsi Aaloo Hypertext kuusaa tamsaasa galmeewwan WWW kaadimaa (affeertoota) fi iyyaafatoota (maamiloota) WWW jidduuti."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"bm_id3149290\n"
+"help.text"
+msgid "<bookmark_value>hyperlinks; definition</bookmark_value>"
+msgstr "<bookmark_value>geessitoota; hiika</bookmark_value>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3149290\n"
+"61\n"
+"help.text"
+msgid "Hyperlink"
+msgstr "Geessituu"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3145420\n"
+"62\n"
+"help.text"
+msgid "Hyperlinks are cross-references, highlighted in text in various colors and activated by mouse-click. With the aid of hyperlinks, readers can jump to specific information within a document as well as to related information in other documents."
+msgstr "Geessitootni wabii qaxxaamuraati, halluuwwan adda addaatin shoolamu akkasumas cuqaasa hantuuteedhaan kakaafamu. Gargaarsa geessitootaa waliin, dubbiftootni galmee keessatti gara odeeffannoo barbaadamuutti akkasumas galmeewwan biroo keessatti oodeffannoo wal fakkaatutti darbuu danda'u."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3156281\n"
+"63\n"
+"help.text"
+msgid "In $[officename] you can assign hyperlinks to text as well as to graphics and text frames (see the Hyperlink Dialog icon on the Standard bar)."
+msgstr "$[officename] keessatti geessituu barruutti akkasumas saxaatootti fi godayyaa barruutti ramaduu dandeessa (Qaaqa Geessituu kabala Durtii irratti ilaali)."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"bm_id3152805\n"
+"help.text"
+msgid "<bookmark_value>ImageMap; definition</bookmark_value>"
+msgstr "<bookmark_value>Barruyyaa Fakkaattii; hiika</bookmark_value>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3152805\n"
+"64\n"
+"help.text"
+msgid "ImageMap"
+msgstr "Barruyyaa Fakkaattii"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3154685\n"
+"65\n"
+"help.text"
+msgid "An ImageMap is a reference-sensitive graphic or text frame. You can click on defined areas of the graphic or text frame to go to a target (<link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>), which is linked with the area. The reference areas, along with the linked URLs and corresponding text displayed when resting the mouse pointer on these areas, are defined in the <link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap Editor\">ImageMap Editor</link>."
+msgstr "Barruyyaa Fakkaattiin saxaatoo ykn godayyaa barruu wabii irratti hundaa'u dha. Naannoowwan saxaatoo qindaa'an ykn gara galteetti deemuuf godayyaa barruu (<link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>) naannoo waliin koronyate cuqaasuu dandeessa. Naannoowwan wabii URLootaa koronyatan fi barruuwwan walfakkaatan irratti yeroo hantuutee irra qubachhiiftu waliin argisiifaman, <link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap Editor\">Gulaalaa Barruyyaa Fakkaattii</link> qindaa'u."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3153178\n"
+"66\n"
+"help.text"
+msgid "There are two different types of ImageMaps. A Client Side ImageMap is evaluated on the client computer, which loaded the graphic from the Internet, while a Server Side ImageMap is evaluated on the server computer which provides the <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> page on the Internet. In server evaluation, clicking an ImageMap sends the relative coordinates of the cursor within the image to the server, and a dedicated program on the server responds. In the client evaluation, clicking a defined hotspot of the ImageMap activates the URL, as if it were a normal text link. The URL appears below the mouse pointer when passing across the ImageMap."
+msgstr "Gosootni Barruyyaa Fakkaattii lamatu jiru. BarruyyaanFakkaattii moggaa maamilaa kompitara maamilaa, kan saxaatoo Intarneetii irraa fe'atu, irratti madaalama garuu BarruyyaanFakkaattii moggaa kaadimaan jiru kompitara kaadimaa <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> fuula Intarneetii irratti kennurratti madaalama. Madaallii kaadimaa keessatti, barruyyaa fakkaattii cuqaasuun sadhaatoowwan walgitaa qaree fakkaattii keessa jiran gara kaadimaatti erga akkasumas sagantaan qophaa'e deebii kenna. Madaallii maamilaa keessatti, bakka ho'aa barruuyyaa fakkaattii qindeeffame cuqaasuun URLii akka geessaa barruu baratamootti kakaasa. Yeroo Barruuyyaa Fakkaattii keessaan darbu URLiin gajjalaa qaree hantuuteetti mul'ata."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3150740\n"
+"67\n"
+"help.text"
+msgid "As ImageMaps can be used in different ways, they can be stored in different formats."
+msgstr "Akkuma barruyyootni fakkaattii karaa hedduun fayyadan, karaa adda addaatin kuufamuu danda'u."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3146874\n"
"68\n"
"help.text"
-msgid "Paste"
-msgstr "Maxxansi"
+msgid "ImageMap Formats"
+msgstr "Dhangiilee Barruyyaa Fakkaattii"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3154896\n"
+"00000002.xhp\n"
+"par_id3145153\n"
"69\n"
"help.text"
-msgid "<ahelp hid=\"SID_EXPLORERCONTENT_PASTE\" visibility=\"visible\">Inserts the element that you moved to the clipboard into the document.</ahelp> This command can only be called if the contents of the clipboard can be inserted at the current cursor position."
-msgstr "<ahelp hid=\"SID_EXPLORERCONTENT_PASTE\" visibility=\"visible\">Wanta ati gabatee muraatti siqsite gara galmeetti saaga.</ahelp> Ajajni kun kan waamamuu danda'u, qubannoo qaree ammee irratti yoo qabeentotni gabatee muraa saagamuu danda'an qofa."
+msgid "ImageMaps are basically divided between those that are analyzed on the server (i. e. your Internet provider) and those analyzed on the web browser of the reader's computer."
+msgstr "BarruyyaanFakkaattii kaadimaa irratti kan madaalaman (dhiyeessaa Intarneetii kee) fi kan iyya'aa saphaphuu koompitara dubbisaa jidduutti hiramu."
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3149948\n"
+"00000002.xhp\n"
+"bm_id3152881\n"
+"help.text"
+msgid "<bookmark_value>Server Side ImageMap</bookmark_value>"
+msgstr "<bookmark_value>Barruyyaa Fakkaattii Moggaa Kaadimaan</bookmark_value>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3152881\n"
+"70\n"
+"help.text"
+msgid "Server Side ImageMaps"
+msgstr "BarruyyootaFakkaattii Moggaa Kaadimaa"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3153057\n"
+"71\n"
+"help.text"
+msgid "Server Side ImageMaps appear for the reader as a picture or frame on the page. Click on the ImageMap with the mouse, and the coordinates of the relative position are sent to the server. Aided by an extra program, the server then determines the next step to take. There are several incompatible methods to define this process, the two most common being:"
+msgstr "BarruyyaanFakkaattii gama kaadimaa dubbisaaf fuulicha irratti akka fakkii yookaan godayyaatti mul'atu. Barruyyaa Fakkaattii irratti hantuuteedhaan cuqaasi, walgitoonni qubannoo sadhaatawaa gara kaadimaatti ergamu. Sagantaa dabalataan gargaaramuun, kaadimaan ejattoo itti aanee fudhatu murteessa. Malootni wal hin gitne hedduun hojii kana qindeessuuf gargaaru, kannneen keessaa malootni beekamoon lamaan:"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3147502\n"
+"72\n"
+"help.text"
+msgid "W3C (CERN) HTTP Server (Format type: MAP - CERN)"
+msgstr "Kaadimaa W3C (CERN) HTTP (Gosa Dhangii: MAP - CERN)"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3154011\n"
+"73\n"
+"help.text"
+msgid "NCSA HTTP Server (Format type: MAP - NCSA)"
+msgstr "Kaadimaa NCSA HTTP (Gosa dhangii: MAP - NCSA)"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3149483\n"
+"74\n"
+"help.text"
+msgid "$[officename] creates ImageMaps for both methods. Select the format from the <emph>File type </emph>list in the <emph>Save As </emph>dialog in the <emph>ImageMap Editor</emph>. Separate Map Files are created which you must upload to the server. You will need to ask your provider or network administrator which type of ImageMaps are supported by the server and how to access the evaluation program."
+msgstr "$[officename]iin maloota lamaaniif Barruyyaa Fakkaattii uuma. <emph>Gosa faayilii </emph>tarree <emph>Akka olkaa'i </emph>qaaqa <emph>Gulaalaa Barruyyaa Fakkaattii</emph> keessaa dhangii filadhu. Faayilootni barruuyyaa qoftii kan ati gara kaadimaatti olfe'uu qabdu uumamu. Dhiyeessaa yookaan bulchaa cimdaa kee gosa barruyyaa fakkaattii kaadimaan akka deeggaramanii fi akkaataa itti sagantaa madaallii bira gahuu dandeessu gaafachuun sirraa eegama."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"bm_id3152418\n"
+"help.text"
+msgid "<bookmark_value>Client Side ImageMap</bookmark_value>"
+msgstr "<bookmark_value>Barruyyaa Fakkaattii Moggaa Kaadimaan</bookmark_value>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3152418\n"
+"75\n"
+"help.text"
+msgid "Client Side ImageMap"
+msgstr "Barruuyyaa Fakkaattii Gama Maamilaa"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3151290\n"
"76\n"
"help.text"
-msgid "Insert"
-msgstr "Saagi"
+msgid "The area of the picture or frame where the reader can click is indicated by the appearance of the linked <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> when the mouse passes over the area. The ImageMap is stored in a layer below the picture and contains information about the referenced regions. The only disadvantage of Client Side ImageMaps is that older Web browsers cannot read them; a disadvantage that will, however, resolve itself in time."
+msgstr "Naannoon fakkaattii yookaan godayyaa iddoo dubbisaan irratti cuqaasuu danda'u yeroo hantuuteen naannicha irra darbu mul'annaa koronyateen <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> agarsiifama. Barruyyi Fakkaattii baqaana gadii fakkaattii jalatti kuufama fi odeffannoo waa'ee bakkeewwan murtaa'aa wabeeffamanii qabata. Miidhaan qoftii barruyyaa fakkaattii moggaa kaadimaa iyya'ootni saphaaphuu mofaa isa dubbisuu hin danda'an; haata'u malee, miidhaan kun ofumaan yeroon hiikama."
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3147588\n"
+"00000002.xhp\n"
+"par_id3149664\n"
"77\n"
"help.text"
-msgid "Opens a submenu in the Gallery where you can choose between <emph>Copy</emph> and <emph>Link</emph>. The selected Gallery object is either copied into the current document or a link is created."
-msgstr "Baafata xiqqaa Kuusfaayaa keessatti bana iddoo ati itti <emph>Gargalchi</emph> fi <emph>Geessituu</emph> keessaa filattutti jechuu dha. Wanti kuusfaayaa filatame gara galmee ammeetti gargalchama yookaan geessituun ni uumama."
+msgid "When saving the ImageMap, select the file type <emph>SIP - StarView ImageMap</emph>. This saves the ImageMap directly in a format which can be applied to every active picture or frame in your document. However, if you just want to use the ImageMap on the current picture or text frame, you do not have to save it in any special format. After defining the regions, simply click <emph>Apply</emph>. Nothing more is necessary. Client Side ImageMaps saved in <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> format are inserted directly into the page in HTML code."
+msgstr "Barruyyi Fakkaattii yeroo ol kaa'amu, gosa faayilii <emph>SIP - Barruyyaa Fakkaattii mul'annoo gaarii</emph> filadhu. Kun Barruyyaa Fakkaattii kallattiin dhangii fakkaattiiwwan yookaan godayyaa galmee kee keessatti kaka'anii jiran irratti fayyadame ol kaa'a. Haa ta'u malee, yoo fakkaattii yookaan godayyaa barruu irratti Barruyyaa Fakkaattii fayyadamuu barbaadde, dhangii adda ta'een olkaa'uun sirraa hin eegamu. Erga bakkeewwan murtaa'aa qindeessiteen booda, salphaadhumatti <emph>Fayyadami</emph> cuqaasi. Kanaan olitti wanti barbaachisu hin jiru. Barruyyi Fakkaattii moggaa maamilaa dhangii<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> dhaan kuufame kallattiin gara lakkaddaa HTMLtti saagama."
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3146130\n"
-"78\n"
+"00000002.xhp\n"
+"bm_id3159125\n"
"help.text"
-msgid "If you have selected an object in your document, then a new insertion will replace the selected object."
-msgstr "Yoo galmee kee keessaa wanta filatteetta ta'e, saagamni haaraan wanta filatame bakka bu'a."
+msgid "<bookmark_value>Java; definition</bookmark_value>"
+msgstr "<bookmark_value>Jaavaa; hiika</bookmark_value>"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3145829\n"
-"79\n"
+"00000002.xhp\n"
+"hd_id3159125\n"
+"92\n"
"help.text"
-msgid "Background"
-msgstr "Duubbee"
+msgid "Java"
+msgstr "Jaavaa"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3149180\n"
-"80\n"
+"00000002.xhp\n"
+"par_id3153188\n"
+"93\n"
"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_MN_BACKGROUND\" visibility=\"visible\">Inserts the selected picture as a background graphic.</ahelp> Use the submenu commands <emph>Page</emph> or <emph>Paragraph</emph> to define whether the graphic should cover the entire page or only the current paragraph."
-msgstr "<ahelp hid=\"HID_GALLERY_MN_BACKGROUND\" visibility=\"visible\">Fakkaattii filatame akka saxaatoo duubbeetti saaga.</ahelp> Akka saxaatoon fuula guutuu yookaan keewwata ammee qofa haguuguu qabu qindeessuuf, ajaja baafata xiqqaa <emph>Fuula</emph> ykn <emph>Keewwata</emph> fayyadami."
+msgid "The Java programming language is a platform independent programming language that is especially suited for use in the Internet. Web pages and applications programmed with Java class files can be used on all modern operating systems. Programs using Java programming language are usually developed in a Java development environment and then compiled to a \"byte code\"."
+msgstr "Afaan saganteessa Jaavaa hujeffannoo ofdanda'aa afaan saganteessa Maaykiroosiyistamii Saan dagaage dha, Inc. (http://www.sun.com) innis Intarneetiif fayyadamuuf kan mijatedha. Fuulootni saphaphuu fi fayyadamaa faayiloota kutaa Jaavaatin saganteeffaman sirnoota dalagaa hamayyaa mara irratti fayyadu. Sagantaaleen afaan saganteessa Jaavaa fayyadaman yeroo hunda qeeyyaa dagaagsa Jaavaa keessatti dagaagu fi itti aansuun \"lakkaddaa baayitii\" keessatti rogeeffamu."
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3153049\n"
-"87\n"
+"00000002.xhp\n"
+"bm_id3159153\n"
"help.text"
-msgid "Copy"
-msgstr "Garagalchi"
+msgid "<bookmark_value>plug-ins; definition</bookmark_value>"
+msgstr "<bookmark_value>itti-suuqamtoota; hiika</bookmark_value>"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3150774\n"
-"88\n"
+"00000002.xhp\n"
+"hd_id3159153\n"
+"107\n"
"help.text"
-msgid "<ahelp hid=\"SID_EXPLORERCONTENT_COPY\" visibility=\"visible\">Copies the selected element to the clipboard.</ahelp>"
-msgstr "<ahelp hid=\"SID_EXPLORERCONTENT_COPY\" visibility=\"visible\">Maalimaa filatame gara barruu xiqqaatti gargalchuuf.</ahelp>"
+msgid "Plug-In"
+msgstr "Itti Suuqii"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3148620\n"
-"91\n"
+"00000002.xhp\n"
+"par_id3154127\n"
+"109\n"
"help.text"
-msgid "Delete"
-msgstr "Haqi"
+msgid "Extensions providing additional functionality in Web browsers are referred to as Plug-Ins."
+msgstr "Dheeratoonni iyya'aa saphaphuu keessatti dalageeffamuu dabalataa kennan itti-suuqamtoota jedhamu."
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3154317\n"
-"92\n"
+"00000002.xhp\n"
+"par_id3147484\n"
+"108\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Deletes the current selection. If multiple objects are selected, all will be deleted. In most cases, a <link href=\"text/shared/01/03150100.xhp\" name=\"security query\">security query</link> appears before objects are deleted.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Filannoo ammee haqa. Yoo wantootni hedduun filataman, hundi isaanii ni haqamu. Haaloota hedduu keessatti, <link href=\"text/shared/01/03150100.xhp\" name=\"security query\">gaafata ittisaa</link> osoo wantooni hin haqamiin mul'ata.</ahelp>"
+msgid "A Plug-In is a term used in various contexts:"
+msgstr "Itti Suuqiin halqarawwan hedduu keessatti fayyada:"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3155941\n"
-"190\n"
+"00000002.xhp\n"
+"hd_id3168608\n"
+"172\n"
"help.text"
-msgid "The object is either physically deleted from the data carrier or the object display is removed, depending on context."
-msgstr "Wanti baattuu deetaa irraa qaamaan haqameera yookaan halqara irratti hundaa'uun agarsiisni wantaa haqameera."
+msgid "Plug-Ins in $[officename]"
+msgstr "Itti Suuqamtoota $[officename]keessaa"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3150506\n"
-"192\n"
+"00000002.xhp\n"
+"par_id3149910\n"
+"111\n"
"help.text"
-msgid "If you choose <emph>Delete</emph> while in the Gallery, the entry will be deleted from the Gallery, but the file itself will remain untouched."
-msgstr "Kuusfaayaa keessa yeroo jirutti <emph>Haqi</emph> yoo filatte, galfatni kuusfaayaa keessaa haqama, garuu faayilichi mataansaa osoo hin tuqamiin tura."
+msgid "You will notice in $[officename] that the <emph>Formatting</emph> Bar changes after certain operations. For example, if you insert a formula into your text document, you see icons for editing the formula, in fact the same icons you see in formula documents. In this sense, we refer to the formula as a plug-in within the text document."
+msgstr "$[officename] keessatti kaballi <emph>Dhangeessuu</emph> hojiwwan muraasa booda akka jijjiiramu yaadachuu qabda. Fakkeenyaaf, yoo foormulaa galmee barruu keetti saagade, foormulicha gulaaluuf sajoowwan agarta, haa ta'u malee sajoowwan walfakkaatan galmeewwan foormulaaa keessatti agarta. Haala kanaan, galmee barruu keessatti akka itti suuqiitti gara foormulichaatti wabeeffanna."
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3150443\n"
-"136\n"
+"00000002.xhp\n"
+"hd_id3148387\n"
+"177\n"
"help.text"
-msgid "Open"
-msgstr "Bani"
+msgid "Using Plug-Ins to extend your programs"
+msgstr "Sagataawwan kee bal'isuuf Itti-Suuqamtootatti fayyadamuu"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3149149\n"
-"137\n"
+"00000002.xhp\n"
+"par_id3156737\n"
+"114\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_OPEN_OBJECT\">Use the<emph> Open </emph>command to open the selected object in a new task.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_OPEN_OBJECT\"> Wanta filatame hojii haaraa irratti banuuf<emph> Bani </emph>fayyadami.</ahelp>"
+msgid "Plug-ins, generally speaking, are software additions to particular applications which provide enhanced functionality. Often import and export filters for various file formats are stored as plug-ins in a plug-in directory."
+msgstr "Itti-Suuqamtootni, dubbii walii galaan, ida'amtoota mosajjii fayyadama murtaa'ee hojjatamtummaa guddate kennani dha. Gingilchootni alaaguu fi alerguu dhangiilee faayiloota hedduuf galeeloo itti suuqii keessatti akka itti suuqamtootaatti kuufamu."
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3149732\n"
-"165\n"
+"00000002.xhp\n"
+"par_id3149958\n"
+"115\n"
"help.text"
-msgid "Rename"
-msgstr "Maqaa jijjiiri"
+msgid "Netscape web browser extensions produced by Netscape Communication Corporation are also called plug-ins. These are external programs mainly taken from the multimedia field and which communicate with the browser through standardized interfaces. These plug-ins can be linked to $[officename] documents."
+msgstr "Dheertootni iyya'aa saphaphuu Neetiskaappii Xindoomina Walqunnamtii Neetiskaappii keessatti oomishaman itti-suuqamtoota jedhamu. Kunniin sagantoota alaantoo naannoo sabqunnamtii baay'ee irraa fudhatamanii fi kan iyya'aa walqunnama waalteeffamaa waliin wal qunnamanidha. Itti suuqamtoonni kun galmeewwan $[officename]waliin koronyatamu danda'u."
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3149797\n"
-"166\n"
+"00000002.xhp\n"
+"par_id3149420\n"
+"179\n"
"help.text"
-msgid "<ahelp hid=\"SID_EXPLORERCONTENT_RENAME\" visibility=\"visible\">Enables a selected object to be renamed.</ahelp> After selecting <emph>Rename</emph> the name is selected and a new one can be entered directly. Use the arrow keys to set the cursor at the beginning or end of the name to delete or add to part of the name or to reposition the cursor."
-msgstr "<ahelp hid=\"SID_EXPLORERCONTENT_RENAME\" visibility=\"visible\"> Wanta filatame maqaa jijjiiruuf dandeessisi.</ahelp> Filannoon booda <emph>Maqaa Jijjiiri</emph> maqichii filame wanti haaraa kallchaan galfamuu danda'a. Qaree jalqaba ykn dhuma maqaa irratti qindeessuun haquuf yookaan gara qaama maqichaatti ida'uuf yookaan qaree bakka biraa qubachiisuuf furtuulee xiyyaa fayyadami."
+msgid "Any Netscape plug-ins (32 bit) installed on your system are automatically recognized by $[officename]."
+msgstr "Neetiskaappiin Itti-suqamtoota (biitii 32) sirna kee irratti ijaaraman kamiyyuu [officename]dhaan ofumaan fudhatamu."
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3155434\n"
-"317\n"
+"00000002.xhp\n"
+"hd_id3145647\n"
+"127\n"
"help.text"
-msgid "Update"
-msgstr "Haaromsi"
+msgid "Proxy"
+msgstr "Walsimsiisaa"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3154898\n"
-"318\n"
+"00000002.xhp\n"
+"par_id3148455\n"
+"128\n"
"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_ACTUALIZE\" visibility=\"visible\">Updates the view in the window or in the selected object.</ahelp>"
-msgstr "<ahelp hid=\"HID_GALLERY_ACTUALIZE\" visibility=\"visible\">Mul'annoo foddaa keessaa yookaan wanta filatame keessatti haroomsa.</ahelp>"
+msgid "A proxy is a computer in the network acting as a kind of clipboard for data transfer. Whenever you access the Internet from a company network and request a Web page that has already been read by a colleague, the proxy will be able to display the page much quicker, as long as it's still in the memory. All that has to be checked in this case is that the page stored in the proxy is the latest version. If this is the case, the page won't have to be downloaded from the much slower Internet but can be loaded directly from the proxy."
+msgstr "Walsimsiisaan kompitara cimdaa keessatti dabarsa deetaaf akka gabatee muraatti hojjeta. Yeroo cimdaa kubaaniyaa irraa Intarneetii bira gahuu barbaaddu akkasumas fuula saphaphuu nama biraati dubbifameeru gaafattu, hanga kuufannoo keessa jirutti walsimsiisichi saffisa baay'ee cimaa ta'een fuulicha agarsiisuu danda'uu qaba. Fuulli kuufame kun baay'ee foyya'aa ta'uunsaa mirkaneeffamuu qaba. Yoo kun sababa ta'e, fuulichi Intarneetii saffisni isaa baay'ee gad bu'aa ta'e irraa naqamuu hin qabu garuu walsimsiisaa irra kallattiidhaan fe'amuu danda'a."
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3147573\n"
-"172\n"
+"00000002.xhp\n"
+"bm_id3154729\n"
"help.text"
-msgid "Preview"
-msgstr "Durargii"
+msgid "<bookmark_value>SGML; definition</bookmark_value>"
+msgstr "<bookmark_value>SGML; hiika</bookmark_value>"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3155583\n"
-"173\n"
+"00000002.xhp\n"
+"hd_id3154729\n"
+"229\n"
"help.text"
-msgid "The element selected is displayed in the Gallery at maximum size. Double-click the preview to switch back to the normal Gallery view."
-msgstr "Maalimaan filatame Kuusfaayaa keessatti hammamtaa guddaadhaan mul'ifama. Gara mul'annoo kuusfaayaa baratameetti deebisuuf durargii lama cuqaasi."
+msgid "SGML"
+msgstr "SGML"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3157809\n"
-"319\n"
+"00000002.xhp\n"
+"par_id3147330\n"
+"230\n"
"help.text"
-msgid "Create Link"
-msgstr "Geessituu Uumi"
+msgid "SGML stands for \"Standard Generalized Markup Language\". SGML is based on the idea that documents have structural and other semantic elements that can be described without reference to how such elements should be displayed. The actual display of such a document may vary, depending on the output medium and style preferences. In structured texts, SGML not only defines structures (in the DTD = Document Type Definition) but also ensures they are consistently used."
+msgstr "SGMLiin \"Standard Generalized Markup Language\" dhaaf dhaabbata. SGMLiin yaada galmeewwan caasefamuu fi maalimoota maaljech qooqaa wabii malee maalimootni kun akkaataa itti mul'atan ibsa. Gidduugaleessa bahii fi haalata fedhii irratti hundaa'uun agarsiisni dhugaa galmee akkanaa adda addaa ta'uu danda'a. Barruwwan Caaseeffaman keessatti, SGMLiin caasaa qofa hin qindeessu (DTD = Qindeessa Gosa Galmee keessatti) garuu dabalataanis ittifufinsaan akka fayyadan mirkaneessa."
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3153716\n"
-"320\n"
+"00000002.xhp\n"
+"par_id3148747\n"
+"231\n"
"help.text"
-msgid "This command can be activated if an object is selected. A link named \"Link to xxx\" (<emph>xxx</emph> represents the name of the object) will be created directly in the same directory as that of the selected object."
-msgstr "Yoo wanti filatame, ajajni kun kakaafamuu danda'a. Geessituun maqaansaa \"Gara xxx tti geessi\" (<emph>xxx</emph> maqaa wantaa bakka bu'a) akka wanta filatameetti galeeloo walfakkaatu keessatti uumama."
+msgid "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> is a specialized application of SGML. This means that most Web browsers support only a limited range of SGML standards and that almost all SGML-enabled systems can produce attractive HTML pages."
+msgstr "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link>iin fayyadama adayyaa SGML ti. Kana jechuun iyya'ootni saphaphuu garri caalaan hangii durtiiwwan SGML murtaawaa qofa deeggaru akkasumas sirnootni SGML dandeessifaman xiqqoo irraa kan hafe hundi isaanii fuuloota SGMLii midhagaa ta'an oomishuu danda'u."
-#: 00000200.xhp
-#, fuzzy
+#: 00000002.xhp
msgctxt ""
-"00000200.xhp\n"
+"00000002.xhp\n"
+"bm_id3153950\n"
+"help.text"
+msgid "<bookmark_value>search engines; definition</bookmark_value>"
+msgstr "<bookmark_value>maloota barbaadaa; hiika</bookmark_value>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3153950\n"
+"138\n"
+"help.text"
+msgid "Search Engines"
+msgstr "Maloota Barbaadaa"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3157965\n"
+"139\n"
+"help.text"
+msgid "A search engine is a service in the Internet based on a software program used to explore a vast amount of information using key words."
+msgstr "Malli barbaadaa tajaajila Intarneetii mosajjii sagantaa irratti hundaa'ee jefuroota fayyadamuun odeeffannoon bal'aa itti aloolfamu dha."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"bm_id3150751\n"
+"help.text"
+msgid "<bookmark_value>tags; definition</bookmark_value>"
+msgstr "<bookmark_value>iyyaatoota; hiika</bookmark_value>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3150751\n"
+"141\n"
+"help.text"
+msgid "Tags"
+msgstr "Iyyaatoota"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3156360\n"
+"142\n"
+"help.text"
+msgid "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> pages contain certain structural and formatting instructions called tags. Tags are code words enclosed by brackets in the document description language HTML. Many tags contain text or hyperlink references between the opening and closing brackets. For example, titles are marked by the tags <h1> at the beginning and </h1> at the end of the title. Some tags only appear on their own such as <br> for a line break or <img ...> to link a graphic."
+msgstr "Fuulootni <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> qajeelfamoota caasaa fi dhangeessuu iyyatoota jedhaman of keessatti qabu. Afaan ibsa galmee HTML keessatti iyyatootni jechoota lakkaddaa sadallaa keesa kaawwamani dha. Iyyatootni hedduun barruu yookaan wabiiwwan geessituu sadallaa banuu fi cufuu jidduu jiru of keessatti qabu. Fakkeenyaaf, matadureewwan iyyatoota <h1> jalqabaa fi </h1> xumura mataduree irratti mallatteeffama. Iyyatootni gariin kan mataa isaanii irratti mul'atu kan akka <br> cita sararaaf yookaan <img ...> saxaatoo geessuuf."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"bm_id3153766\n"
+"help.text"
+msgid "<bookmark_value>URL; definition</bookmark_value>"
+msgstr "<bookmark_value>URL; hiika</bookmark_value>"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3153766\n"
+"145\n"
+"help.text"
+msgid "URL"
+msgstr "URL"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3152931\n"
+"146\n"
+"help.text"
+msgid "The Uniform Resource Locator (URL) displays the address of a document or a server in the Internet. The general structure of a URL varies according to type and is generally in the form Service://Hostname:Port/Path/Page#Mark although not all elements are always required. An URL can be a FTP address, a WWW (HTTP) address, a file address or an e-mail address."
+msgstr "Iddeessaa Qabeenyaa Walfakkaataan (URL) Intarneetii irratti teessoo galmee ykn kaadimaa agarsiisa. Caasaan waliigalaa URLii akka gosa isaa adda addaa ta'uu danda'a fi waluumaa galatti unka Service://Hostname:Port/Path/Page#Mark osuma maalimootni gariin qofti barbaachisan illee jechuu dha. URLiin teessoo FTP, teessoo WWW (HTTP), teessoo faayilii yookaan teessoo ergaa-e ta'uu danda'a."
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"tit\n"
"help.text"
-msgid "Graphics Export Options"
-msgstr "Dirqala Alerguu EPS"
+msgid "Conversion of measurement units"
+msgstr "Jijjiirraa safatuuwwanii"
-#: 00000200.xhp
-#, fuzzy
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"hd_id3150127\n"
+"00000003.xhp\n"
+"bm_id3147543\n"
"help.text"
-msgid "Graphics Export Options"
-msgstr "Dirqala Alerguu EPS"
+msgid "<bookmark_value>measurement units; converting</bookmark_value><bookmark_value>units; converting</bookmark_value><bookmark_value>converting;metrics</bookmark_value><bookmark_value>metrics;converting</bookmark_value>"
+msgstr "<bookmark_value>safartoowwan; jijjiiruu</bookmark_value><bookmark_value>safartuuwwan; jijjiiruu</bookmark_value><bookmark_value>jijjiiruu;safartuuwwan</bookmark_value><bookmark_value>safartuuwwan;jijjiiruu</bookmark_value>"
-#: 00000200.xhp
-#, fuzzy
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id3160463\n"
+"00000003.xhp\n"
+"hd_id3147543\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"visible\">Defines graphics export options.</ahelp>"
-msgstr "<ahelp hid=\"\" visibility=\"visible\">Mul'ina kaardiiwwan daldalaa kee qindeessi.</ahelp>"
+msgid "Conversion of measurement units"
+msgstr "Jijjiirraa safatuuwwanii"
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id1\n"
+"00000003.xhp\n"
+"par_idN1069F\n"
"help.text"
-msgid "When you export graphical elements to a file, you can select the file type. For most supported file types a dialog opens where you can setup export options."
-msgstr ""
+msgid "In some dialogs, you can enter measurement values into input boxes. If you just enter a numerical value, the default measurement unit is used."
+msgstr "Qaaqawwan gariin keessatti, gatii safartootaa gara sanduuqa naqaatti galchuu dandeessa. Yoo gatii lakkoofsaa galchite, safartuun durtii fayyada."
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id2\n"
+"00000003.xhp\n"
+"par_idN106A2\n"
"help.text"
-msgid "The following file types do not show an options dialog: PWP, RAS, SVG, TIFF, XPM."
+msgid "You define the default measurement unit for Writer text documents in the dialog that you get by choosing <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer - General</emph>. For Calc, Draw, and Impress, you open a document of that type and then open the appropriate <emph>General</emph> page as for Writer."
msgstr ""
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id3\n"
+"00000003.xhp\n"
+"par_idN106AD\n"
"help.text"
-msgid "The other file types show options dialogs where you can set the width and height of the exported image."
-msgstr ""
+msgid "In input boxes for length units you can also add the unit abbreviation according to the following list:"
+msgstr "Sanduuqoota naqaa keessatti dheerina tokkoof akka tarree armaan gadiitti safartuu ida'uu dandeessa:"
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id4\n"
+"00000003.xhp\n"
+"par_idN106BA\n"
"help.text"
-msgid "Depending on the file type, you can specify some more options. Press Shift+F1 and hover over the control to see an extended help text."
-msgstr ""
+msgid "Unit abbreviation"
+msgstr "Gabaabbataa qeenxee"
-#: 00000200.xhp
-#, fuzzy
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id388\n"
+"00000003.xhp\n"
+"par_idN106C0\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies the measurement units.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gatii irra deddeebi'e maxxansuuf ifteessa.</ahelp>"
+msgid "Explanation"
+msgstr "Ibsa"
-#: 00000200.xhp
-#, fuzzy
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"hd_id3151330\n"
+"00000003.xhp\n"
+"par_idN106C7\n"
"help.text"
-msgid "Width"
-msgstr "#-#-#-#-# autopi.po (PACKAGE VERSION) #-#-#-#-#\\nYabbina\\n#-#-#-#-# shared.po (PACKAGE VERSION) #-#-#-#-#\\nBal`ina"
+msgid "mm"
+msgstr "mm"
-#: 00000200.xhp
-#, fuzzy
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id3154561\n"
+"00000003.xhp\n"
+"par_idN106CD\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"visible\">Specifies the width.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gatii irra deddeebi'e maxxansuuf ifteessa.</ahelp>"
+msgid "Millimeter"
+msgstr "Miilimeetira"
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"hd_id3156027\n"
+"00000003.xhp\n"
+"par_idN106D4\n"
"help.text"
-msgid "Height"
-msgstr "Hojjaa"
+msgid "cm"
+msgstr "sm"
-#: 00000200.xhp
-#, fuzzy
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id3147226\n"
+"00000003.xhp\n"
+"par_idN106DA\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"visible\">Specifies the height.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gatii irra deddeebi'e maxxansuuf ifteessa.</ahelp>"
+msgid "Centimeter"
+msgstr "Seentiimeetira"
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"hd_id3150944\n"
+"00000003.xhp\n"
+"par_idN106E1\n"
"help.text"
-msgid "Resolution"
-msgstr "Qulqullina"
+msgid "in or \""
+msgstr "keessa ykn \""
-#: 00000200.xhp
-#, fuzzy
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id3150129\n"
+"00000003.xhp\n"
+"par_idN106E7\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the image resolution. Select the measurement units from the list box.</ahelp>"
-msgstr "<ahelp hid=\".\">Nagaa gaafacha hammata. Nagaa gafaacha tarree sanduuqicha keessaa fili.</ahelp>"
+msgid "Inch"
+msgstr "Inchii"
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"hd_id3143534\n"
+"00000003.xhp\n"
+"par_idN106EE\n"
"help.text"
-msgid "More options"
-msgstr "Dirqala Dabalaa"
+msgid "pi"
+msgstr "paayii"
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id10\n"
+"00000003.xhp\n"
+"par_idN106F4\n"
"help.text"
-msgid "For JPEG files you can set the color depth and the quality."
-msgstr ""
+msgid "Pica"
+msgstr "Kutaasa"
-#: 00000200.xhp
-#, fuzzy
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id435923952\n"
+"00000003.xhp\n"
+"par_idN106FB\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the color depth from 8 bit grayscale or 24 bit true color.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tartiiba tarreeffamaa filadhu.</ahelp>"
+msgid "pt"
+msgstr "pt"
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id355152952\n"
+"00000003.xhp\n"
+"par_idN10701\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the compression for the export. A high compression means a smaller, but slower to load image.</ahelp>"
-msgstr ""
+msgid "Point"
+msgstr "Tuqaa"
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id355152953\n"
+"00000003.xhp\n"
+"par_idN10704\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the quality for the export. Choose from a low quality with minimal file size, up to a high quality and big file size</ahelp>"
-msgstr ""
+msgid "The following formulas convert the units:"
+msgstr "Foormulootni kana gadii safatuuwwan jijjiiru:"
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id11\n"
+"00000003.xhp\n"
+"par_idN1070A\n"
"help.text"
-msgid "For BMP files you can set the compression and the RLE encoding."
-msgstr ""
+msgid "1 cm = 10 mm"
+msgstr "1 cm = 10 mm"
-#: 00000200.xhp
-#, fuzzy
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id312346798\n"
+"00000003.xhp\n"
+"par_idN1070E\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies RLE (Run Length Encoding) to the BMP graphics.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Saxaatoo keessaa sakattaa,uuf sajoo kana filadhu.</ahelp>"
+msgid "1 inch = 2.54 cm"
+msgstr "1 incii = 2.54 cm"
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id12\n"
+"00000003.xhp\n"
+"par_idN10712\n"
"help.text"
-msgid "For PBM, PGM, and PPM files you can set the encoding."
-msgstr ""
+msgid "1 inch = 6 Pica = 72 Point"
+msgstr "1 inchii = 6 kutaasa = Akeeki 72"
-#: 00000200.xhp
-#, fuzzy
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id344441\n"
+"00000003.xhp\n"
+"par_idN10715\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in binary format. The resulting file is smaller than a text file.</ahelp>"
-msgstr "<ahelp hid=\".\">Faayilii dhangii lameeetiin alergi. Faayiliin bu'aa irra xiqqaa barruu faayilii (ASCII) ti.</ahelp>"
+msgid "For example, in a text document, open <emph>Format - Paragraph - Indents & Spacing</emph>. To indent the current paragraph by one inch, enter <item type=\"literal\">1 in</item> or <item type=\"literal\">1\"</item> into the \"Before text\" box. To indent the paragraph by 1 cm, enter <item type=\"literal\">1 cm</item> into the input box."
+msgstr "Fakkeenyaaf, barruu galmee keessaa, <emph>Dhangii - Keewwata - Galumsoota & Addaan Fageenya</emph>bani. Keewwata ammee inchii tokkoon galchuuf, gara sanduuqa \"Barruu Dura\"<item type=\"literal\">1 in</item> ykn <item type=\"literal\">1\"</item> galchi. Keewwata 1cm raan galchuuf, gara sanduuqa naqaatti <item type=\"literal\">1 cm</item> galchi."
-#: 00000200.xhp
-#, fuzzy
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id3555783\n"
+"00000003.xhp\n"
+"par_idN1074C\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in ASCII text format. The resulting file is larger than a binary file.</ahelp>"
-msgstr "<ahelp hid=\".\">Faayilii dhangii barruu ASCII tiin alergi. Akaakuun faayilii kun irra gudda lameeti.</ahelp>"
+msgid "To input the maximum or minimum allowed value respectively, click the current value and then press the <item type=\"keycode\">Page Up</item> or <item type=\"keycode\">Page Down</item> key."
+msgstr "Gatii hayyamame Irraantoo fi gadee walduraa duubaan galchuuf, gatii ammee cuqaasi itti aansuudhaan furtuu <item type=\"keycode\">Fuul Olee</item> yookaan <item type=\"keycode\">Fuul Gadee</item> dhiibi."
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id13\n"
+"00000004.xhp\n"
+"tit\n"
"help.text"
-msgid "For PNG files you can set the compression and the interlaced mode."
-msgstr ""
+msgid "To access this command..."
+msgstr "Ajaja kana bira gahuuf..."
-#: 00000200.xhp
-#, fuzzy
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id35674840\n"
+"00000004.xhp\n"
+"hd_id3160447\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the graphic is to be saved in interlaced mode.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Duubbeen wanta filamee ifaa ykn opaque ta'uu isaa ifteessa.</ahelp>"
+msgid "<variable id=\"wie\">To access this command...</variable>"
+msgstr "<variable id=\"wie\">Ajaja kana bira gahuuf... </variable>"
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id14\n"
+"00000004.xhp\n"
+"par_id3147212\n"
+"47\n"
"help.text"
-msgid "For GIF files you can set the transparency and the interlaced mode."
+msgid "<variable id=\"related\"><emph>Related Topics</emph></variable>"
+msgstr "<variable id=\"related\"><emph>Matadureewwan Walfakkatan</emph></variable>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id56935339\n"
+"help.text"
+msgid "Enable or disable the Help Agent on <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - General</emph>."
msgstr ""
-#: 00000200.xhp
-#, fuzzy
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id31456456938\n"
+"00000004.xhp\n"
+"par_id3154689\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Color Replacer to set the transparent color in the picture.</ahelp>"
-msgstr "<ahelp hid=\"VCL:CHECKBOX:DLG_EXPORT_GIF:CBX_TRANSLUCENT\">Duubbee fakkii akka iftoomatti olkaa'uu keef ifteessa. Fakkoo GIFii keessatti wantoota qofatu mul'ata. Haalluu iftoomaa fakkii keessatti qindeessuuf coccobsaa agartuu fayyadami.</ahelp>"
+msgid "<image id=\"img_id3152427\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152427\">Icon</alt></image>"
+msgstr "<image id=\"img_id3152427\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152427\">Sajoo</alt></image>"
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id15\n"
+"00000004.xhp\n"
+"par_id3146067\n"
+"46\n"
"help.text"
-msgid "For EPS files you can set the preview, the color format, the compression, and the version."
-msgstr ""
+msgid "Font Color"
+msgstr "Halluu Bocquu"
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id3147779948\n"
+"00000004.xhp\n"
+"par_id3157898\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">You must print an EPS file with a PostScript printer. Other printers will only print the embedded preview.</caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Faayilii EPS maxxansa barruu boodatiin maxxansuu qabda. Maxxansaan biroo durargii irra ta'aa qofa maxxansa.</caseinline></switchinline>"
+msgid "<image id=\"img_id3149716\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149716\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149716\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149716\">Sajoo</alt></image>"
-#: 00000200.xhp
-#, fuzzy
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id993155271\n"
+"00000004.xhp\n"
+"par_id3149893\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether a preview image is exported in the TIFF format together with the actual PostScript file.</ahelp>"
-msgstr "<ahelp hid=\"GOODIES:CHECKBOX:DLG_EXPORT_EPS:CB_PREVIEW_TIFF\">Fakkuun durargii dhangii TIFF keessatti alergamuu fi dhiisuu faayilii barruu boodaa isa qabatamaa waliin ta'uu ibsa.</ahelp>"
+msgid "Font Color"
+msgstr "Halluu Bocquu"
-#: 00000200.xhp
-#, fuzzy
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id993144740\n"
-"30\n"
+"00000004.xhp\n"
+"par_id3149750\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether a monochrome preview graphic in EPSI format is exported together with the PostScript file. This format only contains printable characters from the 7-bit ASCII code.</ahelp>"
-msgstr "<ahelp hid=\"GOODIES:CHECKBOX:DLG_EXPORT_EPS:CB_PREVIEW_EPSI\">Durargiin monokiroomii saaxatoo dhangii EPSI keessatti barruu boodaa waliin alergamuuf dhiisuu ibsa.</ahelp> Dhangiin kun fungoo biitii-7 lakkadda ASCII irraa arfii maxxanfamaa qofa of keessaa qaba."
+msgid "<image id=\"img_id3146957\" src=\"cmd/sc_justifypara.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146957\">Icon</alt></image>"
+msgstr "<image id=\"img_id3146957\" src=\"cmd/sc_justifypara.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146957\">Sajoo</alt></image>"
-#: 00000200.xhp
-#, fuzzy
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id993150935\n"
+"00000004.xhp\n"
+"par_id3150693\n"
+"8\n"
+"help.text"
+msgid "Line spacing: 1"
+msgstr "Iddina sararaa: 1"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3145382\n"
+"help.text"
+msgid "<image id=\"img_id3163802\" src=\"cmd/sc_spacepara15.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163802\">Icon</alt></image>"
+msgstr "<image id=\"img_id3163802\" src=\"cmd/sc_spacepara15.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163802\">Sajoo</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3154173\n"
+"9\n"
+"help.text"
+msgid "Line spacing: 1.5"
+msgstr "Iddina sararaa: 1.5"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3150131\n"
+"help.text"
+msgid "<image id=\"img_id3153252\" src=\"cmd/sc_spacepara2.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153252\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153252\" src=\"cmd/sc_spacepara2.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153252\">Sajoo</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3152824\n"
+"10\n"
+"help.text"
+msgid "Line spacing: 2"
+msgstr "Iddina sararaa: 2"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3149820\n"
+"help.text"
+msgid "<image id=\"img_id3153126\" src=\"cmd/sc_superscript.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153126\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153126\" src=\"cmd/sc_superscript.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153126\">Sajoo</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3145121\n"
+"11\n"
+"help.text"
+msgid "Superscript"
+msgstr "Irrarfii"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3147077\n"
+"help.text"
+msgid "<image id=\"img_id3155135\" src=\"cmd/sc_subscript.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155135\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155135\" src=\"cmd/sc_subscript.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155135\">Sajoo</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3151385\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2.</ahelp>"
-msgstr "<ahelp hid=\"GOODIES:RADIOBUTTON:DLG_EXPORT_EPS:RB_LEVEL1\">Saaxatoon sadarkaa kanatti hin jiraatu. Dirqaala sadarkaa 1 <emph>filadhu</emph>yoo barruun booda maxxansaa keetii dandeetti sadarkaa 2 affeeruu baate.</ahelp>"
+msgid "Subscript"
+msgstr "Jalarfii"
-#: 00000200.xhp
-#, fuzzy
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id993159201\n"
-"14\n"
+"00000004.xhp\n"
+"par_id3148550\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics.</ahelp>"
-msgstr "<ahelp hid=\"GOODIES:RADIOBUTTON:DLG_EXPORT_EPS:RB_LEVEL2\">Dirqala <emph> Sadarkaa 2</emph>filadhu yoo bahaan mi'aa surxiqqoo halluun, fakkii dibduu saaxatoo fi cafaqoo saaxatoo deegare.</ahelp>"
+msgid "<image id=\"img_id3149294\" src=\"res/helpimg/feldurch.png\" width=\"0.9374inch\" height=\"0.2398inch\"><alt id=\"alt_id3149294\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149294\" src=\"res/helpimg/feldurch.png\" width=\"0.9374inch\" height=\"0.2398inch\"><alt id=\"alt_id3149294\">Sajoo</alt></image>"
-#: 00000200.xhp
-#, fuzzy
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id319947250\n"
+"00000004.xhp\n"
+"par_id3152772\n"
+"15\n"
+"help.text"
+msgid "Line Style"
+msgstr "Haalataa Sararaa"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3153379\n"
+"help.text"
+msgid "<image id=\"img_id3148401\" src=\"res/helpimg/feldcolo.png\" width=\"1.0417inch\" height=\"0.2398inch\"><alt id=\"alt_id3148401\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148401\" src=\"res/helpimg/feldcolo.png\" width=\"1.0417inch\" height=\"0.2398inch\"><alt id=\"alt_id3148401\">Sajoo</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3149290\n"
+"16\n"
+"help.text"
+msgid "Line Color"
+msgstr "Halluu Sararaa"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3156214\n"
+"help.text"
+msgid "<image id=\"img_id3149807\" src=\"res/helpimg/feldbrei.png\" width=\"0.6563inch\" height=\"0.2189inch\"><alt id=\"alt_id3149807\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149807\" src=\"res/helpimg/feldbrei.png\" width=\"0.6563inch\" height=\"0.2189inch\"><alt id=\"alt_id3149807\">Sajoo</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3163044\n"
+"17\n"
+"help.text"
+msgid "Line Width"
+msgstr "yabbina Sararaa"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3154154\n"
+"help.text"
+msgid "<image id=\"img_id3145152\" src=\"res/helpimg/swh00117.png\" width=\"2.0835inch\" height=\"0.2398inch\"><alt id=\"alt_id3145152\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145152\" src=\"res/helpimg/swh00117.png\" width=\"2.0835inch\" height=\"0.2398inch\"><alt id=\"alt_id3145152\">Sajoo</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3150650\n"
"18\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in color.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Lafoo taattoo dhangeessa.</ahelp>"
+msgid "Area Style / Filling"
+msgstr "Haalataa / Guutinsa Naannoo"
-#: 00000200.xhp
-#, fuzzy
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id993147088\n"
+"00000004.xhp\n"
+"par_id3153367\n"
+"help.text"
+msgid "<image id=\"img_id3147502\" src=\"cmd/sc_aligntop.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147502\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147502\" src=\"cmd/sc_aligntop.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147502\">Sajoo</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3148557\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in grayscale tones.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gatii giddu galeessaa sararaa dhangeessa.</ahelp>"
+msgid "Align Top"
+msgstr "Irraatti Hiriirsuu"
-#: 00000200.xhp
-#, fuzzy
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id399153683\n"
-"24\n"
+"00000004.xhp\n"
+"par_id3146923\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">LZW compression is the compression of a file into a smaller file using a table-based lookup algorithm.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">waayoo gama taattoo jalaan qabachiisi.</ahelp>"
+msgid "<image id=\"img_id3150410\" src=\"cmd/sc_cellvertbottom.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150410\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150410\" src=\"cmd/sc_cellvertbottom.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150410\">Sajoo</alt></image>"
-#: 00000200.xhp
-#, fuzzy
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id319952780\n"
-"26\n"
+"00000004.xhp\n"
+"par_id3149287\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies that you do not wish to use compression.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gatii irra deddeebi'e maxxansuuf ifteessa.</ahelp>"
+msgid "Align Bottom"
+msgstr "Jalatti Hiriirsuu"
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id3147250\n"
+"00000004.xhp\n"
+"par_id3153097\n"
"help.text"
-msgid "See <link href=\"text/shared/00/00000020.xhp\" name=\"Import and Export Filter Information\">Import and Export Filter Information</link> for more information about filters."
-msgstr "<link href=\"text/shared/00/00000020.xhp\" name=\"Import and Export Filter Information\">Odeeffannoo Calaltuu Alaagi fi Alergii</link> odeeffannoo dabalataa waa'ee calaltuuwanii ilaali."
+msgid "<image id=\"img_id3153363\" src=\"cmd/sc_alignvcenter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153363\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153363\" src=\"cmd/sc_alignvcenter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153363\">Sajoo</alt></image>"
-#: 00000408.xhp
+#: 00000004.xhp
msgctxt ""
-"00000408.xhp\n"
-"tit\n"
+"00000004.xhp\n"
+"par_id3150873\n"
+"22\n"
"help.text"
-msgid "Help Menu"
-msgstr "Baafatta gargarssaa"
+msgid "Align Center Vertically"
+msgstr "Gidduu Sarjina Hiriirsuu"
-#: 00000408.xhp
+#: 00000004.xhp
msgctxt ""
-"00000408.xhp\n"
-"hd_id3154689\n"
-"1\n"
+"00000004.xhp\n"
+"par_id3147436\n"
"help.text"
-msgid "Help Menu"
-msgstr "Baafatta gargarssaa"
+msgid "<image id=\"img_id3159123\" src=\"svx/res/nu07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159123\">Icon</alt></image>"
+msgstr "<image id=\"img_id3159123\" src=\"svx/res/nu07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159123\">Sajoo</alt></image>"
-#: 00000408.xhp
+#: 00000004.xhp
msgctxt ""
-"00000408.xhp\n"
-"par_id3150960\n"
-"2\n"
+"00000004.xhp\n"
+"par_id3147418\n"
+"27\n"
"help.text"
-msgid "<variable id=\"content\">Choose <emph>Help - Contents</emph></variable>"
-msgstr "<variable id=\"content\"><emph>Gargaarsa - Qabiyyeewanii</emph></variable>"
+msgid "Apply"
+msgstr "Fayyadami"
-#: 00000408.xhp
+#: 00000004.xhp
msgctxt ""
-"00000408.xhp\n"
-"par_id3147240\n"
-"14\n"
+"00000004.xhp\n"
+"par_id3146147\n"
"help.text"
-msgid "<variable id=\"infoanwendung\">Choose <emph>Help - About </emph><emph>%PRODUCTNAME</emph></variable>"
-msgstr "<variable id=\"infoanwendung\"><emph>Gargaarsa - Waa'ee </emph><emph>%PRODUCTNAME</emph></variable>"
+msgid "<image id=\"img_id3145364\" src=\"svx/res/nu08.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145364\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145364\" src=\"svx/res/nu08.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145364\">Sajoo</alt></image>"
-#: 00000408.xhp
+#: 00000004.xhp
msgctxt ""
-"00000408.xhp\n"
-"par_id3151387\n"
-"15\n"
+"00000004.xhp\n"
+"par_id3148617\n"
+"28\n"
"help.text"
-msgid "Automatically after <item type=\"productname\">%PRODUCTNAME</item> is first started."
-msgstr "Ofumaa erga <item type=\"productname\">%PRODUCTNAME</item> dura eegalee."
+msgid "Cancel"
+msgstr "Dhiisi"
-#: 00000408.xhp
+#: 00000004.xhp
msgctxt ""
-"00000408.xhp\n"
-"par_id3153808\n"
-"16\n"
+"00000004.xhp\n"
+"par_id3154730\n"
"help.text"
-msgid "Choose <emph>Help - Registration</emph> (this is a direct link to an external website)"
-msgstr "Choose <emph>Gargaarsa - Galmeessuu</emph> (kun geesstuu kallattiin ala weebsayiti)"
+msgid "<image id=\"img_id3154096\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154096\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154096\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154096\">Sajoo</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3145800\n"
+"30\n"
+"help.text"
+msgid "Up One Level"
+msgstr "Sadarkaa Tokko Ol"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3149412\n"
+"help.text"
+msgid "<image id=\"img_id3153279\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153279\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153279\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153279\">Sajoo</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3154064\n"
+"48\n"
+"help.text"
+msgid "Create New Directory"
+msgstr "Galeeloo Haaraa Uumi"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3153221\n"
+"help.text"
+msgid "<image id=\"img_id3153334\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153334\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153334\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153334\">Sajoo</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3145646\n"
+"39\n"
+"help.text"
+msgid "Up One Level"
+msgstr "Sadarkaa Tokko Ol"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3151320\n"
+"help.text"
+msgid "<image id=\"img_id3148833\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148833\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148833\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148833\">Sajoo</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3153005\n"
+"40\n"
+"help.text"
+msgid "Create New Folder"
+msgstr ""
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3156361\n"
+"help.text"
+msgid "<image id=\"img_id3150656\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150656\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150656\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150656\">Sajoo</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3146915\n"
+"35\n"
+"help.text"
+msgid "<ahelp hid=\".\">Go to the previous comment</ahelp>"
+msgstr "<ahelp hid=\".\">Gara yaadannoo duraatti darbi</ahelp>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3151357\n"
+"help.text"
+msgid "<image id=\"img_id3154363\" src=\"res/sc06300.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154363\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154363\" src=\"res/sc06300.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154363\">Sajoo</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3159184\n"
+"36\n"
+"help.text"
+msgid "<ahelp hid=\".\">Go to the next comment</ahelp>"
+msgstr "<ahelp hid=\".\">Gara yaadannoo itti aanuutti darbi</ahelp>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3083285\n"
+"help.text"
+msgid "<image id=\"img_id3147100\" src=\"cmd/sc_open.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147100\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147100\" src=\"cmd/sc_open.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147100\">Sajoo</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3147339\n"
+"37\n"
+"help.text"
+msgid "Open File"
+msgstr "Faayilii Bani"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3151189\n"
+"help.text"
+msgid "<image id=\"img_id3156318\" src=\"cmd/sc_saveas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156318\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156318\" src=\"cmd/sc_saveas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156318\">Sajoo</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3149109\n"
+"38\n"
+"help.text"
+msgid "Save As"
+msgstr "Akka ….olkaa'i"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3152946\n"
+"help.text"
+msgid "<image id=\"img_id3155904\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155904\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155904\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155904\">Sajoo</alt></image>"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3155336\n"
+"76\n"
+"help.text"
+msgid "Export Directly as PDF"
+msgstr "Akka PDF Sudaadan Alergi"
#: 00000005.xhp
msgctxt ""
@@ -1025,7 +1982,6 @@ msgid "If you format a document without Styles, it is referred to as \"direct\"
msgstr "Galmee haalataalee malee yoo dhangeessite, dhangeessuu \"takkaan\" jedhama. Barruu yookaan wantoota kan biroo, kan akka godayyaawwanii ykn gabateewwanii, amaloota adda addaa kallattiin takkaan fayyadamuun foyyeessuu jechuu dha. Dhangiin kun naannoo filatame qofaaf fayyada fi jijjiiramootni hundi qofaatti uumamuu qabu. Karaa biraatin, Haalataaleen barruu irratti kallachaan hin fayyadan, garuu foddaa Haalataalee fi Dhangeessuu irratti qindaa'un hojiirra oolu. Yeroo haalataa jijjirtutti bu'aa argattu keessaa tokko, kutaawwan galmee kan haalataan irratti ramadamu hundi al tokkoon fooyya'a."
#: 00000005.xhp
-#, fuzzy
msgctxt ""
"00000005.xhp\n"
"par_id3147287\n"
@@ -1652,2820 +2608,2180 @@ msgctxt ""
msgid "Widows and orphans are historical typography terms, which have been in use for many years. A widow refers to a short line at the end of a paragraph, which when printed, appears alone at the top of the next page. An orphan is, in contrast, the first line of a paragraph printed alone at the bottom of the previous page. In a $[officename] text document you can automatically prevent such occurrences in the desired Paragraph Style. When doing so, you can determine the minimum amount of lines to be kept together on a page."
msgstr "Hiikamtootaa fi Darbamtootni jechoota bocquu seenaati, isaanis waggoota hedduuf hojiirra olaa turani. Hiikamaan sarara gabaabaa dhuma keewwataa irra jiru ibsa, kunis yeroo maxxanfamu, gubbaa fuula itti aanu irratti mul'ata. Darbamaan, faallaa isaatin, sarara jalqabaa keewwataa miljala fuula darbee irratti qofaan maxxanu dha. Galmee barruu $[officename] keessatti wanti akkasii haalataa keewwataa barbaadame irratti akka hin mul'anne ofumaan dhorka. Yeroo kana dalagu, hamma sararoota gadee fuulicha irratti qabataman murteessuu dandeessa."
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
+"00000007.xhp\n"
"tit\n"
"help.text"
-msgid "Format Menu"
-msgstr "Dhangii Baafata"
+msgid "Toolbars"
+msgstr "Kamshaalee"
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
-"hd_id3150347\n"
+"00000007.xhp\n"
+"hd_id3155620\n"
"1\n"
"help.text"
-msgid "Format Menu"
-msgstr "Dhangii Baafata"
-
-#: 00040500.xhp
-#, fuzzy
-msgctxt ""
-"00040500.xhp\n"
-"par_id3145356\n"
-"8\n"
-"help.text"
-msgid "<variable id=\"standard\">Choose <emph>Format - Clear Direct Formatting</emph></variable>"
-msgstr "<variable id=\"standard\"><emph>Dhangii - Durtii Dhaangeessuu</emph> fili</variable>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3153244\n"
-"9\n"
-"help.text"
-msgid "Choose <emph>Format - Character</emph>"
-msgstr "<emph>Dhangii - Arfii</emph>fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3152352\n"
-"10\n"
-"help.text"
-msgid "On <emph>Text Formatting</emph> Bar (with cursor in object), click"
-msgstr "<emph>Barruu Dhangii</emph> Kabala (wanta keessaa qaree waliin), cuqaasi."
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3148998\n"
-"help.text"
-msgid "<image id=\"img_id3154894\" src=\"cmd/sc_outlineformat.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154894\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154894\" src=\"cmd/sc_outlineformat.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154894\">Sajoo</alt></image>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3149999\n"
-"11\n"
-"help.text"
-msgid "Character"
-msgstr "Arfii"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3153935\n"
-"12\n"
-"help.text"
-msgid "Choose <emph>Format - Character - Font</emph> tab"
-msgstr "<emph>Cancala Dhangii - Arfii - Bocquu</emph>fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3157958\n"
-"14\n"
-"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Font</emph> tab"
-msgstr "<emph>Dhangii - Haaalota fi Dhangii</emph> - banii baafata galfata halqaraa banitii Cancala <emph>Fooyyeessi/Haaraa - Bocquu</emph>fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3155338\n"
-"16\n"
-"help.text"
-msgid "Open context menu of a row header in a database table - choose <emph>Table Format - Font</emph> tab"
-msgstr "Baafata halqaraa bani iraantoo tarree gabtee kuusaa deetaa keessaa bani -<emph>Cancala - Gabatee</emph>fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3150355\n"
-"18\n"
-"help.text"
-msgid "Choose <emph>Format - Title - Character</emph> tab (Chart documents)"
-msgstr "Cancala(Galmeelee Taattoo)<emph>Dhangii - Matadure - Arfii</emph>fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3149812\n"
-"19\n"
-"help.text"
-msgid "Choose <emph>Format - Legend - Character</emph> tab (Chart documents)"
-msgstr "Cancala(Galmeelee Taattoo)<emph>Dhangii - Waayoo</emph>fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3153717\n"
-"20\n"
-"help.text"
-msgid "Choose <emph>Format - Axis - Character</emph> tab (Chart documents)"
-msgstr "Cancala(Galmeelee Taattoo)<emph>Dhangii - Siiqqee - Arfii</emph>fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3154749\n"
-"17\n"
-"help.text"
-msgid "Choose <emph>Format - Cell - Font</emph> tab (spreadsheets)"
-msgstr "Cancala(wardiilee)<emph>Dhangii - Mandee - Bocquu</emph> fili"
-
-#: 00040500.xhp
-#, fuzzy
-msgctxt ""
-"00040500.xhp\n"
-"par_id3156306\n"
-"199\n"
-"help.text"
-msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> button (spreadsheets)"
-msgstr "Baafata qabduu(wardiilee) <emph>Dhangii - Fuula - Irraantoo/Jalaantoo</emph> - <emph>Guulaali</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3155829\n"
-"21\n"
-"help.text"
-msgid "Choose <emph>Format - Character - Font Effects</emph> tab"
-msgstr "<emph>Cancala Dhangii - Arfii -Galteewwan - Bocquu</emph>fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3149819\n"
-"23\n"
-"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Font Effects</emph> tab"
-msgstr "<emph>Dhangii - Halatoota fi Dhangeessuu</emph> fili - baafata halqara galfataa banitii cancala <emph>Fooyyeessi/Haaraa - Galteewwan Bocquu</emph> fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3159176\n"
-"200\n"
-"help.text"
-msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> button (spreadsheets)"
-msgstr "Qabduu (wardiilee) <emph>Baafata Dhangii - Fuula - Irraantoo/Jalaantoo</emph> - <emph>Gulaali</emph> fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3153541\n"
-"181\n"
-"help.text"
-msgid "Choose <emph>Format - Character - Position</emph> tab"
-msgstr "<emph>Cancala Dhangii - Arfii - Iddoo</emph> fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3159256\n"
-"183\n"
-"help.text"
-msgid "Choose <emph>Format - Styles and Formatting - </emph>open context menu of an entry and click <emph>Modify/New - Alignment</emph> tab"
-msgstr "<emph>Dhangii - Halatootaa fi Dhangeessuu - </emph>baafata halqaraa galfata banitii Cancala fili tii, <emph>Fooyyeessi/Haaraa - Hiriira</emph> cuqaasi"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3151385\n"
-"201\n"
-"help.text"
-msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> button (spreadsheets)"
-msgstr "Qabduu (wardiilee) <emph>Baafata Dhangii - Fuula - Irraantoo/Jalaantoo</emph> - <emph>Gulaali</emph> fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3148550\n"
-"186\n"
-"help.text"
-msgid "Choose <emph>Format - Character - Asian Layout</emph> tab"
-msgstr "<emph>Cancala Dhangii - Arfii - Teessuuma kan Eshiyaa</emph> fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3152811\n"
-"188\n"
-"help.text"
-msgid "Choose <emph>Format - Styles and Formatting - </emph>open context menu of an entry and click <emph>Modify/New - Asian Layout</emph> tab"
-msgstr "<emph>Dhangii - Halatootaa fi Dhaangeessuu</emph> fili - baafata halqaraa galfataa banitii Cancala<emph>Fooyyeessi/Haaraa - Teessuuma kan Eshiyaa</emph> fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3153524\n"
-"190\n"
-"help.text"
-msgid "Choose <emph>Format - Paragraph - Asian Typography</emph> tab (not in HTML)"
-msgstr "Cancala (HTML keessaa hin taanee)<emph> Dhangii - Keewwata - Topografii</emph> kan Eshiyaa fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3154366\n"
-"191\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cell - Asian Typography</emph> tab </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Cancala <emph>Dhangii - Man'ee - Topograafii kan Eshiyaa</emph> fili </caseinline></switchinline>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3148742\n"
-"193\n"
-"help.text"
-msgid "Choose <emph>Format - Styles and Formatting - </emph>open context menu of an entry and click <emph>Modify/New - Asian Typography</emph> tab"
-msgstr "<emph>Dhangii - Halatoota fi Dhangeessuu fili - </emph> baafata halqara galfata banitti cancala <emph>Fooyyeessi/Haaraa - Topograafii Eshiyaa</emph> fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3148922\n"
-"26\n"
-"help.text"
-msgid "Choose <emph>Format - Character - Hyperlink</emph> tab"
-msgstr "<emph>Cancala Dhangii - Arfii - Geessituu</emph>fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3149169\n"
-"29\n"
-"help.text"
-msgid "Choose <emph>Format - Paragraph</emph>"
-msgstr "<emph>Dhangii - Keewwata</emph> fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3151381\n"
-"30\n"
-"help.text"
-msgid "On <emph>Text Formatting</emph> bar (with cursor in object), click"
-msgstr "<emph>Barruu Dhaangeessuu</emph> kabala irratti (qaree wantaa waliin)"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3155995\n"
-"help.text"
-msgid "<image id=\"img_id3150495\" src=\"cmd/sc_paragraphdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150495\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150495\" src=\"cmd/sc_paragraphdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150495\">Sajoo</alt></image>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3147299\n"
-"31\n"
-"help.text"
-msgid "Paragraph"
-msgstr "Keewwata"
+msgid "Toolbars"
+msgstr "Kamshaalee"
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3147289\n"
+"00000007.xhp\n"
+"par_id3152823\n"
"4\n"
"help.text"
-msgid "Choose <emph>Format - Paragraph - Alignment</emph> tab"
-msgstr "<emph>Cancala Dhangii - Keewwata - Hiriira</emph>fili"
+msgid "<variable id=\"werkzeugleiste\">Icon on the Tools bar: </variable>"
+msgstr "<variable id=\"werkzeugleiste\">Sajoo kabala Meeshaalee irratti: </variable>"
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3147352\n"
-"179\n"
+"00000007.xhp\n"
+"par_id3152352\n"
+"5\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Alignment</emph> tab"
-msgstr "<emph>Dhangii - Halatootaa fi Dhangeessuu</emph> fili - baafata halqaraa galfata banitii Cancala<emph>Fooyyeessi/Haaraa - Hirira</emph>fili"
+msgid "<variable id=\"textobjektleiste\">Icon on the Formatting Bar: </variable>"
+msgstr "<variable id=\"textobjektleiste\">Sajoo Kabala Dhangeessuu irratti: </variable>"
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154640\n"
-"32\n"
+"00000007.xhp\n"
+"par_id3151370\n"
+"7\n"
"help.text"
-msgid "Choose <emph>Format - Paragraph - Indents & Spacing</emph> tab"
-msgstr "Cancala <emph>Dhangii - Keewwata - Galuumsootaa fi Addaan Fageenya</emph> fili"
+msgid "<variable id=\"objektleiste\">Icon on the Formatting Bar: </variable>"
+msgstr "<variable id=\"objektleiste\">Sajoo Kabala Dhangeessuu irratti: </variable>"
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3152463\n"
-"34\n"
+"00000007.xhp\n"
+"par_id3149748\n"
+"9\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Indents & Spacing</emph> tab"
-msgstr "<emph>Dhangii - Halatootaa fi Dhangeessuu</emph> fili - baafata halqaraa galfata banitii Cancala<emph>Fooyyeessi/Haaraa - Galuumsa - Addaan Fageenya</emph> fili"
+msgid "<variable id=\"diaobjektleiste\">Icon on the Slide View Bar: </variable>"
+msgstr "<variable id=\"diaobjektleiste\">Sajoo Kabala Mul'annoo Islaayidii irratti: </variable>"
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154319\n"
-"39\n"
+"00000007.xhp\n"
+"par_id3156553\n"
+"10\n"
"help.text"
-msgid "Choose <emph>Format - Paragraph - Tabs</emph> tab"
-msgstr "Cancala <emph>Dhangii - Keewwata - Cancalota</emph>fili"
+msgid "<variable id=\"symbolleistenneu\">This overview describes the default toolbar configuration for $[officename].</variable>"
+msgstr "<variable id=\"symbolleistenneu\">Ilaalchi gubbaa kuni qindaayina durtii kamshaa $[officename]tiif ibsa.</variable>"
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154833\n"
-"41\n"
+"00000007.xhp\n"
+"par_id3153551\n"
+"11\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Tabs</emph> tab"
-msgstr "Cancala <emph>Dhangii - Halatootaa fi Dhanguu </emph> fili - baafata halqara galfata banitii Cancala<emph>Fooyyeessi/Haaraa - Cancaloota</emph>fili"
+msgid "Asian Language Support"
+msgstr "Gargaarsa Afaan Eeshiyaa"
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3159155\n"
-"43\n"
+"00000007.xhp\n"
+"par_id3156326\n"
+"12\n"
"help.text"
-msgid "Double-click the ruler"
-msgstr "Sarartuu Lama Cuqaasi"
+msgid "These commands can only be accessed after you enable support for Asian languages in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</emph>."
+msgstr ""
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_idN109E2\n"
+"00000010.xhp\n"
+"tit\n"
"help.text"
-msgid "(all options only in Writer or Calc)"
-msgstr "(dirqalli martuu barreessaa yookan Calc keessatti)"
+msgid "Context Menus"
+msgstr "Baafatawwan halqaraa"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3156105\n"
-"44\n"
+"00000010.xhp\n"
+"hd_id3160447\n"
+"1\n"
"help.text"
-msgid "Choose <emph>Format - Paragraph - Borders</emph> tab"
-msgstr "Cancala <emph>Dhangii - Keewwata -Handaaraoota</emph> fili"
+msgid "Context Menus"
+msgstr "Baafatawwan halqaraa"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154149\n"
+"00000010.xhp\n"
+"hd_id3148765\n"
"45\n"
"help.text"
-msgid "Choose <emph>Format - Picture - Borders</emph> tab"
-msgstr "Cancala <emph>Dhangii - Fakkaatti - Handaara</emph> fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3163822\n"
-"48\n"
-"help.text"
-msgid "Choose <emph>Format - Frame/Object - Borders</emph> tab"
-msgstr "Caancala <emph>Dhangii - Gooddayyaa/Wantaa - Handaaraalee</emph> fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3150048\n"
-"51\n"
-"help.text"
-msgid "Choose <emph>Format - Page - Borders</emph> tab"
-msgstr "Cancala <emph>Dhangii - Fuula - Handaara</emph> fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3149911\n"
-"53\n"
-"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Borders</emph> tab"
-msgstr "<emph>Dhangii - Halatootaa fi Dhangeessuu</emph> fili - baafata halqaraa galfata banitii Cancala<emph>Fooyyeessi/Haaraa - Handaaroota</emph>fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3150094\n"
-"54\n"
-"help.text"
-msgid "Choose <emph>Format - Page - Header - More</emph> button"
-msgstr "Qabaduu <emph>Dhangii - Fuula - Irraantoo - Dabala</emph> fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3154501\n"
-"55\n"
-"help.text"
-msgid "Choose <emph>Format - Page - Footer - More</emph> button"
-msgstr "Qabaduu <emph>Dhangii - Fuula - Jalaantoo - Dabala</emph> fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3148455\n"
-"56\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Borders</emph> tab </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Cancala <emph>Dhangii - Man'eewwan - Handaara</emph> fili </caseinline></switchinline>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3155915\n"
-"177\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Paragraph</emph> - <emph>Border</emph> tab -<emph> Spacing to contents</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Baafata <emph>Dhangii - Keewwata</emph> - Cancala <emph>Handaara</emph> - <emph>Addaan fageenya qabeentootaa</emph></caseinline></switchinline>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3159130\n"
-"178\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Menu<emph> Format - Page - Border - Spacing to contents</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Baafata <emph> Dhangii Fuula - Handaara -Qabeentoota</emph></caseinline></switchinline>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3155853\n"
-"57\n"
-"help.text"
-msgid "Choose <emph>Format - Paragraph - Background</emph> tab"
-msgstr "<emph>Cancala Dhangii - Keewwata - Duubbee</emph>fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3147330\n"
-"58\n"
-"help.text"
-msgid "Choose <emph>Format - Character - Background</emph> tab"
-msgstr "<emph>Cancala Dhangii - Arfii - Duubbee</emph>fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3149486\n"
-"59\n"
-"help.text"
-msgid "Choose <emph>Format - Picture - Background</emph> tab"
-msgstr "Cancala <emph>Dhangii - Fakkaatti - Duubbee</emph> fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3150592\n"
-"61\n"
-"help.text"
-msgid "Choose <emph>Format - Frame/Object - Background</emph> tab"
-msgstr "Caancala <emph>Dhangii - Gooddayyaa - Duubbee</emph> fili"
+msgid "Cut"
+msgstr "Muri"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3151321\n"
-"65\n"
+"00000010.xhp\n"
+"par_id3153383\n"
+"46\n"
"help.text"
-msgid "Choose <emph>Format - Page - Background</emph> tab"
-msgstr "Cancala <emph>Dhangii - Fuula - Duubbee</emph> fili"
+msgid "Cuts out the selected object and stores it on the clipboard. The object can be reinserted from the clipboard by using <emph>Paste</emph>."
+msgstr "Wanta filatame muree baasuun gabatee muraa irratti kuusa. Gabatee muraa <emph>Maxxansi</emph> fayyadamuun wanti irra deebi'ame saagamuu danda'a."
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154510\n"
+"00000010.xhp\n"
+"hd_id3156069\n"
"68\n"
"help.text"
-msgid "Choose <emph>Format - Page - Header - More</emph> button"
-msgstr "Qabaduu <emph>Dhangii - Fuula - Iraantoo - Dabala</emph> fili"
+msgid "Paste"
+msgstr "Maxxansi"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3159110\n"
+"00000010.xhp\n"
+"par_id3154896\n"
"69\n"
"help.text"
-msgid "Choose <emph>Format - Page - Footer - More</emph> button"
-msgstr "Qabaduu <emph>Dhangii - Fuula - Jalaantoo - Dabala</emph> fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3153532\n"
-"67\n"
-"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Background</emph> tab"
-msgstr "<emph>Dhangii - Halatootaa fi Dhangeessuu</emph> fili - baafata galfata halqaraa banitii Cancala <emph>Fooyyeessi/Haaraa - Duubbee</emph> fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3144747\n"
-"174\n"
-"help.text"
-msgid "Choose <emph>Insert/Edit - Section - Background</emph> tab"
-msgstr "Cancala <emph>Saagi/Gulaali - Kutaa -Duubbee</emph> fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3146900\n"
-"71\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Cancala <emph>Dhangii - Madheewwan - Duubbee</emph> fili </caseinline></switchinline>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3146791\n"
-"72\n"
-"help.text"
-msgid "Choose <emph>Format - Page - Organizer</emph> tab"
-msgstr "Cancala <emph>Dhangii - Fuula - Gurmeessaa</emph> fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3154482\n"
-"74\n"
-"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Organizer</emph> tab"
-msgstr "<emph>Dhangii - Halatootaa fi Dhangeessuu</emph> fili - baafata galfata halqaraa banitii Cancala<emph>Fooyyeessi/Haaraa - Gurmeessaa</emph> fili"
+msgid "<ahelp hid=\"SID_EXPLORERCONTENT_PASTE\" visibility=\"visible\">Inserts the element that you moved to the clipboard into the document.</ahelp> This command can only be called if the contents of the clipboard can be inserted at the current cursor position."
+msgstr "<ahelp hid=\"SID_EXPLORERCONTENT_PASTE\" visibility=\"visible\">Wanta ati gabatee muraatti siqsite gara galmeetti saaga.</ahelp> Ajajni kun kan waamamuu danda'u, qubannoo qaree ammee irratti yoo qabeentotni gabatee muraa saagamuu danda'an qofa."
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3153357\n"
-"75\n"
+"00000010.xhp\n"
+"hd_id3149948\n"
+"76\n"
"help.text"
-msgid "Choose <emph>Format - Page - Page</emph> tab"
-msgstr "Cancala <emph>Dhangii - Fuula - Fuula</emph> fili"
+msgid "Insert"
+msgstr "Saagi"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154362\n"
+"00000010.xhp\n"
+"par_id3147588\n"
"77\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Page</emph> tab"
-msgstr "Cancala <emph>Dhangii - Halatootaa fiDhangeessuu </emph> fili - baafata halqara galfata banitii Cancala <emph>Fooyyeessi/Haaraa - Fuula</emph> fili"
+msgid "Opens a submenu in the Gallery where you can choose between <emph>Copy</emph> and <emph>Link</emph>. The selected Gallery object is either copied into the current document or a link is created."
+msgstr "Baafata xiqqaa Kuusfaayaa keessatti bana iddoo ati itti <emph>Gargalchi</emph> fi <emph>Geessituu</emph> keessaa filattutti jechuu dha. Wanti kuusfaayaa filatame gara galmee ammeetti gargalchama yookaan geessituun ni uumama."
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3155515\n"
+"00000010.xhp\n"
+"par_id3146130\n"
"78\n"
"help.text"
-msgid "Choose <emph>Format - Page - Header</emph> tab"
-msgstr "Cancala <emph>Dhangii - Fuula - Irraantoo</emph> fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3148405\n"
-"80\n"
-"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Header</emph> tab"
-msgstr "Cancala <emph>Dhangii - Halatootaa fi Dhaangeessuu</emph> fili - baafata halqara galfata banitii Cancala <emph>Fooyyeessi/Haaraa - Irraantoo</emph> fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3145618\n"
-"81\n"
-"help.text"
-msgid "Choose <emph>Format - Page - Footer</emph> tab"
-msgstr "Cancala <emph>Dhangii - Fuula - Jalaantoo</emph> fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3155175\n"
-"83\n"
-"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Footer</emph> tab"
-msgstr "<emph>Dhangii - Halatootaa fi Dhangeessuu</emph> fili - baafata halqaraa galfata banitii Cancala <emph>Fooyyeessi/Haaraa - Jalaantoo</emph>fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3147404\n"
-"84\n"
-"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph>"
-msgstr "<emph>Dhangii - Haalatootaa fi Dhangeessuu</emph> fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3166447\n"
-"95\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+O"
+msgid "If you have selected an object in your document, then a new insertion will replace the selected object."
+msgstr "Yoo galmee kee keessaa wanta filatteetta ta'e, saagamni haaraan wanta filatame bakka bu'a."
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3147321\n"
-"85\n"
+"00000010.xhp\n"
+"hd_id3145829\n"
+"79\n"
"help.text"
-msgid "On <emph>Formatting</emph> Bar, click"
-msgstr "Kabala <emph>Dhangeessuu</emph>rraa,"
+msgid "Background"
+msgstr "Duubbee"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3148533\n"
+"00000010.xhp\n"
+"par_id3149180\n"
+"80\n"
"help.text"
-msgid "<image id=\"img_id3149568\" src=\"cmd/sc_designerdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149568\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149568\" src=\"cmd/sc_designerdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149568\">Sajoo</alt></image>"
+msgid "<ahelp hid=\"HID_GALLERY_MN_BACKGROUND\" visibility=\"visible\">Inserts the selected picture as a background graphic.</ahelp> Use the submenu commands <emph>Page</emph> or <emph>Paragraph</emph> to define whether the graphic should cover the entire page or only the current paragraph."
+msgstr "<ahelp hid=\"HID_GALLERY_MN_BACKGROUND\" visibility=\"visible\">Fakkaattii filatame akka saxaatoo duubbeetti saaga.</ahelp> Akka saxaatoon fuula guutuu yookaan keewwata ammee qofa haguuguu qabu qindeessuuf, ajaja baafata xiqqaa <emph>Fuula</emph> ykn <emph>Keewwata</emph> fayyadami."
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3153534\n"
-"86\n"
+"00000010.xhp\n"
+"hd_id3153049\n"
+"87\n"
"help.text"
-msgid "Styles and Formatting"
-msgstr "Haalatootaa fi Dhangeessuu"
+msgid "Copy"
+msgstr "Garagalchi"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3159313\n"
+"00000010.xhp\n"
+"par_id3150774\n"
"88\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>On the <emph>Drawing</emph> bar, click</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>Kabala <emph>Fakkassaa</emph></defaultinline></switchinline>irraa,"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3109845\n"
-"help.text"
-msgid "<image id=\"img_id3159236\" src=\"cmd/sc_window3d.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159236\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159236\" src=\"cmd/sc_window3d.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159236\">Sajoo</alt></image>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3152498\n"
-"3\n"
-"help.text"
-msgid "<emph>3D Effects</emph>"
-msgstr "<emph>Galteewwan G-3</emph>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3145256\n"
-"90\n"
-"help.text"
-msgid "<variable id=\"3dgeometrie\">Open the context menu of the 3D object, choose <emph>3D Effects - Geometry</emph> tab </variable>"
-msgstr "<variable id=\"3dgeometrie\">Baafata halqara wanta 3D bani, caancala <emph>Dhangii - Galteewwan 3D - Giometrii</emph> fili </variable>"
+msgid "<ahelp hid=\"SID_EXPLORERCONTENT_COPY\" visibility=\"visible\">Copies the selected element to the clipboard.</ahelp>"
+msgstr "<ahelp hid=\"SID_EXPLORERCONTENT_COPY\" visibility=\"visible\">Maalimaa filatame gara barruu xiqqaatti gargalchuuf.</ahelp>"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154203\n"
+"00000010.xhp\n"
+"hd_id3148620\n"
"91\n"
"help.text"
-msgid "<variable id=\"3ddarstellung\">Open the context menu of the 3D object, choose <emph>3D Effects - Shading</emph> tab </variable>"
-msgstr "<variable id=\"3ddarstellung\">Baafata halqara wanta 3D bani, caancala <emph>Dhangii - Galteewwan 3D - Gaaddiddeessuu</emph> fili </variable>"
+msgid "Delete"
+msgstr "Haqi"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3151284\n"
+"00000010.xhp\n"
+"par_id3154317\n"
"92\n"
"help.text"
-msgid "<variable id=\"3dbeleuchtung\">Open the context menu of the 3D object, choose <emph>3D Effects - Illumination</emph> tab </variable>"
-msgstr "<variable id=\"3dbeleuchtung\">Baafata halqara wanta 3D bani, caancala <emph>Dhangii - Galteewwan 3D - Ibsa</emph> fili </variable>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3152475\n"
-"93\n"
-"help.text"
-msgid "<variable id=\"3dtexturen\">Open the context menu of the 3D object, choose <emph>3D Effects - Textures</emph> tab </variable>"
-msgstr "<variable id=\"3dtexturen\">Baafata halqara wanta 3D bani, caancala<emph>Dhangii - Galteewwan 3D - Makkaluu</emph> fili </variable>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3154572\n"
-"94\n"
-"help.text"
-msgid "<variable id=\"3dmaterial\">Open the context menu of the 3D object, choose <emph>3D Effects - Material</emph> tab </variable>"
-msgstr "<variable id=\"3dmaterial\">Baafata halqara wanta 3D bani, caancala<emph>Dhangii - Galteewwan 3D - Meeshaa</emph> fili </variable>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3145220\n"
-"155\n"
-"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering </emph>"
-msgstr "<emph>Dhangii - Rasaasaalee fi Taasiisaa Lakkoofsaa </emph> fili"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3148771\n"
-"156\n"
-"help.text"
-msgid "On <emph>Formatting</emph> toolbar, click"
-msgstr "Kamashaa <emph>Dhangeessuu</emph>rraa,"
+msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Deletes the current selection. If multiple objects are selected, all will be deleted. In most cases, a <link href=\"text/shared/01/03150100.xhp\" name=\"security query\">security query</link> appears before objects are deleted.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Filannoo ammee haqa. Yoo wantootni hedduun filataman, hundi isaanii ni haqamu. Haaloota hedduu keessatti, <link href=\"text/shared/01/03150100.xhp\" name=\"security query\">gaafata ittisaa</link> osoo wantooni hin haqamiin mul'ata.</ahelp>"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3149445\n"
+"00000010.xhp\n"
+"par_id3155941\n"
+"190\n"
"help.text"
-msgid "<image id=\"img_id3149964\" src=\"cmd/sc_defaultbullet.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149964\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149964\" src=\"cmd/sc_defaultbullet.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149964\">Sajoo</alt></image>"
+msgid "The object is either physically deleted from the data carrier or the object display is removed, depending on context."
+msgstr "Wanti baattuu deetaa irraa qaamaan haqameera yookaan halqara irratti hundaa'uun agarsiisni wantaa haqameera."
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3157970\n"
-"163\n"
+"00000010.xhp\n"
+"par_id3150506\n"
+"192\n"
"help.text"
-msgid "Bullets On/Off"
-msgstr "Rasaasa Bani/Cufi"
+msgid "If you choose <emph>Delete</emph> while in the Gallery, the entry will be deleted from the Gallery, but the file itself will remain untouched."
+msgstr "Kuusfaayaa keessa yeroo jirutti <emph>Haqi</emph> yoo filatte, galfatni kuusfaayaa keessaa haqama, garuu faayilichi mataansaa osoo hin tuqamiin tura."
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3149735\n"
-"157\n"
+"00000010.xhp\n"
+"hd_id3150443\n"
+"136\n"
"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering</emph>. Open <emph>Options</emph> tab page"
-msgstr "<emph>Dhangii - Rasaasaalee fi Taasiisaa Lakkoofsaa</emph> fili. Cancala <emph>Dirqaloota</emph> cancala fuulaa bani"
+msgid "Open"
+msgstr "Bani"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3150785\n"
-"164\n"
+"00000010.xhp\n"
+"par_id3149149\n"
+"137\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles and Formatting</emph> - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><emph>Halatootaa fi Dhangeessuu</emph> - Halatoota Pirezanteshiinii - baafata halqara toorii haalataa bani - <emph>Fooyyeessi/Haaraa</emph> fili</caseinline></switchinline>"
+msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_OPEN_OBJECT\">Use the<emph> Open </emph>command to open the selected object in a new task.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_OPEN_OBJECT\"> Wanta filatame hojii haaraa irratti banuuf<emph> Bani </emph>fayyadami.</ahelp>"
-#: 00040500.xhp
-#, fuzzy
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3148420\n"
+"00000010.xhp\n"
+"hd_id3149732\n"
"165\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Haalatootaa fi Dhangeessuu</emph> - Halatoota Taasiisaa Lakkoofsaa - bafata haalqara galfata bani - <emph>Haaraa/Fooyyeessi</emph>fili</caseinline></switchinline>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3148888\n"
-"158\n"
-"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering - Bullets</emph> tab"
-msgstr "Cancala<emph>Dhangii - Rasaasaalee fi Taasiisaa Lakkoofsaa</emph> fili"
+msgid "Rename"
+msgstr "Maqaa jijjiiri"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3149917\n"
+"00000010.xhp\n"
+"par_id3149797\n"
"166\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open Styles and Formatting - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Halatootaa fi Dhangeessuu - Halatoota Dhiyeessa - baafata halqara toorii haalataa bani - <emph>Haaraa/Fooyyeessi</emph>fili</caseinline></switchinline>"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3154930\n"
-"167\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open Styles and Formatting - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Haalatootaa Dhangeessuu - Taasiisaa Lakkoofsaa - bafata haalqara Toorii halataa bani - Haaraa/Fooyyeessi</emph>fili</caseinline></switchinline>"
+msgid "<ahelp hid=\"SID_EXPLORERCONTENT_RENAME\" visibility=\"visible\">Enables a selected object to be renamed.</ahelp> After selecting <emph>Rename</emph> the name is selected and a new one can be entered directly. Use the arrow keys to set the cursor at the beginning or end of the name to delete or add to part of the name or to reposition the cursor."
+msgstr "<ahelp hid=\"SID_EXPLORERCONTENT_RENAME\" visibility=\"visible\"> Wanta filatame maqaa jijjiiruuf dandeessisi.</ahelp> Filannoon booda <emph>Maqaa Jijjiiri</emph> maqichii filame wanti haaraa kallchaan galfamuu danda'a. Qaree jalqaba ykn dhuma maqaa irratti qindeessuun haquuf yookaan gara qaama maqichaatti ida'uuf yookaan qaree bakka biraa qubachiisuuf furtuulee xiyyaa fayyadami."
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3150862\n"
-"159\n"
+"00000010.xhp\n"
+"hd_id3155434\n"
+"317\n"
"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering - Numbering</emph> tab"
-msgstr "Cancala<emph>Dhangii - Rasaasaalee fi Taasiisaa Lakkoofsaa</emph> fili"
+msgid "Update"
+msgstr "Haaromsi"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3155378\n"
-"168\n"
+"00000010.xhp\n"
+"par_id3154898\n"
+"318\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles and Formatting</emph> - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><emph>Halatootaa fi Dhangeessuu</emph> - Halatoota Dhiyeessa - baafata halqara galfataa bani - <emph>Haaraa/Fooyyeessi</emph>fili</caseinline></switchinline>"
+msgid "<ahelp hid=\"HID_GALLERY_ACTUALIZE\" visibility=\"visible\">Updates the view in the window or in the selected object.</ahelp>"
+msgstr "<ahelp hid=\"HID_GALLERY_ACTUALIZE\" visibility=\"visible\">Mul'annoo foddaa keessaa yookaan wanta filatame keessatti haroomsa.</ahelp>"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3156011\n"
-"169\n"
+"00000010.xhp\n"
+"hd_id3147573\n"
+"172\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Halatootaa Dhangeessuu</emph> - Haalatoota Taasiisaa Lakkoofsaa - bafata haalqara galfata bani - <emph>Haaraa/Fooyyeessi</emph>fili</caseinline></switchinline>"
+msgid "Preview"
+msgstr "Durargii"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id0611200904324832\n"
+"00000010.xhp\n"
+"par_id3155583\n"
+"173\n"
"help.text"
-msgid "<variable id=\"graphics\">Choose <emph>Format - Bullets and Numbering - Graphics</emph> tab</variable>"
-msgstr "<variable id=\"graphics\">Caancala <emph>Dhangii - Rasaasaalee fi Lakkaawwii - Saxaatoo</emph> fili</variable>"
+msgid "The element selected is displayed in the Gallery at maximum size. Double-click the preview to switch back to the normal Gallery view."
+msgstr "Maalimaan filatame Kuusfaayaa keessatti hammamtaa guddaadhaan mul'ifama. Gara mul'annoo kuusfaayaa baratameetti deebisuuf durargii lama cuqaasi."
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3155848\n"
-"160\n"
+"00000010.xhp\n"
+"hd_id3157809\n"
+"319\n"
"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering - Outline</emph> tab"
-msgstr "Cancala<emph>Dhangii - Rasaasaalee fi Taasiisaa Lakkoofsaa- Toorii</emph> fili"
+msgid "Create Link"
+msgstr "Geessituu Uumi"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3148733\n"
-"170\n"
+"00000010.xhp\n"
+"par_id3153716\n"
+"320\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Haalatootaa fi Dhangeessuu</emph> - Halatoota Taasiisaa Lakkoofsaa - bafata haalqara galfata bani - <emph>Haaraa/Fooyyeessi</emph>fili</caseinline></switchinline>"
+msgid "This command can be activated if an object is selected. A link named \"Link to xxx\" (<emph>xxx</emph> represents the name of the object) will be created directly in the same directory as that of the selected object."
+msgstr "Yoo wanti filatame, ajajni kun kakaafamuu danda'a. Geessituun maqaansaa \"Gara xxx tti geessi\" (<emph>xxx</emph> maqaa wantaa bakka bu'a) akka wanta filatameetti galeeloo walfakkaatu keessatti uumama."
-#: 00040500.xhp
+#: 00000011.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3156658\n"
-"162\n"
+"00000011.xhp\n"
+"tit\n"
"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering</emph>. Open <emph>Position</emph> tab page"
-msgstr "<emph>Dhangii - Rasaasaalee fi Taasiisaa Lakkoofsaa</emph>fili. Cancala fuulaa<emph>Iddoo</emph>fili"
+msgid "Menu Commands"
+msgstr "Ajajoota Baafataa"
-#: 00040500.xhp
+#: 00000011.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3156170\n"
-"152\n"
+"00000011.xhp\n"
+"hd_id3156045\n"
+"4\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Cancala <emph>Meeshaalee - Taasiisaa Lakkoofsaa Toorii -Iddoo</emph> fili </caseinline></switchinline>"
+msgid "Menu Commands"
+msgstr "Ajajoota Baafataa"
-#: 00040500.xhp
+#: 00000011.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3153812\n"
-"173\n"
+"00000011.xhp\n"
+"par_id3150838\n"
+"5\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting - Numbering Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Haalatootaa Dhangeessuu</emph>- Halatoota Taasiisaa Lakkoofsaa - bafata haalqara galfata bani - <emph>Haaraa/Fooyyeessi</emph>fili</caseinline></switchinline>"
+msgid "The window containing the document you want to work on must be selected in order to use the menu commands. Similarly, you must select an object in the document to use the menu commands associated with the object."
+msgstr "Foddaan galmee of keessatti qabate ati irratti hojjechuu barbaaddu akka ajajoota baafataa fayyadamuuf filatamuu qaba. Haaluma walfakkatuun, ajajoota baafataa wanta waliin firooman fayyadamuuf wanta galmee keessaa filachuu qabda."
-#: 00040500.xhp
+#: 00000011.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3151332\n"
-"194\n"
+"00000011.xhp\n"
+"par_id3156027\n"
+"3\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Picture </emph>- <emph>Crop</emph> tab </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Baafata<emph>Dhangii - Fakkaatti </emph>- Cancala <emph>Soofuu</emph> </caseinline></switchinline>"
+msgid "The menus are context sensitive. This means that those menu items are available that are relevant to the work currently being carried out. If the cursor is located in a text, then all of those menu items are available that are needed to edit the text. If you have selected graphics in a document, then you will see all of the menu items that can be used to edit graphics."
+msgstr "Baafatawwan rifachisaa halqalaati. Kana jechuun maalimootni baafataa kun hojii amma hojjetamaa jiruuf faayidaa qabeessa ta'anii jiraatu. Yoo qareen barruu keessatti iddeeffame, maalimootni baafataa barruu gulaaluuf fayyadan hundi ni jiraatu. Yoo galmee keessaa saxaatoo filatteetta ta'e, maalimoota baafataa saxaatoo gulaaluuf fayyadan hunda agarta."
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3153317\n"
-"198\n"
+"00000020.xhp\n"
+"tit\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Picture</emph> toolbar:</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Sajoo Kamshaa: <emph>Fakkaatti</emph>irraa</defaultinline></switchinline>"
+msgid "About Import and Export Filters"
+msgstr "Waa'ee Gingilchoota Alaaguu fi Alerguu"
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3149953\n"
+"00000020.xhp\n"
+"bm_id3152952\n"
"help.text"
-msgid "<image id=\"img_id3155092\" src=\"cmd/sc_grafattrcrop.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155092\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155092\" src=\"cmd/sc_grafattrcrop.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155092\">Sajoo</alt></image>"
+msgid "<bookmark_value>import filters</bookmark_value><bookmark_value>export filters</bookmark_value><bookmark_value>filters; for import and export</bookmark_value><bookmark_value>files; filters and formats</bookmark_value><bookmark_value>formats; on opening and saving</bookmark_value><bookmark_value>importing; HTML and text documents</bookmark_value><bookmark_value>exporting;HTML and text documents</bookmark_value><bookmark_value>text documents; importing/exporting</bookmark_value><bookmark_value>HTML documents; importing/exporting</bookmark_value><bookmark_value>UTF-8/UCS2 support</bookmark_value><bookmark_value>HTML; export character set</bookmark_value><bookmark_value>PostScript; creating files</bookmark_value><bookmark_value>exporting;to PostScript format</bookmark_value>"
+msgstr "<bookmark_value>gingilchoota alaaguu</bookmark_value><bookmark_value>gingilchoota alaaguuf</bookmark_value><bookmark_value>gingilchoota; alaaguu fi alerguuf</bookmark_value><bookmark_value>faayiloota; gingilchootaa fi dhangiilee</bookmark_value><bookmark_value>dhangiilee; banuu fi ol kaa'uu irratti</bookmark_value><bookmark_value>alaaguu; galmeewwan HTML fi barruu</bookmark_value><bookmark_value>aleerguu; galmeewwan HTML fi barruu</bookmark_value><bookmark_value>galmeewwan barruu; alaaguu/alerguu</bookmark_value><bookmark_value>galmeewwan HTML; alaaguu/alerguu</bookmark_value><bookmark_value>deeggarsa UTF-8/UCS2 </bookmark_value><bookmark_value>HTML; tuuta arfii alergii</bookmark_value><bookmark_value>BarruuDirbaasii; faayiloota uumuu</bookmark_value><bookmark_value>aleerguu;Dhangii BarruuDirbaasuuf</bookmark_value>"
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3153695\n"
-"209\n"
+"00000020.xhp\n"
+"hd_id3152952\n"
+"1\n"
"help.text"
-msgid "Crop"
-msgstr "Soofuu"
+msgid "About Import and Export Filters"
+msgstr "Waa'ee Gingilchoota Alaaguu fi Alerguu"
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3151254\n"
-"195\n"
+"00000020.xhp\n"
+"par_id3143272\n"
+"2\n"
"help.text"
-msgid "Choose <emph>Format - Change Case</emph>"
-msgstr "<emph>Dhangii - Kompitaraa Jijjiirii</emph>fili"
+msgid "In $[officename], apart from its own <link href=\"text/shared/00/00000021.xhp\" name=\"XML formats\">XML formats</link> you can also open and save many foreign XML formats."
+msgstr "$[officename] keessatti, <link href=\"text/shared/00/00000021.xhp\" name=\"XML formats\">dhangiilee XML </link> isaatin alatti, dhangiilee XML alagaa hedduu banuu fi ol kaa'uu dandeessa."
-#: 00040500.xhp
-#, fuzzy
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3159624\n"
-"196\n"
+"00000020.xhp\n"
+"par_id3152414\n"
+"3\n"
"help.text"
-msgid "Open context menu (text) - choose <emph>Change Case</emph>"
-msgstr "Baafata halqaraa (barruuu)fili - <emph>Arfiilee</emph> golga kompitaraa fili"
+msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">In UNIX, certain file formats cannot be recognized automatically.</caseinline><defaultinline>$[officename] normally recognizes the correct file type automatically on opening a file.</defaultinline></switchinline> There may be cases where you have to select the file type yourself in the <emph>Open</emph> dialog. For example, if you have a database table in text format that you want to open as a database table, you need to specify the file type \"Text CSV\" after selecting the file."
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">UNIX keessatti, dhangiiwwan faayilii tokko tokkoo ofumaan hin fudhataman. </caseinline><defaultinline>$[officename] baratamaan gosa faayilii sirrii yeroo faayiliin banamu ofumaan fudhata.</defaultinline></switchinline>Yeroo gosa faayilii ofiikeetin filattu qaaqa<emph>Bani</emph> keessatti mandheewwan jiraachuu danda'u. Fakkeenyaaf, yoo gabatee kuusdeetaa dhangii barruuttin qabaatte kan immoo akka gabatee kuusdeetaatti banuu barbaaddu, erga faayilicha filatteen booda gosa faayilii \"Barruu CVS\" adda baasuun sirraa eegama."
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3153579\n"
-"197\n"
+"00000020.xhp\n"
+"hd_id3148668\n"
+"238\n"
"help.text"
-msgid "Menu <emph>Format - Asian phonetic guide</emph>"
-msgstr "Baafata <emph>Dhangii - Qajeelcha Xinsaga kan Eshiyaa</emph>"
+msgid "Basic Macros in MS Office Documents"
+msgstr "Maakiroota Bu'uuraa Galmee Waajjiraa MS keessatti"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"tit\n"
+"00000020.xhp\n"
+"par_id3156211\n"
+"239\n"
"help.text"
-msgid "File Menu"
-msgstr "Baafata Faayilii"
+msgid "In <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01130100.xhp\" name=\"Load/Save - VBA Properties\">Load/Save - VBA Properties</link> you can specify the settings for the VBA macro codes in MS Office documents. VBA macros are unable to run in $[officename]; they must first be converted and adapted. Often you only want to use $[officename] to change the visible content of a Word, Excel or PowerPoint file and then save the file again in Microsoft Office format without changing the macros they contain. You can set the behavior of $[officename] as desired: Either the VBA macros are saved in commented form as a subroutine of $[officename] and when the document is saved in MS Office format are written back correctly again, or you can select the Microsoft Office macros to be removed when loading. The last option is an effective protection against viruses within the Microsoft Office documents."
+msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"hd_id3149976\n"
-"1\n"
+"00000020.xhp\n"
+"hd_id3154232\n"
+"5\n"
"help.text"
-msgid "File Menu"
-msgstr "Baafata Faayilii"
+msgid "Notes regarding external formats and file types"
+msgstr "Yaadannoota dhangiiwwan alaa fi akaakuuwwan faayilii ilaalchisee"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id389416\n"
+"00000020.xhp\n"
+"par_id3154230\n"
+"226\n"
"help.text"
-msgid "<variable id=\"webhtml\">Choose <emph>File - Preview in Web Browser</emph></variable>"
-msgstr "<variable id=\"webhtml\"><emph>Faayilii - Durargii Saphuuphuu Iyyaafataa keessatti</emph>filadhu</variable>"
+msgid "Even if they are not installed, some filters can be selected in the <emph>Open</emph> and <emph>Save</emph> dialogs. If you select such a filter, a message will appear saying that you can still install the filter if you require."
+msgstr "Yoo ijaaramuu baatan illee, calaltuuwwan tokko tokkoo qaaqota <emph>Bani</emph> and <emph>Olkaa'i</emph> keessatti filatamuu danda'u. Yoo calaltuu akkasii filatte, ergaan ni mul'ata jechuun amma calaltuu ijaaruu dandeessa yoo barbaadde."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154812\n"
-"50\n"
+"00000020.xhp\n"
+"par_id3149999\n"
+"200\n"
"help.text"
-msgid "Choose <emph>File - New</emph>"
-msgstr "<emph>Faayilii - Haaraa</emph> filadhu."
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">If you want to install additional filters or remove individual filters from the installation, close %PRODUCTNAME, start the Setup program and select the <emph>Modify</emph> option. Then you will see a dialog in which you can add or remove individual components of %PRODUCTNAME. Graphic filters can be found in \"Optional Components\".</caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Yoo calaltuuwwan dabalataa ijaaruu ykn calaltuuwwan kophaa haquu ijaarsa irraa barbaadde, %PRODUCTNAME cufi, qindaa'ina sagantaa jalqabitii dirqalee <emph>Fooyya'aa</emph>fili. Achiin qaaqa kan qabeentotaa kophaa %PRODUCTNAME ida'uu ykn haquu dandeessuu ilaalta. Calaltuun saxaatoo \"Qabeentota Dirqalaa\" keessatti argamuu danda'a. </caseinline></switchinline>"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153070\n"
-"186\n"
+"00000020.xhp\n"
+"hd_id3156027\n"
+"7\n"
"help.text"
-msgid "<emph>New</emph> icon on the <emph>Standard</emph> Bar (the icon shows the type of the new document)"
-msgstr "Kabala <emph>Sajoo</emph> haaraa <emph>waaltina irratti</emph> (sajoon akaakuu galmee haaraa agarsiisa)"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Importing and Exporting Text Documents</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Galmeewwan Barruu Alaaguu fi Alerguu</defaultinline></switchinline>"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150127\n"
+"00000020.xhp\n"
+"par_id3145669\n"
+"8\n"
"help.text"
-msgid "<image id=\"img_id3156053\" src=\"res/sx03251.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156053\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156053\" src=\"res/sx03251.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156053\">Sajoo</alt></image>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>$[officename] Writer can read various versions of the Microsoft Word text format. You also can save your own texts in Word format. However, not everything available with $[officename] Writer can be transferred to MS Word, and not everything can be imported.</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>$[officename] Writeriin fooyya'ina dhangii baruu maayikroosooftii woordii baay'ee dubbisuu danda'a. Itti dabaltees barruuwwan mataa keetii dhangii jechaa keessa olkaa'uu dandeessa. Haa ta'u malee, wanni hundi $[officename] Writerii wajjin hin argamne gara jecha MS tti darba, wanti hundi alaagamuu hin danda'u.</defaultinline></switchinline>"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154232\n"
-"199\n"
+"00000020.xhp\n"
+"par_id3150144\n"
+"233\n"
"help.text"
-msgid "New"
-msgstr "Haaraa"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Importing is normally not problematic. Even redlining information and controls are imported (and exported) so that $[officename] recognizes inserted or deleted text in Word documents as well as font attributes that have been modified. Different coloring for each author and the time of such changes is also included. When graphic text boxes and labels are imported from templates, most of the attributes are also imported as direct paragraph and drawing attributes. However, some of the attributes may be lost during the import procedure.</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Alaaguun baratamaan rakkoo hin qaban. Yoo odeeffannoo fi too'annoon sararadiimaa alaagame illee(fi alergame)kanaaf $[officename] barruu saagame ykn haqame galmeewwan jechaa akkasumas amaloota bocquu kan fooyya'e keessatti addabaasa. Haalluun addadda tokko tokkoo barreessaa fi yeroo jijjiirama sanaa itti dabalama. Yommuu saanduqoonni barruu saxaatoo fi asxaalee qajojiiwwan irra alaagame, amaloonni baay'een itti dabalees akka keewwata kallattii fi amaloota fakkasaatti alaagamu. Haa ta'u malee, amaloonnii tokko tokko yeroo adeemsa alaagii baduu danda'u.</defaultinline></switchinline>"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154894\n"
-"179\n"
+"00000020.xhp\n"
+"par_id3149095\n"
+"10\n"
"help.text"
-msgid "Key <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>It is also possible to import and export <link href=\"text/shared/00/00000005.xhp#rtf\" name=\"RTF\">RTF</link> files. This file format can be used to exchange formatted texts across various applications and platforms. In this way, many formats read by most programs will be transferred without a problem. The clipboard uses RTF format when you insert part of a spreadsheet from $[officename] Calc through <link href=\"text/shared/00/00000005.xhp\" name=\"DDE\">DDE</link> into $[officename] Writer.</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Itti dabalees alaaguu fi alerguun ni dand'ama faayiloota <link href=\"text/shared/00/00000005.xhp#rtf\" name=\"RTF\">RTF</link>. Dhangiin faayilii kun barruuwwan dhanga'e fayyadamota fi gulantiyyoota baay'ee gamaa-gamana wal jijjiiruuf fayyaduu danda'a. Haala kanaan, dhangiiwwan baay'een sagantoolee baay'een dubbifaman rakkoo malee darbu. Gabatee muraan dhangii RTF fayyadama yommuu qaama waraqaadiriiroo $[officename] Calc irraa keessa <link href=\"text/shared/00/00000005.xhp\" name=\"DDE\">DDE</link>$[officename] Writer keessatti saagdu.</defaultinline></switchinline>"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3157898\n"
-"82\n"
+"00000020.xhp\n"
+"par_id3151378\n"
+"237\n"
"help.text"
-msgid "Menu <emph>File - New</emph><emph>- Templates and Documents</emph>."
-msgstr "Baafata <emph>Faayilii - Haaraa</emph><emph>- Qajojiilee fi Galmeewwanii</emph>."
+msgid "The filter <emph>Text Encoded</emph> helps you open and save text documents with another encoding font. The filter opens a dialog that enables you to select character set, default fonts, language and paragraph break."
+msgstr "Calaltuun <emph>Barruu Lakkaddaaye</emph> galmeewwan barruu bocquu lakkadda'uu biroo wajjin banuu fi olkaa'uuf si gargaara. Calaltuun qaaqa kan qindaa'ina arfii, bocqoota durtii, afaan fi citaa keewwataa filachuuf si dandeessisu bana."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149140\n"
-"187\n"
+"00000020.xhp\n"
+"hd_id3149763\n"
+"11\n"
"help.text"
-msgid "Key Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
+msgid "Importing and Exporting in HTML Format"
+msgstr "Alaaguu fi Alerguu dhangiii HTML keessaa"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149798\n"
-"160\n"
+"00000020.xhp\n"
+"par_id3150244\n"
+"198\n"
"help.text"
-msgid "<variable id=\"etiketten\">Choose <emph>File - New - Labels</emph></variable>"
-msgstr "<variable id=\"etiketten\"><emph>Faayilii - Haaraa - Asxaalee</emph> filadhu</variable>"
+msgid "With $[officename] Writer, you can insert footnotes and endnotes in your HTML document. They are exported as meta tags. The footnote and endnote characters are exported as hyperlinks."
+msgstr "$[officename] Writerii wajjin, hubachiisa miiljalee fi ibsa dabalataa galmee HTML kee keessa saaguu dandeessa. Akka iyyosarmeetti alergamu. Hubachiisa miiljalee fi ibsa dabalataa akka geessituutti alergamu."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3147226\n"
-"161\n"
+"00000020.xhp\n"
+"par_id3149800\n"
+"199\n"
"help.text"
-msgid "<variable id=\"etikettenein\">Choose <emph>File - New - Labels - Labels</emph> tab</variable>"
-msgstr "<variable id=\"etikettenein\"><emph>Faayilii - Haaraa - Waammee - Waammee</emph> caancalaa </variable>Filadhu."
+msgid "Comments are used to include unknown characters in an HTML document. Every note that begins with \"HTML:...\" and ends with \">\" is treated as an HTML code, but is exported without these designations. Several tags around text can be included after \"HTML:...\" Accented characters are converted into the ANSI character set. Comments are created during import (for example, for meta tags that have no room in the file properties or unknown tags)."
+msgstr "Arfii hin beekamne galmee HTML keessatti dabaluuf yaadannoowwan ni fayyada. Yadannoon hundi \"HTML:...\"n ka'uu fi \">\"n xumuru akka lakkadda HTMLtti wal'aanama, garuu saxaxeessuu malee alergama. Iyyaatoowwan baay'een naannoo barruu \"HTML:...\" booda itti dabalamuu danda'u, arfoonni Maldan gara qindaa'ina arfii ANSI tti jijjiiramu. Yaadannoowwan yeroo alaaguu kalaqame(Fakkeenyaf, iyyosarmeef kan amaloota faayilii ykn iyyatoota hinbeekamne keessatti kutaa hin qabne)."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154522\n"
-"162\n"
+"00000020.xhp\n"
+"par_id3149734\n"
+"201\n"
"help.text"
-msgid "Choose <emph>File - New - Labels - Format</emph> tab"
-msgstr "<emph>Faayilii - Haaraa - Waammee - Dhangii</emph> caancalaa filadhu."
+msgid "The HTML import of $[officename] Writer is able to read files that have UTF-8 or UCS2 character coding. All characters that are contained in the ANSI character set or in the system's character set can be displayed."
+msgstr "Alaaguu HTML kan $[officename] Writerii faayiloota lakkada arfii UTF-8 ykn UCS2 qaban dubisuuf dandeessisa. Arfoonni hundi kan qindaa'ina arfii ANSI keessatti argaman ykn kan sirna qindaa'ina arfii keessatti argaman mul'achuu danda'u."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154983\n"
-"163\n"
+"00000020.xhp\n"
+"par_id3149578\n"
+"240\n"
"help.text"
-msgid "Choose <emph>File - New - Business Cards - Format</emph> tab"
-msgstr "<emph>Faayilii - Haaraa - Waammee - Dirqala</emph> caancala filadhu."
+msgid "When exporting to HTML, the character set selected in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph> is used. Characters not present there are written in a substitute form, which is displayed correctly in modern web browsers. When exporting such characters, you will receive an appropriate warning."
+msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3157958\n"
-"164\n"
+"00000020.xhp\n"
+"par_id3153146\n"
+"197\n"
"help.text"
-msgid "Choose <emph>File - New - Labels - Options</emph> tab"
-msgstr "<emph>Faayilii - Haaraa - Waammee - Dirqala</emph> caancala filadhu."
+msgid "If, in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph>, you select Netscape Navigator, MS Internet Explorer, or $[officename] Writer as the export option, upon export all important font attributes are exported as direct attributes (for example, text color, font size, bold, italic, and so on) in CSS1 styles. (<link href=\"text/shared/00/00000002.xhp\" name=\"CSS\">CSS</link> stands for Cascading Style Sheets.) Importing is also carried out according to this standard."
+msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153311\n"
-"165\n"
+"00000020.xhp\n"
+"par_id3154143\n"
+"130\n"
"help.text"
-msgid "Choose <emph>File - New - Business Cards - Options</emph> tab"
-msgstr "<emph>Faayilii - Haaraa - Kaardii Daldalaa - Dirqala</emph> caancala filadhu."
+msgid "The \"font\" property corresponds to Netscape Navigator; that is, before the font size you can specify optional values for \"font-style\" (italic, none), \"font-variant\" (normal, small-caps) and \"font-weight\" (normal, bold)."
+msgstr "Amalli \"bocquu\" walitti dhufoo Nanna'aa Neetiskaappii; kan hammamtaa bocquun duraa gatiiwwan dirqalee \"akkaataa-bocquu\" (itaalikii, homaa), \"bocquu-gargarii\" (baratamoo, qubeewwa xixiqqaa) fi \"ulfina-bocquu\" (baratamoo, yabbuu). ifteessuu dandeessa."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152780\n"
-"166\n"
+"00000020.xhp\n"
+"par_id3153760\n"
+"131\n"
"help.text"
-msgid "<variable id=\"visikart\">Choose <emph>File - New - Business Cards</emph></variable>"
-msgstr "<variable id=\"visikart\"><emph>Faayilii - Haaraa - Kaardii Daldalaa</emph>Filadhu </variable>"
+msgid "For example, \"Font: bold italic small-caps 12pt/200% Arial, Helvetica\" switches to bold, italic, small caps, double-space with the font family Arial or Helvetica, if Arial doesn't exist."
+msgstr "Fakkeenyaaf, \"Font: bold italic small-caps 12pt/200% Arial, Helvetica\" yabbuu, itaalikii, qubeewwan xiqqaa, Iddoo-dachaa maatii bocquu Ariyaali fi Helvaatikaa wajjin, yoo Ariyaaliin hin jiraanne."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3156346\n"
-"167\n"
+"00000020.xhp\n"
+"par_id3150129\n"
+"132\n"
"help.text"
-msgid "<variable id=\"visikartform\">Choose <emph>File - New - Business Cards - Medium</emph> tab</variable>"
-msgstr "<variable id=\"visikartform\"><emph>Faayilii - Haaraa - Kaardii Daldalaa - Giddugaleessaa</emph> caancalaa filadhu</variable>"
+msgid "\"Font: 10pt\" switches to a 10pt font, with bold, italic, small caps off."
+msgstr "\"Bocquu: 10pt\" bocquu 10pt tti jijjira, yabbuun, itaalikiin, qubeewwan xiqqaa dhaamsi."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152824\n"
-"168\n"
+"00000020.xhp\n"
+"par_id3155135\n"
+"14\n"
"help.text"
-msgid "<variable id=\"viskartinhalt\">Choose <emph>File - New - Business Cards - Business cards</emph> tab</variable>"
-msgstr "<variable id=\"viskartinhalt\"><emph>Faayilii - Haaraa - Kaardii Daldalaa - Kaardii Daldalaa</emph> caancalaa filadhu</variable>"
+msgid "If MS Internet Explorer or $[officename] Writer are set as the export option, the sizes of the control field and their internal margins are exported as styles (print formats). CSS1 size properties are based on \"width\" and \"height\" values. The \"Margin\" property is used to set equal margins on all sides of the page. To allow different margins, the \"Margin-Left\", \"Margin-Right\", \"Margin-Top\" and \"Margin-Bottom\" properties are used."
+msgstr "Yoo Aloolaa intarneetii MS fi $[officename] Writeriin akka dirqalee alergiitti qindaa'e, hammamtaan dirree too'annaa fi keessi mudana isaanii akka akkaataawwaniitti alerga (dhangiiwwan maxxansi). Amaloonni hammamtaa CSS1 gatiiwwan \"width\" fi \"height\" irratti hundaa'u. Amalli \"Margin\" mudanoota walqixa hammamtoota fuula hundaa irratti qindeessuuf fayyada. Mudanoota adda addaa eyyamuuf, amaloonni \"Mudana-Bitaa\", \"Mudana-Mirgaa\", \"Mudana-Gubbaa\" fi \"Mudana-Jalaa\" ni fayyadu."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149819\n"
-"169\n"
+"00000020.xhp\n"
+"par_id3148473\n"
+"15\n"
"help.text"
-msgid "<variable id=\"viskartpriv\">Choose <emph>File - New - Business Cards - Private</emph> tab</variable>"
-msgstr "<variable id=\"viskartpriv\"><emph>Faayilii - Haaraa - Kaardii Daldalaa - Dhuunfaa</emph> caancalaa</variable>Filadhu."
+msgid "The distances of graphics and Plug-Ins to the content can be set individually for export to $[officename] Writer and MS Internet Explorer. If the top/bottom or right/left margin is set differently, the distances are exported in a \"STYLE\" option for the corresponding tag as CSS1 size properties \"Margin-Top\", \"Margin-Bottom\", \"Margin-Left\" and \"Margin-Right\"."
+msgstr "Fageenyi saxaatoolee fi Plug-Ins qabeentotaa $[officename] Writer fi Aloolaa intarneetii MS tiif alergiif kopha kophaa qindaa'uu danda'u. Yoo mudanni gubbaa/jalaa ykn mirgaa/bitaa adda addaan qindaa'e, fageenyi dirqala \"STYLE\" keessatti iyyaatoo walitti dhufoof akka amaloota hammamtaa CSS1 \"Mudana-Gubbaa\", \"Mudana-Jalaa\", \"Mudana-Bitaa\" and \"Mudana-Mirgaa\"alergamu."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154897\n"
-"170\n"
+"00000020.xhp\n"
+"par_id3144510\n"
+"16\n"
"help.text"
-msgid "<variable id=\"viskartgesch\">Choose <emph>File - New - Business Cards - Business</emph> tab</variable>"
-msgstr "<variable id=\"viskartgesch\"><emph>Faayilii - Haraa - Kaardii Daldalaa</emph> caancalaa</variable>Filadhu."
+msgid "Text frames are supported with the use of CSS1 extensions for absolute positioned objects. This applies only to the export options Netscape Navigator, MS Internet Explorer, and $[officename] Writer. Text frames can be aligned as graphics, <switchinline select=\"sys\"><caseinline select=\"WIN\"> Plug-Ins,</caseinline></switchinline>and Floating Frames, but character-linked frames are not possible."
+msgstr "Dhangiiwwan barruu faayidaa dheertoota CSS1 wantoota qubannoo guuta'aniif wajjin deeggaramu. Kun dirqalee alergii Naanna'aa Neetiskaappii, Aloolaa intarneetii MS, fi [officename] Writer qofaaf fayyada. Dhangiiwwan barruu akka saxaatolee, Plug-Ins <switchinline select=\"sys\"><caseinline select=\"WIN\">, </caseinline></switchinline> fi godayyaa bololi'u tti hiriiruu danda'u, garuu godayyoota arfii-geessituun hin danda'aman."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3146137\n"
-"7\n"
+"00000020.xhp\n"
+"par_id3147530\n"
+"46\n"
"help.text"
-msgid "Choose <emph>File - Open</emph>"
-msgstr "<emph>Faayilii - Bani</emph>"
+msgid "Text frames are exported as \"<SPAN>\" or \"<DIV>\" tags if they do not contain columns. If they do contain columns then they are exported as \"<MULTICOL>\"."
+msgstr "Dhangiiwwan barruu akka iyyaatoo\"<SPAN>\" ykn \"<DIV>\" alergamu yoo tarjoota qabaachuu baate. Yoo tarjoota qabaatan achiin akka \"<MULTICOL>\" alergama."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152944\n"
-"83\n"
+"00000020.xhp\n"
+"par_id3153896\n"
+"202\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+O"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+O"
+msgid "The measurement unit set in $[officename] is used for HTML export of CSS1 properties. The unit can be set separately for text and HTML documents under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer - General</emph> or <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer/Web - View</emph>. The number of exported decimal places depends on the unit."
+msgstr ""
-#: 00000401.xhp
-#, fuzzy
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155341\n"
-"8\n"
+"00000020.xhp\n"
+"par_id3154935\n"
+"203\n"
"help.text"
-msgid "On the <emph>Standard</emph> Bar, click"
-msgstr "<emph>Waaltinaa irratti</emph> Kabala cuqaasi."
+msgid "Measurement Unit"
+msgstr "Safartuu"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155419\n"
+"00000020.xhp\n"
+"par_id3154226\n"
+"204\n"
"help.text"
-msgid "<image id=\"img_id3149415\" src=\"cmd/sc_open.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3149415\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149415\" src=\"cmd/sc_open.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3149415\">Sajoo</alt></image>"
+msgid "Measurement Unit Name in CSS1"
+msgstr "Maqaa Safartuu CSS1 keessaa"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3156003\n"
-"9\n"
+"00000020.xhp\n"
+"par_id3151106\n"
+"205\n"
"help.text"
-msgid "Open File"
-msgstr "Faayilii Bani"
+msgid "Maximum Number of Decimal Places"
+msgstr "Lakkoofsa Olaantoo iddoowwan kurniyyee"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155388\n"
-"174\n"
+"00000020.xhp\n"
+"par_id3154071\n"
+"206\n"
"help.text"
-msgid "Menu <emph>File - Open</emph>, File type <emph>Text Encoded</emph> selected"
-msgstr "Baafata <emph>Faayilii - Banaa</emph>, Akaakuu Faayilii<emph>Barruu Lakkadda'ee</emph> filatame."
+msgid "Millimeter"
+msgstr "Miilimeetira"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154174\n"
-"175\n"
+"00000020.xhp\n"
+"par_id3149290\n"
+"207\n"
"help.text"
-msgid "Menu <emph>File - Save As</emph>, File type <emph>Text Encoded</emph> selected"
-msgstr "Baafata <emph>Faayilii - Akka ….olkaa'i</emph>, Akaakuu Faayilii<emph>Barruu Lakkadda'ee</emph> filatame."
+msgid "mm"
+msgstr "mm"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145609\n"
-"109\n"
+"00000020.xhp\n"
+"par_id3152920\n"
+"208\n"
"help.text"
-msgid "<variable id=\"autobrief\">Choose <emph>File - Wizards</emph></variable>"
-msgstr "<variable id=\"autobrief\"><emph>Faayilii - Masaka</emph></variable>"
+msgid "2"
+msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149245\n"
-"110\n"
+"00000020.xhp\n"
+"par_id3156293\n"
+"209\n"
"help.text"
-msgid "<variable id=\"autopilotbrief\">Choose <emph>File - Wizards - Letter</emph></variable>"
-msgstr "<variable id=\"autopilotbrief\"><emph>Faayilii - Masaka - Ergannaa</emph>Filadhu </variable>"
+msgid "Centimeter"
+msgstr "Seentiimeetira"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154758\n"
-"111\n"
+"00000020.xhp\n"
+"par_id3154819\n"
+"210\n"
"help.text"
-msgid "<variable id=\"autopilotbrief1\">Choose <emph>File - Wizards - Letter - Page design</emph></variable>"
-msgstr "<variable id=\"autopilotbrief1\"><emph>Faayilii - Masaka - Ergannaa - Xanxala Fuulaa</emph>Filadhu </variable>"
+msgid "cm"
+msgstr "sm"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152360\n"
-"112\n"
+"00000020.xhp\n"
+"par_id3147228\n"
+"211\n"
"help.text"
-msgid "<variable id=\"autopilotbrief2\">Choose <emph>File - Wizards - Letter - Letterhead layout</emph></variable>"
-msgstr "<variable id=\"autopilotbrief2\"><emph>Faayilii - Masaka - Ergannaa - Teessuma Mataduree Ergannaa </emph>Filadhu </variable>"
+msgid "2"
+msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3159413\n"
-"113\n"
+"00000020.xhp\n"
+"par_id3154329\n"
+"212\n"
"help.text"
-msgid "<variable id=\"autopilotbrief3\">Choose <emph>File - Wizards - Letter - Printed items</emph></variable>"
-msgstr "<variable id=\"autopilotbrief3\"><emph>Faayilii - Masaka - Ergannaa - Maalimoota Maxxansaa</emph>Filadhu </variable>"
+msgid "Inch"
+msgstr "Inchii"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152771\n"
-"114\n"
+"00000020.xhp\n"
+"par_id3150740\n"
+"213\n"
"help.text"
-msgid "<variable id=\"autopilotbrief4\">Choose <emph>File - Wizards - Letter - Recipient and sender</emph></variable>"
-msgstr "<variable id=\"autopilotbrief4\"><emph>Faayilii - Masaka - Ergannaa - Ergaa fi Fudhataa</emph>Filadhu </variable>"
+msgid "in"
+msgstr "keessa"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153524\n"
-"115\n"
+"00000020.xhp\n"
+"par_id3157320\n"
+"214\n"
"help.text"
-msgid "<variable id=\"autopilotbrief5\">Choose <emph>File - Wizards - Letter - Footer</emph></variable>"
-msgstr "<variable id=\"autopilotbrief5\"><emph>Faayilii -Masakawwan - Faakkasii - Jalaantoo</emph>filadhu</variable>"
+msgid "2"
+msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154224\n"
-"116\n"
+"00000020.xhp\n"
+"par_id3156422\n"
+"215\n"
"help.text"
-msgid "<variable id=\"autopilotbrief6\">Choose <emph>File - Wizards - Letter - </emph><emph>Name and Location</emph></variable>"
-msgstr "<variable id=\"autopilotbrief6\"><emph>Faayilii -Masakawwan - Xalayaa - </emph><emph>Maqaa fi Qabannoo</emph>fili</variable>"
+msgid "Pica"
+msgstr "Kutaasa"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
+"00000020.xhp\n"
"par_id3144760\n"
-"120\n"
-"help.text"
-msgid "<variable id=\"autopilotfax\">Choose <emph>File - Wizards - Fax</emph></variable>"
-msgstr "<variable id=\"autopilotfax\"><emph>Faayilii - Masaka - Faaksii</emph>Filadhu </variable>"
-
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
-"par_id3147085\n"
-"121\n"
-"help.text"
-msgid "<variable id=\"autopilotfax1\">Choose <emph>File - Wizards - Fax - Page Design</emph></variable>"
-msgstr "<variable id=\"autopilotfax1\"><emph>Faayilii - Masaka - Faaksii - Fuula Saxaxa</emph>Filadhu </variable>"
-
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
-"par_id3151042\n"
-"209\n"
-"help.text"
-msgid "<variable id=\"autopilotfax2\">Choose <emph>File - Wizards - Fax - Items to include</emph></variable>"
-msgstr "<variable id=\"autopilotfax2\"><emph>Faayilii - Masaka - Faaksii - Maalima itti dabaluuf</emph>Filadhu </variable>"
-
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
-"par_id3154330\n"
-"122\n"
+"216\n"
"help.text"
-msgid "<variable id=\"autopilotfax3\">Choose <emph>File - Wizards - Fax - Sender and Recipient</emph></variable>"
-msgstr "<variable id=\"autopilotfax3\"><emph>Faayilii - Masaka - Faaksii - Ergaa fi Fudhataa</emph>Filadhu </variable>"
+msgid "pc"
+msgstr "pc"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150651\n"
-"123\n"
+"00000020.xhp\n"
+"par_id3145322\n"
+"217\n"
"help.text"
-msgid "<variable id=\"autopilotfax4\">Choose <emph>File - Wizards - Fax - Footer</emph></variable>"
-msgstr "<variable id=\"autopilotfax4\"><emph>Faayilii - Masaka - Faaksii - Jalaantoo</emph>Filadhu </variable>"
+msgid "2"
+msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154685\n"
-"124\n"
+"00000020.xhp\n"
+"par_id3155131\n"
+"218\n"
"help.text"
-msgid "<variable id=\"autopilotfax5\">Choose <emph>File - Wizards - Fax - Name and location</emph></variable>"
-msgstr "<variable id=\"autopilotfax5\"><emph>Faayilii - Masaka - Faaksii - Maqaa fi Qabannoo</emph>Filadhu </variable>"
+msgid "Point"
+msgstr "Tuqaa"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153190\n"
-"131\n"
+"00000020.xhp\n"
+"par_id3147288\n"
+"219\n"
"help.text"
-msgid "<variable id=\"autopilotagenda\">Choose <emph>File - Wizards - Agenda</emph></variable>"
-msgstr "<variable id=\"autopilotagenda\"><emph>Faayilii - Masaka - Yayyaboo</emph>Filadhu </variable>"
+msgid "pt"
+msgstr "pt"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155860\n"
-"132\n"
+"00000020.xhp\n"
+"par_id3145364\n"
+"220\n"
"help.text"
-msgid "<variable id=\"autopilotagenda1\">Choose <emph>File - Wizards - Agenda - Page Design</emph></variable>"
-msgstr "<variable id=\"autopilotagenda1\"><emph>Faayilii - Masaka - Yayyaboo - Saxaxa fuulaa</emph>Filadhu </variable>"
+msgid "1"
+msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3146906\n"
-"133\n"
+"00000020.xhp\n"
+"par_id3149262\n"
+"70\n"
"help.text"
-msgid "<variable id=\"autopilotagenda2\">Choose <emph>File - Wizards - Agenda - General Attributes</emph></variable>"
-msgstr "<variable id=\"autopilotagenda2\"><emph>Faayilii - Masaka - Yayyaboo - Amaloota Waliigalaa</emph>Filadhu </variable>"
+msgid "The $[officename] Web page filter supports certain capabilities of CSS2. However, to use it, print layout export must be activated in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph>. Then, in HTML documents, besides the HTML Page Style, you can also use the styles \"First page\", \"Left page\" and \"Right page\". These styles should enable you to set different page sizes and margins for the first page and for right and left pages when printing."
+msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152578\n"
-"134\n"
+"00000020.xhp\n"
+"hd_id3145750\n"
+"223\n"
"help.text"
-msgid "<variable id=\"autopilotagenda3\">Choose <emph>File - Wizards - Agenda - Headings</emph></variable>"
-msgstr "<variable id=\"autopilotagenda3\"><emph>Faayilii - Masaka - Yayyaboo - Mataduree</emph>Filadhu </variable>"
+msgid "Importing and Exporting Numbering"
+msgstr "Lakkaawwii Alaaguu fi Alerguu"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155368\n"
-"135\n"
+"00000020.xhp\n"
+"par_id3145591\n"
+"224\n"
"help.text"
-msgid "<variable id=\"autopilotagenda4\">Choose <emph>File - Wizards - Agenda - Names</emph></variable>"
-msgstr "<variable id=\"autopilotagenda4\"><emph>Faayilii - Masaka - Yayyaboo - Maqootaa</emph>Filadhu </variable>"
+msgid "If, in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph>, the export option \"$[officename] Writer\" or \"Internet Explorer\" is selected, the indents of numberings are exported as \"margin-left\" CSS1 property in the STYLE attribute of the <OL> and <UL> tags. The property indicates the difference relative to the indent of the next higher level."
+msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3146923\n"
-"205\n"
+"00000020.xhp\n"
+"par_id3153573\n"
+"225\n"
"help.text"
-msgid "<variable id=\"autopilotagenda5\">Choose <emph>File - Wizards - Agenda - Topics</emph></variable>"
-msgstr "<variable id=\"autopilotagenda5\"><emph>Faayilii - Masaka - Yayyaboo - Mataduree</emph>Filadhu </variable>"
+msgid "A left paragraph indent in numbering is indicated as \"margin-left\" CSS1 property. First-line indents are ignored in numbering and not exported."
+msgstr "Galumsi keewwataa bitaan lakkaawwii keessattii akka amala CSS1 \"madana-bitaa\" tti agarsiisama. Galumsootni sarara - duraa lakkaawwii keessatti tuffatama akkasumas hin aloolamu."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149066\n"
-"136\n"
+"00000020.xhp\n"
+"hd_id3148556\n"
+"235\n"
"help.text"
-msgid "<variable id=\"autopilotagenda6\">Choose <emph>File - Wizards - Agenda - Title and Location</emph></variable>"
-msgstr "<variable id=\"autopilotagenda6\"><emph>Faayilii - Masaka - Yayyabboo - Mataduree fi Qabannoo</emph>Filadhu </variable>"
+msgid "Importing and Exporting Spreadsheet Files"
+msgstr "Faayiloota Wardii Alaaguu fi Alerguu"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149288\n"
-"102\n"
+"00000020.xhp\n"
+"par_id3153365\n"
+"236\n"
"help.text"
-msgid "<variable id=\"dtapt\">Choose <emph>File - Wizards - Presentation</emph></variable>"
-msgstr "<variable id=\"dtapt\"><emph>Faayilii -Masakawwan - Dhiyeessaa</emph>filadhu</variable>"
+msgid "$[officename] imports and exports references to deleted sections such as, for example, a referenced column. The whole formula can be viewed during the export process and the deleted reference contains an indication (#REF!) to the reference. A #REF! will be correspondingly created for the reference during the import."
+msgstr "Alaagi fi alergii $[officename] kutaalee haqaman fakkeenyaaf, kan akka tarjaa wabii ta`ame, wabii ta`a. Foormulaan hundi yeroo hojii alergii ilaaluu fi wabiin akeektuu (#REF!) wabiidhaaf ofkeessatti qabatu haqamuu danda`a. #REF! walqixxummaan wabiidhaaf yeroo alaagi uumama."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3146986\n"
+"00000020.xhp\n"
+"hd_id3150228\n"
"103\n"
"help.text"
-msgid "<variable id=\"dtapse\">Choose <emph>File - Wizards - Presentation - Page 1</emph></variable>"
-msgstr "<variable id=\"dtapse\"><emph>Faayilii -Masakawwan - Dhiyeessaa - Fuula 1</emph>filadhu</variable>"
+msgid "Importing and Exporting Graphics Files"
+msgstr "Faayiloota Saxaatoo Alaaguu fi Alerguu"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154919\n"
+"00000020.xhp\n"
+"par_id3152578\n"
"104\n"
"help.text"
-msgid "<variable id=\"dtapsz\">Choose <emph>File - Wizards - Presentation - Page 2</emph></variable>"
-msgstr "<variable id=\"dtapsz\"><emph>Faayilii -Masakawwan - Dhiyeessaa - Fuula 2</emph>filadhu</variable>"
-
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
-"par_id3151351\n"
-"105\n"
-"help.text"
-msgid "<variable id=\"dtapsd\">Choose <emph>File - Wizards - Presentation - Page 3</emph></variable>"
-msgstr "<variable id=\"dtapsd\"><emph>Faayilii -Masakawwan - Dhiyeessaa - Fuula 3</emph>filadhu</variable>"
+msgid "As with HTML documents, you can choose to use a filter with or without the element ($[officename] Impress) in the name to open a $[officename] graphics file. If without, the file will be opened as a $[officename] Draw document. Otherwise, the file saved by an old program version is now opened in $[officename] Impress."
+msgstr "Akka Galmeewwan HTML waliin, gingilchaa wajjin ykn maalimaa ($[officename] Impress) malee maqaa keessatti faayilii saxaatoo$[officename] filuu ni dandeessa. Yoo maalimaa ($[officename] Impress) malee ta`e, faayiliin akka galmee fakkasaa $[officename]tti banama. Ta`uu baanaan, faayiliin sagantaa fooyya'aa moofaan Toleessaa $[officename] keessatti banama."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3147317\n"
+"00000020.xhp\n"
+"par_id3144441\n"
"106\n"
"help.text"
-msgid "<variable id=\"dtapsv\">Choose <emph>File - Wizards - Presentation - Page 4</emph></variable>"
-msgstr "<variable id=\"dtapsv\"><emph>Faayilii -Masakawwan - Dhiyeessaa - Fuula 4</emph>filadhu</variable>"
+msgid "When you import an EPS file, a preview of the graphic is displayed in the document. If a preview is not available, a placeholder corresponding to the size of the graphic is displayed in the document. Under Unix and Microsoft Windows you can print the imported file by using a PostScript printer. <switchinline select=\"sys\"><caseinline select=\"UNIX\"></caseinline><defaultinline>If a different printer is used the preview will be printed.</defaultinline></switchinline> When exporting EPS graphics, a preview is created and has the TIFF or EPSI format. If an EPS graphic together with other graphics is exported in the EPS format then this file will be embedded unchanged in the new file."
+msgstr "Yommuu faayilii EPS alaagdu, durargiin saxaatoo galmee keessatti mul'ata. Yoo durargiin hin argamne, iddooqni walitti dhufoo hammamtaa saxaatoo galmee keessatti mul'ata. Uniiksii fi foddaalee maayikroosooftii jalatti maxxansaa BarruuDuubbeen fayyadamuun faayilii alaagame maxxansuu dandeessa. <switchinline select=\"sys\"><caseinline select=\"UNIX\"></caseinline><defaultinline> yoo maxxansaan adda addaa fayyade durargiin ni maxxanfama.</defaultinline></switchinline> yommuu saxaatolee EPS alerguu, duraargiin kalaqamee dhangii TIFF ykn EPSI qaba. yoo saxaatoon EPS saxaatolee biroo wajjin dhangii EPS keeessatti alergame achiin faayiliin kun ida'ama hin jijjiiramne faayilii haaraa keessatti."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145592\n"
-"107\n"
+"00000020.xhp\n"
+"par_id3146120\n"
+"222\n"
"help.text"
-msgid "<variable id=\"dtapsf\">Choose <emph>File - Wizards - Presentation - Page 5</emph></variable>"
-msgstr "<variable id=\"dtapsf\"><emph>Faayilii - Masaka - Dhiyeessaa - Fuula 5</emph>Filadhu </variable>"
+msgid "Multipage-TIFFs are allowed when graphics are imported or exported in TIFF format. The graphics are retrieved as a set of individual pictures in a single file, for example, the individual pages of a fax."
+msgstr "Fuulli hedduu-TIFFs eyyamama yoo saxaatoleen dhangii TIFF keeessatti alaagame ykn alergame. Saxaatoleen akka tuuta fakkiiwwan tokko tokkoo faayilii baaqqee keessaa, fakkeenyaaf, fuulota tokko tokkoo faaksii akka turetti deebi'a."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN10C46\n"
+"00000020.xhp\n"
+"par_id3159153\n"
+"109\n"
"help.text"
-msgid "<variable id=\"autopilotformular\">Click <emph>Use Wizard to Create Form</emph> in a database file window.</variable>"
-msgstr "<variable id=\"autopilotformular\"><emph>Unka UmuufMasakawwan fayyadami</emph> faayilii foddaa kuusaa deetaa cuqaasi. </variable>"
+msgid "Some $[officename] Draw and $[officename] Impress options can be accessed through <emph>File - Export</emph>. See <link href=\"text/shared/00/00000200.xhp\" name=\"Graphics Export Options\">Graphics Export Options</link> for more information."
+msgstr "Dirqaalee Fakkasa $[officename] fi Impreessi $[officename] <emph>Faayilii - Alergii</emph> keessa gahuu danda'a."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN10C5F\n"
+"00000020.xhp\n"
+"hd_id3153213\n"
+"228\n"
"help.text"
-msgid "<variable id=\"autopilotreport\">Click <emph>Use Wizard to Create Report</emph> in a database file window.</variable>"
-msgstr "<variable id=\"autopilotreport\"><emph>Gabaasa Umuuf Masaka fayyadami</emph> faayilii foddaa kuusaa deetaa cuqaasi. </variable>"
+msgid "PostScript"
+msgstr "BarruuDeebee"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN10C24\n"
+"00000020.xhp\n"
+"par_id3156444\n"
+"229\n"
"help.text"
-msgid "<variable id=\"webwizard\">Choose <emph>File - Wizards - Web Page</emph></variable>"
-msgstr "<variable id=\"webwizard\"><emph>Faayilii - Masaka - Weebpeegii</emph></variable>"
+msgid "To export a document or graphic in PostScript format:"
+msgstr "Galmee ykn saxatoo dhangii BarruuDeebee keessatti alerguuf:"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154064\n"
-"143\n"
+"00000020.xhp\n"
+"par_id3163714\n"
+"230\n"
"help.text"
-msgid "<variable id=\"gruppen\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame.</variable>"
-msgstr "<variable id=\"gruppen\">Unka saxaxa keessatti <emph>Sanduuqa Garee</emph> sajoo kamshaa irratti hantuuttee fayyadami goodayyaa uumuf </variable> cuqaasi."
+msgid "If you have not yet done so, install a PostScript printer driver, such as the Apple LaserWriter driver."
+msgstr "Yoo hanga ammaatti hojjaatamuu baate, Ooftuu maxxansaa BarruuDeebee ijaari, kan akka ooftuu BarreessaaLeezarii Apple."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152807\n"
-"144\n"
+"00000020.xhp\n"
+"par_id3153142\n"
+"231\n"
"help.text"
-msgid "<variable id=\"gruppen1\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 1</variable>"
-msgstr "<variable id=\"gruppen1\">Unka saxaxa keessatti <emph>Sanduuqa Garee</emph> Sajoo kamshaa irratti hantuuttee fayyadami fi goodayyaa fuula 1 masaka irratti uumuf </variable> cuqaasi."
+msgid "Print the document with the <emph>File - Print</emph> menu command."
+msgstr "Galmee ajaja baafata <emph>File - Print</emph> wajjin maxxansi."
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150571\n"
-"148\n"
+"00000020.xhp\n"
+"par_id3154149\n"
+"242\n"
"help.text"
-msgid "<variable id=\"gruppen2\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 2</variable>"
-msgstr "<variable id=\"gruppen2\">Unka saxaxa keessatti <emph>Sanduuqa Garee</emph> Sajoo kamshaa irratti hantuuttee fayyadami fi goodayyaa fuula 2 masaka irratti uumuf </variable> cuqaasi."
+msgid "Select the PostScript printer in the dialog and mark the <emph>Print to file</emph> check box. A PostScript file will be created."
+msgstr "Maxxansaa BarruuDirbaasii qaaqa keessaa filadhu itti aansuun sanduuqa filannoo <emph>Faayilii irratti maxxansi</emph> mallatteessi. BarruuDirbaasiin ni uumama."
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145251\n"
-"145\n"
+"00000021.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"gruppen3\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 3</variable>"
-msgstr "<variable id=\"gruppen3\">Unka saxaxa keessatti <emph>Sanduuqa Garee</emph> Sajoo kamshaa irratti hantuuttee fayyadami fi goodayyaa fuula 3 masaka irratti uumuf </variable> cuqaasi."
+msgid "XML File Formats"
+msgstr "Dhangiiwwan Faayilii XML"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3156109\n"
-"146\n"
+"00000021.xhp\n"
+"bm_id3154408\n"
"help.text"
-msgid "<variable id=\"gruppen4\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 4, there must be a database connection.</variable>"
-msgstr "<variable id=\"gruppen4\">Unka saxaxa keessatti <emph>Sanduuqa Garee</emph> Sajoo kamshaa irratti hantuuttee fayyadami goodayyaa fuula 4 masaka irratti uumuf cuqaasteen booda walindhaan kuusaa deetaa jiraachuu qaba </variable>"
+msgid "<bookmark_value>exporting; XML files</bookmark_value> <bookmark_value>XML file formats</bookmark_value> <bookmark_value>extensions; file formats</bookmark_value> <bookmark_value>suffixes in file formats</bookmark_value> <bookmark_value>document types in $[officename]</bookmark_value> <bookmark_value>file formats; changing $[officename] defaults</bookmark_value> <bookmark_value>defaults;file formats in $[officename]</bookmark_value> <bookmark_value>file formats;OpenDocument/XML</bookmark_value> <bookmark_value>OpenDocument file formats</bookmark_value> <bookmark_value>ODF file formats</bookmark_value>"
+msgstr "<bookmark_value>alerguu; faayiloota XML</bookmark_value><bookmark_value>Dhangiiwwan faayilii XML</bookmark_value><bookmark_value>dheerattoota; dhangiiwwan faayilii</bookmark_value><bookmark_value>dursoo dhangiiwwan faayilii keessatti</bookmark_value><bookmark_value>akaakuuwwan galmee $[officename] keessatti</bookmark_value><bookmark_value>dhangiiwwan faayiliifi; durtiiwwan $[officename] jijjiiruu </bookmark_value><bookmark_value>durtiiwwan; dhangiiwwan faayilii $[officename] keessatti</bookmark_value><bookmark_value>dhangiiwwan faayilii; GalmeeBanuu/XML</bookmark_value><bookmark_value>dhangiiwwan faayilii GalmeeBanuu</bookmark_value><bookmark_value>dhangiiwwan faayilii ODF </bookmark_value>"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3159347\n"
-"147\n"
+"00000021.xhp\n"
+"hd_id3154408\n"
+"2\n"
"help.text"
-msgid "<variable id=\"gruppen5\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - last page of Wizards</variable>"
-msgstr "<variable id=\"gruppen5\">Unka saxaxa keessatti <emph>Sanduuqa Garee</emph> sajoo kamshaa irratti hantuuttee fayyadami goodayyaa fuula dhumaa masaka irratti uumuf </variable> cuqaasi."
+msgid "<variable id=\"xmlformat\"><link href=\"text/shared/00/00000021.xhp\" name=\"XML File Formats\">XML File Formats</link></variable>"
+msgstr "<variable id=\"xmlformat\"><link href=\"text/shared/00/00000021.xhp\" name=\"XML File Formats\">dhangiiwwan faayilii XML</link></variable>"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153417\n"
-"150\n"
+"00000021.xhp\n"
+"par_id3148919\n"
+"3\n"
"help.text"
-msgid "<variable id=\"autopilotmsimport\">Choose <emph>File - Wizards - Document Converter</emph></variable>"
-msgstr "<variable id=\"autopilotmsimport\"><emph>Faayilii - Masaka - Galmee Jijjiiraa</emph>filadhu</variable>"
+msgid "<ahelp hid=\"HID_DID_SAVE_PACKED_XML\">By default, $[officename] loads and saves files in the OpenDocument file format.</ahelp>"
+msgstr "<ahelp hid=\"HID_DID_SAVE_PACKED_XML\">Durtii dhaan, $[officename]niin faayiloota dhangiiwwan faayilii GalmeeBanuu keessatti fe'uu fi olkaa'uu.</ahelp>"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150715\n"
-"151\n"
+"00000021.xhp\n"
+"par_idN10725\n"
"help.text"
-msgid "<variable id=\"autopilotmsimport1\">Choose <emph>File - Wizards - Document Converter</emph></variable>"
-msgstr "<variable id=\"autopilotmsimport1\"><emph>Faayilii - Masaka - Galmee Jijjiiraa</emph>filadhu</variable>"
+msgid "The OpenDocument file format (ODF) is a standardized file format used by many software applications. You can find more information at the Wikipedia site: <link href=\"http://en.wikipedia.org/wiki/OpenDocument\">wikipedia.org/wiki/OpenDocument</link>."
+msgstr "Dhangiin faayilii GalmeeBanuu (ODF) dhangii faayilii mijataa fayyadama sooftiweerii baay`een gargaarama. Odeeffannoo dabalataa: <link href=\"http://en.wikipedia.org/wiki/OpenDocument\">wikipedia.org/wiki/OpenDocument</link> irraa barbaaduu dandeessa."
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154274\n"
-"149\n"
+"00000021.xhp\n"
+"hd_id3156324\n"
+"4\n"
"help.text"
-msgid "<variable id=\"autopilotmsimport2\">Choose <emph>File - Wizards - Document Converter</emph></variable>"
-msgstr "<variable id=\"autopilotmsimport2\"><emph>Faayilii - Masaka - Galmee Jijjiiraa</emph>filadhu</variable>"
+msgid "OpenDocument file format names"
+msgstr "Maqoolee dhangiiwwan faayilii GalmeeBanuu"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3146912\n"
-"171\n"
+"00000021.xhp\n"
+"par_id3154926\n"
+"5\n"
"help.text"
-msgid "<variable id=\"euro\">Choose <emph>File - Wizards - Euro Converter</emph></variable>"
-msgstr "<variable id=\"euro\"><emph>Faayilii - Masaka - Jijjiiraa Yuuroo</emph>filadhu</variable>"
+msgid "%PRODUCTNAME uses the following file formats:"
+msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152962\n"
-"198\n"
+"00000021.xhp\n"
+"par_id3157898\n"
+"6\n"
"help.text"
-msgid "Menu <emph>File - Wizards - Address Data Source</emph>"
-msgstr "Baafata <emph>Faayilii - Masaka - Teessoo Madda Deetaa</emph>"
+msgid "Document format"
+msgstr "Dhangii galmee"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145206\n"
-"191\n"
+"00000021.xhp\n"
+"par_id3149549\n"
+"7\n"
"help.text"
-msgid "<variable id=\"addressimport2\"><emph>Address Data Source Wizards</emph> - <emph>Additional settings</emph></variable>"
-msgstr "<variable id=\"addressimport2\"><emph>Masaka Teessoo Madda Deetaa</emph> - <emph>Qindaa'ina Dabalataa</emph></variable>"
+msgid "File extension"
+msgstr "Dheertoo faayilii"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154756\n"
-"192\n"
+"00000021.xhp\n"
+"par_idN10762\n"
"help.text"
-msgid "<variable id=\"addressimport3\"><emph>Address Data Source Wizards</emph> - <emph>Select table</emph></variable>"
-msgstr "<variable id=\"addressimport3\"><emph>Masaka Teessoo Madda Deetaa</emph> - <emph>Select table</emph></variable>"
+msgid "ODF Text"
+msgstr "Barruu ODF"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153924\n"
-"193\n"
+"00000021.xhp\n"
+"par_idN10767\n"
"help.text"
-msgid "<variable id=\"addressimport4\"><emph>Address Data Source Wizards</emph><emph>- Data source title</emph></variable>"
-msgstr "<variable id=\"addressimport4\"><emph>Masaka Teessoo Madda Deetaa</emph><emph>- Mataduree madda deetaa</emph></variable>"
+msgid "*.odt"
+msgstr "*.odt"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3148995\n"
-"194\n"
+"00000021.xhp\n"
+"par_idN1076D\n"
"help.text"
-msgid "<variable id=\"addressimport5\"><emph>Address Data Source Wizards</emph> - <emph>Field assignment</emph></variable>"
-msgstr "<variable id=\"addressimport5\"><emph>Masaka Teessoo Madda Deetaa</emph> - <emph>Moggaasa Dirree</emph></variable>"
+msgid "ODF Text Template"
+msgstr "Qajojii Barruu ODF"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3147338\n"
-"57\n"
+"00000021.xhp\n"
+"par_idN10772\n"
"help.text"
-msgid "<variable id=\"schliessen\">Choose <emph>File - Close</emph></variable>"
-msgstr "<variable id=\"schliessen\">Choose <emph>Faayilii - Cufi</emph></variable>"
+msgid "*.ott"
+msgstr "*.ott"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3156717\n"
-"10\n"
+"00000021.xhp\n"
+"par_idN10778\n"
"help.text"
-msgid "Choose <emph>File - Save</emph>"
-msgstr "<emph>Faayilii - Olkaa'i</emph>"
+msgid "ODF Master Document"
+msgstr "Galmee Hundataa ODF"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3147533\n"
-"84\n"
+"00000021.xhp\n"
+"par_idN1077D\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S"
+msgid "*.odm"
+msgstr "*.odm"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3148930\n"
-"11\n"
+"00000021.xhp\n"
+"par_idN10783\n"
"help.text"
-msgid "On Standard or Table Data Bar, click"
-msgstr "Waaltina yookan Gabatee Kabala Deetaa cuqaasi."
+msgid "HTML Document"
+msgstr "Galmee HTML"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3156712\n"
+"00000021.xhp\n"
+"par_idN10788\n"
"help.text"
-msgid "<image id=\"img_id3155939\" src=\"cmd/sc_save.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155939\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155939\" src=\"cmd/sc_save.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155939\">Sajoo</alt></image>"
+msgid "*.html"
+msgstr "*.html"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149109\n"
-"12\n"
+"00000021.xhp\n"
+"par_idN1078E\n"
"help.text"
-msgid "Save"
-msgstr "Olkaa'i"
+msgid "HTML Document Template"
+msgstr "Qajojii Galmee HTML"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN10F11\n"
+"00000021.xhp\n"
+"par_idN10793\n"
"help.text"
-msgid "<image id=\"img_id8276619\" src=\"cmd/sc_saveas.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id8276619\">Icon</alt></image>"
-msgstr "<image id=\"img_id8276619\" src=\"cmd/sc_saveas.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id8276619\">Sajoo</alt></image>"
+msgid "*.oth"
+msgstr "*.oth"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN10F2E\n"
+"00000021.xhp\n"
+"par_idN10799\n"
"help.text"
-msgid "Save As"
-msgstr "Akka ….olkaa'i"
+msgid "ODF Spreadsheet"
+msgstr "Waraqaadiriiroo ODF"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150300\n"
-"99\n"
+"00000021.xhp\n"
+"par_idN1079E\n"
"help.text"
-msgid "<variable id=\"htmlspeichern\">$[officename] Draw or $[officename] Impress menu <emph>File - Export</emph>, select \"HTML Document\" file type, this dialog opens automatically</variable>"
-msgstr "<variable id=\"htmlspeichern\">$[officename] Kaasuu/$[officename] Baafata Toleessaa<emph> Faayilii - Alergi</emph> \"Galmee HTML\" filadhu akaakuu faayilii, qaaqni ofumaan banama. </variable>"
+msgid "*.ods"
+msgstr "*.ods"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153387\n"
-"137\n"
+"00000021.xhp\n"
+"par_idN107A4\n"
"help.text"
-msgid "<variable id=\"htmlspeichern1\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 1 of the wizard</variable>"
-msgstr "<variable id=\"htmlspeichern1\">$[officename] Kaasuu/$[officename] Baafata Toleessaa<emph> Faayilii - Alergi</emph> HTML filadhu akaakuu faayilii Masaka fuula 1 </variable> ti."
+msgid "ODF Spreadsheet Template"
+msgstr "Qajojii Waraqaadiriiroo ODF"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154021\n"
-"138\n"
+"00000021.xhp\n"
+"par_idN107A9\n"
"help.text"
-msgid "<variable id=\"htmlspeichern2\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 2 of the wizard</variable>"
-msgstr "<variable id=\"htmlspeichern2\">$[officename] Kaasuu/$[officename] Baafata Toleessaa<emph> Faayilii - Alergi</emph> HTML filadhu akaakuu faayilii Masaka fuula 2 </variable> ti."
+msgid "*.ots"
+msgstr "*.ots"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3147246\n"
-"159\n"
+"00000021.xhp\n"
+"par_idN107AF\n"
"help.text"
-msgid "<variable id=\"htmlspeichern3\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 3 of the wizard</variable>"
-msgstr "<variable id=\"htmlspeichern3\">$[officename] Kaasuu/$[officename] Baafata Toleessaa<emph> Faayilii - Alergi</emph> HTML filadhu akaakuu faayilii gargaartu fuula 3 </variable> ti."
+msgid "ODF Drawing"
+msgstr "Fakkasaa ODF"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145131\n"
-"140\n"
+"00000021.xhp\n"
+"par_idN107B4\n"
"help.text"
-msgid "<variable id=\"htmlspeichern4\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 4 of the wizard</variable>"
-msgstr "<variable id=\"htmlspeichern4\">$[officename] Kaasuu/$[officename] Baafata Toleessaa<emph> Faayilii - Alergi</emph> HTML filadhu akaakuu faayilii Masaka fuula 4 </variable> ti."
+msgid "*.odg"
+msgstr "*.odg"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150235\n"
-"141\n"
+"00000021.xhp\n"
+"par_idN107BA\n"
"help.text"
-msgid "<variable id=\"htmlspeichern5\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 5 of the wizard</variable>"
-msgstr "<variable id=\"htmlspeichern5\">$[officename] Kaasuu/$[officename] Baafata Toleessaa<emph> Faayilii - Alergi</emph> HTML filadhu akaakuu faayilii Masaka fuula 5 </variable> ti."
+msgid "ODF Drawing Template"
+msgstr "Qajojii fakkasaa ODF"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145762\n"
-"142\n"
+"00000021.xhp\n"
+"par_idN107BF\n"
"help.text"
-msgid "<variable id=\"htmlspeichern6\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 6 of the wizard</variable>"
-msgstr "<variable id=\"htmlspeichern6\">$[officename] Kaasuu/$[officename] Baafata Toleessaa<emph> Faayilii - Alergi</emph> HTML filadhu akaakuu faayilii Masaka fuula 6 </variable> ti."
+msgid "*.otg"
+msgstr "*.otg"
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149735\n"
+"00000021.xhp\n"
+"par_idN107C5\n"
"help.text"
-msgid "<variable id=\"exportgraphic\">Choose <emph>File - Export</emph>, select a graphics file type, dialog opens automatically</variable>"
-msgstr "<variable id=\"bmpexport\"><emph>Faayilii - Alergii</emph>Filadhuu, yoo BMP akka akaakuu fayilitti filame, qaaqni ofumaan banama </variable>"
+msgid "ODF Presentation"
+msgstr "Dhiheessa ODF"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154901\n"
-"58\n"
+"00000021.xhp\n"
+"par_idN107CA\n"
"help.text"
-msgid "<variable id=\"saveall\">Choose <emph>File - Save All</emph></variable>"
-msgstr "<variable id=\"saveall\">Choose <emph>File - Save All</emph></variable>"
+msgid "*.odp"
+msgstr "*.odp"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152479\n"
-"59\n"
+"00000021.xhp\n"
+"par_idN107D0\n"
"help.text"
-msgid "<variable id=\"saveas\">Choose <emph>File - Save As</emph></variable>"
-msgstr "<variable id=\"saveas\"><emph>Faayilii- Olkaawwii Akka</emph>filadhu</variable>"
+msgid "ODF Presentation Template"
+msgstr "Qajojii dhiheessa ODF"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3148392\n"
-"60\n"
+"00000021.xhp\n"
+"par_idN107D5\n"
"help.text"
-msgid "Choose <emph>File - Reload</emph>"
-msgstr "<emph>Faayilii - Lamfe'i</emph> filadhu."
+msgid "*.otp"
+msgstr "*.otp"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3166425\n"
-"61\n"
+"00000021.xhp\n"
+"par_idN107DB\n"
"help.text"
-msgid "<variable id=\"info1\">Choose <emph>File - Properties</emph></variable>"
-msgstr "<variable id=\"info1\"><emph>Faayilii - Amala</emph>filadhu</variable>"
+msgid "ODF Formula"
+msgstr "Foormulaa ODF"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150381\n"
-"62\n"
+"00000021.xhp\n"
+"par_idN107E0\n"
"help.text"
-msgid "<variable id=\"info2\">Choose <emph>File - Properties - General</emph> tab</variable>"
-msgstr "<variable id=\"info2\"><emph>Faayilii - Amala - Waliigalaa</emph> caancala </variable> Filadhu."
+msgid "*.odf"
+msgstr "*.odf"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN11163\n"
+"00000021.xhp\n"
+"par_idN1085B\n"
"help.text"
-msgid "Choose <emph>File - Digital Signatures</emph>"
-msgstr "<emph>Faayilii - Lakqurxaawaa Mallattoo</emph> filadhu."
+msgid "ODF Database"
+msgstr "Kuusdeetaa ODF"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN11168\n"
+"00000021.xhp\n"
+"par_idN10860\n"
"help.text"
-msgid "Choose <emph>Tools - Macros - Digital Signature</emph>"
-msgstr "<emph>Meeshaa - Maayikiroo - Lakqurxaawaa Mallattoo</emph>filadhu."
+msgid "*.odb"
+msgstr "*.odb"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN11156\n"
+"00000021.xhp\n"
+"par_id9756157\n"
"help.text"
-msgid "Choose <emph>File - Properties - General</emph> tab, click <emph>Digital Signatures</emph> button"
-msgstr "Qabduu <emph>Faayilii - Amala - Waliigalaa</emph> caancala <emph>Lakqurxaawaa Mallattoo</emph> cuqaasi."
+msgid "%PRODUCTNAME Extension"
+msgstr "Dheertoo %PRODUCTNAME"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN1117E\n"
+"00000021.xhp\n"
+"par_id2089907\n"
"help.text"
-msgid "Double-click the Signature field on the Status Bar."
-msgstr "Dirree mallattoo lama-cuqaasi kabala haalhojii irratti."
+msgid "*.oxt"
+msgstr "*.oxt"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN11173\n"
+"00000021.xhp\n"
+"par_idN1088F\n"
"help.text"
-msgid "<variable id=\"digitalsigsel\">Choose <emph>File - Properties - General</emph> tab, click <emph>Digital Signatures</emph> button, then click <emph>Add</emph> button</variable>"
-msgstr "<variable id=\"digitalsigsel\"><emph>Faayilii - Amala - Waliigalaa</emph> caancala <emph>Lakqurxaawaa Mallattoo</emph> qabduu, cuqaasi <emph>Ida'a</emph> Qabduus </variable>cuqaasi."
+msgid "The HTML format is not an OpenDocument format."
+msgstr "Dhangiin HTML dhangii GalmeeBanuu tii miti."
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150662\n"
-"63\n"
+"00000021.xhp\n"
+"par_id4818872\n"
"help.text"
-msgid "<variable id=\"info3\">Choose <emph>File - Properties - Description</emph> tab</variable>"
-msgstr "<variable id=\"info3\"><emph>Faayilii - Amala - Ibsaa</emph> caancala </variable> Filadhu."
+msgid "ODF Chart is the name of the file format for stand alone charts. This format with the extension *.odc is currently not in use."
+msgstr "Taattoon ODF maqaa dhangii faayilii taatoowwan kophaa dhaabbataniit. Dhangiin dheertoo *.odc wajjinii kun amma faayidaa kennaa hin jiru."
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153792\n"
-"64\n"
+"00000021.xhp\n"
+"par_idN107E3\n"
"help.text"
-msgid "<variable id=\"info4\">Choose <emph>File - Properties - Custom Properties</emph> tab</variable>"
-msgstr "<variable id=\"info4\">Caancala <emph>Faayilii - Amaloota - Amaloota Mammiloo</emph> fili </variable>"
+msgid "Evolution of the OpenDocument format"
+msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153701\n"
-"65\n"
+"00000021.xhp\n"
+"par_id0514200811525257\n"
"help.text"
-msgid "<variable id=\"info5\">Choose <emph>File - Properties - Statistics</emph> tab</variable>"
-msgstr "<variable id=\"info5\"><emph>Faayilii - Amala - Xiinannoo</emph> caancala </variable> Filadhu."
+msgid "The OpenDocument format evolves over time."
+msgstr "Dhangiin BarruunBani sa`atii irra darbaa ofkeessatti qabata."
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id315370199\n"
+"00000021.xhp\n"
+"par_id0514200811565671\n"
"help.text"
-msgid "<variable id=\"infosec\">Choose <emph>File - Properties - Security</emph> tab</variable>"
-msgstr "<variable id=\"info2\"><emph>Faayilii - Amala - Waliigalaa</emph> caancala </variable> Filadhu."
+msgid "ODF version"
+msgstr "ODF version"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149570\n"
-"66\n"
+"00000021.xhp\n"
+"par_id0519200811530375\n"
"help.text"
-msgid "<variable id=\"info6\">Choose <emph>File - Properties - Internet</emph> tab</variable>"
-msgstr "<variable id=\"info6\"><emph>Faayilii - Amala - Interneetii</emph> caancala</variable>Filadhu."
+msgid "Date of standard approval by OASIS"
+msgstr "Date of standard approval by OASIS"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154275\n"
-"67\n"
+"00000021.xhp\n"
+"par_id0519200811530491\n"
"help.text"
-msgid "<variable id=\"dokuvorlage\">Choose <emph>File - Templates</emph></variable>"
-msgstr "<variable id=\"dokuvorlage\"><emph>Faayilii - Qajooliilee</emph>Filadhu</variable>"
+msgid "First supporting version of the software"
+msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153199\n"
-"68\n"
+"00000021.xhp\n"
+"par_id0514200811565662\n"
"help.text"
-msgid "<variable id=\"verwalten\">Choose <emph>File - Templates - Organize</emph></variable>"
-msgstr "<variable id=\"verwalten\"><emph>Faayilii - Qajoojiilee - Qindeessi</emph>Filadhu</variable>"
+msgid "ODF 1.0"
+msgstr "ODF 1.0"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3157970\n"
-"176\n"
+"00000021.xhp\n"
+"par_id0519200811530487\n"
"help.text"
-msgid "Choose <emph>File - Templates - Organize - Address Book</emph> button"
-msgstr "Qabduu <emph>Faayilii - Qajoojiilee - Teessoo Kitaabaa</emph> filadhu."
+msgid "2005-05-01"
+msgstr "2005-05-01"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155377\n"
-"178\n"
+"00000021.xhp\n"
+"par_id0519200811530455\n"
"help.text"
-msgid "Choose <emph>File - Templates - Address Book Source</emph>"
-msgstr "<emph>Faayilii - Qajoojiilee - Madda Teessoo Kitaabaa</emph> filadhu."
+msgid "OpenOffice.org 1.1.5 or StarOffice 7"
+msgstr "OpenOffice.org 1.1.5 or StarOffice 7"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154386\n"
-"177\n"
+"00000021.xhp\n"
+"par_id0514200811565787\n"
"help.text"
-msgid "Menu <emph>File - Templates - Address Book Source, </emph>then <emph>Configure</emph> button"
-msgstr "Baafata <emph>Faayilii - Qajoojiilee -Madda Teessoo Kitaabaa, </emph>itti aansuun qabduu<emph>Qindeessuu</emph>"
+msgid "ODF 1.1"
+msgstr "ODF 1.1"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154323\n"
-"189\n"
+"00000021.xhp\n"
+"par_id0519200811530479\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>View</emph> - <emph>Data sources</emph></caseinline><caseinline select=\"CALC\">Choose <emph>View</emph> - <emph>Data sources</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Mula'annoo</emph> - <emph>Madda Deetaa</emph></caseinline>filadhu<caseinline select=\"CALC\"><emph>Mul'annoo</emph> - <emph>Madda Deetaa</emph>filadhu</caseinline></switchinline>"
+msgid "2007-02-02"
+msgstr "2007-02-02"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150516\n"
-"172\n"
+"00000021.xhp\n"
+"par_id0519200811530467\n"
"help.text"
-msgid "<variable id=\"dokuspei\">Choose <emph>File - Templates - Save</emph></variable>"
-msgstr "<variable id=\"dokuspei\"><emph>Faayilii - Qajoojiilee - Olkaa'i</emph></variable>"
+msgid "OpenOffice.org 2.2 or StarOffice 8 Update 4"
+msgstr "OpenOffice.org 2.2 or StarOffice 8 Update 4"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149917\n"
-"173\n"
+"00000021.xhp\n"
+"par_id0514200811565762\n"
"help.text"
-msgid "<variable id=\"dokubear\">Choose <emph>File - Templates - Edit</emph></variable>"
-msgstr "<variable id=\"dokubear\"><emph>Faayilii - Qajoojiilee - Gulaali</emph>filadhu</variable>"
+msgid "ODF 1.2"
+msgstr "ODF 1.2"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154930\n"
-"69\n"
+"00000021.xhp\n"
+"par_id0519200811530440\n"
"help.text"
-msgid "Menu<emph> File - Page Preview</emph>"
-msgstr "<emph> Faayilii - Fuula Durargii</emph>"
+msgid "2011-09-30"
+msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN11366\n"
+"00000021.xhp\n"
+"par_id0519200811530471\n"
"help.text"
-msgid "<image id=\"img_id2603534\" src=\"cmd/sc_printpreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id2603534\">Icon</alt></image>"
-msgstr "<image id=\"img_id2603534\" src=\"cmd/sc_printpreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id2603534\">Sajoo</alt></image>"
+msgid "OpenOffice.org 3, StarOffice 9, Oracle Open Office"
+msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN11384\n"
+"00000021.xhp\n"
+"par_id1001200912381153\n"
"help.text"
-msgid "Page Preview"
-msgstr "Fuula Duraargii"
+msgid "ODF 1.2 (Extended)"
+msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3163722\n"
-"70\n"
+"00000021.xhp\n"
+"par_id100120091238112\n"
"help.text"
-msgid "Choose <emph>File - Printer Settings</emph>"
-msgstr "<emph>Faayilii - Maxxansa Qindeessaa</emph>"
+msgid "-"
+msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3148752\n"
-"71\n"
+"00000021.xhp\n"
+"par_id1001200912381174\n"
"help.text"
-msgid "Choose <emph>File - Templates - Organize - Commands (button)- Printer Settings</emph>"
-msgstr "<emph>Faayilii - Qajoojiilee - Qindeessi- Ajaja (qabduu)- Maxxansaa Qindeessuu</emph>"
+msgid "OpenOffice.org 3.2 or StarOffice 9.2"
+msgstr "OpenOffice.org 3 or StarOffice 9"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155529\n"
-"17\n"
+"00000021.xhp\n"
+"par_id0514200811525591\n"
"help.text"
-msgid "<variable id=\"senden\">Menu<emph> File - Send</emph></variable>"
-msgstr "<variable id=\"senden\">Baafata<emph> Faayilii - Ergi</emph></variable>"
+msgid "In current versions, you can select to save your documents using ODF 1.2 (default) or ODF 1.0/1.1 (for backward compatibility). Choose <item type=\"menuitem\">Tools - Options - Load/Save - General</item> and select the ODF format version."
+msgstr "OpenOffice.org 3 and StarOffice 9 keessatti, ODF 1.2 (default) ykn ODF 1.0/1.1 (for backward compatibility) gargaaramuun galmeewwan olkaa`uuf filuu ni dandeessa. <item type=\"menuitem\">Meeshaalee - Dirqaalee - Fe`i/Olkaa`i - Waliigala</item> fi dhangii ODF fooyya`aa fili."
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145386\n"
-"18\n"
+"00000021.xhp\n"
+"par_idN107E9\n"
"help.text"
-msgid "Choose <emph>File - Send - Document as E-mail</emph>"
-msgstr "<emph>Faayilii - Ergi - Galmee akka Imeelitti</emph>"
+msgid "If you want to exchange documents with users that still use OpenOffice.org 1 or StarOffice 7, save the document using the respectively named filter in the <emph>File type</emph> listbox."
+msgstr "Yoo galmeewwan itti fayyadamtoota waliin hanga gargaaramuu OpenOffice.org 1 or StarOffice 7 waljijjiiruu barbaade, galmee maqaa gingilchaa duraa duubaan sanduuqa tarree <emph>Akaakuu faayilii</emph> keessa olkaa`i.s"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN113AB\n"
+"00000021.xhp\n"
+"par_id3146907\n"
+"1\n"
"help.text"
-msgid "<image id=\"img_id4044007\" src=\"cmd/sc_sendmail.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4044007\">Icon</alt></image>"
-msgstr "<image id=\"img_id4044007\" src=\"cmd/sc_sendmail.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4044007\">Sajoo</alt></image>"
+msgid "If you want to define another file format as the default, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010200.xhp\" name=\"Load/Save - General\">Load/Save - General</link></emph> to find alternative file formats for each $[officename] document type."
+msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN113C8\n"
+"00000021.xhp\n"
+"hd_id3150398\n"
+"28\n"
"help.text"
-msgid "Document as E-mail"
-msgstr "Galmee akka Imeelitti"
+msgid "XML file structure"
+msgstr "Caasaa faayilii XML"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145269\n"
-"222\n"
+"00000021.xhp\n"
+"par_id3149649\n"
+"29\n"
"help.text"
-msgid "<variable id=\"export\">Choose <emph>File - Export</emph></variable>"
-msgstr "<variable id=\"export\"><emph>Faayilii - Alergii</emph>filadhu</variable>"
+msgid "Documents in OpenDocument file format are stored as compressed zip archives that contain XML files. To view these XML files, you can open the OpenDocument file with an unzip program. The following files and directories are contained within the OpenDocument files:"
+msgstr "Galmeewwan dhangii faayilii GalmeeBani keessatti akka furtuu wallitti qabamee faayilii XML ofkeessatti qabatuu olkaa`amu. Faayiloota XML kana ilaaluuf, faayilii GalmeeBani sagantaa hin qolofamneen banuu dandeessa. Faayilootnii fi galeelota kanneen armaan gadii Faayiloota GalmeeBani kassatti qabamu:"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3166421\n"
-"219\n"
+"00000021.xhp\n"
+"par_id3153178\n"
+"30\n"
"help.text"
-msgid "Choose <emph>File - Export as PDF</emph>"
-msgstr "<emph>Faayilii - Alergi akka PDF</emph>tti."
+msgid "The text content of the document is located in <emph>content.xml</emph>."
+msgstr "Qabeentoon barruu galmee <emph>content.xml</emph> keessatti argama."
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150521\n"
+"00000021.xhp\n"
+"par_id3154068\n"
+"31\n"
"help.text"
-msgid "<image id=\"img_id3147306\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3147306\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147306\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3147306\">Sajoo</alt></image>"
+msgid "By default, <emph>content.xml</emph> is stored without formatting elements like indentation or line breaks to minimize the time for saving and opening the document. On the <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - General</emph> tab page you can activate the use of indentations and line breaks by clearing the check box <emph>Size optimization for ODF format</emph>."
+msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155763\n"
-"220\n"
+"00000021.xhp\n"
+"par_id3145152\n"
+"32\n"
"help.text"
-msgid "Export Directly as PDF"
-msgstr "Akka PDF Sudaadan Alergi"
+msgid "The file <emph>meta.xml</emph> contains the meta information of the document, which you can enter under <emph>File - Properties</emph>."
+msgstr "Faayileen <emph>meta.xml</emph> galmee odeeffannoo meetaa qabaatu, Kan <emph>Faayilii - Amaloota</emph> jalatti saaguu dandeessa."
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145410\n"
-"210\n"
+"00000021.xhp\n"
+"par_id3150740\n"
+"33\n"
"help.text"
-msgid "Choose <emph>File - Send - E-mail as PDF</emph>"
-msgstr "<emph>Faayilii - Ergi - Imeelii akka PDF</emph>tti filadhu."
+msgid "If you save a document with a password, <emph>meta.xml</emph> will not be encrypted."
+msgstr "Yoo galmee iggita wajjin olkeesse, <emph>meta.xml</emph> hin hicciteeffamne."
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3159160\n"
-"74\n"
+"00000021.xhp\n"
+"par_id3150391\n"
+"34\n"
"help.text"
-msgid "<variable id=\"glo\">Choose <emph>File - Send - Create Master Document</emph></variable>"
-msgstr "<variable id=\"glo\"><emph>Faayilii - Ergi - Galmee Hundataa uumi</emph></variable>"
+msgid "The file <emph>settings.xml</emph> contains further information about the settings for this document."
+msgstr "Faayiliin <emph>settings.xml</emph>odeeffannoo baay'ee waa'ee qindaa'inaa galmeef qabaata."
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149951\n"
-"13\n"
+"00000021.xhp\n"
+"par_id3150447\n"
+"35\n"
"help.text"
-msgid "Choose <emph>File - Print</emph>"
-msgstr "Choose <emph>Faayilii - Maxxansaa</emph>"
+msgid "In <emph>styles.xml,</emph> you find the styles applied to the document that can be seen in the Styles and Formatting window."
+msgstr "<emph>styles.xml,</emph> keessatti akkaataawwan galmee kan foddaa akkaataawwanii fi dhangeessisuu ilaalamuu danda'an fayyadu argachuu."
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155259\n"
-"85\n"
+"00000021.xhp\n"
+"par_id3153353\n"
+"36\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+P"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+P"
+msgid "The <emph>meta-inf/manifest.xml</emph> file describes the structure of the XML file."
+msgstr "Faayiliin <emph>meta-inf/manifest.xml</emph> caasaa faayilii XML ibsa."
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153830\n"
-"3\n"
+"00000021.xhp\n"
+"par_id3153368\n"
+"37\n"
"help.text"
-msgid "On Standard Bar, click"
-msgstr "Kabala Waaltinaa Irratti cuqaasi"
+msgid "Additional files and folders can be contained in the packed file format."
+msgstr "Faayiloonni fi ukaankonni dabalataa dhangii faayilii qarqaba keeessatti qabamuu danda'a."
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155187\n"
+"00000021.xhp\n"
+"hd_id3154299\n"
+"38\n"
"help.text"
-msgid "<image id=\"img_id3153318\" src=\"cmd/sc_print.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3153318\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153318\" src=\"cmd/sc_print.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3153318\">Sajoo</alt></image>"
+msgid "Definition of the XML formats"
+msgstr "Qindaa'ina dhangiiwwan XML"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3151268\n"
-"4\n"
+"00000021.xhp\n"
+"par_idN10AAD\n"
"help.text"
-msgid "Print File Directly"
-msgstr "Faayilii Sududaan maxxansi"
+msgid "The schema for the OpenDocument formats can be found on the <link href=\"http://www.oasis-open.org\">www.oasis-open.org</link> web site."
+msgstr "Squariin dhangilee GalmeeBanuu iddoo saphaphuu <link href=\"http://www.oasis-open.org\">www.oasis-open.org</link> irratti argamuu danda'a."
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153581\n"
-"5\n"
+"00000021.xhp\n"
+"par_idN10AC5\n"
"help.text"
-msgid "On the <emph>Page View</emph><emph>Bar</emph> of a text document, click"
-msgstr "<emph>Fuula mul'annoo</emph>keessati<emph>Kabala</emph> galmee barruu cuqaasi."
+msgid "<link href=\"text/shared/autopi/01130000.xhp\">Document Converter Wizard</link>"
+msgstr "<link href=\"text/shared/autopi/01130000.xhp\">Masaka jijjiiraa galmee</link>"
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153068\n"
+"00000099.xhp\n"
+"tit\n"
"help.text"
-msgid "<image id=\"img_id3155362\" src=\"cmd/sc_printpagepreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155362\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155362\" src=\"cmd/sc_printpagepreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155362\">Sajoo</alt></image>"
+msgid "See also..."
+msgstr "dabalii ilaali..."
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3151239\n"
-"6\n"
+"00000099.xhp\n"
+"hd_id3147527\n"
+"1\n"
"help.text"
-msgid "Print Page Preview"
-msgstr "Fuula durargii maxxansi"
+msgid "<variable id=\"siehe\">See also... </variable>"
+msgstr "<variable id=\"siehe\">dabalii ilaali... </variable>"
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155869\n"
-"72\n"
+"00000099.xhp\n"
+"par_id3143206\n"
+"71\n"
"help.text"
-msgid "Choose <emph>File - Exit</emph>"
-msgstr "Choose <emph>Gulaali - Bahi</emph>"
+msgid "<variable id=\"userszenarien\"><link href=\"text/scalc/01/06050000.xhp\" name=\"Tools Menu - Scenarios\">Tools Menu - Scenarios</link></variable>"
+msgstr "<variable id=\"userszenarien\"><link href=\"text/scalc/01/06050000.xhp\" name=\"Tools Menu - Scenarios\">Baafata Meeshaalee - Mul'inoota</link></variable>"
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152382\n"
-"86\n"
+"00000099.xhp\n"
+"par_id3156069\n"
+"83\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q"
+msgid "On the help page for <link href=\"text/shared/guide/main.xhp\" name=\"$[officename] general\">$[officename] general</link> you can find instructions that are applicable to all modules, such as working with windows and menus, customizing $[officename], data sources, Gallery, and drag and drop."
+msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"$[officename] general\">Waliigala $[officename]</link>tiif fuula gargaarsaa irratti ajajoota muraalee hunda irratti kan tahu, kan akka foddootaa fi baaffattota, maamila $[officename], maddoota deetaa, galmaayaa faayataa fi Harkisuu fi kaa'uu argachuu dandeessa."
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149328\n"
-"75\n"
+"00000099.xhp\n"
+"par_id3149662\n"
+"84\n"
"help.text"
-msgid "<variable id=\"neuglobal\">Choose <emph>File - New - Master Document</emph></variable>"
-msgstr "<variable id=\"neuglobal\"><emph>Faayilii - Haraa - Galmee Hundataa </emph>filadhu</variable>"
+msgid "If you want help with another module, switch to the help for that module with the combo box in the navigation area."
+msgstr "Muraalee biroo wajjin gargaarsa yoo barbaadde, muraalee sanaaf sanduuqa makaa naannoo naanna'insaa keessaa wajjin gargaarsaaf bancufi."
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145827\n"
-"76\n"
+"00000099.xhp\n"
+"par_id3154408\n"
+"85\n"
"help.text"
-msgid "Choose <emph>File - Open</emph> - select under \"File type\": \"Text CSV\""
-msgstr "<emph>Faayilii - Banaa</emph> - \"Akaakuu faayilii\" jalaa fili: \"Barruu CSV\" filadhu."
+msgid "<variable id=\"winmanager\">The availability of this function depends on your X Window Manager. </variable>"
+msgstr "<variable id=\"winmanager\">Argamiinsi faankishinii kanaa Taliigaa Foddaa X kee irratti hundaa'a. </variable>"
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id6071352\n"
+"00000099.xhp\n"
+"par_idN10632\n"
"help.text"
-msgid "Choose <emph>Data - Text to Columns</emph> (Calc)"
-msgstr "Choose <emph>Deetaa - Barruu gara Sarjaatti</emph> (Calc)"
+msgid "<ahelp hid=\".uno:HelperDialog\">Allows you to activate the automatic Help Agent. You can also activate the Help Agent through <emph>$[officename] - General - Help Agent</emph> in the Options dialog box.</ahelp>"
+msgstr "<ahelp hid=\".uno:HelperDialog\">Iddoomaa Gargaarsa ofumaa kakaasuuf sii eyyama. Itti dabaltees Iddoomaa Gargaarsa <emph>Meeshaalee - Dirqaalee - $[officename] - Waliigala - Iddoomaa Gargaarsa</emph> keessatti kakaasuu dandeessa.</ahelp>"
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3148608\n"
-"81\n"
+"00000099.xhp\n"
+"par_idN10665\n"
"help.text"
-msgid "<variable id=\"epsexport\">Choose <emph>File - Export</emph>, if EPS is selected as file type, this dialog opens automatically</variable>"
-msgstr "<variable id=\"epsexport\"><emph>Faayilii - Alergii</emph>filadhu, yoo EPS akka faayilii akaakuutti filame, qaaqni ofumaan banama </variable>"
+msgid "<ahelp hid=\".uno:HelpTip\">Enables the display of icon names at the mouse pointer and other Help contents.</ahelp>"
+msgstr "<ahelp hid=\".uno:HelpTip\">Mul'ina maqaalee sajoo akeektuu hantuutte fi qabeentota Gargaarsaa biroo irratti dandeessisa.</ahelp>"
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150107\n"
-"87\n"
+"00000099.xhp\n"
+"par_idN1067C\n"
"help.text"
-msgid "<variable id=\"pbmppmpgm\">Choose <emph>File - Export</emph>, if PBM, PPM or PGM is selected as file type, the dialog opens automatically</variable>"
-msgstr "<variable id=\"pbmppmpgm\"><emph>Faayilii - Alergi</emph>filadhuu, yoo PBM, PPM yookan PGM akka akaakuu faayiliitti yoo filame, qaaqni ofumaan banama </variable>"
+msgid "<ahelp hid=\".uno:ActiveHelp\">Enables the display of a brief description of menus and icons at the mouse pointer.</ahelp>"
+msgstr "<ahelp hid=\".uno:ActiveHelp\">Mul'ina ibsa cuunfamaa bafattootaa fi sajoo akeektuu hantuutte irratti dandeessisa.</ahelp>"
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145305\n"
-"96\n"
+"00000099.xhp\n"
+"par_id6200750\n"
"help.text"
-msgid "<variable id=\"versionen\"><variable id=\"autopilotberichtfeldauswahl\">Choose <emph>File - Versions</emph></variable></variable>"
-msgstr "<variable id=\"versionen\"><variable id=\"autopilotberichtfeldauswahl\"> <emph>Faayilii - Fooyya'aa</emph>filadhu</variable></variable>"
+msgid "Some of the shortcut keys may be assigned to your desktop system. Keys that are assigned to the desktop system are not available to %PRODUCTNAME. Try to assign different keys either for %PRODUCTNAME, in <emph>Tools - Customize - Keyboard</emph>, or in your desktop system."
+msgstr "Furtuuleen qaxxaamura tokko tokkoo sirna minjaalee keef ramadame. Furtuuleen sirna minjaaleetiif ramadaman %PRODUCTNAME tiif hin argaman. Furtuulee adda addaa %PRODUCTNAME <emph>Meeshaalee - Maamileesi - Minjaalee</emph>, ykn sirna minjaalee keessatiif ramaduuf yaali."
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
+"00000200.xhp\n"
"tit\n"
"help.text"
-msgid "Insert Menu"
-msgstr "Baafata Saagi"
-
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"hd_id3156324\n"
-"1\n"
-"help.text"
-msgid "Insert Menu"
-msgstr "Baafata Saagi"
+msgid "Graphics Export Options"
+msgstr "Dirqala Alerguu EPS"
-#: 00000404.xhp
-#, fuzzy
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3153808\n"
-"28\n"
+"00000200.xhp\n"
+"hd_id3150127\n"
"help.text"
-msgid "<variable id=\"notiz\">Choose <emph>Insert - Comment</emph></variable>"
-msgstr "<variable id=\"eispa\"><emph>Saagi - Tarjoota</emph> filadhu</variable>"
+msgid "Graphics Export Options"
+msgstr "Dirqala Alerguu EPS"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3155619\n"
-"71\n"
+"00000200.xhp\n"
+"par_id3160463\n"
"help.text"
-msgid "Choose <emph>Insert - Picture - Scan</emph>"
-msgstr "<emph>Saagi - Fakkatti - Kaastuu</emph> Fili"
+msgid "<ahelp hid=\".\" visibility=\"visible\">Defines graphics export options.</ahelp>"
+msgstr "<ahelp hid=\"\" visibility=\"visible\">Mul'ina kaardiiwwan daldalaa kee qindeessi.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3150502\n"
-"30\n"
+"00000200.xhp\n"
+"par_id1\n"
"help.text"
-msgid "Choose <emph>Insert - Picture - Scan - Select Source</emph>"
-msgstr "<emph>Saagi - Fakkatti - Kaastuu Madda Fili</emph> Filadhu"
+msgid "When you export graphical elements to a file, you can select the file type. For most supported file types a dialog opens where you can setup export options."
+msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3155934\n"
-"32\n"
+"00000200.xhp\n"
+"par_id2\n"
"help.text"
-msgid "Choose <emph>Insert - Picture - Scan - Request</emph>"
-msgstr "<emph>Saagi - Fakkatti - Kaastuu Gaafata</emph> Fili"
+msgid "The following file types do not show an options dialog: PWP, RAS, SVG, TIFF, XPM."
+msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3143281\n"
-"34\n"
+"00000200.xhp\n"
+"par_id3\n"
"help.text"
-msgid "Choose <emph>Insert - Special Character</emph>"
-msgstr "<emph>Saagi - Arfii Addaa</emph> Fili"
+msgid "The other file types show options dialogs where you can set the width and height of the exported image."
+msgstr ""
-#: 00000404.xhp
-#, fuzzy
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3149525\n"
-"35\n"
+"00000200.xhp\n"
+"par_id4\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Choose <emph>Format - Bullets and Numbering - Customize - Character</emph> button</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Dhangii - Rasaasotaa fi Lakkawwii - Maamiltoo - Arfii</emph> qabduu </caseinline></switchinline>"
+msgid "Depending on the file type, you can specify some more options. Press Shift+F1 and hover over the control to see an extended help text."
+msgstr ""
-#: 00000404.xhp
-#, fuzzy
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3152372\n"
-"55\n"
+"00000200.xhp\n"
+"par_id388\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Choose <emph>Format - Bullets and Numbering - Customize - Character</emph> button</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Qabduu <emph>Dhangii - Kasaasaalee fi Taasiisaa Lakkoofsaa - Maamilleesi - Aritii</emph> fili </caseinline></switchinline>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies the measurement units.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gatii irra deddeebi'e maxxansuuf ifteessa.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
#, fuzzy
msgctxt ""
-"00000404.xhp\n"
-"par_id3156560\n"
-"36\n"
+"00000200.xhp\n"
+"hd_id3151330\n"
"help.text"
-msgid "Open the <emph>Insert</emph> toolbar, click"
-msgstr "Kamshaa <emph>Saagi</emph> Bani,"
+msgid "Width"
+msgstr "#-#-#-#-# autopi.po (PACKAGE VERSION) #-#-#-#-#\\nYabbina\\n#-#-#-#-# shared.po (PACKAGE VERSION) #-#-#-#-#\\nBal`ina"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3153527\n"
+"00000200.xhp\n"
+"par_id3154561\n"
"help.text"
-msgid "<image id=\"img_id3153748\" src=\"cmd/sc_bullet.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153748\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153748\" src=\"cmd/sc_bullet.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153748\">Sajoo</alt></image>"
+msgid "<ahelp hid=\".\" visibility=\"visible\">Specifies the width.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gatii irra deddeebi'e maxxansuuf ifteessa.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3149751\n"
-"37\n"
+"00000200.xhp\n"
+"hd_id3156027\n"
"help.text"
-msgid "Special Character"
-msgstr "Arfii Addaa"
+msgid "Height"
+msgstr "Hojjaa"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN107CD\n"
+"00000200.xhp\n"
+"par_id3147226\n"
"help.text"
-msgid "<variable id=\"moviesound\">Choose <emph>Insert - Movie and Sound</emph></variable>"
-msgstr "<variable id=\"moviesound\"><emph>Saagi - Filmii fi Saagalee</emph>Fili</variable>"
+msgid "<ahelp hid=\".\" visibility=\"visible\">Specifies the height.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gatii irra deddeebi'e maxxansuuf ifteessa.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN1085D\n"
+"00000200.xhp\n"
+"hd_id3150944\n"
"help.text"
-msgid "Movie and Sound"
-msgstr "Filmii fi Sagalee"
+msgid "Resolution"
+msgstr "Qulqullina"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3147242\n"
-"5\n"
+"00000200.xhp\n"
+"par_id3150129\n"
"help.text"
-msgid "<variable id=\"objekteinf\">Choose <emph>Insert - Object</emph></variable>"
-msgstr "<variable id=\"objekteinf\"><emph>Saagi - Wanta</emph>Fili</variable>"
+msgid "<ahelp hid=\".\">Enter the image resolution. Select the measurement units from the list box.</ahelp>"
+msgstr "<ahelp hid=\".\">Nagaa gaafacha hammata. Nagaa gafaacha tarree sanduuqicha keessaa fili.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3152996\n"
-"6\n"
+"00000200.xhp\n"
+"hd_id3143534\n"
"help.text"
-msgid "Choose <emph>Insert - Object - OLE Object</emph>"
-msgstr "<emph>Saagi - Wanta - OLE Wanta</emph> Fili"
+msgid "More options"
+msgstr "Dirqala Dabalaa"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3146806\n"
-"7\n"
+"00000200.xhp\n"
+"par_id10\n"
"help.text"
-msgid "Open the <emph>Insert</emph> toolbar, click"
-msgstr "<emph>Kamshaa Saagi Bani</emph>,"
+msgid "For JPEG files you can set the color depth and the quality."
+msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3150254\n"
+"00000200.xhp\n"
+"par_id435923952\n"
"help.text"
-msgid "<image id=\"img_id3156305\" src=\"cmd/sc_insobjctrl.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156305\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156305\" src=\"cmd/sc_insobjctrl.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156305\">Sajoo</alt></image> cuqaasi"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the color depth from 8 bit grayscale or 24 bit true color.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tartiiba tarreeffamaa filadhu.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3145417\n"
-"8\n"
+"00000200.xhp\n"
+"par_id355152952\n"
"help.text"
-msgid "OLE Object"
-msgstr "Wanta OLE"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the compression for the export. A high compression means a smaller, but slower to load image.</ahelp>"
+msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3153087\n"
-"9\n"
+"00000200.xhp\n"
+"par_id355152953\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Choose <emph>Insert - Object - Plug-in</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\"> <emph>Saagi - Wanta - Itti-Suuqii</emph>Fili</caseinline></switchinline>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the quality for the export. Choose from a low quality with minimal file size, up to a high quality and big file size</ahelp>"
+msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3149785\n"
-"10\n"
+"00000200.xhp\n"
+"par_id11\n"
"help.text"
-msgid "Open the <emph>Insert </emph>toolbar, click"
-msgstr "Kamshaa <emph>Saagi</emph> Bani,"
+msgid "For BMP files you can set the compression and the RLE encoding."
+msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3154897\n"
+"00000200.xhp\n"
+"par_id312346798\n"
"help.text"
-msgid "<image id=\"img_id3146847\" src=\"cmd/sc_insertplugin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146847\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146847\" src=\"cmd/sc_insertplugin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146847\">Sajoo</alt></image> cuqaasi"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies RLE (Run Length Encoding) to the BMP graphics.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Saxaatoo keessaa sakattaa,uuf sajoo kana filadhu.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3148474\n"
-"11\n"
+"00000200.xhp\n"
+"par_id12\n"
"help.text"
-msgid "Plug-in"
-msgstr "Itti-suuqii"
+msgid "For PBM, PGM, and PPM files you can set the encoding."
+msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3153880\n"
-"53\n"
+"00000200.xhp\n"
+"par_id344441\n"
"help.text"
-msgid "Choose <emph>Insert - Object - Sound</emph>"
-msgstr "<emph>Saagi - Wanta - Sagalee</emph> Fili"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in binary format. The resulting file is smaller than a text file.</ahelp>"
+msgstr "<ahelp hid=\".\">Faayilii dhangii lameeetiin alergi. Faayiliin bu'aa irra xiqqaa barruu faayilii (ASCII) ti.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3143278\n"
-"54\n"
+"00000200.xhp\n"
+"par_id3555783\n"
"help.text"
-msgid "Choose <emph>Insert - Object - Video</emph>"
-msgstr "<emph>Saagi - Wanta - Vidiyoo</emph> Fili"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in ASCII text format. The resulting file is larger than a binary file.</ahelp>"
+msgstr "<ahelp hid=\".\">Faayilii dhangii barruu ASCII tiin alergi. Akaakuun faayilii kun irra gudda lameeti.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3150393\n"
-"15\n"
+"00000200.xhp\n"
+"par_id13\n"
"help.text"
-msgid "Choose <emph>Insert - Object - Formula</emph>"
-msgstr "<emph>Saagi - Wanta - Foormulaa</emph> Fili"
+msgid "For PNG files you can set the compression and the interlaced mode."
+msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3153056\n"
-"16\n"
+"00000200.xhp\n"
+"par_id35674840\n"
"help.text"
-msgid "Open the <emph>Insert </emph>toolbar, click"
-msgstr "Kamshaa <emph>Saagi</emph> Bani,"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the graphic is to be saved in interlaced mode.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Duubbeen wanta filamee ifaa ykn opaque ta'uu isaa ifteessa.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3148559\n"
+"00000200.xhp\n"
+"par_id14\n"
"help.text"
-msgid "<image id=\"img_id3149933\" src=\"cmd/sc_insertobjectstarmath.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149933\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149933\" src=\"cmd/sc_insertobjectstarmath.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149933\">Sajoo</alt></image> cuqaasi"
+msgid "For GIF files you can set the transparency and the interlaced mode."
+msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3155858\n"
-"17\n"
+"00000200.xhp\n"
+"par_id31456456938\n"
"help.text"
-msgid "Formula"
-msgstr "Foormulaa"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Color Replacer to set the transparent color in the picture.</ahelp>"
+msgstr "<ahelp hid=\"VCL:CHECKBOX:DLG_EXPORT_GIF:CBX_TRANSLUCENT\">Duubbee fakkii akka iftoomatti olkaa'uu keef ifteessa. Fakkoo GIFii keessatti wantoota qofatu mul'ata. Haalluu iftoomaa fakkii keessatti qindeessuuf coccobsaa agartuu fayyadami.</ahelp>"
-#: 00000404.xhp
-#, fuzzy
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3153144\n"
-"38\n"
+"00000200.xhp\n"
+"par_id15\n"
"help.text"
-msgid "Choose <emph>Format - Chart Type</emph>"
-msgstr "<emph>Dhangii - Akaakuu Taattoo</emph> Fili"
+msgid "For EPS files you can set the preview, the color format, the compression, and the version."
+msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3147578\n"
-"39\n"
+"00000200.xhp\n"
+"par_id3147779948\n"
"help.text"
-msgid "Choose <emph>Insert - Object - Chart </emph>"
-msgstr "<emph>Saagi - Wanta - Taattoo</emph> Fili"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">You must print an EPS file with a PostScript printer. Other printers will only print the embedded preview.</caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Faayilii EPS maxxansa barruu boodatiin maxxansuu qabda. Maxxansaan biroo durargii irra ta'aa qofa maxxansa.</caseinline></switchinline>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3154011\n"
-"40\n"
+"00000200.xhp\n"
+"par_id993155271\n"
"help.text"
-msgid "Choose <emph>Format - Chart Type</emph>"
-msgstr "<emph>Dhangii - Akaakuu Taattoo</emph> Fili"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether a preview image is exported in the TIFF format together with the actual PostScript file.</ahelp>"
+msgstr "<ahelp hid=\"GOODIES:CHECKBOX:DLG_EXPORT_EPS:CB_PREVIEW_TIFF\">Fakkuun durargii dhangii TIFF keessatti alergamuu fi dhiisuu faayilii barruu boodaa isa qabatamaa waliin ta'uu ibsa.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3153573\n"
-"41\n"
+"00000200.xhp\n"
+"par_id993144740\n"
+"30\n"
"help.text"
-msgid "Choose <emph>Insert - Object - Chart</emph>"
-msgstr "<emph>Saagi - Wanta - Taattoo</emph> Fili"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether a monochrome preview graphic in EPSI format is exported together with the PostScript file. This format only contains printable characters from the 7-bit ASCII code.</ahelp>"
+msgstr "<ahelp hid=\"GOODIES:CHECKBOX:DLG_EXPORT_EPS:CB_PREVIEW_EPSI\">Durargiin monokiroomii saaxatoo dhangii EPSI keessatti barruu boodaa waliin alergamuuf dhiisuu ibsa.</ahelp> Dhangiin kun fungoo biitii-7 lakkadda ASCII irraa arfii maxxanfamaa qofa of keessaa qaba."
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3159179\n"
-"42\n"
+"00000200.xhp\n"
+"par_id993150935\n"
+"12\n"
"help.text"
-msgid "Choose <emph>Format - Chart Type</emph>"
-msgstr "<emph>Dhangii - Akaakuu Taattoo</emph> Fili"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2.</ahelp>"
+msgstr "<ahelp hid=\"GOODIES:RADIOBUTTON:DLG_EXPORT_EPS:RB_LEVEL1\">Saaxatoon sadarkaa kanatti hin jiraatu. Dirqaala sadarkaa 1 <emph>filadhu</emph>yoo barruun booda maxxansaa keetii dandeetti sadarkaa 2 affeeruu baate.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3159196\n"
-"43\n"
+"00000200.xhp\n"
+"par_id993159201\n"
+"14\n"
"help.text"
-msgid "Choose <emph>Insert - Object - Chart</emph>"
-msgstr "<emph>Saagi - Wanta - Taattoo</emph> Fili"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics.</ahelp>"
+msgstr "<ahelp hid=\"GOODIES:RADIOBUTTON:DLG_EXPORT_EPS:RB_LEVEL2\">Dirqala <emph> Sadarkaa 2</emph>filadhu yoo bahaan mi'aa surxiqqoo halluun, fakkii dibduu saaxatoo fi cafaqoo saaxatoo deegare.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3149664\n"
+"00000200.xhp\n"
+"par_id319947250\n"
"18\n"
"help.text"
-msgid "Choose <emph>Insert - Object - Chart</emph>"
-msgstr "<emph>Saagi - Wanta - Taattoo</emph> Fili"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in color.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Lafoo taattoo dhangeessa.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3154921\n"
-"19\n"
+"00000200.xhp\n"
+"par_id993147088\n"
+"20\n"
"help.text"
-msgid "Open the <emph>Insert </emph>toolbar, click"
-msgstr "Kamshaa <emph>Saagi</emph> Bani,"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in grayscale tones.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gatii giddu galeessaa sararaa dhangeessa.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3156005\n"
+"00000200.xhp\n"
+"par_id399153683\n"
+"24\n"
"help.text"
-msgid "<image id=\"img_id3153739\" src=\"cmd/sc_drawchart.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153739\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153739\" src=\"cmd/sc_drawchart.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153739\">Sajoo</alt></image> cuqaasi"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">LZW compression is the compression of a file into a smaller file using a table-based lookup algorithm.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">waayoo gama taattoo jalaan qabachiisi.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3145749\n"
-"20\n"
+"00000200.xhp\n"
+"par_id319952780\n"
+"26\n"
"help.text"
-msgid "Chart"
-msgstr "Taattoo"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies that you do not wish to use compression.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Gatii irra deddeebi'e maxxansuuf ifteessa.</ahelp>"
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3155513\n"
-"44\n"
+"00000200.xhp\n"
+"par_id3147250\n"
"help.text"
-msgid "Choose <emph>Insert - Picture - From File</emph>"
-msgstr "<emph>Saagi - Fakkatti - Faayiliirraa</emph> Fili"
+msgid "See <link href=\"text/shared/00/00000020.xhp\" name=\"Import and Export Filter Information\">Import and Export Filter Information</link> for more information about filters."
+msgstr "<link href=\"text/shared/00/00000020.xhp\" name=\"Import and Export Filter Information\">Odeeffannoo Calaltuu Alaagi fi Alergii</link> odeeffannoo dabalataa waa'ee calaltuuwanii ilaali."
-#: 00000404.xhp
+#: 00000206.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3155308\n"
-"45\n"
+"00000206.xhp\n"
+"tit\n"
"help.text"
-msgid "Open the <emph>Insert</emph> toolbar, click"
-msgstr "Kamshaa <emph>Saagi</emph> Bani,"
+msgid "Dif Import/Export/ Lotus import/ dBASE import"
+msgstr "Alaagi/Alergii Dif/alaagi luutasi/ alaagii dBASE"
-#: 00000404.xhp
+#: 00000206.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3145594\n"
+"00000206.xhp\n"
+"hd_id3155354\n"
+"1\n"
"help.text"
-msgid "<image id=\"img_id3144764\" src=\"cmd/sc_objectcatalog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Icon</alt></image>"
-msgstr "<image id=\"img_id3144764\" src=\"cmd/sc_objectcatalog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Sajoo</alt></image>"
+msgid "Dif Import/Export/ Lotus import/ dBASE import"
+msgstr "Alaagi/Alergii Dif/alaagi luutasi/ alaagii dBASE"
-#: 00000404.xhp
+#: 00000206.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3149960\n"
-"46\n"
+"00000206.xhp\n"
+"par_id3150620\n"
+"4\n"
"help.text"
-msgid "From File"
-msgstr "Faayiliirraa"
+msgid "Defines the options for import/export. These dialogs will be automatically shown if the corresponding file type is selected."
+msgstr "Dirqalee alaagi/alergiif qindeessa. Qaaqonni kun ofumaan mul'ifamu yoo akaakuun faayilii isa gituu filatame."
-#: 00000404.xhp
+#: 00000206.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3150037\n"
-"25\n"
+"00000206.xhp\n"
+"hd_id3149000\n"
+"2\n"
"help.text"
-msgid "Choose <emph>Insert - Floating Frame</emph>"
-msgstr "<emph>Saagi - Wanta - Goodayyaa Bololi'aa</emph> fili"
+msgid "Character set"
+msgstr "Qindaa'ina arfii"
-#: 00000404.xhp
+#: 00000206.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3083281\n"
-"26\n"
+"00000206.xhp\n"
+"par_id3152790\n"
+"5\n"
"help.text"
-msgid "Open the <emph>Insert </emph>toolbar, click"
-msgstr "Kamshaa <emph>Saagi</emph> Bani,"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_IMPORTOPT:LB_FONT\">Select the character set from the options used for import/export.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_IMPORTOPT:LB_FONT\">Qindaa'ina arfii dirqaalee alaagi/alergiif fayyade irraa fili.</ahelp>"
-#: 00000404.xhp
+#: 00000206.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3168607\n"
+"00000206.xhp\n"
+"par_id3152942\n"
+"3\n"
"help.text"
-msgid "<image id=\"img_id3147482\" src=\"cmd/sc_insertobjectfloatingframe.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147482\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147482\" src=\"cmd/sc_insertobjectfloatingframe.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147482\">Sajoo</alt></image> cuqaasi"
+msgid "For further information regarding filters, refer to the topic: <link href=\"text/shared/00/00000020.xhp\" name=\"Information about Import and Export Filters\">Information about Import and Export Filters</link>."
+msgstr "Calaltuu ilaalchisee odeeffannoo baay'ee argachuuf, mataduree: <link href=\"text/shared/00/00000020.xhp\" name=\"Information about Import and Export Filters\">Odeeffannoo waa'ee Calaltiiwwan Alaagi fi Alergii</link> ilaali."
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3148588\n"
-"27\n"
+"00000207.xhp\n"
+"tit\n"
"help.text"
-msgid "Floating Frame"
-msgstr "Gooddayyaa Bololi'aa"
+msgid "Export text files"
+msgstr "Faayiloota barruu alergii"
-#: 00000404.xhp
-#, fuzzy
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3150396\n"
-"47\n"
+"00000207.xhp\n"
+"hd_id3153116\n"
+"1\n"
"help.text"
-msgid "<variable id=\"filterauswahl\">Open a file of a type that is unknown to %PRODUCTNAME and that is no text file</variable>"
-msgstr "<variable id=\"filterauswahl\">Akaakuu faayilii %PRODUCTNAME hin beekamnee fi faayilii barruu hin taanee fili </variable>"
+msgid "Export text files"
+msgstr "Faayiloota barruu alergii"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10DDC\n"
+"00000207.xhp\n"
+"par_id3150379\n"
+"7\n"
"help.text"
-msgid "<image id=\"Graphic2\" src=\"cmd/sc_fontworkgalleryfloater.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr "<image id=\"Graphic2\" src=\"cmd/sc_fontworkgalleryfloater.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Sajoo</alt></image> cuqaasi"
+msgid "The <emph>Export text files</emph> dialog allows you to define the export options for text files. The dialog will be displayed if you save spreadsheet data as file type \"Text CSV\", and if the <emph>Edit filter settings</emph> check box is marked in the <emph>Save As</emph> dialog."
+msgstr "Qaaqni <emph>Faayiloota barruu alergii</emph> dirqaalee alergii faayilootaaf akka qindeessituuf siif eyyama. Yoo deeetaa waraqaa diriiroo akka faayilii \"Text CSV\" olkeesse fi yoo saanduqni mirkaneessa <emph>Qindaa'ina calaltuu gulaaluu</emph> qaaqa <emph>Akka olkaa'i</emph>keessatti mallattoon itti godhame qaaqni ni mul'ata."
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10DD1\n"
+"00000207.xhp\n"
+"hd_id3155577\n"
+"2\n"
"help.text"
-msgid "Fontwork Gallery"
-msgstr "Kuusaa Faayaa Dalaga bocquu"
+msgid "Field options"
+msgstr "Dirqalee dirree"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10EA9\n"
+"00000207.xhp\n"
+"par_id3152427\n"
+"8\n"
"help.text"
-msgid "<image id=\"Graphic3\" src=\"cmd/sc_basicshapes.diamond.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr "<image id=\"Graphic3\" src=\"cmd/sc_basicshapes.diamond.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Sajoo</alt></image>"
+msgid "Defines the field separator, text separator and character set that is used for the text export."
+msgstr "Adda baasaa dirree, adda baasaa barruu fi qindaa'ina kan alergii barruuf qindeessa."
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10ED8\n"
+"00000207.xhp\n"
+"hd_id3152876\n"
+"5\n"
"help.text"
-msgid "Basic Shapes"
-msgstr "Boboca Bu'uuraa"
+msgid "Character set"
+msgstr "Qindaa'ina arfii"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10EEE\n"
+"00000207.xhp\n"
+"par_id3154689\n"
+"11\n"
"help.text"
-msgid "<image id=\"Graphic4\" src=\"cmd/sc_symbolshapes.smiley.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr "<image id=\"Graphic4\" src=\"cmd/sc_symbolshapes.smiley.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Sajoo</alt></image>"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_IMPORTOPT:DDLB_FONT\">Specifies the character set for text export.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_IMPORTOPT:DDLB_FONT\">Qindaa'ina arfii alergii barruuf.</ahelp>"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10F1D\n"
+"00000207.xhp\n"
+"hd_id3145138\n"
+"3\n"
"help.text"
-msgid "Symbol Shapes"
-msgstr "Boboca Mallattoo"
+msgid "Field delimiter"
+msgstr "Daangessaa dirree"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10F33\n"
+"00000207.xhp\n"
+"par_id3150838\n"
+"9\n"
"help.text"
-msgid "<image id=\"Graphic41\" src=\"cmd/sc_arrowshapes.left-right-arrow.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr "<image id=\"Graphic41\" src=\"cmd/sc_arrowshapes.left-right-arrow.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Sajoo</alt></image>"
+msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_IMPORTOPT:ED_FIELDSEP\">Choose or enter the field delimiter, which separates data fields.</ahelp>"
+msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_IMPORTOPT:ED_FIELDSEP\">Daangessaa dirree fili ykn saagi, dirroota deetaa kan adda baasu.</ahelp>"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10F62\n"
+"00000207.xhp\n"
+"hd_id3154682\n"
+"4\n"
"help.text"
-msgid "Block Arrows"
-msgstr "Garee Xiyyaalee"
+msgid "Text delimiter"
+msgstr "Daangessaa barruu"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10F78\n"
+"00000207.xhp\n"
+"par_id3154863\n"
+"10\n"
"help.text"
-msgid "<image id=\"Graphic5\" src=\"cmd/sc_flowchartshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr "<image id=\"Graphic5\" src=\"cmd/sc_flowchartshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Sajoo</alt></image>"
+msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_IMPORTOPT:ED_TEXTSEP\">Choose or enter the text delimiter, which encloses every data field.</ahelp>"
+msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_IMPORTOPT:ED_TEXTSEP\">Daangessaa barruu fili ykn saagi, kan dirree deetaa baay'ee qabatu.</ahelp>"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10FA7\n"
+"00000207.xhp\n"
+"hd_id783149793\n"
"help.text"
-msgid "Flowcharts"
-msgstr "Taattoo Yaa'aa"
+msgid "Quote all text cells"
+msgstr ""
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10FBD\n"
+"00000207.xhp\n"
+"par_id3152778363\n"
"help.text"
-msgid "<image id=\"Graphic6\" src=\"cmd/sc_calloutshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr "<image id=\"Graphic6\" src=\"cmd/sc_calloutshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Sajoo</alt></image>"
+msgid "<ahelp hid=\".\">Exports all text cells with leading and trailing quote characters as set in the Text delimiter box. If not checked, only those text cells get quoted that contain the Field delimiter character.</ahelp>"
+msgstr ""
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10FEC\n"
+"00000207.xhp\n"
+"hd_id7145298\n"
"help.text"
-msgid "Callouts"
-msgstr "Balballoo"
+msgid "Save cell content as shown"
+msgstr "Qabeentoo seelii akka mul'atetti olkaa'i"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN11002\n"
+"00000207.xhp\n"
+"par_id5719779\n"
"help.text"
-msgid "<image id=\"Graphic7\" src=\"cmd/sc_starshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr "<image id=\"Graphic7\" src=\"cmd/sc_starshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Sajoo</alt></image>"
+msgid "<ahelp hid=\".\">Enabled by default, data will be saved as displayed, including applied number formats. If this checkbox is not marked, raw data content will be saved, as in older versions of the software.</ahelp>"
+msgstr "<ahelp hid=\".\">Durtiidhaan dandeessifame, deetaan akka mul'atutti olkaa'ame, dhangii lakkoofsa fayyade dabalatee. Yoo saanduqni kun mallattoon itti hin godhamne, qabeentoon deetaa tarree ni olk'aama, akka fooyya'ina duraa %PRODUCTNAME.</ahelp>ti."
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN11031\n"
+"00000207.xhp\n"
+"par_id3541062\n"
"help.text"
-msgid "Stars"
-msgstr "Urjiilee"
+msgid "Depending on the number format, saving cell content as shown may write values that during an import cannot be interpreted as numerical values anymore."
+msgstr "Dhangii lakkoofsa irratti hundaa'uun, qabeentoota seelii gatiiwwan barreefama koo kan yeroo alaagi akka gatiiwwan lakkoofsatti hin hiikamne mul'atu olkaa'uu."
-#: 00000409.xhp
+#: 00000207.xhp
msgctxt ""
-"00000409.xhp\n"
-"tit\n"
+"00000207.xhp\n"
+"hd_id3149793\n"
+"12\n"
"help.text"
-msgid "Toolbars"
-msgstr "Kamshaalee"
+msgid "Fixed column width"
+msgstr "Dalgee tarjaa dhaabbataa"
-#: 00000409.xhp
+#: 00000207.xhp
msgctxt ""
-"00000409.xhp\n"
-"hd_id3149517\n"
-"1\n"
+"00000207.xhp\n"
+"par_id3152363\n"
+"13\n"
"help.text"
-msgid "Toolbars"
-msgstr "Kamshaalee"
+msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_IMPORTOPT_CB_FIXEDWIDTH\">Exports all data fields with a fixed width.</ahelp>"
+msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_IMPORTOPT_CB_FIXEDWIDTH\">Dirroota deetaa hunda dalgee dhaabbataa wajjin alerguu.</ahelp>"
-#: 00000409.xhp
+#: 00000207.xhp
msgctxt ""
-"00000409.xhp\n"
-"par_id3156053\n"
-"2\n"
+"00000207.xhp\n"
+"par_id3149283\n"
+"14\n"
"help.text"
-msgid "Choose <emph>Data - Filter - Standard Filter</emph>"
-msgstr "<emph>Deetaa - Gingilchaa - Waaltina Gingilchaa</emph> fili."
+msgid "The width of a data field in the exported text file is set to the current width of the corresponding column."
+msgstr "Dalgeen dirree deetaa fayilee barruu alergee keessaa akka dalgee ammee tarjaa walitti dhufootti qindaa'a."
-#: 00000409.xhp
+#: 00000207.xhp
msgctxt ""
-"00000409.xhp\n"
-"par_id3154350\n"
-"3\n"
+"00000207.xhp\n"
+"par_id3154116\n"
+"15\n"
"help.text"
-msgid "Database table view: <emph>Standard Filter</emph> icon in the <emph>Database</emph> Toolbar"
-msgstr "Mul'annoo gabattee kussaa deetaa :<emph>Gingilchaa Waaltinaa</emph> sajoo Kamshaa <emph>Kuusdeetaa</emph> irraa"
+msgid "Values are exported in the format as currently seen in the cell."
+msgstr "Gatiin dhangii keessatti alergame akka ammeetti seelii keessatti ilaalame."
-#: 00000409.xhp
+#: 00000207.xhp
msgctxt ""
-"00000409.xhp\n"
-"par_id3154183\n"
-"4\n"
+"00000207.xhp\n"
+"par_id3156414\n"
+"16\n"
"help.text"
-msgid "Form view: <emph>Standard Filter</emph> icon in the <emph>Form</emph> Bar"
-msgstr "Mul'annoo unkaa: <emph>Gingilcha Waaltinaa</emph> <emph>Unka</emph>sajoo Kabala irraa"
+msgid "If a value is longer than the fixed column width, it will be exported as a ### string."
+msgstr "Yoo gatiin dalgee tarjaa dhaabbataa irra dheerate, akka ### diraatti alergama."
-#: 00000409.xhp
+#: 00000207.xhp
msgctxt ""
-"00000409.xhp\n"
-"par_id3155619\n"
+"00000207.xhp\n"
+"par_id3150178\n"
+"17\n"
"help.text"
-msgid "<image src=\"cmd/sc_formfiltered.png\" id=\"img_id3147588\"><alt id=\"alt_id3147588\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_formfiltered.png\" id=\"img_id3147588\"><alt id=\"alt_id3147588\">Sajoo</alt></image>"
+msgid "If a text string is longer than the fixed column width, it will be truncated at the end."
+msgstr "Yoo dirraan barruu dalgee tarjaa dhaabbataa irra dheerate, xumurarratti ni gabaabbata."
-#: 00000409.xhp
+#: 00000207.xhp
msgctxt ""
-"00000409.xhp\n"
-"par_id3148731\n"
-"5\n"
+"00000207.xhp\n"
+"par_id3148548\n"
+"18\n"
"help.text"
-msgid "Standard Filter"
-msgstr "Gingilchaa durtii"
+msgid "The alignment Left, Centered, and Right will be simulated by inserted blanks."
+msgstr "Hiriirfama bitaa, Wiirta'aa, fi mirgaa fakkeeffama bakka duuwwaa saaguu dhaan."
#: 00000208.xhp
msgctxt ""
@@ -4490,8 +4806,8 @@ msgctxt ""
"par_id3149987\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"SC:MODALDIALOG:RID_SCDLG_ASCII\">Sets the import options for delimited data.</ahelp>"
-msgstr "<ahelp hid=\"SC:MODALDIALOG:RID_SCDLG_ASCII\">Deetaa daangessaaf dirqalee alaagi qindeessa.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/TextImportCsvDialog\">Sets the import options for delimited data.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/TextImportCsvDialog\">Deetaa daangessaaf dirqalee alaagi qindeessa.</ahelp>"
#: 00000208.xhp
msgctxt ""
@@ -4517,11 +4833,10 @@ msgctxt ""
"par_id3149495\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_ASCII:LB_CHARSET\">Specifies the character set to be used in the imported file.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_ASCII:LB_CHARSET\">Qindaa'ina arfii faayilii alaagame keessatti fayyade ifteessi.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/charset\">Specifies the character set to be used in the imported file.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/charset\">Qindaa'ina arfii faayilii alaagame keessatti fayyade ifteessi.</ahelp>"
#: 00000208.xhp
-#, fuzzy
msgctxt ""
"00000208.xhp\n"
"hd_id315478899\n"
@@ -4530,7 +4845,6 @@ msgid "Language"
msgstr "Afaan"
#: 00000208.xhp
-#, fuzzy
msgctxt ""
"00000208.xhp\n"
"par_id314949588\n"
@@ -4569,8 +4883,8 @@ msgctxt ""
"par_id3150247\n"
"48\n"
"help.text"
-msgid "<ahelp hid=\"SC:NUMERICFIELD:RID_SCDLG_ASCII:NF_AT_ROW\">Specifies the row where you want to start the import.</ahelp> The rows are visible in the preview window at the bottom of the dialog."
-msgstr "<ahelp hid=\"SC:NUMERICFIELD:RID_SCDLG_ASCII:NF_AT_ROW\">Tarree iddoo alaagii jalqabuu barbaaddu ifteessi.</ahelp> Tarreen foddaa durargii keessatti qaaqa jalatti ni mul'ata."
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/fromrow\">Specifies the row where you want to start the import.</ahelp> The rows are visible in the preview window at the bottom of the dialog."
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/fromrow\">Tarree iddoo alaagii jalqabuu barbaaddu ifteessi.</ahelp> Tarreen foddaa durargii keessatti qaaqa jalatti ni mul'ata."
#: 00000208.xhp
msgctxt ""
@@ -4605,8 +4919,8 @@ msgctxt ""
"par_id3150710\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_ASCII:RB_FIXED\">Separates fixed-width data (equal number of characters) into columns.</ahelp> Click on the ruler in the preview window to set the width."
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_ASCII:RB_FIXED\">Deetaa dalgee-dhaabbataa (lakkofsa arfiiwwan walqixaa) sarjoota keessatti gargarbaasa.</ahelp> Sarartoo foddaa durargii keessa jiru irratti cuqasi dalgee qindeessuuf."
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/tofixedwidth\">Separates fixed-width data (equal number of characters) into columns.</ahelp> Click on the ruler in the preview window to set the width."
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/tofixedwidth\">Deetaa dalgee-dhaabbataa (lakkofsa arfiiwwan walqixaa) sarjoota keessatti gargarbaasa.</ahelp> Sarartoo foddaa durargii keessa jiru irratti cuqasi dalgee qindeessuuf."
#: 00000208.xhp
msgctxt ""
@@ -4623,8 +4937,8 @@ msgctxt ""
"par_id3145136\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_ASCII:RB_SEPARATED\">Select the separator used in your data.</ahelp>"
-msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_ASCII:RB_SEPARATED\">Gargarbaasaa deetaa kee keessatti fayyade fili.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/toseparatedby\">Select the separator used in your data.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/toseparatedby\">Gargarbaasaa deetaa kee keessatti fayyade fili.</ahelp>"
#: 00000208.xhp
msgctxt ""
@@ -4641,8 +4955,8 @@ msgctxt ""
"par_id3147576\n"
"50\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ASCII:CKB_TAB\">Separates data delimited by tabs into columns.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ASCII:CKB_TAB\">Deetaa daangeffame gurroon tarjoota keessatti gargarbaasa.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/tab\">Separates data delimited by tabs into columns.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/tab\">Deetaa daangeffame gurroon tarjoota keessatti gargarbaasa.</ahelp>"
#: 00000208.xhp
msgctxt ""
@@ -4659,8 +4973,8 @@ msgctxt ""
"par_id3157863\n"
"52\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ASCII:CKB_SEMICOLON\">Separates data delimited by semicolons into columns.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ASCII:CKB_SEMICOLON\">Deetaa daangeffame Xumurlaphiiwwaniin tarjoota keessatti gargarbaasa.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/semicolon\">Separates data delimited by semicolons into columns.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/semicolon\">Deetaa daangeffame Xumurlaphiiwwaniin tarjoota keessatti gargarbaasa.</ahelp>"
#: 00000208.xhp
msgctxt ""
@@ -4677,8 +4991,8 @@ msgctxt ""
"par_id3150693\n"
"54\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ASCII:CKB_COMMA\">Separates data delimited by commas into columns.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ASCII:CKB_COMMA\">Deetaa daangeffame qoodduun tarjoota keessatti gargarbaasa.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/comma\">Separates data delimited by commas into columns.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/comma\">Deetaa daangeffame qoodduun tarjoota keessatti gargarbaasa.</ahelp>"
#: 00000208.xhp
msgctxt ""
@@ -4695,8 +5009,8 @@ msgctxt ""
"par_id3153663\n"
"56\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ASCII:CKB_SPACE\">Separates data delimited by spaces into columns.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ASCII:CKB_SPACE\">Deetaa daangeffame iddooleedhhan tarjoota keessatti gargarbaasa.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/space\">Separates data delimited by spaces into columns.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/space\">Deetaa daangeffame iddooleedhhan tarjoota keessatti gargarbaasa.</ahelp>"
#: 00000208.xhp
msgctxt ""
@@ -4713,8 +5027,8 @@ msgctxt ""
"par_id3156329\n"
"58\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_ASCII:ED_OTHER\">Separates data into columns using the custom separator that you specify. Note: The custom separator must also be contained in your data.</ahelp>"
-msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_ASCII:ED_OTHER\">Deetaa tarjaa kessatti maamila gargarbaasaa ifteessite fayyadamuun gargarbaasa. Yaadachiisa: Maamila gargarbaasaan dirqama deetaa kee keessatti dhuunfatamuu qaba.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/inputother\">Separates data into columns using the custom separator that you specify. Note: The custom separator must also be contained in your data.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/inputother\">Deetaa tarjaa kessatti maamila gargarbaasaa ifteessite fayyadamuun gargarbaasa. Yaadachiisa: Maamila gargarbaasaan dirqama deetaa kee keessatti dhuunfatamuu qaba.</ahelp>"
#: 00000208.xhp
msgctxt ""
@@ -4731,8 +5045,8 @@ msgctxt ""
"par_id3153827\n"
"60\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ASCII:CB_ASONCE\">Combines consecutive delimiters and removes blank data fields.</ahelp>"
-msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ASCII:CB_ASONCE\">Daangessitoota walitti aanan makuu fi derroota deetaa duwwaa haquu.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/mergedelimiters\">Combines consecutive delimiters and removes blank data fields.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/mergedelimiters\">Daangessitoota walitti aanan makuu fi derroota deetaa duwwaa haquu.</ahelp>"
#: 00000208.xhp
msgctxt ""
@@ -4749,8 +5063,8 @@ msgctxt ""
"par_id3156326\n"
"16\n"
"help.text"
-msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_ASCII:CB_TEXTSEP\">Select a character to delimit text data. You can can also enter a character in the text box.</ahelp>"
-msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_ASCII:CB_TEXTSEP\">Deetaa barruu daangessuuf arfii filadhu. Itti dabalees arfii saanduqa barruu keessa saaguu dandeessa.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/textdelimiter\">Select a character to delimit text data. You can can also enter a character in the text box.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/textdelimiter\">Deetaa barruu daangessuuf arfii filadhu. Itti dabalees arfii saanduqa barruu keessa saaguu dandeessa.</ahelp>"
#: 00000208.xhp
msgctxt ""
@@ -4761,7 +5075,6 @@ msgid "Other options"
msgstr "Dirqaalaalee biroo"
#: 00000208.xhp
-#, fuzzy
msgctxt ""
"00000208.xhp\n"
"par_id315366511\n"
@@ -4786,7 +5099,6 @@ msgid "<ahelp hid=\".\">When this option is enabled, fields or cells whose value
msgstr ""
#: 00000208.xhp
-#, fuzzy
msgctxt ""
"00000208.xhp\n"
"hd_id314847422\n"
@@ -4851,8 +5163,8 @@ msgctxt ""
"par_id314995725\n"
"24\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_ASCII:LB_TYPE1\">Choose a column in the preview window and select the data type to be applied the imported data.</ahelp> You can select one of the following options:"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_ASCII:LB_TYPE1\">Tarjaa foddaa durargii keessatti filiitii akaakuu deetaa deetaa alaagame fayyadu fili.</ahelp> Filannoowwan armaan gadii keessaa tokko filachuu ni dandeeassa:"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/columntype\">Choose a column in the preview window and select the data type to be applied the imported data.</ahelp> You can select one of the following options:"
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/columntype\">Tarjaa foddaa durargii keessatti filiitii akaakuu deetaa deetaa alaagame fayyadu fili.</ahelp> Filannoowwan armaan gadii keessaa tokko filachuu ni dandeeassa:"
#: 00000208.xhp
msgctxt ""
@@ -5032,7 +5344,7 @@ msgctxt ""
"78\n"
"help.text"
msgid "6"
-msgstr "6"
+msgstr ""
#: 00000208.xhp
msgctxt ""
@@ -5050,7 +5362,7 @@ msgctxt ""
"80\n"
"help.text"
msgid "8"
-msgstr "8"
+msgstr ""
#: 00000208.xhp
msgctxt ""
@@ -5133,3185 +5445,2855 @@ msgctxt ""
msgid "For more information, see <link href=\"text/shared/00/00000020.xhp\" name=\"Information about Import and Export Filters\">Information about Import and Export Filters</link>."
msgstr "Odeeffannoo irra caaluuf, <link href=\"text/shared/00/00000020.xhp\" name=\"Information about Import and Export Filters\">Odeeffanno waa'ee alaaguu fi alergii gingilcha</link> ilaali."
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
+"00000210.xhp\n"
"tit\n"
"help.text"
-msgid "View Menu"
-msgstr "Baafata Mul'annoo"
+msgid "Warning Print Options"
+msgstr "Hubachiisa Maxxansa Dirqalaa"
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"hd_id3156304\n"
+"00000210.xhp\n"
+"hd_id3145759\n"
"1\n"
"help.text"
-msgid "View Menu"
-msgstr "Baafata Mul'annoo"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3146936\n"
-"12\n"
-"help.text"
-msgid "Choose <emph>View - Zoom</emph>"
-msgstr "<emph>Mul'annoo - Guddisa - </emph> fili"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3149962\n"
-"24\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Zoom also with (+) (-) (×) and (÷) on the number keypad </caseinline><caseinline select=\"IMPRESS\">Zoom also with (+) (-) (×) and (÷) on the number keypad </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Gabatee cufoorra (+) (-) (×) fi (÷) fayyadamunis guddisi </caseinline><caseinline select=\"IMPRESS\">Gabatee cufoorra (+) (-) fi (÷) fayyadamunis guddisi </caseinline></switchinline>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3152895\n"
-"13\n"
-"help.text"
-msgid "Double-click or right-click the field on the <emph>Status</emph> Bar"
-msgstr "Dirree kabala <emph>Haaloojiirraa</emph> lama cuqaasi ykn Mirga cuqaasi"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3156183\n"
-"36\n"
-"help.text"
-msgid "Choose <emph>View - Toolbars</emph>"
-msgstr "<emph>Mul'annoo - Kamshaalee</emph>Fili"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3166445\n"
-"15\n"
-"help.text"
-msgid "<variable id=\"funktion\">Choose <emph>View - Toolbars - Standard</emph></variable>"
-msgstr "<variable id=\"funktion\"><emph>Mul'annoo - Kamshaalee - Durtii</emph>Fili</variable>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3153748\n"
-"17\n"
-"help.text"
-msgid "<variable id=\"werkzeug\">Choose <emph>View - Toolbars - Tools</emph></variable>"
-msgstr "<variable id=\"werkzeug\"><emph>Mul'annoo - Kamshaalee - Meeshaalee</emph>Fili</variable>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3154317\n"
-"18\n"
-"help.text"
-msgid "<variable id=\"task\">Choose <emph>View - Status Bar</emph></variable>"
-msgstr "<variable id=\"task\">Choose <emph>Mul'annoo - Kabala Haalojii</emph>Fili</variable>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3152780\n"
-"19\n"
-"help.text"
-msgid "<variable id=\"farbleiste\">Choose <emph>View - Toolbars - Color Bar</emph></variable>"
-msgstr "<variable id=\"farbleiste\"><emph>Mul'annoo - Kamshaalee - Kabala Halluu</emph>Fili</variable>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3156113\n"
-"43\n"
-"help.text"
-msgid "<variable id=\"ime\">Choose <emph>View - Input Method Status</emph></variable>"
-msgstr "<variable id=\"ime\">Choose <emph>Mul'annoo - Haalojii Naqa Toftaa</emph>Fili</variable>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3157909\n"
-"32\n"
-"help.text"
-msgid "Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>Internet</emph>"
-msgstr "Kabala <emph>Durtiirraa</emph> sajoo <emph>Geessituu</emph> cuqaasi,<emph>Interneetii</emph> cuqaasi"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3146806\n"
-"42\n"
-"help.text"
-msgid "Choose <emph>Insert - Hyperlink</emph>"
-msgstr "<emph>Saagi- Geessituu</emph> Fili"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3153717\n"
-"38\n"
-"help.text"
-msgid "<variable id=\"hypdiamailnews\">Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>Mail & News</emph></variable>"
-msgstr "<variable id=\"hypdiamailnews\">Kabala <emph>Waaltina</emph> irratti sajoo <emph>Geessituu</emph> cuqaasi, <emph>Ergannoo & Oduu</emph> cuqaasi</variable>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3149415\n"
-"34\n"
-"help.text"
-msgid "<variable id=\"hypdiadok\">Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>Document</emph></variable>"
-msgstr "<variable id=\"hypdiadok\">Kabala <emph>Durtiirraa</emph> Sajoo <emph>Geessituu</emph> cuqaasi,<emph>Galmee</emph> cuqaasi</variable>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3150129\n"
-"35\n"
-"help.text"
-msgid "<variable id=\"hypdianeudok\">Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>New Document</emph></variable>"
-msgstr "<variable id=\"hypdianeudok\">Kabala <emph>Durtiirraa</emph> Sajoo <emph>Geessituu</emph> cuqaasi,<emph>Galmee Haaraa</emph> cuqaasi</variable>"
+msgid "Warning Print Options"
+msgstr "Hubachiisa Maxxansa Dirqalaa"
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3159269\n"
-"20\n"
+"00000210.xhp\n"
+"par_id3152352\n"
+"2\n"
"help.text"
-msgid "Choose <emph>View - Full Screen</emph>"
-msgstr "<emph>Mul'annoo - Argii Guutu</emph>Fili"
+msgid "<ahelp hid=\"SD:MODALDIALOG:DLG_PRINT_WARNINGS\">The<emph> Warning Print Options </emph>dialog appears when the page setup does not match the defined print range.</ahelp> This is the case, for example, if you draw a rectangle that is larger than the current page format."
+msgstr "<ahelp hid=\"SD:MODALDIALOG:DLG_PRINT_WARNINGS\"><emph>Hubachiisa Fuulli Maxxansaa </emph>Qaaqni kan mula'atu yoo qindaa'inni qindaa'ina hanga maxxansaa waliin walgituu baate.</ahelp> Kun akkaataa dha, fakkeenyaaf, yommuu reektaangilii kaaftu dhangii fuula ammee caala guddaadha."
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3149578\n"
-"25\n"
+"00000210.xhp\n"
+"hd_id3150620\n"
+"3\n"
"help.text"
-msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+J"
-msgstr "Jijjiirraa+<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+J"
+msgid "Print options"
+msgstr "Maxxansa dirqalaa"
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3153257\n"
+"00000210.xhp\n"
+"hd_id3156324\n"
+"5\n"
"help.text"
-msgid "<image id=\"img_id3148473\" src=\"cmd/sc_fullscreen.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148473\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148473\" src=\"cmd/sc_fullscreen.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148473\">Sajoo</alt></image>"
+msgid "Fit page to print range"
+msgstr "Hanga fuula maxxansituu taasisi"
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3153627\n"
-"44\n"
+"00000210.xhp\n"
+"par_id3158405\n"
+"7\n"
"help.text"
-msgid "Full Screen On/Off (in Page Preview)"
-msgstr "Argii Guutuu bani/cufi(Durargii fuulaa keessa)"
+msgid "If you select the <emph>Fit page to print range </emph>option, the <emph>Warning Print Options</emph> dialog will not appear in subsequent print runs of this document."
+msgstr "<emph>Yoo filatte fuulan walgichisiisi fuulicha maxxamsuuf </emph>dirqala, <emph>Hubachiisa Maxxansa Dirqala</emph>qaaqni galmee kana irratti walduraa duuba ka'uumsa maxxansatti hin mul'atu."
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3147559\n"
+"00000210.xhp\n"
+"hd_id3156553\n"
"8\n"
"help.text"
-msgid "If a text document or spreadsheet is open:"
-msgstr "Yoo Galmeen barruu yookin wardiin banamee:"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3145069\n"
-"31\n"
-"help.text"
-msgid "Menu <emph>View - Data Sources</emph>"
-msgstr "Baafata <emph>Mul'anno - Madda Deetaa</emph>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3149046\n"
-"28\n"
-"help.text"
-msgid "F4 key"
-msgstr "Furtuu F4"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3153778\n"
-"help.text"
-msgid "<image id=\"img_id3153524\" src=\"cmd/sc_viewdatasourcebrowser.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153524\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153524\" src=\"cmd/sc_viewdatasourcebrowser.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153524\">Sajoo</alt></image>"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3146908\n"
-"39\n"
-"help.text"
-msgid "Data Sources"
-msgstr "Maddoota Deetaa"
+msgid "Print on multiple pages"
+msgstr "Fuula baay'ee irratti maxxansi"
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3154140\n"
+"00000210.xhp\n"
+"par_id3154823\n"
"9\n"
"help.text"
-msgid "Choose <emph>View - HTML Source</emph>"
-msgstr "<emph>Mul'annoo - Madda HTML</emph>Fili"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3154947\n"
-"23\n"
-"help.text"
-msgid "Open context menu in an HTML document"
-msgstr "Galmee HTML keessaa baafata halqaraa bani"
+msgid "<ahelp hid=\"SD:RADIOBUTTON:DLG_PRINT_WARNINGS:RBT_POSTER\">Specifies whether to distribute the printout on multiple pages.</ahelp> The print range will be printed on multiple pages."
+msgstr "<ahelp hid=\"SD:RADIOBUTTON:DLG_PRINT_WARNINGS:RBT_POSTER\">Kanneen maxxanfaman fuula baay'ee irratti bittiffamaa ta'uuf dhiisuu ibsa.</ahelp> Hammi maxxansaa fuula baay'ee irratti maxxanfama."
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3152935\n"
+"00000210.xhp\n"
+"hd_id3147010\n"
+"10\n"
"help.text"
-msgid "<image id=\"img_id3156422\" src=\"cmd/sc_sourceview.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156422\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156422\" src=\"cmd/sc_sourceview.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156422\">Sajoo</alt></image>"
+msgid "Trim"
+msgstr "Qartuu"
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3144448\n"
+"00000210.xhp\n"
+"par_id3151111\n"
"11\n"
"help.text"
-msgid "HTML Source"
-msgstr "Madda HTML"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_idN1091B\n"
-"help.text"
-msgid "<variable id=\"grid\">Choose <emph>View - Grid</emph> (Impress or Draw) </variable>"
-msgstr "<variable id=\"grid\"><emph>Mul'annoo - Tarsaa</emph> (Impressi yookin Fakkasaa) fili</variable>"
-
-#: 00000403.xhp
-#, fuzzy
-msgctxt ""
-"00000403.xhp\n"
-"par_idN1092E\n"
-"help.text"
-msgid "<variable id=\"guides\">Choose <emph>View - Snap Lines</emph> (Impress or Draw) </variable>"
-msgstr "<variable id=\"guides\"><emph>Mul'annoo - Qajeelchootaa</emph>(Impressi yookin Fakkasaa) fili</variable>"
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Showing and Hiding Docked Windows"
-msgstr "Foodaalee hidhaman Mul'isuu fi Dhooksuu"
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"hd_id3085157\n"
-"1\n"
-"help.text"
-msgid "Showing and Hiding Docked Windows"
-msgstr "Foodaalee hidhaman Mul'isuu fi Dhooksuu"
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"par_id3149948\n"
-"2\n"
-"help.text"
-msgid "Every <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"docked\">docked</link> window has an icon to control the display properties of the window."
-msgstr "Tokkon tokkoon <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"docked\">Hidhaa</link> foodaaleen kanneen sajoo agarsiisa amaloota foodaalee ittin to'atan qabuu."
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"par_id3150502\n"
-"3\n"
-"help.text"
-msgid "To show or hide a docked window, click the icon."
-msgstr "Fodaalee hidhaman mul'isuuf yookin dhooksuuf, sajoo cuqaasi."
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"hd_id3150465\n"
-"13\n"
-"help.text"
-msgid "AutoShow and AutoHide Docked Windows"
-msgstr "Foodaa hidhamee Ofagarsiisani Ofdhooksan"
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"par_id3155504\n"
-"14\n"
-"help.text"
-msgid "You can click the edge of a hidden docked window to open the window."
-msgstr "Foodaa banuuf, qaree foodaa hidhamee dhookfamee cuqaasuu dandeessa."
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"par_id3153257\n"
-"15\n"
-"help.text"
-msgid "The docked window closes automatically when you move the mouse pointer outside of the window."
-msgstr "Yemuu qaree hantuuttee foodichaan alaatti sochoftu, foodaan cufamee yeruuma santi cufama."
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"par_id3154046\n"
-"16\n"
-"help.text"
-msgid "Multiple docked windows act as a single window in AutoShow/AutoHide mode."
-msgstr "Halala OlAgarsiisaa fi OlDhooksaa keessatti foodaaleen hidhaman akka foodaa altokketti dalagu."
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"hd_id3145416\n"
-"18\n"
-"help.text"
-msgid "Drag and Drop"
-msgstr "Harkiisi Akkasumaas Kaayi"
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"par_id3149578\n"
-"19\n"
-"help.text"
-msgid "If you drag an object over the edge of a hidden docked window, the window opens in AutoShow mode."
-msgstr "Yoo wantoota gara qarree foodaa hidhamee iirratti sochoftee,foodichi haalata OfAgarsiisaatin banama."
+msgid "<ahelp hid=\"SD:RADIOBUTTON:DLG_PRINT_WARNINGS:RBT_CUT\">Specifies that anything extending beyond the maximum print range will be cut off and not included in the printing.</ahelp>"
+msgstr "<ahelp hid=\"SD:RADIOBUTTON:DLG_PRINT_WARNINGS:RBT_CUT\">Wanti kamiiyyuu bal'achuun maxxansa hamma irraantoo ol ta'e ni cita fi maxxansa keessatti hin dabalatamu.</ahelp>"
-#: 01050000.xhp
+#: 00000215.xhp
msgctxt ""
-"01050000.xhp\n"
+"00000215.xhp\n"
"tit\n"
"help.text"
-msgid "General"
-msgstr "Waligala"
+msgid "ASCII Filter Options"
+msgstr "ASCII Gingilcha Dirqalaa"
-#: 01050000.xhp
+#: 00000215.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3158397\n"
+"00000215.xhp\n"
+"hd_id3146856\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/00/01050000.xhp\" name=\"General\">General</link>"
-msgstr "<link href=\"text/shared/00/01050000.xhp\" name=\"General\">Waligala</link>"
+msgid "ASCII Filter Options"
+msgstr "ASCII Gingilcha Dirqalaa"
-#: 01050000.xhp
+#: 00000215.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3159242\n"
+"00000215.xhp\n"
+"par_id3153070\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">The<emph> General </emph>tab page lists the general properties of the current theme.</ahelp>"
-msgstr ""
+msgid "You can specify which options, such as basic font, language, character set, or break, are imported or exported with a text document. The dialog appears when you load an ASCII file with the filter \"Text Encoded\" or when you save the document the first time, or when you \"save as\" with another name."
+msgstr "Dirqala kam akka ta'e ibsuu dandeessa, kanneen akka bocquu bu'uuraa, afaan, qindaa'ina arfii, yookan qurxiinsa galmee barruu waliin alergamu yookan alaagamu. Qaaqni kan mul'atu yoo faayilii ASCII gingilcha waliin \"Barruu Erguu\" fe'amu yookan galmee yeroo duraatiif yommuu olkeessu yookan yommu \"akka olkaa'i\" maqaa birootiin olkeessu."
-#: 01050000.xhp
+#: 00000215.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3150264\n"
+"00000215.xhp\n"
+"hd_id3159217\n"
"3\n"
"help.text"
-msgid "Name"
-msgstr "Maqaa"
+msgid "Properties"
+msgstr "Amaloota"
-#: 01050000.xhp
+#: 00000215.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3154094\n"
+"00000215.xhp\n"
+"par_id3155577\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"SVX_EDIT_RID_SVXTABPAGE_GALLERY_GENERAL_EDT_MS_NAME\">Displays the name of the theme.</ahelp> If no name has been assigned, you can type a new name in the text box."
-msgstr "<ahelp hid=\"SVX_EDIT_RID_SVXTABPAGE_GALLERY_GENERAL_EDT_MS_NAME\">Maqiicha dhamsaa mul'isa.</ahelp> Yoo maqaan takkoleen hanga ammaatti hin ramadamnee, sanduuqa barruu keessatti maqaa haaraa Barressuu dandeessa."
+msgid "Defines the settings for importing or exporting your file. When exporting, only the character set and paragraph break can be defined."
+msgstr "Qindaa'ina alergi yookan alaaguu faayilii keetii hiika. Yommuu alergitu, arfii qofatu qindaa'ee qurxiinsi keeyyataa qindaa'uu danda'a."
-#: 01050000.xhp
+#: 00000215.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3147089\n"
+"00000215.xhp\n"
+"hd_id3146959\n"
"5\n"
"help.text"
-msgid "Type"
-msgstr "Akaakuu"
+msgid "Character set"
+msgstr "Qindaa'ina arfii"
-#: 01050000.xhp
+#: 00000215.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3145071\n"
+"00000215.xhp\n"
+"par_id3143206\n"
"6\n"
"help.text"
-msgid "Specifies the object type."
-msgstr "Akaakuu wantaa murteessa."
+msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/charset\">Specifies the character set of the file for export or import.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/charset\">Qindaa'ina amala faayilii alergi yookan alaaguu ibsa.</ahelp>"
-#: 01050000.xhp
+#: 00000215.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3147576\n"
+"00000215.xhp\n"
+"hd_id3154926\n"
"7\n"
"help.text"
-msgid "Location"
-msgstr "Iddoo"
+msgid "Default fonts"
+msgstr "Bocquuwwan durtii"
-#: 01050000.xhp
+#: 00000215.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3146797\n"
+"00000215.xhp\n"
+"par_id3151262\n"
"8\n"
"help.text"
-msgid "Specifies the complete object path."
-msgstr "Xuurree guutuu wantaa ifteessa."
-
-#: 00000007.xhp
-msgctxt ""
-"00000007.xhp\n"
-"tit\n"
-"help.text"
-msgid "Toolbars"
-msgstr "Kamshaalee"
-
-#: 00000007.xhp
-msgctxt ""
-"00000007.xhp\n"
-"hd_id3155620\n"
-"1\n"
-"help.text"
-msgid "Toolbars"
-msgstr "Kamshaalee"
-
-#: 00000007.xhp
-msgctxt ""
-"00000007.xhp\n"
-"par_id3152823\n"
-"4\n"
-"help.text"
-msgid "<variable id=\"werkzeugleiste\">Icon on the Tools bar: </variable>"
-msgstr "<variable id=\"werkzeugleiste\">Sajoo kabala Meeshaalee irratti: </variable>"
-
-#: 00000007.xhp
-msgctxt ""
-"00000007.xhp\n"
-"par_id3152352\n"
-"5\n"
-"help.text"
-msgid "<variable id=\"textobjektleiste\">Icon on the Formatting Bar: </variable>"
-msgstr "<variable id=\"textobjektleiste\">Sajoo Kabala Dhangeessuu irratti: </variable>"
-
-#: 00000007.xhp
-msgctxt ""
-"00000007.xhp\n"
-"par_id3151370\n"
-"7\n"
-"help.text"
-msgid "<variable id=\"objektleiste\">Icon on the Formatting Bar: </variable>"
-msgstr "<variable id=\"objektleiste\">Sajoo Kabala Dhangeessuu irratti: </variable>"
+msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/font\">By setting a default font, you specify that the text should be displayed in a specific font. The default fonts can only be selected when importing.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/font\">Bocquu durtii qindeessuun, kan ati ifteessitu barruun mul'chuu kan qabu bocquu murtaa'e irratti qofa. Bocquun durtii filatamuu kan danda'uu yommuu alaaguu qofa.</ahelp>"
-#: 00000007.xhp
+#: 00000215.xhp
msgctxt ""
-"00000007.xhp\n"
-"par_id3149748\n"
+"00000215.xhp\n"
+"hd_id3154894\n"
"9\n"
"help.text"
-msgid "<variable id=\"diaobjektleiste\">Icon on the Slide View Bar: </variable>"
-msgstr "<variable id=\"diaobjektleiste\">Sajoo Kabala Mul'annoo Islaayidii irratti: </variable>"
+msgid "Language"
+msgstr "Afaan"
-#: 00000007.xhp
+#: 00000215.xhp
msgctxt ""
-"00000007.xhp\n"
-"par_id3156553\n"
+"00000215.xhp\n"
+"par_id3153323\n"
"10\n"
"help.text"
-msgid "<variable id=\"symbolleistenneu\">This overview describes the default toolbar configuration for $[officename].</variable>"
-msgstr "<variable id=\"symbolleistenneu\">Ilaalchi gubbaa kuni qindaayina durtii kamshaa $[officename]tiif ibsa.</variable>"
+msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/language\">Specifies the language of the text, if this has not already been defined. This setting is only available when importing.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/language\">Afaan barruu ibsuun, yoo kun duraan dursee ibsamuu baate. Qindaa'inni kun kan jiraatu yommuu alaaguu qofa.</ahelp>"
-#: 00000007.xhp
+#: 00000215.xhp
msgctxt ""
-"00000007.xhp\n"
-"par_id3153551\n"
+"00000215.xhp\n"
+"hd_id3147143\n"
"11\n"
"help.text"
-msgid "Asian Language Support"
-msgstr "Gargaarsa Afaan Eeshiyaa"
+msgid "Paragraph break"
+msgstr "Keeyyate qurxiinsa"
-#: 00000007.xhp
+#: 00000215.xhp
msgctxt ""
-"00000007.xhp\n"
-"par_id3156326\n"
+"00000215.xhp\n"
+"par_id3143281\n"
"12\n"
"help.text"
-msgid "These commands can only be accessed after you enable support for Asian languages in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</emph>."
-msgstr ""
+msgid "Defines the type of paragraph break for a text line."
+msgstr "Akaakuu keeyyata qurxiinsa sarara barruuf qindeessa."
-#: 00000020.xhp
+#: 00000215.xhp
msgctxt ""
-"00000020.xhp\n"
-"tit\n"
+"00000215.xhp\n"
+"hd_id3150935\n"
+"13\n"
"help.text"
-msgid "About Import and Export Filters"
-msgstr "Waa'ee Gingilchoota Alaaguu fi Alerguu"
+msgid "CR & LF"
+msgstr "CR & LF"
-#: 00000020.xhp
+#: 00000215.xhp
msgctxt ""
-"00000020.xhp\n"
-"bm_id3152952\n"
+"00000215.xhp\n"
+"par_id3145829\n"
+"14\n"
"help.text"
-msgid "<bookmark_value>import filters</bookmark_value><bookmark_value>export filters</bookmark_value><bookmark_value>filters; for import and export</bookmark_value><bookmark_value>files; filters and formats</bookmark_value><bookmark_value>formats; on opening and saving</bookmark_value><bookmark_value>importing; HTML and text documents</bookmark_value><bookmark_value>exporting;HTML and text documents</bookmark_value><bookmark_value>text documents; importing/exporting</bookmark_value><bookmark_value>HTML documents; importing/exporting</bookmark_value><bookmark_value>UTF-8/UCS2 support</bookmark_value><bookmark_value>HTML; export character set</bookmark_value><bookmark_value>PostScript; creating files</bookmark_value><bookmark_value>exporting;to PostScript format</bookmark_value>"
-msgstr "<bookmark_value>gingilchoota alaaguu</bookmark_value><bookmark_value>gingilchoota alaaguuf</bookmark_value><bookmark_value>gingilchoota; alaaguu fi alerguuf</bookmark_value><bookmark_value>faayiloota; gingilchootaa fi dhangiilee</bookmark_value><bookmark_value>dhangiilee; banuu fi ol kaa'uu irratti</bookmark_value><bookmark_value>alaaguu; galmeewwan HTML fi barruu</bookmark_value><bookmark_value>aleerguu; galmeewwan HTML fi barruu</bookmark_value><bookmark_value>galmeewwan barruu; alaaguu/alerguu</bookmark_value><bookmark_value>galmeewwan HTML; alaaguu/alerguu</bookmark_value><bookmark_value>deeggarsa UTF-8/UCS2 </bookmark_value><bookmark_value>HTML; tuuta arfii alergii</bookmark_value><bookmark_value>BarruuDirbaasii; faayiloota uumuu</bookmark_value><bookmark_value>aleerguu;Dhangii BarruuDirbaasuuf</bookmark_value>"
+msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/crlf\">Produces a \"Carriage Return\" and a \"Linefeed\". This option is the default.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/crlf\">Akka qurxii keeyyataatti \"Carriage Return\" fi \"Linefeed\" oomisha. Dirqalli kun durtii dha.</ahelp>"
-#: 00000020.xhp
+#: 00000215.xhp
msgctxt ""
-"00000020.xhp\n"
-"hd_id3152952\n"
-"1\n"
+"00000215.xhp\n"
+"hd_id3153551\n"
+"15\n"
"help.text"
-msgid "About Import and Export Filters"
-msgstr "Waa'ee Gingilchoota Alaaguu fi Alerguu"
+msgid "CR"
+msgstr "CR"
-#: 00000020.xhp
+#: 00000215.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3143272\n"
-"2\n"
+"00000215.xhp\n"
+"par_id3156042\n"
+"16\n"
"help.text"
-msgid "In $[officename], apart from its own <link href=\"text/shared/00/00000021.xhp\" name=\"XML formats\">XML formats</link> you can also open and save many foreign XML formats."
-msgstr "$[officename] keessatti, <link href=\"text/shared/00/00000021.xhp\" name=\"XML formats\">dhangiilee XML </link> isaatin alatti, dhangiilee XML alagaa hedduu banuu fi ol kaa'uu dandeessa."
+msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/cr\">Produces a \"Carriage Return\" as the paragraph break.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/cr\">Akka qurxii keeyyataatti \"Carriage Return\" oomisha.</ahelp>"
-#: 00000020.xhp
-#, fuzzy
+#: 00000215.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3152414\n"
-"3\n"
+"00000215.xhp\n"
+"hd_id3150713\n"
+"17\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">In UNIX, certain file formats cannot be recognized automatically.</caseinline><defaultinline>$[officename] normally recognizes the correct file type automatically on opening a file.</defaultinline></switchinline> There may be cases where you have to select the file type yourself in the <emph>Open</emph> dialog. For example, if you have a database table in text format that you want to open as a database table, you need to specify the file type \"Text CSV\" after selecting the file."
-msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">UNIX keessatti, dhangiiwwan faayilii tokko tokkoo ofumaan hin fudhataman. </caseinline><defaultinline>$[officename] baratamaan gosa faayilii sirrii yeroo faayiliin banamu ofumaan fudhata.</defaultinline></switchinline>Yeroo gosa faayilii ofiikeetin filattu qaaqa<emph>Bani</emph> keessatti mandheewwan jiraachuu danda'u. Fakkeenyaaf, yoo gabatee kuusdeetaa dhangii barruuttin qabaatte kan immoo akka gabatee kuusdeetaatti banuu barbaaddu, erga faayilicha filatteen booda gosa faayilii \"Barruu CVS\" adda baasuun sirraa eegama."
+msgid "LF"
+msgstr "LF"
-#: 00000020.xhp
+#: 00000215.xhp
msgctxt ""
-"00000020.xhp\n"
-"hd_id3148668\n"
-"238\n"
+"00000215.xhp\n"
+"par_id3145090\n"
+"18\n"
"help.text"
-msgid "Basic Macros in MS Office Documents"
-msgstr "Maakiroota Bu'uuraa Galmee Waajjiraa MS keessatti"
+msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/lf\">Produces a \"Linefeed\" as the paragraph break.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/lf\">Akka qurxii keeyyataatti \"Linefeed\" oomisha.</ahelp>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3156211\n"
-"239\n"
+"00000401.xhp\n"
+"tit\n"
"help.text"
-msgid "In <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01130100.xhp\" name=\"Load/Save - VBA Properties\">Load/Save - VBA Properties</link> you can specify the settings for the VBA macro codes in MS Office documents. VBA macros are unable to run in $[officename]; they must first be converted and adapted. Often you only want to use $[officename] to change the visible content of a Word, Excel or PowerPoint file and then save the file again in Microsoft Office format without changing the macros they contain. You can set the behavior of $[officename] as desired: Either the VBA macros are saved in commented form as a subroutine of $[officename] and when the document is saved in MS Office format are written back correctly again, or you can select the Microsoft Office macros to be removed when loading. The last option is an effective protection against viruses within the Microsoft Office documents."
-msgstr ""
+msgid "File Menu"
+msgstr "Baafata Faayilii"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"hd_id3154232\n"
-"5\n"
+"00000401.xhp\n"
+"hd_id3149976\n"
+"1\n"
"help.text"
-msgid "Notes regarding external formats and file types"
-msgstr "Yaadannoota dhangiiwwan alaa fi akaakuuwwan faayilii ilaalchisee"
+msgid "File Menu"
+msgstr "Baafata Faayilii"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3154230\n"
-"226\n"
+"00000401.xhp\n"
+"par_id389416\n"
"help.text"
-msgid "Even if they are not installed, some filters can be selected in the <emph>Open</emph> and <emph>Save</emph> dialogs. If you select such a filter, a message will appear saying that you can still install the filter if you require."
-msgstr "Yoo ijaaramuu baatan illee, calaltuuwwan tokko tokkoo qaaqota <emph>Bani</emph> and <emph>Olkaa'i</emph> keessatti filatamuu danda'u. Yoo calaltuu akkasii filatte, ergaan ni mul'ata jechuun amma calaltuu ijaaruu dandeessa yoo barbaadde."
+msgid "<variable id=\"webhtml\">Choose <emph>File - Preview in Web Browser</emph></variable>"
+msgstr "<variable id=\"webhtml\"><emph>Faayilii - Durargii Saphuuphuu Iyyaafataa keessatti</emph>filadhu</variable>"
-#: 00000020.xhp
-#, fuzzy
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3149999\n"
-"200\n"
+"00000401.xhp\n"
+"par_id3154812\n"
+"50\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">If you want to install additional filters or remove individual filters from the installation, close %PRODUCTNAME, start the Setup program and select the <emph>Modify</emph> option. Then you will see a dialog in which you can add or remove individual components of %PRODUCTNAME. Graphic filters can be found in \"Optional Components\".</caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Yoo calaltuuwwan dabalataa ijaaruu ykn calaltuuwwan kophaa haquu ijaarsa irraa barbaadde, %PRODUCTNAME cufi, qindaa'ina sagantaa jalqabitii dirqalee <emph>Fooyya'aa</emph>fili. Achiin qaaqa kan qabeentotaa kophaa %PRODUCTNAME ida'uu ykn haquu dandeessuu ilaalta. Calaltuun saxaatoo \"Qabeentota Dirqalaa\" keessatti argamuu danda'a. </caseinline></switchinline>"
+msgid "Choose <emph>File - New</emph>"
+msgstr "<emph>Faayilii - Haaraa</emph> filadhu."
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"hd_id3156027\n"
-"7\n"
+"00000401.xhp\n"
+"par_id3153070\n"
+"186\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Importing and Exporting Text Documents</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Galmeewwan Barruu Alaaguu fi Alerguu</defaultinline></switchinline>"
+msgid "<emph>New</emph> icon on the <emph>Standard</emph> Bar (the icon shows the type of the new document)"
+msgstr "Kabala <emph>Sajoo</emph> haaraa <emph>waaltina irratti</emph> (sajoon akaakuu galmee haaraa agarsiisa)"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3145669\n"
-"8\n"
+"00000401.xhp\n"
+"par_id3150127\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>$[officename] Writer can read various versions of the Microsoft Word text format. You also can save your own texts in Word format. However, not everything available with $[officename] Writer can be transferred to MS Word, and not everything can be imported.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>$[officename] Writeriin fooyya'ina dhangii baruu maayikroosooftii woordii baay'ee dubbisuu danda'a. Itti dabaltees barruuwwan mataa keetii dhangii jechaa keessa olkaa'uu dandeessa. Haa ta'u malee, wanni hundi $[officename] Writerii wajjin hin argamne gara jecha MS tti darba, wanti hundi alaagamuu hin danda'u.</defaultinline></switchinline>"
+msgid "<image id=\"img_id3156053\" src=\"res/sx03251.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156053\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156053\" src=\"res/sx03251.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156053\">Sajoo</alt></image>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3150144\n"
-"233\n"
+"00000401.xhp\n"
+"par_id3154232\n"
+"199\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Importing is normally not problematic. Even redlining information and controls are imported (and exported) so that $[officename] recognizes inserted or deleted text in Word documents as well as font attributes that have been modified. Different coloring for each author and the time of such changes is also included. When graphic text boxes and labels are imported from templates, most of the attributes are also imported as direct paragraph and drawing attributes. However, some of the attributes may be lost during the import procedure.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Alaaguun baratamaan rakkoo hin qaban. Yoo odeeffannoo fi too'annoon sararadiimaa alaagame illee(fi alergame)kanaaf $[officename] barruu saagame ykn haqame galmeewwan jechaa akkasumas amaloota bocquu kan fooyya'e keessatti addabaasa. Haalluun addadda tokko tokkoo barreessaa fi yeroo jijjiirama sanaa itti dabalama. Yommuu saanduqoonni barruu saxaatoo fi asxaalee qajojiiwwan irra alaagame, amaloonni baay'een itti dabalees akka keewwata kallattii fi amaloota fakkasaatti alaagamu. Haa ta'u malee, amaloonnii tokko tokko yeroo adeemsa alaagii baduu danda'u.</defaultinline></switchinline>"
+msgid "New"
+msgstr "Haaraa"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3149095\n"
-"10\n"
+"00000401.xhp\n"
+"par_id3154894\n"
+"179\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>It is also possible to import and export <link href=\"text/shared/00/00000005.xhp#rtf\" name=\"RTF\">RTF</link> files. This file format can be used to exchange formatted texts across various applications and platforms. In this way, many formats read by most programs will be transferred without a problem. The clipboard uses RTF format when you insert part of a spreadsheet from $[officename] Calc through <link href=\"text/shared/00/00000005.xhp\" name=\"DDE\">DDE</link> into $[officename] Writer.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Itti dabalees alaaguu fi alerguun ni dand'ama faayiloota <link href=\"text/shared/00/00000005.xhp#rtf\" name=\"RTF\">RTF</link>. Dhangiin faayilii kun barruuwwan dhanga'e fayyadamota fi gulantiyyoota baay'ee gamaa-gamana wal jijjiiruuf fayyaduu danda'a. Haala kanaan, dhangiiwwan baay'een sagantoolee baay'een dubbifaman rakkoo malee darbu. Gabatee muraan dhangii RTF fayyadama yommuu qaama waraqaadiriiroo $[officename] Calc irraa keessa <link href=\"text/shared/00/00000005.xhp\" name=\"DDE\">DDE</link>$[officename] Writer keessatti saagdu.</defaultinline></switchinline>"
+msgid "Key <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3151378\n"
-"237\n"
+"00000401.xhp\n"
+"par_id3157898\n"
+"82\n"
"help.text"
-msgid "The filter <emph>Text Encoded</emph> helps you open and save text documents with another encoding font. The filter opens a dialog that enables you to select character set, default fonts, language and paragraph break."
-msgstr "Calaltuun <emph>Barruu Lakkaddaaye</emph> galmeewwan barruu bocquu lakkadda'uu biroo wajjin banuu fi olkaa'uuf si gargaara. Calaltuun qaaqa kan qindaa'ina arfii, bocqoota durtii, afaan fi citaa keewwataa filachuuf si dandeessisu bana."
+msgid "Menu <emph>File - New</emph><emph>- Templates</emph>."
+msgstr ""
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"hd_id3149763\n"
-"11\n"
+"00000401.xhp\n"
+"par_id3149140\n"
+"187\n"
"help.text"
-msgid "Importing and Exporting in HTML Format"
-msgstr "Alaaguu fi Alerguu dhangiii HTML keessaa"
+msgid "Key Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3150244\n"
-"198\n"
+"00000401.xhp\n"
+"par_id3149798\n"
+"160\n"
"help.text"
-msgid "With $[officename] Writer, you can insert footnotes and endnotes in your HTML document. They are exported as meta tags. The footnote and endnote characters are exported as hyperlinks."
-msgstr "$[officename] Writerii wajjin, hubachiisa miiljalee fi ibsa dabalataa galmee HTML kee keessa saaguu dandeessa. Akka iyyosarmeetti alergamu. Hubachiisa miiljalee fi ibsa dabalataa akka geessituutti alergamu."
+msgid "<variable id=\"etiketten\">Choose <emph>File - New - Labels</emph></variable>"
+msgstr "<variable id=\"etiketten\"><emph>Faayilii - Haaraa - Asxaalee</emph> filadhu</variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3149800\n"
-"199\n"
+"00000401.xhp\n"
+"par_id3147226\n"
+"161\n"
"help.text"
-msgid "Comments are used to include unknown characters in an HTML document. Every note that begins with \"HTML:...\" and ends with \">\" is treated as an HTML code, but is exported without these designations. Several tags around text can be included after \"HTML:...\" Accented characters are converted into the ANSI character set. Comments are created during import (for example, for meta tags that have no room in the file properties or unknown tags)."
-msgstr "Arfii hin beekamne galmee HTML keessatti dabaluuf yaadannoowwan ni fayyada. Yadannoon hundi \"HTML:...\"n ka'uu fi \">\"n xumuru akka lakkadda HTMLtti wal'aanama, garuu saxaxeessuu malee alergama. Iyyaatoowwan baay'een naannoo barruu \"HTML:...\" booda itti dabalamuu danda'u, arfoonni Maldan gara qindaa'ina arfii ANSI tti jijjiiramu. Yaadannoowwan yeroo alaaguu kalaqame(Fakkeenyaf, iyyosarmeef kan amaloota faayilii ykn iyyatoota hinbeekamne keessatti kutaa hin qabne)."
+msgid "<variable id=\"etikettenein\">Choose <emph>File - New - Labels - Labels</emph> tab</variable>"
+msgstr "<variable id=\"etikettenein\"><emph>Faayilii - Haaraa - Waammee - Waammee</emph> caancalaa </variable>Filadhu."
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3149734\n"
-"201\n"
+"00000401.xhp\n"
+"par_id3154522\n"
+"162\n"
"help.text"
-msgid "The HTML import of $[officename] Writer is able to read files that have UTF-8 or UCS2 character coding. All characters that are contained in the ANSI character set or in the system's character set can be displayed."
-msgstr "Alaaguu HTML kan $[officename] Writerii faayiloota lakkada arfii UTF-8 ykn UCS2 qaban dubisuuf dandeessisa. Arfoonni hundi kan qindaa'ina arfii ANSI keessatti argaman ykn kan sirna qindaa'ina arfii keessatti argaman mul'achuu danda'u."
+msgid "Choose <emph>File - New - Labels - Format</emph> tab"
+msgstr "<emph>Faayilii - Haaraa - Waammee - Dhangii</emph> caancalaa filadhu."
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3149578\n"
-"240\n"
+"00000401.xhp\n"
+"par_id3154983\n"
+"163\n"
"help.text"
-msgid "When exporting to HTML, the character set selected in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph> is used. Characters not present there are written in a substitute form, which is displayed correctly in modern web browsers. When exporting such characters, you will receive an appropriate warning."
-msgstr ""
+msgid "Choose <emph>File - New - Business Cards - Format</emph> tab"
+msgstr "<emph>Faayilii - Haaraa - Waammee - Dirqala</emph> caancala filadhu."
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3153146\n"
-"197\n"
+"00000401.xhp\n"
+"par_id3157958\n"
+"164\n"
"help.text"
-msgid "If, in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph>, you select Netscape Navigator, MS Internet Explorer, or $[officename] Writer as the export option, upon export all important font attributes are exported as direct attributes (for example, text color, font size, bold, italic, and so on) in CSS1 styles. (<link href=\"text/shared/00/00000002.xhp\" name=\"CSS\">CSS</link> stands for Cascading Style Sheets.) Importing is also carried out according to this standard."
-msgstr ""
+msgid "Choose <emph>File - New - Labels - Options</emph> tab"
+msgstr "<emph>Faayilii - Haaraa - Waammee - Dirqala</emph> caancala filadhu."
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3154143\n"
-"130\n"
+"00000401.xhp\n"
+"par_id3153311\n"
+"165\n"
"help.text"
-msgid "The \"font\" property corresponds to Netscape Navigator; that is, before the font size you can specify optional values for \"font-style\" (italic, none), \"font-variant\" (normal, small-caps) and \"font-weight\" (normal, bold)."
-msgstr "Amalli \"bocquu\" walitti dhufoo Nanna'aa Neetiskaappii; kan hammamtaa bocquun duraa gatiiwwan dirqalee \"akkaataa-bocquu\" (itaalikii, homaa), \"bocquu-gargarii\" (baratamoo, qubeewwa xixiqqaa) fi \"ulfina-bocquu\" (baratamoo, yabbuu). ifteessuu dandeessa."
+msgid "Choose <emph>File - New - Business Cards - Options</emph> tab"
+msgstr "<emph>Faayilii - Haaraa - Kaardii Daldalaa - Dirqala</emph> caancala filadhu."
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3153760\n"
-"131\n"
+"00000401.xhp\n"
+"par_id3152780\n"
+"166\n"
"help.text"
-msgid "For example, \"Font: bold italic small-caps 12pt/200% Arial, Helvetica\" switches to bold, italic, small caps, double-space with the font family Arial or Helvetica, if Arial doesn't exist."
-msgstr "Fakkeenyaaf, \"Font: bold italic small-caps 12pt/200% Arial, Helvetica\" yabbuu, itaalikii, qubeewwan xiqqaa, Iddoo-dachaa maatii bocquu Ariyaali fi Helvaatikaa wajjin, yoo Ariyaaliin hin jiraanne."
+msgid "<variable id=\"visikart\">Choose <emph>File - New - Business Cards</emph></variable>"
+msgstr "<variable id=\"visikart\"><emph>Faayilii - Haaraa - Kaardii Daldalaa</emph>Filadhu </variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3150129\n"
-"132\n"
+"00000401.xhp\n"
+"par_id3156346\n"
+"167\n"
"help.text"
-msgid "\"Font: 10pt\" switches to a 10pt font, with bold, italic, small caps off."
-msgstr "\"Bocquu: 10pt\" bocquu 10pt tti jijjira, yabbuun, itaalikiin, qubeewwan xiqqaa dhaamsi."
+msgid "<variable id=\"visikartform\">Choose <emph>File - New - Business Cards - Medium</emph> tab</variable>"
+msgstr "<variable id=\"visikartform\"><emph>Faayilii - Haaraa - Kaardii Daldalaa - Giddugaleessaa</emph> caancalaa filadhu</variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3155135\n"
-"14\n"
+"00000401.xhp\n"
+"par_id3152824\n"
+"168\n"
"help.text"
-msgid "If MS Internet Explorer or $[officename] Writer are set as the export option, the sizes of the control field and their internal margins are exported as styles (print formats). CSS1 size properties are based on \"width\" and \"height\" values. The \"Margin\" property is used to set equal margins on all sides of the page. To allow different margins, the \"Margin-Left\", \"Margin-Right\", \"Margin-Top\" and \"Margin-Bottom\" properties are used."
-msgstr "Yoo Aloolaa intarneetii MS fi $[officename] Writeriin akka dirqalee alergiitti qindaa'e, hammamtaan dirree too'annaa fi keessi mudana isaanii akka akkaataawwaniitti alerga (dhangiiwwan maxxansi). Amaloonni hammamtaa CSS1 gatiiwwan \"width\" fi \"height\" irratti hundaa'u. Amalli \"Margin\" mudanoota walqixa hammamtoota fuula hundaa irratti qindeessuuf fayyada. Mudanoota adda addaa eyyamuuf, amaloonni \"Mudana-Bitaa\", \"Mudana-Mirgaa\", \"Mudana-Gubbaa\" fi \"Mudana-Jalaa\" ni fayyadu."
+msgid "<variable id=\"viskartinhalt\">Choose <emph>File - New - Business Cards - Business cards</emph> tab</variable>"
+msgstr "<variable id=\"viskartinhalt\"><emph>Faayilii - Haaraa - Kaardii Daldalaa - Kaardii Daldalaa</emph> caancalaa filadhu</variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3148473\n"
-"15\n"
+"00000401.xhp\n"
+"par_id3149819\n"
+"169\n"
"help.text"
-msgid "The distances of graphics and Plug-Ins to the content can be set individually for export to $[officename] Writer and MS Internet Explorer. If the top/bottom or right/left margin is set differently, the distances are exported in a \"STYLE\" option for the corresponding tag as CSS1 size properties \"Margin-Top\", \"Margin-Bottom\", \"Margin-Left\" and \"Margin-Right\"."
-msgstr "Fageenyi saxaatoolee fi Plug-Ins qabeentotaa $[officename] Writer fi Aloolaa intarneetii MS tiif alergiif kopha kophaa qindaa'uu danda'u. Yoo mudanni gubbaa/jalaa ykn mirgaa/bitaa adda addaan qindaa'e, fageenyi dirqala \"STYLE\" keessatti iyyaatoo walitti dhufoof akka amaloota hammamtaa CSS1 \"Mudana-Gubbaa\", \"Mudana-Jalaa\", \"Mudana-Bitaa\" and \"Mudana-Mirgaa\"alergamu."
+msgid "<variable id=\"viskartpriv\">Choose <emph>File - New - Business Cards - Private</emph> tab</variable>"
+msgstr "<variable id=\"viskartpriv\"><emph>Faayilii - Haaraa - Kaardii Daldalaa - Dhuunfaa</emph> caancalaa</variable>Filadhu."
-#: 00000020.xhp
-#, fuzzy
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3144510\n"
-"16\n"
+"00000401.xhp\n"
+"par_id3154897\n"
+"170\n"
"help.text"
-msgid "Text frames are supported with the use of CSS1 extensions for absolute positioned objects. This applies only to the export options Netscape Navigator, MS Internet Explorer, and $[officename] Writer. Text frames can be aligned as graphics, <switchinline select=\"sys\"><caseinline select=\"WIN\"> Plug-Ins,</caseinline></switchinline>and Floating Frames, but character-linked frames are not possible."
-msgstr "Dhangiiwwan barruu faayidaa dheertoota CSS1 wantoota qubannoo guuta'aniif wajjin deeggaramu. Kun dirqalee alergii Naanna'aa Neetiskaappii, Aloolaa intarneetii MS, fi [officename] Writer qofaaf fayyada. Dhangiiwwan barruu akka saxaatolee, Plug-Ins <switchinline select=\"sys\"><caseinline select=\"WIN\">, </caseinline></switchinline> fi godayyaa bololi'u tti hiriiruu danda'u, garuu godayyoota arfii-geessituun hin danda'aman."
+msgid "<variable id=\"viskartgesch\">Choose <emph>File - New - Business Cards - Business</emph> tab</variable>"
+msgstr "<variable id=\"viskartgesch\"><emph>Faayilii - Haraa - Kaardii Daldalaa</emph> caancalaa</variable>Filadhu."
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3147530\n"
-"46\n"
+"00000401.xhp\n"
+"par_id3146137\n"
+"7\n"
"help.text"
-msgid "Text frames are exported as \"<SPAN>\" or \"<DIV>\" tags if they do not contain columns. If they do contain columns then they are exported as \"<MULTICOL>\"."
-msgstr "Dhangiiwwan barruu akka iyyaatoo\"<SPAN>\" ykn \"<DIV>\" alergamu yoo tarjoota qabaachuu baate. Yoo tarjoota qabaatan achiin akka \"<MULTICOL>\" alergama."
+msgid "Choose <emph>File - Open</emph>"
+msgstr "<emph>Faayilii - Bani</emph>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3153896\n"
-"202\n"
+"00000401.xhp\n"
+"par_id3152944\n"
+"83\n"
"help.text"
-msgid "The measurement unit set in $[officename] is used for HTML export of CSS1 properties. The unit can be set separately for text and HTML documents under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer - General</emph> or <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer/Web - View</emph>. The number of exported decimal places depends on the unit."
-msgstr ""
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+O"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+O"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3154935\n"
-"203\n"
+"00000401.xhp\n"
+"par_id3155341\n"
+"8\n"
"help.text"
-msgid "Measurement Unit"
-msgstr "Safartuu"
+msgid "On the <emph>Standard</emph> Bar, click"
+msgstr "<emph>Waaltinaa irratti</emph> Kabala cuqaasi."
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3154226\n"
-"204\n"
+"00000401.xhp\n"
+"par_id3155419\n"
"help.text"
-msgid "Measurement Unit Name in CSS1"
-msgstr "Maqaa Safartuu CSS1 keessaa"
+msgid "<image id=\"img_id3149415\" src=\"cmd/sc_open.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3149415\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149415\" src=\"cmd/sc_open.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3149415\">Sajoo</alt></image>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3151106\n"
-"205\n"
+"00000401.xhp\n"
+"par_id3156003\n"
+"9\n"
"help.text"
-msgid "Maximum Number of Decimal Places"
-msgstr "Lakkoofsa Olaantoo iddoowwan kurniyyee"
+msgid "Open File"
+msgstr "Faayilii Bani"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3154071\n"
-"206\n"
+"00000401.xhp\n"
+"par_id3155388\n"
+"174\n"
"help.text"
-msgid "Millimeter"
-msgstr "Miilimeetira"
+msgid "Menu <emph>File - Open</emph>, File type <emph>Text Encoded</emph> selected"
+msgstr "Baafata <emph>Faayilii - Banaa</emph>, Akaakuu Faayilii<emph>Barruu Lakkadda'ee</emph> filatame."
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3149290\n"
-"207\n"
+"00000401.xhp\n"
+"par_id3154174\n"
+"175\n"
"help.text"
-msgid "mm"
-msgstr "mm"
+msgid "Menu <emph>File - Save As</emph>, File type <emph>Text Encoded</emph> selected"
+msgstr "Baafata <emph>Faayilii - Akka ….olkaa'i</emph>, Akaakuu Faayilii<emph>Barruu Lakkadda'ee</emph> filatame."
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3152920\n"
-"208\n"
+"00000401.xhp\n"
+"par_id3145609\n"
+"109\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<variable id=\"autobrief\">Choose <emph>File - Wizards</emph></variable>"
+msgstr "<variable id=\"autobrief\"><emph>Faayilii - Masaka</emph></variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3156293\n"
-"209\n"
+"00000401.xhp\n"
+"par_id3149245\n"
+"110\n"
"help.text"
-msgid "Centimeter"
-msgstr "Seentiimeetira"
+msgid "<variable id=\"autopilotbrief\">Choose <emph>File - Wizards - Letter</emph></variable>"
+msgstr "<variable id=\"autopilotbrief\"><emph>Faayilii - Masaka - Ergannaa</emph>Filadhu </variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3154819\n"
-"210\n"
+"00000401.xhp\n"
+"par_id3154758\n"
+"111\n"
"help.text"
-msgid "cm"
-msgstr "sm"
+msgid "<variable id=\"autopilotbrief1\">Choose <emph>File - Wizards - Letter - Page design</emph></variable>"
+msgstr "<variable id=\"autopilotbrief1\"><emph>Faayilii - Masaka - Ergannaa - Xanxala Fuulaa</emph>Filadhu </variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3147228\n"
-"211\n"
+"00000401.xhp\n"
+"par_id3152360\n"
+"112\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<variable id=\"autopilotbrief2\">Choose <emph>File - Wizards - Letter - Letterhead layout</emph></variable>"
+msgstr "<variable id=\"autopilotbrief2\"><emph>Faayilii - Masaka - Ergannaa - Teessuma Mataduree Ergannaa </emph>Filadhu </variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3154329\n"
-"212\n"
+"00000401.xhp\n"
+"par_id3159413\n"
+"113\n"
"help.text"
-msgid "Inch"
-msgstr "Inchii"
+msgid "<variable id=\"autopilotbrief3\">Choose <emph>File - Wizards - Letter - Printed items</emph></variable>"
+msgstr "<variable id=\"autopilotbrief3\"><emph>Faayilii - Masaka - Ergannaa - Maalimoota Maxxansaa</emph>Filadhu </variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3150740\n"
-"213\n"
+"00000401.xhp\n"
+"par_id3152771\n"
+"114\n"
"help.text"
-msgid "in"
-msgstr "keessa"
+msgid "<variable id=\"autopilotbrief4\">Choose <emph>File - Wizards - Letter - Recipient and sender</emph></variable>"
+msgstr "<variable id=\"autopilotbrief4\"><emph>Faayilii - Masaka - Ergannaa - Ergaa fi Fudhataa</emph>Filadhu </variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3157320\n"
-"214\n"
+"00000401.xhp\n"
+"par_id3153524\n"
+"115\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<variable id=\"autopilotbrief5\">Choose <emph>File - Wizards - Letter - Footer</emph></variable>"
+msgstr "<variable id=\"autopilotbrief5\"><emph>Faayilii -Masakawwan - Faakkasii - Jalaantoo</emph>filadhu</variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3156422\n"
-"215\n"
+"00000401.xhp\n"
+"par_id3154224\n"
+"116\n"
"help.text"
-msgid "Pica"
-msgstr "Kutaasa"
+msgid "<variable id=\"autopilotbrief6\">Choose <emph>File - Wizards - Letter - </emph><emph>Name and Location</emph></variable>"
+msgstr "<variable id=\"autopilotbrief6\"><emph>Faayilii -Masakawwan - Xalayaa - </emph><emph>Maqaa fi Qabannoo</emph>fili</variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
+"00000401.xhp\n"
"par_id3144760\n"
-"216\n"
+"120\n"
"help.text"
-msgid "pc"
-msgstr "pc"
+msgid "<variable id=\"autopilotfax\">Choose <emph>File - Wizards - Fax</emph></variable>"
+msgstr "<variable id=\"autopilotfax\"><emph>Faayilii - Masaka - Faaksii</emph>Filadhu </variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3145322\n"
-"217\n"
+"00000401.xhp\n"
+"par_id3147085\n"
+"121\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<variable id=\"autopilotfax1\">Choose <emph>File - Wizards - Fax - Page Design</emph></variable>"
+msgstr "<variable id=\"autopilotfax1\"><emph>Faayilii - Masaka - Faaksii - Fuula Saxaxa</emph>Filadhu </variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3155131\n"
-"218\n"
+"00000401.xhp\n"
+"par_id3151042\n"
+"209\n"
"help.text"
-msgid "Point"
-msgstr "Tuqaa"
+msgid "<variable id=\"autopilotfax2\">Choose <emph>File - Wizards - Fax - Items to include</emph></variable>"
+msgstr "<variable id=\"autopilotfax2\"><emph>Faayilii - Masaka - Faaksii - Maalima itti dabaluuf</emph>Filadhu </variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3147288\n"
-"219\n"
+"00000401.xhp\n"
+"par_id3154330\n"
+"122\n"
"help.text"
-msgid "pt"
-msgstr "pt"
+msgid "<variable id=\"autopilotfax3\">Choose <emph>File - Wizards - Fax - Sender and Recipient</emph></variable>"
+msgstr "<variable id=\"autopilotfax3\"><emph>Faayilii - Masaka - Faaksii - Ergaa fi Fudhataa</emph>Filadhu </variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3145364\n"
-"220\n"
+"00000401.xhp\n"
+"par_id3150651\n"
+"123\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "<variable id=\"autopilotfax4\">Choose <emph>File - Wizards - Fax - Footer</emph></variable>"
+msgstr "<variable id=\"autopilotfax4\"><emph>Faayilii - Masaka - Faaksii - Jalaantoo</emph>Filadhu </variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3149262\n"
-"70\n"
+"00000401.xhp\n"
+"par_id3154685\n"
+"124\n"
"help.text"
-msgid "The $[officename] Web page filter supports certain capabilities of CSS2. However, to use it, print layout export must be activated in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph>. Then, in HTML documents, besides the HTML Page Style, you can also use the styles \"First page\", \"Left page\" and \"Right page\". These styles should enable you to set different page sizes and margins for the first page and for right and left pages when printing."
-msgstr ""
+msgid "<variable id=\"autopilotfax5\">Choose <emph>File - Wizards - Fax - Name and location</emph></variable>"
+msgstr "<variable id=\"autopilotfax5\"><emph>Faayilii - Masaka - Faaksii - Maqaa fi Qabannoo</emph>Filadhu </variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"hd_id3145750\n"
-"223\n"
+"00000401.xhp\n"
+"par_id3153190\n"
+"131\n"
"help.text"
-msgid "Importing and Exporting Numbering"
-msgstr "Lakkaawwii Alaaguu fi Alerguu"
+msgid "<variable id=\"autopilotagenda\">Choose <emph>File - Wizards - Agenda</emph></variable>"
+msgstr "<variable id=\"autopilotagenda\"><emph>Faayilii - Masaka - Yayyaboo</emph>Filadhu </variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3145591\n"
-"224\n"
+"00000401.xhp\n"
+"par_id3155860\n"
+"132\n"
"help.text"
-msgid "If, in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph>, the export option \"$[officename] Writer\" or \"Internet Explorer\" is selected, the indents of numberings are exported as \"margin-left\" CSS1 property in the STYLE attribute of the <OL> and <UL> tags. The property indicates the difference relative to the indent of the next higher level."
-msgstr ""
+msgid "<variable id=\"autopilotagenda1\">Choose <emph>File - Wizards - Agenda - Page Design</emph></variable>"
+msgstr "<variable id=\"autopilotagenda1\"><emph>Faayilii - Masaka - Yayyaboo - Saxaxa fuulaa</emph>Filadhu </variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3153573\n"
-"225\n"
+"00000401.xhp\n"
+"par_id3146906\n"
+"133\n"
"help.text"
-msgid "A left paragraph indent in numbering is indicated as \"margin-left\" CSS1 property. First-line indents are ignored in numbering and not exported."
-msgstr "Galumsi keewwataa bitaan lakkaawwii keessattii akka amala CSS1 \"madana-bitaa\" tti agarsiisama. Galumsootni sarara - duraa lakkaawwii keessatti tuffatama akkasumas hin aloolamu."
+msgid "<variable id=\"autopilotagenda2\">Choose <emph>File - Wizards - Agenda - General Attributes</emph></variable>"
+msgstr "<variable id=\"autopilotagenda2\"><emph>Faayilii - Masaka - Yayyaboo - Amaloota Waliigalaa</emph>Filadhu </variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"hd_id3148556\n"
-"235\n"
+"00000401.xhp\n"
+"par_id3152578\n"
+"134\n"
"help.text"
-msgid "Importing and Exporting Spreadsheet Files"
-msgstr "Faayiloota Wardii Alaaguu fi Alerguu"
+msgid "<variable id=\"autopilotagenda3\">Choose <emph>File - Wizards - Agenda - Headings</emph></variable>"
+msgstr "<variable id=\"autopilotagenda3\"><emph>Faayilii - Masaka - Yayyaboo - Mataduree</emph>Filadhu </variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3153365\n"
-"236\n"
+"00000401.xhp\n"
+"par_id3155368\n"
+"135\n"
"help.text"
-msgid "$[officename] imports and exports references to deleted sections such as, for example, a referenced column. The whole formula can be viewed during the export process and the deleted reference contains an indication (#REF!) to the reference. A #REF! will be correspondingly created for the reference during the import."
-msgstr "Alaagi fi alergii $[officename] kutaalee haqaman fakkeenyaaf, kan akka tarjaa wabii ta`ame, wabii ta`a. Foormulaan hundi yeroo hojii alergii ilaaluu fi wabiin akeektuu (#REF!) wabiidhaaf ofkeessatti qabatu haqamuu danda`a. #REF! walqixxummaan wabiidhaaf yeroo alaagi uumama."
+msgid "<variable id=\"autopilotagenda4\">Choose <emph>File - Wizards - Agenda - Names</emph></variable>"
+msgstr "<variable id=\"autopilotagenda4\"><emph>Faayilii - Masaka - Yayyaboo - Maqootaa</emph>Filadhu </variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"hd_id3150228\n"
-"103\n"
+"00000401.xhp\n"
+"par_id3146923\n"
+"205\n"
"help.text"
-msgid "Importing and Exporting Graphics Files"
-msgstr "Faayiloota Saxaatoo Alaaguu fi Alerguu"
+msgid "<variable id=\"autopilotagenda5\">Choose <emph>File - Wizards - Agenda - Topics</emph></variable>"
+msgstr "<variable id=\"autopilotagenda5\"><emph>Faayilii - Masaka - Yayyaboo - Mataduree</emph>Filadhu </variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3152578\n"
-"104\n"
+"00000401.xhp\n"
+"par_id3149066\n"
+"136\n"
"help.text"
-msgid "As with HTML documents, you can choose to use a filter with or without the element ($[officename] Impress) in the name to open a $[officename] graphics file. If without, the file will be opened as a $[officename] Draw document. Otherwise, the file saved by an old program version is now opened in $[officename] Impress."
-msgstr "Akka Galmeewwan HTML waliin, gingilchaa wajjin ykn maalimaa ($[officename] Impress) malee maqaa keessatti faayilii saxaatoo$[officename] filuu ni dandeessa. Yoo maalimaa ($[officename] Impress) malee ta`e, faayiliin akka galmee fakkasaa $[officename]tti banama. Ta`uu baanaan, faayiliin sagantaa fooyya'aa moofaan Toleessaa $[officename] keessatti banama."
+msgid "<variable id=\"autopilotagenda6\">Choose <emph>File - Wizards - Agenda - Title and Location</emph></variable>"
+msgstr "<variable id=\"autopilotagenda6\"><emph>Faayilii - Masaka - Yayyabboo - Mataduree fi Qabannoo</emph>Filadhu </variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3144441\n"
-"106\n"
+"00000401.xhp\n"
+"par_id3149288\n"
+"102\n"
"help.text"
-msgid "When you import an EPS file, a preview of the graphic is displayed in the document. If a preview is not available, a placeholder corresponding to the size of the graphic is displayed in the document. Under Unix and Microsoft Windows you can print the imported file by using a PostScript printer. <switchinline select=\"sys\"><caseinline select=\"UNIX\"></caseinline><defaultinline>If a different printer is used the preview will be printed.</defaultinline></switchinline> When exporting EPS graphics, a preview is created and has the TIFF or EPSI format. If an EPS graphic together with other graphics is exported in the EPS format then this file will be embedded unchanged in the new file."
-msgstr "Yommuu faayilii EPS alaagdu, durargiin saxaatoo galmee keessatti mul'ata. Yoo durargiin hin argamne, iddooqni walitti dhufoo hammamtaa saxaatoo galmee keessatti mul'ata. Uniiksii fi foddaalee maayikroosooftii jalatti maxxansaa BarruuDuubbeen fayyadamuun faayilii alaagame maxxansuu dandeessa. <switchinline select=\"sys\"><caseinline select=\"UNIX\"></caseinline><defaultinline> yoo maxxansaan adda addaa fayyade durargiin ni maxxanfama.</defaultinline></switchinline> yommuu saxaatolee EPS alerguu, duraargiin kalaqamee dhangii TIFF ykn EPSI qaba. yoo saxaatoon EPS saxaatolee biroo wajjin dhangii EPS keeessatti alergame achiin faayiliin kun ida'ama hin jijjiiramne faayilii haaraa keessatti."
+msgid "<variable id=\"dtapt\">Choose <emph>File - Wizards - Presentation</emph></variable>"
+msgstr "<variable id=\"dtapt\"><emph>Faayilii -Masakawwan - Dhiyeessaa</emph>filadhu</variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3146120\n"
-"222\n"
+"00000401.xhp\n"
+"par_id3146986\n"
+"103\n"
"help.text"
-msgid "Multipage-TIFFs are allowed when graphics are imported or exported in TIFF format. The graphics are retrieved as a set of individual pictures in a single file, for example, the individual pages of a fax."
-msgstr "Fuulli hedduu-TIFFs eyyamama yoo saxaatoleen dhangii TIFF keeessatti alaagame ykn alergame. Saxaatoleen akka tuuta fakkiiwwan tokko tokkoo faayilii baaqqee keessaa, fakkeenyaaf, fuulota tokko tokkoo faaksii akka turetti deebi'a."
+msgid "<variable id=\"dtapse\">Choose <emph>File - Wizards - Presentation - Page 1</emph></variable>"
+msgstr "<variable id=\"dtapse\"><emph>Faayilii -Masakawwan - Dhiyeessaa - Fuula 1</emph>filadhu</variable>"
-#: 00000020.xhp
-#, fuzzy
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3159153\n"
-"109\n"
+"00000401.xhp\n"
+"par_id3154919\n"
+"104\n"
"help.text"
-msgid "Some $[officename] Draw and $[officename] Impress options can be accessed through <emph>File - Export</emph>. See <link href=\"text/shared/00/00000200.xhp\" name=\"Graphics Export Options\">Graphics Export Options</link> for more information."
-msgstr "Dirqaalee Fakkasa $[officename] fi Impreessi $[officename] <emph>Faayilii - Alergii</emph> keessa gahuu danda'a."
+msgid "<variable id=\"dtapsz\">Choose <emph>File - Wizards - Presentation - Page 2</emph></variable>"
+msgstr "<variable id=\"dtapsz\"><emph>Faayilii -Masakawwan - Dhiyeessaa - Fuula 2</emph>filadhu</variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"hd_id3153213\n"
-"228\n"
+"00000401.xhp\n"
+"par_id3151351\n"
+"105\n"
"help.text"
-msgid "PostScript"
-msgstr "BarruuDeebee"
+msgid "<variable id=\"dtapsd\">Choose <emph>File - Wizards - Presentation - Page 3</emph></variable>"
+msgstr "<variable id=\"dtapsd\"><emph>Faayilii -Masakawwan - Dhiyeessaa - Fuula 3</emph>filadhu</variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3156444\n"
-"229\n"
+"00000401.xhp\n"
+"par_id3147317\n"
+"106\n"
"help.text"
-msgid "To export a document or graphic in PostScript format:"
-msgstr "Galmee ykn saxatoo dhangii BarruuDeebee keessatti alerguuf:"
+msgid "<variable id=\"dtapsv\">Choose <emph>File - Wizards - Presentation - Page 4</emph></variable>"
+msgstr "<variable id=\"dtapsv\"><emph>Faayilii -Masakawwan - Dhiyeessaa - Fuula 4</emph>filadhu</variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3163714\n"
-"230\n"
+"00000401.xhp\n"
+"par_id3145592\n"
+"107\n"
"help.text"
-msgid "If you have not yet done so, install a PostScript printer driver, such as the Apple LaserWriter driver."
-msgstr "Yoo hanga ammaatti hojjaatamuu baate, Ooftuu maxxansaa BarruuDeebee ijaari, kan akka ooftuu BarreessaaLeezarii Apple."
+msgid "<variable id=\"dtapsf\">Choose <emph>File - Wizards - Presentation - Page 5</emph></variable>"
+msgstr "<variable id=\"dtapsf\"><emph>Faayilii - Masaka - Dhiyeessaa - Fuula 5</emph>Filadhu </variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3153142\n"
-"231\n"
+"00000401.xhp\n"
+"par_idN10C46\n"
"help.text"
-msgid "Print the document with the <emph>File - Print</emph> menu command."
-msgstr "Galmee ajaja baafata <emph>File - Print</emph> wajjin maxxansi."
+msgid "<variable id=\"autopilotformular\">Click <emph>Use Wizard to Create Form</emph> in a database file window.</variable>"
+msgstr "<variable id=\"autopilotformular\"><emph>Unka UmuufMasakawwan fayyadami</emph> faayilii foddaa kuusaa deetaa cuqaasi. </variable>"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3154149\n"
-"242\n"
+"00000401.xhp\n"
+"par_idN10C5F\n"
"help.text"
-msgid "Select the PostScript printer in the dialog and mark the <emph>Print to file</emph> check box. A PostScript file will be created."
-msgstr "Maxxansaa BarruuDirbaasii qaaqa keessaa filadhu itti aansuun sanduuqa filannoo <emph>Faayilii irratti maxxansi</emph> mallatteessi. BarruuDirbaasiin ni uumama."
+msgid "<variable id=\"autopilotreport\">Click <emph>Use Wizard to Create Report</emph> in a database file window.</variable>"
+msgstr "<variable id=\"autopilotreport\"><emph>Gabaasa Umuuf Masaka fayyadami</emph> faayilii foddaa kuusaa deetaa cuqaasi. </variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"tit\n"
+"00000401.xhp\n"
+"par_idN10C24\n"
"help.text"
-msgid "Conversion of measurement units"
-msgstr "Jijjiirraa safatuuwwanii"
+msgid "<variable id=\"webwizard\">Choose <emph>File - Wizards - Web Page</emph></variable>"
+msgstr "<variable id=\"webwizard\"><emph>Faayilii - Masaka - Weebpeegii</emph></variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"bm_id3147543\n"
+"00000401.xhp\n"
+"par_id3154064\n"
+"143\n"
"help.text"
-msgid "<bookmark_value>measurement units; converting</bookmark_value><bookmark_value>units; converting</bookmark_value><bookmark_value>converting;metrics</bookmark_value><bookmark_value>metrics;converting</bookmark_value>"
-msgstr "<bookmark_value>safartoowwan; jijjiiruu</bookmark_value><bookmark_value>safartuuwwan; jijjiiruu</bookmark_value><bookmark_value>jijjiiruu;safartuuwwan</bookmark_value><bookmark_value>safartuuwwan;jijjiiruu</bookmark_value>"
+msgid "<variable id=\"gruppen\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame.</variable>"
+msgstr "<variable id=\"gruppen\">Unka saxaxa keessatti <emph>Sanduuqa Garee</emph> sajoo kamshaa irratti hantuuttee fayyadami goodayyaa uumuf </variable> cuqaasi."
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"hd_id3147543\n"
-"1\n"
+"00000401.xhp\n"
+"par_id3152807\n"
+"144\n"
"help.text"
-msgid "Conversion of measurement units"
-msgstr "Jijjiirraa safatuuwwanii"
+msgid "<variable id=\"gruppen1\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 1</variable>"
+msgstr "<variable id=\"gruppen1\">Unka saxaxa keessatti <emph>Sanduuqa Garee</emph> Sajoo kamshaa irratti hantuuttee fayyadami fi goodayyaa fuula 1 masaka irratti uumuf </variable> cuqaasi."
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN1069F\n"
+"00000401.xhp\n"
+"par_id3150571\n"
+"148\n"
"help.text"
-msgid "In some dialogs, you can enter measurement values into input boxes. If you just enter a numerical value, the default measurement unit is used."
-msgstr "Qaaqawwan gariin keessatti, gatii safartootaa gara sanduuqa naqaatti galchuu dandeessa. Yoo gatii lakkoofsaa galchite, safartuun durtii fayyada."
+msgid "<variable id=\"gruppen2\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 2</variable>"
+msgstr "<variable id=\"gruppen2\">Unka saxaxa keessatti <emph>Sanduuqa Garee</emph> Sajoo kamshaa irratti hantuuttee fayyadami fi goodayyaa fuula 2 masaka irratti uumuf </variable> cuqaasi."
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106A2\n"
+"00000401.xhp\n"
+"par_id3145251\n"
+"145\n"
"help.text"
-msgid "You define the default measurement unit for Writer text documents in the dialog that you get by choosing <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer - General</emph>. For Calc, Draw, and Impress, you open a document of that type and then open the appropriate <emph>General</emph> page as for Writer."
-msgstr ""
+msgid "<variable id=\"gruppen3\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 3</variable>"
+msgstr "<variable id=\"gruppen3\">Unka saxaxa keessatti <emph>Sanduuqa Garee</emph> Sajoo kamshaa irratti hantuuttee fayyadami fi goodayyaa fuula 3 masaka irratti uumuf </variable> cuqaasi."
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106AD\n"
+"00000401.xhp\n"
+"par_id3156109\n"
+"146\n"
"help.text"
-msgid "In input boxes for length units you can also add the unit abbreviation according to the following list:"
-msgstr "Sanduuqoota naqaa keessatti dheerina tokkoof akka tarree armaan gadiitti safartuu ida'uu dandeessa:"
+msgid "<variable id=\"gruppen4\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 4, there must be a database connection.</variable>"
+msgstr "<variable id=\"gruppen4\">Unka saxaxa keessatti <emph>Sanduuqa Garee</emph> Sajoo kamshaa irratti hantuuttee fayyadami goodayyaa fuula 4 masaka irratti uumuf cuqaasteen booda walindhaan kuusaa deetaa jiraachuu qaba </variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106BA\n"
+"00000401.xhp\n"
+"par_id3159347\n"
+"147\n"
"help.text"
-msgid "Unit abbreviation"
-msgstr "Gabaabbataa qeenxee"
+msgid "<variable id=\"gruppen5\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - last page of Wizards</variable>"
+msgstr "<variable id=\"gruppen5\">Unka saxaxa keessatti <emph>Sanduuqa Garee</emph> sajoo kamshaa irratti hantuuttee fayyadami goodayyaa fuula dhumaa masaka irratti uumuf </variable> cuqaasi."
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106C0\n"
+"00000401.xhp\n"
+"par_id3153417\n"
+"150\n"
"help.text"
-msgid "Explanation"
-msgstr "Ibsa"
+msgid "<variable id=\"autopilotmsimport\">Choose <emph>File - Wizards - Document Converter</emph></variable>"
+msgstr "<variable id=\"autopilotmsimport\"><emph>Faayilii - Masaka - Galmee Jijjiiraa</emph>filadhu</variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106C7\n"
+"00000401.xhp\n"
+"par_id3150715\n"
+"151\n"
"help.text"
-msgid "mm"
-msgstr "mm"
+msgid "<variable id=\"autopilotmsimport1\">Choose <emph>File - Wizards - Document Converter</emph></variable>"
+msgstr "<variable id=\"autopilotmsimport1\"><emph>Faayilii - Masaka - Galmee Jijjiiraa</emph>filadhu</variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106CD\n"
+"00000401.xhp\n"
+"par_id3154274\n"
+"149\n"
"help.text"
-msgid "Millimeter"
-msgstr "Miiliimeetira"
+msgid "<variable id=\"autopilotmsimport2\">Choose <emph>File - Wizards - Document Converter</emph></variable>"
+msgstr "<variable id=\"autopilotmsimport2\"><emph>Faayilii - Masaka - Galmee Jijjiiraa</emph>filadhu</variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106D4\n"
+"00000401.xhp\n"
+"par_id3146912\n"
+"171\n"
"help.text"
-msgid "cm"
-msgstr "cm"
+msgid "<variable id=\"euro\">Choose <emph>File - Wizards - Euro Converter</emph></variable>"
+msgstr "<variable id=\"euro\"><emph>Faayilii - Masaka - Jijjiiraa Yuuroo</emph>filadhu</variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106DA\n"
+"00000401.xhp\n"
+"par_id3152962\n"
+"198\n"
"help.text"
-msgid "Centimeter"
-msgstr "Sentiimeettirii"
+msgid "Menu <emph>File - Wizards - Address Data Source</emph>"
+msgstr "Baafata <emph>Faayilii - Masaka - Teessoo Madda Deetaa</emph>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106E1\n"
+"00000401.xhp\n"
+"par_id3145206\n"
+"191\n"
"help.text"
-msgid "in or \""
-msgstr "keessa ykn \""
+msgid "<variable id=\"addressimport2\"><emph>Address Data Source Wizards</emph> - <emph>Additional settings</emph></variable>"
+msgstr "<variable id=\"addressimport2\"><emph>Masaka Teessoo Madda Deetaa</emph> - <emph>Qindaa'ina Dabalataa</emph></variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106E7\n"
+"00000401.xhp\n"
+"par_id3154756\n"
+"192\n"
"help.text"
-msgid "Inch"
-msgstr "Inchii"
+msgid "<variable id=\"addressimport3\"><emph>Address Data Source Wizards</emph> - <emph>Select table</emph></variable>"
+msgstr "<variable id=\"addressimport3\"><emph>Masaka Teessoo Madda Deetaa</emph> - <emph>Select table</emph></variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106EE\n"
+"00000401.xhp\n"
+"par_id3153924\n"
+"193\n"
"help.text"
-msgid "pi"
-msgstr "paayii"
+msgid "<variable id=\"addressimport4\"><emph>Address Data Source Wizards</emph><emph>- Data source title</emph></variable>"
+msgstr "<variable id=\"addressimport4\"><emph>Masaka Teessoo Madda Deetaa</emph><emph>- Mataduree madda deetaa</emph></variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106F4\n"
+"00000401.xhp\n"
+"par_id3148995\n"
+"194\n"
"help.text"
-msgid "Pica"
-msgstr "Kutaasa"
+msgid "<variable id=\"addressimport5\"><emph>Address Data Source Wizards</emph> - <emph>Field assignment</emph></variable>"
+msgstr "<variable id=\"addressimport5\"><emph>Masaka Teessoo Madda Deetaa</emph> - <emph>Moggaasa Dirree</emph></variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106FB\n"
+"00000401.xhp\n"
+"par_id3147338\n"
+"57\n"
"help.text"
-msgid "pt"
-msgstr "pt"
+msgid "<variable id=\"schliessen\">Choose <emph>File - Close</emph></variable>"
+msgstr "<variable id=\"schliessen\">Choose <emph>Faayilii - Cufi</emph></variable>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN10701\n"
+"00000401.xhp\n"
+"par_id3156717\n"
+"10\n"
"help.text"
-msgid "Point"
-msgstr "Akeeki"
+msgid "Choose <emph>File - Save</emph>"
+msgstr "<emph>Faayilii - Olkaa'i</emph>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN10704\n"
+"00000401.xhp\n"
+"par_id3147533\n"
+"84\n"
"help.text"
-msgid "The following formulas convert the units:"
-msgstr "Foormulootni kana gadii safatuuwwan jijjiiru:"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN1070A\n"
+"00000401.xhp\n"
+"par_id3148930\n"
+"11\n"
"help.text"
-msgid "1 cm = 10 mm"
-msgstr "1 cm = 10 mm"
+msgid "On Standard or Table Data Bar, click"
+msgstr "Waaltina yookan Gabatee Kabala Deetaa cuqaasi."
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN1070E\n"
+"00000401.xhp\n"
+"par_id3156712\n"
"help.text"
-msgid "1 inch = 2.54 cm"
-msgstr "1 incii = 2.54 cm"
+msgid "<image id=\"img_id3155939\" src=\"cmd/sc_save.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155939\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155939\" src=\"cmd/sc_save.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155939\">Sajoo</alt></image>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN10712\n"
+"00000401.xhp\n"
+"par_id3149109\n"
+"12\n"
"help.text"
-msgid "1 inch = 6 Pica = 72 Point"
-msgstr "1 inchii = 6 kutaasa = Akeeki 72"
+msgid "Save"
+msgstr "Olkaa'i"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN10715\n"
+"00000401.xhp\n"
+"par_idN10F11\n"
"help.text"
-msgid "For example, in a text document, open <emph>Format - Paragraph - Indents & Spacing</emph>. To indent the current paragraph by one inch, enter <item type=\"literal\">1 in</item> or <item type=\"literal\">1\"</item> into the \"Before text\" box. To indent the paragraph by 1 cm, enter <item type=\"literal\">1 cm</item> into the input box."
-msgstr "Fakkeenyaaf, barruu galmee keessaa, <emph>Dhangii - Keewwata - Galumsoota & Addaan Fageenya</emph>bani. Keewwata ammee inchii tokkoon galchuuf, gara sanduuqa \"Barruu Dura\"<item type=\"literal\">1 in</item> ykn <item type=\"literal\">1\"</item> galchi. Keewwata 1cm raan galchuuf, gara sanduuqa naqaatti <item type=\"literal\">1 cm</item> galchi."
+msgid "<image id=\"img_id8276619\" src=\"cmd/sc_saveas.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id8276619\">Icon</alt></image>"
+msgstr "<image id=\"img_id8276619\" src=\"cmd/sc_saveas.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id8276619\">Sajoo</alt></image>"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN1074C\n"
+"00000401.xhp\n"
+"par_idN10F2E\n"
"help.text"
-msgid "To input the maximum or minimum allowed value respectively, click the current value and then press the <item type=\"keycode\">Page Up</item> or <item type=\"keycode\">Page Down</item> key."
-msgstr "Gatii hayyamame Irraantoo fi gadee walduraa duubaan galchuuf, gatii ammee cuqaasi itti aansuudhaan furtuu <item type=\"keycode\">Fuul Olee</item> yookaan <item type=\"keycode\">Fuul Gadee</item> dhiibi."
+msgid "Save As"
+msgstr "Akka ….olkaa'i"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"tit\n"
+"00000401.xhp\n"
+"par_id3150300\n"
+"99\n"
"help.text"
-msgid "Format Menu"
-msgstr "Dhangii Baafata"
+msgid "<variable id=\"htmlspeichern\">$[officename] Draw or $[officename] Impress menu <emph>File - Export</emph>, select \"HTML Document\" file type, this dialog opens automatically</variable>"
+msgstr "<variable id=\"htmlspeichern\">$[officename] Kaasuu/$[officename] Baafata Toleessaa<emph> Faayilii - Alergi</emph> \"Galmee HTML\" filadhu akaakuu faayilii, qaaqni ofumaan banama. </variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"hd_id3149741\n"
-"1\n"
+"00000401.xhp\n"
+"par_id3153387\n"
+"137\n"
"help.text"
-msgid "Format Menu"
-msgstr "Dhangii Baafata"
+msgid "<variable id=\"htmlspeichern1\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 1 of the wizard</variable>"
+msgstr "<variable id=\"htmlspeichern1\">$[officename] Kaasuu/$[officename] Baafata Toleessaa<emph> Faayilii - Alergi</emph> HTML filadhu akaakuu faayilii Masaka fuula 1 </variable> ti."
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3146857\n"
-"2\n"
+"00000401.xhp\n"
+"par_id3154021\n"
+"138\n"
"help.text"
-msgid "Choose <emph>Format - Line</emph> (Impress and Draw)"
-msgstr "<emph>Dhangii - Sarara</emph>(Impress fi Fakkassaa)"
+msgid "<variable id=\"htmlspeichern2\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 2 of the wizard</variable>"
+msgstr "<variable id=\"htmlspeichern2\">$[officename] Kaasuu/$[officename] Baafata Toleessaa<emph> Faayilii - Alergi</emph> HTML filadhu akaakuu faayilii Masaka fuula 2 </variable> ti."
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id366527\n"
+"00000401.xhp\n"
+"par_id3147246\n"
+"159\n"
"help.text"
-msgid "Choose <emph>Format - Object - Line </emph>(Writer)"
-msgstr "<emph>Dhangii - Wanta - Sarara</emph> (Barreessaa) fili"
+msgid "<variable id=\"htmlspeichern3\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 3 of the wizard</variable>"
+msgstr "<variable id=\"htmlspeichern3\">$[officename] Kaasuu/$[officename] Baafata Toleessaa<emph> Faayilii - Alergi</emph> HTML filadhu akaakuu faayilii gargaartu fuula 3 </variable> ti."
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3835261\n"
+"00000401.xhp\n"
+"par_id3145131\n"
+"140\n"
"help.text"
-msgid "Choose <emph>Format - Graphic - Line </emph>(Calc)"
-msgstr "<emph>Dhangii - Saxaatoo - Sarara</emph> (Calc) fili"
+msgid "<variable id=\"htmlspeichern4\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 4 of the wizard</variable>"
+msgstr "<variable id=\"htmlspeichern4\">$[officename] Kaasuu/$[officename] Baafata Toleessaa<emph> Faayilii - Alergi</emph> HTML filadhu akaakuu faayilii Masaka fuula 4 </variable> ti."
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3148668\n"
-"3\n"
+"00000401.xhp\n"
+"par_id3150235\n"
+"141\n"
"help.text"
-msgid "On <emph>Line and Filling</emph> Bar, click"
-msgstr "Kabala <emph>Sarara fi Guutinsa</emph>rratti,"
+msgid "<variable id=\"htmlspeichern5\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 5 of the wizard</variable>"
+msgstr "<variable id=\"htmlspeichern5\">$[officename] Kaasuu/$[officename] Baafata Toleessaa<emph> Faayilii - Alergi</emph> HTML filadhu akaakuu faayilii Masaka fuula 5 </variable> ti."
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3148889\n"
+"00000401.xhp\n"
+"par_id3145762\n"
+"142\n"
"help.text"
-msgid "<image id=\"img_id3150669\" src=\"cmd/sc_formatline.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150669\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150669\" src=\"cmd/sc_formatline.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150669\">Sajoo</alt></image>"
+msgid "<variable id=\"htmlspeichern6\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 6 of the wizard</variable>"
+msgstr "<variable id=\"htmlspeichern6\">$[officename] Kaasuu/$[officename] Baafata Toleessaa<emph> Faayilii - Alergi</emph> HTML filadhu akaakuu faayilii Masaka fuula 6 </variable> ti."
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3159147\n"
-"4\n"
+"00000401.xhp\n"
+"par_id3149735\n"
"help.text"
-msgid "Line"
-msgstr "Sarara"
+msgid "<variable id=\"exportgraphic\">Choose <emph>File - Export</emph>, select a graphics file type, dialog opens automatically</variable>"
+msgstr "<variable id=\"bmpexport\"><emph>Faayilii - Alergii</emph>Filadhuu, yoo BMP akka akaakuu fayilitti filame, qaaqni ofumaan banama </variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154285\n"
-"5\n"
+"00000401.xhp\n"
+"par_id3154901\n"
+"58\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line</emph> tab"
-msgstr "<emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wanta - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaatoo - </emph></caseinline></switchinline><emph>Sarara - Sarara</emph> fili"
+msgid "<variable id=\"saveall\">Choose <emph>File - Save All</emph></variable>"
+msgstr "<variable id=\"saveall\">Choose <emph>File - Save All</emph></variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3147335\n"
-"7\n"
+"00000401.xhp\n"
+"par_id3152479\n"
+"59\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu and choose <emph>Modify/New - Line</emph> tab (presentation documents)"
-msgstr "Cancala(Dhiheessa Galmee)<emph>Dhangii - Halatootaa</emph>fi Dhangeessuu fili - Baafata halqaraa banitii akkasumaas <emph>Fooyyeessi/Haaraa</emph>fili"
+msgid "<variable id=\"saveas\">Choose <emph>File - Save As</emph></variable>"
+msgstr "<variable id=\"saveas\"><emph>Faayilii- Olkaawwii Akka</emph>filadhu</variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3156023\n"
-"8\n"
+"00000401.xhp\n"
+"par_id3148392\n"
+"60\n"
"help.text"
-msgid "Choose <emph>Format - Title - Borders</emph> tab (charts)"
-msgstr "Cancala(Taattoowwani)<emph>Dhangii - Handaaroota</emph>fili"
+msgid "Choose <emph>File - Reload</emph>"
+msgstr "<emph>Faayilii - Lamfe'i</emph> filadhu."
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153061\n"
-"9\n"
+"00000401.xhp\n"
+"par_id3166425\n"
+"61\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Borders</emph> tab (charts)"
-msgstr "Cancala(Taattoowwani)<emph>Dhangii - Waayoo - Handaaroot</emph>fili"
+msgid "<variable id=\"info1\">Choose <emph>File - Properties</emph></variable>"
+msgstr "<variable id=\"info1\"><emph>Faayilii - Amala</emph>filadhu</variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3155922\n"
-"10\n"
+"00000401.xhp\n"
+"par_id3150381\n"
+"62\n"
"help.text"
-msgid "Choose <emph>Format - Axis - Line</emph> tab (charts)"
-msgstr "Cancala(Taattoo)<emph>Dhangii - Siiqqee - Sararaa</emph>fili"
+msgid "<variable id=\"info2\">Choose <emph>File - Properties - General</emph> tab</variable>"
+msgstr "<variable id=\"info2\"><emph>Faayilii - Amala - Waliigalaa</emph> caancala </variable> Filadhu."
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3147559\n"
-"11\n"
+"00000401.xhp\n"
+"par_idN11163\n"
"help.text"
-msgid "Choose <emph>Format - Grid - Line</emph> tab (charts)"
-msgstr "Cancala(Taatoowwani)<emph>Dhangii - Tarsaa - Sarara</emph>fili"
+msgid "Choose <emph>File - Digital Signatures</emph>"
+msgstr "<emph>Faayilii - Lakqurxaawaa Mallattoo</emph> filadhu."
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154758\n"
-"12\n"
+"00000401.xhp\n"
+"par_idN11168\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Borders</emph> tab (charts)"
-msgstr "Cancala(Taattoo)<emph>Dhangii - Dhaaba Taattoo - Handaaroota</emph>fili"
+msgid "Choose <emph>Tools - Macros - Digital Signature</emph>"
+msgstr "<emph>Meeshaa - Maayikiroo - Lakqurxaawaa Mallattoo</emph>filadhu."
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153960\n"
-"13\n"
+"00000401.xhp\n"
+"par_idN11156\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Borders</emph> tab (charts)"
-msgstr "Cancala(Taattoowwani)<emph>Dhangii - Afala Taaattoo -Handaaroota</emph>fili"
+msgid "Choose <emph>File - Properties - General</emph> tab, click <emph>Digital Signatures</emph> button"
+msgstr "Qabduu <emph>Faayilii - Amala - Waliigalaa</emph> caancala <emph>Lakqurxaawaa Mallattoo</emph> cuqaasi."
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154939\n"
-"14\n"
+"00000401.xhp\n"
+"par_idN1117E\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Borders</emph> tab (charts)"
-msgstr "Cancala(Taattoowwani)<emph>Dhangii - Iddoo Taattoo - Handaaroot</emph>fili"
+msgid "Double-click the Signature field on the Status Bar."
+msgstr "Dirree mallattoo lama-cuqaasi kabala haalhojii irratti."
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151293\n"
-"15\n"
+"00000401.xhp\n"
+"par_idN11173\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\"><emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wantoota - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaatoo - </emph></caseinline></switchinline><emph>Sarara - Akkaataalee Sararaa</emph> caancala </variable>"
+msgid "<variable id=\"digitalsigsel\">Choose <emph>File - Properties - General</emph> tab, click <emph>Digital Signatures</emph> button, then click <emph>Add</emph> button</variable>"
+msgstr "<variable id=\"digitalsigsel\"><emph>Faayilii - Amala - Waliigalaa</emph> caancala <emph>Lakqurxaawaa Mallattoo</emph> qabduu, cuqaasi <emph>Ida'a</emph> Qabduus </variable>cuqaasi."
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149317\n"
-"16\n"
+"00000401.xhp\n"
+"par_id3150662\n"
+"63\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">Cancala <emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wanta - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaatoo - </emph></caseinline></switchinline><emph>Sarara - Halatoota Xiyyaa</emph> fili </variable>"
+msgid "<variable id=\"info3\">Choose <emph>File - Properties - Description</emph> tab</variable>"
+msgstr "<variable id=\"info3\"><emph>Faayilii - Amala - Ibsaa</emph> caancala </variable> Filadhu."
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3156082\n"
-"17\n"
+"00000401.xhp\n"
+"par_id3153792\n"
+"64\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area</emph>"
-msgstr "<emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wanta - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaatoo - Iddoo </emph></caseinline></switchinline><emph>Bal'ina</emph> fili"
+msgid "<variable id=\"info4\">Choose <emph>File - Properties - Custom Properties</emph> tab</variable>"
+msgstr "<variable id=\"info4\">Caancala <emph>Faayilii - Amaloota - Amaloota Mammiloo</emph> fili </variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3148922\n"
-"18\n"
+"00000401.xhp\n"
+"par_id3153701\n"
+"65\n"
"help.text"
-msgid "On <emph>Line and Filling</emph> Bar, click"
-msgstr "Kabala <emph>Gutinsarraa</emph>rraa,"
+msgid "<variable id=\"info5\">Choose <emph>File - Properties - Statistics</emph> tab</variable>"
+msgstr "<variable id=\"info5\"><emph>Faayilii - Amala - Xiinannoo</emph> caancala </variable> Filadhu."
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3156424\n"
+"00000401.xhp\n"
+"par_id315370199\n"
"help.text"
-msgid "<image id=\"img_id3150868\" src=\"cmd/sc_fillstyle.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150868\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150868\" src=\"cmd/sc_fillstyle.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150868\">Sajoo</alt></image>"
+msgid "<variable id=\"infosec\">Choose <emph>File - Properties - Security</emph> tab</variable>"
+msgstr "<variable id=\"info2\"><emph>Faayilii - Amala - Waliigalaa</emph> caancala </variable> Filadhu."
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150393\n"
-"19\n"
+"00000401.xhp\n"
+"par_id3149570\n"
+"66\n"
"help.text"
-msgid "Area"
-msgstr "Bal'ina"
+msgid "<variable id=\"info6\">Choose <emph>File - Properties - Internet</emph> tab</variable>"
+msgstr "<variable id=\"info6\"><emph>Faayilii - Amala - Interneetii</emph> caancala</variable>Filadhu."
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154948\n"
-"20\n"
+"00000401.xhp\n"
+"par_id3154930\n"
+"69\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "<emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wanta - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaatoo - </emph></caseinline></switchinline><emph>Bal'ina - Bal'ina</emph> fili"
+msgid "Menu<emph> File - Page Preview</emph>"
+msgstr "<emph> Faayilii - Fuula Durargii</emph>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145607\n"
-"22\n"
+"00000401.xhp\n"
+"par_idN11366\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
-msgstr "Cancala(Dhiheessa Galmee)<emph>Dhangii - Halatootaa</emph>fi Dhangeessuu fili - Baafata halqaraa banitii Cancala<emph>Fooyyeessi/Haaraa - Bal'ina</emph>fili"
+msgid "<image id=\"img_id2603534\" src=\"cmd/sc_printpreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id2603534\">Icon</alt></image>"
+msgstr "<image id=\"img_id2603534\" src=\"cmd/sc_printpreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id2603534\">Sajoo</alt></image>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3152922\n"
-"23\n"
+"00000401.xhp\n"
+"par_idN11384\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Cancala(Galmeelee Taattoo)<emph>Dhangii - Matadure - Arfii</emph>fili"
+msgid "Page Preview"
+msgstr "Fuula Duraargii"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3157894\n"
-"24\n"
+"00000401.xhp\n"
+"par_id3163722\n"
+"70\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Cancala(Galmeelee Taattoo)<emph>Dhangii - Waayoo</emph>fili"
+msgid "Choose <emph>File - Printer Settings</emph>"
+msgstr "<emph>Faayilii - Maxxansa Qindeessaa</emph>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3144444\n"
-"25\n"
+"00000401.xhp\n"
+"par_id3155529\n"
+"17\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Cancala(Galmeelee Taattoo)<emph>Dhangii - Dhaaba Taattoo - Bal'ina</emph>fili"
+msgid "<variable id=\"senden\">Menu<emph> File - Send</emph></variable>"
+msgstr "<variable id=\"senden\">Baafata<emph> Faayilii - Ergi</emph></variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3156543\n"
-"26\n"
+"00000401.xhp\n"
+"par_id3145386\n"
+"18\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Cancala(Galmeelee Taattoo)<emph>Dhangii - Afala Taaattoo - Bal'ina</emph>fili"
+msgid "Choose <emph>File - Send - Document as E-mail</emph>"
+msgstr "<emph>Faayilii - Ergi - Galmee akka Imeelitti</emph>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150685\n"
-"27\n"
+"00000401.xhp\n"
+"par_idN113AB\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Cancala(Galmeelee Taattoo)<emph>Dhangii - Bal'ina Taattoo - Bal'ina</emph>fili"
+msgid "<image id=\"img_id4044007\" src=\"cmd/sc_sendmail.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4044007\">Icon</alt></image>"
+msgstr "<image id=\"img_id4044007\" src=\"cmd/sc_sendmail.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4044007\">Sajoo</alt></image>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149664\n"
-"120\n"
+"00000401.xhp\n"
+"par_idN113C8\n"
"help.text"
-msgid "Choose <emph>Format - Page - Background</emph> tab (in $[officename] Impress and $[officename] Draw)"
-msgstr "Cancala <emph>Dhangii - Fuula - Duubbee</emph>(Impressi $[officename] fi Fakkassaa $[officename] keessaa)fili"
+msgid "Document as E-mail"
+msgstr "Galmee akka Imeelitti"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3163820\n"
-"28\n"
+"00000401.xhp\n"
+"par_id3145269\n"
+"222\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
-msgstr "Cancala <emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wanta - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaatoo - </emph></caseinline></switchinline><emph>Bali'ina - Halluuwwan</emph> fili"
+msgid "<variable id=\"export\">Choose <emph>File - Export</emph></variable>"
+msgstr "<variable id=\"export\"><emph>Faayilii - Alergii</emph>filadhu</variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3152462\n"
-"29\n"
+"00000401.xhp\n"
+"par_id3166421\n"
+"219\n"
"help.text"
-msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Colors</emph> tab"
-msgstr ""
+msgid "Choose <emph>File - Export as PDF</emph>"
+msgstr "<emph>Faayilii - Alergi akka PDF</emph>tti."
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154985\n"
-"141\n"
+"00000401.xhp\n"
+"par_id3150521\n"
"help.text"
-msgid "Choose <emph>Format - Area - Transparency</emph> tab (drawing documents)"
-msgstr "Cancala(Galmeelee Fakkassaa)<emph>Dhangii - Bal'ina - Iftoomina</emph>fili"
+msgid "<image id=\"img_id3147306\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3147306\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147306\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3147306\">Sajoo</alt></image>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145365\n"
-"142\n"
+"00000401.xhp\n"
+"par_id3155763\n"
+"220\n"
"help.text"
-msgid "Choose <emph>Format - Area - Transparency</emph> tab (presentation documents)"
-msgstr "Cancala(Galmeelee Dhiheessa)<emph>Dhangii - Bal'ina - Iftoomina</emph>fili"
+msgid "Export Directly as PDF"
+msgstr "Akka PDF Sudaadan Alergi"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151117\n"
-"143\n"
+"00000401.xhp\n"
+"par_id3145410\n"
+"210\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Transparency</emph> tab (chart documents)"
-msgstr "Cancala(Galmeelee Taattoo)<emph>Dhangii - Dhaaba Taattoo - Iftoomina</emph>fili"
+msgid "Choose <emph>File - Send - E-mail as PDF</emph>"
+msgstr "<emph>Faayilii - Ergi - Imeelii akka PDF</emph>tti filadhu."
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3147326\n"
-"144\n"
+"00000401.xhp\n"
+"par_id3159160\n"
+"74\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Transparency</emph> tab (chart documents)"
-msgstr "Cancala(Galmeelee Taattoo)<emph>Dhangii - Bal'ina Taatoo - Iftoomina</emph>fili"
+msgid "<variable id=\"glo\">Choose <emph>File - Send - Create Master Document</emph></variable>"
+msgstr "<variable id=\"glo\"><emph>Faayilii - Ergi - Galmee Hundataa uumi</emph></variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154920\n"
-"145\n"
+"00000401.xhp\n"
+"par_id3149951\n"
+"13\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Transparency</emph> tab (chart documents)"
-msgstr "Cancala(Galmeelee Taattoo)<emph>Dhangii - Afala Taaattoo - Iftoomina</emph>fili"
+msgid "Choose <emph>File - Print</emph>"
+msgstr "Choose <emph>Faayilii - Maxxansaa</emph>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145591\n"
-"146\n"
+"00000401.xhp\n"
+"par_id3155259\n"
+"85\n"
"help.text"
-msgid "Choose <emph>Format - Title - All Titles - Transparency</emph> tab (chart documents)"
-msgstr "Cancala(Galmeelee Taattoo)<emph>Dhangii - Matadure - Matadurewwan mara - Iftoomina</emph>fili"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+P"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+P"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145750\n"
-"147\n"
+"00000401.xhp\n"
+"par_id3153830\n"
+"3\n"
"help.text"
-msgid "Choose <emph>Format - Title - Main Title - Transparency </emph>tab (chart documents)"
-msgstr "Cancala Iftoomina(Galmeelee taatoo) <emph>Dhangii - Mata duree - Mataduree Ijoo - Iftoomina</emph>fili"
+msgid "On Standard Bar, click"
+msgstr "Kabala Waaltinaa Irratti cuqaasi"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3148556\n"
-"148\n"
+"00000401.xhp\n"
+"par_id3155187\n"
"help.text"
-msgid "Choose <emph>Format - Title - Subtitle - Transparency</emph> tab (chart documents)"
-msgstr "Cancala(Galmeelee taatoo) <emph>Dhagii -Mataduree - Mataduree Xiqqaa - Iftoomina</emph>fili"
+msgid "<image id=\"img_id3153318\" src=\"cmd/sc_print.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3153318\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153318\" src=\"cmd/sc_print.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3153318\">Sajoo</alt></image>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3163710\n"
-"149\n"
+"00000401.xhp\n"
+"par_id3151268\n"
+"4\n"
"help.text"
-msgid "Choose <emph>Format - Title - Title (X Axis) - Transparency</emph> tab (chart documents)"
-msgstr "Cancala Iftoomina(Galmeelee taatoo) <emph>Dhangii - Mata duree - Mata duree (Siiqqee X)- Iftoomina</emph>fili"
+msgid "Print File Directly"
+msgstr "Faayilii Sududaan maxxansi"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150487\n"
-"150\n"
+"00000401.xhp\n"
+"par_id3153581\n"
+"5\n"
"help.text"
-msgid "Choose <emph>Format - Title - Title (Y Axis) - Transparency</emph> tab (chart documents)"
-msgstr "Cancala Iftoomina(Galmeelee taatoo) <emph>Dhangii - Mata duree - Mata duree (Siiqqee Y)- Iftoomina</emph>fili"
+msgid "On the <emph>Page View</emph><emph>Bar</emph> of a text document, click"
+msgstr "<emph>Fuula mul'annoo</emph>keessati<emph>Kabala</emph> galmee barruu cuqaasi."
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154320\n"
-"151\n"
+"00000401.xhp\n"
+"par_id3153068\n"
"help.text"
-msgid "Choose <emph>Format - Title - Title (Z Axis) - Transparency</emph> tab (chart documents)"
-msgstr "Cancala Iftoomina(Galmeelee taatoo) <emph>Dhangii - Mata duree - Mata duree (Siiqqee Z)- Iftoomina</emph>fili"
+msgid "<image id=\"img_id3155362\" src=\"cmd/sc_printpagepreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155362\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155362\" src=\"cmd/sc_printpagepreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155362\">Sajoo</alt></image>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151113\n"
-"152\n"
+"00000401.xhp\n"
+"par_id3151239\n"
+"6\n"
"help.text"
-msgid "Choose <emph>Format - Object Properties - Data Point - Transparency</emph> - tab (chart documents)"
-msgstr "Cancala(Galmeelee taatoo) <emph>Dhangii - Amaloota Wantaa - Qaphxii Deetaa - Iftoomina</emph>fili"
+msgid "Print Page Preview"
+msgstr "Fuula durargii maxxansi"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149266\n"
-"153\n"
+"00000401.xhp\n"
+"par_id3155869\n"
+"72\n"
"help.text"
-msgid "Choose <emph>Format - Object Properties - Data Series - Transparency</emph> tab (chart documents)"
-msgstr "Cancala(Galmeelee taatoo) <emph>Dhangii - Amaloota Wantaa - Deetaa walfannee - Iftoomina</emph>fili"
+msgid "Choose <emph>File - Exit</emph>"
+msgstr "Choose <emph>Gulaali - Bahi</emph>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150011\n"
-"30\n"
+"00000401.xhp\n"
+"par_id3152382\n"
+"86\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\">Cancala <emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wanta - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaatoo -</emph></caseinline></switchinline><emph>Bal'ina - Gaaddidduu</emph> fili </variable>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3147441\n"
-"31\n"
+"00000401.xhp\n"
+"par_id3149328\n"
+"75\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">Cancala <emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wanta - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaatoo - </emph></caseinline></switchinline><emph>Bal'ina - Garagartoota</emph> fili </variable>"
+msgid "<variable id=\"neuglobal\">Choose <emph>File - New - Master Document</emph></variable>"
+msgstr "<variable id=\"neuglobal\"><emph>Faayilii - Haraa - Galmee Hundataa </emph>filadhu</variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3155308\n"
-"32\n"
+"00000401.xhp\n"
+"par_id3145827\n"
+"76\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">>Cancala <emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wanta - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaatoo - </emph></caseinline></switchinline><emph>Saxaatoo - Bal'ina - Falfaluu</emph> fili </variable>"
+msgid "Choose <emph>File - Open</emph> - select under \"File type\": \"Text CSV\""
+msgstr "<emph>Faayilii - Banaa</emph> - \"Akaakuu faayilii\" jalaa fili: \"Barruu CSV\" filadhu."
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145800\n"
-"33\n"
+"00000401.xhp\n"
+"par_id6071352\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">Cancala <emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wanta - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaatoo - </emph></caseinline></switchinline><emph>Saxaatoo - Bal'ina - Suurxiqqoo</emph> fili </variable>"
+msgid "Choose <emph>Data - Text to Columns</emph> (Calc)"
+msgstr "Choose <emph>Deetaa - Barruu gara Sarjaatti</emph> (Calc)"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145251\n"
-"34\n"
+"00000401.xhp\n"
+"par_id3148608\n"
+"81\n"
"help.text"
-msgid "<variable id=\"formattext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline></variable>"
-msgstr "<variable id=\"formattext\"><emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wanta - Barruu Amaloota Barruu - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaatoo - Barruu Amaloota Barruu - Hiiki</emph></caseinline><defaultinline><emph>Barruu</emph></defaultinline></switchinline></variable>"
+msgid "<variable id=\"epsexport\">Choose <emph>File - Export</emph>, if EPS is selected as file type, this dialog opens automatically</variable>"
+msgstr "<variable id=\"epsexport\"><emph>Faayilii - Alergii</emph>filadhu, yoo EPS akka faayilii akaakuutti filame, qaaqni ofumaan banama </variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3152810\n"
-"35\n"
+"00000401.xhp\n"
+"par_id3150107\n"
+"87\n"
"help.text"
-msgid "<variable id=\"text\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text</emph> tab</variable>"
-msgstr ""
+msgid "<variable id=\"pbmppmpgm\">Choose <emph>File - Export</emph>, if PBM, PPM or PGM is selected as file type, the dialog opens automatically</variable>"
+msgstr "<variable id=\"pbmppmpgm\"><emph>Faayilii - Alergi</emph>filadhuu, yoo PBM, PPM yookan PGM akka akaakuu faayiliitti yoo filame, qaaqni ofumaan banama </variable>"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151060\n"
-"36\n"
+"00000401.xhp\n"
+"par_id3145305\n"
+"96\n"
"help.text"
-msgid "<variable id=\"laufext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text Animation</emph> tab</variable>"
-msgstr ""
+msgid "<variable id=\"versionen\"><variable id=\"autopilotberichtfeldauswahl\">Choose <emph>File - Versions</emph></variable></variable>"
+msgstr "<variable id=\"versionen\"><variable id=\"autopilotberichtfeldauswahl\"> <emph>Faayilii - Fooyya'aa</emph>filadhu</variable></variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149911\n"
-"37\n"
+"00000402.xhp\n"
+"tit\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size</emph>"
-msgstr "<emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wanata -</emph></caseinline><caseinline select=\"CALC\"><emph>saxaatoo - </emph></caseinline></switchinline><emph>Qubanno fi Hamamtaa</emph> fili"
+msgid "Edit Menu"
+msgstr "Baafata Gulaalii"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3156286\n"
-"89\n"
+"00000402.xhp\n"
+"hd_id3147273\n"
+"1\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">Furtuu F4 </caseinline></switchinline>"
+msgid "Edit Menu"
+msgstr "Baafata Gulaalii"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153052\n"
+"00000402.xhp\n"
+"par_id3085157\n"
+"2\n"
"help.text"
-msgid "<image id=\"img_id3150965\" src=\"cmd/sc_transformdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150965\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150965\" src=\"cmd/sc_transformdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150965\">Sajoo</alt></image>"
+msgid "Choose <emph>Edit - Undo</emph>"
+msgstr "Choose <emph>Gulaali - Gaabbi</emph>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149938\n"
-"39\n"
+"00000402.xhp\n"
+"par_id3145160\n"
+"564\n"
"help.text"
-msgid "Position and Size"
-msgstr "Qubannoo fi Hamamtaa"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3148833\n"
-"170\n"
+"00000402.xhp\n"
+"par_id3154094\n"
+"3\n"
"help.text"
-msgid "Open the context menu for the object - choose <emph>Name</emph>"
-msgstr "Baafata halqara Wantaaf bani<emph>Maqaa</emph>fili"
+msgid "On the <emph>Standard</emph> Bar or Table Data bar, click"
+msgstr "Kabala durtii ykn kabala Gabatee <emph>Deetaarraa</emph>,"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id411999\n"
+"00000402.xhp\n"
+"par_id3155449\n"
"help.text"
-msgid "Open the context menu for the object - choose <emph>Description</emph>"
-msgstr "Baafata halqara Wantaaf bani<emph>Ibsa</emph>fili"
+msgid "<image id=\"img_id3155577\" src=\"cmd/sc_undo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155577\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155577\" src=\"cmd/sc_undo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155577\">Sajoo</alt></image>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153099\n"
-"40\n"
+"00000402.xhp\n"
+"par_id3148563\n"
+"4\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\"><emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wantaa - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaxa - </emph></caseinline></switchinline><emph>Caancala Qabannoo fi Hamamtaa - Qabannoo fi Hamamtaa </emph> fili </variable>"
+msgid "Undo"
+msgstr "Gaabbi"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3152973\n"
-"42\n"
+"00000402.xhp\n"
+"par_id3145068\n"
+"5\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Rotation</emph> tab"
-msgstr "<emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wanta - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaanoo- </emph></caseinline></switchinline><emph>Qabannoo fi Hamamtaa - Marsaa</emph> caancalaa filadhu."
+msgid "Choose <emph>Edit - Redo</emph>"
+msgstr "<emph>Guulaali-Irradebii</emph>Fili"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3148495\n"
+"00000402.xhp\n"
+"par_id3153897\n"
+"6\n"
"help.text"
-msgid "<image id=\"img_id3146898\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146898\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146898\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146898\">Sajoo</alt></image>"
+msgid "On the <emph>Standard</emph> Bar, click"
+msgstr "<emph>Waaltinaa irratti</emph> Kabala cuqaasi."
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3146790\n"
-"44\n"
+"00000402.xhp\n"
+"par_id3154938\n"
"help.text"
-msgid "Rotate"
-msgstr "Marsuu"
+msgid "<image id=\"img_id3150358\" src=\"cmd/sc_redo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150358\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150358\" src=\"cmd/sc_redo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150358\">Sajoo</alt></image>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145666\n"
-"45\n"
+"00000402.xhp\n"
+"par_id3151211\n"
+"7\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\">Cancala <emph>Dhangii</emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> - Wanta</emph></caseinline><caseinline select=\"CALC\"><emph>Saxaatoo - </emph></caseinline></switchinline><emph> Qubannoo fi Hamamtaa - Raadiyesii dhuufa xiyyoo</emph>fili </variable>"
+msgid "Redo"
+msgstr "Irradebi'i"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3146081\n"
-"46\n"
+"00000402.xhp\n"
+"par_id3154365\n"
+"8\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"legende\">Cancala <emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wanta - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaatoo - </emph></caseinline></switchinline><emph>Qabannoo fi Hamamtaa - Waayoo</emph> fili (balbaloo boca baramoof hin ta'in,balbaloo barruuf sanduuqa qofa kan ta'uu) </variable>"
+msgid "<variable id=\"letzter\">Choose <emph>Edit - Repeat</emph></variable>"
+msgstr "<variable id=\"letzter\"><emph>Guulaali - Irradebi'i</emph>Fili</variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3083283\n"
-"172\n"
+"00000402.xhp\n"
+"par_id3149765\n"
+"9\n"
"help.text"
-msgid "Choose <emph>Edit - Points</emph>"
-msgstr "<emph>Qaphxiilee - Guulaali</emph>Fili"
+msgid "Choose <emph>Edit - Cut</emph>"
+msgstr "<emph>Guulaali- Muri</emph> fili"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145642\n"
-"47\n"
+"00000402.xhp\n"
+"par_id3144762\n"
+"565\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Open context menu - choose <emph>Edit Points</emph></caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open context menu - choose <emph>Edit Points</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Baafata halqaraa bani - <emph>Qaphxiilee Guulaali</emph> fili</caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Baafata halqaraa bani -<emph>Qaphxiilee Guulaali</emph></caseinline></switchinline>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149019\n"
-"90\n"
+"00000402.xhp\n"
+"par_id3148744\n"
+"10\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Furtuu F8 </caseinline><caseinline select=\"IMPRESS\">Furtuu F8 </caseinline></switchinline>"
+msgid "On the <emph>Standard</emph> Bar, click"
+msgstr "<emph>Waaltinaa irratti</emph> Kabala cuqaasi."
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150044\n"
+"00000402.xhp\n"
+"par_id3145173\n"
"help.text"
-msgid "<image id=\"img_id3147100\" src=\"cmd/sc_toggleobjectbeziermode.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147100\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147100\" src=\"cmd/sc_toggleobjectbeziermode.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147100\">Sajoo</alt></image>"
+msgid "<image id=\"img_id3145744\" src=\"cmd/sc_cut.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145744\">Icon</alt></image>"
+msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153966\n"
-"49\n"
+"00000402.xhp\n"
+"par_id3154153\n"
+"11\n"
"help.text"
-msgid "Edit Points"
-msgstr "Qaphxiilee - Guulaali"
+msgid "Cut"
+msgstr "Muri"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151248\n"
-"50\n"
+"00000402.xhp\n"
+"par_id3150742\n"
+"12\n"
"help.text"
-msgid "Choose <emph>Format - Character</emph> (drawing functions)"
-msgstr "<emph>Dhangii - Arfii</emph>(dalagaalee fakkasaa)fili"
+msgid "Choose <emph>Edit - Copy</emph>"
+msgstr "<emph>Guulaali- Garagalcha</emph>Fili"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145229\n"
-"121\n"
+"00000402.xhp\n"
+"par_id3148923\n"
+"566\n"
"help.text"
-msgid "Open context menu - choose <emph>Character</emph>"
-msgstr "Baafata halqarraa bani - <emph>Arfii</emph> fili"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151342\n"
-"122\n"
+"00000402.xhp\n"
+"par_id3159254\n"
+"13\n"
"help.text"
-msgid "Open context menu - choose <emph>Size</emph>"
-msgstr "Baafata halqarraa bani - <emph>Hamamtaa</emph> fili"
+msgid "On the <emph>Standard</emph> Bar, click"
+msgstr "<emph>Waaltinaa irratti</emph> Kabala cuqaasi."
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149255\n"
-"123\n"
+"00000402.xhp\n"
+"par_id3154985\n"
"help.text"
-msgid "Open context menu - choose <emph>Style</emph>"
-msgstr "Baafata halqarraa bani - <emph>Halata</emph>fili"
+msgid "<image id=\"img_id3156441\" src=\"cmd/sc_copy.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156441\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156441\" src=\"cmd/sc_copy.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156441\">Sajoo</alt></image>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3155177\n"
-"124\n"
+"00000402.xhp\n"
+"par_id3150685\n"
+"14\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Bold</emph>"
-msgstr "Baafata halqarraa bani - <emph>Halata - Yabbuu</emph>fili"
+msgid "Copy"
+msgstr "Garagalchi"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145766\n"
+"00000402.xhp\n"
+"par_id3159153\n"
+"15\n"
"help.text"
-msgid "<image id=\"img_id3156558\" src=\"cmd/sc_bold.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3156558\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156558\" src=\"cmd/sc_bold.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3156558\">Sajoo</alt></image>"
+msgid "Choose <emph>Edit - Paste</emph>"
+msgstr "<emph>Guulaali- Maxxansi</emph>Fili"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3147001\n"
-"55\n"
+"00000402.xhp\n"
+"par_id3155860\n"
+"567\n"
"help.text"
-msgid "Bold"
-msgstr "Yabbuu"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151276\n"
-"125\n"
+"00000402.xhp\n"
+"par_id3159083\n"
+"16\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Italic</emph>"
-msgstr "Baafata halqarraa bani - <emph>Halata - Mirgada</emph>fili"
+msgid "On the <emph>Standard</emph> Bar, click"
+msgstr "<emph>Waaltinaa irratti</emph> Kabala cuqaasi."
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3159091\n"
+"00000402.xhp\n"
+"par_id3156106\n"
"help.text"
-msgid "<image id=\"img_id3155578\" src=\"cmd/sc_italic.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3155578\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155578\" src=\"cmd/sc_italic.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3155578\">Sajoo</alt></image>"
+msgid "<image id=\"img_id3159196\" src=\"cmd/sc_paste.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159196\">Icon</alt></image>"
+msgstr "<image id=\"img_id3159196\" src=\"cmd/sc_paste.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159196\">Sajoo</alt></image>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150234\n"
-"58\n"
+"00000402.xhp\n"
+"par_id3154471\n"
+"17\n"
"help.text"
-msgid "Italic"
-msgstr "Mirgada"
+msgid "Paste"
+msgstr "Maxxansi"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154589\n"
-"126\n"
+"00000402.xhp\n"
+"par_id3152791\n"
+"532\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Underline</emph>"
-msgstr "Baafata halqarraa bani - <emph>Halata - Jalmuri</emph> fili"
+msgid "<variable id=\"inhalte\">Choose <emph>Edit - Paste Special</emph></variable>"
+msgstr "<variable id=\"inhalte\"><emph>Guulaali - Maxxansa Addaa</emph> Fili</variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145223\n"
+"00000402.xhp\n"
+"par_id3148555\n"
+"533\n"
"help.text"
-msgid "<image id=\"img_id3151068\" src=\"cmd/sc_underline.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3151068\">Icon</alt></image>"
-msgstr "<image id=\"img_id3151068\" src=\"cmd/sc_underline.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3151068\">Sajoo</alt></image>"
+msgid "Choose <emph>Edit - Select All</emph>"
+msgstr "<emph>Guulaali- Mara fili</emph> filadhuu"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154715\n"
-"88\n"
+"00000402.xhp\n"
+"par_id3152417\n"
+"568\n"
"help.text"
-msgid "Underline"
-msgstr "Jalmari"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145131\n"
-"127\n"
+"00000402.xhp\n"
+"par_id3145748\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Strikethrough</emph>"
-msgstr "Baafata halqarraa bani - <emph>Halata - Irrasarari</emph>fili"
+msgid "<image id=\"img_id3153095\" src=\"cmd/sc_selectall.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153095\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153095\" src=\"cmd/sc_selectall.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153095\">Sajoo</alt></image>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3158214\n"
-"128\n"
+"00000402.xhp\n"
+"par_id3153139\n"
+"575\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Shadow</emph>"
-msgstr "Baafata halqarraa bani - <emph>Halata - Gaaddidduu</emph>fili"
+msgid "Select All"
+msgstr "Marra Fili"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150207\n"
-"129\n"
+"00000402.xhp\n"
+"par_id3145251\n"
+"555\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Contour</emph>"
-msgstr "Baafata halqarraa bani - <emph>Halata - Rega</emph>fili"
+msgid "<variable id=\"aenderungen\">Choose <emph>Edit - Changes</emph></variable>"
+msgstr "<variable id=\"aenderungen\"><emph>Guulaali - Jijjiiramoota</emph>Fili</variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154383\n"
-"130\n"
+"00000402.xhp\n"
+"par_id3153336\n"
+"556\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Superscript</emph>"
-msgstr "Baafata halqarraa bani - <emph>Halata - IrrArfii</emph>fili"
+msgid "<variable id=\"aufzeichnen\">Choose <emph>Edit - Changes - Record</emph></variable>"
+msgstr "<variable id=\"aufzeichnen\"><emph>Gulaali - Jijjiiramoota - Kuusa</emph> Fili</variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3152767\n"
-"131\n"
+"00000402.xhp\n"
+"par_id3150594\n"
+"557\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Subscript</emph>"
-msgstr "Baafata halqarraa bani - <emph>Halata - JalArfii</emph>fili"
+msgid "<variable id=\"anzeigen\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Edit - Changes - Show</emph></caseinline><caseinline select=\"CALC\">Choose <emph>Edit - Changes - Show</emph></caseinline></switchinline></variable>"
+msgstr "<variable id=\"anzeigen\"><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Guulaali - Jijjiiramoota - Mul'isi</emph>Fili</caseinline><caseinline select=\"CALC\"><emph>Guulaali - Jijjiiramoota - Mul'isi</emph>Fili</caseinline></switchinline></variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3155377\n"
-"132\n"
+"00000402.xhp\n"
+"par_id3153845\n"
+"558\n"
"help.text"
-msgid "Open context menu - choose <emph>Line Spacing</emph>"
-msgstr "Baafata halqaraa bani - <emph>Addaan fageenya Sararaa</emph> fili"
+msgid "<variable id=\"rotlinie\">Choose <emph>Edit - Changes - Accept or Reject</emph></variable>"
+msgstr "<variable id=\"rotlinie\">Choose <emph>Guulaali - Jijjiiramoota - Fudhi yookin Gati</emph></variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154475\n"
-"133\n"
+"00000402.xhp\n"
+"par_id3148587\n"
+"559\n"
"help.text"
-msgid "Open context menu - choose <emph>Line Spacing - Single</emph>"
-msgstr "Baafata halqaraa bani - <emph>Addaan fageenya Sarara - Altookkee</emph> fili"
+msgid "Choose <emph>Edit - Changes - Accept or Reject - List</emph> tab"
+msgstr "Cancala <emph>Guulaali - Jijjiiramoota - Fudhi yookin Gati - Tarree</emph> Fili"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150478\n"
-"134\n"
+"00000402.xhp\n"
+"par_id3150396\n"
+"574\n"
"help.text"
-msgid "Open context menu - choose <emph>Line Spacing - 1.5 Lines</emph>"
-msgstr "Baafata halqaraa bani - <emph>Addaan fageenya Sarara - Sararoota 1.5</emph> fili"
+msgid "Choose <emph>Format - AutoCorrect - Apply and Edit Changes.</emph> AutoCorrect dialog appears, click <emph>Edit Changes</emph> button, see <emph>List</emph> tab page"
+msgstr "<emph>Dhangii - OfiinSirreessaa - Hojjomsi akkasumas Jijjiirraa Gulaali fili.</emph> Qaaqan OfiinSirreessaa ni mul'ata, qabduu <emph>Jijjiirraa Guulaali</emph> cuqaasi, fuulaa caancala <emph>Tarree</emph> ilaali"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3147167\n"
-"135\n"
+"00000402.xhp\n"
+"par_id3153878\n"
+"560\n"
"help.text"
-msgid "Open context menu - choose <emph>Line Spacing - Double</emph>"
-msgstr "Baafata halqaraa bani - <emph>Addaan fageenya Sarara - Dachaa</emph> fili"
+msgid "<variable id=\"rotliniefilter\">Choose <emph>Edit - Changes - Accept or Reject - Filter</emph> tab </variable>"
+msgstr "<variable id=\"rotliniefilter\">Cancala<emph>Guulaali - Jijjiiramoota - Fudhi yookin Gati - Gingilchaa Fili</emph></variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3146978\n"
-"69\n"
+"00000402.xhp\n"
+"par_id3151281\n"
+"561\n"
"help.text"
-msgid "Choose <emph>Format - Alignment - Left</emph> (drawing functions)"
-msgstr "<emph>Dhangii - Hiriirsuu - Bitaa</emph>(dalagaalee fakkasaa)fili"
+msgid "<variable id=\"einfuegen\">Choose <emph>Edit - Changes - Merge Document</emph></variable>"
+msgstr "<variable id=\"einfuegen\"><emph>Guulaali - Jijjiiramoota - Galmee Maki </emph>Fili</variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153009\n"
-"136\n"
+"00000402.xhp\n"
+"par_id3153224\n"
+"562\n"
"help.text"
-msgid "Open context menu - choose <emph>Alignment - Left</emph>"
-msgstr "Baafata halqaraa bani <emph>Hiriira - Bitaa</emph> fili"
+msgid "<variable id=\"dvergl\">Choose <emph>Edit - Compare Document</emph></variable>"
+msgstr "<variable id=\"dvergl\">Choose <emph>Guulaali - Galmee Waliin Madaali</emph>Fili</variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3147310\n"
+"00000402.xhp\n"
+"par_id3148773\n"
+"563\n"
"help.text"
-msgid "<image id=\"img_id3155370\" src=\"cmd/sc_alignleft.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155370\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155370\" src=\"cmd/sc_alignleft.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155370\">Sajoo</alt></image>"
+msgid "Choose <emph>Edit - Changes - Comment</emph>"
+msgstr "<emph>Guulaalii - Jijjiiramoota - Yaada</emph> Fili"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151336\n"
-"71\n"
+"00000402.xhp\n"
+"par_id3149488\n"
+"571\n"
"help.text"
-msgid "Align Left"
-msgstr "Bitaa Hirirsuu"
+msgid "Choose <emph>Edit - Changes - Accept or Reject - List</emph> tab. Click an entry in the list and open the context menu. Choose <emph>Edit Comment</emph>"
+msgstr "Cancala <emph>Guulaalii - Fudhu yookin Gati - Tarree</emph> Fili. Guulaalii Tarree keessati Cuqaasitii baafata haalqaraa bani. <emph>Guulaallii Yaada filadhu</emph>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3155823\n"
-"72\n"
+"00000402.xhp\n"
+"par_id3156297\n"
+"49\n"
"help.text"
-msgid "Choose <emph>Format - Alignment - Right</emph> (drawing functions)"
-msgstr "<emph>Dhangii - Hiriirsuu - Mirgaa</emph> (dalagaalee fakkasaa) fili"
+msgid "Choose <emph>Edit - Find & Replace</emph>"
+msgstr "<emph>Guulaalii - Baarbaadi</emph> akkasumaas Bakka Buusi Fili"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3155762\n"
-"137\n"
+"00000402.xhp\n"
+"par_id3154503\n"
+"569\n"
"help.text"
-msgid "Open context menu - choose <emph>Alignment - Right</emph>"
-msgstr "Baafata halqaraa bani <emph>Hiriira - Mirga</emph> fili"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+H"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149408\n"
+"00000402.xhp\n"
+"par_id3155083\n"
+"456\n"
"help.text"
-msgid "<image id=\"img_id3154421\" src=\"cmd/sc_alignright.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154421\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154421\" src=\"cmd/sc_alignright.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154421\">Sajoo</alt></image>"
+msgid "On Standard bar, click"
+msgstr "Kabala Durtiirra,"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153607\n"
-"74\n"
+"00000402.xhp\n"
+"par_id3150020\n"
"help.text"
-msgid "Align Right"
-msgstr "Mirga Hiriirsuu"
+msgid "<image id=\"img_id3149121\" src=\"cmd/sc_recsearch.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149121\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149121\" src=\"cmd/sc_recsearch.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149121\">Sajoo</alt></image>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149189\n"
-"75\n"
+"00000402.xhp\n"
+"par_id3144748\n"
+"50\n"
"help.text"
-msgid "Choose <emph>Format - Alignment - Centered</emph> (drawing functions)"
-msgstr "<emph>Dhangii - Hiriirsuu - Wiiteeffamaa</emph>(dalagaalee fakkasaa)fili"
+msgid "Find & Replace"
+msgstr "Barbaadi fi Bakkabuusi"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154624\n"
-"138\n"
+"00000402.xhp\n"
+"par_id3156357\n"
+"552\n"
"help.text"
-msgid "Open context menu - choose <emph>Alignment - Center</emph>"
-msgstr "Baafata halqaraa bani <emph>Hiriira - Wirtteffamaa</emph> fili"
+msgid "<variable id=\"suchenattribute\">Choose <emph>Edit - Find & Replace - Attributes</emph></variable>"
+msgstr "<variable id=\"suchenattribute\"><emph>Gulaali - Barbaadi fi Bakkabuusi - Amaloota</emph> Fili</variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153815\n"
+"00000402.xhp\n"
+"par_id3153840\n"
+"553\n"
"help.text"
-msgid "<image id=\"img_id3149757\" src=\"cmd/sc_centerpara.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149757\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149757\" src=\"cmd/sc_centerpara.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149757\">Sajoo</alt></image>"
+msgid "<variable id=\"suchenformat\">Choose <emph>Edit - Find & Replace - Format</emph> button </variable>"
+msgstr "<variable id=\"suchenformat\">Qabduu <emph>Guulaalii - Barbaadi akkasumaas Bakkabuusi - Dhangii</emph> Fili </variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153076\n"
-"77\n"
+"00000402.xhp\n"
+"par_id3146971\n"
+"554\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Dalgeedhaan Wirtessi Hiriirsi</caseinline><defaultinline> Wirtteffamaa</defaultinline></switchinline>"
+msgid "Choose <emph>Edit - Find & Replace - Similarity search</emph> check box and <emph>...</emph> button."
+msgstr "<emph>Guulaalii - Barbaadi fi Bakkabuusi -Sanduuqa filannoo wafakkeenya barbaadi</emph> fi<emph>... qabduu</emph> fili."
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3146151\n"
-"78\n"
+"00000402.xhp\n"
+"par_id3153709\n"
+"572\n"
"help.text"
-msgid "Choose <emph>Format - Alignment - Justified</emph> (drawing functions)"
-msgstr "<emph>Dhangii - Hiriirsuu - Qixeeffamaa</emph>(dalagaalee fakkasaa)fili"
+msgid "On the <emph>Table Data</emph> Bar, click <emph>Find</emph> icon - <emph>Similarity search</emph> check box - <emph>...</emph> button (database table view)"
+msgstr "Kabala <emph>Gabatee Deetaarraa</emph>, sajoo <emph>Barbaadi</emph> - sanduuqa <emph>Filannoo walfakeenya barbaadi</emph><emph>...</emph> qabaduu(mui'annoo gabatee kuusaa detaa) cuqaasi"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3168612\n"
-"139\n"
+"00000402.xhp\n"
+"par_id3150749\n"
+"573\n"
"help.text"
-msgid "Open context menu - choose <emph>Alignment - Justified</emph>"
-msgstr "Baafata halqaraa bani <emph>Hiriira - Qixeeffamaa</emph>fili"
+msgid "On <emph>Form Design</emph> Bar, click <emph>Record Search</emph> - <emph>Similarity search</emph> check box - <emph>...</emph> button (form view)"
+msgstr "Kabala <emph>Unka Saxaxarraa</emph><emph>Kuusaa Barbaadi</emph> - <emph>Sanduuqa filannoo walfakeenya barbaadi</emph><emph>...</emph> qabduu(Mul'annoo unkaa) cuqaasi"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3156189\n"
+"00000402.xhp\n"
+"par_id3152960\n"
+"534\n"
"help.text"
-msgid "<image id=\"img_id3145308\" src=\"cmd/sc_justifypara.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145308\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145308\" src=\"cmd/sc_justifypara.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145308\">Sajoo</alt></image>"
+msgid "Choose <emph>View - Navigator</emph>"
+msgstr "<emph>Guulaali - Naanna'aa</emph> fili"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153131\n"
-"80\n"
+"00000402.xhp\n"
+"par_id3163824\n"
+"535\n"
"help.text"
-msgid "Justified"
-msgstr "Qixeeffamaa"
+msgid "On <emph>Standard</emph> Bar, click"
+msgstr "Kabala <emph>Durtti</emph> irraa,"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150527\n"
-"81\n"
+"00000402.xhp\n"
+"par_id3159183\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\">Kabala <emph>Fakkassaa</emph> sajoo <emph>Dalaga bocaquu</emph> cuqaasi</variable>"
+msgid "<image id=\"img_id3154508\" src=\"cmd/sc_navigator.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154508\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154508\" src=\"cmd/sc_navigator.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154508\">Sajoo</alt></image>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3144503\n"
-"103\n"
+"00000402.xhp\n"
+"par_id3147359\n"
+"536\n"
"help.text"
-msgid "Choose <emph>Format - Group</emph>"
-msgstr "<emph>Dhangii - Tuutee</emph> Fili"
+msgid "Navigator On/Off"
+msgstr "Naanna'aa bani/cufi"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154854\n"
-"140\n"
+"00000402.xhp\n"
+"par_id3147338\n"
+"576\n"
"help.text"
-msgid "Open context menu - choose <emph>Group</emph>"
-msgstr "Baafata halqarraa bani - <emph>Tuutee</emph> fili"
+msgid "<variable id=\"litdat\">Choose <emph>Tools - Bibliography Database</emph></variable>"
+msgstr "<variable id=\"litdat\"><emph>Meeshaalee - Wabi Kuusaa Deetaa</emph>Fili</variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3157985\n"
-"83\n"
+"00000402.xhp\n"
+"par_id3149281\n"
+"538\n"
"help.text"
-msgid "Choose <emph>Format - Group - Group</emph> (text documents, spreadsheets)"
-msgstr "<emph>Dhangii - Tuutee - Tuutee</emph>(Galmeelee barruu, Wardilee)fili"
+msgid "<variable id=\"link\">Choose <emph>Edit - Links</emph></variable>"
+msgstr "<variable id=\"link\"><emph>Guulaalii - Geessituuwwan</emph>Fili</variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3157980\n"
-"104\n"
+"00000402.xhp\n"
+"par_id3159339\n"
+"551\n"
"help.text"
-msgid "Choose <emph>Modify - Group</emph> (drawing documents)"
-msgstr "<emph>Fooyyeessi - Tuutee</emph> (Glameelee fakkasaa)fili"
+msgid "<variable id=\"linkae\">Choose <emph>Edit - Links - Modify Link</emph> (DDE links only) </variable>"
+msgstr "<variable id=\"linkae\"><emph>Guulaalii - Geessituuwwan - Geessituu Fooyyeessi</emph> (Geessituuwwan DDE) Fili</variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149508\n"
-"84\n"
+"00000402.xhp\n"
+"par_id3148927\n"
+"543\n"
"help.text"
-msgid "Open context menu - choose <emph>Group - Group</emph> (form objects)"
-msgstr "Baafata halaqaraa bani - <emph>Tuutee - Tuutee</emph> (unka wantoota)fili"
+msgid "Select a frame, then choose <emph>Edit - Object - Properties</emph>"
+msgstr "Goodayyaa fili kan booda <emph>Guulaalii Wanta - Amaloota</emph>Fili"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3146858\n"
+"00000402.xhp\n"
+"par_id3156315\n"
+"577\n"
"help.text"
-msgid "<image id=\"img_id3154344\" src=\"cmd/sc_formatgroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154344\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154344\" src=\"cmd/sc_formatgroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154344\">Sajoo</alt></image>"
+msgid "Open context menu of selected frame - choose <emph>Properties</emph>"
+msgstr "Baafata halqaraa gooddayyaa filatamee bani - <emph>Amaloota</emph>cuqaasi"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149593\n"
-"113\n"
+"00000402.xhp\n"
+"par_id3151251\n"
+"545\n"
"help.text"
-msgid "Group"
-msgstr "Tuutee"
+msgid "<variable id=\"plugin\">Choose <emph>Edit - Plug-in</emph></variable>"
+msgstr "<variable id=\"plugin\"><emph>Guulaalii - Itti-suuqi</emph>fili</variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153023\n"
-"85\n"
+"00000402.xhp\n"
+"par_id3156091\n"
+"546\n"
"help.text"
-msgid "Choose <emph>Format - Group - Ungroup</emph> (text documents, spreadsheets)"
-msgstr "<emph>Dhangii - Tuutee - Garbaasi</emph> (barruu galmeelee, wardiilee)"
+msgid "<variable id=\"imagemap\">Choose <emph>Edit - ImageMap</emph> (also in context menu of selected object) </variable>"
+msgstr "<variable id=\"imagemap\"><emph>Guulaalii - MaapiCalaqqee </emph> (baafata halqaraa wanta filatamee sana keessaalee) </variable>fili"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3163378\n"
-"105\n"
+"00000402.xhp\n"
+"par_id3155936\n"
+"550\n"
"help.text"
-msgid "Choose <emph>Modify - Ungroup</emph> (drawing documents)"
-msgstr "<emph>Fooyyeessi - Garbaasi </emph>(Galmeelee fakkasaa)fili"
+msgid "<variable id=\"imapeigbea\">Choose <emph>Edit - ImageMap</emph>, then select a section of the ImageMap and click <emph>Properties - Description</emph></variable>"
+msgstr "<variable id=\"imapeigbea\"><emph>Guulaalii - MaapiCalaqqee</emph>, Fili itti ansuun cutaatokkitti mapiicalaqqee fili kana booda <emph>Amaloota - Ibsa</emph> cuqaasi</variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3156038\n"
-"86\n"
+"00000402.xhp\n"
+"par_id3149259\n"
+"547\n"
"help.text"
-msgid "Open context menu - choose <emph>Ungroup</emph>"
-msgstr "Baafata halqaraa bani <emph>Grbaasi</emph> fili"
+msgid "<variable id=\"edit1\">Choose <emph>Edit - Object</emph></variable>"
+msgstr "<variable id=\"edit1\">Choose <emph>Guulaalii - Wanta</emph>Fili</variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151300\n"
+"00000402.xhp\n"
+"par_id3154966\n"
+"548\n"
"help.text"
-msgid "<image id=\"img_id3150831\" src=\"cmd/sc_formatungroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150831\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150831\" src=\"cmd/sc_formatungroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150831\">Sajoo</alt></image>"
+msgid "<variable id=\"edit2\">Choose <emph>Edit - Object - Edit</emph>, also in the context menu of selected object </variable>"
+msgstr "<variable id=\"edit2\"> <emph>Guulaalii - Guulaalii - Guulaalii</emph> Fili, baafata haalaqaraa wanta filatamee san keessaalee fili</variable>"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3146894\n"
-"115\n"
+"00000402.xhp\n"
+"par_id3149565\n"
+"549\n"
"help.text"
-msgid "Ungroup"
-msgstr "Garbaasi"
+msgid "<variable id=\"edit3\">Choose <emph>Edit - Object - Open</emph></variable>"
+msgstr "<variable id=\"edit3\">Choose <emph>Guulaali - Wanta - Bani</emph></variable>"
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153109\n"
-"106\n"
+"00000403.xhp\n"
+"tit\n"
"help.text"
-msgid "Choose <emph>Format - Group - Exit Group</emph> (text documents, spreadsheets)"
-msgstr "<emph>Dhangii - Tuutee - Tuutee Bahi</emph>(Galmeelee baruu,Wardiilee)fili"
+msgid "View Menu"
+msgstr "Baafata Mul'annoo"
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145678\n"
-"107\n"
+"00000403.xhp\n"
+"hd_id3156304\n"
+"1\n"
"help.text"
-msgid "Choose <emph>Modify - Exit Group</emph> (drawing documents)"
-msgstr "<emph>Fooyyeessi - Tuutee Bahi</emph>(Galmeelee fakkasaa)fili"
+msgid "View Menu"
+msgstr "Baafata Mul'annoo"
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3152367\n"
-"108\n"
+"00000403.xhp\n"
+"par_id3146936\n"
+"12\n"
"help.text"
-msgid "Open context menu - choose <emph>Exit Group</emph>"
-msgstr "Baafata halqarraa bani - <emph>Tuutee Bahi</emph>fili"
+msgid "Choose <emph>View - Zoom</emph>"
+msgstr "<emph>Mul'annoo - Guddisa - </emph> fili"
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3158402\n"
+"00000403.xhp\n"
+"par_id3149962\n"
+"24\n"
"help.text"
-msgid "<image id=\"img_id3149422\" src=\"cmd/sc_leavegroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149422\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149422\" src=\"cmd/sc_leavegroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149422\">Sajoo</alt></image>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Zoom also with (+) (-) (×) and (÷) on the number keypad </caseinline><caseinline select=\"IMPRESS\">Zoom also with (+) (-) (×) and (÷) on the number keypad </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Gabatee cufoorra (+) (-) (×) fi (÷) fayyadamunis guddisi </caseinline><caseinline select=\"IMPRESS\">Gabatee cufoorra (+) (-) fi (÷) fayyadamunis guddisi </caseinline></switchinline>"
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3155347\n"
-"117\n"
+"00000403.xhp\n"
+"par_id3152895\n"
+"13\n"
"help.text"
-msgid "Exit Group"
-msgstr "Tuutee Bahi"
+msgid "Double-click or right-click the field on the <emph>Status</emph> Bar"
+msgstr "Dirree kabala <emph>Haaloojiirraa</emph> lama cuqaasi ykn Mirga cuqaasi"
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149129\n"
-"109\n"
+"00000403.xhp\n"
+"par_id3156183\n"
+"36\n"
"help.text"
-msgid "Choose <emph>Format - Group - Enter Group</emph> (text documents, spreadsheets)"
-msgstr "<emph>Dhangii - Tuutee - Tuutee galchi</emph> (barruu galmeelee, wardiilee)"
+msgid "Choose <emph>View - Toolbars</emph>"
+msgstr "<emph>Mul'annoo - Kamshaalee</emph>Fili"
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145354\n"
-"110\n"
+"00000403.xhp\n"
+"par_id3166445\n"
+"15\n"
"help.text"
-msgid "Choose <emph>Modify - Enter Group</emph> (drawing documents)"
-msgstr "<emph>Fooyyeessi - Tuutee Galchi</emph>(Galmeelee fakkasaa)fili"
+msgid "<variable id=\"funktion\">Choose <emph>View - Toolbars - Standard</emph></variable>"
+msgstr "<variable id=\"funktion\"><emph>Mul'annoo - Kamshaalee - Durtii</emph>Fili</variable>"
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149946\n"
-"111\n"
+"00000403.xhp\n"
+"par_id3153748\n"
+"17\n"
"help.text"
-msgid "Open context menu - choose <emph>Enter Group</emph>"
-msgstr "Baafata halqaraa bani - <emph>Tuutee Galchi</emph>fili"
+msgid "<variable id=\"werkzeug\">Choose <emph>View - Toolbars - Tools</emph></variable>"
+msgstr "<variable id=\"werkzeug\"><emph>Mul'annoo - Kamshaalee - Meeshaalee</emph>Fili</variable>"
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3152388\n"
+"00000403.xhp\n"
+"par_id3154317\n"
+"18\n"
"help.text"
-msgid "<image id=\"img_id3149900\" src=\"cmd/sc_entergroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149900\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149900\" src=\"cmd/sc_entergroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149900\">Sajoo</alt></image>"
+msgid "<variable id=\"task\">Choose <emph>View - Status Bar</emph></variable>"
+msgstr "<variable id=\"task\">Choose <emph>Mul'annoo - Kabala Haalojii</emph>Fili</variable>"
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3152547\n"
-"119\n"
+"00000403.xhp\n"
+"par_id3152780\n"
+"19\n"
"help.text"
-msgid "Enter Group"
-msgstr "Tuutee Galchi"
+msgid "<variable id=\"farbleiste\">Choose <emph>View - Toolbars - Color Bar</emph></variable>"
+msgstr "<variable id=\"farbleiste\"><emph>Mul'annoo - Kamshaalee - Kabala Halluu</emph>Fili</variable>"
-#: 00000207.xhp
-#, fuzzy
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"tit\n"
+"00000403.xhp\n"
+"par_id3156113\n"
+"43\n"
"help.text"
-msgid "Export text files"
-msgstr "Faayiloota barruu alergii"
+msgid "<variable id=\"ime\">Choose <emph>View - Input Method Status</emph></variable>"
+msgstr "<variable id=\"ime\">Choose <emph>Mul'annoo - Haalojii Naqa Toftaa</emph>Fili</variable>"
-#: 00000207.xhp
-#, fuzzy
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"hd_id3153116\n"
-"1\n"
+"00000403.xhp\n"
+"par_id3157909\n"
+"32\n"
"help.text"
-msgid "Export text files"
-msgstr "Faayiloota barruu alergii"
+msgid "Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>Internet</emph>"
+msgstr "Kabala <emph>Durtiirraa</emph> sajoo <emph>Geessituu</emph> cuqaasi,<emph>Interneetii</emph> cuqaasi"
-#: 00000207.xhp
-#, fuzzy
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3150379\n"
-"7\n"
+"00000403.xhp\n"
+"par_id3146806\n"
+"42\n"
"help.text"
-msgid "The <emph>Export text files</emph> dialog allows you to define the export options for text files. The dialog will be displayed if you save spreadsheet data as file type \"Text CSV\", and if the <emph>Edit filter settings</emph> check box is marked in the <emph>Save As</emph> dialog."
-msgstr "Qaaqni <emph>Faayiloota barruu alergii</emph> dirqaalee alergii faayilootaaf akka qindeessituuf siif eyyama. Yoo deeetaa waraqaa diriiroo akka faayilii \"Text CSV\" olkeesse fi yoo saanduqni mirkaneessa <emph>Qindaa'ina calaltuu gulaaluu</emph> qaaqa <emph>Akka olkaa'i</emph>keessatti mallattoon itti godhame qaaqni ni mul'ata."
+msgid "Choose <emph>Insert - Hyperlink</emph>"
+msgstr "<emph>Saagi- Geessituu</emph> Fili"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"hd_id3155577\n"
-"2\n"
+"00000403.xhp\n"
+"par_id3153717\n"
+"38\n"
"help.text"
-msgid "Field options"
-msgstr "Dirqalee dirree"
+msgid "<variable id=\"hypdiamailnews\">Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>Mail & News</emph></variable>"
+msgstr "<variable id=\"hypdiamailnews\">Kabala <emph>Waaltina</emph> irratti sajoo <emph>Geessituu</emph> cuqaasi, <emph>Ergannoo & Oduu</emph> cuqaasi</variable>"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3152427\n"
-"8\n"
+"00000403.xhp\n"
+"par_id3149415\n"
+"34\n"
"help.text"
-msgid "Defines the field separator, text separator and character set that is used for the text export."
-msgstr "Adda baasaa dirree, adda baasaa barruu fi qindaa'ina kan alergii barruuf qindeessa."
+msgid "<variable id=\"hypdiadok\">Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>Document</emph></variable>"
+msgstr "<variable id=\"hypdiadok\">Kabala <emph>Durtiirraa</emph> Sajoo <emph>Geessituu</emph> cuqaasi,<emph>Galmee</emph> cuqaasi</variable>"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"hd_id3152876\n"
-"5\n"
+"00000403.xhp\n"
+"par_id3150129\n"
+"35\n"
"help.text"
-msgid "Character set"
-msgstr "Qindaa'ina arfii"
+msgid "<variable id=\"hypdianeudok\">Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>New Document</emph></variable>"
+msgstr "<variable id=\"hypdianeudok\">Kabala <emph>Durtiirraa</emph> Sajoo <emph>Geessituu</emph> cuqaasi,<emph>Galmee Haaraa</emph> cuqaasi</variable>"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3154689\n"
-"11\n"
+"00000403.xhp\n"
+"par_id3159269\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_IMPORTOPT:DDLB_FONT\">Specifies the character set for text export.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_IMPORTOPT:DDLB_FONT\">Qindaa'ina arfii alergii barruuf.</ahelp>"
+msgid "Choose <emph>View - Full Screen</emph>"
+msgstr "<emph>Mul'annoo - Argii Guutu</emph>Fili"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"hd_id3145138\n"
-"3\n"
+"00000403.xhp\n"
+"par_id3149578\n"
+"25\n"
"help.text"
-msgid "Field delimiter"
-msgstr "Daangessaa dirree"
+msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+J"
+msgstr "Jijjiirraa+<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+J"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3150838\n"
-"9\n"
+"00000403.xhp\n"
+"par_id3153257\n"
"help.text"
-msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_IMPORTOPT:ED_FIELDSEP\">Choose or enter the field delimiter, which separates data fields.</ahelp>"
-msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_IMPORTOPT:ED_FIELDSEP\">Daangessaa dirree fili ykn saagi, dirroota deetaa kan adda baasu.</ahelp>"
+msgid "<image id=\"img_id3148473\" src=\"cmd/sc_fullscreen.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148473\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148473\" src=\"cmd/sc_fullscreen.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148473\">Sajoo</alt></image>"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"hd_id3154682\n"
-"4\n"
+"00000403.xhp\n"
+"par_id3153627\n"
+"44\n"
"help.text"
-msgid "Text delimiter"
-msgstr "Daangessaa barruu"
+msgid "Full Screen On/Off (in Page Preview)"
+msgstr "Argii Guutuu bani/cufi(Durargii fuulaa keessa)"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3154863\n"
-"10\n"
+"00000403.xhp\n"
+"par_id3147559\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_IMPORTOPT:ED_TEXTSEP\">Choose or enter the text delimiter, which encloses every data field.</ahelp>"
-msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_IMPORTOPT:ED_TEXTSEP\">Daangessaa barruu fili ykn saagi, kan dirree deetaa baay'ee qabatu.</ahelp>"
+msgid "If a text document or spreadsheet is open:"
+msgstr "Yoo Galmeen barruu yookin wardiin banamee:"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"hd_id783149793\n"
+"00000403.xhp\n"
+"par_id3145069\n"
+"31\n"
"help.text"
-msgid "Quote all text cells"
-msgstr ""
+msgid "Menu <emph>View - Data Sources</emph>"
+msgstr "Baafata <emph>Mul'anno - Madda Deetaa</emph>"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3152778363\n"
+"00000403.xhp\n"
+"par_id3149046\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\".\">Exports all text cells with leading and trailing quote characters as set in the Text delimiter box. If not checked, only those text cells get quoted that contain the Field delimiter character.</ahelp>"
-msgstr ""
+msgid "F4 key"
+msgstr "Furtuu F4"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"hd_id7145298\n"
+"00000403.xhp\n"
+"par_id3153778\n"
"help.text"
-msgid "Save cell content as shown"
-msgstr "Qabeentoo seelii akka mul'atetti olkaa'i"
+msgid "<image id=\"img_id3153524\" src=\"cmd/sc_viewdatasourcebrowser.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153524\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153524\" src=\"cmd/sc_viewdatasourcebrowser.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153524\">Sajoo</alt></image>"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id5719779\n"
+"00000403.xhp\n"
+"par_id3146908\n"
+"39\n"
"help.text"
-msgid "<ahelp hid=\".\">Enabled by default, data will be saved as displayed, including applied number formats. If this checkbox is not marked, raw data content will be saved, as in older versions of the software.</ahelp>"
-msgstr "<ahelp hid=\".\">Durtiidhaan dandeessifame, deetaan akka mul'atutti olkaa'ame, dhangii lakkoofsa fayyade dabalatee. Yoo saanduqni kun mallattoon itti hin godhamne, qabeentoon deetaa tarree ni olk'aama, akka fooyya'ina duraa %PRODUCTNAME.</ahelp>ti."
+msgid "Data Sources"
+msgstr "Maddoota Deetaa"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3541062\n"
+"00000403.xhp\n"
+"par_id3154140\n"
+"9\n"
"help.text"
-msgid "Depending on the number format, saving cell content as shown may write values that during an import cannot be interpreted as numerical values anymore."
-msgstr "Dhangii lakkoofsa irratti hundaa'uun, qabeentoota seelii gatiiwwan barreefama koo kan yeroo alaagi akka gatiiwwan lakkoofsatti hin hiikamne mul'atu olkaa'uu."
+msgid "Choose <emph>View - HTML Source</emph>"
+msgstr "<emph>Mul'annoo - Madda HTML</emph>Fili"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"hd_id3149793\n"
-"12\n"
+"00000403.xhp\n"
+"par_id3154947\n"
+"23\n"
"help.text"
-msgid "Fixed column width"
-msgstr "Dalgee tarjaa dhaabbataa"
+msgid "Open context menu in an HTML document"
+msgstr "Galmee HTML keessaa baafata halqaraa bani"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3152363\n"
-"13\n"
+"00000403.xhp\n"
+"par_id3152935\n"
"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_IMPORTOPT_CB_FIXEDWIDTH\">Exports all data fields with a fixed width.</ahelp>"
-msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_IMPORTOPT_CB_FIXEDWIDTH\">Dirroota deetaa hunda dalgee dhaabbataa wajjin alerguu.</ahelp>"
+msgid "<image id=\"img_id3156422\" src=\"cmd/sc_sourceview.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156422\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156422\" src=\"cmd/sc_sourceview.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156422\">Sajoo</alt></image>"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3149283\n"
-"14\n"
+"00000403.xhp\n"
+"par_id3144448\n"
+"11\n"
"help.text"
-msgid "The width of a data field in the exported text file is set to the current width of the corresponding column."
-msgstr "Dalgeen dirree deetaa fayilee barruu alergee keessaa akka dalgee ammee tarjaa walitti dhufootti qindaa'a."
+msgid "HTML Source"
+msgstr "Madda HTML"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3154116\n"
-"15\n"
+"00000403.xhp\n"
+"par_idN1091B\n"
"help.text"
-msgid "Values are exported in the format as currently seen in the cell."
-msgstr "Gatiin dhangii keessatti alergame akka ammeetti seelii keessatti ilaalame."
+msgid "<variable id=\"grid\">Choose <emph>View - Grid</emph> (Impress or Draw) </variable>"
+msgstr "<variable id=\"grid\"><emph>Mul'annoo - Tarsaa</emph> (Impressi yookin Fakkasaa) fili</variable>"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3156414\n"
-"16\n"
+"00000403.xhp\n"
+"par_idN1092E\n"
"help.text"
-msgid "If a value is longer than the fixed column width, it will be exported as a ### string."
-msgstr "Yoo gatiin dalgee tarjaa dhaabbataa irra dheerate, akka ### diraatti alergama."
+msgid "<variable id=\"guides\">Choose <emph>View - Snap Lines</emph> (Impress or Draw) </variable>"
+msgstr "<variable id=\"guides\"><emph>Mul'annoo - Qajeelchootaa</emph>(Impressi yookin Fakkasaa) fili</variable>"
-#: 00000207.xhp
+#: 00000404.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3150178\n"
-"17\n"
+"00000404.xhp\n"
+"tit\n"
"help.text"
-msgid "If a text string is longer than the fixed column width, it will be truncated at the end."
-msgstr "Yoo dirraan barruu dalgee tarjaa dhaabbataa irra dheerate, xumurarratti ni gabaabbata."
+msgid "Insert Menu"
+msgstr "Baafata Saagi"
-#: 00000207.xhp
+#: 00000404.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3148548\n"
-"18\n"
+"00000404.xhp\n"
+"hd_id3156324\n"
+"1\n"
"help.text"
-msgid "The alignment Left, Centered, and Right will be simulated by inserted blanks."
-msgstr "Hiriirfama bitaa, Wiirta'aa, fi mirgaa fakkeeffama bakka duuwwaa saaguu dhaan."
+msgid "Insert Menu"
+msgstr "Baafata Saagi"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"tit\n"
+"00000404.xhp\n"
+"par_id3153808\n"
+"28\n"
"help.text"
-msgid "Frequently-Used Buttons"
-msgstr "Qabdoota-Irradaddebiin Fayyadaman"
+msgid "<variable id=\"notiz\">Choose <emph>Insert - Comment</emph></variable>"
+msgstr "<variable id=\"eispa\"><emph>Saagi - Tarjoota</emph> filadhu</variable>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3152952\n"
-"1\n"
+"00000404.xhp\n"
+"par_id3155619\n"
+"71\n"
"help.text"
-msgid "Frequently-Used Buttons"
-msgstr "Qabdoota-Irradaddebiin itti fayyadaman"
+msgid "Choose <emph>Insert - Picture - Scan</emph>"
+msgstr "<emph>Saagi - Fakkatti - Kaastuu</emph> Fili"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3147617\n"
-"4\n"
+"00000404.xhp\n"
+"par_id3150502\n"
+"30\n"
"help.text"
-msgid "Cancel"
-msgstr "Dhiisi"
+msgid "Choose <emph>Insert - Picture - Scan - Select Source</emph>"
+msgstr "<emph>Saagi - Fakkatti - Kaastuu Madda Fili</emph> Filadhu"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3155913\n"
-"5\n"
+"00000404.xhp\n"
+"par_id3155934\n"
+"32\n"
"help.text"
-msgid "<ahelp hid=\".\">Clicking <emph>Cancel</emph> closes a dialog without saving any changes made.</ahelp>"
-msgstr "<ahelp hid=\".\"><emph>Dhiisi</emph> cuqaasuun jijjiirama wrramee tokkolee osso olhinkaaiin qaaqa cufa.</ahelp>"
+msgid "Choose <emph>Insert - Picture - Scan - Request</emph>"
+msgstr "<emph>Saagi - Fakkatti - Kaastuu Gaafata</emph> Fili"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id2341685\n"
+"00000404.xhp\n"
+"par_id3143281\n"
+"34\n"
"help.text"
-msgid "Finish"
-msgstr "Xumuri"
+msgid "Choose <emph>Insert - Special Character</emph>"
+msgstr "<emph>Saagi - Arfii Addaa</emph> Fili"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id6909390\n"
+"00000404.xhp\n"
+"par_id3149525\n"
+"35\n"
"help.text"
-msgid "<ahelp hid=\".\">Applies all changes and closes the wizard.</ahelp>"
-msgstr "<ahelp hid=\".\">Jijjiiramoota hunda fayyadami akkasumas masakiichaas cufa.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Choose <emph>Format - Bullets and Numbering - Customize - Character</emph> button</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Dhangii - Rasaasotaa fi Lakkawwii - Maamiltoo - Arfii</emph> qabduu </caseinline></switchinline>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3147477\n"
-"39\n"
+"00000404.xhp\n"
+"par_id3152372\n"
+"55\n"
"help.text"
-msgid "Toolbars"
-msgstr "Kamshaa"
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Choose <emph>Format - Bullets and Numbering - Customize - Character</emph> button</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Qabduu <emph>Dhangii - Kasaasaalee fi Taasiisaa Lakkoofsaa - Maamilleesi - Aritii</emph> fili </caseinline></switchinline>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3149783\n"
-"40\n"
+"00000404.xhp\n"
+"par_id3156560\n"
+"36\n"
"help.text"
-msgid "By clicking the arrow next to some icons you open a toolbar. To move a toolbar, drag the title bar. As soon as you release the mouse button, the toolbar remains at the new position. Drag the title bar to another position, or drag to an edge of the window, where the toolbar will dock. Close a toolbar by clicking the Close Window icon. Make the toolbar visible again by choosing <emph>View - Toolbars - (toolbar name)</emph>."
-msgstr "Xiyyicha soojoowwan tokko tokkoo cina jiran caqasuun kamshaa banta. Kamshichaa sosochoosuuf, kabala matadurichaa harkisi. Battaluma qabdu hantuutttee gadhiisteen, kamshaan iddoo haaraatti hafa. Kamshaa mataduree gara iddoo biraatti harkisi, ykn gara qarree foodichaa, bakka kamshichaatti itti hidhamutti harkisi.Cuftuu foodaa soojoo caqasuun kamshaa cufi. Kamshaa dabalataan akka mul`atu gochuuf <emph>Ilaali - Kamshaalee - (maqaa kamshaa)</emph> fili."
+msgid "Open the <emph>Insert</emph> toolbar, click"
+msgstr "Kamshaa <emph>Saagi</emph> Bani,"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3152414\n"
-"79\n"
+"00000404.xhp\n"
+"par_id3153527\n"
"help.text"
-msgid "Spin button"
-msgstr "Qabduu qaamii"
+msgid "<image id=\"img_id3153748\" src=\"cmd/sc_bullet.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153748\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153748\" src=\"cmd/sc_bullet.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153748\">Sajoo</alt></image>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id1094088\n"
+"00000404.xhp\n"
+"par_id3149751\n"
+"37\n"
"help.text"
-msgid "In form controls, a spin button is a property of a numerical field, currency field, date field, or time field. If the property \"Spin button\" is enabled, the field shows a pair of symbols with arrows pointing to opposing directions, either vertically or horizontally."
-msgstr "Akka hunka to'annootti, qaanxiin qabduu amaaloota dirree lakkoofsa, dirree sharafa, dirree guyyaaa, ykn dirree sa'atiiti. Yoo amlichiif spin bootoon hojeete dirricha mallattoolee cimdii irran gadee ykn dagaleen akkatan mul'isa ."
+msgid "Special Character"
+msgstr "Arfii Addaa"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id7493209\n"
+"00000404.xhp\n"
+"par_idN107CD\n"
"help.text"
-msgid "In the Basic IDE, a spin button is the name used for the numerical field together with the two arrow symbols."
-msgstr "Bu’uura IDE keessatti, qabduun qanxii maqaa kan xiyya olee lama waliin lakkoofsa dirreef gargaaru dha."
+msgid "<variable id=\"moviesound\">Choose <emph>Insert - Movie and Sound</emph></variable>"
+msgstr "<variable id=\"moviesound\"><emph>Saagi - Filmii fi Saagalee</emph>Fili</variable>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3155599\n"
-"78\n"
+"00000404.xhp\n"
+"par_idN1085D\n"
"help.text"
-msgid "You can type a numerical value into the field next to the spin button, or select the value with the up-arrow or down-arrow symbols on the spin button. On the keyboard you can press the up arrow and down arrow keys to increase or reduce the value. You can press the Page Up and Page Down keys to set the maximum and minimum value."
-msgstr "Dirree qabduu qaanxii itti aanu keessatti gatii lakkoofsaa barreessuu, ykn qabduu qaanxii irraa gatii mallattoolee xiyya - olii ykn xiyya - gadii waliin filachuu dandeessa. Gatiicha hir'suuf yookiin dabaluuf gabatee cuqoo irraa furtuulee xiyyaa alkaassaa fi gadbuusaa dhiibu dandeessa. Gatii olaanaa fi gadaanaa qindeessuuf furtuu Fuul Olee fi Fuul Gadee dhiibu dandeessa."
+msgid "Movie and Sound"
+msgstr "Filmii fi Sagalee"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3150264\n"
-"38\n"
+"00000404.xhp\n"
+"par_id3147242\n"
+"5\n"
"help.text"
-msgid "If the field next to the spin button defines numerical values, you can also define a <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"measurement unit\">measurement unit</link>, for example, 1 cm or 5 mm, 12 pt or 2\"."
-msgstr "Osoo dirreen qabduu qaanxii itti aanuu gatiiwwan lakkoofsa hiike, dabalataan <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"measurement unit\">safartuu</link> hiikuu dandeessa, fakeenyaaf, 1 cm ykn 5 mm, 12 pt ykn 2\"."
+msgid "<variable id=\"objekteinf\">Choose <emph>Insert - Object</emph></variable>"
+msgstr "<variable id=\"objekteinf\"><emph>Saagi - Wanta</emph>Fili</variable>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3154232\n"
-"76\n"
+"00000404.xhp\n"
+"par_id3152996\n"
+"6\n"
"help.text"
-msgid "Convert"
-msgstr "Jijjiiri"
+msgid "Choose <emph>Insert - Object - OLE Object</emph>"
+msgstr "<emph>Saagi - Wanta - OLE Wanta</emph> Fili"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3148983\n"
-"77\n"
+"00000404.xhp\n"
+"par_id3146806\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\".\">If you click forward through the dialog, this button is called <emph>Next</emph>. On the last page the button has the name <emph>Convert</emph>. The conversion is then performed by clicking the button.</ahelp>"
-msgstr "<ahelp hid=\".\">Qaaqa keessa gara fulduraatti yoo cuqaafte, qabduun kun <emph>itti aanee</emph> jedhama. Fuula jalqabaa irratti qabduun maqaa <emph>Jijjiiri</emph> qaba. Jijjiirraan qabduu cuqaasuun raawwatama.</ahelp>"
+msgid "Open the <emph>Insert</emph> toolbar, click"
+msgstr "Kamshaa <emph>Saagi</emph> Bani,"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3145129\n"
-"42\n"
+"00000404.xhp\n"
+"par_id3150254\n"
"help.text"
-msgid "Context Menu"
-msgstr "Baafata Halqaraa"
+msgid "<image id=\"img_id3156305\" src=\"cmd/sc_insobjctrl.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156305\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156305\" src=\"cmd/sc_insobjctrl.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156305\">Sajoo</alt></image> cuqaasi"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3156553\n"
-"44\n"
+"00000404.xhp\n"
+"par_id3145417\n"
+"8\n"
"help.text"
-msgid "<variable id=\"context\">To activate the context menu of an object, first click the object with the <switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>left</defaultinline></switchinline> mouse button to select it, and then, <switchinline select=\"sys\"><caseinline select=\"MAC\">while holding down the Ctrl key or the Command and Option keys, click the mouse button again</caseinline><defaultinline> click the right mouse button</defaultinline></switchinline>. Some context menus can be called even if the object has not been selected. Context menus are found just about everywhere in $[officename].</variable>"
-msgstr "<variable id=\"context\">Baafata halqara wantaa kakaasuuf, jalqaba wanta fiachuuf<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>left</defaultinline></switchinline>qabduu hantuutee waliin cuqaasi, itti aansuudhaan yeroo furtuu Ctrl ykn ajajaa fi furtuuwwan dirqalaa gad qabdu, <switchinline select=\"sys\"><caseinline select=\"MAC\">qabduu hantuutee irra deebuun cuqaasi </caseinline><defaultinline>qabduu hantuutee mirgaa cuqaasi</defaultinline></switchinline>. Baafatni halqaraa gariin osoodhuma wanti hin filatamiin illee waamamuu danda'u. Baafatni halqaraa $[officename] keessatti iddoo maratti argama.</variable>"
+msgid "OLE Object"
+msgstr "Wanta OLE"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3149180\n"
-"24\n"
+"00000404.xhp\n"
+"par_id3153087\n"
+"9\n"
"help.text"
-msgid "Delete"
-msgstr "Haqi"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Choose <emph>Insert - Object - Plug-in</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\"> <emph>Saagi - Wanta - Itti-Suuqii</emph>Fili</caseinline></switchinline>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3153750\n"
-"25\n"
+"00000404.xhp\n"
+"par_id3149785\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected element or elements after confirmation.</ahelp>"
-msgstr "<ahelp hid=\".\">Maalimaa ykn maalimoota filataman dhugoomsa booda haqa.</ahelp>"
+msgid "Open the <emph>Insert </emph>toolbar, click"
+msgstr "Kamshaa <emph>Saagi</emph> Bani,"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3147557\n"
-"45\n"
+"00000404.xhp\n"
+"par_id3154897\n"
"help.text"
-msgid "Delete"
-msgstr "Haqi"
+msgid "<image id=\"img_id3146847\" src=\"cmd/sc_insertplugin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146847\">Icon</alt></image>"
+msgstr "<image id=\"img_id3146847\" src=\"cmd/sc_insertplugin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146847\">Sajoo</alt></image> cuqaasi"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3155338\n"
-"46\n"
+"00000404.xhp\n"
+"par_id3148474\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected element or elements without requiring confirmation.</ahelp>"
-msgstr "<ahelp hid=\".\">Maalimaa ykn maalimoota filataman dhugoomsa osoo hin barbaadiin haqa.</ahelp>"
+msgid "Plug-in"
+msgstr "Itti-suuqii"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3148620\n"
-"6\n"
+"00000404.xhp\n"
+"par_id3153880\n"
+"53\n"
"help.text"
-msgid "Metrics"
-msgstr "Safartuuwwan"
+msgid "Choose <emph>Insert - Object - Sound</emph>"
+msgstr "<emph>Saagi - Wanta - Sagalee</emph> Fili"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3145345\n"
-"7\n"
+"00000404.xhp\n"
+"par_id3143278\n"
+"54\n"
"help.text"
-msgid "You can enter values in the input fields in different units of measurement. The default unit is inches. However, if you want a space of exactly 1cm, then type \"1cm\". Additional units are available according to the context, for example, 12 pt for a 12 point spacing. If the value of the new unit is unrealistic, the program uses a predefined maximum or minimum value."
-msgstr "Gatiiwwan dirree naqaa keessa safartuu birootiin galchuu dandeessa. Safaruun durtii inchii dha. Haata'u malee, yoo iddoo 1cm ta'u barbaadde, \"1cm\" barreessi. Baafata irratti hundaa'uun safartootni kan biroos ni argamu, fakkeenyaaf, 12 pt bakka iddoo akeeki 12. Yoo gatiin safartuu haaraa beekamaa hin ta'iin, sagantichi gatii guddaa fi xiqqaa durumaan ibsaman fayyadama."
+msgid "Choose <emph>Insert - Object - Video</emph>"
+msgstr "<emph>Saagi - Wanta - Vidiyoo</emph> Fili"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3155535\n"
-"8\n"
+"00000404.xhp\n"
+"par_id3150393\n"
+"15\n"
"help.text"
-msgid "Close"
-msgstr "Cufi"
+msgid "Choose <emph>Insert - Object - Formula</emph>"
+msgstr "<emph>Saagi - Wanta - Foormulaa</emph> Fili"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3147008\n"
-"9\n"
+"00000404.xhp\n"
+"par_id3153056\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\".\">Closes the dialog and saves all changes.</ahelp>"
-msgstr "<ahelp hid=\".\">Qaaqa cufee jijjiiramoota mara ol kaa'a.</ahelp>"
+msgid "Open the <emph>Insert </emph>toolbar, click"
+msgstr "Kamshaa <emph>Saagi</emph> Bani,"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3147275\n"
-"57\n"
+"00000404.xhp\n"
+"par_id3148559\n"
"help.text"
-msgid "Close"
-msgstr "Cufi"
+msgid "<image id=\"img_id3149933\" src=\"cmd/sc_insertobjectstarmath.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149933\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149933\" src=\"cmd/sc_insertobjectstarmath.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149933\">Sajoo</alt></image> cuqaasi"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3153031\n"
-"58\n"
+"00000404.xhp\n"
+"par_id3155858\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\".\">Closes the dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">Qaaqicha cufa.</ahelp>"
+msgid "Formula"
+msgstr "Foormulaa"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3156113\n"
-"16\n"
+"00000404.xhp\n"
+"par_id3153144\n"
+"38\n"
"help.text"
-msgid "Apply"
-msgstr "Fayyadami"
+msgid "Choose <emph>Format - Chart Type</emph>"
+msgstr "<emph>Dhangii - Akaakuu Taattoo</emph> Fili"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3155341\n"
-"17\n"
+"00000404.xhp\n"
+"par_id3147578\n"
+"39\n"
"help.text"
-msgid "<ahelp hid=\".\">Applies the modified or selected values without closing the dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">Qaaqa osoo hin cufiin gatii foyyaa'e ykn filatame fayyadama.</ahelp>"
+msgid "Choose <emph>Insert - Object - Chart </emph>"
+msgstr "<emph>Saagi - Wanta - Taattoo</emph> Fili"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3153760\n"
-"47\n"
+"00000404.xhp\n"
+"par_id3154011\n"
+"40\n"
"help.text"
-msgid "Shrink / Maximize"
-msgstr "Suntuursi / Irraanessi"
+msgid "Choose <emph>Format - Chart Type</emph>"
+msgstr "<emph>Dhangii - Akaakuu Taattoo</emph> Fili"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3153087\n"
-"48\n"
+"00000404.xhp\n"
+"par_id3153573\n"
+"41\n"
"help.text"
-msgid "<ahelp hid=\".\">Click the<emph> Shrink </emph>icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the <emph>Maximize</emph> icon. Click it to restore the dialog to its original size.</ahelp>"
-msgstr "<ahelp hid=\".\"><emph> Qooqsi </emph>sajoo qaaqa gara hamamtaa dirree naqaatti hir'isa. Kanaafuu wabii wardii irratti mallatteessuuf ni salphata. Sajoon ofumaan sajoo birootti jijjirama. Sajoo <emph>Olaansi</emph>. Qaaqa hamamtaa isa duraatti deebisanii kuusuf cuqaasi.</ahelp>"
+msgid "Choose <emph>Insert - Object - Chart</emph>"
+msgstr "<emph>Saagi - Wanta - Taattoo</emph> Fili"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3155062\n"
-"49\n"
+"00000404.xhp\n"
+"par_id3159179\n"
+"42\n"
"help.text"
-msgid "The dialog is automatically minimized when you click into a sheet with the mouse. As soon as you release the mouse button, the dialog is restored and the reference range defined with the mouse is highlighted in the document by a blue frame."
-msgstr "Yeroo hantuuteedhaan barruu irratti cuqaastu qaaqni ofumaan xiqqaata. Akkuma ati qabduu hantuutee gad lakkiifteen, qaaqni bakkatti deebi'a akkasumas hangi wabii hantuutee waliin qindaa'e galmee keessatti godayyaa cuquliisaan shoolama."
+msgid "Choose <emph>Format - Chart Type</emph>"
+msgstr "<emph>Dhangii - Akaakuu Taattoo</emph> Fili"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3157808\n"
+"00000404.xhp\n"
+"par_id3159196\n"
+"43\n"
"help.text"
-msgid "<image id=\"img_id3148685\" src=\"formula/res/refinp1.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3148685\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148685\" src=\"formula/res/refinp1.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3148685\">Sajoo</alt></image>"
+msgid "Choose <emph>Insert - Object - Chart</emph>"
+msgstr "<emph>Saagi - Wanta - Taattoo</emph> Fili"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3153321\n"
-"50\n"
+"00000404.xhp\n"
+"par_id3149664\n"
+"18\n"
"help.text"
-msgid "Shrink"
-msgstr "Suntuuruu"
+msgid "Choose <emph>Insert - Object - Chart</emph>"
+msgstr "<emph>Saagi - Wanta - Taattoo</emph> Fili"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3153349\n"
+"00000404.xhp\n"
+"par_id3154921\n"
+"19\n"
"help.text"
-msgid "<image id=\"img_id3149784\" src=\"formula/res/refinp2.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149784\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149784\" src=\"formula/res/refinp2.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149784\">Sajoo</alt></image>"
+msgid "Open the <emph>Insert </emph>toolbar, click"
+msgstr "Kamshaa <emph>Saagi</emph> Bani,"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3155628\n"
-"51\n"
+"00000404.xhp\n"
+"par_id3156005\n"
"help.text"
-msgid "Maximize"
-msgstr "Irraanessi"
+msgid "<image id=\"img_id3153739\" src=\"cmd/sc_drawchart.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153739\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153739\" src=\"cmd/sc_drawchart.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153739\">Sajoo</alt></image> cuqaasi"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3156192\n"
-"34\n"
+"00000404.xhp\n"
+"par_id3145749\n"
+"20\n"
"help.text"
-msgid "Preview Field"
-msgstr "Dirree Durargii"
+msgid "Chart"
+msgstr "Taattoo"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3154046\n"
-"35\n"
+"00000404.xhp\n"
+"par_id3155513\n"
+"44\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays a preview of the current selection.</ahelp>"
-msgstr "<ahelp hid=\".\">Durargii filannoo ammee agarsiisi.</ahelp>"
+msgid "Choose <emph>Insert - Picture - From File</emph>"
+msgstr "<emph>Saagi - Fakkatti - Faayiliirraa</emph> Fili"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3145609\n"
-"70\n"
+"00000404.xhp\n"
+"par_id3155308\n"
+"45\n"
"help.text"
-msgid "Next"
-msgstr "Itti aanee"
+msgid "Open the <emph>Insert</emph> toolbar, click"
+msgstr "Kamshaa <emph>Saagi</emph> Bani,"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3152473\n"
-"71\n"
+"00000404.xhp\n"
+"par_id3145594\n"
"help.text"
-msgid "<ahelp hid=\".\">Click the<emph> Next </emph>button, and the wizard uses the current dialog settings and proceeds to the next step. If you are on the last step, this button becomes <emph>Create</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\">Qabduu <emph> itti aanee </emph> cuqaaasi, akkasumas masakichi haalataalee qaaqa ammee fayyadama sana booda gara eejjatoo itti aanutti fufa. Yoo eejattoo xumuraa irra jiraatte, qabduun kun <emph>Uumi</emph> ta'a.</ahelp>"
+msgid "<image id=\"img_id3144764\" src=\"cmd/sc_objectcatalog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Icon</alt></image>"
+msgstr "<image id=\"img_id3144764\" src=\"cmd/sc_objectcatalog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Sajoo</alt></image>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3149670\n"
-"13\n"
+"00000404.xhp\n"
+"par_id3149960\n"
+"46\n"
"help.text"
-msgid "Back"
-msgstr "Duuba"
+msgid "From File"
+msgstr "Faayiliirraa"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3145068\n"
-"14\n"
+"00000404.xhp\n"
+"par_id3150037\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR_PUSHBUTTON_RID_OFADLG_OPTIONS_TREE_PB_BACK\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"OFFMGR_PUSHBUTTON_RID_OFADLG_OPTIONS_TREE_PB_BACK\">Gatiiwwan fooya'aa gara gatii durtii $[officename] tti haaroomsa.</ahelp>"
+msgid "Choose <emph>Insert - Floating Frame</emph>"
+msgstr "<emph>Saagi - Wanta - Goodayyaa Bololi'aa</emph> fili"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3148755\n"
-"59\n"
+"00000404.xhp\n"
+"par_id3083281\n"
+"26\n"
"help.text"
-msgid "Reset"
-msgstr "Haaromsi"
+msgid "Open the <emph>Insert </emph>toolbar, click"
+msgstr "Kamshaa <emph>Saagi</emph> Bani,"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3149651\n"
-"60\n"
+"00000404.xhp\n"
+"par_id3168607\n"
"help.text"
-msgid "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Resets changes made to the current tab to those applicable when this dialog was opened. A confirmation query does not appear when you close the dialog.</ahelp>"
-msgstr "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Jijjiiramoota caancala ammeetiif ta'an gara warreen yeroo qaaqni kun banametti hojiirra olanitti haaroomsa. Gaafatni dhugoomsuu yeroo qaaqa cuftu hin mul'atu.</ahelp>"
+msgid "<image id=\"img_id3147482\" src=\"cmd/sc_insertobjectfloatingframe.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147482\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147482\" src=\"cmd/sc_insertobjectfloatingframe.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147482\">Sajoo</alt></image> cuqaasi"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3143278\n"
-"18\n"
+"00000404.xhp\n"
+"par_id3148588\n"
+"27\n"
"help.text"
-msgid "Reset"
-msgstr "Haaromsi"
+msgid "Floating Frame"
+msgstr "Gooddayyaa Bololi'aa"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3150791\n"
-"19\n"
+"00000404.xhp\n"
+"par_id3150396\n"
+"47\n"
"help.text"
-msgid "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Resets modified values back to the default values.</ahelp>"
-msgstr "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Gatiiwwan foyyaa'an gara gatiiwwan durtiitti haaromsa.</ahelp>"
+msgid "<variable id=\"filterauswahl\">Open a file of a type that is unknown to %PRODUCTNAME and that is no text file</variable>"
+msgstr "<variable id=\"filterauswahl\">Akaakuu faayilii %PRODUCTNAME hin beekamnee fi faayilii barruu hin taanee fili </variable>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3154331\n"
-"20\n"
+"00000404.xhp\n"
+"par_idN10DDC\n"
"help.text"
-msgid "A confirmation query does not appear. If you confirm the dialog with OK all settings in this dialog are reset."
-msgstr "Gaafatni dhugoomsuu hin mul'atu. Yoo qaaqa TOLE dhaan dhugoomsite qindaa'inootni hundi qaaqa kana keessa jiran ni haaroomu."
+msgid "<image id=\"Graphic2\" src=\"cmd/sc_fontworkgalleryfloater.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"Graphic2\" src=\"cmd/sc_fontworkgalleryfloater.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Sajoo</alt></image> cuqaasi"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3145173\n"
-"10\n"
+"00000404.xhp\n"
+"par_idN10DD1\n"
"help.text"
-msgid "Standard"
-msgstr "Durtii"
+msgid "Fontwork Gallery"
+msgstr "Kuusaa Faayaa Dalaga bocquu"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3154153\n"
-"11\n"
+"00000404.xhp\n"
+"par_idN10EA9\n"
"help.text"
-msgid "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Resets the values visible in the dialog back to the default installation values.</ahelp>"
-msgstr "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Gatiiwwan mul'atoo qaaqa keessaa gara gatiiwwan ijaarsa durtiitti deebisee haaromsa.</ahelp>"
+msgid "<image id=\"Graphic3\" src=\"cmd/sc_basicshapes.diamond.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"Graphic3\" src=\"cmd/sc_basicshapes.diamond.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Sajoo</alt></image>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3154299\n"
-"12\n"
+"00000404.xhp\n"
+"par_idN10ED8\n"
"help.text"
-msgid "A confirmation does not appear before the defaults are reloaded."
-msgstr "Osoo durtiiwwan irra deebi'anii hin naqamiin dhugoomsi hin mul'atu."
+msgid "Basic Shapes"
+msgstr "Boboca Bu'uuraa"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3147502\n"
-"72\n"
+"00000404.xhp\n"
+"par_idN10EEE\n"
"help.text"
-msgid "Back"
-msgstr "Duuba"
+msgid "<image id=\"Graphic4\" src=\"cmd/sc_symbolshapes.smiley.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"Graphic4\" src=\"cmd/sc_symbolshapes.smiley.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Sajoo</alt></image>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3150439\n"
-"73\n"
+"00000404.xhp\n"
+"par_idN10F1D\n"
"help.text"
-msgid "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">View the selections in the dialog made in the previous step. The current settings remain unchanged.</ahelp> This button can only be activated from page two on."
-msgstr "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Filannoowwan qaaqa keessatti ejattoo duraa irratti uumaman mul'isi.</ahelp> Qabduun kun fuula lama irraa qofa kakkaafamuu danda'a."
+msgid "Symbol Shapes"
+msgstr "Boboca Mallattoo"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3147352\n"
-"52\n"
+"00000404.xhp\n"
+"par_idN10F33\n"
"help.text"
-msgid "More"
-msgstr "Dabala"
+msgid "<image id=\"Graphic41\" src=\"cmd/sc_arrowshapes.left-right-arrow.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"Graphic41\" src=\"cmd/sc_arrowshapes.left-right-arrow.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Sajoo</alt></image>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3155314\n"
-"53\n"
+"00000404.xhp\n"
+"par_idN10F62\n"
"help.text"
-msgid "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Click the<emph> More</emph> button to expand the dialog to show further options. Click again to restore the dialog.</ahelp>"
-msgstr "Qaaqni akka dirqaalee dabalataa mul'isu bal'isuuf <ahelp hid=\"HID_TABDLG_STANDARD_BTN\">qabduu <emph> Dabalaa</emph> cuqaasi. Qaaqa haaromsuuf irra deebii cuqaasi.</ahelp>"
+msgid "Block Arrows"
+msgstr "Garee Xiyyaalee"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3161659\n"
-"41\n"
+"00000404.xhp\n"
+"par_idN10F78\n"
"help.text"
-msgid "<variable id=\"siehe\">See also the following functions: </variable>"
-msgstr "<variable id=\"siehe\">Dabalataan dalagaawwan armaan gadii ilaali: </variable>"
+msgid "<image id=\"Graphic5\" src=\"cmd/sc_flowchartshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"Graphic5\" src=\"cmd/sc_flowchartshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Sajoo</alt></image>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3147418\n"
-"55\n"
+"00000404.xhp\n"
+"par_idN10FA7\n"
"help.text"
-msgid "<variable id=\"regulaer\">The search supports <link href=\"text/shared/01/02100001.xhp\" name=\"regular expressions\">regular expressions</link>. You can enter \"all.*\", for example to find the first location of \"all\" followed by any characters. If you want to search for a text that is also a regular expression, you must precede every character with a \\ character. You can switch the automatic evaluation of regular expression on and off in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - Calculate</link>.</variable>"
-msgstr ""
+msgid "Flowcharts"
+msgstr "Taattoo Yaa'aa"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3163714\n"
-"56\n"
+"00000404.xhp\n"
+"par_idN10FBD\n"
"help.text"
-msgid "<variable id=\"wahr\">If an error occurs, the function returns a logical or numerical value. </variable>"
-msgstr "<variable id=\"wahr\">Yoo dogoggorri uumame, faankishiniin kun gatii yaayaa ykn lakkoofsaa debisu. </variable>"
+msgid "<image id=\"Graphic6\" src=\"cmd/sc_calloutshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"Graphic6\" src=\"cmd/sc_calloutshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Sajoo</alt></image>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3154145\n"
-"54\n"
+"00000404.xhp\n"
+"par_idN10FEC\n"
"help.text"
-msgid "<variable id=\"kontext\">(This command is only accessible through the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link>). </variable>"
-msgstr "<variable id=\"kontext\">(Ajajni kun kan bira gahamuu danda'u karaa <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">baafata halqaraa</link> qofa). </variable>"
+msgid "Callouts"
+msgstr "Balballoo"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3152791\n"
-"61\n"
+"00000404.xhp\n"
+"par_idN11002\n"
"help.text"
-msgid "<variable id=\"wiederholen\">By double-clicking a tool, you can use it for multiple tasks. If you call the tool with a single-click, it reverts back to the last selection after completing the task. </variable>"
-msgstr "<variable id=\"wiederholen\">Meeshaa lama cuqaasuun, dalagaawwan hedduuf fayyadamuu dandeessa. Yoo meeshaa tokko cuqaasuun waamte, erga dalagaa xumureen booda gara filannoo duuraatti duubatti deebisa. </variable>"
+msgid "<image id=\"Graphic7\" src=\"cmd/sc_starshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"Graphic7\" src=\"cmd/sc_starshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Sajoo</alt></image>"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id9345377\n"
+"00000404.xhp\n"
+"par_idN11031\n"
"help.text"
-msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control. </variable>"
-msgstr "<variable id=\"ShiftF1\">Shift+F1 dhiibi akkasumas waa'ee to'annaa kanaa dabalataan baruuf gara to'annaatti akeeki. </variable>"
+msgid "Stars"
+msgstr "Urjiilee"
#: 00000406.xhp
msgctxt ""
@@ -8471,7 +8453,6 @@ msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinli
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Too'annoo</defaultinline></switchinline>+F7"
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3153320\n"
@@ -8634,8 +8615,8 @@ msgctxt ""
"par_id3153768\n"
"51\n"
"help.text"
-msgid "<variable id=\"autokooptionen\">Choose <emph>Tools - AutoCorrect Options</emph> tab</variable>"
-msgstr "<variable id=\"autokooptionen\">Caancala <emph>Meeshaalee - OfiinSirreessaa</emph> <emph>- Dirqaloota</emph> fili </variable>"
+msgid "<variable id=\"autokooptionen\">Choose <emph>Tools - AutoCorrect Options - Options</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
@@ -8646,7 +8627,6 @@ msgid "<variable id=\"autokosmarttags\">Choose <emph>Tools - AutoCorrect Options
msgstr "<variable id=\"autokosmarttags\">Taabii <emph>Meeshalee - OfiinSirreessaa Dirqalaalee - iyyaatootas Amsaala</emph> fili</variable>"
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3155368\n"
@@ -8656,7 +8636,6 @@ msgid "<variable id=\"autokoersetzung\">Choose <emph>Tools - AutoCorrect Options
msgstr "<variable id=\"autokosmarttags\">Taabii <emph>Meeshalee - OfiinSirreessaa Dirqalaalee - iyyaatootas Amsaala</emph> fili</variable>"
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3155860\n"
@@ -8666,7 +8645,6 @@ msgid "<variable id=\"autokoausnahmen\">Choose <emph>Tools - AutoCorrect Options
msgstr "<variable id=\"autokosmarttags\">Taabii <emph>Meeshalee - OfiinSirreessaa Dirqalaalee - iyyaatootas Amsaala</emph> fili</variable>"
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3153094\n"
@@ -9062,15 +9040,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_id3159339\n"
-"36\n"
-"help.text"
-msgid "<variable id=\"internet4\">Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet - Search</emph></variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_id3149280\n"
"94\n"
"help.text"
@@ -9415,2908 +9384,1445 @@ msgctxt ""
msgid "<variable id=\"registered\">Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Base - Databases</emph></variable>"
msgstr ""
-#: 00000004.xhp
+#: 00000407.xhp
msgctxt ""
-"00000004.xhp\n"
+"00000407.xhp\n"
"tit\n"
"help.text"
-msgid "To access this command..."
-msgstr "Ajaja kana bira gahuuf..."
+msgid "Window Menu"
+msgstr "Foddaa baafattaa"
-#: 00000004.xhp
+#: 00000407.xhp
msgctxt ""
-"00000004.xhp\n"
-"hd_id3160447\n"
+"00000407.xhp\n"
+"hd_id3154349\n"
"1\n"
"help.text"
-msgid "<variable id=\"wie\">To access this command...</variable>"
-msgstr "<variable id=\"wie\">Ajaja kana bira gahuuf... </variable>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3147212\n"
-"47\n"
-"help.text"
-msgid "<variable id=\"related\"><emph>Related Topics</emph></variable>"
-msgstr "<variable id=\"related\"><emph>Matadureewwan Walfakkatan</emph></variable>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id56935339\n"
-"help.text"
-msgid "Enable or disable the Help Agent on <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - General</emph>."
-msgstr ""
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3154689\n"
-"help.text"
-msgid "<image id=\"img_id3152427\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152427\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152427\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152427\">Sajoo</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3146067\n"
-"46\n"
-"help.text"
-msgid "Font Color"
-msgstr "Halluu Bocquu"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3157898\n"
-"help.text"
-msgid "<image id=\"img_id3149716\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149716\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149716\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149716\">Sajoo</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3149893\n"
-"7\n"
-"help.text"
-msgid "Font Color"
-msgstr "Halluu Bocquu"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3149750\n"
-"help.text"
-msgid "<image id=\"img_id3146957\" src=\"cmd/sc_justifypara.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146957\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146957\" src=\"cmd/sc_justifypara.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146957\">Sajoo</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3150693\n"
-"8\n"
-"help.text"
-msgid "Line spacing: 1"
-msgstr "Iddina sararaa: 1"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3145382\n"
-"help.text"
-msgid "<image id=\"img_id3163802\" src=\"cmd/sc_spacepara15.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163802\">Icon</alt></image>"
-msgstr "<image id=\"img_id3163802\" src=\"cmd/sc_spacepara15.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163802\">Sajoo</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3154173\n"
-"9\n"
-"help.text"
-msgid "Line spacing: 1.5"
-msgstr "Iddina sararaa: 1.5"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3150131\n"
-"help.text"
-msgid "<image id=\"img_id3153252\" src=\"cmd/sc_spacepara2.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153252\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153252\" src=\"cmd/sc_spacepara2.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153252\">Sajoo</alt></image>"
+msgid "Window Menu"
+msgstr "Foddaa baafattaa"
-#: 00000004.xhp
+#: 00000407.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3152824\n"
-"10\n"
+"00000407.xhp\n"
+"par_id3083278\n"
+"6\n"
"help.text"
-msgid "Line spacing: 2"
-msgstr "Iddina sararaa: 2"
+msgid "<variable id=\"window\">Choose <emph>Window - New Window</emph></variable>"
+msgstr "<variable id=\"window\"><emph>Foddaa - Foddaa Haaraa</emph>filadhu</variable>"
-#: 00000004.xhp
+#: 00000407.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3149820\n"
+"00000407.xhp\n"
+"par_id3154545\n"
+"13\n"
"help.text"
-msgid "<image id=\"img_id3153126\" src=\"cmd/sc_superscript.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153126\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153126\" src=\"cmd/sc_superscript.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153126\">Sajoo</alt></image>"
+msgid "<variable id=\"liste\">Choose <emph>Window</emph> - List of open documents</variable>"
+msgstr "<variable id=\"liste\"><emph>Foddaa</emph> - Galmee tarree banaa</variable>"
-#: 00000004.xhp
+#: 00000408.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3145121\n"
-"11\n"
+"00000408.xhp\n"
+"tit\n"
"help.text"
-msgid "Superscript"
-msgstr "Irrarfii"
+msgid "Help Menu"
+msgstr "Baafatta gargarssaa"
-#: 00000004.xhp
+#: 00000408.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3147077\n"
+"00000408.xhp\n"
+"hd_id3154689\n"
+"1\n"
"help.text"
-msgid "<image id=\"img_id3155135\" src=\"cmd/sc_subscript.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155135\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155135\" src=\"cmd/sc_subscript.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155135\">Sajoo</alt></image>"
+msgid "Help Menu"
+msgstr "Baafatta gargarssaa"
-#: 00000004.xhp
+#: 00000408.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3151385\n"
-"12\n"
+"00000408.xhp\n"
+"par_id3150960\n"
+"2\n"
"help.text"
-msgid "Subscript"
-msgstr "Jalarfii"
+msgid "<variable id=\"content\">Choose <emph>Help - Contents</emph></variable>"
+msgstr "<variable id=\"content\"><emph>Gargaarsa - Qabiyyeewanii</emph></variable>"
-#: 00000004.xhp
+#: 00000408.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3148550\n"
+"00000408.xhp\n"
+"par_id3147240\n"
+"14\n"
"help.text"
-msgid "<image id=\"img_id3149294\" src=\"res/helpimg/feldurch.png\" width=\"0.9374inch\" height=\"0.2398inch\"><alt id=\"alt_id3149294\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149294\" src=\"res/helpimg/feldurch.png\" width=\"0.9374inch\" height=\"0.2398inch\"><alt id=\"alt_id3149294\">Sajoo</alt></image>"
+msgid "<variable id=\"infoanwendung\">Choose <emph>Help - About </emph><emph>%PRODUCTNAME</emph></variable>"
+msgstr "<variable id=\"infoanwendung\"><emph>Gargaarsa - Waa'ee </emph><emph>%PRODUCTNAME</emph></variable>"
-#: 00000004.xhp
+#: 00000408.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3152772\n"
+"00000408.xhp\n"
+"par_id3151387\n"
"15\n"
"help.text"
-msgid "Line Style"
-msgstr "Haalataa Sararaa"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3153379\n"
-"help.text"
-msgid "<image id=\"img_id3148401\" src=\"res/helpimg/feldcolo.png\" width=\"1.0417inch\" height=\"0.2398inch\"><alt id=\"alt_id3148401\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148401\" src=\"res/helpimg/feldcolo.png\" width=\"1.0417inch\" height=\"0.2398inch\"><alt id=\"alt_id3148401\">Sajoo</alt></image>"
+msgid "Automatically after <item type=\"productname\">%PRODUCTNAME</item> is first started."
+msgstr "Ofumaa erga <item type=\"productname\">%PRODUCTNAME</item> dura eegalee."
-#: 00000004.xhp
+#: 00000408.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3149290\n"
+"00000408.xhp\n"
+"par_id3153808\n"
"16\n"
"help.text"
-msgid "Line Color"
-msgstr "Halluu Sararaa"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3156214\n"
-"help.text"
-msgid "<image id=\"img_id3149807\" src=\"res/helpimg/feldbrei.png\" width=\"0.6563inch\" height=\"0.2189inch\"><alt id=\"alt_id3149807\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149807\" src=\"res/helpimg/feldbrei.png\" width=\"0.6563inch\" height=\"0.2189inch\"><alt id=\"alt_id3149807\">Sajoo</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3163044\n"
-"17\n"
-"help.text"
-msgid "Line Width"
-msgstr "yabbina Sararaa"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3154154\n"
-"help.text"
-msgid "<image id=\"img_id3145152\" src=\"res/helpimg/swh00117.png\" width=\"2.0835inch\" height=\"0.2398inch\"><alt id=\"alt_id3145152\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145152\" src=\"res/helpimg/swh00117.png\" width=\"2.0835inch\" height=\"0.2398inch\"><alt id=\"alt_id3145152\">Sajoo</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3150650\n"
-"18\n"
-"help.text"
-msgid "Area Style / Filling"
-msgstr "Haalataa / Guutinsa Naannoo"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3153367\n"
-"help.text"
-msgid "<image id=\"img_id3147502\" src=\"cmd/sc_aligntop.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147502\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147502\" src=\"cmd/sc_aligntop.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147502\">Sajoo</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3148557\n"
-"20\n"
-"help.text"
-msgid "Align Top"
-msgstr "Irraatti Hiriirsuu"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3146923\n"
-"help.text"
-msgid "<image id=\"img_id3150410\" src=\"cmd/sc_cellvertbottom.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150410\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150410\" src=\"cmd/sc_cellvertbottom.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150410\">Sajoo</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3149287\n"
-"21\n"
-"help.text"
-msgid "Align Bottom"
-msgstr "Jalatti Hiriirsuu"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3153097\n"
-"help.text"
-msgid "<image id=\"img_id3153363\" src=\"cmd/sc_alignvcenter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153363\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153363\" src=\"cmd/sc_alignvcenter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153363\">Sajoo</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3150873\n"
-"22\n"
-"help.text"
-msgid "Align Center Vertically"
-msgstr "Gidduu Sarjina Hiriirsuu"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3147436\n"
-"help.text"
-msgid "<image id=\"img_id3159123\" src=\"svx/res/nu07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159123\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159123\" src=\"svx/res/nu07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159123\">Sajoo</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3147418\n"
-"27\n"
-"help.text"
-msgid "Apply"
-msgstr "Fayyadami"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3146147\n"
-"help.text"
-msgid "<image id=\"img_id3145364\" src=\"svx/res/nu08.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145364\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145364\" src=\"svx/res/nu08.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145364\">Sajoo</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3148617\n"
-"28\n"
-"help.text"
-msgid "Cancel"
-msgstr "Dhiisi"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "<image id=\"img_id3154096\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154096\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154096\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154096\">Sajoo</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3145800\n"
-"30\n"
-"help.text"
-msgid "Up One Level"
-msgstr "Sadarkaa Tokko Ol"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3149412\n"
-"help.text"
-msgid "<image id=\"img_id3153279\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153279\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153279\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153279\">Sajoo</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3154064\n"
-"48\n"
-"help.text"
-msgid "Create New Directory"
-msgstr "Galeeloo Haaraa Uumi"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3153221\n"
-"help.text"
-msgid "<image id=\"img_id3153334\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153334\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153334\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153334\">Sajoo</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3145646\n"
-"39\n"
-"help.text"
-msgid "Up One Level"
-msgstr "Sadarkaa Tokko Ol"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3151320\n"
-"help.text"
-msgid "<image id=\"img_id3148833\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148833\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148833\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148833\">Sajoo</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3153005\n"
-"40\n"
-"help.text"
-msgid "Create New Directory"
-msgstr "Galeeloo Haaraa Uumi"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3146990\n"
-"help.text"
-msgid "<image id=\"img_id3147257\" src=\"fpicker/res/fp011.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147257\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147257\" src=\"fpicker/res/fp011.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147257\">Sajoo</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3153949\n"
-"41\n"
-"help.text"
-msgid "Default Directory"
-msgstr "Galeeloo Durtii"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3156361\n"
-"help.text"
-msgid "<image id=\"img_id3150656\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150656\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150656\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150656\">Sajoo</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3146915\n"
-"35\n"
-"help.text"
-msgid "<ahelp hid=\".\">Go to the previous comment</ahelp>"
-msgstr "<ahelp hid=\".\">Gara yaadannoo duraatti darbi</ahelp>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3151357\n"
-"help.text"
-msgid "<image id=\"img_id3154363\" src=\"res/sc06300.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154363\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154363\" src=\"res/sc06300.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154363\">Sajoo</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3159184\n"
-"36\n"
-"help.text"
-msgid "<ahelp hid=\".\">Go to the next comment</ahelp>"
-msgstr "<ahelp hid=\".\">Gara yaadannoo itti aanuutti darbi</ahelp>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3083285\n"
-"help.text"
-msgid "<image id=\"img_id3147100\" src=\"cmd/sc_open.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147100\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147100\" src=\"cmd/sc_open.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147100\">Sajoo</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3147339\n"
-"37\n"
-"help.text"
-msgid "Open File"
-msgstr "Faayilii Bani"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3151189\n"
-"help.text"
-msgid "<image id=\"img_id3156318\" src=\"cmd/sc_saveas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156318\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156318\" src=\"cmd/sc_saveas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156318\">Sajoo</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3149109\n"
-"38\n"
-"help.text"
-msgid "Save As"
-msgstr "Akka Olkaa'i"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3152946\n"
-"help.text"
-msgid "<image id=\"img_id3155904\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155904\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155904\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155904\">Sajoo</alt></image>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3155336\n"
-"76\n"
-"help.text"
-msgid "Export Directly as PDF"
-msgstr "Akka PDF itti Takkaan Alergii"
+msgid "Choose <emph>Help - Registration</emph> (this is a direct link to an external website)"
+msgstr "Choose <emph>Gargaarsa - Galmeessuu</emph> (kun geesstuu kallattiin ala weebsayiti)"
-#: 00000021.xhp
+#: 00000409.xhp
msgctxt ""
-"00000021.xhp\n"
+"00000409.xhp\n"
"tit\n"
"help.text"
-msgid "XML File Formats"
-msgstr "Dhangiiwwan Faayilii XML"
+msgid "Toolbars"
+msgstr "Kamshaalee"
-#: 00000021.xhp
+#: 00000409.xhp
msgctxt ""
-"00000021.xhp\n"
-"bm_id3154408\n"
+"00000409.xhp\n"
+"hd_id3149517\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>exporting; XML files</bookmark_value> <bookmark_value>XML file formats</bookmark_value> <bookmark_value>extensions; file formats</bookmark_value> <bookmark_value>suffixes in file formats</bookmark_value> <bookmark_value>document types in $[officename]</bookmark_value> <bookmark_value>file formats; changing $[officename] defaults</bookmark_value> <bookmark_value>defaults;file formats in $[officename]</bookmark_value> <bookmark_value>file formats;OpenDocument/XML</bookmark_value> <bookmark_value>OpenDocument file formats</bookmark_value> <bookmark_value>ODF file formats</bookmark_value>"
-msgstr "<bookmark_value>alerguu; faayiloota XML</bookmark_value><bookmark_value>Dhangiiwwan faayilii XML</bookmark_value><bookmark_value>dheerattoota; dhangiiwwan faayilii</bookmark_value><bookmark_value>dursoo dhangiiwwan faayilii keessatti</bookmark_value><bookmark_value>akaakuuwwan galmee $[officename] keessatti</bookmark_value><bookmark_value>dhangiiwwan faayiliifi; durtiiwwan $[officename] jijjiiruu </bookmark_value><bookmark_value>durtiiwwan; dhangiiwwan faayilii $[officename] keessatti</bookmark_value><bookmark_value>dhangiiwwan faayilii; GalmeeBanuu/XML</bookmark_value><bookmark_value>dhangiiwwan faayilii GalmeeBanuu</bookmark_value><bookmark_value>dhangiiwwan faayilii ODF </bookmark_value>"
+msgid "Toolbars"
+msgstr "Kamshaalee"
-#: 00000021.xhp
+#: 00000409.xhp
msgctxt ""
-"00000021.xhp\n"
-"hd_id3154408\n"
+"00000409.xhp\n"
+"par_id3156053\n"
"2\n"
"help.text"
-msgid "<variable id=\"xmlformat\"><link href=\"text/shared/00/00000021.xhp\" name=\"XML File Formats\">XML File Formats</link></variable>"
-msgstr "<variable id=\"xmlformat\"><link href=\"text/shared/00/00000021.xhp\" name=\"XML File Formats\">dhangiiwwan faayilii XML</link></variable>"
+msgid "Choose <emph>Data - Filter - Standard Filter</emph>"
+msgstr "<emph>Deetaa - Gingilchaa - Waaltina Gingilchaa</emph> fili."
-#: 00000021.xhp
+#: 00000409.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3148919\n"
+"00000409.xhp\n"
+"par_id3154350\n"
"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_DID_SAVE_PACKED_XML\">By default, $[officename] loads and saves files in the OpenDocument file format.</ahelp>"
-msgstr "<ahelp hid=\"HID_DID_SAVE_PACKED_XML\">Durtii dhaan, $[officename]niin faayiloota dhangiiwwan faayilii GalmeeBanuu keessatti fe'uu fi olkaa'uu.</ahelp>"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10725\n"
-"help.text"
-msgid "The OpenDocument file format (ODF) is a standardized file format used by many software applications. You can find more information at the Wikipedia site: <link href=\"http://en.wikipedia.org/wiki/OpenDocument\">wikipedia.org/wiki/OpenDocument</link>."
-msgstr "Dhangiin faayilii GalmeeBanuu (ODF) dhangii faayilii mijataa fayyadama sooftiweerii baay`een gargaarama. Odeeffannoo dabalataa: <link href=\"http://en.wikipedia.org/wiki/OpenDocument\">wikipedia.org/wiki/OpenDocument</link> irraa barbaaduu dandeessa."
+msgid "Database table view: <emph>Standard Filter</emph> icon in the <emph>Database</emph> Toolbar"
+msgstr "Mul'annoo gabattee kussaa deetaa :<emph>Gingilchaa Waaltinaa</emph> sajoo Kamshaa <emph>Kuusdeetaa</emph> irraa"
-#: 00000021.xhp
+#: 00000409.xhp
msgctxt ""
-"00000021.xhp\n"
-"hd_id3156324\n"
+"00000409.xhp\n"
+"par_id3154183\n"
"4\n"
"help.text"
-msgid "OpenDocument file format names"
-msgstr "Maqoolee dhangiiwwan faayilii GalmeeBanuu"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_id3154926\n"
-"5\n"
-"help.text"
-msgid "%PRODUCTNAME %PRODUCTVERSION uses the following file formats:"
-msgstr "%PRODUCTNAME %PRODUCTVERSION dhangiiwwan faayilii armaan gadii fayyadami:"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_id3157898\n"
-"6\n"
-"help.text"
-msgid "Document format"
-msgstr "Dhangii galmee"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_id3149549\n"
-"7\n"
-"help.text"
-msgid "File extension"
-msgstr "Dheertoo faayilii"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10762\n"
-"help.text"
-msgid "ODF Text"
-msgstr "Barruu ODF"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10767\n"
-"help.text"
-msgid "*.odt"
-msgstr "*.odt"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN1076D\n"
-"help.text"
-msgid "ODF Text Template"
-msgstr "Qajojii Barruu ODF"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10772\n"
-"help.text"
-msgid "*.ott"
-msgstr "*.ott"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10778\n"
-"help.text"
-msgid "ODF Master Document"
-msgstr "Galmee Hundataa ODF"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN1077D\n"
-"help.text"
-msgid "*.odm"
-msgstr "*.odm"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10783\n"
-"help.text"
-msgid "HTML Document"
-msgstr "Galmee HTML"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10788\n"
-"help.text"
-msgid "*.html"
-msgstr "*.html"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN1078E\n"
-"help.text"
-msgid "HTML Document Template"
-msgstr "Qajojii Galmee HTML"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10793\n"
-"help.text"
-msgid "*.oth"
-msgstr "*.oth"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10799\n"
-"help.text"
-msgid "ODF Spreadsheet"
-msgstr "Waraqaadiriiroo ODF"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN1079E\n"
-"help.text"
-msgid "*.ods"
-msgstr "*.ods"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107A4\n"
-"help.text"
-msgid "ODF Spreadsheet Template"
-msgstr "Qajojii Waraqaadiriiroo ODF"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107A9\n"
-"help.text"
-msgid "*.ots"
-msgstr "*.ots"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107AF\n"
-"help.text"
-msgid "ODF Drawing"
-msgstr "Fakkasaa ODF"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107B4\n"
-"help.text"
-msgid "*.odg"
-msgstr "*.odg"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107BA\n"
-"help.text"
-msgid "ODF Drawing Template"
-msgstr "Qajojii fakkasaa ODF"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107BF\n"
-"help.text"
-msgid "*.otg"
-msgstr "*.otg"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107C5\n"
-"help.text"
-msgid "ODF Presentation"
-msgstr "Dhiheessa ODF"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107CA\n"
-"help.text"
-msgid "*.odp"
-msgstr "*.odp"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107D0\n"
-"help.text"
-msgid "ODF Presentation Template"
-msgstr "Qajojii dhiheessa ODF"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107D5\n"
-"help.text"
-msgid "*.otp"
-msgstr "*.otp"
+msgid "Form view: <emph>Standard Filter</emph> icon in the <emph>Form</emph> Bar"
+msgstr "Mul'annoo unkaa: <emph>Gingilcha Waaltinaa</emph> <emph>Unka</emph>sajoo Kabala irraa"
-#: 00000021.xhp
+#: 00000409.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_idN107DB\n"
+"00000409.xhp\n"
+"par_id3155619\n"
"help.text"
-msgid "ODF Formula"
-msgstr "Foormulaa ODF"
+msgid "<image src=\"cmd/sc_formfiltered.png\" id=\"img_id3147588\"><alt id=\"alt_id3147588\">Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_formfiltered.png\" id=\"img_id3147588\"><alt id=\"alt_id3147588\">Sajoo</alt></image>"
-#: 00000021.xhp
+#: 00000409.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_idN107E0\n"
+"00000409.xhp\n"
+"par_id3148731\n"
+"5\n"
"help.text"
-msgid "*.odf"
-msgstr "*.odf"
+msgid "Standard Filter"
+msgstr "Gingilchaa durtii"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_idN1085B\n"
+"00000450.xhp\n"
+"tit\n"
"help.text"
-msgid "ODF Database"
-msgstr "Kuusdeetaa ODF"
+msgid "Database"
+msgstr "Kusaa deetaa"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_idN10860\n"
+"00000450.xhp\n"
+"hd_id3154689\n"
+"1\n"
"help.text"
-msgid "*.odb"
-msgstr "*.odb"
+msgid "Database"
+msgstr "Kusaa deetaa"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id9756157\n"
+"00000450.xhp\n"
+"par_id3152876\n"
+"7\n"
"help.text"
-msgid "%PRODUCTNAME Extension"
-msgstr "Dheertoo %PRODUCTNAME"
+msgid "<variable id=\"DBTab\">In a database file window, choose <emph>Tools - Table Filter</emph></variable>"
+msgstr "<variable id=\"DBTab\">Foddaa faayilii kuusaa deetaa kessaatti, <emph>Meshaalee - Gabatee Gingilchaa</emph>filadhu</variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id2089907\n"
+"00000450.xhp\n"
+"par_id3153244\n"
+"57\n"
"help.text"
-msgid "*.oxt"
-msgstr "*.oxt"
+msgid "<variable id=\"DBAbfragen\"><emph>View - Database Objects - Queries</emph></variable>"
+msgstr "<variable id=\"DBAbfragen\"><emph>Mul'annoo - Wantoota Kuusdeetaa - Gaafata</emph></variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_idN1088F\n"
+"00000450.xhp\n"
+"par_id3147294\n"
+"4\n"
"help.text"
-msgid "The HTML format is not an OpenDocument format."
-msgstr "Dhangiin HTML dhangii GalmeeBanuu tii miti."
+msgid "<variable id=\"Typ\">In a database file window, choose <emph>Edit - Database - Properties - Advanced Settings</emph> tab</variable>"
+msgstr "<variable id=\"Typ\">Foddaa faayilii kuusdeetaa keessatti, <emph>Gulaala - Kuusdeetaa - Amaloota- Qindaa'ina olaansii</emph> cancaala filadhu</variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id4818872\n"
+"00000450.xhp\n"
+"par_id3159411\n"
+"5\n"
"help.text"
-msgid "ODF Chart is the name of the file format for stand alone charts. This format with the extension *.odc is currently not in use."
-msgstr "Taattoon ODF maqaa dhangii faayilii taatoowwan kophaa dhaabbataniit. Dhangiin dheertoo *.odc wajjinii kun amma faayidaa kennaa hin jiru."
+msgid "<variable id=\"Datenquelle\">In a database file window of type ODBC or Address book, choose Edit - Database - Connection Type</variable>"
+msgstr "<variable id=\"Datenquelle\">Foddaa faayiili kuusdeetaa kessaa akaakuu ODBC yookin teessoo kitaaba, Gulaaluu - Kuusdeetaa - Akaakuu Walindhaa </variable> filadhu."
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_idN107E3\n"
+"00000450.xhp\n"
+"par_id3149119\n"
+"6\n"
"help.text"
-msgid "Older File Formats Prior to %PRODUCTNAME %PRODUCTVERSION"
-msgstr "Dhangiiwwan faayilii duraanii kan %PRODUCTNAME %PRODUCTVERSION dursu"
+msgid "<variable id=\"Verzeichnis\">Path selection button in various Wizards / <emph>Edit</emph> Buttons for some entries in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Paths</emph></variable>"
+msgstr ""
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0514200811525257\n"
+"00000450.xhp\n"
+"par_id3154497\n"
+"8\n"
"help.text"
-msgid "The OpenDocument format evolves over time."
-msgstr "Dhangiin BarruunBani sa`atii irra darbaa ofkeessatti qabata."
+msgid "<variable id=\"ODBC\">In a database file window of type ODBC, choose Edit - Database - Connection Type</variable>"
+msgstr "<variable id=\"ODBC\">Akaakuu foddaa fayilii ODBC kessaatti, Gulaali -Kuusaa deetaa - Walindhaa fili </variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0514200811565671\n"
+"00000450.xhp\n"
+"par_id3149355\n"
+"61\n"
"help.text"
-msgid "ODF version"
-msgstr "ODF version"
+msgid "<variable id=\"ldap\">In a database file window of type Address book - LDAP, choose Edit - Database - Properties</variable>"
+msgstr "<variable id=\"ldap\">Akaakuu foddaa fayilii kuusaa deetaa kitaabaa teessoo - LDAP keessaatti, Gulaallii - Kuusaa deetaa - Amaalootaa fili </variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0519200811530375\n"
+"00000450.xhp\n"
+"par_id3157896\n"
+"9\n"
"help.text"
-msgid "Date of standard approval by OASIS"
-msgstr "Date of standard approval by OASIS"
+msgid "<variable id=\"JDBC\">In a database file window of type JDBC, choose <emph>Edit - Database - Properties</emph></variable>"
+msgstr "<variable id=\"JDBC\">Akaakuu foddaa fayilii JDBC kessaatti <emph>Gulaali - Kuusaa deetaa - Walindhaa </emph>fili</variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0519200811530491\n"
+"00000450.xhp\n"
+"par_id3148548\n"
+"81\n"
"help.text"
-msgid "First supporting version of the software"
-msgstr ""
+msgid "<variable id=\"mysql\">In a database file window of type MySQL, choose <emph>Edit - Database - Properties</emph></variable>"
+msgstr "<variable id=\"mysql\">Akaakuu foddaa faayilii kuussaa deetaa MySQL keessaa, <emph>Gulaali - Kuusaa deetaa - Amalootaa</emph>fili</variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0514200811565662\n"
+"00000450.xhp\n"
+"par_id3149346\n"
+"10\n"
"help.text"
-msgid "ODF 1.0"
-msgstr "ODF 1.0"
+msgid "<variable id=\"dBase\">In a database file window of type dBASE, choose <emph>Edit - Database - Properties</emph></variable>"
+msgstr "<variable id=\"dBase\">Akaakuu foddaa faayilii kuusaa deetaa dBASE keesaa, <emph>Gulaali - Kuusaa deetaa - Amaloota</emph>fili</variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0519200811530487\n"
+"00000450.xhp\n"
+"par_id3147043\n"
+"11\n"
"help.text"
-msgid "2005-05-01"
-msgstr "2005-05-01"
+msgid "<variable id=\"dBasein\">In a database file window of type dBASE, choose <emph>Edit - Database - Properties</emph>, click <emph>Indexes</emph></variable>"
+msgstr "<variable id=\"dBasein\">Akaakuu foddaa fayilii kuusaa deetaa dBASE keessaa, <emph>Gulaalii - kuusaa detaa - Amaloota</emph>fili<emph>Kasaa</emph></variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0519200811530455\n"
+"00000450.xhp\n"
+"par_id3154317\n"
+"12\n"
"help.text"
-msgid "OpenOffice.org 1.1.5 or StarOffice 7"
-msgstr "OpenOffice.org 1.1.5 or StarOffice 7"
+msgid "<variable id=\"Text\">In a database file window of type Text, choose <emph>Edit - Database - Properties</emph></variable>"
+msgstr "<variable id=\"Text\">Akaakuu foddaa fayilii kuusaa deetaa barruu keessaa, <emph>Gulaali - Kuusaa deetaa - Amalootaa</emph>fili</variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0514200811565787\n"
+"00000450.xhp\n"
+"par_id3150774\n"
+"20\n"
"help.text"
-msgid "ODF 1.1"
-msgstr "ODF 1.1"
+msgid "<variable id=\"ADO\">In a database file window of type MS ADO, choose <emph>Edit - Database - Properties</emph></variable>"
+msgstr "<variable id=\"ADO\">Akaakuu foddaa fayilii kuussaa deetaa MS ADO keessaa, <emph>Gulaali - Kuusaa deetaa - Amalootaa</emph>fili</variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0519200811530479\n"
+"00000450.xhp\n"
+"par_id3151110\n"
+"21\n"
"help.text"
-msgid "2007-02-02"
-msgstr "2007-02-02"
+msgid "<variable id=\"SQLStatement\">In a database file window, choose <emph>Tools - SQL</emph></variable>"
+msgstr "<variable id=\"SQLStatement\">Foddaa faayilii kuusaa detaa keessaatti <emph>Meshaalee - SQL</emph>fili</variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0519200811530467\n"
+"00000450.xhp\n"
+"par_id3147209\n"
+"22\n"
"help.text"
-msgid "OpenOffice.org 2.2 or StarOffice 8 Update 4"
-msgstr "OpenOffice.org 2.2 or StarOffice 8 Update 4"
+msgid "<variable id=\"Abfragen\">In a database file window, click the <emph>Queries</emph> icon</variable>"
+msgstr "<variable id=\"Abfragen\">Foddaa fayiilii kuusaa deetaa keessaa, <emph>Gaafata</emph> sajoo</variable> cuqaasi"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0514200811565762\n"
+"00000450.xhp\n"
+"par_id3153880\n"
+"62\n"
"help.text"
-msgid "ODF 1.2"
-msgstr "ODF 1.2"
+msgid "<variable id=\"Tabellen\">In a database file window, click the <emph>Tables</emph> icon</variable>"
+msgstr "<variable id=\"Tabellen\">Fooddaa fayilii kuusaa deetaa keessaa, <emph>Gabatee</emph> sajoo </variable>filii cuqaasi"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0519200811530440\n"
+"00000450.xhp\n"
+"par_id3153760\n"
+"64\n"
"help.text"
-msgid "2011-09-30"
-msgstr ""
+msgid "<variable id=\"tabellenentwurf\">In a database file window, click the Tables icon. Choose Insert -<emph> Table Design</emph> or <emph>Edit - Edit</emph></variable>"
+msgstr "<variable id=\"tabellenentwurf\">Fooddaa faayilii kuusaa deetaa keessaa, sagoo gabatee cuqaasi. Saaguu - <emph> Gabatee Saxaxaa </emph> yookin <emph>Gulaala - Gulaala</emph>filadhu</variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0519200811530471\n"
+"00000450.xhp\n"
+"par_id3156329\n"
+"65\n"
"help.text"
-msgid "OpenOffice.org 3, StarOffice 9, Oracle Open Office"
-msgstr ""
+msgid "<variable id=\"indexentwurf\">In a database file window, click the Tables icon. Choose <emph>Insert - Table Design</emph> or <emph>Edit - Edit</emph></variable>"
+msgstr "<variable id=\"indexentwurf\">Foddaa faayilii kuusaa deeta keessaa, sajoo Gabatee cuqaasi. <emph>Saaguu - Gabatee Saxaxa</emph> yookin <emph>Gulaali - Gulaali</emph>fili</variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id1001200912381153\n"
+"00000450.xhp\n"
+"par_id3154047\n"
+"23\n"
"help.text"
-msgid "ODF 1.2 (Extended)"
-msgstr ""
+msgid "<variable id=\"AbfrageNeu\">In a database file window, choose <emph>Insert - Query (Design view)</emph></variable>"
+msgstr "<variable id=\"AbfrageNeu\">Foddaa faayilii kuusdeetaa keessaa, <emph>Saaguu - Gaafata (Mul'annoo Saxaxa)</emph></variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id100120091238112\n"
+"00000450.xhp\n"
+"par_id3149579\n"
+"24\n"
"help.text"
-msgid "-"
-msgstr "-"
+msgid "<variable id=\"entwab\">In a database file window, click the <emph>Queries</emph> icon, then choose <emph>Edit - Edit</emph></variable>"
+msgstr "<variable id=\"entwab\">Foodaa faayilii kuussaa deetaa keessaa, sajoo <emph>Gaaftaalee</emph> cuqaasi, kana booda <emph>Guulaalii - Guulaalii</emph> fili</variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id1001200912381174\n"
+"00000450.xhp\n"
+"par_id3149902\n"
+"25\n"
"help.text"
-msgid "OpenOffice.org 3.2 or StarOffice 9.2"
-msgstr "OpenOffice.org 3 or StarOffice 9"
+msgid "<variable id=\"FehlendesElement\">In a database file window, click the <emph>Queries</emph> icon, then choose <emph>Edit - Edit</emph>. When referenced fields no longer exist, you see this dialog</variable>"
+msgstr "<variable id=\"FehlendesElement\">Foddaa faayilii kuusa deetaa keessatti, <emph>Gaafata</emph> sajoo cuqaasii, <emph>Gulaala - Gulaala</emph>filadhu. Dirreen wabii hammana yoo jiraachuu baate, qaaqa kana ilaali </variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0514200811525591\n"
+"00000450.xhp\n"
+"par_id3159166\n"
+"26\n"
"help.text"
-msgid "In current versions, you can select to save your documents using ODF 1.2 (default) or ODF 1.0/1.1 (for backward compatibility). Choose <item type=\"menuitem\">Tools - Options - Load/Save - General</item> and select the ODF format version."
-msgstr "OpenOffice.org 3 and StarOffice 9 keessatti, ODF 1.2 (default) ykn ODF 1.0/1.1 (for backward compatibility) gargaaramuun galmeewwan olkaa`uuf filuu ni dandeessa. <item type=\"menuitem\">Meeshaalee - Dirqaalee - Fe`i/Olkaa`i - Waliigala</item> fi dhangii ODF fooyya`aa fili."
+msgid "<variable id=\"Joins\">Open query design and choose <emph>Insert - New Relation</emph>, or double-click on a connection line between two tables.</variable>"
+msgstr "<variable id=\"Joins\">Saxaxa gafataa banitii <emph>Saaguu - Qunnamtii Haaraa </emph>, fili yookin sararawwan walindha gabateewwan lamaan giddutti argaman irratti lama cuqaasi.</variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_idN107E9\n"
+"00000450.xhp\n"
+"par_id3151245\n"
"help.text"
-msgid "If you want to exchange documents with users that still use OpenOffice.org 1 or StarOffice 7, save the document using the respectively named filter in the <emph>File type</emph> listbox."
-msgstr "Yoo galmeewwan itti fayyadamtoota waliin hanga gargaaramuu OpenOffice.org 1 or StarOffice 7 waljijjiiruu barbaade, galmee maqaa gingilchaa duraa duubaan sanduuqa tarree <emph>Akaakuu faayilii</emph> keessa olkaa`i.s"
+msgid "<image id=\"img_id3153063\" src=\"cmd/sc_addtable.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153063\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153063\" src=\"cmd/sc_addtable.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153063\">sssssssSajoo</alt></image>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3146907\n"
-"1\n"
+"00000450.xhp\n"
+"par_id3153896\n"
+"41\n"
"help.text"
-msgid "If you want to define another file format as the default, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010200.xhp\" name=\"Load/Save - General\">Load/Save - General</link></emph> to find alternative file formats for each $[officename] document type."
-msgstr ""
+msgid "Insert Tables"
+msgstr "Gabateewwan Saagi"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"hd_id3150398\n"
-"28\n"
+"00000450.xhp\n"
+"par_id3149457\n"
"help.text"
-msgid "XML file structure"
-msgstr "Caasaa faayilii XML"
+msgid "<image id=\"img_id3147282\" src=\"cmd/sc_dbaddrelation.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147282\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147282\" src=\"cmd/sc_dbaddrelation.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147282\">Sajoo</alt></image>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3149649\n"
-"29\n"
+"00000450.xhp\n"
+"par_id3159085\n"
+"43\n"
"help.text"
-msgid "Documents in OpenDocument file format are stored as compressed zip archives that contain XML files. To view these XML files, you can open the OpenDocument file with an unzip program. The following files and directories are contained within the OpenDocument files:"
-msgstr "Galmeewwan dhangii faayilii GalmeeBani keessatti akka furtuu wallitti qabamee faayilii XML ofkeessatti qabatuu olkaa`amu. Faayiloota XML kana ilaaluuf, faayilii GalmeeBani sagantaa hin qolofamneen banuu dandeessa. Faayilootnii fi galeelota kanneen armaan gadii Faayiloota GalmeeBani kassatti qabamu:"
+msgid "New Relation"
+msgstr "Qunnamti Haaraa"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3153178\n"
-"30\n"
+"00000450.xhp\n"
+"par_id3150414\n"
+"47\n"
"help.text"
-msgid "The text content of the document is located in <emph>content.xml</emph>."
-msgstr "Qabeentoon barruu galmee <emph>content.xml</emph> keessatti argama."
+msgid "<emph>Find Record</emph> icon on the Table Data bar and Form Design bar"
+msgstr "Sajoo <emph>Kuusaa Barbaadi</emph> Kabala Gabatee kuusaa deetaa fi Unkaa Saxaxa keessaa"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3154068\n"
-"31\n"
+"00000450.xhp\n"
+"par_id3157962\n"
"help.text"
-msgid "By default, <emph>content.xml</emph> is stored without formatting elements like indentation or line breaks to minimize the time for saving and opening the document. On the <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - General</emph> tab page you can activate the use of indentations and line breaks by clearing the check box <emph>Size optimization for ODF format</emph>."
-msgstr ""
+msgid "<image id=\"img_id3145419\" src=\"cmd/sc_recsearch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145419\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145419\" src=\"cmd/sc_recsearch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145419\">Sajoo</alt></image>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3145152\n"
-"32\n"
+"00000450.xhp\n"
+"par_id3157322\n"
+"48\n"
"help.text"
-msgid "The file <emph>meta.xml</emph> contains the meta information of the document, which you can enter under <emph>File - Properties</emph>."
-msgstr "Faayileen <emph>meta.xml</emph> galmee odeeffannoo meetaa qabaatu, Kan <emph>Faayilii - Amaloota</emph> jalatti saaguu dandeessa."
+msgid "Find Record"
+msgstr "Kuusaa Barbaadi"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3150740\n"
-"33\n"
+"00000450.xhp\n"
+"par_id3150870\n"
+"49\n"
"help.text"
-msgid "If you save a document with a password, <emph>meta.xml</emph> will not be encrypted."
-msgstr "Yoo galmee iggita wajjin olkeesse, <emph>meta.xml</emph> hin hicciteeffamne."
+msgid "<emph>Sort Order</emph> icon on the Table Data bar and Form Design bar"
+msgstr "Sajoo <emph>TArfiiba Fo'i</emph> kabala Gabatee Deetaa fi Unkaa Saxaxarraa"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3150391\n"
-"34\n"
+"00000450.xhp\n"
+"par_id3150393\n"
"help.text"
-msgid "The file <emph>settings.xml</emph> contains further information about the settings for this document."
-msgstr "Faayiliin <emph>settings.xml</emph>odeeffannoo baay'ee waa'ee qindaa'inaa galmeef qabaata."
+msgid "<image id=\"img_id3145606\" src=\"cmd/sc_tablesort.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145606\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153063\" src=\"cmd/sc_addtable.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153063\">sssssssSajoo</alt></image>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3150447\n"
-"35\n"
+"00000450.xhp\n"
+"par_id3145745\n"
+"50\n"
"help.text"
-msgid "In <emph>styles.xml,</emph> you find the styles applied to the document that can be seen in the Styles and Formatting window."
-msgstr "<emph>styles.xml,</emph> keessatti akkaataawwan galmee kan foddaa akkaataawwanii fi dhangeessisuu ilaalamuu danda'an fayyadu argachuu."
+msgid "Sort Order"
+msgstr "Tartiba Fo'i"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3153353\n"
-"36\n"
+"00000450.xhp\n"
+"par_id3145171\n"
+"55\n"
"help.text"
-msgid "The <emph>meta-inf/manifest.xml</emph> file describes the structure of the XML file."
-msgstr "Faayiliin <emph>meta-inf/manifest.xml</emph> caasaa faayilii XML ibsa."
+msgid "<variable id=\"allgemein\">In a database file window, choose <emph>Edit - Database - Properties</emph></variable>"
+msgstr "<variable id=\"allgemein\">Foodaa faayilii kuusaa deetaa keessaa,<emph>Guulaali - Kuussaa deetaa - Amaloota</emph>fili</variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3153368\n"
-"37\n"
+"00000450.xhp\n"
+"par_id3159252\n"
+"63\n"
"help.text"
-msgid "Additional files and folders can be contained in the packed file format."
-msgstr "Faayiloonni fi ukaankonni dabalataa dhangii faayilii qarqaba keeessatti qabamuu danda'a."
+msgid "<variable id=\"tabellecopy\">Drag and drop a table or a query into the table part of another database file window</variable>"
+msgstr "<variable id=\"tabellecopy\">Gabatee yookin gaafata gara kutaa gabatee foodaa faayilii kuusaa deetaa kabirootti harkisii yookin kaayi</variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"hd_id3154299\n"
-"38\n"
+"00000450.xhp\n"
+"par_id3148560\n"
+"66\n"
"help.text"
-msgid "Definition of the XML formats"
-msgstr "Qindaa'ina dhangiiwwan XML"
+msgid "<variable id=\"formularneu\">In a database file window, choose<emph> Insert - Form</emph></variable>"
+msgstr "<variable id=\"formularneu\">Foodaa Faayilii kuusaa deetaa keessaa, <emph>Saagi - Unka</emph>fili</variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_idN10AAD\n"
+"00000450.xhp\n"
+"par_id3155430\n"
+"67\n"
"help.text"
-msgid "The schema for the OpenDocument formats can be found on the <link href=\"http://www.oasis-open.org\">www.oasis-open.org</link> web site."
-msgstr "Squariin dhangilee GalmeeBanuu iddoo saphaphuu <link href=\"http://www.oasis-open.org\">www.oasis-open.org</link> irratti argamuu danda'a."
+msgid "<variable id=\"benutzereinstellungen\">In a database file window, choose <emph>Edit - Database - Properties</emph></variable>"
+msgstr "<variable id=\"benutzereinstellungen\">Fooddaa faayilii kuusaa deetaa keessaa, <emph>Guulaali - Kuusaa - Amaloota</emph>fili</variable>"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_idN10AC5\n"
+"00000450.xhp\n"
+"par_id3147441\n"
+"69\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01130000.xhp\">Document Converter Wizard</link>"
-msgstr "<link href=\"text/shared/autopi/01130000.xhp\">Masaka jijjiiraa galmee</link>"
+msgid "<variable id=\"relationen\">In a database file window, choose <emph>Tools - Relationships</emph></variable>"
+msgstr "<variable id=\"relationen\">Foodaa faayilii kuusaa deetaa keessaa <emph>Meshaalee - Firoominoota</emph>fili</variable>"
-#: 00040503.xhp
+#: 00040500.xhp
msgctxt ""
-"00040503.xhp\n"
+"00040500.xhp\n"
"tit\n"
"help.text"
msgid "Format Menu"
msgstr "Dhangii Baafata"
-#: 00040503.xhp
+#: 00040500.xhp
msgctxt ""
-"00040503.xhp\n"
-"hd_id3155757\n"
+"00040500.xhp\n"
+"hd_id3150347\n"
"1\n"
"help.text"
msgid "Format Menu"
msgstr "Dhangii Baafata"
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3147294\n"
-"2\n"
-"help.text"
-msgid "Choose <emph>Format - Row - Height</emph>"
-msgstr "<emph>Dhangii - Tarree - Hojjaa</emph> Fili"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3149551\n"
-"3\n"
-"help.text"
-msgid "Open context menu of a row header in an open database table - choose <emph>Row Height</emph>"
-msgstr "Baafata halqaraa bani Jalaantoo tarree gabtee kuusaa deetaa banaa ta'ee keessaa bani -<emph>Tarree - Hojjaa</emph> fili"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3153136\n"
-"4\n"
-"help.text"
-msgid "Choose <emph>Format - Column - Width</emph>"
-msgstr "<emph>Dhangii - Tarjaa - Yabbina</emph> fili"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3150756\n"
-"5\n"
-"help.text"
-msgid "Open context menu of a column header in a database table - choose <emph>Column Width</emph>"
-msgstr "Baafata halqaraa bani Iraantoo tarjaa gabtee kuusaa deetaa keessaa bani -<emph>Yabbina Tarjaa</emph>fili"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3148668\n"
-"11\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Numbers</emph> tab </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Numbers</emph> tab </caseinline></switchinline>"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3152349\n"
-"13\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Styles and Formatting</emph> - open context menu and choose <emph>Modify/New - Numbers</emph> tab </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><emph>Dhaagii- Haalatoota fi Dhangeessu</emph> fili - baafata halgara bani - cancala <emph>foyyessii/haraa - Lakkofsota</emph> fili </caseinline></switchinline>"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3161459\n"
-"14\n"
-"help.text"
-msgid "Open context menu for a column header in an open database table - choose <emph>Column Format - Format</emph> tab"
-msgstr "Baafatta haalqara irrantoo tarjaaf, gabattee kussuu deetaa kessaa banii cancala <emph>Dhangii Tarjaa - Dhangii</emph> fili"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3147531\n"
-"15\n"
-"help.text"
-msgid "Choose <emph>Format - Axis - Y Axis - Numbers</emph> tab (Chart Documents)"
-msgstr "Cancala (Galmeelee taattoo )<emph>Dhangii - Siqqee - Siqqee Y Lakkoofsoota</emph> fili"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3150823\n"
-"32\n"
-"help.text"
-msgid "Also as <emph>Number Format</emph> dialog for tables and fields in text documents: Choose <emph>Format - Number Format</emph>, or choose <emph>Insert - Fields - Other - Variables</emph> tab and select \"Additional formats\" in the <emph>Format</emph> list."
-msgstr "Akkuma qaaqni <emph>Dhangii Lakkofsaa</emph> galmelee barruu kessattii gabattewwaniif ta'uuttii: <emph>Dhangii - Dhangii Lakkoofsaa</emph> filii, yookin cancala <emph>Saaguu -Dirrewwan - Kabiroo - Jijjiramoota</emph> filii, akkasuumas <emph>Dhangii</emph> tarree dhangii keessaa fili."
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3154923\n"
-"6\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\">Choose <emph>Format - Title - Main Title - Alignment</emph> tab </caseinline><defaultinline>Choose <emph>Format - Cells - Alignment</emph> tab</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"><emph>Dhangii - Mataduree - MatadureeIjoo - Hiriira</emph> caancalaa </caseinline><defaultinline> <emph>Dhangii - Man'eewwanii - Hiriira</emph> cancalaa</defaultinline>filadhu</switchinline>"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3149457\n"
-"7\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><defaultinline>Open context menu of a column header in a database table - choose <emph>Column Format - Alignment</emph> tab</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><defaultinline>Baafata haalqara irrantoo tarjaa, gabattee kussaa deetaa kessaa fili - cancala <emph>Dhangii Tarjaa - Hiriira</emph>fili</defaultinline></switchinline>"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3150400\n"
-"8\n"
-"help.text"
-msgid "<variable id=\"tabform\">Open context menu of a row header in a database table - choose <emph>Table Format</emph></variable>"
-msgstr "<variable id=\"tabform\">Baafata haalqara irrantoo tarree, gabatee kusaa deetaa kessaa banii <emph>Dhangii Gabatee</emph>fili</variable>"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3149650\n"
-"33\n"
-"help.text"
-msgid "<variable id=\"spaltform\">Open context menu of a column header in a database table - choose <emph>Column Format</emph></variable>"
-msgstr "<variable id=\"spaltform\">Baafatta haalqara irrantoo tarjaa, gabattee kussaa deetaa kessaa bani <emph>Dhagii Tarjaa</emph>fili</variable>"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3153799\n"
-"34\n"
-"help.text"
-msgid "<variable id=\"zeilenloeschen\">Context menu for a row header in an open database table - <emph>Delete Rows</emph></variable>"
-msgstr "<variable id=\"zeilenloeschen\">Baafata haalqara irrantoo tarreef gabattee kusaa deetaa kessattii argamuu - <emph>Tarreewwan haqi</emph></variable>"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3150495\n"
-"16\n"
-"help.text"
-msgid "Choose <emph>Modify - Flip</emph> ($[officename] Draw)"
-msgstr "<emph>Foyyessii -Melchii</emph> ($[officename] Fakkasaa) fili"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3155742\n"
-"17\n"
-"help.text"
-msgid "Choose <emph>Format - Graphics - Graphics</emph> tab"
-msgstr "Cancala <emph>Dhangii - Saxattoo - Saxattoo</emph> fili"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3158407\n"
-"35\n"
-"help.text"
-msgid "Open context menu - choose <emph>Flip</emph> (presentation documents)"
-msgstr "Baafatta haalqara <emph>Melchii</emph> (galmeelee dhiyeessaa) fili"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3150290\n"
-"20\n"
-"help.text"
-msgid "Choose <emph>Modify - Flip - Vertically</emph> ($[officename] Draw)"
-msgstr "<emph>Foyyessii - Melchii - Sarjiina</emph> ($[officename] Fakkaasaa) fili"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3153179\n"
-"21\n"
-"help.text"
-msgid "Choose <emph>Format - Graphics - Graphics</emph> tab"
-msgstr "Cancala <emph>Dhangii - Saxattoo - Saxattoo</emph> fili"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3157960\n"
-"36\n"
-"help.text"
-msgid "Open context menu - choose <emph>Flip - Vertically</emph> (presentation documents)"
-msgstr "Bafata haalqara banii- <emph>Melki - Sarjiina</emph>(galmeelee dhiyeessaa) fili"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3153369\n"
-"26\n"
-"help.text"
-msgid "Choose <emph>Modify - Flip - Horizontally</emph> ($[officename] Draw)"
-msgstr "Foyyessii <emph>Fooyyesa - Melchii - Sarjiina </emph>($[officename] fili"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3147348\n"
-"27\n"
-"help.text"
-msgid "Choose <emph>Format - Graphics</emph>, and then click the <emph>Graphics</emph> tab"
-msgstr "<emph>Dhangii - Saxaatoo</emph> Fili kana booda cancala <emph>Saxaatoo</emph> cuqaasi"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3156106\n"
-"42\n"
-"help.text"
-msgid "Choose <emph>Format - Flip - Horizontally</emph>"
-msgstr "<emph>Dhangii - Meelchi - Sarjinaa</emph> Fili"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3152578\n"
-"37\n"
-"help.text"
-msgid "Right-click a selected object, and then choose <emph>Flip - Horizontally</emph> ($[officename] Impress)"
-msgstr "Wanta filatamee Mirga - cuqaasi, kana booda <emph>Meelchi - Sarjinaa</emph> (Imprassii$[officename])fili"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3147318\n"
-"38\n"
-"help.text"
-msgid "Choose <emph>Modify - Distribution</emph> ($[officename] Draw)"
-msgstr "<emph>Fooyyeessi - Tamsa'ina</emph> (Fakkassaa$[officename])Fili"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3149064\n"
-"39\n"
-"help.text"
-msgid "Open context menu - choose <emph>Distribution</emph> ($[officename] Impress)"
-msgstr "aafata halqara bani - <emph>Tamsa'ina</emph> ($[officename] Imprassii)Fili"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"tit\n"
-"help.text"
-msgid "Edit Menu"
-msgstr "Baafata Gulaalii"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"hd_id3147273\n"
-"1\n"
-"help.text"
-msgid "Edit Menu"
-msgstr "Baafata Gulaalii"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3085157\n"
-"2\n"
-"help.text"
-msgid "Choose <emph>Edit - Undo</emph>"
-msgstr "Choose <emph>Gulaali - Gaabbi</emph>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3145160\n"
-"564\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3154094\n"
-"3\n"
-"help.text"
-msgid "On the <emph>Standard</emph> Bar or Table Data bar, click"
-msgstr "Kabala durtii ykn kabala Gabatee <emph>Deetaarraa</emph>,"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3155449\n"
-"help.text"
-msgid "<image id=\"img_id3155577\" src=\"cmd/sc_undo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155577\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155577\" src=\"cmd/sc_undo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155577\">Sajoo</alt></image>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3148563\n"
-"4\n"
-"help.text"
-msgid "Undo"
-msgstr "Gaabbi"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3145068\n"
-"5\n"
-"help.text"
-msgid "Choose <emph>Edit - Redo</emph>"
-msgstr "<emph>Guulaali-Irradebii</emph>Fili"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3153897\n"
-"6\n"
-"help.text"
-msgid "On the <emph>Standard</emph> Bar, click"
-msgstr "Kabala <emph>Durtti</emph> irraa,"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3154938\n"
-"help.text"
-msgid "<image id=\"img_id3150358\" src=\"cmd/sc_redo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150358\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150358\" src=\"cmd/sc_redo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150358\">Sajoo</alt></image>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3151211\n"
-"7\n"
-"help.text"
-msgid "Redo"
-msgstr "Irradebi'i"
-
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3154365\n"
+"00040500.xhp\n"
+"par_id3145356\n"
"8\n"
"help.text"
-msgid "<variable id=\"letzter\">Choose <emph>Edit - Repeat</emph></variable>"
-msgstr "<variable id=\"letzter\"><emph>Guulaali - Irradebi'i</emph>Fili</variable>"
+msgid "<variable id=\"standard\">Choose <emph>Format - Clear Direct Formatting</emph></variable>"
+msgstr "<variable id=\"standard\"><emph>Dhangii - Durtii Dhaangeessuu</emph> fili</variable>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3149765\n"
+"00040500.xhp\n"
+"par_id3153244\n"
"9\n"
"help.text"
-msgid "Choose <emph>Edit - Cut</emph>"
-msgstr "<emph>Guulaali- Muri</emph> fili"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3144762\n"
-"565\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X"
+msgid "Choose <emph>Format - Character</emph>"
+msgstr "<emph>Dhangii - Arfii</emph>fili"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3148744\n"
+"00040500.xhp\n"
+"par_id3152352\n"
"10\n"
"help.text"
-msgid "On the <emph>Standard</emph> Bar, click"
-msgstr "Kabala <emph>Durtiirra</emph>,"
+msgid "On <emph>Text Formatting</emph> Bar (with cursor in object), click"
+msgstr "<emph>Barruu Dhangii</emph> Kabala (wanta keessaa qaree waliin), cuqaasi."
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3145173\n"
+"00040500.xhp\n"
+"par_id3148998\n"
"help.text"
-msgid "<image id=\"img_id3145744\" src=\"cmd/sc_helpmenu.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145744\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145744\" src=\"cmd/sc_helpmenu.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145744\">Sajoo</alt></image>"
+msgid "<image id=\"img_id3154894\" src=\"cmd/sc_outlineformat.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154894\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154894\" src=\"cmd/sc_outlineformat.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154894\">Sajoo</alt></image>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3154153\n"
+"00040500.xhp\n"
+"par_id3149999\n"
"11\n"
"help.text"
-msgid "Cut"
-msgstr "Muri"
+msgid "Character"
+msgstr "Arfii"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3150742\n"
+"00040500.xhp\n"
+"par_id3153935\n"
"12\n"
"help.text"
-msgid "Choose <emph>Edit - Copy</emph>"
-msgstr "<emph>Guulaali- Garagalcha</emph>Fili"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3148923\n"
-"566\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3159254\n"
-"13\n"
-"help.text"
-msgid "On the <emph>Standard</emph> Bar, click"
-msgstr "Kabala <emph>Durtii</emph> irraa,"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3154985\n"
-"help.text"
-msgid "<image id=\"img_id3156441\" src=\"cmd/sc_copy.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156441\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156441\" src=\"cmd/sc_copy.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156441\">Sajoo</alt></image>"
+msgid "Choose <emph>Format - Character - Font</emph> tab"
+msgstr "<emph>Cancala Dhangii - Arfii - Bocquu</emph>fili"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3150685\n"
+"00040500.xhp\n"
+"par_id3157958\n"
"14\n"
"help.text"
-msgid "Copy"
-msgstr "Garagalchi"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3159153\n"
-"15\n"
-"help.text"
-msgid "Choose <emph>Edit - Paste</emph>"
-msgstr "<emph>Guulaali- Maxxansi</emph>Fili"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3155860\n"
-"567\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Font</emph> tab"
+msgstr "<emph>Dhangii - Haaalota fi Dhangii</emph> - banii baafata galfata halqaraa banitii Cancala <emph>Fooyyeessi/Haaraa - Bocquu</emph>fili"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3159083\n"
+"00040500.xhp\n"
+"par_id3155338\n"
"16\n"
"help.text"
-msgid "On the <emph>Standard</emph> Bar, click"
-msgstr "Kabla <emph>Durtii</emph> irraa,"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3156106\n"
-"help.text"
-msgid "<image id=\"img_id3159196\" src=\"cmd/sc_paste.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159196\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159196\" src=\"cmd/sc_paste.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159196\">Sajoo</alt></image>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3154471\n"
-"17\n"
-"help.text"
-msgid "Paste"
-msgstr "Maxxansi"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3152791\n"
-"532\n"
-"help.text"
-msgid "<variable id=\"inhalte\">Choose <emph>Edit - Paste Special</emph></variable>"
-msgstr "<variable id=\"inhalte\"><emph>Guulaali - Maxxansa Addaa</emph> Fili</variable>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3148555\n"
-"533\n"
-"help.text"
-msgid "Choose <emph>Edit - Select All</emph>"
-msgstr "<emph>Guulaali- Mara fili</emph> filadhuu"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3152417\n"
-"568\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3145748\n"
-"help.text"
-msgid "<image id=\"img_id3153095\" src=\"cmd/sc_selectall.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153095\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153095\" src=\"cmd/sc_selectall.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153095\">Sajoo</alt></image>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3153139\n"
-"575\n"
-"help.text"
-msgid "Select All"
-msgstr "Marra Fili"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3145251\n"
-"555\n"
-"help.text"
-msgid "<variable id=\"aenderungen\">Choose <emph>Edit - Changes</emph></variable>"
-msgstr "<variable id=\"aenderungen\"><emph>Guulaali - Jijjiiramoota</emph>Fili</variable>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3153336\n"
-"556\n"
-"help.text"
-msgid "<variable id=\"aufzeichnen\">Choose <emph>Edit - Changes - Record</emph></variable>"
-msgstr "<variable id=\"aufzeichnen\"><emph>Gulaali - Jijjiiramoota - Kuusa</emph> Fili</variable>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3150594\n"
-"557\n"
-"help.text"
-msgid "<variable id=\"anzeigen\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Edit - Changes - Show</emph></caseinline><caseinline select=\"CALC\">Choose <emph>Edit - Changes - Show</emph></caseinline></switchinline></variable>"
-msgstr "<variable id=\"anzeigen\"><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Guulaali - Jijjiiramoota - Mul'isi</emph>Fili</caseinline><caseinline select=\"CALC\"><emph>Guulaali - Jijjiiramoota - Mul'isi</emph>Fili</caseinline></switchinline></variable>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3153845\n"
-"558\n"
-"help.text"
-msgid "<variable id=\"rotlinie\">Choose <emph>Edit - Changes - Accept or Reject</emph></variable>"
-msgstr "<variable id=\"rotlinie\">Choose <emph>Guulaali - Jijjiiramoota - Fudhi yookin Gati</emph></variable>"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3148587\n"
-"559\n"
-"help.text"
-msgid "Choose <emph>Edit - Changes - Accept or Reject - List</emph> tab"
-msgstr "Cancala <emph>Guulaali - Jijjiiramoota - Fudhi yookin Gati - Tarree</emph> Fili"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3150396\n"
-"574\n"
-"help.text"
-msgid "Choose <emph>Format - AutoCorrect - Apply and Edit Changes.</emph> AutoCorrect dialog appears, click <emph>Edit Changes</emph> button, see <emph>List</emph> tab page"
-msgstr "<emph>Dhangii - OfiinSirreessaa - Hojjomsi akkasumas Jijjiirraa Gulaali fili.</emph> Qaaqan OfiinSirreessaa ni mul'ata, qabduu <emph>Jijjiirraa Guulaali</emph> cuqaasi, fuulaa caancala <emph>Tarree</emph> ilaali"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3153878\n"
-"560\n"
-"help.text"
-msgid "<variable id=\"rotliniefilter\">Choose <emph>Edit - Changes - Accept or Reject - Filter</emph> tab </variable>"
-msgstr "<variable id=\"rotliniefilter\">Cancala<emph>Guulaali - Jijjiiramoota - Fudhi yookin Gati - Gingilchaa Fili</emph></variable>"
+msgid "Open context menu of a row header in a database table - choose <emph>Table Format - Font</emph> tab"
+msgstr "Baafata halqaraa bani iraantoo tarree gabtee kuusaa deetaa keessaa bani -<emph>Cancala - Gabatee</emph>fili"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3151281\n"
-"561\n"
+"00040500.xhp\n"
+"par_id3150355\n"
+"18\n"
"help.text"
-msgid "<variable id=\"einfuegen\">Choose <emph>Edit - Changes - Merge Document</emph></variable>"
-msgstr "<variable id=\"einfuegen\"><emph>Guulaali - Jijjiiramoota - Galmee Maki </emph>Fili</variable>"
+msgid "Choose <emph>Format - Title - Character</emph> tab (Chart documents)"
+msgstr "Cancala(Galmeelee Taattoo)<emph>Dhangii - Matadure - Arfii</emph>fili"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3153224\n"
-"562\n"
+"00040500.xhp\n"
+"par_id3149812\n"
+"19\n"
"help.text"
-msgid "<variable id=\"dvergl\">Choose <emph>Edit - Compare Document</emph></variable>"
-msgstr "<variable id=\"dvergl\">Choose <emph>Guulaali - Galmee Waliin Madaali</emph>Fili</variable>"
+msgid "Choose <emph>Format - Legend - Character</emph> tab (Chart documents)"
+msgstr "Cancala(Galmeelee Taattoo)<emph>Dhangii - Waayoo</emph>fili"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3148773\n"
-"563\n"
+"00040500.xhp\n"
+"par_id3153717\n"
+"20\n"
"help.text"
-msgid "Choose <emph>Edit - Changes - Comment</emph>"
-msgstr "<emph>Guulaalii - Jijjiiramoota - Yaada</emph> Fili"
+msgid "Choose <emph>Format - Axis - Character</emph> tab (Chart documents)"
+msgstr "Cancala(Galmeelee Taattoo)<emph>Dhangii - Siiqqee - Arfii</emph>fili"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3149488\n"
-"571\n"
+"00040500.xhp\n"
+"par_id3154749\n"
+"17\n"
"help.text"
-msgid "Choose <emph>Edit - Changes - Accept or Reject - List</emph> tab. Click an entry in the list and open the context menu. Choose <emph>Edit Comment</emph>"
-msgstr "Cancala <emph>Guulaalii - Fudhu yookin Gati - Tarree</emph> Fili. Guulaalii Tarree keessati Cuqaasitii baafata haalqaraa bani. <emph>Guulaallii Yaada filadhu</emph>"
+msgid "Choose <emph>Format - Cell - Font</emph> tab (spreadsheets)"
+msgstr "Cancala(wardiilee)<emph>Dhangii - Mandee - Bocquu</emph> fili"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3156297\n"
-"49\n"
+"00040500.xhp\n"
+"par_id3156306\n"
+"199\n"
"help.text"
-msgid "Choose <emph>Edit - Find & Replace</emph>"
-msgstr "<emph>Guulaalii - Baarbaadi</emph> akkasumaas Bakka Buusi Fili"
+msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> button (spreadsheets)"
+msgstr "Baafata qabduu(wardiilee) <emph>Dhangii - Fuula - Irraantoo/Jalaantoo</emph> - <emph>Guulaali</emph>"
-#: 00000402.xhp
-#, fuzzy
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3154503\n"
-"569\n"
+"00040500.xhp\n"
+"par_id3155829\n"
+"21\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+H"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z"
+msgid "Choose <emph>Format - Character - Font Effects</emph> tab"
+msgstr "<emph>Cancala Dhangii - Arfii -Galteewwan - Bocquu</emph>fili"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3155083\n"
-"456\n"
+"00040500.xhp\n"
+"par_id3149819\n"
+"23\n"
"help.text"
-msgid "On Standard bar, click"
-msgstr "Kabala Durtiirra,"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Font Effects</emph> tab"
+msgstr "<emph>Dhangii - Halatoota fi Dhangeessuu</emph> fili - baafata halqara galfataa banitii cancala <emph>Fooyyeessi/Haaraa - Galteewwan Bocquu</emph> fili"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3150020\n"
+"00040500.xhp\n"
+"par_id3159176\n"
+"200\n"
"help.text"
-msgid "<image id=\"img_id3149121\" src=\"cmd/sc_recsearch.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149121\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149121\" src=\"cmd/sc_recsearch.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149121\">Sajoo</alt></image>"
+msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> button (spreadsheets)"
+msgstr "Baafata qabduu(wardiilee) <emph>Dhangii - Fuula - Irraantoo/Jalaantoo</emph> - <emph>Guulaali</emph>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3144748\n"
-"50\n"
+"00040500.xhp\n"
+"par_id3153541\n"
+"181\n"
"help.text"
-msgid "Find & Replace"
-msgstr "Barbaadi fi Bakkabuusi"
+msgid "Choose <emph>Format - Character - Position</emph> tab"
+msgstr "<emph>Cancala Dhangii - Arfii - Iddoo</emph> fili"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3156357\n"
-"552\n"
+"00040500.xhp\n"
+"par_id3159256\n"
+"183\n"
"help.text"
-msgid "<variable id=\"suchenattribute\">Choose <emph>Edit - Find & Replace - Attributes</emph></variable>"
-msgstr "<variable id=\"suchenattribute\"><emph>Gulaali - Barbaadi fi Bakkabuusi - Amaloota</emph> Fili</variable>"
+msgid "Choose <emph>Format - Styles and Formatting - </emph>open context menu of an entry and click <emph>Modify/New - Alignment</emph> tab"
+msgstr "<emph>Dhangii - Halatootaa fi Dhangeessuu - </emph>baafata halqaraa galfata banitii Cancala fili tii, <emph>Fooyyeessi/Haaraa - Hiriira</emph> cuqaasi"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3153840\n"
-"553\n"
+"00040500.xhp\n"
+"par_id3151385\n"
+"201\n"
"help.text"
-msgid "<variable id=\"suchenformat\">Choose <emph>Edit - Find & Replace - Format</emph> button </variable>"
-msgstr "<variable id=\"suchenformat\">Qabduu <emph>Guulaalii - Barbaadi akkasumaas Bakkabuusi - Dhangii</emph> Fili </variable>"
+msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> button (spreadsheets)"
+msgstr "Baafata qabduu(wardiilee) <emph>Dhangii - Fuula - Irraantoo/Jalaantoo</emph> - <emph>Guulaali</emph>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3146971\n"
-"554\n"
+"00040500.xhp\n"
+"par_id3148550\n"
+"186\n"
"help.text"
-msgid "Choose <emph>Edit - Find & Replace - Similarity search</emph> check box and <emph>...</emph> button."
-msgstr "<emph>Guulaalii - Barbaadi fi Bakkabuusi -Sanduuqa filannoo wafakkeenya barbaadi</emph> fi<emph>... qabduu</emph> fili."
+msgid "Choose <emph>Format - Character - Asian Layout</emph> tab"
+msgstr "<emph>Cancala Dhangii - Arfii - Teessuuma kan Eshiyaa</emph> fili"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3153709\n"
-"572\n"
+"00040500.xhp\n"
+"par_id3152811\n"
+"188\n"
"help.text"
-msgid "On the <emph>Table Data</emph> Bar, click <emph>Find</emph> icon - <emph>Similarity search</emph> check box - <emph>...</emph> button (database table view)"
-msgstr "Kabala <emph>Gabatee Deetaarraa</emph>, sajoo <emph>Barbaadi</emph> - sanduuqa <emph>Filannoo walfakeenya barbaadi</emph><emph>...</emph> qabaduu(mui'annoo gabatee kuusaa detaa) cuqaasi"
+msgid "Choose <emph>Format - Styles and Formatting - </emph>open context menu of an entry and click <emph>Modify/New - Asian Layout</emph> tab"
+msgstr "<emph>Dhangii - Halatootaa fi Dhaangeessuu</emph> fili - baafata halqaraa galfataa banitii Cancala<emph>Fooyyeessi/Haaraa - Teessuuma kan Eshiyaa</emph> fili"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3150749\n"
-"573\n"
+"00040500.xhp\n"
+"par_id3153524\n"
+"190\n"
"help.text"
-msgid "On <emph>Form Design</emph> Bar, click <emph>Record Search</emph> - <emph>Similarity search</emph> check box - <emph>...</emph> button (form view)"
-msgstr "Kabala <emph>Unka Saxaxarraa</emph><emph>Kuusaa Barbaadi</emph> - <emph>Sanduuqa filannoo walfakeenya barbaadi</emph><emph>...</emph> qabduu(Mul'annoo unkaa) cuqaasi"
+msgid "Choose <emph>Format - Paragraph - Asian Typography</emph> tab (not in HTML)"
+msgstr "Cancala (HTML keessaa hin taanee)<emph> Dhangii - Keewwata - Topografii</emph> kan Eshiyaa fili"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3152960\n"
-"534\n"
+"00040500.xhp\n"
+"par_id3154366\n"
+"191\n"
"help.text"
-msgid "Choose <emph>View - Navigator</emph>"
-msgstr "<emph>Guulaali - Naanna'aa</emph> fili"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cell - Asian Typography</emph> tab </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Cancala <emph>Dhangii - Man'ee - Topograafii kan Eshiyaa</emph> fili </caseinline></switchinline>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3163824\n"
-"535\n"
+"00040500.xhp\n"
+"par_id3148742\n"
+"193\n"
"help.text"
-msgid "On <emph>Standard</emph> Bar, click"
-msgstr "Kabala <emph>Durtti</emph> irraa,"
+msgid "Choose <emph>Format - Styles and Formatting - </emph>open context menu of an entry and click <emph>Modify/New - Asian Typography</emph> tab"
+msgstr "<emph>Dhangii - Halatoota fi Dhangeessuu fili - </emph> baafata halqara galfata banitti cancala <emph>Fooyyeessi/Haaraa - Topograafii Eshiyaa</emph> fili"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3159183\n"
+"00040500.xhp\n"
+"par_id3148922\n"
+"26\n"
"help.text"
-msgid "<image id=\"img_id3154508\" src=\"cmd/sc_navigator.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154508\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154508\" src=\"cmd/sc_navigator.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154508\">Sajoo</alt></image>"
+msgid "Choose <emph>Format - Character - Hyperlink</emph> tab"
+msgstr "<emph>Cancala Dhangii - Arfii - Geessituu</emph>fili"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3147359\n"
-"536\n"
+"00040500.xhp\n"
+"par_id3149169\n"
+"29\n"
"help.text"
-msgid "Navigator On/Off"
-msgstr "Naanna'aa bani/cufi"
+msgid "Choose <emph>Format - Paragraph</emph>"
+msgstr "<emph>Dhangii - Keewwata</emph> fili"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3147338\n"
-"576\n"
+"00040500.xhp\n"
+"par_id3151381\n"
+"30\n"
"help.text"
-msgid "<variable id=\"litdat\">Choose <emph>Tools - Bibliography Database</emph></variable>"
-msgstr "<variable id=\"litdat\"><emph>Meeshaalee - Wabi Kuusaa Deetaa</emph>Fili</variable>"
+msgid "On <emph>Text Formatting</emph> bar (with cursor in object), click"
+msgstr "<emph>Barruu Dhaangeessuu</emph> kabala irratti (qaree wantaa waliin)"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3149281\n"
-"538\n"
+"00040500.xhp\n"
+"par_id3155995\n"
"help.text"
-msgid "<variable id=\"link\">Choose <emph>Edit - Links</emph></variable>"
-msgstr "<variable id=\"link\"><emph>Guulaalii - Geessituuwwan</emph>Fili</variable>"
+msgid "<image id=\"img_id3150495\" src=\"cmd/sc_paragraphdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150495\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150495\" src=\"cmd/sc_paragraphdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150495\">Sajoo</alt></image>"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3159339\n"
-"551\n"
+"00040500.xhp\n"
+"par_id3147299\n"
+"31\n"
"help.text"
-msgid "<variable id=\"linkae\">Choose <emph>Edit - Links - Modify Link</emph> (DDE links only) </variable>"
-msgstr "<variable id=\"linkae\"><emph>Guulaalii - Geessituuwwan - Geessituu Fooyyeessi</emph> (Geessituuwwan DDE) Fili</variable>"
+msgid "Paragraph"
+msgstr "Keewwata"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3148927\n"
-"543\n"
+"00040500.xhp\n"
+"par_id3147289\n"
+"4\n"
"help.text"
-msgid "Select a frame, then choose <emph>Edit - Object - Properties</emph>"
-msgstr "Goodayyaa fili kan booda <emph>Guulaalii Wanta - Amaloota</emph>Fili"
+msgid "Choose <emph>Format - Paragraph - Alignment</emph> tab"
+msgstr "<emph>Cancala Dhangii - Keewwata - Hiriira</emph>fili"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3156315\n"
-"577\n"
+"00040500.xhp\n"
+"par_id3147352\n"
+"179\n"
"help.text"
-msgid "Open context menu of selected frame - choose <emph>Properties</emph>"
-msgstr "Baafata halqaraa gooddayyaa filatamee bani - <emph>Amaloota</emph>cuqaasi"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Alignment</emph> tab"
+msgstr "<emph>Dhangii - Halatootaa fi Dhangeessuu</emph> fili - baafata halqaraa galfata banitii Cancala<emph>Fooyyeessi/Haaraa - Hirira</emph>fili"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3151251\n"
-"545\n"
+"00040500.xhp\n"
+"par_id3154640\n"
+"32\n"
"help.text"
-msgid "<variable id=\"plugin\">Choose <emph>Edit - Plug-in</emph></variable>"
-msgstr "<variable id=\"plugin\"><emph>Guulaalii - Itti-suuqi</emph>fili</variable>"
+msgid "Choose <emph>Format - Paragraph - Indents & Spacing</emph> tab"
+msgstr "Cancala <emph>Dhangii - Keewwata - Galuumsootaa fi Addaan Fageenya</emph> fili"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3156091\n"
-"546\n"
+"00040500.xhp\n"
+"par_id3152463\n"
+"34\n"
"help.text"
-msgid "<variable id=\"imagemap\">Choose <emph>Edit - ImageMap</emph> (also in context menu of selected object) </variable>"
-msgstr "<variable id=\"imagemap\"><emph>Guulaalii - MaapiCalaqqee </emph> (baafata halqaraa wanta filatamee sana keessaalee) </variable>fili"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Indents & Spacing</emph> tab"
+msgstr "<emph>Dhangii - Halatootaa fi Dhangeessuu</emph> fili - baafata halqaraa galfata banitii Cancala<emph>Fooyyeessi/Haaraa - Galuumsa - Addaan Fageenya</emph> fili"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3155936\n"
-"550\n"
+"00040500.xhp\n"
+"par_id3154319\n"
+"39\n"
"help.text"
-msgid "<variable id=\"imapeigbea\">Choose <emph>Edit - ImageMap</emph>, then select a section of the ImageMap and click <emph>Properties - Description</emph></variable>"
-msgstr "<variable id=\"imapeigbea\"><emph>Guulaalii - MaapiCalaqqee</emph>, Fili itti ansuun cutaatokkitti mapiicalaqqee fili kana booda <emph>Amaloota - Ibsa</emph> cuqaasi</variable>"
+msgid "Choose <emph>Format - Paragraph - Tabs</emph> tab"
+msgstr "Cancala <emph>Dhangii - Keewwata - Cancalota</emph>fili"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3149259\n"
-"547\n"
+"00040500.xhp\n"
+"par_id3154833\n"
+"41\n"
"help.text"
-msgid "<variable id=\"edit1\">Choose <emph>Edit - Object</emph></variable>"
-msgstr "<variable id=\"edit1\">Choose <emph>Guulaalii - Wanta</emph>Fili</variable>"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Tabs</emph> tab"
+msgstr "Cancala <emph>Dhangii - Halatootaa fi Dhanguu </emph> fili - baafata halqara galfata banitii Cancala<emph>Fooyyeessi/Haaraa - Cancaloota</emph>fili"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3154966\n"
-"548\n"
+"00040500.xhp\n"
+"par_id3159155\n"
+"43\n"
"help.text"
-msgid "<variable id=\"edit2\">Choose <emph>Edit - Object - Edit</emph>, also in the context menu of selected object </variable>"
-msgstr "<variable id=\"edit2\"> <emph>Guulaalii - Guulaalii - Guulaalii</emph> Fili, baafata haalaqaraa wanta filatamee san keessaalee fili</variable>"
+msgid "Double-click the ruler"
+msgstr "Sarartuu Lama Cuqaasi"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3149565\n"
-"549\n"
+"00040500.xhp\n"
+"par_idN109E2\n"
"help.text"
-msgid "<variable id=\"edit3\">Choose <emph>Edit - Object - Open</emph></variable>"
-msgstr "<variable id=\"edit3\">Choose <emph>Guulaali - Wanta - Bani</emph></variable>"
+msgid "(all options only in Writer or Calc)"
+msgstr "(dirqalli martuu barreessaa yookan Calc keessatti)"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"tit\n"
+"00040500.xhp\n"
+"par_id3156105\n"
+"44\n"
"help.text"
-msgid "Glossary of Internet Terms"
-msgstr "Jibsoo Jechoota Intarneetii"
+msgid "Choose <emph>Format - Paragraph - Borders</emph> tab"
+msgstr "Cancala <emph>Dhangii - Keewwata -Handaaraoota</emph> fili"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"bm_id3150702\n"
+"00040500.xhp\n"
+"par_id3154149\n"
+"45\n"
"help.text"
-msgid "<bookmark_value>Internet glossary</bookmark_value><bookmark_value>common terms;Internet glossary</bookmark_value><bookmark_value>glossaries;Internet terms</bookmark_value><bookmark_value>terminology;Internet glossary</bookmark_value>"
-msgstr "<bookmark_value>Jibsoo intarneetii</bookmark_value><bookmark_value>jechoota waliinii;Jibsoo intarneetii</bookmark_value><bookmark_value>jibsoota;jechoota intarneetii</bookmark_value><bookmark_value>jechoota;Jibsoo intarneetii</bookmark_value>"
+msgid "Choose <emph>Format - Picture - Borders</emph> tab"
+msgstr "Cancala <emph>Dhangii - Fakkaatti - Handaara</emph> fili"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3150702\n"
-"1\n"
+"00040500.xhp\n"
+"par_id3163822\n"
+"48\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000002.xhp\" name=\"Glossary of Internet Terms\">Glossary of Internet Terms</link>"
-msgstr "<link href=\"text/shared/00/00000002.xhp\" name=\"Glossary of Internet Terms\">Jibsoo Jechoota Intarneetii</link>"
+msgid "Choose <emph>Format - Frame/Object - Borders</emph> tab"
+msgstr "Caancala <emph>Dhangii - Gooddayyaa/Wantaa - Handaaraalee</emph> fili"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3155577\n"
-"2\n"
+"00040500.xhp\n"
+"par_id3150048\n"
+"51\n"
"help.text"
-msgid "If you are a newcomer to the Internet, you will be confronted with unfamiliar terms: browser, bookmark, e-mail, homepage, search engine, and many others. To make your first steps easier, this glossary explains some of the more important terminology you may find in the Internet, intranet, mail and news."
-msgstr "Yoo ati Intarneetiidhaaf haaraa taate, jechootni hin beekne si mudatu: sakata'aa, toorbarruu, ergaa-e, manata saphaphuu, mala barbaadaa, fi kan biroos. Ejattoo kee jalqabaa salphisuuf, jibsoon kun jechoota baay'ee barbaachisan gariin kan intarneetii, intraaneetii, ergaa fi oduuwwan ibsa."
+msgid "Choose <emph>Format - Page - Borders</emph> tab"
+msgstr "Cancala <emph>Dhangii - Fuula - Handaara</emph> fili"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3153146\n"
-"36\n"
+"00040500.xhp\n"
+"par_id3149911\n"
+"53\n"
"help.text"
-msgid "Frames"
-msgstr "Goodayyaalee"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Borders</emph> tab"
+msgstr "<emph>Dhangii - Halatootaa fi Dhangeessuu</emph> fili - baafata halqaraa galfata banitii Cancala<emph>Fooyyeessi/Haaraa - Handaaroota</emph>fili"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3157909\n"
-"37\n"
+"00040500.xhp\n"
+"par_id3150094\n"
+"54\n"
"help.text"
-msgid "Frames are useful for designing the layout of <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> pages. $[officename] uses floating frames into which you can place objects such as graphics, movie files and sound. The context menu of a frame shows the options for restoring or editing frame contents. Some of these commands are also listed in <emph>Edit - Object</emph> when the frame is selected."
-msgstr "sGodayyaawwan teessoo <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> saxaxuuf fayyadu. $[officename] godayyaawwan bololi'aa kan ati wantoota akka saxaatoo, faayiloota fiilmii fi sagalee keessa keessu fayyadama. Baafatni halqaraa godayyaa dirqaalee haroomsuu yookaan gulaaluu godayyaa baafataa mul'isa. Yeroo godayyan filamu gariin ajajootaa <emph>Gulaaluu - Wanta</emph> keessatti tarrreeffamu."
+msgid "Choose <emph>Format - Page - Header - More</emph> button"
+msgstr "Qabaduu <emph>Dhangii - Fuula - Irraantoo - Dabala</emph> fili"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3147077\n"
-"43\n"
+"00040500.xhp\n"
+"par_id3154501\n"
+"55\n"
"help.text"
-msgid "FTP"
-msgstr "FTP"
+msgid "Choose <emph>Format - Page - Footer - More</emph> button"
+msgstr "Qabaduu <emph>Dhangii - Fuula - Jalaantoo - Dabala</emph> fili"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3147335\n"
-"44\n"
+"00040500.xhp\n"
+"par_id3148455\n"
+"56\n"
"help.text"
-msgid "FTP stands for File Transfer Protocol and is the standard transfer protocol for files in the Internet. An FTP server is a program on a computer connected to the Internet which stores files to be transmitted with the aid of FTP. While FTP is responsible for transmitting and downloading Internet files, <link href=\"text/shared/00/00000002.xhp#http\" name=\"HTTP\">HTTP</link> (Hypertext Transfer Protocol) provides the connection setup and data transfer between WWW servers and clients."
-msgstr "FTPiin gabaajee Aaloo Dabarsa Faayilii bakka bu'udha akkasumas faayiloota Intarneetii keessa jiraniif dabarsa aaloo durtiiti. Kaadimaan FTP sagantaa koompitara Intarneetiitti wal qabatee kan faayiloota gargaarsa FTP dhaan tamsa'an kuusu dha. Yeroo FTPiin faayiloota Intarneetii tamsaasuu fi gad naquuf itti gaafatamummaa qabaatu, <link href=\"text/shared/00/00000002.xhp#http\" name=\"HTTP\">HTTP</link> (Aaloo Dabarsaa Hypertext)iin qindaa'ina waliindhaa fi dabarsa deetaa kaadimaa fi maamiloota WWW jidduu jiru kenna."
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Borders</emph> tab </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Cancala <emph>Dhangii - Man'eewwan - Handaara</emph> fili </caseinline></switchinline>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"bm_id3145609\n"
+"00040500.xhp\n"
+"par_id3155915\n"
+"177\n"
"help.text"
-msgid "<bookmark_value>HTML; definition</bookmark_value>"
-msgstr "<bookmark_value>HTML; hiika</bookmark_value>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Paragraph</emph> - <emph>Border</emph> tab -<emph> Spacing to contents</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Baafata <emph>Dhangii - Keewwata</emph> - Cancala <emph>Handaara</emph> - <emph>Addaan fageenya qabeentootaa</emph></caseinline></switchinline>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3145609\n"
-"56\n"
+"00040500.xhp\n"
+"par_id3159130\n"
+"178\n"
"help.text"
-msgid "HTML"
-msgstr "HTML"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Menu<emph> Format - Page - Border - Spacing to contents</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Baafata <emph> Dhangii Fuula - Handaara -Qabeentoota</emph></caseinline></switchinline>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3161459\n"
+"00040500.xhp\n"
+"par_id3155853\n"
"57\n"
"help.text"
-msgid "HTML (Hypertext Markup Language) is a document code language, which is used as the file format for WWW documents. It is derived from <link href=\"text/shared/00/00000002.xhp#sgml\" name=\"SGML\">SGML</link> and integrates text, graphics, videos and sound."
-msgstr "HTML (Hypertext Markup Language)iin afaan lakkaddaa galmeeti, akka dhangii faayilii galmeewwan WWW tti fayyada. <link href=\"text/shared/00/00000002.xhp#sgml\" name=\"SGML\">SGML</link> irraa fudhatame fi barruu saxaatoo, vidiiyoo fi sagalee walitti qaba."
+msgid "Choose <emph>Format - Paragraph - Background</emph> tab"
+msgstr "<emph>Cancala Dhangii - Keewwata - Duubbee</emph>fili"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3154346\n"
+"00040500.xhp\n"
+"par_id3147330\n"
"58\n"
"help.text"
-msgid "If you want to type HTML commands directly, for example when doing exercises from one of the many available HTML books, remember that HTML pages are pure text files. Save your document under the document type <emph>Text </emph>and give it the file name extension .HTML. Be sure there are no umlauts or other special characters of the extended character set. If you want to re-open this file in $[officename] and edit the HTML code, you must load it with the file type <emph>Text</emph> and not with the file type <emph>Web pages</emph>."
-msgstr "Yoo ajajoota HTMLii kallattiin barreessuu barbaadde, fakkeenyaaf yeroo kitaaboolee HTML hedduu jiran keessaa tokkorratti yeroo dalagdu, akka fuulootni HTMLii faayiloota barruu qulqulluu ta'u isaanii yaadadhu. Galmee kee gosa galmee <emph>Barruu</emph>jalatti ol kaa'i itti aansuun dheertoo maqaa faayilii HTML kenniifii. Arfiiwwan adayyaa arfii dheertoo akka hin jirre mirkaneeffadhu. Faayilii kana $[officename] keessatti irra deebitee banuu fi lakaddaa HTMLii gulaaluu barbaadde, gosa faayilii <emph>Barruu</emph> waliin banuu qabda garuu gosa faayilii <emph>Fuula saphaphuu</emph> waliin banuu hin qabdu."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3153960\n"
-"244\n"
-"help.text"
-msgid "There are several references on the Internet providing an introduction to the HTML language."
-msgstr "Intarneetii irra wabiiwwan hedduun seensa afaan HTML kennan jiru."
+msgid "Choose <emph>Format - Character - Background</emph> tab"
+msgstr "<emph>Cancala Dhangii - Arfii - Duubbee</emph>fili"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3147423\n"
+"00040500.xhp\n"
+"par_id3149486\n"
"59\n"
"help.text"
-msgid "HTTP"
-msgstr "HTTP"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3153379\n"
-"60\n"
-"help.text"
-msgid "The Hypertext Transfer Protocol is a record of transmission of WWW documents between WWW servers (hosts) and browsers (clients)."
-msgstr "Dabarsi Aaloo Hypertext kuusaa tamsaasa galmeewwan WWW kaadimaa (affeertoota) fi iyyaafatoota (maamiloota) WWW jidduuti."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3149290\n"
-"help.text"
-msgid "<bookmark_value>hyperlinks; definition</bookmark_value>"
-msgstr "<bookmark_value>geessitoota; hiika</bookmark_value>"
+msgid "Choose <emph>Format - Picture - Background</emph> tab"
+msgstr "Cancala <emph>Dhangii - Fakkaatti - Duubbee</emph> fili"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3149290\n"
+"00040500.xhp\n"
+"par_id3150592\n"
"61\n"
"help.text"
-msgid "Hyperlink"
-msgstr "Geessituu"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3145420\n"
-"62\n"
-"help.text"
-msgid "Hyperlinks are cross-references, highlighted in text in various colors and activated by mouse-click. With the aid of hyperlinks, readers can jump to specific information within a document as well as to related information in other documents."
-msgstr "Geessitootni wabii qaxxaamuraati, halluuwwan adda addaatin shoolamu akkasumas cuqaasa hantuuteedhaan kakaafamu. Gargaarsa geessitootaa waliin, dubbiftootni galmee keessatti gara odeeffannoo barbaadamuutti akkasumas galmeewwan biroo keessatti oodeffannoo wal fakkaatutti darbuu danda'u."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3156281\n"
-"63\n"
-"help.text"
-msgid "In $[officename] you can assign hyperlinks to text as well as to graphics and text frames (see the Hyperlink Dialog icon on the Standard bar)."
-msgstr "$[officename] keessatti geessituu barruutti akkasumas saxaatootti fi godayyaa barruutti ramaduu dandeessa (Qaaqa Geessituu kabala Durtii irratti ilaali)."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3152805\n"
-"help.text"
-msgid "<bookmark_value>ImageMap; definition</bookmark_value>"
-msgstr "<bookmark_value>Barruyyaa Fakkaattii; hiika</bookmark_value>"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3152805\n"
-"64\n"
-"help.text"
-msgid "ImageMap"
-msgstr "Barruyyaa Fakkaattii"
+msgid "Choose <emph>Format - Frame/Object - Background</emph> tab"
+msgstr "Caancala <emph>Dhangii - Gooddayyaa - Duubbee</emph> fili"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3154685\n"
+"00040500.xhp\n"
+"par_id3151321\n"
"65\n"
"help.text"
-msgid "An ImageMap is a reference-sensitive graphic or text frame. You can click on defined areas of the graphic or text frame to go to a target (<link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>), which is linked with the area. The reference areas, along with the linked URLs and corresponding text displayed when resting the mouse pointer on these areas, are defined in the <link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap Editor\">ImageMap Editor</link>."
-msgstr "Barruyyaa Fakkaattiin saxaatoo ykn godayyaa barruu wabii irratti hundaa'u dha. Naannoowwan saxaatoo qindaa'an ykn gara galteetti deemuuf godayyaa barruu (<link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>) naannoo waliin koronyate cuqaasuu dandeessa. Naannoowwan wabii URLootaa koronyatan fi barruuwwan walfakkaatan irratti yeroo hantuutee irra qubachhiiftu waliin argisiifaman, <link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap Editor\">Gulaalaa Barruyyaa Fakkaattii</link> qindaa'u."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3153178\n"
-"66\n"
-"help.text"
-msgid "There are two different types of ImageMaps. A Client Side ImageMap is evaluated on the client computer, which loaded the graphic from the Internet, while a Server Side ImageMap is evaluated on the server computer which provides the <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> page on the Internet. In server evaluation, clicking an ImageMap sends the relative coordinates of the cursor within the image to the server, and a dedicated program on the server responds. In the client evaluation, clicking a defined hotspot of the ImageMap activates the URL, as if it were a normal text link. The URL appears below the mouse pointer when passing across the ImageMap."
-msgstr "Gosootni Barruyyaa Fakkaattii lamatu jiru. BarruyyaanFakkaattii moggaa maamilaa kompitara maamilaa, kan saxaatoo Intarneetii irraa fe'atu, irratti madaalama garuu BarruyyaanFakkaattii moggaa kaadimaan jiru kompitara kaadimaa <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> fuula Intarneetii irratti kennurratti madaalama. Madaallii kaadimaa keessatti, barruyyaa fakkaattii cuqaasuun sadhaatoowwan walgitaa qaree fakkaattii keessa jiran gara kaadimaatti erga akkasumas sagantaan qophaa'e deebii kenna. Madaallii maamilaa keessatti, bakka ho'aa barruuyyaa fakkaattii qindeeffame cuqaasuun URLii akka geessaa barruu baratamootti kakaasa. Yeroo Barruuyyaa Fakkaattii keessaan darbu URLiin gajjalaa qaree hantuuteetti mul'ata."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3150740\n"
-"67\n"
-"help.text"
-msgid "As ImageMaps can be used in different ways, they can be stored in different formats."
-msgstr "Akkuma barruyyootni fakkaattii karaa hedduun fayyadan, karaa adda addaatin kuufamuu danda'u."
+msgid "Choose <emph>Format - Page - Background</emph> tab"
+msgstr "Cancala <emph>Dhangii - Fuula - Duubbee</emph> fili"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3146874\n"
+"00040500.xhp\n"
+"par_id3154510\n"
"68\n"
"help.text"
-msgid "ImageMap Formats"
-msgstr "Dhangiilee Barruyyaa Fakkaattii"
+msgid "Choose <emph>Format - Page - Header - More</emph> button"
+msgstr "Qabaduu <emph>Dhangii - Fuula - Irraantoo - Dabala</emph> fili"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3145153\n"
+"00040500.xhp\n"
+"par_id3159110\n"
"69\n"
"help.text"
-msgid "ImageMaps are basically divided between those that are analyzed on the server (i. e. your Internet provider) and those analyzed on the web browser of the reader's computer."
-msgstr "BarruyyaanFakkaattii kaadimaa irratti kan madaalaman (dhiyeessaa Intarneetii kee) fi kan iyya'aa saphaphuu koompitara dubbisaa jidduutti hiramu."
+msgid "Choose <emph>Format - Page - Footer - More</emph> button"
+msgstr "Qabaduu <emph>Dhangii - Fuula - Jalaantoo - Dabala</emph> fili"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"bm_id3152881\n"
+"00040500.xhp\n"
+"par_id3153532\n"
+"67\n"
"help.text"
-msgid "<bookmark_value>Server Side ImageMap</bookmark_value>"
-msgstr "<bookmark_value>Barruyyaa Fakkaattii Moggaa Kaadimaan</bookmark_value>"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Background</emph> tab"
+msgstr "<emph>Dhangii - Halatootaa fi Dhangeessuu</emph> fili - baafata galfata halqaraa banitii Cancala <emph>Fooyyeessi/Haaraa - Duubbee</emph> fili"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3152881\n"
-"70\n"
+"00040500.xhp\n"
+"par_id3144747\n"
+"174\n"
"help.text"
-msgid "Server Side ImageMaps"
-msgstr "BarruyyootaFakkaattii Moggaa Kaadimaa"
+msgid "Choose <emph>Insert/Edit - Section - Background</emph> tab"
+msgstr "Cancala <emph>Saagi/Gulaali - Kutaa -Duubbee</emph> fili"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3153057\n"
+"00040500.xhp\n"
+"par_id3146900\n"
"71\n"
"help.text"
-msgid "Server Side ImageMaps appear for the reader as a picture or frame on the page. Click on the ImageMap with the mouse, and the coordinates of the relative position are sent to the server. Aided by an extra program, the server then determines the next step to take. There are several incompatible methods to define this process, the two most common being:"
-msgstr "BarruyyaanFakkaattii gama kaadimaa dubbisaaf fuulicha irratti akka fakkii yookaan godayyaatti mul'atu. Barruyyaa Fakkaattii irratti hantuuteedhaan cuqaasi, walgitoonni qubannoo sadhaatawaa gara kaadimaatti ergamu. Sagantaa dabalataan gargaaramuun, kaadimaan ejattoo itti aanee fudhatu murteessa. Malootni wal hin gitne hedduun hojii kana qindeessuuf gargaaru, kannneen keessaa malootni beekamoon lamaan:"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Cancala <emph>Dhangii - Madheewwan - Duubbee</emph> fili </caseinline></switchinline>"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3147502\n"
+"00040500.xhp\n"
+"par_id3146791\n"
"72\n"
"help.text"
-msgid "W3C (CERN) HTTP Server (Format type: MAP - CERN)"
-msgstr "Kaadimaa W3C (CERN) HTTP (Gosa Dhangii: MAP - CERN)"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3154011\n"
-"73\n"
-"help.text"
-msgid "NCSA HTTP Server (Format type: MAP - NCSA)"
-msgstr "Kaadimaa NCSA HTTP (Gosa dhangii: MAP - NCSA)"
+msgid "Choose <emph>Format - Page - Organizer</emph> tab"
+msgstr "Cancala <emph>Dhangii - Fuula - Gurmeessaa</emph> fili"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3149483\n"
+"00040500.xhp\n"
+"par_id3154482\n"
"74\n"
"help.text"
-msgid "$[officename] creates ImageMaps for both methods. Select the format from the <emph>File type </emph>list in the <emph>Save As </emph>dialog in the <emph>ImageMap Editor</emph>. Separate Map Files are created which you must upload to the server. You will need to ask your provider or network administrator which type of ImageMaps are supported by the server and how to access the evaluation program."
-msgstr "$[officename]iin maloota lamaaniif Barruyyaa Fakkaattii uuma. <emph>Gosa faayilii </emph>tarree <emph>Akka olkaa'i </emph>qaaqa <emph>Gulaalaa Barruyyaa Fakkaattii</emph> keessaa dhangii filadhu. Faayilootni barruuyyaa qoftii kan ati gara kaadimaatti olfe'uu qabdu uumamu. Dhiyeessaa yookaan bulchaa cimdaa kee gosa barruyyaa fakkaattii kaadimaan akka deeggaramanii fi akkaataa itti sagantaa madaallii bira gahuu dandeessu gaafachuun sirraa eegama."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3152418\n"
-"help.text"
-msgid "<bookmark_value>Client Side ImageMap</bookmark_value>"
-msgstr "<bookmark_value>Barruyyaa Fakkaattii Moggaa Kaadimaan</bookmark_value>"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Organizer</emph> tab"
+msgstr "<emph>Dhangii - Halatootaa fi Dhangeessuu</emph> fili - baafata galfata halqaraa banitii Cancala<emph>Fooyyeessi/Haaraa - Gurmeessaa</emph> fili"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3152418\n"
+"00040500.xhp\n"
+"par_id3153357\n"
"75\n"
"help.text"
-msgid "Client Side ImageMap"
-msgstr "Barruuyyaa Fakkaattii Gama Maamilaa"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3151290\n"
-"76\n"
-"help.text"
-msgid "The area of the picture or frame where the reader can click is indicated by the appearance of the linked <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> when the mouse passes over the area. The ImageMap is stored in a layer below the picture and contains information about the referenced regions. The only disadvantage of Client Side ImageMaps is that older Web browsers cannot read them; a disadvantage that will, however, resolve itself in time."
-msgstr "Naannoon fakkaattii yookaan godayyaa iddoo dubbisaan irratti cuqaasuu danda'u yeroo hantuuteen naannicha irra darbu mul'annaa koronyateen <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> agarsiifama. Barruyyi Fakkaattii baqaana gadii fakkaattii jalatti kuufama fi odeffannoo waa'ee bakkeewwan murtaa'aa wabeeffamanii qabata. Miidhaan qoftii barruyyaa fakkaattii moggaa kaadimaa iyya'ootni saphaaphuu mofaa isa dubbisuu hin danda'an; haata'u malee, miidhaan kun ofumaan yeroon hiikama."
+msgid "Choose <emph>Format - Page - Page</emph> tab"
+msgstr "Cancala <emph>Dhangii - Fuula - Fuula</emph> fili"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3149664\n"
+"00040500.xhp\n"
+"par_id3154362\n"
"77\n"
"help.text"
-msgid "When saving the ImageMap, select the file type <emph>SIP - StarView ImageMap</emph>. This saves the ImageMap directly in a format which can be applied to every active picture or frame in your document. However, if you just want to use the ImageMap on the current picture or text frame, you do not have to save it in any special format. After defining the regions, simply click <emph>Apply</emph>. Nothing more is necessary. Client Side ImageMaps saved in <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> format are inserted directly into the page in HTML code."
-msgstr "Barruyyi Fakkaattii yeroo ol kaa'amu, gosa faayilii <emph>SIP - Barruyyaa Fakkaattii mul'annoo gaarii</emph> filadhu. Kun Barruyyaa Fakkaattii kallattiin dhangii fakkaattiiwwan yookaan godayyaa galmee kee keessatti kaka'anii jiran irratti fayyadame ol kaa'a. Haa ta'u malee, yoo fakkaattii yookaan godayyaa barruu irratti Barruyyaa Fakkaattii fayyadamuu barbaadde, dhangii adda ta'een olkaa'uun sirraa hin eegamu. Erga bakkeewwan murtaa'aa qindeessiteen booda, salphaadhumatti <emph>Fayyadami</emph> cuqaasi. Kanaan olitti wanti barbaachisu hin jiru. Barruyyi Fakkaattii moggaa maamilaa dhangii<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> dhaan kuufame kallattiin gara lakkaddaa HTMLtti saagama."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3159125\n"
-"help.text"
-msgid "<bookmark_value>Java; definition</bookmark_value>"
-msgstr "<bookmark_value>Jaavaa; hiika</bookmark_value>"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3159125\n"
-"92\n"
-"help.text"
-msgid "Java"
-msgstr "Jaavaa"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3153188\n"
-"93\n"
-"help.text"
-msgid "The Java programming language is a platform independent programming language that is especially suited for use in the Internet. Web pages and applications programmed with Java class files can be used on all modern operating systems. Programs using Java programming language are usually developed in a Java development environment and then compiled to a \"byte code\"."
-msgstr "Afaan saganteessa Jaavaa hujeffannoo ofdanda'aa afaan saganteessa Maaykiroosiyistamii Saan dagaage dha, Inc. (http://www.sun.com) innis Intarneetiif fayyadamuuf kan mijatedha. Fuulootni saphaphuu fi fayyadamaa faayiloota kutaa Jaavaatin saganteeffaman sirnoota dalagaa hamayyaa mara irratti fayyadu. Sagantaaleen afaan saganteessa Jaavaa fayyadaman yeroo hunda qeeyyaa dagaagsa Jaavaa keessatti dagaagu fi itti aansuun \"lakkaddaa baayitii\" keessatti rogeeffamu."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3159153\n"
-"help.text"
-msgid "<bookmark_value>plug-ins; definition</bookmark_value>"
-msgstr "<bookmark_value>itti-suuqamtoota; hiika</bookmark_value>"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3159153\n"
-"107\n"
-"help.text"
-msgid "Plug-In"
-msgstr "Itti Suuqii"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3154127\n"
-"109\n"
-"help.text"
-msgid "Extensions providing additional functionality in Web browsers are referred to as Plug-Ins."
-msgstr "Dheeratoonni iyya'aa saphaphuu keessatti dalageeffamuu dabalataa kennan itti-suuqamtoota jedhamu."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3147484\n"
-"108\n"
-"help.text"
-msgid "A Plug-In is a term used in various contexts:"
-msgstr "Itti Suuqiin halqarawwan hedduu keessatti fayyada:"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3168608\n"
-"172\n"
-"help.text"
-msgid "Plug-Ins in $[officename]"
-msgstr "Itti Suuqamtoota $[officename]keessaa"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3149910\n"
-"111\n"
-"help.text"
-msgid "You will notice in $[officename] that the <emph>Formatting</emph> Bar changes after certain operations. For example, if you insert a formula into your text document, you see icons for editing the formula, in fact the same icons you see in formula documents. In this sense, we refer to the formula as a plug-in within the text document."
-msgstr "$[officename] keessatti kaballi <emph>Dhangeessuu</emph> hojiwwan muraasa booda akka jijjiiramu yaadachuu qabda. Fakkeenyaaf, yoo foormulaa galmee barruu keetti saagade, foormulicha gulaaluuf sajoowwan agarta, haa ta'u malee sajoowwan walfakkaatan galmeewwan foormulaaa keessatti agarta. Haala kanaan, galmee barruu keessatti akka itti suuqiitti gara foormulichaatti wabeeffanna."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3148387\n"
-"177\n"
-"help.text"
-msgid "Using Plug-Ins to extend your programs"
-msgstr "Sagataawwan kee bal'isuuf Itti-Suuqamtootatti fayyadamuu"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3156737\n"
-"114\n"
-"help.text"
-msgid "Plug-ins, generally speaking, are software additions to particular applications which provide enhanced functionality. Often import and export filters for various file formats are stored as plug-ins in a plug-in directory."
-msgstr "Itti-Suuqamtootni, dubbii walii galaan, ida'amtoota mosajjii fayyadama murtaa'ee hojjatamtummaa guddate kennani dha. Gingilchootni alaaguu fi alerguu dhangiilee faayiloota hedduuf galeeloo itti suuqii keessatti akka itti suuqamtootaatti kuufamu."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3149958\n"
-"115\n"
-"help.text"
-msgid "Netscape web browser extensions produced by Netscape Communication Corporation are also called plug-ins. These are external programs mainly taken from the multimedia field and which communicate with the browser through standardized interfaces. These plug-ins can be linked to $[officename] documents."
-msgstr "Dheertootni iyya'aa saphaphuu Neetiskaappii Xindoomina Walqunnamtii Neetiskaappii keessatti oomishaman itti-suuqamtoota jedhamu. Kunniin sagantoota alaantoo naannoo sabqunnamtii baay'ee irraa fudhatamanii fi kan iyya'aa walqunnama waalteeffamaa waliin wal qunnamanidha. Itti suuqamtoonni kun galmeewwan $[officename]waliin koronyatamu danda'u."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3149420\n"
-"179\n"
-"help.text"
-msgid "Any Netscape plug-ins (32 bit) installed on your system are automatically recognized by $[officename]."
-msgstr "Neetiskaappiin Itti-suqamtoota (biitii 32) sirna kee irratti ijaaraman kamiyyuu [officename]dhaan ofumaan fudhatamu."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3145647\n"
-"127\n"
-"help.text"
-msgid "Proxy"
-msgstr "Walsimsiisaa"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3148455\n"
-"128\n"
-"help.text"
-msgid "A proxy is a computer in the network acting as a kind of clipboard for data transfer. Whenever you access the Internet from a company network and request a Web page that has already been read by a colleague, the proxy will be able to display the page much quicker, as long as it's still in the memory. All that has to be checked in this case is that the page stored in the proxy is the latest version. If this is the case, the page won't have to be downloaded from the much slower Internet but can be loaded directly from the proxy."
-msgstr "Walsimsiisaan kompitara cimdaa keessatti dabarsa deetaaf akka gabatee muraatti hojjeta. Yeroo cimdaa kubaaniyaa irraa Intarneetii bira gahuu barbaaddu akkasumas fuula saphaphuu nama biraati dubbifameeru gaafattu, hanga kuufannoo keessa jirutti walsimsiisichi saffisa baay'ee cimaa ta'een fuulicha agarsiisuu danda'uu qaba. Fuulli kuufame kun baay'ee foyya'aa ta'uunsaa mirkaneeffamuu qaba. Yoo kun sababa ta'e, fuulichi Intarneetii saffisni isaa baay'ee gad bu'aa ta'e irraa naqamuu hin qabu garuu walsimsiisaa irra kallattiidhaan fe'amuu danda'a."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3154729\n"
-"help.text"
-msgid "<bookmark_value>SGML; definition</bookmark_value>"
-msgstr "<bookmark_value>SGML; hiika</bookmark_value>"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3154729\n"
-"229\n"
-"help.text"
-msgid "SGML"
-msgstr "SGML"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3147330\n"
-"230\n"
-"help.text"
-msgid "SGML stands for \"Standard Generalized Markup Language\". SGML is based on the idea that documents have structural and other semantic elements that can be described without reference to how such elements should be displayed. The actual display of such a document may vary, depending on the output medium and style preferences. In structured texts, SGML not only defines structures (in the DTD = Document Type Definition) but also ensures they are consistently used."
-msgstr "SGMLiin \"Standard Generalized Markup Language\" dhaaf dhaabbata. SGMLiin yaada galmeewwan caasefamuu fi maalimoota maaljech qooqaa wabii malee maalimootni kun akkaataa itti mul'atan ibsa. Gidduugaleessa bahii fi haalata fedhii irratti hundaa'uun agarsiisni dhugaa galmee akkanaa adda addaa ta'uu danda'a. Barruwwan Caaseeffaman keessatti, SGMLiin caasaa qofa hin qindeessu (DTD = Qindeessa Gosa Galmee keessatti) garuu dabalataanis ittifufinsaan akka fayyadan mirkaneessa."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3148747\n"
-"231\n"
-"help.text"
-msgid "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> is a specialized application of SGML. This means that most Web browsers support only a limited range of SGML standards and that almost all SGML-enabled systems can produce attractive HTML pages."
-msgstr "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link>iin fayyadama adayyaa SGML ti. Kana jechuun iyya'ootni saphaphuu garri caalaan hangii durtiiwwan SGML murtaawaa qofa deeggaru akkasumas sirnootni SGML dandeessifaman xiqqoo irraa kan hafe hundi isaanii fuuloota SGMLii midhagaa ta'an oomishuu danda'u."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3153950\n"
-"help.text"
-msgid "<bookmark_value>search engines; definition</bookmark_value>"
-msgstr "<bookmark_value>maloota barbaadaa; hiika</bookmark_value>"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3153950\n"
-"138\n"
-"help.text"
-msgid "Search Engines"
-msgstr "Maloota Barbaadaa"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3157965\n"
-"139\n"
-"help.text"
-msgid "A search engine is a service in the Internet based on a software program used to explore a vast amount of information using key words."
-msgstr "Malli barbaadaa tajaajila Intarneetii mosajjii sagantaa irratti hundaa'ee jefuroota fayyadamuun odeeffannoon bal'aa itti aloolfamu dha."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3150751\n"
-"help.text"
-msgid "<bookmark_value>tags; definition</bookmark_value>"
-msgstr "<bookmark_value>iyyaatoota; hiika</bookmark_value>"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3150751\n"
-"141\n"
-"help.text"
-msgid "Tags"
-msgstr "Iyyaatoota"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3156360\n"
-"142\n"
-"help.text"
-msgid "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> pages contain certain structural and formatting instructions called tags. Tags are code words enclosed by brackets in the document description language HTML. Many tags contain text or hyperlink references between the opening and closing brackets. For example, titles are marked by the tags <h1> at the beginning and </h1> at the end of the title. Some tags only appear on their own such as <br> for a line break or <img ...> to link a graphic."
-msgstr "Fuulootni <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> qajeelfamoota caasaa fi dhangeessuu iyyatoota jedhaman of keessatti qabu. Afaan ibsa galmee HTML keessatti iyyatootni jechoota lakkaddaa sadallaa keesa kaawwamani dha. Iyyatootni hedduun barruu yookaan wabiiwwan geessituu sadallaa banuu fi cufuu jidduu jiru of keessatti qabu. Fakkeenyaaf, matadureewwan iyyatoota <h1> jalqabaa fi </h1> xumura mataduree irratti mallatteeffama. Iyyatootni gariin kan mataa isaanii irratti mul'atu kan akka <br> cita sararaaf yookaan <img ...> saxaatoo geessuuf."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3153766\n"
-"help.text"
-msgid "<bookmark_value>URL; definition</bookmark_value>"
-msgstr "<bookmark_value>URL; hiika</bookmark_value>"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3153766\n"
-"145\n"
-"help.text"
-msgid "URL"
-msgstr "URL"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3152931\n"
-"146\n"
-"help.text"
-msgid "The Uniform Resource Locator (URL) displays the address of a document or a server in the Internet. The general structure of a URL varies according to type and is generally in the form Service://Hostname:Port/Path/Page#Mark although not all elements are always required. An URL can be a FTP address, a WWW (HTTP) address, a file address or an e-mail address."
-msgstr "Iddeessaa Qabeenyaa Walfakkaataan (URL) Intarneetii irratti teessoo galmee ykn kaadimaa agarsiisa. Caasaan waliigalaa URLii akka gosa isaa adda addaa ta'uu danda'a fi waluumaa galatti unka Service://Hostname:Port/Path/Page#Mark osuma maalimootni gariin qofti barbaachisan illee jechuu dha. URLiin teessoo FTP, teessoo WWW (HTTP), teessoo faayilii yookaan teessoo ergaa-e ta'uu danda'a."
-
-#: 01010000.xhp
-msgctxt ""
-"01010000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Gallery context menu"
-msgstr "Baafata Halqara Kuusaa Faayaa"
-
-#: 01010000.xhp
-msgctxt ""
-"01010000.xhp\n"
-"hd_id3150672\n"
-"1\n"
-"help.text"
-msgid "Gallery context menu"
-msgstr "Baafata Halqara Kuusaa Faayaa"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Page</emph> tab"
+msgstr "Cancala <emph>Dhangii - Halatootaa fiDhangeessuu </emph> fili - baafata halqara galfata banitii Cancala <emph>Fooyyeessi/Haaraa - Fuula</emph> fili"
-#: 01010000.xhp
+#: 00040500.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3083278\n"
-"3\n"
+"00040500.xhp\n"
+"par_id3155515\n"
+"78\n"
"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_MN_ADDMENU\">Defines how a selected graphic object is inserted into a document.</ahelp>"
-msgstr "<ahelp hid=\"HID_GALLERY_MN_ADDMENU\">Wantootnisaxoota filataman akkamitti galmee keessatti akka sagaman hika.</ahelp>"
+msgid "Choose <emph>Format - Page - Header</emph> tab"
+msgstr "Cancala <emph>Dhangii - Fuula - Irraantoo</emph> fili"
-#: 01010000.xhp
+#: 00040500.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3156053\n"
-"5\n"
+"00040500.xhp\n"
+"par_id3148405\n"
+"80\n"
"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_MN_ADD\">Inserts a copy of the selected graphic object directly into the document.</ahelp>"
-msgstr "<ahelp hid=\"HID_GALLERY_MN_ADD\">Garagalcha wantoota saxaatoo kallattidhaan gara galmeeti saaga.</ahelp>"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Header</emph> tab"
+msgstr "Cancala <emph>Dhangii - Halatootaa fi Dhaangeessuu</emph> fili - baafata halqara galfata banitii Cancala <emph>Fooyyeessi/Haaraa - Irraantoo</emph> fili"
-#: 01010000.xhp
+#: 00040500.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3149038\n"
-"7\n"
+"00040500.xhp\n"
+"par_id3145618\n"
+"81\n"
"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_MN_ADD_LINK\">Inserts the selected graphic as a link.</ahelp>"
-msgstr "<ahelp hid=\"HID_GALLERY_MN_ADD_LINK\">Saxaatiicha filatamee akka Geessituutti saaga.</ahelp>"
+msgid "Choose <emph>Format - Page - Footer</emph> tab"
+msgstr "Cancala <emph>Dhangii - Fuula - Jalaantoo</emph> fili"
-#: 01010000.xhp
+#: 00040500.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3158428\n"
-"15\n"
+"00040500.xhp\n"
+"par_id3155175\n"
+"83\n"
"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_MN_PREVIEW\">The<emph> Preview </emph>command displays the selected graphic.</ahelp>"
-msgstr "<ahelp hid=\"HID_GALLERY_MN_PREVIEW\"><emph> Durargii </emph>ajajni saxaxa filame mul'isa.</ahelp>"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Footer</emph> tab"
+msgstr "<emph>Dhangii - Halatootaa fi Dhangeessuu</emph> fili - baafata halqaraa galfata banitii Cancala <emph>Fooyyeessi/Haaraa - Jalaantoo</emph>fili"
-#: 01010000.xhp
+#: 00040500.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3154522\n"
-"19\n"
+"00040500.xhp\n"
+"par_id3147404\n"
+"84\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_GALLERY_TITLE:EDT_TITLE\">Assigns a title to a selected Gallery object.</ahelp>"
-msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_GALLERY_TITLE:EDT_TITLE\">Mataduree gara Kuusaa Faayaa wantoota filatameetti saaga.</ahelp>"
+msgid "Choose <emph>Format - Styles and Formatting</emph>"
+msgstr "<emph>Dhangii - Haalatootaa fi Dhangeessuu</emph> fili"
-#: 01010000.xhp
+#: 00040500.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3149750\n"
-"17\n"
+"00040500.xhp\n"
+"par_id3166447\n"
+"95\n"
"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_MN_DELETE\">Deletes the selected graphic after confirmation.</ahelp>"
-msgstr "<ahelp hid=\"HID_GALLERY_MN_DELETE\">Saxaatiicha filatamee dhuugoomsuun boodatti haqa..</ahelp>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ajaja </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+O"
-#: 00000206.xhp
+#: 00040500.xhp
msgctxt ""
-"00000206.xhp\n"
-"tit\n"
+"00040500.xhp\n"
+"par_id3147321\n"
+"85\n"
"help.text"
-msgid "Dif Import/Export/ Lotus import/ dBASE import"
-msgstr "Alaagi/Alergii Dif/alaagi luutasi/ alaagii dBASE"
+msgid "On <emph>Formatting</emph> Bar, click"
+msgstr "Kabala <emph>Dhangeessuu</emph>rraa,"
-#: 00000206.xhp
+#: 00040500.xhp
msgctxt ""
-"00000206.xhp\n"
-"hd_id3155354\n"
-"1\n"
+"00040500.xhp\n"
+"par_id3148533\n"
"help.text"
-msgid "Dif Import/Export/ Lotus import/ dBASE import"
-msgstr "Alaagi/Alergii Dif/alaagi luutasi/ alaagii dBASE"
+msgid "<image id=\"img_id3149568\" src=\"cmd/sc_designerdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149568\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149568\" src=\"cmd/sc_designerdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149568\">Sajoo</alt></image>"
-#: 00000206.xhp
+#: 00040500.xhp
msgctxt ""
-"00000206.xhp\n"
-"par_id3150620\n"
-"4\n"
+"00040500.xhp\n"
+"par_id3153534\n"
+"86\n"
"help.text"
-msgid "Defines the options for import/export. These dialogs will be automatically shown if the corresponding file type is selected."
-msgstr "Dirqalee alaagi/alergiif qindeessa. Qaaqonni kun ofumaan mul'ifamu yoo akaakuun faayilii isa gituu filatame."
+msgid "Styles and Formatting"
+msgstr "Haalatootaa fi Dhangeessuu"
-#: 00000206.xhp
+#: 00040500.xhp
msgctxt ""
-"00000206.xhp\n"
-"hd_id3149000\n"
-"2\n"
+"00040500.xhp\n"
+"par_id3159313\n"
+"88\n"
"help.text"
-msgid "Character set"
-msgstr "Qindaa'ina arfii"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>On the <emph>Drawing</emph> bar, click</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>Kabala <emph>Fakkassaa</emph></defaultinline></switchinline>irraa,"
-#: 00000206.xhp
+#: 00040500.xhp
msgctxt ""
-"00000206.xhp\n"
-"par_id3152790\n"
-"5\n"
+"00040500.xhp\n"
+"par_id3109845\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_IMPORTOPT:LB_FONT\">Select the character set from the options used for import/export.</ahelp>"
-msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_IMPORTOPT:LB_FONT\">Qindaa'ina arfii dirqaalee alaagi/alergiif fayyade irraa fili.</ahelp>"
+msgid "<image id=\"img_id3159236\" src=\"cmd/sc_window3d.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159236\">Icon</alt></image>"
+msgstr "<image id=\"img_id3159236\" src=\"cmd/sc_window3d.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159236\">Sajoo</alt></image>"
-#: 00000206.xhp
+#: 00040500.xhp
msgctxt ""
-"00000206.xhp\n"
-"par_id3152942\n"
+"00040500.xhp\n"
+"par_id3152498\n"
"3\n"
"help.text"
-msgid "For further information regarding filters, refer to the topic: <link href=\"text/shared/00/00000020.xhp\" name=\"Information about Import and Export Filters\">Information about Import and Export Filters</link>."
-msgstr "Calaltuu ilaalchisee odeeffannoo baay'ee argachuuf, mataduree: <link href=\"text/shared/00/00000020.xhp\" name=\"Information about Import and Export Filters\">Odeeffannoo waa'ee Calaltiiwwan Alaagi fi Alergii</link> ilaali."
-
-#: 00000215.xhp
-msgctxt ""
-"00000215.xhp\n"
-"tit\n"
-"help.text"
-msgid "ASCII Filter Options"
-msgstr "ASCII Gingilcha Dirqalaa"
-
-#: 00000215.xhp
-msgctxt ""
-"00000215.xhp\n"
-"hd_id3146856\n"
-"1\n"
-"help.text"
-msgid "ASCII Filter Options"
-msgstr "ASCII Gingilcha Dirqalaa"
+msgid "<emph>3D Effects</emph>"
+msgstr "<emph>Galteewwan G-3</emph>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3153070\n"
-"2\n"
+"00040500.xhp\n"
+"par_id3145256\n"
+"90\n"
"help.text"
-msgid "You can specify which options, such as basic font, language, character set, or break, are imported or exported with a text document. The dialog appears when you load an ASCII file with the filter \"Text Encoded\" or when you save the document the first time, or when you \"save as\" with another name."
-msgstr "Dirqala kam akka ta'e ibsuu dandeessa, kanneen akka bocquu bu'uuraa, afaan, qindaa'ina arfii, yookan qurxiinsa galmee barruu waliin alergamu yookan alaagamu. Qaaqni kan mul'atu yoo faayilii ASCII gingilcha waliin \"Barruu Erguu\" fe'amu yookan galmee yeroo duraatiif yommuu olkeessu yookan yommu \"akka olkaa'i\" maqaa birootiin olkeessu."
+msgid "<variable id=\"3dgeometrie\">Open the context menu of the 3D object, choose <emph>3D Effects - Geometry</emph> tab </variable>"
+msgstr "<variable id=\"3dgeometrie\">Baafata halqara wanta 3D bani, caancala <emph>Dhangii - Galteewwan 3D - Giometrii</emph> fili </variable>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"hd_id3159217\n"
-"3\n"
+"00040500.xhp\n"
+"par_id3154203\n"
+"91\n"
"help.text"
-msgid "Properties"
-msgstr "Amaloota"
+msgid "<variable id=\"3ddarstellung\">Open the context menu of the 3D object, choose <emph>3D Effects - Shading</emph> tab </variable>"
+msgstr "<variable id=\"3ddarstellung\">Baafata halqara wanta 3D bani, caancala <emph>Dhangii - Galteewwan 3D - Gaaddiddeessuu</emph> fili </variable>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3155577\n"
-"4\n"
+"00040500.xhp\n"
+"par_id3151284\n"
+"92\n"
"help.text"
-msgid "Defines the settings for importing or exporting your file. When exporting, only the character set and paragraph break can be defined."
-msgstr "Qindaa'ina alergi yookan alaaguu faayilii keetii hiika. Yommuu alergitu, arfii qofatu qindaa'ee qurxiinsi keeyyataa qindaa'uu danda'a."
+msgid "<variable id=\"3dbeleuchtung\">Open the context menu of the 3D object, choose <emph>3D Effects - Illumination</emph> tab </variable>"
+msgstr "<variable id=\"3dbeleuchtung\">Baafata halqara wanta 3D bani, caancala <emph>Dhangii - Galteewwan 3D - Ibsa</emph> fili </variable>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"hd_id3146959\n"
-"5\n"
+"00040500.xhp\n"
+"par_id3152475\n"
+"93\n"
"help.text"
-msgid "Character set"
-msgstr "Qindaa'ina Arfii"
+msgid "<variable id=\"3dtexturen\">Open the context menu of the 3D object, choose <emph>3D Effects - Textures</emph> tab </variable>"
+msgstr "<variable id=\"3dtexturen\">Baafata halqara wanta 3D bani, caancala<emph>Dhangii - Galteewwan 3D - Makkaluu</emph> fili </variable>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3143206\n"
-"6\n"
+"00040500.xhp\n"
+"par_id3154572\n"
+"94\n"
"help.text"
-msgid "<ahelp hid=\"SW:LISTBOX:DLG_ASCII_FILTER:LB_CHARSET\">Specifies the character set of the file for export or import.</ahelp>"
-msgstr "<ahelp hid=\"SW:LISTBOX:DLG_ASCII_FILTER:LB_CHARSET\">Qindaa'ina amala faayilii alergi yookan alaaguu ibsa.</ahelp>"
+msgid "<variable id=\"3dmaterial\">Open the context menu of the 3D object, choose <emph>3D Effects - Material</emph> tab </variable>"
+msgstr "<variable id=\"3dmaterial\">Baafata halqara wanta 3D bani, caancala<emph>Dhangii - Galteewwan 3D - Meeshaa</emph> fili </variable>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"hd_id3154926\n"
-"7\n"
+"00040500.xhp\n"
+"par_id3145220\n"
+"155\n"
"help.text"
-msgid "Default fonts"
-msgstr "Bocquuwwan durtii"
+msgid "Choose <emph>Format - Bullets and Numbering </emph>"
+msgstr "<emph>Dhangii - Rasaasaalee fi Taasiisaa Lakkoofsaa </emph> fili"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3151262\n"
-"8\n"
+"00040500.xhp\n"
+"par_id3148771\n"
+"156\n"
"help.text"
-msgid "<ahelp hid=\"SW:LISTBOX:DLG_ASCII_FILTER:LB_FONT\">By setting a default font, you specify that the text should be displayed in a specific font. The default fonts can only be selected when importing.</ahelp>"
-msgstr "<ahelp hid=\"SW:LISTBOX:DLG_ASCII_FILTER:LB_FONT\">Bocquu durtii qindeessuun, kan ati ifteessitu barruun mul'chuu kan qabu bocquu murtaa'e irratti qofa. Bocquun durtii filatamuu kan danda'uu yommuu alaaguu qofa.</ahelp>"
+msgid "On <emph>Formatting</emph> toolbar, click"
+msgstr "Kamashaa <emph>Dhangeessuu</emph>rraa,"
-#: 00000215.xhp
-#, fuzzy
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"hd_id3154894\n"
-"9\n"
+"00040500.xhp\n"
+"par_id3149445\n"
"help.text"
-msgid "Language"
-msgstr "Afaan"
+msgid "<image id=\"img_id3149964\" src=\"cmd/sc_defaultbullet.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149964\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149964\" src=\"cmd/sc_defaultbullet.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149964\">Sajoo</alt></image>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3153323\n"
-"10\n"
+"00040500.xhp\n"
+"par_id3157970\n"
+"163\n"
"help.text"
-msgid "<ahelp hid=\"SW:LISTBOX:DLG_ASCII_FILTER:LB_LANGUAGE\">Specifies the language of the text, if this has not already been defined. This setting is only available when importing.</ahelp>"
-msgstr "<ahelp hid=\"SW:LISTBOX:DLG_ASCII_FILTER:LB_LANGUAGE\">Afaan barruu ibsuun, yoo kun duraan dursee ibsamuu baate. Qindaa'inni kun kan jiraatu yommuu alaaguu qofa.</ahelp>"
+msgid "Bullets On/Off"
+msgstr "Rasaasa Bani/Cufi"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"hd_id3147143\n"
-"11\n"
+"00040500.xhp\n"
+"par_id3149735\n"
+"157\n"
"help.text"
-msgid "Paragraph break"
-msgstr "Keeyyate qurxiinsa"
+msgid "Choose <emph>Format - Bullets and Numbering</emph>. Open <emph>Options</emph> tab page"
+msgstr "<emph>Dhangii - Rasaasaalee fi Taasiisaa Lakkoofsaa</emph> fili. Cancala <emph>Dirqaloota</emph> cancala fuulaa bani"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3143281\n"
-"12\n"
+"00040500.xhp\n"
+"par_id3150785\n"
+"164\n"
"help.text"
-msgid "Defines the type of paragraph break for a text line."
-msgstr "Akaakuu keeyyata qurxiinsa sarara barruuf qindeessa."
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles and Formatting</emph> - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><emph>Halatootaa fi Dhangeessuu</emph> - Halatoota Pirezanteshiinii - baafata halqara toorii haalataa bani - <emph>Fooyyeessi/Haaraa</emph> fili</caseinline></switchinline>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"hd_id3150935\n"
-"13\n"
+"00040500.xhp\n"
+"par_id3148420\n"
+"165\n"
"help.text"
-msgid "CR & LF"
-msgstr "CR & LF"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Haalatootaa fi Dhangeessuu</emph> - Halatoota Taasiisaa Lakkoofsaa - bafata haalqara galfata bani - <emph>Haaraa/Fooyyeessi</emph>fili</caseinline></switchinline>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3145829\n"
-"14\n"
+"00040500.xhp\n"
+"par_id3148888\n"
+"158\n"
"help.text"
-msgid "<ahelp hid=\"SW:RADIOBUTTON:DLG_ASCII_FILTER:RB_CRLF\">Produces a \"Carriage Return\" and a \"Linefeed\". This option is the default.</ahelp>"
-msgstr "<ahelp hid=\"SW:RADIOBUTTON:DLG_ASCII_FILTER:RB_CRLF\">Akka qurxii keeyyataatti \"Carriage Return\" fi \"Linefeed\" oomisha. Dirqalli kun durtii dha.</ahelp>"
+msgid "Choose <emph>Format - Bullets and Numbering - Bullets</emph> tab"
+msgstr "Cancala<emph>Dhangii - Rasaasaalee fi Taasiisaa Lakkoofsaa</emph> fili"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"hd_id3153551\n"
-"15\n"
+"00040500.xhp\n"
+"par_id3149917\n"
+"166\n"
"help.text"
-msgid "CR"
-msgstr "CR"
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open Styles and Formatting - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Halatootaa fi Dhangeessuu - Halatoota Dhiyeessa - baafata halqara toorii haalataa bani - <emph>Haaraa/Fooyyeessi</emph>fili</caseinline></switchinline>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3156042\n"
-"16\n"
+"00040500.xhp\n"
+"par_id3154930\n"
+"167\n"
"help.text"
-msgid "<ahelp hid=\"SW:RADIOBUTTON:DLG_ASCII_FILTER:RB_CR\">Produces a \"Carriage Return\" as the paragraph break.</ahelp>"
-msgstr "<ahelp hid=\"SW:RADIOBUTTON:DLG_ASCII_FILTER:RB_CR\">Akka qurxii keeyyataatti \"Carriage Return\" oomisha.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open Styles and Formatting - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Haalatootaa Dhangeessuu - Taasiisaa Lakkoofsaa - bafata haalqara Toorii halataa bani - Haaraa/Fooyyeessi</emph>fili</caseinline></switchinline>"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"hd_id3150713\n"
-"17\n"
+"00040500.xhp\n"
+"par_id3150862\n"
+"159\n"
"help.text"
-msgid "LF"
-msgstr "LF"
+msgid "Choose <emph>Format - Bullets and Numbering - Numbering</emph> tab"
+msgstr "Cancala<emph>Dhangii - Rasaasaalee fi Taasiisaa Lakkoofsaa</emph> fili"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3145090\n"
-"18\n"
+"00040500.xhp\n"
+"par_id3155378\n"
+"168\n"
"help.text"
-msgid "<ahelp hid=\"SW:RADIOBUTTON:DLG_ASCII_FILTER:RB_LF\">Produces a \"Linefeed\" as the paragraph break.</ahelp>"
-msgstr "<ahelp hid=\"SW:RADIOBUTTON:DLG_ASCII_FILTER:RB_LF\">Akka qurxii keeyyataatti \"Linefeed\" oomisha.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles and Formatting</emph> - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><emph>Halatootaa fi Dhangeessuu</emph> - Halatoota Pirezanteshiinii - baafata halqara toorii haalataa bani - <emph>Fooyyeessi/Haaraa</emph> fili</caseinline></switchinline>"
-#: icon_alt.xhp
+#: 00040500.xhp
msgctxt ""
-"icon_alt.xhp\n"
-"tit\n"
+"00040500.xhp\n"
+"par_id3156011\n"
+"169\n"
"help.text"
-msgid "Standard Icons Alt Texts to be Embedded"
-msgstr "Sajoo Alt barruulee durtii ida'amuu"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Haalatootaa fi Dhangeessuu</emph> - Halatoota Taasiisaa Lakkoofsaa - bafata haalqara galfata bani - <emph>Haaraa/Fooyyeessi</emph>fili</caseinline></switchinline>"
-#: icon_alt.xhp
+#: 00040500.xhp
msgctxt ""
-"icon_alt.xhp\n"
-"par_idN10546\n"
+"00040500.xhp\n"
+"par_id0611200904324832\n"
"help.text"
-msgid "<variable id=\"alt_icon\">Icon </variable>"
-msgstr "<variable id=\"alt_icon\">Sajoo </variable>"
+msgid "<variable id=\"graphics\">Choose <emph>Format - Bullets and Numbering - Graphics</emph> tab</variable>"
+msgstr "<variable id=\"graphics\">Caancala <emph>Dhangii - Rasaasaalee fi Lakkaawwii - Saxaatoo</emph> fili</variable>"
-#: icon_alt.xhp
+#: 00040500.xhp
msgctxt ""
-"icon_alt.xhp\n"
-"par_idN10555\n"
+"00040500.xhp\n"
+"par_id3155848\n"
+"160\n"
"help.text"
-msgid "<variable id=\"alt_warning\">Warning Icon </variable>"
-msgstr "<variable id=\"alt_warning\">Sajoo Ofegannoo </variable>"
+msgid "Choose <emph>Format - Bullets and Numbering - Outline</emph> tab"
+msgstr "Cancala<emph>Dhangii - Rasaasaalee fi Taasiisaa Lakkoofsaa- Toorii</emph> fili"
-#: icon_alt.xhp
+#: 00040500.xhp
msgctxt ""
-"icon_alt.xhp\n"
-"par_idN10564\n"
+"00040500.xhp\n"
+"par_id3148733\n"
+"170\n"
"help.text"
-msgid "<variable id=\"alt_tip\">Tip Icon </variable>"
-msgstr "<variable id=\"alt_tip\">Sajoo Qaxxee </variable>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Haalatootaa fi Dhangeessuu</emph> - Halatoota Taasiisaa Lakkoofsaa - bafata haalqara galfata bani - <emph>Haaraa/Fooyyeessi</emph>fili</caseinline></switchinline>"
-#: icon_alt.xhp
+#: 00040500.xhp
msgctxt ""
-"icon_alt.xhp\n"
-"par_idN10573\n"
+"00040500.xhp\n"
+"par_id3156658\n"
+"162\n"
"help.text"
-msgid "<variable id=\"alt_note\">Note Icon </variable>"
-msgstr "<variable id=\"alt_note\">Sajoo Yaaddannoo </variable>"
+msgid "Choose <emph>Format - Bullets and Numbering</emph>. Open <emph>Position</emph> tab page"
+msgstr "<emph>Dhangii - Rasaasaalee fi Taasiisaa Lakkoofsaa</emph>fili. Cancala fuulaa<emph>Iddoo</emph>fili"
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"tit\n"
+"00040500.xhp\n"
+"par_id3156170\n"
+"152\n"
"help.text"
-msgid "Context Menu of Web Pages in Read-Only Mode"
-msgstr "Baafata halqara fuuloota saphaphuu Halata Dubbisuu-Qofaan"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Cancala <emph>Meeshaalee - Taasiisaa Lakkoofsaa Toorii -Iddoo</emph> fili </caseinline></switchinline>"
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"hd_id3158397\n"
-"1\n"
+"00040500.xhp\n"
+"par_id3153812\n"
+"173\n"
"help.text"
-msgid "Context Menu of Web Pages in Read-Only Mode"
-msgstr "Baafata halqara fuuloota saphaphuu Halata Dubbisuu-Qofaan"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting - Numbering Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Haalatootaa Dhangeessuu</emph>- Halatoota Taasiisaa Lakkoofsaa - bafata haalqara galfata bani - <emph>Haaraa/Fooyyeessi</emph>fili</caseinline></switchinline>"
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3145348\n"
-"18\n"
+"00040500.xhp\n"
+"par_id3151332\n"
+"194\n"
"help.text"
-msgid "<ahelp hid=\"HID_MN_READONLY_SAVEGRAPHIC\">Opens a dialog where you can save the selected graphics.</ahelp>"
-msgstr "<ahelp hid=\"HID_MN_READONLY_SAVEGRAPHIC\">Iddoo saxaatoo filatamee itti olkaa'uu dandeessutti qaaqa bana.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Picture </emph>- <emph>Crop</emph> tab </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Baafata<emph>Dhangii - Fakkaatti </emph>- Cancala <emph>Soofuu</emph> </caseinline></switchinline>"
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3151262\n"
-"31\n"
+"00040500.xhp\n"
+"par_id3153317\n"
+"198\n"
"help.text"
-msgid "<ahelp hid=\"HID_MN_READONLY_COPYLINK\">Copies the link at the mouse pointer to the clipboard.</ahelp>"
-msgstr "<ahelp hid=\"HID_MN_READONLY_COPYLINK\">Geessituu qaree hantuutteerraa gara Muraa Faayootti gargalcha.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Picture</emph> toolbar:</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Sajoo Kamshaa: <emph>Fakkaatti</emph>irraa</defaultinline></switchinline>"
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3155934\n"
-"37\n"
+"00040500.xhp\n"
+"par_id3149953\n"
"help.text"
-msgid "<ahelp hid=\"HID_MN_READONLY_COPYGRAPHIC\">Copies a selected graphic to the clipboard.</ahelp>"
-msgstr "<ahelp hid=\"HID_MN_READONLY_COPYGRAPHIC\">Saxaatoo filatamee gara Muuraa Faayootti garagalcha.</ahelp>"
+msgid "<image id=\"img_id3155092\" src=\"cmd/sc_grafattrcrop.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155092\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155092\" src=\"cmd/sc_grafattrcrop.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155092\">Sajoo</alt></image>"
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3145629\n"
-"22\n"
+"00040500.xhp\n"
+"par_id3153695\n"
+"209\n"
"help.text"
-msgid "<ahelp hid=\"HID_MN_READONLY_LOADGRAPHIC\">If you have deactivated the graphics display, choose the<emph> Load Graphics </emph>command to make them visible.</ahelp>"
-msgstr "<ahelp hid=\"HID_MN_READONLY_LOADGRAPHIC\">Yoo agarsiisa hin siyeesinee, akka mul'atan taasiisuuf ,ajaja <emph>Saxaatoo Fe'i</emph> fili.</ahelp>"
+msgid "Crop"
+msgstr "Soofuu"
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3150902\n"
-"24\n"
+"00040500.xhp\n"
+"par_id3151254\n"
+"195\n"
"help.text"
-msgid "<ahelp hid=\"HID_MN_READONLY_GRAPHICOFF\">Sets all graphics in the document to be invisible.</ahelp>"
-msgstr "<ahelp hid=\"HID_MN_READONLY_GRAPHICOFF\">Saxaatoo galmee keessaa hunda akka hin mul'ane qindeessa.</ahelp>"
+msgid "Choose <emph>Format - Change Case</emph>"
+msgstr "<emph>Dhangii - Kompitaraa Jijjiirii</emph>fili"
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3153910\n"
-"26\n"
+"00040500.xhp\n"
+"par_id3159624\n"
+"196\n"
"help.text"
-msgid "<ahelp hid=\"HID_MN_READONLY_PLUGINOFF\">Disables inserted plug-ins.</ahelp> Click this command again to reactivate the <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"plug-ins\">plug-ins</link>."
-msgstr "<ahelp hid=\"HID_MN_READONLY_PLUGINOFF\">Itti-Suuqiiwwan akka deebi'ani ka'aa ta'an.</ahelp> Ajaja kana deebisi cuqaasi <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"plug-ins\">Itti-suuquu</link>."
+msgid "Open context menu (text) - choose <emph>Change Case</emph>"
+msgstr "Baafata halqaraa (barruuu)fili - <emph>Arfiilee</emph> golga kompitaraa fili"
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3148548\n"
-"38\n"
+"00040500.xhp\n"
+"par_id3153579\n"
+"197\n"
"help.text"
-msgid "<ahelp hid=\"HID_MN_READONLY_SAVEBACKGROUND\">Allows you to save the background of a Web page.</ahelp>"
-msgstr "<ahelp hid=\"HID_MN_READONLY_SAVEBACKGROUND\">Duubbee fuula Saphaphuu akka olkeessuu si hayyama.</ahelp>"
+msgid "Menu <emph>Format - Asian phonetic guide</emph>"
+msgstr "Baafata <emph>Dhangii - Qajeelcha Xinsaga kan Eshiyaa</emph>"
#: 00040501.xhp
msgctxt ""
@@ -12324,7 +10830,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Format Menu"
-msgstr "Baafata Dhangi"
+msgstr "Dhangii Baafata"
#: 00040501.xhp
msgctxt ""
@@ -12333,10 +10839,9 @@ msgctxt ""
"1\n"
"help.text"
msgid "Format Menu"
-msgstr "Baafata Dhangi"
+msgstr "Dhangii Baafata"
#: 00040501.xhp
-#, fuzzy
msgctxt ""
"00040501.xhp\n"
"par_id3150156\n"
@@ -12346,7 +10851,6 @@ msgid "<variable id=\"aupitab\">Open <emph>Form Controls</emph> toolbar, click <
msgstr "<variable id=\"aupitab\">Kabala <emph>Unka Too'atamtootaa</emph> bani sajoo <emph>Too'atamoota Dabala</emph> cuqaasi,sajoo <emph>Gabatee Too'annoo</emph> cuqaasi, dirree burqisiisuuf immoo hantuuttee harkisii. </variable>"
#: 00040501.xhp
-#, fuzzy
msgctxt ""
"00040501.xhp\n"
"par_id3154408\n"
@@ -12356,7 +10860,6 @@ msgid "<variable id=\"aupitab1\">Open <emph>Form Controls</emph> toolbar, click
msgstr "<variable id=\"aupitab1\">Kabala <emph>Unka Too'atamtootaa</emph> bani sajoo <emph>Too'atamoota Dabala</emph> cuqaasi,sajoo <emph>Gabatee Too'annoo</emph> cuqaasi, dirree burqisiisuuf immoo hantuuttee harkisii. Walindhaan kuussaa deetaa tokkooleen unkaa haaraa keessaa hin haayamamuu. </variable>"
#: 00040501.xhp
-#, fuzzy
msgctxt ""
"00040501.xhp\n"
"par_id3149748\n"
@@ -12366,7 +10869,6 @@ msgid "<variable id=\"aupitab2\">Open <emph>Form Controls</emph> toolbar, click
msgstr "<variable id=\"aupitab2\">Kabala <emph>Unka Too'atamtootaa</emph> bani sajoo <emph>Too'atamoota Dabala</emph> cuqaasi,sajoo <emph>Gabatee Too'annoo</emph> cuqaasi, dirree burqisiisuuf immoo hantuuttee harkisii. Walindhaan kuussaa deetaa jiraachuu qaba. </variable>"
#: 00040501.xhp
-#, fuzzy
msgctxt ""
"00040501.xhp\n"
"par_id3156553\n"
@@ -12376,7 +10878,6 @@ msgid "<variable id=\"aupikomli\">Open Form Controls toolbar, click <emph>Combo
msgstr "<variable id=\"aupikomli\">Kamshaa Unkaa Too'atamtootaa bani sajoo <emph>Sanduuqa Makaa</emph> yookin <emph>Sanduuqa Tarree</emph> cuqaasitti dirree burqisiisuuf immoo hantuuttee harkisii Walindhaan Kuussaa deetaa Unka keessatti argamuu qaba.</variable>"
#: 00040501.xhp
-#, fuzzy
msgctxt ""
"00040501.xhp\n"
"par_id3148825\n"
@@ -12386,7 +10887,6 @@ msgid "<variable id=\"aupikomli1\">Open Form Controls toolbar, click <emph>Combo
msgstr "<variable id=\"aupikomli1\">Kamshaa Unkaa Too'atamtootaa bani sajoo <emph>Sanduuqa Makaa</emph> yookin <emph>Sanduuqa Tarree</emph> cuqaasitti dirree burqisiisuuf immoo hantuuttee harkisii Walindhaan Kuussaa deetaa Unka keessatti: Masaka - Fuula 1 argamuu qaba. </variable>"
#: 00040501.xhp
-#, fuzzy
msgctxt ""
"00040501.xhp\n"
"par_id3155434\n"
@@ -12396,7 +10896,6 @@ msgid "<variable id=\"aupikomli2\">Open Form Controls toolbar, click <emph>Combo
msgstr "<variable id=\"aupikomli2\">Kamshaa Unkaa Too'atamtootaa bani sajoo <emph>Sanduuqa Makaa</emph>cuqaasi yookin <emph>Sanduuqa Tarree</emph> cuqaasitti dirree burqisiisuuf immoo hantuuttee harkisii Walindhaan Kuussaa deetaa Unka keessatti: Masaka - Fuula 2 argamuu qaba. </variable>"
#: 00040501.xhp
-#, fuzzy
msgctxt ""
"00040501.xhp\n"
"par_id3151378\n"
@@ -12406,7 +10905,6 @@ msgid "<variable id=\"aupikomli3a\">Open Form Controls toolbar, click <emph>List
msgstr "<variable id=\"aupikomli3a\">Kamshaa Unkaa Too'atamtootaa bani sajoo <emph>Sanduuqa Tarree</emph> cuqaasitti dirree burqisiisuuf immoo hantuuttee harkisii Walindhaan kuussaa deetaa Unka keessatti: Masaka - Fuula 3 argamuu qaba. </variable>"
#: 00040501.xhp
-#, fuzzy
msgctxt ""
"00040501.xhp\n"
"par_id3151246\n"
@@ -12618,7 +11116,6 @@ msgid "Open Form Controls toolbar or Form Design toolbar, click <emph>Control</e
msgstr "Kamshaa Unka Too'atannootaa yookin Unka saxaxa bani, Cancala sajoo <emph>Too'annoo</emph> - <emph>Mudatoota</emph> fili"
#: 00040501.xhp
-#, fuzzy
msgctxt ""
"00040501.xhp\n"
"par_id6058839\n"
@@ -12649,7 +11146,7 @@ msgctxt ""
"par_id2709433\n"
"help.text"
msgid "Open Form Design toolbar, click"
-msgstr "Kamshaa Unka Saxaxaa bani,"
+msgstr "Kabala Unka Saxaxaa bani,"
#: 00040501.xhp
msgctxt ""
@@ -12674,7 +11171,7 @@ msgctxt ""
"par_id9929502\n"
"help.text"
msgid "Open Form Design toolbar, click"
-msgstr "Kamshaa Unka Saxaxaa bani,"
+msgstr "Kabala Unka Saxaxaa bani,"
#: 00040501.xhp
msgctxt ""
@@ -12733,7 +11230,7 @@ msgctxt ""
"par_id8177434\n"
"help.text"
msgid "Open Form Design toolbar, click"
-msgstr "Kamshaa Unka Saxaxaa bain,"
+msgstr "Kabala Unka Saxaxaa bani,"
#: 00040501.xhp
msgctxt ""
@@ -13235,7 +11732,7 @@ msgctxt ""
"38\n"
"help.text"
msgid "On <emph>Align</emph> toolbar ($[officename] Impress, $[officename] Draw), click"
-msgstr "Kamshaa <emph>Hiriirsuu</emph> Imprassii$[officename], Fakkassaa $[officename]) irraa,"
+msgstr "Kamshaa <emph>Hiriirsuu</emph> (Imprassii$[officename], Fakkassaa $[officename]) irraa,"
#: 00040501.xhp
msgctxt ""
@@ -13288,7 +11785,7 @@ msgctxt ""
"41\n"
"help.text"
msgid "On <emph>Align</emph> toolbar ($[officename] Impress, $[officename] Draw), click"
-msgstr "Kamshaa <emph>Hiriirsuu</emph> (Imprassii $[officename] , Fakkassaa $[officename]) cuqaasi"
+msgstr "Kamshaa <emph>Hiriirsuu</emph> (Imprassii$[officename], Fakkassaa $[officename]) irraa,"
#: 00040501.xhp
msgctxt ""
@@ -13314,7 +11811,7 @@ msgctxt ""
"43\n"
"help.text"
msgid "Choose <emph>Format - Alignment - Centered</emph> ($[officename] Writer, $[officename] Calc)"
-msgstr "<emph>Dhangii - Hiriira - Wirteefamaa</emph> (Barreessaa $[officename], Calc $[officename])fili"
+msgstr "<emph>Dhangii - Hiriira - Wirteefamaa</emph>(wntoota filataman) (Barreessaa$[officename], Calc $[officename]) fili"
#: 00040501.xhp
msgctxt ""
@@ -13323,7 +11820,7 @@ msgctxt ""
"65\n"
"help.text"
msgid "Choose <emph>Modify - Alignment - Centered</emph> (objects selected) ($[officename] Draw)"
-msgstr "<emph>Fooyyeessi - Hiriira - Wirtffama</emph> (wantoota filatama)(Fakkasaa $[officename])fili"
+msgstr "<emph>Fooyyeessi - Hiriira - Wirteefamaa</emph> (wntoota filataman) (Fakkassaa $[officename]) fili"
#: 00040501.xhp
msgctxt ""
@@ -13341,7 +11838,7 @@ msgctxt ""
"44\n"
"help.text"
msgid "On <emph>Align</emph> toolbar ($[officename] Impress, $[officename] Draw), click"
-msgstr "Kamashaa <emph>Hiriirsuu</emph> (Impressi $[officename], Fakkasaa $[officename])irraa,"
+msgstr "Kamshaa <emph>Hiriirsuu</emph> (Imprassii$[officename], Fakkassaa $[officename]) irraa,"
#: 00040501.xhp
msgctxt ""
@@ -13385,7 +11882,7 @@ msgctxt ""
"47\n"
"help.text"
msgid "On <emph>Align</emph> toolbar ($[officename] Impress, $[officename] Draw), click"
-msgstr "Kamshaa <emph>Hiriirsuu</emph> ($[officename] Impress, $[officename] Fakkaasa) irraa cuqaasi"
+msgstr "Kamshaa <emph>Hiriirsuu</emph> (Imprassii$[officename], Fakkassaa $[officename]) irraa,"
#: 00040501.xhp
msgctxt ""
@@ -13419,7 +11916,7 @@ msgctxt ""
"par_id2851649\n"
"help.text"
msgid "Open Form Design toolbar, click"
-msgstr "Kamashaa Unkaa Saxaxaa fili,"
+msgstr "Kabala Unka Saxaxaa bani,"
#: 00040501.xhp
msgctxt ""
@@ -13492,447 +11989,1772 @@ msgctxt ""
msgid "<variable id=\"anderzelle\">Choose <emph>Format - Anchor - To Cell</emph></variable>"
msgstr "<variable id=\"anderzelle\"><emph>Dhangii - Korkoddii - Gara Mandheetti</emph>fili</variable>"
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
+"00040502.xhp\n"
"tit\n"
"help.text"
-msgid "Warning Print Options"
-msgstr "Hubachiisa Maxxansa Dirqalaa"
+msgid "Format Menu"
+msgstr "Dhangii Baafata"
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"hd_id3145759\n"
+"00040502.xhp\n"
+"hd_id3149741\n"
"1\n"
"help.text"
-msgid "Warning Print Options"
-msgstr "Hubachiisa Maxxansa Dirqalaa"
+msgid "Format Menu"
+msgstr "Dhangii Baafata"
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"par_id3152352\n"
+"00040502.xhp\n"
+"par_id3146857\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"SD:MODALDIALOG:DLG_PRINT_WARNINGS\">The<emph> Warning Print Options </emph>dialog appears when the page setup does not match the defined print range.</ahelp> This is the case, for example, if you draw a rectangle that is larger than the current page format."
-msgstr "<ahelp hid=\"SD:MODALDIALOG:DLG_PRINT_WARNINGS\"><emph>Hubachiisa Fuulli Maxxansaa </emph>Qaaqni kan mula'atu yoo qindaa'inni qindaa'ina hanga maxxansaa waliin walgituu baate.</ahelp> Kun akkaataa dha, fakkeenyaaf, yommuu reektaangilii kaaftu dhangii fuula ammee caala guddaadha."
+msgid "Choose <emph>Format - Line</emph> (Impress and Draw)"
+msgstr "<emph>Dhangii - Sarara</emph>(Impress fi Fakkassaa)"
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"hd_id3150620\n"
+"00040502.xhp\n"
+"par_id366527\n"
+"help.text"
+msgid "Choose <emph>Format - Object - Line </emph>(Writer)"
+msgstr "<emph>Dhangii - Wanta - Sarara</emph> (Barreessaa) fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3835261\n"
+"help.text"
+msgid "Choose <emph>Format - Graphic - Line </emph>(Calc)"
+msgstr "<emph>Dhangii - Saxaatoo - Sarara</emph> (Calc) fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3148668\n"
"3\n"
"help.text"
-msgid "Print options"
-msgstr "Maxxansa dirqalaa"
+msgid "On <emph>Line and Filling</emph> Bar, click"
+msgstr "Kabala <emph>Sarara fi Guutinsa</emph>rratti,"
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"hd_id3156324\n"
+"00040502.xhp\n"
+"par_id3148889\n"
+"help.text"
+msgid "<image id=\"img_id3150669\" src=\"cmd/sc_formatline.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150669\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150669\" src=\"cmd/sc_formatline.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150669\">Sajoo</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3159147\n"
+"4\n"
+"help.text"
+msgid "Line"
+msgstr "Sarara"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154285\n"
"5\n"
"help.text"
-msgid "Fit page to print range"
-msgstr "Hanga fuula maxxansituu taasisi"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line</emph> tab"
+msgstr "<emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wanta - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaatoo - </emph></caseinline></switchinline><emph>Sarara - Sarara</emph> fili"
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"par_id3158405\n"
+"00040502.xhp\n"
+"par_id3147335\n"
"7\n"
"help.text"
-msgid "If you select the <emph>Fit page to print range </emph>option, the <emph>Warning Print Options</emph> dialog will not appear in subsequent print runs of this document."
-msgstr "<emph>Yoo filatte fuulan walgichisiisi fuulicha maxxamsuuf </emph>dirqala, <emph>Hubachiisa Maxxansa Dirqala</emph>qaaqni galmee kana irratti walduraa duuba ka'uumsa maxxansatti hin mul'atu."
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu and choose <emph>Modify/New - Line</emph> tab (presentation documents)"
+msgstr "Cancala(Dhiheessa Galmee)<emph>Dhangii - Halatootaa</emph>fi Dhangeessuu fili - Baafata halqaraa banitii akkasumaas <emph>Fooyyeessi/Haaraa</emph>fili"
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"hd_id3156553\n"
+"00040502.xhp\n"
+"par_id3156023\n"
"8\n"
"help.text"
-msgid "Print on multiple pages"
-msgstr "Fuula baay'ee irratti maxxansi"
+msgid "Choose <emph>Format - Title - Borders</emph> tab (charts)"
+msgstr "Cancala(Taattoowwani)<emph>Dhangii - Handaaroota</emph>fili"
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"par_id3154823\n"
+"00040502.xhp\n"
+"par_id3153061\n"
"9\n"
"help.text"
-msgid "<ahelp hid=\"SD:RADIOBUTTON:DLG_PRINT_WARNINGS:RBT_POSTER\">Specifies whether to distribute the printout on multiple pages.</ahelp> The print range will be printed on multiple pages."
-msgstr "<ahelp hid=\"SD:RADIOBUTTON:DLG_PRINT_WARNINGS:RBT_POSTER\">Kanneen maxxanfaman fuula baay'ee irratti bittiffamaa ta'uuf dhiisuu ibsa.</ahelp> Hammi maxxansaa fuula baay'ee irratti maxxanfama."
+msgid "Choose <emph>Format - Legend - Borders</emph> tab (charts)"
+msgstr "Cancala(Taattoowwani)<emph>Dhangii - Waayoo - Handaaroot</emph>fili"
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"hd_id3147010\n"
+"00040502.xhp\n"
+"par_id3155922\n"
"10\n"
"help.text"
-msgid "Trim"
-msgstr "Qartuu"
+msgid "Choose <emph>Format - Axis - Line</emph> tab (charts)"
+msgstr "Cancala(Taattoo)<emph>Dhangii - Siiqqee - Sararaa</emph>fili"
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"par_id3151111\n"
+"00040502.xhp\n"
+"par_id3147559\n"
"11\n"
"help.text"
-msgid "<ahelp hid=\"SD:RADIOBUTTON:DLG_PRINT_WARNINGS:RBT_CUT\">Specifies that anything extending beyond the maximum print range will be cut off and not included in the printing.</ahelp>"
-msgstr "<ahelp hid=\"SD:RADIOBUTTON:DLG_PRINT_WARNINGS:RBT_CUT\">Wanti kamiiyyuu bal'achuun maxxansa hamma irraantoo ol ta'e ni cita fi maxxansa keessatti hin dabalatamu.</ahelp>"
+msgid "Choose <emph>Format - Grid - Line</emph> tab (charts)"
+msgstr "Cancala(Taatoowwani)<emph>Dhangii - Tarsaa - Sarara</emph>fili"
-#: 00000450.xhp
+#: 00040502.xhp
msgctxt ""
-"00000450.xhp\n"
+"00040502.xhp\n"
+"par_id3154758\n"
+"12\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Wall - Borders</emph> tab (charts)"
+msgstr "Cancala(Taattoo)<emph>Dhangii - Dhaaba Taattoo - Handaaroota</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153960\n"
+"13\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Floor - Borders</emph> tab (charts)"
+msgstr "Cancala(Taattoowwani)<emph>Dhangii - Afala Taaattoo -Handaaroota</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154939\n"
+"14\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Area - Borders</emph> tab (charts)"
+msgstr "Cancala(Taattoowwani)<emph>Dhangii - Iddoo Taattoo - Handaaroot</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151293\n"
+"15\n"
+"help.text"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
+msgstr "<variable id=\"linienstile\"><emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wantoota - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaatoo - </emph></caseinline></switchinline><emph>Sarara - Akkaataalee Sararaa</emph> caancala </variable>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149317\n"
+"16\n"
+"help.text"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
+msgstr "<variable id=\"linienenden\">Cancala <emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wanta - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaatoo - </emph></caseinline></switchinline><emph>Sarara - Halatoota Xiyyaa</emph> fili </variable>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3156082\n"
+"17\n"
+"help.text"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area</emph>"
+msgstr "<emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wanta - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaatoo - Iddoo </emph></caseinline></switchinline><emph>Bal'ina</emph> fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3148922\n"
+"18\n"
+"help.text"
+msgid "On <emph>Line and Filling</emph> Bar, click"
+msgstr "Kabala <emph>Sarara fi Guutinsa</emph>rratti,"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3156424\n"
+"help.text"
+msgid "<image id=\"img_id3150868\" src=\"cmd/sc_fillstyle.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150868\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150868\" src=\"cmd/sc_fillstyle.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150868\">Sajoo</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150393\n"
+"19\n"
+"help.text"
+msgid "Area"
+msgstr "Bal'ina"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154948\n"
+"20\n"
+"help.text"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
+msgstr "<emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wanta - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaatoo - </emph></caseinline></switchinline><emph>Bal'ina - Bal'ina</emph> fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145607\n"
+"22\n"
+"help.text"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgstr "Cancala(Dhiheessa Galmee)<emph>Dhangii - Halatootaa</emph>fi Dhangeessuu fili - Baafata halqaraa banitii Cancala<emph>Fooyyeessi/Haaraa - Bal'ina</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3152922\n"
+"23\n"
+"help.text"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
+msgstr "Cancala(Galmeelee Taattoo)<emph>Dhangii - Matadure - Arfii</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3157894\n"
+"24\n"
+"help.text"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
+msgstr "Cancala(Galmeelee Taattoo)<emph>Dhangii - Waayoo</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3144444\n"
+"25\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
+msgstr "Cancala(Galmeelee Taattoo)<emph>Dhangii - Dhaaba Taattoo - Bal'ina</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3156543\n"
+"26\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
+msgstr "Cancala(Galmeelee Taattoo)<emph>Dhangii - Afala Taaattoo - Bal'ina</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150685\n"
+"27\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
+msgstr "Cancala(Galmeelee Taattoo)<emph>Dhangii - Bal'ina Taattoo - Bal'ina</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149664\n"
+"120\n"
+"help.text"
+msgid "Choose <emph>Format - Page - Background</emph> tab (in $[officename] Impress and $[officename] Draw)"
+msgstr "Cancala <emph>Dhangii - Fuula - Duubbee</emph>(Impressi $[officename] fi Fakkassaa $[officename] keessaa)fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3163820\n"
+"28\n"
+"help.text"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
+msgstr "Cancala <emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wanta - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaatoo - </emph></caseinline></switchinline><emph>Bali'ina - Halluuwwan</emph> fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3152462\n"
+"29\n"
+"help.text"
+msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Colors</emph> tab"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154985\n"
+"141\n"
+"help.text"
+msgid "Choose <emph>Format - Area - Transparency</emph> tab (drawing documents)"
+msgstr "Cancala(Galmeelee Fakkassaa)<emph>Dhangii - Bal'ina - Iftoomina</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145365\n"
+"142\n"
+"help.text"
+msgid "Choose <emph>Format - Area - Transparency</emph> tab (presentation documents)"
+msgstr "Cancala(Galmeelee Dhiheessa)<emph>Dhangii - Bal'ina - Iftoomina</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151117\n"
+"143\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Wall - Transparency</emph> tab (chart documents)"
+msgstr "Cancala(Galmeelee Taattoo)<emph>Dhangii - Dhaaba Taattoo - Iftoomina</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3147326\n"
+"144\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Area - Transparency</emph> tab (chart documents)"
+msgstr "Cancala(Galmeelee Taattoo)<emph>Dhangii - Bal'ina Taatoo - Iftoomina</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154920\n"
+"145\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Floor - Transparency</emph> tab (chart documents)"
+msgstr "Cancala(Galmeelee Taattoo)<emph>Dhangii - Afala Taaattoo - Iftoomina</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145591\n"
+"146\n"
+"help.text"
+msgid "Choose <emph>Format - Title - All Titles - Transparency</emph> tab (chart documents)"
+msgstr "Cancala(Galmeelee Taattoo)<emph>Dhangii - Matadure - Matadurewwan mara - Iftoomina</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145750\n"
+"147\n"
+"help.text"
+msgid "Choose <emph>Format - Title - Main Title - Transparency </emph>tab (chart documents)"
+msgstr "Cancala Iftoomina(Galmeelee taatoo) <emph>Dhangii - Mata duree - Mataduree Ijoo - Iftoomina</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3148556\n"
+"148\n"
+"help.text"
+msgid "Choose <emph>Format - Title - Subtitle - Transparency</emph> tab (chart documents)"
+msgstr "Cancala(Galmeelee taatoo) <emph>Dhagii -Mataduree - Mataduree Xiqqaa - Iftoomina</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3163710\n"
+"149\n"
+"help.text"
+msgid "Choose <emph>Format - Title - Title (X Axis) - Transparency</emph> tab (chart documents)"
+msgstr "Cancala Iftoomina(Galmeelee taatoo) <emph>Dhangii - Mata duree - Mata duree (Siiqqee X)- Iftoomina</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150487\n"
+"150\n"
+"help.text"
+msgid "Choose <emph>Format - Title - Title (Y Axis) - Transparency</emph> tab (chart documents)"
+msgstr "Cancala Iftoomina(Galmeelee taatoo) <emph>Dhangii - Mata duree - Mata duree (Siiqqee Y)- Iftoomina</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154320\n"
+"151\n"
+"help.text"
+msgid "Choose <emph>Format - Title - Title (Z Axis) - Transparency</emph> tab (chart documents)"
+msgstr "Cancala Iftoomina(Galmeelee taatoo) <emph>Dhangii - Mata duree - Mata duree (Siiqqee Z)- Iftoomina</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151113\n"
+"152\n"
+"help.text"
+msgid "Choose <emph>Format - Object Properties - Data Point - Transparency</emph> - tab (chart documents)"
+msgstr "Cancala(Galmeelee taatoo) <emph>Dhangii - Amaloota Wantaa - Qaphxii Deetaa - Iftoomina</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149266\n"
+"153\n"
+"help.text"
+msgid "Choose <emph>Format - Object Properties - Data Series - Transparency</emph> tab (chart documents)"
+msgstr "Cancala(Galmeelee taatoo) <emph>Dhangii - Amaloota Wantaa - Deetaa walfannee - Iftoomina</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150011\n"
+"30\n"
+"help.text"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
+msgstr "<variable id=\"schatte\">Cancala <emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wanta - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaatoo -</emph></caseinline></switchinline><emph>Bal'ina - Gaaddidduu</emph> fili </variable>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3147441\n"
+"31\n"
+"help.text"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
+msgstr "<variable id=\"verlauf\">Cancala <emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wanta - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaatoo - </emph></caseinline></switchinline><emph>Bal'ina - Garagartoota</emph> fili </variable>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3155308\n"
+"32\n"
+"help.text"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
+msgstr "<variable id=\"schraffur\">>Cancala <emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wanta - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaatoo - </emph></caseinline></switchinline><emph>Saxaatoo - Bal'ina - Falfaluu</emph> fili </variable>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145800\n"
+"33\n"
+"help.text"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
+msgstr "<variable id=\"bitmap\">Cancala <emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wanta - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaatoo - </emph></caseinline></switchinline><emph>Saxaatoo - Bal'ina - Suurxiqqoo</emph> fili </variable>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145251\n"
+"34\n"
+"help.text"
+msgid "<variable id=\"formattext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline></variable>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3152810\n"
+"35\n"
+"help.text"
+msgid "<variable id=\"text\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text</emph> tab</variable>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151060\n"
+"36\n"
+"help.text"
+msgid "<variable id=\"laufext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text Animation</emph> tab</variable>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149911\n"
+"37\n"
+"help.text"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size</emph>"
+msgstr "<emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wanata -</emph></caseinline><caseinline select=\"CALC\"><emph>saxaatoo - </emph></caseinline></switchinline><emph>Qubanno fi Hamamtaa</emph> fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3156286\n"
+"89\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">Furtuu F4 </caseinline></switchinline>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153052\n"
+"help.text"
+msgid "<image id=\"img_id3150965\" src=\"cmd/sc_transformdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150965\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150965\" src=\"cmd/sc_transformdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150965\">Sajoo</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149938\n"
+"39\n"
+"help.text"
+msgid "Position and Size"
+msgstr "Qubannoo fi Hamamtaa"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3148833\n"
+"170\n"
+"help.text"
+msgid "Open the context menu for the object - choose <emph>Name</emph>"
+msgstr "Baafata halqara Wantaaf bani<emph>Maqaa</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id411999\n"
+"help.text"
+msgid "Open the context menu for the object - choose <emph>Description</emph>"
+msgstr "Baafata halqara Wantaaf bani<emph>Ibsa</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153099\n"
+"40\n"
+"help.text"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
+msgstr "<variable id=\"position2\"><emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wantaa - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaxa - </emph></caseinline></switchinline><emph>Caancala Qabannoo fi Hamamtaa - Qabannoo fi Hamamtaa </emph> fili </variable>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3152973\n"
+"42\n"
+"help.text"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Rotation</emph> tab"
+msgstr "<emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wanta - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaanoo- </emph></caseinline></switchinline><emph>Qabannoo fi Hamamtaa - Marsaa</emph> caancalaa filadhu."
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3148495\n"
+"help.text"
+msgid "<image id=\"img_id3146898\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146898\">Icon</alt></image>"
+msgstr "<image id=\"img_id3146898\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146898\">Sajoo</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3146790\n"
+"44\n"
+"help.text"
+msgid "Rotate"
+msgstr "Marsuu"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145666\n"
+"45\n"
+"help.text"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
+msgstr "<variable id=\"ecke\">Cancala <emph>Dhangii</emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> - Wanta</emph></caseinline><caseinline select=\"CALC\"><emph>Saxaatoo - </emph></caseinline></switchinline><emph> Qubannoo fi Hamamtaa - Raadiyesii dhuufa xiyyoo</emph>fili </variable>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3146081\n"
+"46\n"
+"help.text"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
+msgstr "<variable id=\"legende\">Cancala <emph>Dhangii - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Wanta - </emph></caseinline><caseinline select=\"CALC\"><emph>Saxaatoo - </emph></caseinline></switchinline><emph>Qabannoo fi Hamamtaa - Waayoo</emph> fili (balbaloo boca baramoof hin ta'in,balbaloo barruuf sanduuqa qofa kan ta'uu) </variable>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3083283\n"
+"172\n"
+"help.text"
+msgid "Choose <emph>Edit - Points</emph>"
+msgstr "<emph>Qaphxiilee - Guulaali</emph>Fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145642\n"
+"47\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Open context menu - choose <emph>Edit Points</emph></caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open context menu - choose <emph>Edit Points</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Baafata halqaraa bani - <emph>Qaphxiilee Guulaali</emph> fili</caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Baafata halqaraa bani -<emph>Qaphxiilee Guulaali</emph></caseinline></switchinline>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149019\n"
+"90\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Furtuu F8 </caseinline><caseinline select=\"IMPRESS\">Furtuu F8 </caseinline></switchinline>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150044\n"
+"help.text"
+msgid "<image id=\"img_id3147100\" src=\"cmd/sc_toggleobjectbeziermode.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147100\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147100\" src=\"cmd/sc_toggleobjectbeziermode.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147100\">Sajoo</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153966\n"
+"49\n"
+"help.text"
+msgid "Edit Points"
+msgstr "Qaphxiilee - Guulaali"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151248\n"
+"50\n"
+"help.text"
+msgid "Choose <emph>Format - Character</emph> (drawing functions)"
+msgstr "<emph>Dhangii - Arfii</emph>(dalagaalee fakkasaa)fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145229\n"
+"121\n"
+"help.text"
+msgid "Open context menu - choose <emph>Character</emph>"
+msgstr "Baafata halqarraa bani - <emph>Arfii</emph> fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151342\n"
+"122\n"
+"help.text"
+msgid "Open context menu - choose <emph>Size</emph>"
+msgstr "Baafata halqarraa bani - <emph>Hamamtaa</emph> fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149255\n"
+"123\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style</emph>"
+msgstr "Baafata halqarraa bani - <emph>Halata</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3155177\n"
+"124\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style - Bold</emph>"
+msgstr "Baafata halqarraa bani - <emph>Halata - Yabbuu</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145766\n"
+"help.text"
+msgid "<image id=\"img_id3156558\" src=\"cmd/sc_bold.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3156558\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156558\" src=\"cmd/sc_bold.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3156558\">Sajoo</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3147001\n"
+"55\n"
+"help.text"
+msgid "Bold"
+msgstr "Yabbuu"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151276\n"
+"125\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style - Italic</emph>"
+msgstr "Baafata halqarraa bani - <emph>Halata - Mirgada</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3159091\n"
+"help.text"
+msgid "<image id=\"img_id3155578\" src=\"cmd/sc_italic.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3155578\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155578\" src=\"cmd/sc_italic.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3155578\">Sajoo</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150234\n"
+"58\n"
+"help.text"
+msgid "Italic"
+msgstr "Mirgada"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154589\n"
+"126\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style - Underline</emph>"
+msgstr "Baafata halqarraa bani - <emph>Halata - Jalmuri</emph> fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145223\n"
+"help.text"
+msgid "<image id=\"img_id3151068\" src=\"cmd/sc_underline.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3151068\">Icon</alt></image>"
+msgstr "<image id=\"img_id3151068\" src=\"cmd/sc_underline.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3151068\">Sajoo</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154715\n"
+"88\n"
+"help.text"
+msgid "Underline"
+msgstr "Jalmari"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145131\n"
+"127\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style - Strikethrough</emph>"
+msgstr "Baafata halqarraa bani - <emph>Halata - Irrasarari</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3158214\n"
+"128\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style - Shadow</emph>"
+msgstr "Baafata halqarraa bani - <emph>Halata - Gaaddidduu</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150207\n"
+"129\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style - Contour</emph>"
+msgstr "Baafata halqarraa bani - <emph>Halata - Rega</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154383\n"
+"130\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style - Superscript</emph>"
+msgstr "Baafata halqarraa bani - <emph>Halata - IrrArfii</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3152767\n"
+"131\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style - Subscript</emph>"
+msgstr "Baafata halqarraa bani - <emph>Halata - JalArfii</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3155377\n"
+"132\n"
+"help.text"
+msgid "Open context menu - choose <emph>Line Spacing</emph>"
+msgstr "Baafata halqaraa bani - <emph>Addaan fageenya Sararaa</emph> fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154475\n"
+"133\n"
+"help.text"
+msgid "Open context menu - choose <emph>Line Spacing - Single</emph>"
+msgstr "Baafata halqaraa bani - <emph>Addaan fageenya Sarara - Altookkee</emph> fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150478\n"
+"134\n"
+"help.text"
+msgid "Open context menu - choose <emph>Line Spacing - 1.5 Lines</emph>"
+msgstr "Baafata halqaraa bani - <emph>Addaan fageenya Sarara - Sararoota 1.5</emph> fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3147167\n"
+"135\n"
+"help.text"
+msgid "Open context menu - choose <emph>Line Spacing - Double</emph>"
+msgstr "Baafata halqaraa bani - <emph>Addaan fageenya Sarara - Dachaa</emph> fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3146978\n"
+"69\n"
+"help.text"
+msgid "Choose <emph>Format - Alignment - Left</emph> (drawing functions)"
+msgstr "<emph>Dhangii - Hiriirsuu - Bitaa</emph>(dalagaalee fakkasaa)fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153009\n"
+"136\n"
+"help.text"
+msgid "Open context menu - choose <emph>Alignment - Left</emph>"
+msgstr "Baafata halqaraa bani <emph>Hiriira - Bitaa</emph> fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3147310\n"
+"help.text"
+msgid "<image id=\"img_id3155370\" src=\"cmd/sc_alignleft.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155370\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155370\" src=\"cmd/sc_alignleft.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155370\">Sajoo</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151336\n"
+"71\n"
+"help.text"
+msgid "Align Left"
+msgstr "Bitaa Hirirsuu"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3155823\n"
+"72\n"
+"help.text"
+msgid "Choose <emph>Format - Alignment - Right</emph> (drawing functions)"
+msgstr "<emph>Dhangii - Hiriirsuu - Mirgaa</emph> (dalagaalee fakkasaa) fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3155762\n"
+"137\n"
+"help.text"
+msgid "Open context menu - choose <emph>Alignment - Right</emph>"
+msgstr "Baafata halqaraa bani <emph>Hiriira - Mirga</emph> fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149408\n"
+"help.text"
+msgid "<image id=\"img_id3154421\" src=\"cmd/sc_alignright.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154421\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154421\" src=\"cmd/sc_alignright.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154421\">Sajoo</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153607\n"
+"74\n"
+"help.text"
+msgid "Align Right"
+msgstr "Mirga Hiriirsuu"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149189\n"
+"75\n"
+"help.text"
+msgid "Choose <emph>Format - Alignment - Centered</emph> (drawing functions)"
+msgstr "<emph>Dhangii - Hiriirsuu - Wiiteeffamaa</emph>(dalagaalee fakkasaa)fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154624\n"
+"138\n"
+"help.text"
+msgid "Open context menu - choose <emph>Alignment - Center</emph>"
+msgstr "Baafata halqaraa bani <emph>Hiriira - Wirtteffamaa</emph> fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153815\n"
+"help.text"
+msgid "<image id=\"img_id3149757\" src=\"cmd/sc_centerpara.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149757\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149757\" src=\"cmd/sc_centerpara.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149757\">Sajoo</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153076\n"
+"77\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Dalgeedhaan Wirtessi Hiriirsi</caseinline><defaultinline> Wirtteffamaa</defaultinline></switchinline>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3146151\n"
+"78\n"
+"help.text"
+msgid "Choose <emph>Format - Alignment - Justified</emph> (drawing functions)"
+msgstr "<emph>Dhangii - Hiriirsuu - Qixeeffamaa</emph>(dalagaalee fakkasaa)fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3168612\n"
+"139\n"
+"help.text"
+msgid "Open context menu - choose <emph>Alignment - Justified</emph>"
+msgstr "Baafata halqaraa bani <emph>Hiriira - Qixeeffamaa</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3156189\n"
+"help.text"
+msgid "<image id=\"img_id3145308\" src=\"cmd/sc_justifypara.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145308\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145308\" src=\"cmd/sc_justifypara.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145308\">Sajoo</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153131\n"
+"80\n"
+"help.text"
+msgid "Justified"
+msgstr "Qixeeffamaa"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150527\n"
+"81\n"
+"help.text"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
+msgstr "<variable id=\"font\">Kabala <emph>Fakkassaa</emph> sajoo <emph>Dalaga bocaquu</emph> cuqaasi</variable>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3144503\n"
+"103\n"
+"help.text"
+msgid "Choose <emph>Format - Group</emph>"
+msgstr "<emph>Dhangii - Tuutee</emph> Fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154854\n"
+"140\n"
+"help.text"
+msgid "Open context menu - choose <emph>Group</emph>"
+msgstr "Baafata halqarraa bani - <emph>Tuutee</emph> fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3157985\n"
+"83\n"
+"help.text"
+msgid "Choose <emph>Format - Group - Group</emph> (text documents, spreadsheets)"
+msgstr "<emph>Dhangii - Tuutee - Tuutee</emph>(Galmeelee barruu, Wardilee)fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3157980\n"
+"104\n"
+"help.text"
+msgid "Choose <emph>Modify - Group</emph> (drawing documents)"
+msgstr "<emph>Fooyyeessi - Tuutee</emph> (Glameelee fakkasaa)fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149508\n"
+"84\n"
+"help.text"
+msgid "Open context menu - choose <emph>Group - Group</emph> (form objects)"
+msgstr "Baafata halaqaraa bani - <emph>Tuutee - Tuutee</emph> (unka wantoota)fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3146858\n"
+"help.text"
+msgid "<image id=\"img_id3154344\" src=\"cmd/sc_formatgroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154344\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154344\" src=\"cmd/sc_formatgroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154344\">Sajoo</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149593\n"
+"113\n"
+"help.text"
+msgid "Group"
+msgstr "Tuutee"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153023\n"
+"85\n"
+"help.text"
+msgid "Choose <emph>Format - Group - Ungroup</emph> (text documents, spreadsheets)"
+msgstr "<emph>Dhangii - Tuutee - Garbaasi</emph> (barruu galmeelee, wardiilee)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3163378\n"
+"105\n"
+"help.text"
+msgid "Choose <emph>Modify - Ungroup</emph> (drawing documents)"
+msgstr "<emph>Fooyyeessi - Garbaasi </emph>(Galmeelee fakkasaa)fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3156038\n"
+"86\n"
+"help.text"
+msgid "Open context menu - choose <emph>Ungroup</emph>"
+msgstr "Baafata halqaraa bani <emph>Grbaasi</emph> fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151300\n"
+"help.text"
+msgid "<image id=\"img_id3150831\" src=\"cmd/sc_formatungroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150831\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150831\" src=\"cmd/sc_formatungroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150831\">Sajoo</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3146894\n"
+"115\n"
+"help.text"
+msgid "Ungroup"
+msgstr "Garbaasi"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153109\n"
+"106\n"
+"help.text"
+msgid "Choose <emph>Format - Group - Exit Group</emph> (text documents, spreadsheets)"
+msgstr "<emph>Dhangii - Tuutee - Tuutee Bahi</emph>(Galmeelee baruu,Wardiilee)fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145678\n"
+"107\n"
+"help.text"
+msgid "Choose <emph>Modify - Exit Group</emph> (drawing documents)"
+msgstr "<emph>Fooyyeessi - Tuutee Bahi</emph>(Galmeelee fakkasaa)fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3152367\n"
+"108\n"
+"help.text"
+msgid "Open context menu - choose <emph>Exit Group</emph>"
+msgstr "Baafata halqarraa bani - <emph>Tuutee Bahi</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3158402\n"
+"help.text"
+msgid "<image id=\"img_id3149422\" src=\"cmd/sc_leavegroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149422\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149422\" src=\"cmd/sc_leavegroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149422\">Sajoo</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3155347\n"
+"117\n"
+"help.text"
+msgid "Exit Group"
+msgstr "Tuutee Bahi"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149129\n"
+"109\n"
+"help.text"
+msgid "Choose <emph>Format - Group - Enter Group</emph> (text documents, spreadsheets)"
+msgstr "<emph>Dhangii - Tuutee - Tuutee galchi</emph> (barruu galmeelee, wardiilee)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145354\n"
+"110\n"
+"help.text"
+msgid "Choose <emph>Modify - Enter Group</emph> (drawing documents)"
+msgstr "<emph>Fooyyeessi - Tuutee Galchi</emph>(Galmeelee fakkasaa)fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149946\n"
+"111\n"
+"help.text"
+msgid "Open context menu - choose <emph>Enter Group</emph>"
+msgstr "Baafata halqaraa bani - <emph>Tuutee Galchi</emph>fili"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3152388\n"
+"help.text"
+msgid "<image id=\"img_id3149900\" src=\"cmd/sc_entergroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149900\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149900\" src=\"cmd/sc_entergroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149900\">Sajoo</alt></image>"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3152547\n"
+"119\n"
+"help.text"
+msgid "Enter Group"
+msgstr "Tuutee Galchi"
+
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
"tit\n"
"help.text"
-msgid "Database"
-msgstr "Kusaa deetaa"
+msgid "Format Menu"
+msgstr "Dhangii Baafata"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"hd_id3154689\n"
+"00040503.xhp\n"
+"hd_id3155757\n"
"1\n"
"help.text"
-msgid "Database"
-msgstr "Kusaa deetaa"
+msgid "Format Menu"
+msgstr "Dhangii Baafata"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3152876\n"
-"7\n"
+"00040503.xhp\n"
+"par_id3147294\n"
+"2\n"
"help.text"
-msgid "<variable id=\"DBTab\">In a database file window, choose <emph>Tools - Table Filter</emph></variable>"
-msgstr "<variable id=\"DBTab\">Foddaa faayilii kuusaa deetaa kessaatti, <emph>Meshaalee - Gabatee Gingilchaa</emph>filadhu</variable>"
+msgid "Choose <emph>Format - Row - Height</emph>"
+msgstr "<emph>Dhangii - Tarree - Hojjaa</emph> Fili"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3153244\n"
-"57\n"
+"00040503.xhp\n"
+"par_id3149551\n"
+"3\n"
"help.text"
-msgid "<variable id=\"DBAbfragen\"><emph>View - Database Objects - Queries</emph></variable>"
-msgstr "<variable id=\"DBAbfragen\"><emph>Mul'annoo - Wantoota Kuusdeetaa - Gaafata</emph></variable>"
+msgid "Open context menu of a row header in an open database table - choose <emph>Row Height</emph>"
+msgstr "Baafata halqaraa bani Jalaantoo tarree gabtee kuusaa deetaa banaa ta'ee keessaa bani -<emph>Tarree - Hojjaa</emph> fili"
-#: 00000450.xhp
-#, fuzzy
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3147294\n"
+"00040503.xhp\n"
+"par_id3153136\n"
"4\n"
"help.text"
-msgid "<variable id=\"Typ\">In a database file window, choose <emph>Edit - Database - Properties - Advanced Settings</emph> tab</variable>"
-msgstr "<variable id=\"Typ\">Foddaa faayilii kuusdeetaa keessatti, <emph>Gulaala - Kuusdeetaa - Amaloota- Qindaa'ina olaansii</emph> cancaala filadhu</variable>"
+msgid "Choose <emph>Format - Column - Width</emph>"
+msgstr "<emph>Dhangii - Tarjaa - Yabbina</emph> fili"
-#: 00000450.xhp
-#, fuzzy
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3159411\n"
+"00040503.xhp\n"
+"par_id3150756\n"
"5\n"
"help.text"
-msgid "<variable id=\"Datenquelle\">In a database file window of type ODBC or Address book, choose Edit - Database - Connection Type</variable>"
-msgstr "<variable id=\"Datenquelle\">Foddaa faayiili kuusdeetaa kessaa akaakuu ODBC yookin teessoo kitaaba, Gulaaluu - Kuusdeetaa - Akaakuu Walindhaa </variable> filadhu."
+msgid "Open context menu of a column header in a database table - choose <emph>Column Width</emph>"
+msgstr "Baafata halqaraa bani Iraantoo tarjaa gabtee kuusaa deetaa keessaa bani -<emph>Yabbina Tarjaa</emph>fili"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3149119\n"
+"00040503.xhp\n"
+"par_id3148668\n"
+"11\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Numbers</emph> tab </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Numbers</emph> tab </caseinline></switchinline>"
+
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id3152349\n"
+"13\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Styles and Formatting</emph> - open context menu and choose <emph>Modify/New - Numbers</emph> tab </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><emph>Dhaagii- Haalatoota fi Dhangeessu</emph> fili - baafata halgara bani - cancala <emph>foyyessii/haraa - Lakkofsota</emph> fili </caseinline></switchinline>"
+
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id3161459\n"
+"14\n"
+"help.text"
+msgid "Open context menu for a column header in an open database table - choose <emph>Column Format - Format</emph> tab"
+msgstr "Baafatta haalqara irrantoo tarjaaf, gabattee kussuu deetaa kessaa banii cancala <emph>Dhangii Tarjaa - Dhangii</emph> fili"
+
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id3147531\n"
+"15\n"
+"help.text"
+msgid "Choose <emph>Format - Axis - Y Axis - Numbers</emph> tab (Chart Documents)"
+msgstr "Cancala (Galmeelee taattoo )<emph>Dhangii - Siqqee - Siqqee Y Lakkoofsoota</emph> fili"
+
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id3150823\n"
+"32\n"
+"help.text"
+msgid "Also as <emph>Number Format</emph> dialog for tables and fields in text documents: Choose <emph>Format - Number Format</emph>, or choose <emph>Insert - Fields - Other - Variables</emph> tab and select \"Additional formats\" in the <emph>Format</emph> list."
+msgstr "Akkuma qaaqni <emph>Dhangii Lakkofsaa</emph> galmelee barruu kessattii gabattewwaniif ta'uuttii: <emph>Dhangii - Dhangii Lakkoofsaa</emph> filii, yookin cancala <emph>Saaguu -Dirrewwan - Kabiroo - Jijjiramoota</emph> filii, akkasuumas <emph>Dhangii</emph> tarree dhangii keessaa fili."
+
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id3154923\n"
"6\n"
"help.text"
-msgid "<variable id=\"Verzeichnis\">Path selection button in various Wizards / <emph>Edit</emph> Buttons for some entries in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Paths</emph></variable>"
-msgstr ""
+msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\">Choose <emph>Format - Title - Main Title - Alignment</emph> tab </caseinline><defaultinline>Choose <emph>Format - Cells - Alignment</emph> tab</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"><emph>Dhangii - Mataduree - MatadureeIjoo - Hiriira</emph> caancalaa </caseinline><defaultinline> <emph>Dhangii - Man'eewwanii - Hiriira</emph> cancalaa</defaultinline>filadhu</switchinline>"
-#: 00000450.xhp
-#, fuzzy
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3154497\n"
-"8\n"
+"00040503.xhp\n"
+"par_id3149457\n"
+"7\n"
"help.text"
-msgid "<variable id=\"ODBC\">In a database file window of type ODBC, choose Edit - Database - Connection Type</variable>"
-msgstr "<variable id=\"ODBC\">Akaakuu foddaa fayilii ODBC kessaatti, Gulaali -Kuusaa deetaa - Walindhaa fili </variable>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><defaultinline>Open context menu of a column header in a database table - choose <emph>Column Format - Alignment</emph> tab</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><defaultinline>Baafata haalqara irrantoo tarjaa, gabattee kussaa deetaa kessaa fili - cancala <emph>Dhangii Tarjaa - Hiriira</emph>fili</defaultinline></switchinline>"
-#: 00000450.xhp
-#, fuzzy
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3149355\n"
-"61\n"
+"00040503.xhp\n"
+"par_id3150400\n"
+"8\n"
"help.text"
-msgid "<variable id=\"ldap\">In a database file window of type Address book - LDAP, choose Edit - Database - Properties</variable>"
-msgstr "<variable id=\"ldap\">Akaakuu foddaa fayilii kuusaa deetaa kitaabaa teessoo - LDAP keessaatti, Gulaallii - Kuusaa deetaa - Amaalootaa fili </variable>"
+msgid "<variable id=\"tabform\">Open context menu of a row header in a database table - choose <emph>Table Format</emph></variable>"
+msgstr "<variable id=\"tabform\">Baafata haalqara irrantoo tarree, gabatee kusaa deetaa kessaa banii <emph>Dhangii Gabatee</emph>fili</variable>"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3157896\n"
-"9\n"
+"00040503.xhp\n"
+"par_id3149650\n"
+"33\n"
"help.text"
-msgid "<variable id=\"JDBC\">In a database file window of type JDBC, choose <emph>Edit - Database - Properties</emph></variable>"
-msgstr "<variable id=\"JDBC\">Akaakuu foddaa fayilii JDBC kessaatti <emph>Gulaali - Kuusaa deetaa - Walindhaa </emph>fili</variable>"
+msgid "<variable id=\"spaltform\">Open context menu of a column header in a database table - choose <emph>Column Format</emph></variable>"
+msgstr "<variable id=\"spaltform\">Baafatta haalqara irrantoo tarjaa, gabattee kussaa deetaa kessaa bani <emph>Dhagii Tarjaa</emph>fili</variable>"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3148548\n"
-"81\n"
+"00040503.xhp\n"
+"par_id3153799\n"
+"34\n"
"help.text"
-msgid "<variable id=\"mysql\">In a database file window of type MySQL, choose <emph>Edit - Database - Properties</emph></variable>"
-msgstr "<variable id=\"mysql\">Akaakuu foddaa faayilii kuussaa deetaa MySQL keessaa, <emph>Gulaali - Kuusaa deetaa - Amalootaa</emph>fili</variable>"
+msgid "<variable id=\"zeilenloeschen\">Context menu for a row header in an open database table - <emph>Delete Rows</emph></variable>"
+msgstr "<variable id=\"zeilenloeschen\">Baafata haalqara irrantoo tarreef gabattee kusaa deetaa kessattii argamuu - <emph>Tarreewwan haqi</emph></variable>"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3149346\n"
-"10\n"
+"00040503.xhp\n"
+"par_id3150495\n"
+"16\n"
"help.text"
-msgid "<variable id=\"dBase\">In a database file window of type dBASE, choose <emph>Edit - Database - Properties</emph></variable>"
-msgstr "<variable id=\"dBase\">Akaakuu foddaa faayilii kuusaa deetaa dBASE keesaa, <emph>Gulaali - Kuusaa deetaa - Amaloota</emph>fili</variable>"
+msgid "Choose <emph>Modify - Flip</emph> ($[officename] Draw)"
+msgstr "<emph>Foyyessii -Melchii</emph> ($[officename] Fakkasaa) fili"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3147043\n"
-"11\n"
+"00040503.xhp\n"
+"par_id3155742\n"
+"17\n"
"help.text"
-msgid "<variable id=\"dBasein\">In a database file window of type dBASE, choose <emph>Edit - Database - Properties</emph>, click <emph>Indexes</emph></variable>"
-msgstr "<variable id=\"dBasein\">Akaakuu foddaa fayilii kuusaa deetaa dBASE keessaa, <emph>Gulaalii - kuusaa detaa - Amaloota</emph>fili<emph>Kasaa</emph></variable>"
+msgid "Choose <emph>Format - Graphics - Graphics</emph> tab"
+msgstr "Cancala <emph>Dhangii - Saxattoo - Saxattoo</emph> fili"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3154317\n"
-"12\n"
+"00040503.xhp\n"
+"par_id3158407\n"
+"35\n"
"help.text"
-msgid "<variable id=\"Text\">In a database file window of type Text, choose <emph>Edit - Database - Properties</emph></variable>"
-msgstr "<variable id=\"Text\">Akaakuu foddaa fayilii kuusaa deetaa barruu keessaa, <emph>Gulaali - Kuusaa deetaa - Amalootaa</emph>fili</variable>"
+msgid "Open context menu - choose <emph>Flip</emph> (presentation documents)"
+msgstr "Baafatta haalqara <emph>Melchii</emph> (galmeelee dhiyeessaa) fili"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3150774\n"
+"00040503.xhp\n"
+"par_id3150290\n"
"20\n"
"help.text"
-msgid "<variable id=\"ADO\">In a database file window of type MS ADO, choose <emph>Edit - Database - Properties</emph></variable>"
-msgstr "<variable id=\"ADO\">Akaakuu foddaa fayilii kuussaa deetaa MS ADO keessaa, <emph>Gulaali - Kuusaa deetaa - Amalootaa</emph>fili</variable>"
+msgid "Choose <emph>Modify - Flip - Vertically</emph> ($[officename] Draw)"
+msgstr "<emph>Foyyessii - Melchii - Sarjiina</emph> ($[officename] Fakkaasaa) fili"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3151110\n"
+"00040503.xhp\n"
+"par_id3153179\n"
"21\n"
"help.text"
-msgid "<variable id=\"SQLStatement\">In a database file window, choose <emph>Tools - SQL</emph></variable>"
-msgstr "<variable id=\"SQLStatement\">Foddaa faayilii kuusaa detaa keessaatti <emph>Meshaalee - SQL</emph>fili</variable>"
+msgid "Choose <emph>Format - Graphics - Graphics</emph> tab"
+msgstr "Cancala <emph>Dhangii - Saxattoo - Saxattoo</emph> fili"
-#: 00000450.xhp
-#, fuzzy
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3147209\n"
-"22\n"
+"00040503.xhp\n"
+"par_id3157960\n"
+"36\n"
"help.text"
-msgid "<variable id=\"Abfragen\">In a database file window, click the <emph>Queries</emph> icon</variable>"
-msgstr "<variable id=\"Abfragen\">Foddaa fayiilii kuusaa deetaa keessaa, <emph>Gaafata</emph> sajoo</variable> cuqaasi"
+msgid "Open context menu - choose <emph>Flip - Vertically</emph> (presentation documents)"
+msgstr "Bafata haalqara banii- <emph>Melki - Sarjiina</emph>(galmeelee dhiyeessaa) fili"
-#: 00000450.xhp
-#, fuzzy
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3153880\n"
-"62\n"
+"00040503.xhp\n"
+"par_id3153369\n"
+"26\n"
"help.text"
-msgid "<variable id=\"Tabellen\">In a database file window, click the <emph>Tables</emph> icon</variable>"
-msgstr "<variable id=\"Tabellen\">Fooddaa fayilii kuusaa deetaa keessaa, <emph>Gabatee</emph> sajoo </variable>filii cuqaasi"
+msgid "Choose <emph>Modify - Flip - Horizontally</emph> ($[officename] Draw)"
+msgstr "Foyyessii <emph>Fooyyesa - Melchii - Sarjiina </emph>($[officename] fili"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3153760\n"
-"64\n"
+"00040503.xhp\n"
+"par_id3147348\n"
+"27\n"
"help.text"
-msgid "<variable id=\"tabellenentwurf\">In a database file window, click the Tables icon. Choose Insert -<emph> Table Design</emph> or <emph>Edit - Edit</emph></variable>"
-msgstr "<variable id=\"tabellenentwurf\">Fooddaa faayilii kuusaa deetaa keessaa, sagoo gabatee cuqaasi. Saaguu - <emph> Gabatee Saxaxaa </emph> yookin <emph>Gulaala - Gulaala</emph>filadhu</variable>"
+msgid "Choose <emph>Format - Graphics</emph>, and then click the <emph>Graphics</emph> tab"
+msgstr "<emph>Dhangii - Saxaatoo</emph> Fili kana booda cancala <emph>Saxaatoo</emph> cuqaasi"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3156329\n"
-"65\n"
+"00040503.xhp\n"
+"par_id3156106\n"
+"42\n"
"help.text"
-msgid "<variable id=\"indexentwurf\">In a database file window, click the Tables icon. Choose <emph>Insert - Table Design</emph> or <emph>Edit - Edit</emph></variable>"
-msgstr "<variable id=\"indexentwurf\">Foddaa faayilii kuusaa deeta keessaa, sajoo Gabatee cuqaasi. <emph>Saaguu - Gabatee Saxaxa</emph> yookin <emph>Gulaali - Gulaali</emph>fili</variable>"
+msgid "Choose <emph>Format - Flip - Horizontally</emph>"
+msgstr "<emph>Dhangii - Meelchi - Sarjinaa</emph> Fili"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3154047\n"
-"23\n"
+"00040503.xhp\n"
+"par_id3152578\n"
+"37\n"
"help.text"
-msgid "<variable id=\"AbfrageNeu\">In a database file window, choose <emph>Insert - Query (Design view)</emph></variable>"
-msgstr "<variable id=\"AbfrageNeu\">Foddaa faayilii kuusdeetaa keessaa, <emph>Saaguu - Gaafata (Mul'annoo Saxaxa)</emph></variable>"
+msgid "Right-click a selected object, and then choose <emph>Flip - Horizontally</emph> ($[officename] Impress)"
+msgstr "Wanta filatamee Mirga - cuqaasi, kana booda <emph>Meelchi - Sarjinaa</emph> (Imprassii$[officename])fili"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3149579\n"
-"24\n"
+"00040503.xhp\n"
+"par_id3147318\n"
+"38\n"
"help.text"
-msgid "<variable id=\"entwab\">In a database file window, click the <emph>Queries</emph> icon, then choose <emph>Edit - Edit</emph></variable>"
-msgstr "<variable id=\"entwab\">Foodaa faayilii kuussaa deetaa keessaa, sajoo <emph>Gaaftaalee</emph> cuqaasi, kana booda <emph>Guulaalii - Guulaalii</emph> fili</variable>"
+msgid "Choose <emph>Modify - Distribution</emph> ($[officename] Draw)"
+msgstr "<emph>Fooyyeessi - Tamsa'ina</emph> (Fakkassaa$[officename])Fili"
-#: 00000450.xhp
-#, fuzzy
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3149902\n"
-"25\n"
+"00040503.xhp\n"
+"par_id3149064\n"
+"39\n"
"help.text"
-msgid "<variable id=\"FehlendesElement\">In a database file window, click the <emph>Queries</emph> icon, then choose <emph>Edit - Edit</emph>. When referenced fields no longer exist, you see this dialog</variable>"
-msgstr "<variable id=\"FehlendesElement\">Foddaa faayilii kuusa deetaa keessatti, <emph>Gaafata</emph> sajoo cuqaasii, <emph>Gulaala - Gulaala</emph>filadhu. Dirreen wabii hammana yoo jiraachuu baate, qaaqa kana ilaali </variable>"
+msgid "Open context menu - choose <emph>Distribution</emph> ($[officename] Impress)"
+msgstr "aafata halqara bani - <emph>Tamsa'ina</emph> ($[officename] Imprassii)Fili"
-#: 00000450.xhp
-#, fuzzy
+#: 01000000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3159166\n"
+"01000000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Showing and Hiding Docked Windows"
+msgstr "Foodaalee hidhaman Mul'isuu fi Dhooksuu"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"hd_id3085157\n"
+"1\n"
+"help.text"
+msgid "Showing and Hiding Docked Windows"
+msgstr "Foodaalee hidhaman Mul'isuu fi Dhooksuu"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id3149948\n"
+"2\n"
+"help.text"
+msgid "Every <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"docked\">docked</link> window has an icon to control the display properties of the window."
+msgstr "Tokkon tokkoon <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"docked\">Hidhaa</link> foodaaleen kanneen sajoo agarsiisa amaloota foodaalee ittin to'atan qabuu."
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id3150502\n"
+"3\n"
+"help.text"
+msgid "To show or hide a docked window, click the icon."
+msgstr "Fodaalee hidhaman mul'isuuf yookin dhooksuuf, sajoo cuqaasi."
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"hd_id3150465\n"
+"13\n"
+"help.text"
+msgid "AutoShow and AutoHide Docked Windows"
+msgstr "Foodaa hidhamee Ofagarsiisani Ofdhooksan"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id3155504\n"
+"14\n"
+"help.text"
+msgid "You can click the edge of a hidden docked window to open the window."
+msgstr "Foodaa banuuf, qaree foodaa hidhamee dhookfamee cuqaasuu dandeessa."
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id3153257\n"
+"15\n"
+"help.text"
+msgid "The docked window closes automatically when you move the mouse pointer outside of the window."
+msgstr "Yemuu qaree hantuuttee foodichaan alaatti sochoftu, foodaan cufamee yeruuma santi cufama."
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id3154046\n"
+"16\n"
+"help.text"
+msgid "Multiple docked windows act as a single window in AutoShow/AutoHide mode."
+msgstr "Halala OlAgarsiisaa fi OlDhooksaa keessatti foodaaleen hidhaman akka foodaa altokketti dalagu."
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"hd_id3145416\n"
+"18\n"
+"help.text"
+msgid "Drag and Drop"
+msgstr "Harkiisi Akkasumaas Kaayi"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id3149578\n"
+"19\n"
+"help.text"
+msgid "If you drag an object over the edge of a hidden docked window, the window opens in AutoShow mode."
+msgstr "Yoo wantoota gara qarree foodaa hidhamee iirratti sochoftee,foodichi haalata OfAgarsiisaatin banama."
+
+#: 01010000.xhp
+msgctxt ""
+"01010000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Gallery context menu"
+msgstr "Baafata Halqara Kuusaa Faayaa"
+
+#: 01010000.xhp
+msgctxt ""
+"01010000.xhp\n"
+"hd_id3150672\n"
+"1\n"
+"help.text"
+msgid "Gallery context menu"
+msgstr "Baafata Halqara Kuusaa Faayaa"
+
+#: 01010000.xhp
+msgctxt ""
+"01010000.xhp\n"
+"par_id3083278\n"
+"3\n"
+"help.text"
+msgid "<ahelp hid=\"HID_GALLERY_MN_ADDMENU\">Defines how a selected graphic object is inserted into a document.</ahelp>"
+msgstr "<ahelp hid=\"HID_GALLERY_MN_ADDMENU\">Wantootnisaxoota filataman akkamitti galmee keessatti akka sagaman hika.</ahelp>"
+
+#: 01010000.xhp
+msgctxt ""
+"01010000.xhp\n"
+"par_id3156053\n"
+"5\n"
+"help.text"
+msgid "<ahelp hid=\"HID_GALLERY_MN_ADD\">Inserts a copy of the selected graphic object directly into the document.</ahelp>"
+msgstr "<ahelp hid=\"HID_GALLERY_MN_ADD\">Garagalcha wantoota saxaatoo kallattidhaan gara galmeeti saaga.</ahelp>"
+
+#: 01010000.xhp
+msgctxt ""
+"01010000.xhp\n"
+"par_id3149038\n"
+"7\n"
+"help.text"
+msgid "<ahelp hid=\"HID_GALLERY_MN_ADD_LINK\">Inserts the selected graphic as a link.</ahelp>"
+msgstr "<ahelp hid=\"HID_GALLERY_MN_ADD_LINK\">Saxaatiicha filatamee akka Geessituutti saaga.</ahelp>"
+
+#: 01010000.xhp
+msgctxt ""
+"01010000.xhp\n"
+"par_id3158428\n"
+"15\n"
+"help.text"
+msgid "<ahelp hid=\"HID_GALLERY_MN_PREVIEW\">The<emph> Preview </emph>command displays the selected graphic.</ahelp>"
+msgstr "<ahelp hid=\"HID_GALLERY_MN_PREVIEW\"><emph> Durargii </emph>ajajni saxaxa filame mul'isa.</ahelp>"
+
+#: 01010000.xhp
+msgctxt ""
+"01010000.xhp\n"
+"par_id3154522\n"
+"19\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_GALLERY_TITLE:EDT_TITLE\">Assigns a title to a selected Gallery object.</ahelp>"
+msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_GALLERY_TITLE:EDT_TITLE\">Mataduree gara Kuusaa Faayaa wantoota filatameetti saaga.</ahelp>"
+
+#: 01010000.xhp
+msgctxt ""
+"01010000.xhp\n"
+"par_id3149750\n"
+"17\n"
+"help.text"
+msgid "<ahelp hid=\"HID_GALLERY_MN_DELETE\">Deletes the selected graphic after confirmation.</ahelp>"
+msgstr "<ahelp hid=\"HID_GALLERY_MN_DELETE\">Saxaatiicha filatamee dhuugoomsuun boodatti haqa..</ahelp>"
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Context Menu of Web Pages in Read-Only Mode"
+msgstr "Baafata halqara fuuloota saphaphuu Halata Dubbisuu-Qofaan"
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3158397\n"
+"1\n"
+"help.text"
+msgid "Context Menu of Web Pages in Read-Only Mode"
+msgstr "Baafata halqara fuuloota saphaphuu Halata Dubbisuu-Qofaan"
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3145348\n"
+"18\n"
+"help.text"
+msgid "<ahelp hid=\"HID_MN_READONLY_SAVEGRAPHIC\">Opens a dialog where you can save the selected graphics.</ahelp>"
+msgstr "<ahelp hid=\"HID_MN_READONLY_SAVEGRAPHIC\">Iddoo saxaatoo filatamee itti olkaa'uu dandeessutti qaaqa bana.</ahelp>"
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3151262\n"
+"31\n"
+"help.text"
+msgid "<ahelp hid=\"HID_MN_READONLY_COPYLINK\">Copies the link at the mouse pointer to the clipboard.</ahelp>"
+msgstr "<ahelp hid=\"HID_MN_READONLY_COPYLINK\">Geessituu qaree hantuutteerraa gara Muraa Faayootti gargalcha.</ahelp>"
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3155934\n"
+"37\n"
+"help.text"
+msgid "<ahelp hid=\"HID_MN_READONLY_COPYGRAPHIC\">Copies a selected graphic to the clipboard.</ahelp>"
+msgstr "<ahelp hid=\"HID_MN_READONLY_COPYGRAPHIC\">Saxaatoo filatamee gara Muuraa Faayootti garagalcha.</ahelp>"
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3145629\n"
+"22\n"
+"help.text"
+msgid "<ahelp hid=\"HID_MN_READONLY_LOADGRAPHIC\">If you have deactivated the graphics display, choose the<emph> Load Graphics </emph>command to make them visible.</ahelp>"
+msgstr "<ahelp hid=\"HID_MN_READONLY_LOADGRAPHIC\">Yoo agarsiisa hin siyeesinee, akka mul'atan taasiisuuf ,ajaja <emph>Saxaatoo Fe'i</emph> fili.</ahelp>"
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3150902\n"
+"24\n"
+"help.text"
+msgid "<ahelp hid=\"HID_MN_READONLY_GRAPHICOFF\">Sets all graphics in the document to be invisible.</ahelp>"
+msgstr "<ahelp hid=\"HID_MN_READONLY_GRAPHICOFF\">Saxaatoo galmee keessaa hunda akka hin mul'ane qindeessa.</ahelp>"
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153910\n"
"26\n"
"help.text"
-msgid "<variable id=\"Joins\">Open query design and choose <emph>Insert - New Relation</emph>, or double-click on a connection line between two tables.</variable>"
-msgstr "<variable id=\"Joins\">Saxaxa gafataa banitii <emph>Saaguu - Qunnamtii Haaraa </emph>, fili yookin sararawwan walindha gabateewwan lamaan giddutti argaman irratti lama cuqaasi.</variable>"
+msgid "<ahelp hid=\"HID_MN_READONLY_PLUGINOFF\">Disables inserted plug-ins.</ahelp> Click this command again to reactivate the <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"plug-ins\">plug-ins</link>."
+msgstr "<ahelp hid=\"HID_MN_READONLY_PLUGINOFF\">Itti-Suuqiiwwan akka deebi'ani ka'aa ta'an.</ahelp> Ajaja kana deebisi cuqaasi <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"plug-ins\">Itti-suuquu</link>."
-#: 00000450.xhp
+#: 01020000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3151245\n"
+"01020000.xhp\n"
+"par_id3148548\n"
+"38\n"
"help.text"
-msgid "<image id=\"img_id3153063\" src=\"cmd/sc_addtable.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153063\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153063\" src=\"cmd/sc_addtable.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153063\">sssssssSajoo</alt></image>"
+msgid "<ahelp hid=\"HID_MN_READONLY_SAVEBACKGROUND\">Allows you to save the background of a Web page.</ahelp>"
+msgstr "<ahelp hid=\"HID_MN_READONLY_SAVEBACKGROUND\">Duubbee fuula Saphaphuu akka olkeessuu si hayyama.</ahelp>"
-#: 00000450.xhp
+#: 01050000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3153896\n"
-"41\n"
+"01050000.xhp\n"
+"tit\n"
"help.text"
-msgid "Insert Tables"
-msgstr "Gabateewwan Saagi"
+msgid "General"
+msgstr "Waligala"
-#: 00000450.xhp
+#: 01050000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3149457\n"
+"01050000.xhp\n"
+"hd_id3158397\n"
+"1\n"
"help.text"
-msgid "<image id=\"img_id3147282\" src=\"cmd/sc_dbaddrelation.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147282\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147282\" src=\"cmd/sc_dbaddrelation.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147282\">Sajoo</alt></image>"
+msgid "<link href=\"text/shared/00/01050000.xhp\" name=\"General\">General</link>"
+msgstr "<link href=\"text/shared/00/01050000.xhp\" name=\"General\">Waligala</link>"
-#: 00000450.xhp
+#: 01050000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3159085\n"
-"43\n"
+"01050000.xhp\n"
+"par_id3159242\n"
+"2\n"
"help.text"
-msgid "New Relation"
-msgstr "Qunnamti Haaraa"
+msgid "<ahelp hid=\".\">The<emph> General </emph>tab page lists the general properties of the current theme.</ahelp>"
+msgstr ""
-#: 00000450.xhp
+#: 01050000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3150414\n"
-"47\n"
+"01050000.xhp\n"
+"hd_id3150264\n"
+"3\n"
"help.text"
-msgid "<emph>Find Record</emph> icon on the Table Data bar and Form Design bar"
-msgstr "Sajoo <emph>Kuusaa Barbaadi</emph> Kabala Gabatee kuusaa deetaa fi Unkaa Saxaxa keessaa"
+msgid "Name"
+msgstr "Maqaa"
-#: 00000450.xhp
+#: 01050000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3157962\n"
+"01050000.xhp\n"
+"par_id3154094\n"
+"4\n"
"help.text"
-msgid "<image id=\"img_id3145419\" src=\"cmd/sc_recsearch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145419\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145419\" src=\"cmd/sc_recsearch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145419\">Sajoo</alt></image>"
+msgid "<ahelp hid=\"SVX_EDIT_RID_SVXTABPAGE_GALLERY_GENERAL_EDT_MS_NAME\">Displays the name of the theme.</ahelp> If no name has been assigned, you can type a new name in the text box."
+msgstr "<ahelp hid=\"SVX_EDIT_RID_SVXTABPAGE_GALLERY_GENERAL_EDT_MS_NAME\">Maqiicha dhamsaa mul'isa.</ahelp> Yoo maqaan takkoleen hanga ammaatti hin ramadamnee, sanduuqa barruu keessatti maqaa haaraa Barressuu dandeessa."
-#: 00000450.xhp
+#: 01050000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3157322\n"
-"48\n"
+"01050000.xhp\n"
+"hd_id3147089\n"
+"5\n"
"help.text"
-msgid "Find Record"
-msgstr "Kuusaa Barbaadi"
+msgid "Type"
+msgstr "Akaakuu"
-#: 00000450.xhp
+#: 01050000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3150870\n"
-"49\n"
+"01050000.xhp\n"
+"par_id3145071\n"
+"6\n"
"help.text"
-msgid "<emph>Sort Order</emph> icon on the Table Data bar and Form Design bar"
-msgstr "Sajoo <emph>TArfiiba Fo'i</emph> kabala Gabatee Deetaa fi Unkaa Saxaxarraa"
+msgid "Specifies the object type."
+msgstr "Akaakuu wantaa murteessa."
-#: 00000450.xhp
-#, fuzzy
+#: 01050000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3150393\n"
+"01050000.xhp\n"
+"hd_id3147576\n"
+"7\n"
"help.text"
-msgid "<image id=\"img_id3145606\" src=\"cmd/sc_tablesort.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145606\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153063\" src=\"cmd/sc_addtable.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153063\">sssssssSajoo</alt></image>"
+msgid "Location"
+msgstr "Iddoo"
-#: 00000450.xhp
+#: 01050000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3145745\n"
-"50\n"
+"01050000.xhp\n"
+"par_id3146797\n"
+"8\n"
"help.text"
-msgid "Sort Order"
-msgstr "Tartiba Fo'i"
+msgid "Specifies the complete object path."
+msgstr "Xuurree guutuu wantaa ifteessa."
-#: 00000450.xhp
+#: icon_alt.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3145171\n"
-"55\n"
+"icon_alt.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"allgemein\">In a database file window, choose <emph>Edit - Database - Properties</emph></variable>"
-msgstr "<variable id=\"allgemein\">Foodaa faayilii kuusaa deetaa keessaa,<emph>Guulaali - Kuussaa deetaa - Amaloota</emph>fili</variable>"
+msgid "Standard Icons Alt Texts to be Embedded"
+msgstr "Sajoo Alt barruulee durtii ida'amuu"
-#: 00000450.xhp
-#, fuzzy
+#: icon_alt.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3159252\n"
-"63\n"
+"icon_alt.xhp\n"
+"par_idN10546\n"
"help.text"
-msgid "<variable id=\"tabellecopy\">Drag and drop a table or a query into the table part of another database file window</variable>"
-msgstr "<variable id=\"tabellecopy\">Gabatee yookin gaafata gara kutaa gabatee foodaa faayilii kuusaa deetaa kabirootti harkisii yookin kaayi</variable>"
+msgid "<variable id=\"alt_icon\">Icon </variable>"
+msgstr "<variable id=\"alt_icon\">Sajoo </variable>"
-#: 00000450.xhp
+#: icon_alt.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3148560\n"
-"66\n"
+"icon_alt.xhp\n"
+"par_idN10555\n"
"help.text"
-msgid "<variable id=\"formularneu\">In a database file window, choose<emph> Insert - Form</emph></variable>"
-msgstr "<variable id=\"formularneu\">Foodaa Faayilii kuusaa deetaa keessaa, <emph>Saagi - Unka</emph>fili</variable>"
+msgid "<variable id=\"alt_warning\">Warning Icon </variable>"
+msgstr "<variable id=\"alt_warning\">Sajoo Ofegannoo </variable>"
-#: 00000450.xhp
+#: icon_alt.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3155430\n"
-"67\n"
+"icon_alt.xhp\n"
+"par_idN10564\n"
"help.text"
-msgid "<variable id=\"benutzereinstellungen\">In a database file window, choose <emph>Edit - Database - Properties</emph></variable>"
-msgstr "<variable id=\"benutzereinstellungen\">Fooddaa faayilii kuusaa deetaa keessaa, <emph>Guulaali - Kuusaa - Amaloota</emph>fili</variable>"
+msgid "<variable id=\"alt_tip\">Tip Icon </variable>"
+msgstr "<variable id=\"alt_tip\">Sajoo Qaxxee </variable>"
-#: 00000450.xhp
+#: icon_alt.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3147441\n"
-"69\n"
+"icon_alt.xhp\n"
+"par_idN10573\n"
"help.text"
-msgid "<variable id=\"relationen\">In a database file window, choose <emph>Tools - Relationships</emph></variable>"
-msgstr "<variable id=\"relationen\">Foodaa faayilii kuusaa deetaa keessaa <emph>Meshaalee - Firoominoota</emph>fili</variable>"
+msgid "<variable id=\"alt_note\">Note Icon </variable>"
+msgstr "<variable id=\"alt_note\">Sajoo Yaaddannoo </variable>"
diff --git a/source/om/helpcontent2/source/text/shared/01.po b/source/om/helpcontent2/source/text/shared/01.po
index 04e7dc6dba2..36e133fcf7a 100644
--- a/source/om/helpcontent2/source/text/shared/01.po
+++ b/source/om/helpcontent2/source/text/shared/01.po