/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include #include #ifdef _WIN32 // LO vs WinAPI conflict #undef WB_LEFT #undef WB_RIGHT #include #else #include #include #endif using namespace sd; using namespace std; using namespace osl; BufferedStreamSocket::BufferedStreamSocket( const osl::StreamSocket &aSocket ): StreamSocket( aSocket ), aRet( 0 ), aRead( 0 ), aBuffer(), mSocket( 0 ), usingCSocket( false ) { } BufferedStreamSocket::BufferedStreamSocket( int aSocket ): StreamSocket(), aRet( 0 ), aRead( 0 ), aBuffer(), mSocket( aSocket ), usingCSocket( true ) { } void BufferedStreamSocket::getPeerAddr(osl::SocketAddr& rAddr) { assert ( !usingCSocket ); StreamSocket::getPeerAddr( rAddr ); } sal_Int32 BufferedStreamSocket::write( const void* pBuffer, sal_uInt32 n ) { if ( !usingCSocket ) return StreamSocket::write( pBuffer, n ); else return ::send( mSocket, #if defined(_WIN32) static_cast(pBuffer), #else pBuffer, #endif (size_t) n, 0 ); } void BufferedStreamSocket::close() { if( usingCSocket && mSocket != -1 ) { #ifdef _WIN32 ::closesocket( mSocket ); #else ::close( mSocket ); #endif mSocket = -1; } else ::osl::StreamSocket::close(); } sal_Int32 BufferedStreamSocket::readLine( OString& aLine ) { while ( true ) { // Process buffer first in case data already present. vector::iterator aIt; if ( (aIt = find( aBuffer.begin(), aBuffer.end(), '\n' )) != aBuffer.end() ) { sal_uInt64 aLocation = aIt - aBuffer.begin(); aLine = OString( &(*aBuffer.begin()), aLocation ); aBuffer.erase( aBuffer.begin(), aIt + 1 ); // Also delete the empty line aRead -= (aLocation + 1); SAL_INFO( "sdremote.bluetooth", "recv line '" << aLine << "'" ); return aLine.getLength() + 1; } // Then try and receive if nothing present aBuffer.resize( aRead + 100 ); if ( !usingCSocket) aRet = StreamSocket::recv( &aBuffer[aRead], 100 ); else aRet = ::recv( mSocket, &aBuffer[aRead], 100, 0 ); SAL_INFO( "sdremote.bluetooth", "recv " << aRet << " aBuffer len " << aBuffer.size() ); if ( aRet <= 0 ) { return 0; } // Prevent buffer from growing massively large. if ( aRead > MAX_LINE_LENGTH ) { aBuffer.erase( aBuffer.begin(), aBuffer.end() ); return 0; } aRead += aRet; } } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ fice-7-0'>distro/nisz/libreoffice-7-0 LibreOffice 界面翻译代码仓库文档基金会
aboutsummaryrefslogtreecommitdiff
path: root/source/ka
diff options
context:
space:
mode:
authorAndras Timar <atimar@suse.com>2012-12-03 14:23:40 +0100
committerAndras Timar <atimar@suse.com>2012-12-03 14:23:40 +0100
commit9e3b72859ec7871fdb2884860b54fd2a8de30f3d (patch)
treeffb0efcd5efe600a13dddbc70e9b9328d2681f81 /source/ka
parent965f3562a25b75fc3401d3b44ed96e2e5093ed72 (diff)
update translations for LibreOffice 4.0 beta1
Change-Id: I35e0bf7dfef1541f76508edb962e89bc5d78e339
Diffstat (limited to 'source/ka')
-rw-r--r--source/ka/accessibility/source/helper.po4
-rw-r--r--source/ka/android/sdremote/res/values.po414
-rw-r--r--source/ka/avmedia/source/framework.po15
-rw-r--r--source/ka/avmedia/source/viewer.po7
-rw-r--r--source/ka/basctl/source/basicide.po164
-rw-r--r--source/ka/basctl/source/dlged.po23
-rw-r--r--source/ka/basctl/uiconfig/basicide/ui.po7
-rw-r--r--source/ka/basic/source/classes.po138
-rw-r--r--source/ka/basic/source/sbx.po9
-rw-r--r--source/ka/chart2/source/controller/dialogs.po415
-rw-r--r--source/ka/connectivity/registry/ado/org/openoffice/Office/DataAccess.po5
-rw-r--r--source/ka/connectivity/registry/calc/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/ka/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/ka/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po5
-rw-r--r--source/ka/connectivity/registry/flat/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/ka/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/ka/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po4
-rw-r--r--source/ka/connectivity/registry/kab/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/ka/connectivity/registry/macab/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/ka/connectivity/registry/mork/org/openoffice/Office/DataAccess.po4
-rw-r--r--source/ka/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po7
-rw-r--r--source/ka/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po5
-rw-r--r--source/ka/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/ka/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/ka/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/ka/connectivity/source/resource.po136
-rw-r--r--source/ka/cui/source/customize.po174
-rw-r--r--source/ka/cui/source/dialogs.po452
-rw-r--r--source/ka/cui/source/options.po673
-rw-r--r--source/ka/cui/source/tabpages.po985
-rw-r--r--source/ka/cui/uiconfig/ui.po188
-rw-r--r--source/ka/dbaccess/source/core/resource.po70
-rw-r--r--source/ka/dbaccess/source/ext/macromigration.po46
-rw-r--r--source/ka/dbaccess/source/sdbtools/resource.po9
-rw-r--r--source/ka/dbaccess/source/ui/app.po65
-rw-r--r--source/ka/dbaccess/source/ui/browser.po39
-rw-r--r--source/ka/dbaccess/source/ui/control.po21
-rw-r--r--source/ka/dbaccess/source/ui/dlg.po369
-rw-r--r--source/ka/dbaccess/source/ui/inc.po13
-rw-r--r--source/ka/dbaccess/source/ui/misc.po48
-rw-r--r--source/ka/dbaccess/source/ui/querydesign.po75
-rw-r--r--source/ka/dbaccess/source/ui/relationdesign.po10
-rw-r--r--source/ka/dbaccess/source/ui/tabledesign.po74
-rw-r--r--source/ka/dbaccess/source/ui/uno.po15
-rw-r--r--source/ka/desktop/source/app.po31
-rw-r--r--source/ka/desktop/source/deployment/gui.po92
-rw-r--r--source/ka/desktop/source/deployment/manager.po8
-rw-r--r--source/ka/desktop/source/deployment/misc.po6
-rw-r--r--source/ka/desktop/source/deployment/registry.po8
-rw-r--r--source/ka/desktop/source/deployment/registry/component.po8
-rw-r--r--source/ka/desktop/source/deployment/registry/configuration.po4
-rw-r--r--source/ka/desktop/source/deployment/registry/help.po5
-rw-r--r--source/ka/desktop/source/deployment/registry/package.po3
-rw-r--r--source/ka/desktop/source/deployment/registry/script.po6
-rw-r--r--source/ka/desktop/source/deployment/registry/sfwk.po3
-rw-r--r--source/ka/desktop/source/deployment/unopkg.po12
-rw-r--r--source/ka/desktop/uiconfig/ui.po56
-rw-r--r--source/ka/dictionaries/af_ZA.po3
-rw-r--r--source/ka/dictionaries/an_ES.po3
-rw-r--r--source/ka/dictionaries/ar.po3
-rw-r--r--source/ka/dictionaries/be_BY.po3
-rw-r--r--source/ka/dictionaries/bg_BG.po3
-rw-r--r--source/ka/dictionaries/bn_BD.po3
-rw-r--r--source/ka/dictionaries/br_FR.po3
-rw-r--r--source/ka/dictionaries/ca.po3
-rw-r--r--source/ka/dictionaries/cs_CZ.po3
-rw-r--r--source/ka/dictionaries/da_DK.po3
-rw-r--r--source/ka/dictionaries/de.po3
-rw-r--r--source/ka/dictionaries/el_GR.po3
-rw-r--r--source/ka/dictionaries/en.po3
-rw-r--r--source/ka/dictionaries/en/dialog.po39
-rw-r--r--source/ka/dictionaries/en/dialog/registry/data/org/openoffice/Office.po5
-rw-r--r--source/ka/dictionaries/es.po3
-rw-r--r--source/ka/dictionaries/et_EE.po3
-rw-r--r--source/ka/dictionaries/fr_FR.po3
-rw-r--r--source/ka/dictionaries/gd_GB.po3
-rw-r--r--source/ka/dictionaries/gl.po3
-rw-r--r--source/ka/dictionaries/gu_IN.po3
-rw-r--r--source/ka/dictionaries/he_IL.po3
-rw-r--r--source/ka/dictionaries/hi_IN.po3
-rw-r--r--source/ka/dictionaries/hr_HR.po3
-rw-r--r--source/ka/dictionaries/hu_HU.po3
-rw-r--r--source/ka/dictionaries/hu_HU/dialog.po34
-rw-r--r--source/ka/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po5
-rw-r--r--source/ka/dictionaries/it_IT.po3
-rw-r--r--source/ka/dictionaries/ku_TR.po3
-rw-r--r--source/ka/dictionaries/lt_LT.po3
-rw-r--r--source/ka/dictionaries/lv_LV.po3
-rw-r--r--source/ka/dictionaries/ne_NP.po3
-rw-r--r--source/ka/dictionaries/nl_NL.po3
-rw-r--r--source/ka/dictionaries/no.po3
-rw-r--r--source/ka/dictionaries/oc_FR.po3
-rw-r--r--source/ka/dictionaries/pl_PL.po3
-rw-r--r--source/ka/dictionaries/pt_BR.po5
-rw-r--r--source/ka/dictionaries/pt_BR/dialog.po311
-rw-r--r--source/ka/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po33
-rw-r--r--source/ka/dictionaries/pt_PT.po3
-rw-r--r--source/ka/dictionaries/ro.po3
-rw-r--r--source/ka/dictionaries/ru_RU.po3
-rw-r--r--source/ka/dictionaries/ru_RU/dialog.po16
-rw-r--r--source/ka/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po5
-rw-r--r--source/ka/dictionaries/si_LK.po3
-rw-r--r--source/ka/dictionaries/sk_SK.po3
-rw-r--r--source/ka/dictionaries/sl_SI.po3
-rw-r--r--source/ka/dictionaries/sr.po3
-rw-r--r--source/ka/dictionaries/sv_SE.po3
-rw-r--r--source/ka/dictionaries/sw_TZ.po3
-rw-r--r--source/ka/dictionaries/te_IN.po3
-rw-r--r--source/ka/dictionaries/th_TH.po3
-rw-r--r--source/ka/dictionaries/uk_UA.po3
-rw-r--r--source/ka/dictionaries/vi.po3
-rw-r--r--source/ka/dictionaries/zu_ZA.po3
-rw-r--r--source/ka/editeng/source/accessibility.po4
-rw-r--r--source/ka/editeng/source/editeng.po18
-rw-r--r--source/ka/editeng/source/items.po238
-rw-r--r--source/ka/editeng/source/misc.po8
-rw-r--r--source/ka/editeng/source/outliner.po8
-rw-r--r--source/ka/extensions/source/abpilot.po42
-rw-r--r--source/ka/extensions/source/bibliography.po76
-rw-r--r--source/ka/extensions/source/dbpilots.po58
-rw-r--r--source/ka/extensions/source/propctrlr.po386
-rw-r--r--source/ka/extensions/source/scanner.po27
-rw-r--r--source/ka/extensions/source/update/check.po48
-rw-r--r--source/ka/extensions/source/update/check/org/openoffice/Office.po3
-rw-r--r--source/ka/filter/source/config/fragments/filters.po74
-rw-r--r--source/ka/filter/source/config/fragments/internalgraphicfilters.po46
-rw-r--r--source/ka/filter/source/config/fragments/types.po25
-rw-r--r--source/ka/filter/source/flash.po4
-rw-r--r--source/ka/filter/source/graphicfilter/eps.po3
-rw-r--r--source/ka/filter/source/pdf.po127
-rw-r--r--source/ka/filter/source/t602.po13
-rw-r--r--source/ka/filter/source/xsltdialog.po327
-rw-r--r--source/ka/filter/uiconfig/ui.po121
-rw-r--r--source/ka/forms/source/resource.po62
-rw-r--r--source/ka/formula/source/core/resource.po303
-rw-r--r--source/ka/formula/source/ui/dlg.po40
-rw-r--r--source/ka/fpicker/source/office.po48
-rw-r--r--source/ka/framework/source/classes.po40
-rw-r--r--source/ka/framework/source/services.po8
-rw-r--r--source/ka/helpcontent2/source/auxiliary.po831
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/guide.po87
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/shared.po37399
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/shared/01.po69
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/shared/02.po204
-rw-r--r--source/ka/helpcontent2/source/text/scalc.po186
-rw-r--r--source/ka/helpcontent2/source/text/scalc/00.po201
-rw-r--r--source/ka/helpcontent2/source/text/scalc/01.po49905
-rw-r--r--source/ka/helpcontent2/source/text/scalc/02.po125
-rw-r--r--source/ka/helpcontent2/source/text/scalc/04.po189
-rw-r--r--source/ka/helpcontent2/source/text/scalc/05.po126
-rw-r--r--source/ka/helpcontent2/source/text/scalc/guide.po1424
-rw-r--r--source/ka/helpcontent2/source/text/schart.po98
-rw-r--r--source/ka/helpcontent2/source/text/schart/00.po64
-rw-r--r--source/ka/helpcontent2/source/text/schart/01.po935
-rw-r--r--source/ka/helpcontent2/source/text/schart/02.po27
-rw-r--r--source/ka/helpcontent2/source/text/schart/04.po34
-rw-r--r--source/ka/helpcontent2/source/text/sdraw.po133
-rw-r--r--source/ka/helpcontent2/source/text/sdraw/00.po4
-rw-r--r--source/ka/helpcontent2/source/text/sdraw/01.po5
-rw-r--r--source/ka/helpcontent2/source/text/sdraw/04.po105
-rw-r--r--source/ka/helpcontent2/source/text/sdraw/guide.po281
-rw-r--r--source/ka/helpcontent2/source/text/shared.po1437
-rw-r--r--source/ka/helpcontent2/source/text/shared/00.po1606
-rw-r--r--source/ka/helpcontent2/source/text/shared/01.po5523
-rw-r--r--source/ka/helpcontent2/source/text/shared/02.po16437
-rw-r--r--source/ka/helpcontent2/source/text/shared/04.po314
-rw-r--r--source/ka/helpcontent2/source/text/shared/05.po148
-rw-r--r--source/ka/helpcontent2/source/text/shared/07.po9
-rw-r--r--source/ka/helpcontent2/source/text/shared/autokorr.po50
-rw-r--r--source/ka/helpcontent2/source/text/shared/autopi.po1164
-rw-r--r--source/ka/helpcontent2/source/text/shared/explorer/database.po1922
-rw-r--r--source/ka/helpcontent2/source/text/shared/guide.po2559
-rw-r--r--source/ka/helpcontent2/source/text/shared/optionen.po10379
-rw-r--r--source/ka/helpcontent2/source/text/simpress.po504
-rw-r--r--source/ka/helpcontent2/source/text/simpress/00.po164
-rw-r--r--source/ka/helpcontent2/source/text/simpress/01.po1087
-rw-r--r--source/ka/helpcontent2/source/text/simpress/02.po667
-rw-r--r--source/ka/helpcontent2/source/text/simpress/04.po203
-rw-r--r--source/ka/helpcontent2/source/text/simpress/guide.po647
-rw-r--r--source/ka/helpcontent2/source/text/smath.po70
-rw-r--r--source/ka/helpcontent2/source/text/smath/00.po85
-rw-r--r--source/ka/helpcontent2/source/text/smath/01.po1551
-rw-r--r--source/ka/helpcontent2/source/text/smath/02.po8
-rw-r--r--source/ka/helpcontent2/source/text/smath/04.po28
-rw-r--r--source/ka/helpcontent2/source/text/smath/guide.po106
-rw-r--r--source/ka/helpcontent2/source/text/swriter.po2694
-rw-r--r--source/ka/helpcontent2/source/text/swriter/00.po304
-rw-r--r--source/ka/helpcontent2/source/text/swriter/01.po3302
-rw-r--r--source/ka/helpcontent2/source/text/swriter/02.po3700
-rw-r--r--source/ka/helpcontent2/source/text/swriter/04.po260
-rw-r--r--source/ka/helpcontent2/source/text/swriter/guide.po12384
-rw-r--r--source/ka/instsetoo_native/inc_openoffice/windows/msi_languages.po553
-rw-r--r--source/ka/librelogo/source.po35
-rw-r--r--source/ka/librelogo/source/help/en-US.po2775
-rw-r--r--source/ka/librelogo/source/pythonpath.po136
-rw-r--r--source/ka/librelogo/source/registry/data/org/openoffice/Office.po118
-rw-r--r--source/ka/librelogo/source/registry/data/org/openoffice/Office/UI.po39
-rw-r--r--source/ka/mysqlc/source.po4
-rw-r--r--source/ka/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po3
-rw-r--r--source/ka/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po71
-rw-r--r--source/ka/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po4
-rw-r--r--source/ka/nlpsolver/src/locale.po43
-rw-r--r--source/ka/officecfg/registry/data/org/openoffice/Office.po1932
-rw-r--r--source/ka/officecfg/registry/data/org/openoffice/Office/UI.po7526
-rw-r--r--source/ka/padmin/source.po150
-rw-r--r--source/ka/readlicense_oo/docs.po125
-rw-r--r--source/ka/reportbuilder/java/com/sun/star/report/function/metadata.po8
-rw-r--r--source/ka/reportbuilder/registry/data/org/openoffice/Office.po14
-rw-r--r--source/ka/reportbuilder/registry/data/org/openoffice/Office/UI.po68
-rw-r--r--source/ka/reportbuilder/registry/data/org/openoffice/TypeDetection.po6
-rw-r--r--source/ka/reportbuilder/util.po4
-rw-r--r--source/ka/reportdesign/source/core/resource.po18
-rw-r--r--source/ka/reportdesign/source/ui/dlg.po123
-rw-r--r--source/ka/reportdesign/source/ui/inspection.po84
-rw-r--r--source/ka/reportdesign/source/ui/report.po93
-rw-r--r--source/ka/sc/source/core/src.po13
-rw-r--r--source/ka/sc/source/ui/cctrl.po17
-rw-r--r--source/ka/sc/source/ui/dbgui.po320
-rw-r--r--source/ka/sc/source/ui/docshell.po6
-rw-r--r--source/ka/sc/source/ui/drawfunc.po45
-rw-r--r--source/ka/sc/source/ui/formdlg.po18
-rw-r--r--source/ka/sc/source/ui/miscdlgs.po195
-rw-r--r--source/ka/sc/source/ui/navipi.po40
-rw-r--r--source/ka/sc/source/ui/optdlg.po29
-rw-r--r--source/ka/sc/source/ui/pagedlg.po76
-rw-r--r--source/ka/sc/source/ui/src.po3429
-rw-r--r--source/ka/sc/source/ui/styleui.po25
-rw-r--r--source/ka/sc/uiconfig/scalc/ui.po156
-rw-r--r--source/ka/scaddins/source/analysis.po778
-rw-r--r--source/ka/scaddins/source/datefunc.po46
-rw-r--r--source/ka/sccomp/source/solver.po13
-rw-r--r--source/ka/scp2/source/accessories.po2398
-rw-r--r--source/ka/scp2/source/activex.po4
-rw-r--r--source/ka/scp2/source/base.po12
-rw-r--r--source/ka/scp2/source/calc.po21
-rw-r--r--source/ka/scp2/source/draw.po17
-rw-r--r--source/ka/scp2/source/extensions.po94
-rw-r--r--source/ka/scp2/source/gnome.po4
-rw-r--r--source/ka/scp2/source/graphicfilter.po32
-rw-r--r--source/ka/scp2/source/impress.po23
-rw-r--r--source/ka/scp2/source/javafilter.po26
-rw-r--r--source/ka/scp2/source/kde.po4
-rw-r--r--source/ka/scp2/source/math.po12
-rw-r--r--source/ka/scp2/source/onlineupdate.po4
-rw-r--r--source/ka/scp2/source/ooo.po554
-rw-r--r--source/ka/scp2/source/python.po6
-rw-r--r--source/ka/scp2/source/quickstart.po4
-rw-r--r--source/ka/scp2/source/sdkoo.po4
-rw-r--r--source/ka/scp2/source/smoketest.po4
-rw-r--r--source/ka/scp2/source/stdlibs.po4
-rw-r--r--source/ka/scp2/source/tde.po4
-rw-r--r--source/ka/scp2/source/winexplorerext.po4
-rw-r--r--source/ka/scp2/source/writer.po26
-rw-r--r--source/ka/scp2/source/xsltfilter.po4
-rw-r--r--source/ka/scripting/source/pyprov.po33
-rw-r--r--source/ka/sd/source/core.po94
-rw-r--r--source/ka/sd/source/filter/html.po65
-rw-r--r--source/ka/sd/source/ui/accessibility.po14
-rw-r--r--source/ka/sd/source/ui/animations.po162
-rw-r--r--source/ka/sd/source/ui/annotations.po29
-rw-r--r--source/ka/sd/source/ui/app.po586
-rw-r--r--source/ka/sd/source/ui/dlg.po376
-rw-r--r--source/ka/sd/source/ui/slideshow.po20
-rw-r--r--source/ka/sd/source/ui/table.po12
-rw-r--r--source/ka/sd/source/ui/view.po55
-rw-r--r--source/ka/sd/uiconfig/sdraw/ui.po14
-rw-r--r--source/ka/sd/uiconfig/simpress/ui.po15
-rw-r--r--source/ka/sdext/source/minimizer.po4
-rw-r--r--source/ka/sdext/source/minimizer/registry/data/org/openoffice/Office.po3
-rw-r--r--source/ka/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po70
-rw-r--r--source/ka/sdext/source/pdfimport.po34
-rw-r--r--source/ka/sdext/source/presenter.po35
-rw-r--r--source/ka/sdext/source/presenter/help/en-US/com.sun.PresenterScreen.po379
-rw-r--r--source/ka/sdext/source/presenter/registry/data/org/openoffice/Office/extension.po701
-rw-r--r--source/ka/setup_native/source/mac.po25
-rw-r--r--source/ka/sfx2/source/appl.po134
-rw-r--r--source/ka/sfx2/source/bastyp.po4
-rw-r--r--source/ka/sfx2/source/dialog.po251
-rw-r--r--source/ka/sfx2/source/doc.po201
-rw-r--r--source/ka/sfx2/source/menu.po12
-rw-r--r--source/ka/sfx2/source/view.po27
-rw-r--r--source/ka/sfx2/uiconfig/ui.po13
-rw-r--r--source/ka/shell/source/win32/shlxthandler/res.po39
-rw-r--r--source/ka/starmath/source.po450
-rw-r--r--source/ka/starmath/uiconfig/smath/ui.po10
-rw-r--r--source/ka/svl/source/items.po3
-rw-r--r--source/ka/svl/source/misc.po76
-rw-r--r--source/ka/svtools/source/contnr.po55
-rw-r--r--source/ka/svtools/source/control.po48
-rw-r--r--source/ka/svtools/source/dialogs.po202
-rw-r--r--source/ka/svtools/source/java.po32
-rw-r--r--source/ka/svtools/source/misc.po528
-rw-r--r--source/ka/svtools/source/toolpanel.po4
-rw-r--r--source/ka/svtools/uiconfig/ui.po120
-rw-r--r--source/ka/svx/inc.po74
-rw-r--r--source/ka/svx/source/accessibility.po39
-rw-r--r--source/ka/svx/source/core.po3
-rw-r--r--source/ka/svx/source/dialog.po4040
-rw-r--r--source/ka/svx/source/engine3d.po149
-rw-r--r--source/ka/svx/source/fmcomp.po24
-rw-r--r--source/ka/svx/source/form.po272
-rw-r--r--source/ka/svx/source/gallery2.po184
-rw-r--r--source/ka/svx/source/items.po141
-rw-r--r--source/ka/svx/source/src.po123
-rw-r--r--source/ka/svx/source/stbctrls.po28
-rw-r--r--source/ka/svx/source/svdraw.po936
-rw-r--r--source/ka/svx/source/table.po3
-rw-r--r--source/ka/svx/source/tbxctrls.po87
-rw-r--r--source/ka/svx/source/toolbars.po20
-rw-r--r--source/ka/svx/source/unodialogs/textconversiondlgs.po64
-rw-r--r--source/ka/sw/source/core/layout.po4
-rw-r--r--source/ka/sw/source/core/undo.po168
-rw-r--r--source/ka/sw/source/core/unocore.po9
-rw-r--r--source/ka/sw/source/ui/app.po299
-rw-r--r--source/ka/sw/source/ui/chrdlg.po99
-rw-r--r--source/ka/sw/source/ui/config.po280
-rw-r--r--source/ka/sw/source/ui/dbui.po339
-rw-r--r--source/ka/sw/source/ui/dialog.po89
-rw-r--r--source/ka/sw/source/ui/dochdl.po13
-rw-r--r--source/ka/sw/source/ui/docvw.po82
-rw-r--r--source/ka/sw/source/ui/envelp.po156
-rw-r--r--source/ka/sw/source/ui/fldui.po440
-rw-r--r--source/ka/sw/source/ui/fmtui.po47
-rw-r--r--source/ka/sw/source/ui/frmdlg.po191
-rw-r--r--source/ka/sw/source/ui/globdoc.po4
-rw-r--r--source/ka/sw/source/ui/index.po176
-rw-r--r--source/ka/sw/source/ui/lingu.po18
-rw-r--r--source/ka/sw/source/ui/misc.po207
-rw-r--r--source/ka/sw/source/ui/ribbar.po106
-rw-r--r--source/ka/sw/source/ui/shells.po57
-rw-r--r--source/ka/sw/source/ui/smartmenu.po3
-rw-r--r--source/ka/sw/source/ui/table.po72
-rw-r--r--source/ka/sw/source/ui/uiview.po39
-rw-r--r--source/ka/sw/source/ui/utlui.po579
-rw-r--r--source/ka/sw/source/ui/web.po13
-rw-r--r--source/ka/sw/source/ui/wrtsh.po8
-rw-r--r--source/ka/sw/uiconfig/sw/ui.po36
-rw-r--r--source/ka/sw/uiconfig/swriter/ui.po332
-rw-r--r--source/ka/swext/mediawiki/help.po125
-rw-r--r--source/ka/swext/mediawiki/src.po4
-rw-r--r--source/ka/swext/mediawiki/src/registry/data/org/openoffice/Office.po4
-rw-r--r--source/ka/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po34
-rw-r--r--source/ka/sysui/desktop/share.po69
-rw-r--r--source/ka/tubes/uiconfig/ui.po9
-rw-r--r--source/ka/uui/source.po153
-rw-r--r--source/ka/vcl/qa/cppunit/builder.po82
-rw-r--r--source/ka/vcl/source/edit.po7
-rw-r--r--source/ka/vcl/source/src.po160
-rw-r--r--source/ka/vcl/uiconfig/ui.po65
-rw-r--r--source/ka/wizards/source/euro.po85
-rw-r--r--source/ka/wizards/source/formwizard.po727
-rw-r--r--source/ka/wizards/source/importwizard.po79
-rw-r--r--source/ka/wizards/source/template.po78
-rw-r--r--source/ka/xmlsecurity/source/component.po3
-rw-r--r--source/ka/xmlsecurity/source/dialogs.po80
355 files changed, 6487 insertions, 202117 deletions
diff --git a/source/ka/accessibility/source/helper.po b/source/ka/accessibility/source/helper.po
index 6b57b38cf2a..ffeb3c422d3 100644
--- a/source/ka/accessibility/source/helper.po
+++ b/source/ka/accessibility/source/helper.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-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-09-22 09:51+0200\n"
"Last-Translator: ka.libreoffice.org <bankadmin@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. !m?W
#: accessiblestrings.src
msgctxt ""
"accessiblestrings.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Browse"
msgstr "მოძიება"
-#. pfc%
#: accessiblestrings.src
msgctxt ""
"accessiblestrings.src\n"
diff --git a/source/ka/android/sdremote/res/values.po b/source/ka/android/sdremote/res/values.po
new file mode 100644
index 00000000000..87f6dff5ed1
--- /dev/null
+++ b/source/ka/android/sdremote/res/values.po
@@ -0,0 +1,414 @@
+#. extracted from android/sdremote/res/values
+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-11-30 12:18+0100\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: ka\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"
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"app_name\n"
+"string.text"
+msgid "Impress Remote"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"menu_settings\n"
+"string.text"
+msgid "Settings"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"title_activity_presentation\n"
+"string.text"
+msgid "PresentationActivity"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"presentation_ui_resizehandle\n"
+"string.text"
+msgid "Handle to resize view."
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"presentation_blank_screen\n"
+"string.text"
+msgid "Blank Screen"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"options\n"
+"string.text"
+msgid "Options"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"actionbar_timeformat\n"
+"string.text"
+msgid "h:mmaa"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"actionbar_timerformat\n"
+"string.text"
+msgid "mm:ss"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"clock_timer_start\n"
+"string.text"
+msgid "Start"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"clock_timer_pause\n"
+"string.text"
+msgid "Pause"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"clock_timer_restart\n"
+"string.text"
+msgid "Restart"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"clock_timer_reset\n"
+"string.text"
+msgid "Reset"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"clock_timer_resume\n"
+"string.text"
+msgid "Resume"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"options_autodecline\n"
+"string.text"
+msgid "Decline Calls"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"options_description\n"
+"string.text"
+msgid "Automatically decline all incoming calls."
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"options_volumeswitching\n"
+"string.text"
+msgid "Volume Switching"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"options_volumeswitching_descripton\n"
+"string.text"
+msgid "Change slides using volume buttons"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"options_enablewifi\n"
+"string.text"
+msgid "Enable wireless"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"options_enablewifi_descripton\n"
+"string.text"
+msgid "Try to connect to the computer over wireless"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"options_switchcomputer\n"
+"string.text"
+msgid "Switch computer"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"blankscreen_return\n"
+"string.text"
+msgid "Return to Slide"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"bluetooth\n"
+"string.text"
+msgid "Bluetooth"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"wifi\n"
+"string.text"
+msgid "WI-FI"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"selector_noservers\n"
+"string.text"
+msgid "Searching for computers…"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"selector_delete\n"
+"string.text"
+msgid "Remove server"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"selector_choose_a_computer\n"
+"string.text"
+msgid "Choose a Computer"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"selector_dialog_connecting\n"
+"string.text"
+msgid "Attempting to connect to {0}…"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"selector_dialog_connectionfailed\n"
+"string.text"
+msgid "Impress Remote could not connect to {0}."
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"selector_dialog_connectionfailed_ok\n"
+"string.text"
+msgid "OK"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"pairing_instructions_1\n"
+"string.text"
+msgid "In Impress, click on the \"Slideshow\" menu and select \"Impress Remote\"."
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"pairing_instructions_2_deviceName\n"
+"string.text"
+msgid "Choose \"{0}\" as your device."
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"pairing_instructions_3\n"
+"string.text"
+msgid "Then input this PIN:"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"startpresentation_instruction\n"
+"string.text"
+msgid "No presentation is currently running."
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"startpresentation_button\n"
+"string.text"
+msgid "Start Presentation"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"startpresentation_title\n"
+"string.text"
+msgid "Start Presentation"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"about\n"
+"string.text"
+msgid "About"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"about_close\n"
+"string.text"
+msgid "Close"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"about_versionstring\n"
+"string.text"
+msgid "Version: {0} (Build ID: {1})"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"about_copyright\n"
+"string.text"
+msgid "Copyright © 2012 LibreOffice Contributors and/or their affiliates."
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"about_licence\n"
+"string.text"
+msgid "This app is released under the Mozilla Public License, v. 2.0."
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"about_libraries\n"
+"string.text"
+msgid ""
+"This app uses android-coverflow\n"
+"\tCopyright © 2011, Polidea\n"
+"\tAll rights reserved.\n"
+"\n"
+"This app uses ActionBarSherlock:\n"
+"\tCopyright 2012 Jake Wharton\n"
+"\tLicensed under the Apache License, Version 2.0 (the \"License\")"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"addserver\n"
+"string.text"
+msgid "Add Server"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"addserver_entername\n"
+"string.text"
+msgid "Server name:"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"addserver_enteraddress\n"
+"string.text"
+msgid "Server address as IP or hostname:"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"addserver_remember\n"
+"string.text"
+msgid "Remember this server next time"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"addserver_add\n"
+"string.text"
+msgid "Add"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"addserver_cancel\n"
+"string.text"
+msgid "Cancel"
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"reconnect_description1\n"
+"string.text"
+msgid "Your connection has been dropped."
+msgstr ""
+
+#: strings.xml
+msgctxt ""
+"strings.xml\n"
+"reconnect_description2\n"
+"string.text"
+msgid "Attempting to reconnect…"
+msgstr ""
diff --git a/source/ka/avmedia/source/framework.po b/source/ka/avmedia/source/framework.po
index e0a7779b60f..a01d9d75459 100644
--- a/source/ka/avmedia/source/framework.po
+++ b/source/ka/avmedia/source/framework.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-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ~FXR
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Open"
msgstr "გახსნა"
-#. Zoi}
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Apply"
msgstr "გამოყენება"
-#. jsqR
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Play"
msgstr "დაკვრა"
-#. -A$L
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Pause"
msgstr "პაუზა"
-#. _Ew|
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Stop"
msgstr "შეჩერება"
-#. W7Lq
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Repeat"
msgstr "გამეორება"
-#. iM66
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Mute"
msgstr "ხმის გათიშვა"
-#. 9![y
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "View"
msgstr "ნახვა"
-#. =PkP
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "50%"
msgstr "50%"
-#. T!PD
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "100%"
msgstr "100%"
-#. t;+,
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "200%"
msgstr "200%"
-#. TnMj
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "Scaled"
msgstr "ზომაშეცვლილი"
-#. 0jm/
#: mediacontrol.src
msgctxt ""
"mediacontrol.src\n"
diff --git a/source/ka/avmedia/source/viewer.po b/source/ka/avmedia/source/viewer.po
index f4d3088ef38..1fecd6db59a 100644
--- a/source/ka/avmedia/source/viewer.po
+++ b/source/ka/avmedia/source/viewer.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 5cxF
#: mediawindow.src
msgctxt ""
"mediawindow.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Insert Movie and Sound"
msgstr "ფილმისა და ხმის ჩასმა"
-#. F:?1
#: mediawindow.src
msgctxt ""
"mediawindow.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Open Movie and Sound"
msgstr "ფილმისა და ხმის გახსნა"
-#. DFNw
#: mediawindow.src
msgctxt ""
"mediawindow.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "All movie and sound files"
msgstr "ყველა ფილმისა და ხმის ფაილი"
-#. l}VA
#: mediawindow.src
msgctxt ""
"mediawindow.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "All files"
msgstr ""
-#. 7ms(
#: mediawindow.src
msgctxt ""
"mediawindow.src\n"
diff --git a/source/ka/basctl/source/basicide.po b/source/ka/basctl/source/basicide.po
index e65490324df..670c6a544de 100644
--- a/source/ka/basctl/source/basicide.po
+++ b/source/ka/basctl/source/basicide.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-09-25 05:58+0200\n"
"Last-Translator: Luka <mail@luka.ge>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. deMc
#: objdlg.src
msgctxt ""
"objdlg.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Object Catalog"
msgstr "ობიექტების კატალოგი"
-#. V`%U
#: objdlg.src
#, fuzzy
msgctxt ""
@@ -34,7 +32,6 @@ msgctxt ""
msgid "Objects Tree"
msgstr "ობიექტები"
-#. ZE~=
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -43,7 +40,6 @@ msgctxt ""
msgid "<All>"
msgstr "<ყველა>"
-#. W2+)
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -52,7 +48,6 @@ msgctxt ""
msgid "< No Module >"
msgstr "< უმოდულო >"
-#. M]dX
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -61,7 +56,6 @@ msgctxt ""
msgid "Incorrect Password"
msgstr "მცდარი პაროლი"
-#. r,H6
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -70,7 +64,6 @@ msgctxt ""
msgid "Load"
msgstr "ჩატვირთვა"
-#. g+qX
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -79,7 +72,6 @@ msgctxt ""
msgid "Save"
msgstr "შენახვა"
-#. :\(K
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -92,7 +84,6 @@ msgstr ""
"საწყისი ტექსტი არის ძალიან დიდი და შეუძლებელია მისი შენახვა თუ კომპილაცია.\n"
" წაშალეთ ზოგიერთი კომენტარი ან გადაიტანეთ ზოგი მეთოდი სხვა მოდულში."
-#. 6Nvl
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -101,7 +92,6 @@ msgctxt ""
msgid "Error opening file"
msgstr "შეცდომა ფაილის გახსნისას "
-#. I#3L
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -110,7 +100,6 @@ msgctxt ""
msgid "Error loading library"
msgstr "შეცდომა ბიბლიოთეკის ჩატვირთვისას"
-#. $@^F
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -119,7 +108,6 @@ msgctxt ""
msgid "The file does not contain any BASIC libraries"
msgstr "ფაილი არ შეიცავს BASIC-ის ბიბლიოთეკებს"
-#. qcF/
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -128,7 +116,6 @@ msgctxt ""
msgid "Invalid Name"
msgstr "მცდარი სახელი"
-#. U@~0
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -137,7 +124,6 @@ msgctxt ""
msgid "A library name can have up to 30 characters."
msgstr "ბიბლიოთეკის სახელი შეიძლება შეიცავდეს 30-ამდე ასონიშანს."
-#. JMM[
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -146,7 +132,6 @@ msgctxt ""
msgid "Macros from other documents are not accessible."
msgstr "მაკროები სხვა დოკუმენტებიდან ხელმისაწვდომი არ არის."
-#. %NUf
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -155,7 +140,6 @@ msgctxt ""
msgid "This library is read-only."
msgstr "ეს ბიბლიოთეკა არის მხოლოდ წაკითხვადი."
-#. CHXF
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -164,7 +148,6 @@ msgctxt ""
msgid "'XX' cannot be replaced."
msgstr "„XX“-ის ჩანაცვლება შეუძლებელია."
-#. pDgK
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -173,7 +156,6 @@ msgctxt ""
msgid "'XX' cannot be added."
msgstr "„XX“-ის დამატება შეუძლებელია."
-#. 1pz+
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -182,7 +164,6 @@ msgctxt ""
msgid "'XX' was not added."
msgstr "ვერ მოხერხდა „XX“-ის დამატება."
-#. AJK1
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -191,7 +172,6 @@ msgctxt ""
msgid "Enter password for 'XX'"
msgstr "შეიტანეთ პაროლი „XX“'-სთვის"
-#. kC\9
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -200,7 +180,6 @@ msgctxt ""
msgid "Name already exists"
msgstr "სახელი უკვე არსებობს"
-#. r)bk
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -209,7 +188,6 @@ msgctxt ""
msgid "(Signed)"
msgstr "(ხელმოწერილი)"
-#. FxwV
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -218,7 +196,6 @@ msgctxt ""
msgid "Object with same name already exists"
msgstr "ობიექტი იგივე სახელით უკვე არსებობს"
-#. k~#P
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -227,7 +204,6 @@ msgctxt ""
msgid "The 'XX' file already exists"
msgstr "„XX“ ფაილი უკვე არსებობს"
-#. F[$.
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -242,7 +218,6 @@ msgstr ""
"\n"
"დამატებითი ინფორმაციისთვის, შეამოწმეთ უსაფრთხოების პარამეტრები."
-#. ZTC%
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -251,7 +226,6 @@ msgctxt ""
msgid "Compile Error: "
msgstr "კომპილაციის შეცდომა: "
-#. ~kzi
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -260,7 +234,6 @@ msgctxt ""
msgid "Runtime Error: #"
msgstr "შეცდომა შესრულებისას: #"
-#. 3.!B
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -269,7 +242,6 @@ msgctxt ""
msgid "Search key not found"
msgstr "საძიებო სიტყვა ვერ მოიძებნა"
-#. wXS@
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -278,7 +250,6 @@ msgctxt ""
msgid "Search to last module complete. Continue at first module?"
msgstr "ბოლო მოდულის ძიება დასრულებულია. გავაგრძელო პირველი მოდულიდან?"
-#. ?Hng
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -287,7 +258,6 @@ msgctxt ""
msgid "Search key replaced XX times"
msgstr "საძიებო სიტყვა შეიცვალა XX-ჯერ"
-#. dX9n
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -296,7 +266,6 @@ msgctxt ""
msgid "The file could not be read"
msgstr "ფაილის წაკითხვა ვერ ხერხდება"
-#. 9[xg
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -305,7 +274,6 @@ msgctxt ""
msgid "The file could not be saved"
msgstr "ფაილის დამახსოვრება ვერ ხერხდება"
-#. lKe\
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -314,7 +282,6 @@ msgctxt ""
msgid "The name of the default library cannot be changed."
msgstr "ნაგულისხმევი ბიბლიოთეკის სახელის შეცვლა შეუძლებელია."
-#. ,#9v
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -323,7 +290,6 @@ msgctxt ""
msgid "The name of a referenced library cannot be changed."
msgstr "მიმართული ბიბლიოთეკის სახელის შეცვლა შეუძლებელია."
-#. ^}M`
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -332,7 +298,6 @@ msgctxt ""
msgid "The default library cannot be deactivated"
msgstr "ნაგულისხმევი ბიბლიოთეკის დეაქტივაცია შეუძლებელია"
-#. Zr~A
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -341,7 +306,6 @@ msgctxt ""
msgid "Generating source"
msgstr "წყაროს შექმნა"
-#. W83h
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -350,7 +314,6 @@ msgctxt ""
msgid "File name:"
msgstr "ფაილის სახელი:"
-#. ,=wX
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -359,7 +322,6 @@ msgctxt ""
msgid "Import Libraries"
msgstr "ბიბლიოთეკების იმპორტი"
-#. e3f;
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -368,7 +330,6 @@ msgctxt ""
msgid "Do you want to delete the macro XX?"
msgstr "ნამდვილად გსურთ წაშალოთ XX მაკრო?"
-#. H~pG
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -377,7 +338,6 @@ msgctxt ""
msgid "Do you want to delete the XX dialog?"
msgstr "ნამდვილად გსურთ წაშალოთ XX დიალოგი?"
-#. |SeE
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -386,7 +346,6 @@ msgctxt ""
msgid "Do you want to delete the XX library?"
msgstr "ნამდვილად გსურთ წაშალოთ XX ბიბლიოთეკა?"
-#. je{o
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -395,7 +354,6 @@ msgctxt ""
msgid "Do you want to delete the reference to the XX library?"
msgstr "ნამდვილად გსურთ წაშალოთ XX ბიბლიოთეკაზე მიმართვა?"
-#. Xm7Q
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -404,7 +362,6 @@ msgctxt ""
msgid "Do you want to delete the XX module?"
msgstr "ნამდვილად გსურთ XX მოდულის წაშლა?"
-#. =z=.
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -413,7 +370,6 @@ msgctxt ""
msgid "Object or method not found"
msgstr "ობიექტი ან მეთოდი ვერ მოიძებნა"
-#. 5lGk
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -422,7 +378,6 @@ msgctxt ""
msgid "BASIC"
msgstr "BASIC"
-#. q#Ee
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -431,7 +386,6 @@ msgctxt ""
msgid "Ln"
msgstr "სტქ"
-#. d@%(
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -440,7 +394,6 @@ msgctxt ""
msgid "Col"
msgstr "სვტ"
-#. GksX
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -449,7 +402,6 @@ msgctxt ""
msgid "Document"
msgstr "დოკუმენტი"
-#. [HYz
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -458,7 +410,6 @@ msgctxt ""
msgid "Macro Bar"
msgstr "მაკროს ზოლი"
-#. WT!/
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -467,7 +418,6 @@ msgctxt ""
msgid "The window cannot be closed while BASIC is running."
msgstr "ფანჯარა ვერ დაიხურება სანამ BASIC-ია გაშვებული."
-#. ob;X
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -476,7 +426,6 @@ msgctxt ""
msgid "The default library cannot be replaced."
msgstr "ნაგულისხმევი ბიბლიოთეკის ჩანაცვლება შეუძლებელია."
-#. _sL@
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -485,7 +434,6 @@ msgctxt ""
msgid "Reference to 'XX' not possible."
msgstr "„XX“-ზე მიმართვა შეუძლებელია."
-#. $;d+
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -494,7 +442,6 @@ msgctxt ""
msgid "Watch"
msgstr "თვალის დევნა"
-#. q[F0
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -503,7 +450,6 @@ msgctxt ""
msgid "Variable"
msgstr "ცვლადი"
-#. [\2#
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -512,7 +458,6 @@ msgctxt ""
msgid "Value"
msgstr "მნიშვნელობა"
-#. `~4,
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -521,7 +466,6 @@ msgctxt ""
msgid "Type"
msgstr "ტიპი"
-#. IPB!
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -530,7 +474,6 @@ msgctxt ""
msgid "Call Stack"
msgstr "გამოძახების დასტა"
-#. mK3f
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -539,7 +482,6 @@ msgctxt ""
msgid "BASIC Initialization"
msgstr "BASIC-ის ინიციალიზაცია"
-#. 8;n!
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -548,7 +490,6 @@ msgctxt ""
msgid "Module"
msgstr "მოდული"
-#. U5LV
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -557,7 +498,6 @@ msgctxt ""
msgid "Dialog"
msgstr "დიალოგი"
-#. *?3+
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -566,7 +506,6 @@ msgctxt ""
msgid "Library"
msgstr "ბიბლიოთეკა"
-#. p-J$
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -575,7 +514,6 @@ msgctxt ""
msgid "New Library"
msgstr "ახალი ბიბლიოთეკა"
-#. wl|E
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -584,7 +522,6 @@ msgctxt ""
msgid "New Module"
msgstr "ახალი მოდული"
-#. )f3c
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -593,7 +530,6 @@ msgctxt ""
msgid "New Dialog"
msgstr "ახალი დიალოგი"
-#. Ub!,
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -602,7 +538,6 @@ msgctxt ""
msgid "All"
msgstr "ყველა"
-#. }RLC
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -611,7 +546,6 @@ msgctxt ""
msgid "Page"
msgstr "გვერდი"
-#. :WO!
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -620,7 +554,6 @@ msgctxt ""
msgid "A name must be entered."
msgstr "სახელის შეტანა აუცილებელია."
-#. -@v4
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -633,7 +566,6 @@ msgstr ""
"ამ რედაქტირების შემდეგ თქვენ საჭიროა პროგრამის კვლავგაშვება.\n"
"განვაგრძო?"
-#. dU+x
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -642,7 +574,6 @@ msgctxt ""
msgid "Do you want to replace the text in all active modules?"
msgstr "ტექსტის ჩანაცვლება ყველა აქტიურ მოდულში გნებავთ ?"
-#. fOE;
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -651,7 +582,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. $`24
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -660,7 +590,6 @@ msgctxt ""
msgid "Remove Watch"
msgstr "თვალის დევნების შეწყვეტა"
-#. p0?t
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -669,7 +598,6 @@ msgctxt ""
msgid "Watch:"
msgstr "მეთვალყურეობა:"
-#. )hOO
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -678,7 +606,6 @@ msgctxt ""
msgid "Calls: "
msgstr "გამოძახებები:"
-#. C-#U
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -687,7 +614,6 @@ msgctxt ""
msgid "My Macros"
msgstr "ჩემი მაკროები"
-#. ?!XO
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -696,7 +622,6 @@ msgctxt ""
msgid "My Dialogs"
msgstr "ჩემი დიალოგები"
-#. sJGU
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -705,7 +630,6 @@ msgctxt ""
msgid "My Macros & Dialogs"
msgstr "ჩემი მაკროები და დიალოგები"
-#. iWd/
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -714,7 +638,6 @@ msgctxt ""
msgid "%PRODUCTNAME Macros"
msgstr "%PRODUCTNAME მაკროები"
-#. RsXB
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -723,7 +646,6 @@ msgctxt ""
msgid "%PRODUCTNAME Dialogs"
msgstr "%PRODUCTNAME დიალოგები"
-#. gllN
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -732,7 +654,6 @@ msgctxt ""
msgid "%PRODUCTNAME Macros & Dialogs"
msgstr "%PRODUCTNAME მაკროები და დიალოგები"
-#. lH-y
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -742,7 +663,6 @@ msgctxt ""
msgid "Active"
msgstr "აქტიური"
-#. mQvu
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -752,7 +672,6 @@ msgctxt ""
msgid "Properties..."
msgstr "თვისებები..."
-#. 3sc.
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -761,7 +680,6 @@ msgctxt ""
msgid "Properties"
msgstr "თვისებები"
-#. a@W+
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -771,7 +689,6 @@ msgctxt ""
msgid "Manage Breakpoints..."
msgstr "წყვეტის წერტილების მართვა..."
-#. Wcy=
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -780,7 +697,6 @@ msgctxt ""
msgid "Manage Breakpoints"
msgstr "წყვეტის წერტილების მართვა"
-#. s2^S
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -790,7 +706,6 @@ msgctxt ""
msgid "BASIC Module"
msgstr "BASIC-ის მოდული"
-#. 5IIo
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -800,7 +715,6 @@ msgctxt ""
msgid "BASIC Dialog"
msgstr "BASIC-ის დიალოგი"
-#. \%gc
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -810,7 +724,6 @@ msgctxt ""
msgid "Insert"
msgstr "ჩასმა"
-#. LAie
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -820,7 +733,6 @@ msgctxt ""
msgid "Delete"
msgstr "წაშლა"
-#. UkD8
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -830,7 +742,6 @@ msgctxt ""
msgid "Rename"
msgstr "გადარქმევა"
-#. M.5i
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -840,7 +751,6 @@ msgctxt ""
msgid "Hide"
msgstr "დამალვა"
-#. CQ?d
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -850,7 +760,6 @@ msgctxt ""
msgid "Modules..."
msgstr "მოდულები..."
-#. SdR)
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -860,7 +769,6 @@ msgctxt ""
msgid "Properties..."
msgstr "თვისებები..."
-#. aau`
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -869,7 +777,6 @@ msgctxt ""
msgid "Do you want to overwrite the XX macro?"
msgstr "გსურთ ზედ გადააწეროთ XX მაკროს?"
-#. %DZ@
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -878,7 +785,6 @@ msgctxt ""
msgid "<Not localized>"
msgstr "<ლოკალიზაციის გარეშე>"
-#. ofo`
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -887,7 +793,6 @@ msgctxt ""
msgid "[Default Language]"
msgstr "[ნაგულისხმევი ენა]"
-#. G@B=
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -896,7 +801,6 @@ msgctxt ""
msgid "Document Objects"
msgstr ""
-#. ^X3N
#: basidesh.src
#, fuzzy
msgctxt ""
@@ -916,7 +820,6 @@ msgstr ""
"#-#-#-#-# form.po (PACKAGE VERSION) #-#-#-#-#\n"
"ფორმა"
-#. L4Z+
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -925,7 +828,6 @@ msgctxt ""
msgid "Modules"
msgstr "მოდულები"
-#. Mx!0
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -934,7 +836,6 @@ msgctxt ""
msgid "Class Modules"
msgstr ""
-#. M@CT
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -943,7 +844,6 @@ msgctxt ""
msgid "Rename"
msgstr "გადარქმევა"
-#. eq\m
#: basidesh.src
#, fuzzy
msgctxt ""
@@ -965,7 +865,6 @@ msgstr ""
"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
"ჩანაცვლებაჰ"
-#. W@VC
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -974,7 +873,6 @@ msgctxt ""
msgid "Dialog Import - Name already used"
msgstr ""
-#. T3_B
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -989,7 +887,6 @@ msgid ""
" "
msgstr ""
-#. :_6e
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -998,7 +895,6 @@ msgctxt ""
msgid "Add"
msgstr "დამატება"
-#. Yr+\
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -1007,7 +903,6 @@ msgctxt ""
msgid "Omit"
msgstr "გამოტოვება"
-#. ^T?v
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -1016,7 +911,6 @@ msgctxt ""
msgid "Dialog Import - Language Mismatch"
msgstr "დიალოგის იმპორტი - ენა არ ემთხვევა"
-#. :5]p
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -1035,7 +929,6 @@ msgstr ""
"შენიშვნა: იმ ენებისთვის, რომელთა მხარდაჭერაც დიალოგს არ აქვს, მოხდება დიალოგის default ენის გამოყენება.\n"
" "
-#. cm14
#: basidesh.src
msgctxt ""
"basidesh.src\n"
@@ -1044,7 +937,6 @@ msgctxt ""
msgid "Goto Line"
msgstr "ხაზზე გადასვლა"
-#. t.GK
#: moptions.src
msgctxt ""
"moptions.src\n"
@@ -1054,7 +946,6 @@ msgctxt ""
msgid "Description"
msgstr "აღწერილობა"
-#. lKY=
#: moptions.src
msgctxt ""
"moptions.src\n"
@@ -1064,7 +955,6 @@ msgctxt ""
msgid "Help information"
msgstr "დახმარების ინფორმაცია"
-#. ?gj(
#: moptions.src
msgctxt ""
"moptions.src\n"
@@ -1074,7 +964,6 @@ msgctxt ""
msgid "Help ID"
msgstr "დახმარების ID"
-#. -p|Q
#: moptions.src
msgctxt ""
"moptions.src\n"
@@ -1084,7 +973,6 @@ msgctxt ""
msgid "Help file name"
msgstr "დახმარების ფაილის სახელი"
-#. #``S
#: moptions.src
msgctxt ""
"moptions.src\n"
@@ -1093,7 +981,6 @@ msgctxt ""
msgid "Description"
msgstr "აღწერილობა"
-#. Mq-_
#: brkdlg.src
msgctxt ""
"brkdlg.src\n"
@@ -1103,7 +990,6 @@ msgctxt ""
msgid "New"
msgstr "ახალი"
-#. qYmA
#: brkdlg.src
msgctxt ""
"brkdlg.src\n"
@@ -1113,7 +999,6 @@ msgctxt ""
msgid "Delete"
msgstr "წაშლა"
-#. I$iQ
#: brkdlg.src
msgctxt ""
"brkdlg.src\n"
@@ -1123,7 +1008,6 @@ msgctxt ""
msgid "Active"
msgstr "აქტიური"
-#. jk[T
#: brkdlg.src
msgctxt ""
"brkdlg.src\n"
@@ -1133,7 +1017,6 @@ msgctxt ""
msgid "Pass Count:"
msgstr "გატარების ანათვალი:"
-#. WAj7
#: brkdlg.src
msgctxt ""
"brkdlg.src\n"
@@ -1143,7 +1026,6 @@ msgctxt ""
msgid "Breakpoints"
msgstr "წყვეტის წერტილები"
-#. jB*a
#: brkdlg.src
msgctxt ""
"brkdlg.src\n"
@@ -1152,7 +1034,6 @@ msgctxt ""
msgid "Manage Breakpoints"
msgstr "წყვეტის წერტილების მართვა"
-#. D?0f
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1162,7 +1043,6 @@ msgctxt ""
msgid "Modules"
msgstr "მოდულები"
-#. W_]=
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1172,7 +1052,6 @@ msgctxt ""
msgid "Dialogs"
msgstr "დიალოგები"
-#. 36Js
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1182,7 +1061,6 @@ msgctxt ""
msgid "Libraries"
msgstr "ბიბლიოთეკები"
-#. !*g@
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1191,7 +1069,6 @@ msgctxt ""
msgid "%PRODUCTNAME Basic Macro Organizer"
msgstr "%PRODUCTNAME მაკროების ძირითადი მნე"
-#. i6H6
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1201,7 +1078,6 @@ msgctxt ""
msgid "M~odule"
msgstr "მ~ოდული"
-#. }0uw
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1211,7 +1087,6 @@ msgctxt ""
msgid "~Edit"
msgstr "~რედაქტირება"
-#. sCzN
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1221,7 +1096,6 @@ msgctxt ""
msgid "Close"
msgstr "დახურვა"
-#. ,ASe
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1231,7 +1105,6 @@ msgctxt ""
msgid "~New..."
msgstr "~ახალი..."
-#. WT=T
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1241,7 +1114,6 @@ msgctxt ""
msgid "~New..."
msgstr "~ახალი..."
-#. frR:
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1251,7 +1123,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~წაშლა"
-#. #kf+
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1261,7 +1132,6 @@ msgctxt ""
msgid "Dialog"
msgstr "დიალოგი"
-#. Fpj/
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1271,7 +1141,6 @@ msgctxt ""
msgid "~Edit"
msgstr "~რედაქტირება"
-#. ~UGN
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1281,7 +1150,6 @@ msgctxt ""
msgid "Close"
msgstr "დახურვა"
-#. ABdx
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1291,7 +1159,6 @@ msgctxt ""
msgid "~New..."
msgstr "~ახალი..."
-#. JU]Z
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1301,7 +1168,6 @@ msgctxt ""
msgid "~New..."
msgstr "~ახალი..."
-#. YAwH
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1311,7 +1177,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~წაშლა"
-#. 78@@
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1321,7 +1186,6 @@ msgctxt ""
msgid "L~ocation"
msgstr "მდ~ებარეობა"
-#. nCdL
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1331,7 +1195,6 @@ msgctxt ""
msgid "~Library"
msgstr "~ბიბლიოთეკა"
-#. \U8x
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1341,7 +1204,6 @@ msgctxt ""
msgid "~Edit"
msgstr "~რედაქტირება"
-#. hP(Q
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1351,7 +1213,6 @@ msgctxt ""
msgid "Close"
msgstr "დახურვა"
-#. 1tDJ
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1361,7 +1222,6 @@ msgctxt ""
msgid "~Password..."
msgstr "~პაროლი..."
-#. A^5`
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1371,7 +1231,6 @@ msgctxt ""
msgid "~New..."
msgstr "~ახალი..."
-#. VTeK
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1381,7 +1240,6 @@ msgctxt ""
msgid "~Import..."
msgstr "~იმპორტი..."
-#. NG%_
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1391,7 +1249,6 @@ msgctxt ""
msgid "E~xport..."
msgstr "ე~ქსპორტი..."
-#. zp?S
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1401,7 +1258,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~წაშლა"
-#. Kc.v
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1411,7 +1267,6 @@ msgctxt ""
msgid "Options"
msgstr "პარამეტრები"
-#. Y1`2
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1421,7 +1276,6 @@ msgctxt ""
msgid "Insert as reference (read-only)"
msgstr "ჩასმა როგორც მიმართვა(მხოლოდ კითხვადი)"
-#. 4c8N
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1431,7 +1285,6 @@ msgctxt ""
msgid "Replace existing libraries"
msgstr "არსებული ბიბლიოთეკების ჩანაცვლება"
-#. p;}g
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1441,7 +1294,6 @@ msgctxt ""
msgid "~Line Number:"
msgstr ""
-#. `(e~
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1451,7 +1303,6 @@ msgctxt ""
msgid "~Name:"
msgstr "~სახელი:"
-#. iO@h
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1461,7 +1312,6 @@ msgctxt ""
msgid "Export as ~extension"
msgstr "გა~ფართოებად ექპორტი"
-#. 9)l.
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1471,7 +1321,6 @@ msgctxt ""
msgid "Export as BASIC library"
msgstr "BASIC-ის ბიბლოითეკად ექსპორტი"
-#. \D2F
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1480,7 +1329,6 @@ msgctxt ""
msgid "Export Basic library"
msgstr "ძირითადი ბიბლოთეკის ექსპორტი"
-#. T7$-
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1489,7 +1337,6 @@ msgctxt ""
msgid "Export library as extension"
msgstr "ბიბლიოთეკის გაფართოებად ექპორტი."
-#. rsB+
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1498,7 +1345,6 @@ msgctxt ""
msgid "Export as BASIC library"
msgstr "BASIC-ის ბიბლიოთეკად ექსპორტი"
-#. /g+L
#: moduldlg.src
msgctxt ""
"moduldlg.src\n"
@@ -1507,7 +1353,6 @@ msgctxt ""
msgid "Extension"
msgstr "გაფართოება"
-#. ch4W
#: macrodlg.src
msgctxt ""
"macrodlg.src\n"
@@ -1516,7 +1361,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~წაშლა"
-#. ,b1I
#: macrodlg.src
msgctxt ""
"macrodlg.src\n"
@@ -1525,7 +1369,6 @@ msgctxt ""
msgid "~New"
msgstr "~ახალი"
-#. Kn8D
#: macrodlg.src
msgctxt ""
"macrodlg.src\n"
@@ -1534,7 +1377,6 @@ msgctxt ""
msgid "Choose"
msgstr "არჩევა"
-#. ic*r
#: macrodlg.src
msgctxt ""
"macrodlg.src\n"
@@ -1543,7 +1385,6 @@ msgctxt ""
msgid "Run"
msgstr "გაშვება"
-#. ,D#!
#: macrodlg.src
msgctxt ""
"macrodlg.src\n"
@@ -1552,7 +1393,6 @@ msgctxt ""
msgid "~Save"
msgstr "~შენახვა"
-#. pRPI
#: basicprint.src
#, fuzzy
msgctxt ""
@@ -1567,7 +1407,6 @@ msgstr ""
"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
"ბეჭდვის არე"
-#. D_5S
#: basicprint.src
msgctxt ""
"basicprint.src\n"
@@ -1577,7 +1416,6 @@ msgctxt ""
msgid "All ~Pages"
msgstr ""
-#. 2N4s
#: basicprint.src
msgctxt ""
"basicprint.src\n"
diff --git a/source/ka/basctl/source/dlged.po b/source/ka/basctl/source/dlged.po
index 369d35731d1..7014b9199bb 100644
--- a/source/ka/basctl/source/dlged.po
+++ b/source/ka/basctl/source/dlged.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-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. DhnW
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "Present Languages"
msgstr "ენების წარმოჩენა"
-#. JGIq
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Add..."
msgstr "დამატება..."
-#. _oXj
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Delete"
msgstr "წაშლა"
-#. p]vE
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Default"
msgstr "ნაგულისხმევი"
-#. }IS0
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "The default language is used if no localization for a user interface locale is present. Furthermore all strings from the default language are copied to resources of newly added languages."
msgstr "თუ მომხმარებლის ინტერფეისის ლოკალისათვის ვერ მოიძებნა ლოკალიზაცია, მაშინ ნაგულისხმევი ენა იქნება გამოიყენებული. შემდგომში ყველა პწკარის ასლის გადაღება მოხდება ნაგულისხმევი ენიდან ახლად დამატებული ენის რესურსებში."
-#. *TMb
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "~Close"
msgstr "~დახურვა"
-#. SfP_
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "[Default Language]"
msgstr "[ ნაგულისხმევი ენა ]"
-#. so),
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~წაშლა"
-#. @,QV
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "<Press 'Add' to create language resources>"
msgstr "<დაწკაპეთ „დამატება“ ენის რესურსთა შესქმნელად>"
-#. Z@]S
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -114,7 +104,6 @@ msgctxt ""
msgid "Manage User Interface Languages [$1]"
msgstr "მომხმარებლის ინტერფეისის ენების მართვა [$1]"
-#. {@Ru
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -129,7 +118,6 @@ msgstr ""
"\n"
"ნამდვილად გსურთ წაშალოთ რესურსები მონიშნული ენებისათვის? "
-#. Q13J
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -138,7 +126,6 @@ msgctxt ""
msgid "Delete Language Resources"
msgstr "ენის რესურსების წაშლა"
-#. Ag$]
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -148,7 +135,6 @@ msgctxt ""
msgid "Default language"
msgstr "სტანდარტული ენა"
-#. ?(~F
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -158,7 +144,6 @@ msgctxt ""
msgid "Select a language to define the default user interface language. All currently present strings will be assigned to the resources created for the selected language."
msgstr "ამოირჩიეთ ენა ნაგულისხმევი მომხმარებლის ინტერფეისის ენის განსასაზღვრად. ამჟამად არსებული ყველა პწკარი მიენიჭება არჩეული ენისათვის შექმნილ რესურსებს."
-#. 0~l0
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -168,7 +153,6 @@ msgctxt ""
msgid "Add User Interface Languages"
msgstr "მომხმარებლის ინტერფეისის ენების დამატება"
-#. \JB_
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -178,7 +162,6 @@ msgctxt ""
msgid "Available Languages"
msgstr "ხელმისაწვდომი ენები"
-#. OuG~
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -188,7 +171,6 @@ msgctxt ""
msgid "Select languages to be added. Resources for these languages will be created in the library. Strings of the current default user interface language will be copied to these new resources by default."
msgstr "ამოირჩიეთ დასამატებელი ენები. ბიბლიოთეკაში შეიქმნება რესურსები ამ ენებისათვის. მიმდინარე ნაგულისხმევი მომხმარებლის ინტრეფეისის ენის პწკარების ასლები გადაიღება ამ ახალ რესურსებში ნაგულისხმევად."
-#. 6a+c
#: managelang.src
msgctxt ""
"managelang.src\n"
@@ -197,7 +179,6 @@ msgctxt ""
msgid "Set Default User Interface Language"
msgstr "მომხმარებლის ინტერფეისის ნაგულისხმევი ენის დაყენება"
-#. ]nNM
#: dlgresid.src
msgctxt ""
"dlgresid.src\n"
@@ -206,7 +187,6 @@ msgctxt ""
msgid "Properties: "
msgstr "თვისებები: "
-#. I_7p
#: dlgresid.src
msgctxt ""
"dlgresid.src\n"
@@ -215,7 +195,6 @@ msgctxt ""
msgid "No Control marked"
msgstr "არცერთი კონტროლი არ არის მონიშნული"
-#. ,!pS
#: dlgresid.src
msgctxt ""
"dlgresid.src\n"
diff --git a/source/ka/basctl/uiconfig/basicide/ui.po b/source/ka/basctl/uiconfig/basicide/ui.po
index 9cae806716b..7a86c8a8581 100644
--- a/source/ka/basctl/uiconfig/basicide/ui.po
+++ b/source/ka/basctl/uiconfig/basicide/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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-11-17 19:02+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. dCgB
#: basicmacrodialog.ui
msgctxt ""
"basicmacrodialog.ui\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "%PRODUCTNAME Basic Macros"
msgstr "%PRODUCTNAME ძირითადი მაკროები"
-#. ;$kl
#: basicmacrodialog.ui
#, fuzzy
msgctxt ""
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Existing macros in:"
msgstr "არსებული მაკროე~ბი:"
-#. peL)
#: basicmacrodialog.ui
#, fuzzy
msgctxt ""
@@ -46,7 +43,6 @@ msgctxt ""
msgid "Macro from"
msgstr "მაკრო ~დან"
-#. O@}F
#: basicmacrodialog.ui
#, fuzzy
msgctxt ""
@@ -57,7 +53,6 @@ msgctxt ""
msgid "Save macro in"
msgstr "შეინახე მა~კრო"
-#. 0h%}
#: basicmacrodialog.ui
msgctxt ""
"basicmacrodialog.ui\n"
diff --git a/source/ka/basic/source/classes.po b/source/ka/basic/source/classes.po
index 468c53d8d1d..a862d920a96 100644
--- a/source/ka/basic/source/classes.po
+++ b/source/ka/basic/source/classes.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 1SiU
#: sb.src
msgctxt ""
"sb.src\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "Syntax error."
msgstr "სინტაქსური შეცომა."
-#. Zz8?
#: sb.src
msgctxt ""
"sb.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Return without Gosub."
msgstr "Return Gosub-ის გარეშე."
-#. S[$m
#: sb.src
msgctxt ""
"sb.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Incorrect entry; please retry."
msgstr "ჩანაწერი არასწორია; გთხოვთ თავიდან ცადოთ."
-#. ES_7
#: sb.src
msgctxt ""
"sb.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Invalid procedure call."
msgstr "არასწორი პროცედურის გამოძახება."
-#. ;hGR
#: sb.src
msgctxt ""
"sb.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "Overflow."
msgstr "გადავსება."
-#. \AfP
#: sb.src
msgctxt ""
"sb.src\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "Not enough memory."
msgstr "არ არის საკმარისი მეხსიერება."
-#. ml6H
#: sb.src
msgctxt ""
"sb.src\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "Array already dimensioned."
msgstr "მასივს უკვე გააჩნია განზომილებები."
-#. b|NG
#: sb.src
msgctxt ""
"sb.src\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "Index out of defined range."
msgstr "ინდექსი განსაზღვრული შუალედის გარეთაა."
-#. \~}O
#: sb.src
msgctxt ""
"sb.src\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "Duplicate definition."
msgstr "ორმაგი დეფინიცია."
-#. _#VG
#: sb.src
msgctxt ""
"sb.src\n"
@@ -115,7 +105,6 @@ msgctxt ""
msgid "Division by zero."
msgstr "ნულზე გაყოფა."
-#. $4kM
#: sb.src
msgctxt ""
"sb.src\n"
@@ -125,7 +114,6 @@ msgctxt ""
msgid "Variable not defined."
msgstr "ცვლადი არ არის განსაზღვრული."
-#. l6X6
#: sb.src
msgctxt ""
"sb.src\n"
@@ -135,7 +123,6 @@ msgctxt ""
msgid "Data type mismatch."
msgstr "მონაცემთა ტიპების აცდენა."
-#. jcL%
#: sb.src
msgctxt ""
"sb.src\n"
@@ -145,7 +132,6 @@ msgctxt ""
msgid "Invalid parameter."
msgstr "არასწორი პარამეტრი."
-#. q/0#
#: sb.src
msgctxt ""
"sb.src\n"
@@ -155,7 +141,6 @@ msgctxt ""
msgid "Process interrupted by user."
msgstr "პროცესი შეწყვეტილია მომხმარებლის მიერ."
-#. _dYH
#: sb.src
msgctxt ""
"sb.src\n"
@@ -165,7 +150,6 @@ msgctxt ""
msgid "Resume without error."
msgstr "შეცდომის გარეშე გაგრძელება."
-#. hYO\
#: sb.src
msgctxt ""
"sb.src\n"
@@ -175,7 +159,6 @@ msgctxt ""
msgid "Not enough stack memory."
msgstr "არასაკმარისი სტეკური მეხსიერება."
-#. %_Dv
#: sb.src
msgctxt ""
"sb.src\n"
@@ -185,7 +168,6 @@ msgctxt ""
msgid "Sub-procedure or function procedure not defined."
msgstr "ქვე-პროცედურა ან ფუნქცია არ არის განსაზვრული."
-#. 7rBQ
#: sb.src
msgctxt ""
"sb.src\n"
@@ -195,7 +177,6 @@ msgctxt ""
msgid "Error loading DLL file."
msgstr "შეცდომა DLL ფაილის ჩატვირთვისას."
-#. :I|%
#: sb.src
msgctxt ""
"sb.src\n"
@@ -205,7 +186,6 @@ msgctxt ""
msgid "Wrong DLL call convention."
msgstr "DLL-ის არასწორი გამოძახების კონვენცია."
-#. [so#
#: sb.src
msgctxt ""
"sb.src\n"
@@ -215,7 +195,6 @@ msgctxt ""
msgid "Internal error $(ARG1)."
msgstr "შიდა შეცდომა $(ARG1)."
-#. M75T
#: sb.src
msgctxt ""
"sb.src\n"
@@ -225,7 +204,6 @@ msgctxt ""
msgid "Invalid file name or file number."
msgstr "ფაილის სახელი ან ნომერი არასწორია."
-#. }_Yn
#: sb.src
msgctxt ""
"sb.src\n"
@@ -235,7 +213,6 @@ msgctxt ""
msgid "File not found."
msgstr "ფაილი ვერ მოიძებნა."
-#. ;Ybb
#: sb.src
msgctxt ""
"sb.src\n"
@@ -245,7 +222,6 @@ msgctxt ""
msgid "Incorrect file mode."
msgstr "ფაილის რეჟიმი არასწორია."
-#. Zp9;
#: sb.src
msgctxt ""
"sb.src\n"
@@ -255,7 +231,6 @@ msgctxt ""
msgid "File already open."
msgstr "ფაილი უკვე გახსნილია."
-#. UsS4
#: sb.src
msgctxt ""
"sb.src\n"
@@ -265,7 +240,6 @@ msgctxt ""
msgid "Device I/O error."
msgstr "მოწყობილობის I/O შეცდომა."
-#. TIHT
#: sb.src
msgctxt ""
"sb.src\n"
@@ -275,7 +249,6 @@ msgctxt ""
msgid "File already exists."
msgstr "ფაილი უკვე არსებობს."
-#. os1N
#: sb.src
msgctxt ""
"sb.src\n"
@@ -285,7 +258,6 @@ msgctxt ""
msgid "Incorrect record length."
msgstr "ჩანაწერის სიგრძე არასწორია."
-#. sZrg
#: sb.src
msgctxt ""
"sb.src\n"
@@ -295,7 +267,6 @@ msgctxt ""
msgid "Disk or hard drive full."
msgstr "მყარი დისკი სავსეა."
-#. _s0e
#: sb.src
msgctxt ""
"sb.src\n"
@@ -305,7 +276,6 @@ msgctxt ""
msgid "Reading exceeds EOF."
msgstr "წაკითხვა აჭარბებს EOF-ს."
-#. /3x%
#: sb.src
msgctxt ""
"sb.src\n"
@@ -315,7 +285,6 @@ msgctxt ""
msgid "Incorrect record number."
msgstr "ჩანაწერის ნომერი არასწორია."
-#. h4Q[
#: sb.src
msgctxt ""
"sb.src\n"
@@ -325,7 +294,6 @@ msgctxt ""
msgid "Too many files."
msgstr "ძალიან ბევრი ფაილი."
-#. 5da~
#: sb.src
msgctxt ""
"sb.src\n"
@@ -335,7 +303,6 @@ msgctxt ""
msgid "Device not available."
msgstr "მოწყობილობა მიუწვდომელია."
-#. 84*.
#: sb.src
msgctxt ""
"sb.src\n"
@@ -345,7 +312,6 @@ msgctxt ""
msgid "Access denied."
msgstr "შეღწევა შეუძლებელია."
-#. gcYO
#: sb.src
msgctxt ""
"sb.src\n"
@@ -355,7 +321,6 @@ msgctxt ""
msgid "Disk not ready."
msgstr "დისკი არ არის მზად."
-#. S!Ag
#: sb.src
msgctxt ""
"sb.src\n"
@@ -365,7 +330,6 @@ msgctxt ""
msgid "Not implemented."
msgstr "არ არის ჩადებული."
-#. sK~8
#: sb.src
msgctxt ""
"sb.src\n"
@@ -375,7 +339,6 @@ msgctxt ""
msgid "Renaming on different drives impossible."
msgstr "სახელის შეცვლა სხვა დისკზე შეუძლებელია."
-#. hY25
#: sb.src
msgctxt ""
"sb.src\n"
@@ -385,7 +348,6 @@ msgctxt ""
msgid "Path/File access error."
msgstr "ფაილის/გზის მიწვდომის შეცდომა."
-#. Xsrw
#: sb.src
msgctxt ""
"sb.src\n"
@@ -395,7 +357,6 @@ msgctxt ""
msgid "Path not found."
msgstr "მდებარეობა ვერ მოიძებნა."
-#. H2ek
#: sb.src
msgctxt ""
"sb.src\n"
@@ -405,7 +366,6 @@ msgctxt ""
msgid "Object variable not set."
msgstr "ობიექტის ცვლადი არ არის დაყენებული."
-#. t1Oh
#: sb.src
msgctxt ""
"sb.src\n"
@@ -415,7 +375,6 @@ msgctxt ""
msgid "Invalid string pattern."
msgstr "სტრიქონის შაბლონი არასწორია."
-#. 1=Ek
#: sb.src
msgctxt ""
"sb.src\n"
@@ -425,7 +384,6 @@ msgctxt ""
msgid "Use of zero not permitted."
msgstr "ნულის გამოყენება დაუშვებელია."
-#. COPc
#: sb.src
msgctxt ""
"sb.src\n"
@@ -435,7 +393,6 @@ msgctxt ""
msgid "DDE Error."
msgstr "DDE შეცდომა."
-#. tGZl
#: sb.src
msgctxt ""
"sb.src\n"
@@ -445,7 +402,6 @@ msgctxt ""
msgid "Awaiting response to DDE connection."
msgstr "ველოდები DDE კავშირის პასუხს."
-#. 4!fm
#: sb.src
msgctxt ""
"sb.src\n"
@@ -455,7 +411,6 @@ msgctxt ""
msgid "No DDE channels available."
msgstr "DDE არხები მიუწვდომელია."
-#. P*QO
#: sb.src
msgctxt ""
"sb.src\n"
@@ -465,7 +420,6 @@ msgctxt ""
msgid "No application responded to DDE connect initiation."
msgstr "პროგრამა არ გამოეხმაურა DDE კავშირის ინიციატივა."
-#. EOuh
#: sb.src
msgctxt ""
"sb.src\n"
@@ -475,7 +429,6 @@ msgctxt ""
msgid "Too many applications responded to DDE connect initiation."
msgstr "DDE კავშირის ინიციატივას გამოეხმაურა ზედმეტად ბევრი პროგრამა."
-#. fDA1
#: sb.src
msgctxt ""
"sb.src\n"
@@ -485,7 +438,6 @@ msgctxt ""
msgid "DDE channel locked."
msgstr "DDE არხი ჩაკეტილია."
-#. b+-d
#: sb.src
msgctxt ""
"sb.src\n"
@@ -495,7 +447,6 @@ msgctxt ""
msgid "External application cannot execute DDE operation."
msgstr "გარე პროგრამას არ შეუძლია გაუშვას DDE ოპერაცია."
-#. B:IX
#: sb.src
msgctxt ""
"sb.src\n"
@@ -505,7 +456,6 @@ msgctxt ""
msgid "Timeout while waiting for DDE response."
msgstr "DDE გამოხმაურების ლოდინში მოხდა დროის გასვლა."
-#. $TRU
#: sb.src
msgctxt ""
"sb.src\n"
@@ -515,7 +465,6 @@ msgctxt ""
msgid "User pressed ESCAPE during DDE operation."
msgstr "DDE ოპერაციის დროს მომხმარებელმა დააჭირა ESCAPE ღილაკს."
-#. hPzU
#: sb.src
msgctxt ""
"sb.src\n"
@@ -525,7 +474,6 @@ msgctxt ""
msgid "External application busy."
msgstr "გარე პროგრამა დაკავებულია."
-#. [Ik;
#: sb.src
msgctxt ""
"sb.src\n"
@@ -535,7 +483,6 @@ msgctxt ""
msgid "DDE operation without data."
msgstr "DDE ოპერაცია მონაცემების გარეშე."
-#. NydK
#: sb.src
msgctxt ""
"sb.src\n"
@@ -545,7 +492,6 @@ msgctxt ""
msgid "Data are in wrong format."
msgstr "მონაცემები არასწორ ფორმატშია."
-#. G?W:
#: sb.src
msgctxt ""
"sb.src\n"
@@ -555,7 +501,6 @@ msgctxt ""
msgid "External application has been terminated."
msgstr "გარე პროგრამა შეწყდა."
-#. Ql6A
#: sb.src
msgctxt ""
"sb.src\n"
@@ -565,7 +510,6 @@ msgctxt ""
msgid "DDE connection interrupted or modified."
msgstr "DDE შეერთება შეწყდა ან შეიცვალა."
-#. `R@[
#: sb.src
msgctxt ""
"sb.src\n"
@@ -575,7 +519,6 @@ msgctxt ""
msgid "DDE method invoked with no channel open."
msgstr "DDE მეთოდი აღიძრა არხის გახსნის გარეშე."
-#. Eaq)
#: sb.src
msgctxt ""
"sb.src\n"
@@ -585,7 +528,6 @@ msgctxt ""
msgid "Invalid DDE link format."
msgstr "DDE კავშირის ფორმატი არასწორეა."
-#. FuG|
#: sb.src
msgctxt ""
"sb.src\n"
@@ -595,7 +537,6 @@ msgctxt ""
msgid "DDE message has been lost."
msgstr "DDE შეტყობინება დაიკარგა."
-#. EaPZ
#: sb.src
msgctxt ""
"sb.src\n"
@@ -605,7 +546,6 @@ msgctxt ""
msgid "Paste link already performed."
msgstr "ჩასმის ბმული უკვე შესრულდა."
-#. aJ-`
#: sb.src
msgctxt ""
"sb.src\n"
@@ -615,7 +555,6 @@ msgctxt ""
msgid "Link mode cannot be set due to invalid link topic."
msgstr "არასწორი ბმულის სათაურის გამო რეჟიმის გამოყენება შეუძლებელია."
-#. w[Uz
#: sb.src
msgctxt ""
"sb.src\n"
@@ -625,7 +564,6 @@ msgctxt ""
msgid "DDE requires the DDEML.DLL file."
msgstr "DDE-ს ჭირდება DDEML.DDL ფაილს."
-#. 3n#`
#: sb.src
msgctxt ""
"sb.src\n"
@@ -635,7 +573,6 @@ msgctxt ""
msgid "Module cannot be loaded; invalid format."
msgstr "მოდული ვერ ჩაიტვირთა; ფორმატი არასწორია."
-#. X3pu
#: sb.src
msgctxt ""
"sb.src\n"
@@ -645,7 +582,6 @@ msgctxt ""
msgid "Invalid object index."
msgstr "ობიექტის ინდექსი არასწორია."
-#. .IBB
#: sb.src
msgctxt ""
"sb.src\n"
@@ -655,7 +591,6 @@ msgctxt ""
msgid "Object is not available."
msgstr "ობიექტი მიუწვდომელია."
-#. |~H?
#: sb.src
msgctxt ""
"sb.src\n"
@@ -665,7 +600,6 @@ msgctxt ""
msgid "Incorrect property value."
msgstr "თვისების არასწორი მნიშვნელობა."
-#. dgFD
#: sb.src
msgctxt ""
"sb.src\n"
@@ -675,7 +609,6 @@ msgctxt ""
msgid "This property is read-only."
msgstr "ეს თვისება მხოლოდ წაკითხვადია."
-#. E*c;
#: sb.src
msgctxt ""
"sb.src\n"
@@ -685,7 +618,6 @@ msgctxt ""
msgid "This property is write only."
msgstr "ეს თვისება მხოლოდ ჩაწერადია."
-#. F_sE
#: sb.src
msgctxt ""
"sb.src\n"
@@ -695,7 +627,6 @@ msgctxt ""
msgid "Invalid object reference."
msgstr "არასწირი ობიექტის მიმართვა."
-#. b\Y;
#: sb.src
msgctxt ""
"sb.src\n"
@@ -705,7 +636,6 @@ msgctxt ""
msgid "Property or method not found: $(ARG1)."
msgstr "თვისება ან მეთოდი არ მოიძებნა."
-#. )D(6
#: sb.src
msgctxt ""
"sb.src\n"
@@ -715,7 +645,6 @@ msgctxt ""
msgid "Object required."
msgstr "ობიექტი საჭიროა."
-#. LX{Z
#: sb.src
msgctxt ""
"sb.src\n"
@@ -725,7 +654,6 @@ msgctxt ""
msgid "Invalid use of an object."
msgstr "ობიექტი არასწორედ გამოიყენება."
-#. r5h!
#: sb.src
msgctxt ""
"sb.src\n"
@@ -735,7 +663,6 @@ msgctxt ""
msgid "OLE Automation is not supported by this object."
msgstr "ამ ობიექტს არ გააჩნია OLE -ს ავტომატირების მხარდაჭერა."
-#. 1_B^
#: sb.src
msgctxt ""
"sb.src\n"
@@ -745,7 +672,6 @@ msgctxt ""
msgid "This property or method is not supported by the object."
msgstr "ობიექტს არ გააჩნია ამ თვისების ან მეთოდის მხარაჭერა."
-#. y;7g
#: sb.src
msgctxt ""
"sb.src\n"
@@ -755,7 +681,6 @@ msgctxt ""
msgid "OLE Automation Error."
msgstr "შეცდომა OLE ავტომატიზაციისას."
-#. gjcL
#: sb.src
msgctxt ""
"sb.src\n"
@@ -765,7 +690,6 @@ msgctxt ""
msgid "This action is not supported by given object."
msgstr "მოცემულ ობიექტს არ გააჩნია ამ მოქმედების მხარაჭერა."
-#. ^ssg
#: sb.src
msgctxt ""
"sb.src\n"
@@ -775,7 +699,6 @@ msgctxt ""
msgid "Named arguments are not supported by given object."
msgstr "მოცემულ ობიექტს არ გააჩნია დასახელებული არგუმენტების მარდაჭერა."
-#. CXa8
#: sb.src
msgctxt ""
"sb.src\n"
@@ -785,7 +708,6 @@ msgctxt ""
msgid "The current locale setting is not supported by the given object."
msgstr "მოცემულ ობიექტს არ გააჩნია მიმდინარე ადგილის პარამეტრების მხარდაჭერა."
-#. ~~$5
#: sb.src
msgctxt ""
"sb.src\n"
@@ -795,7 +717,6 @@ msgctxt ""
msgid "Named argument not found."
msgstr "დასახელებული არგუმენტი ვერ მოიძებნა."
-#. 0Sm4
#: sb.src
msgctxt ""
"sb.src\n"
@@ -805,7 +726,6 @@ msgctxt ""
msgid "Argument is not optional."
msgstr "არგუმენტი სავალდებულოა."
-#. \wCF
#: sb.src
msgctxt ""
"sb.src\n"
@@ -815,7 +735,6 @@ msgctxt ""
msgid "Invalid number of arguments."
msgstr "არგუმენტების არასწორი რაოდენობა."
-#. p:r?
#: sb.src
msgctxt ""
"sb.src\n"
@@ -825,7 +744,6 @@ msgctxt ""
msgid "Object is not a list."
msgstr "ობიექტი სია არ არის."
-#. N_,C
#: sb.src
msgctxt ""
"sb.src\n"
@@ -835,7 +753,6 @@ msgctxt ""
msgid "Invalid ordinal number."
msgstr "რიგობითი რიცხვი არასწორია."
-#. odO9
#: sb.src
msgctxt ""
"sb.src\n"
@@ -845,7 +762,6 @@ msgctxt ""
msgid "Specified DLL function not found."
msgstr "მითითებული DDL ფუნქცია ვერ მოიძებნა."
-#. %ilX
#: sb.src
msgctxt ""
"sb.src\n"
@@ -855,7 +771,6 @@ msgctxt ""
msgid "Invalid clipboard format."
msgstr "გაცვლის ბუფერის ფორმატი არასწორია."
-#. `,mF
#: sb.src
msgctxt ""
"sb.src\n"
@@ -865,7 +780,6 @@ msgctxt ""
msgid "Object does not have this property."
msgstr "ეს თვისება ობიექტს არ გააჩნია."
-#. ^[|F
#: sb.src
msgctxt ""
"sb.src\n"
@@ -875,7 +789,6 @@ msgctxt ""
msgid "Object does not have this method."
msgstr "ეს მეთოდი ობიექტს არ გააჩნია."
-#. M4QZ
#: sb.src
msgctxt ""
"sb.src\n"
@@ -885,7 +798,6 @@ msgctxt ""
msgid "Required argument lacking."
msgstr "საჭირო არგუმენტი აკლია."
-#. 8ZCD
#: sb.src
msgctxt ""
"sb.src\n"
@@ -895,7 +807,6 @@ msgctxt ""
msgid "Invalid number of arguments."
msgstr "არგუმენტების არასწორი რაოდენობა."
-#. ^V?f
#: sb.src
msgctxt ""
"sb.src\n"
@@ -905,7 +816,6 @@ msgctxt ""
msgid "Error executing a method."
msgstr "შეცდომა მეთოდის შესრულებისას."
-#. mpQe
#: sb.src
msgctxt ""
"sb.src\n"
@@ -915,7 +825,6 @@ msgctxt ""
msgid "Unable to set property."
msgstr "თვისების მინიჭება შეუძლებელია."
-#. S61)
#: sb.src
msgctxt ""
"sb.src\n"
@@ -925,7 +834,6 @@ msgctxt ""
msgid "Unable to determine property."
msgstr "თვისების განსაზღვრა შეუძლებელია."
-#. 3ALz
#: sb.src
msgctxt ""
"sb.src\n"
@@ -935,7 +843,6 @@ msgctxt ""
msgid "Unexpected symbol: $(ARG1)."
msgstr "მოულოდნელი სიმბოლო: $(ARG1)."
-#. ;,vQ
#: sb.src
msgctxt ""
"sb.src\n"
@@ -945,7 +852,6 @@ msgctxt ""
msgid "Expected: $(ARG1)."
msgstr "მოულოდნელი: $(ARG1)."
-#. \5Ps
#: sb.src
msgctxt ""
"sb.src\n"
@@ -955,7 +861,6 @@ msgctxt ""
msgid "Symbol expected."
msgstr "მოსალოდნელია სიმბოლო."
-#. 2YW\
#: sb.src
msgctxt ""
"sb.src\n"
@@ -965,7 +870,6 @@ msgctxt ""
msgid "Variable expected."
msgstr "მოსალოდნელია ცვლადი."
-#. 0YGl
#: sb.src
msgctxt ""
"sb.src\n"
@@ -975,7 +879,6 @@ msgctxt ""
msgid "Label expected."
msgstr "მოსალოდნელია წარწერა."
-#. #RU$
#: sb.src
msgctxt ""
"sb.src\n"
@@ -985,7 +888,6 @@ msgctxt ""
msgid "Value cannot be applied."
msgstr "მნიშვნელობა ვერ მიენიჭა."
-#. L_i+
#: sb.src
msgctxt ""
"sb.src\n"
@@ -995,7 +897,6 @@ msgctxt ""
msgid "Variable $(ARG1) already defined."
msgstr "ცვლადი $(ARG1) უკვე განსაზღვრულია."
-#. kW8M
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1005,7 +906,6 @@ msgctxt ""
msgid "Sub procedure or function procedure $(ARG1) already defined."
msgstr "ქვეპროცედურა ან ფუნქციის პროცედურა $(ARG1) უკვე განსაზღვრულია."
-#. dyMK
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1015,7 +915,6 @@ msgctxt ""
msgid "Label $(ARG1) already defined."
msgstr "Label $(ARG1) უკვე განსაზღვრულია."
-#. Qq+^
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1025,7 +924,6 @@ msgctxt ""
msgid "Variable $(ARG1) not found."
msgstr "ცვლადი $(ARG1) ვერ მოიძებნა."
-#. WDkj
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1035,7 +933,6 @@ msgctxt ""
msgid "Array or procedure $(ARG1) not found."
msgstr "მასივი ან პროცედურა $(ARG1) ვერ მოიძებნა."
-#. hlPl
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1045,7 +942,6 @@ msgctxt ""
msgid "Procedure $(ARG1) not found."
msgstr "პროცედურა $(ARG1) ვერ მოიძებნა."
-#. pDfg
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1055,7 +951,6 @@ msgctxt ""
msgid "Label $(ARG1) undefined."
msgstr "Label $(ARG1) განუსაზღვრელია."
-#. P?iO
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1065,7 +960,6 @@ msgctxt ""
msgid "Unknown data type $(ARG1)."
msgstr "მონაცემების ტიპი $(ARG1) უცნობია."
-#. e_}A
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1075,7 +969,6 @@ msgctxt ""
msgid "Exit $(ARG1) expected."
msgstr "Exit $(ARG1) მოსალოდნელია."
-#. DQDp
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1085,7 +978,6 @@ msgctxt ""
msgid "Statement block still open: $(ARG1) missing."
msgstr "დებულების ბლოკი კვლავ ღიაა: $(ARG1) აკლია."
-#. !:%@
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1095,7 +987,6 @@ msgctxt ""
msgid "Parentheses do not match."
msgstr "ფრჩხილები არ ემთხვევა."
-#. i9/Z
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1105,7 +996,6 @@ msgctxt ""
msgid "Symbol $(ARG1) already defined differently."
msgstr "Symbol $(ARG1) უკვე სხვანაირად განისაზღვრა."
-#. \LXI
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1115,7 +1005,6 @@ msgctxt ""
msgid "Parameters do not correspond to procedure."
msgstr "პარამეტრები პროცედურას არ შეესაბამება."
-#. ]_#9
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1125,7 +1014,6 @@ msgctxt ""
msgid "Invalid character in number."
msgstr "სიმბოლო რიცხვში არასწორა."
-#. yd^N
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1135,7 +1023,6 @@ msgctxt ""
msgid "Array must be dimensioned."
msgstr "მასივი უნდა იყოს განზომილებიანი."
-#. U]7r
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1145,7 +1032,6 @@ msgctxt ""
msgid "Else/Endif without If."
msgstr "Else/Endif If-ის გარეშე."
-#. l,@@
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1155,7 +1041,6 @@ msgctxt ""
msgid "$(ARG1) not allowed within a procedure."
msgstr "$(ARG1) დაუშვებელია პროცედურის შიგნით."
-#. rQae
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1165,7 +1050,6 @@ msgctxt ""
msgid "$(ARG1) not allowed outside a procedure."
msgstr "$(ARG1) დაუშვებელია პროცედურის გარეთ."
-#. o71[
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1175,7 +1059,6 @@ msgctxt ""
msgid "Dimension specifications do not match."
msgstr "განზომილების სპეციფიკაციები არ ემთხვევა."
-#. tGW%
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1185,7 +1068,6 @@ msgctxt ""
msgid "Unknown option: $(ARG1)."
msgstr "უცნობი პარამეტრი: $(ARG1)."
-#. a+s?
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1195,7 +1077,6 @@ msgctxt ""
msgid "Constant $(ARG1) redefined."
msgstr "მუდმივა $(ARG1) თავიდან განისაზღვრა."
-#. {Kr_
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1205,7 +1086,6 @@ msgctxt ""
msgid "Program too large."
msgstr "პროგრამა ძალიან დიდია."
-#. XTNn
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1215,7 +1095,6 @@ msgctxt ""
msgid "Strings or arrays not permitted."
msgstr "სტრინგები ან მასივები დაუშვებელია."
-#. 7Lkp
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1225,7 +1104,6 @@ msgctxt ""
msgid "An exception occurred $(ARG1)."
msgstr "გამონაკლისი წარმოიშვა $(ARG1)."
-#. ECV`
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1235,7 +1113,6 @@ msgctxt ""
msgid "This array is fixed or temporarily locked."
msgstr ""
-#. uD8]
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1245,7 +1122,6 @@ msgctxt ""
msgid "Out of string space."
msgstr ""
-#. 3@]t
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1255,7 +1131,6 @@ msgctxt ""
msgid "Expression Too Complex."
msgstr ""
-#. mE%R
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1265,7 +1140,6 @@ msgctxt ""
msgid "Can't perform requested operation."
msgstr ""
-#. MY$g
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1275,7 +1149,6 @@ msgctxt ""
msgid "Too many DLL application clients."
msgstr ""
-#. E-7l
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1285,7 +1158,6 @@ msgctxt ""
msgid "For loop not initialized."
msgstr ""
-#. ,T}E
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1295,7 +1167,6 @@ msgctxt ""
msgid "$(ARG1)"
msgstr ""
-#. j@+e
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1304,7 +1175,6 @@ msgctxt ""
msgid "The macro running has been interrupted"
msgstr "მაკროს მუშაობა შეწყდა"
-#. xR6k
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1313,7 +1183,6 @@ msgctxt ""
msgid "Reference will not be saved: "
msgstr "მითითება არ შეინახება: "
-#. 0pV\
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1322,7 +1191,6 @@ msgctxt ""
msgid "Error loading library '$(ARG1)'."
msgstr "შეცდომა '$(ARG1)' ბიბლიოთეკის ჩატვირთვისას."
-#. AT.h
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1331,7 +1199,6 @@ msgctxt ""
msgid "Error saving library: '$(ARG1)'."
msgstr "შეცდომა '$(ARG1)' ბიბლიოთეკის შენახვისას."
-#. {tfT
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1340,7 +1207,6 @@ msgctxt ""
msgid "The BASIC from the file '$(ARG1)' could not be initialized."
msgstr "BASIC-ი '$(ARG1)' ფაილიდან ვერ ინიციალიზირდა."
-#. }9dQ
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1349,7 +1215,6 @@ msgctxt ""
msgid "Error saving BASIC: '$(ARG1)'."
msgstr "შეცდომა BASIC: '$(ARG1)' შენახვისას."
-#. n{Uv
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1358,7 +1223,6 @@ msgctxt ""
msgid "Error removing library."
msgstr "შეცდომა ბიბლიოთეკის წაშლისას."
-#. ZSrL
#: sb.src
msgctxt ""
"sb.src\n"
diff --git a/source/ka/basic/source/sbx.po b/source/ka/basic/source/sbx.po
index 12c6c93de5c..6c445f6cd60 100644
--- a/source/ka/basic/source/sbx.po
+++ b/source/ka/basic/source/sbx.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Z9}?
#: format.src
msgctxt ""
"format.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "On"
msgstr "ჩართვა"
-#. X209
#: format.src
msgctxt ""
"format.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Off"
msgstr "გამორთვა"
-#. Q-y5
#: format.src
msgctxt ""
"format.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "True"
msgstr "ჭეშმარიტი"
-#. \YCB
#: format.src
msgctxt ""
"format.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "False"
msgstr "მცდარი"
-#. ld7q
#: format.src
msgctxt ""
"format.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Yes"
msgstr "დიახ"
-#. nKe!
#: format.src
msgctxt ""
"format.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "No"
msgstr "არა"
-#. )lVb
#: format.src
msgctxt ""
"format.src\n"
diff --git a/source/ka/chart2/source/controller/dialogs.po b/source/ka/chart2/source/controller/dialogs.po
index f0fb66c290a..53af2622066 100644
--- a/source/ka/chart2/source/controller/dialogs.po
+++ b/source/ka/chart2/source/controller/dialogs.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-10-27 13:07+0200\n"
"Last-Translator: Luka <mail@luka.ge>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. *]e{
#: tp_LegendPosition.src
msgctxt ""
"tp_LegendPosition.src\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "Position"
msgstr "პოზიცია"
-#. 2bA!
#: tp_LegendPosition.src
#, fuzzy
msgctxt ""
@@ -36,7 +34,6 @@ msgctxt ""
msgid "Text orientation"
msgstr "ტექსტის მიმართულება"
-#. (Y46
#: tp_LegendPosition.src
msgctxt ""
"tp_LegendPosition.src\n"
@@ -46,7 +43,6 @@ msgctxt ""
msgid "Te~xt direction"
msgstr "ტექსტის მიმართულება"
-#. Ta3j
#: tp_3D_SceneAppearance.src
#, fuzzy
msgctxt ""
@@ -57,7 +53,6 @@ msgctxt ""
msgid "Sche~me"
msgstr "სქემა"
-#. wD[=
#: tp_3D_SceneAppearance.src
msgctxt ""
"tp_3D_SceneAppearance.src\n"
@@ -67,7 +62,6 @@ msgctxt ""
msgid "~Shading"
msgstr "~ინტერვალი"
-#. /QqL
#: tp_3D_SceneAppearance.src
msgctxt ""
"tp_3D_SceneAppearance.src\n"
@@ -77,7 +71,6 @@ msgctxt ""
msgid "~Object borders"
msgstr ""
-#. QmzN
#: tp_3D_SceneAppearance.src
#, fuzzy
msgctxt ""
@@ -88,7 +81,6 @@ msgctxt ""
msgid "~Rounded edges"
msgstr "დამ~რგვალებული კიდეები"
-#. aS{~
#: dlg_DataSource.src
#, fuzzy
msgctxt ""
@@ -98,7 +90,6 @@ msgctxt ""
msgid "Data Ranges"
msgstr "მონაცემთა თანრიგი"
-#. oDtD
#: res_LegendPosition_tmpl.hrc
msgctxt ""
"res_LegendPosition_tmpl.hrc\n"
@@ -108,7 +99,6 @@ msgctxt ""
msgid "~Display legend"
msgstr ""
-#. !n%9
#: res_LegendPosition_tmpl.hrc
msgctxt ""
"res_LegendPosition_tmpl.hrc\n"
@@ -118,7 +108,6 @@ msgctxt ""
msgid "~Left"
msgstr "~მარცხნივ"
-#. 1P9H
#: res_LegendPosition_tmpl.hrc
msgctxt ""
"res_LegendPosition_tmpl.hrc\n"
@@ -128,7 +117,6 @@ msgctxt ""
msgid "~Right"
msgstr "~მარჯვნივ"
-#. N~Zf
#: res_LegendPosition_tmpl.hrc
msgctxt ""
"res_LegendPosition_tmpl.hrc\n"
@@ -138,7 +126,6 @@ msgctxt ""
msgid "~Top"
msgstr "~ზემოთ"
-#. N+Ks
#: res_LegendPosition_tmpl.hrc
msgctxt ""
"res_LegendPosition_tmpl.hrc\n"
@@ -148,7 +135,6 @@ msgctxt ""
msgid "~Bottom"
msgstr "~ქვემოთ"
-#. `]m)
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -157,7 +143,6 @@ msgctxt ""
msgid "Negative and Positive"
msgstr ""
-#. GeY)
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -166,7 +151,6 @@ msgctxt ""
msgid "Negative"
msgstr ""
-#. .l[7
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -175,7 +159,6 @@ msgctxt ""
msgid "Positive"
msgstr "პოზიცია"
-#. -21e
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -184,7 +167,6 @@ msgctxt ""
msgid "From Data Table"
msgstr ""
-#. tqK@
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -193,7 +175,6 @@ msgctxt ""
msgid "Linear (%SERIESNAME)"
msgstr ""
-#. 5^hJ
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -202,7 +183,6 @@ msgctxt ""
msgid "Logarithmic (%SERIESNAME)"
msgstr ""
-#. =?g\
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -211,7 +191,6 @@ msgctxt ""
msgid "Exponential (%SERIESNAME)"
msgstr ""
-#. F=I/
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -220,7 +199,6 @@ msgctxt ""
msgid "Power (%SERIESNAME)"
msgstr ""
-#. cI\E
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -229,7 +207,6 @@ msgctxt ""
msgid "Mean (%SERIESNAME)"
msgstr ""
-#. ?J)8
#: res_TextSeparator.src
msgctxt ""
"res_TextSeparator.src\n"
@@ -239,7 +216,6 @@ msgctxt ""
msgid "Space"
msgstr "სივრცე"
-#. W4nI
#: res_TextSeparator.src
#, fuzzy
msgctxt ""
@@ -250,7 +226,6 @@ msgctxt ""
msgid "Comma"
msgstr "მ~ძიმე"
-#. ABZF
#: res_TextSeparator.src
#, fuzzy
msgctxt ""
@@ -261,7 +236,6 @@ msgctxt ""
msgid "Semicolon"
msgstr "~წერტილ-მძიმე"
-#. Fp7(
#: res_TextSeparator.src
#, fuzzy
msgctxt ""
@@ -272,7 +246,6 @@ msgctxt ""
msgid "New line"
msgstr "ახალი ხაზი"
-#. 93Rx
#: Strings_AdditionalControls.src
msgctxt ""
"Strings_AdditionalControls.src\n"
@@ -281,7 +254,6 @@ msgctxt ""
msgid "Simple"
msgstr "ნიმუში"
-#. X)Cq
#: Strings_AdditionalControls.src
msgctxt ""
"Strings_AdditionalControls.src\n"
@@ -290,7 +262,6 @@ msgctxt ""
msgid "Realistic"
msgstr ""
-#. *(X]
#: Strings_AdditionalControls.src
#, fuzzy
msgctxt ""
@@ -300,7 +271,6 @@ msgctxt ""
msgid "Custom"
msgstr "ინდივიდუალური:"
-#. h.]G
#: Strings_AdditionalControls.src
msgctxt ""
"Strings_AdditionalControls.src\n"
@@ -309,7 +279,6 @@ msgctxt ""
msgid "Shape"
msgstr "ფორმა"
-#. (BCV
#: Strings_AdditionalControls.src
msgctxt ""
"Strings_AdditionalControls.src\n"
@@ -318,7 +287,6 @@ msgctxt ""
msgid "~Number of lines"
msgstr "~ხაზების რაოდენობა"
-#. ;4CQ
#: Strings_AdditionalControls.src
#, fuzzy
msgctxt ""
@@ -332,7 +300,6 @@ msgstr ""
"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
"საძიებო სისტემა"
-#. 9e|j
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -341,7 +308,6 @@ msgctxt ""
msgid "Column"
msgstr "სვეტი"
-#. Q:Pn
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -350,7 +316,6 @@ msgctxt ""
msgid "Bar"
msgstr "ჰორიზონტალუეი"
-#. :%2T
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -359,7 +324,6 @@ msgctxt ""
msgid "Area"
msgstr "სივრცე"
-#. -v_=
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -368,7 +332,6 @@ msgctxt ""
msgid "Pie"
msgstr "წრიული"
-#. ~WAm
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -377,7 +340,6 @@ msgctxt ""
msgid "Exploded Pie Chart"
msgstr "დაშლილი წრიული დიაგრამა"
-#. 6.V@
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -386,7 +348,6 @@ msgctxt ""
msgid "Exploded Donut Chart"
msgstr "დაშლილი წრეწირული დიაგრამა"
-#. [bQ{
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -395,7 +356,6 @@ msgctxt ""
msgid "Donut"
msgstr "წრეწირული დიაგრამა"
-#. OMPv
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -404,7 +364,6 @@ msgctxt ""
msgid "Line"
msgstr "ხაზი"
-#. x#-|
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -413,7 +372,6 @@ msgctxt ""
msgid "XY (Scatter)"
msgstr "2D სივრცული დიაგრამა"
-#. 4*:L
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -422,7 +380,6 @@ msgctxt ""
msgid "Points and Lines"
msgstr "წერტილები და წრფეები"
-#. HY{t
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -431,7 +388,6 @@ msgctxt ""
msgid "Points Only"
msgstr "მხოლოდ წერტილები"
-#. 6sa/
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -440,7 +396,6 @@ msgctxt ""
msgid "Lines Only"
msgstr "მხოლოდ ხაზები"
-#. #R3E
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -449,7 +404,6 @@ msgctxt ""
msgid "3D Lines"
msgstr "3დ ხაზები"
-#. `4;t
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -458,7 +412,6 @@ msgctxt ""
msgid "Column and Line"
msgstr "სვეტი და ხაზი"
-#. XvZ.
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -467,7 +420,6 @@ msgctxt ""
msgid "Columns and Lines"
msgstr "სვეტები და ხაზები"
-#. $G_8
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -476,7 +428,6 @@ msgctxt ""
msgid "Stacked Columns and Lines"
msgstr "დაჯგუფებული სვეტები და ხაზები"
-#. d3jd
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -485,7 +436,6 @@ msgctxt ""
msgid "Net"
msgstr "ქსელი"
-#. 0;S`
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -494,7 +444,6 @@ msgctxt ""
msgid "Stock"
msgstr "საბირჟო"
-#. R:j4
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -503,7 +452,6 @@ msgctxt ""
msgid "Stock Chart 1"
msgstr "საბირჟო დიაგრამა 1"
-#. iAu$
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -512,7 +460,6 @@ msgctxt ""
msgid "Stock Chart 2"
msgstr "საბირჟო დიაგრამა 2"
-#. jV!_
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -521,7 +468,6 @@ msgctxt ""
msgid "Stock Chart 3"
msgstr "საბირჟო დიაგრამა 3"
-#. =09H
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -530,7 +476,6 @@ msgctxt ""
msgid "Stock Chart 4"
msgstr "საბირჟო დიაგრამა 4"
-#. p^8~
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -539,7 +484,6 @@ msgctxt ""
msgid "Normal"
msgstr "ნორმალური"
-#. SuFe
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -548,7 +492,6 @@ msgctxt ""
msgid "Stacked"
msgstr "ჩადგმით"
-#. (Gg1
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -557,7 +500,6 @@ msgctxt ""
msgid "Percent Stacked"
msgstr "პროცენტულად ჩაწყობილი"
-#. ?LZx
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -566,7 +508,6 @@ msgctxt ""
msgid "Deep"
msgstr "ღრმად"
-#. 8`?Y
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -575,7 +516,6 @@ msgctxt ""
msgid "Filled"
msgstr "შევსებული"
-#. CIIf
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -584,7 +524,6 @@ msgctxt ""
msgid "Bubble"
msgstr "ბურთულა"
-#. .*xv
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -593,7 +532,6 @@ msgctxt ""
msgid "Bubble Chart"
msgstr "ბურთულებიანი დიაგრამა"
-#. =E`M
#: dlg_View3D.src
msgctxt ""
"dlg_View3D.src\n"
@@ -602,7 +540,6 @@ msgctxt ""
msgid "3D View"
msgstr "სამგანზომილებიანი ხედი"
-#. |)N:
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -612,7 +549,6 @@ msgctxt ""
msgid "Insert Row"
msgstr "სტრიქონის ჩასმა"
-#. .2pr
#: dlg_DataEditor.src
#, fuzzy
msgctxt ""
@@ -623,7 +559,6 @@ msgctxt ""
msgid "Insert Series"
msgstr "სკრიპტის ჩასმა"
-#. 4^5V
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -633,7 +568,6 @@ msgctxt ""
msgid "Insert Text Column"
msgstr ""
-#. #HR6
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -643,7 +577,6 @@ msgctxt ""
msgid "Delete Row"
msgstr "სტრიქონის ჩასმა"
-#. km3:
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -653,7 +586,6 @@ msgctxt ""
msgid "Delete Series"
msgstr ""
-#. $3sv
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -663,7 +595,6 @@ msgctxt ""
msgid "Move Series Right"
msgstr ""
-#. P/dj
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -673,7 +604,6 @@ msgctxt ""
msgid "Move Row Down"
msgstr ""
-#. $$77
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -682,7 +612,6 @@ msgctxt ""
msgid "Data Table"
msgstr ""
-#. =E\\
#: tp_RangeChooser.src
#, fuzzy
msgctxt ""
@@ -693,7 +622,6 @@ msgctxt ""
msgid "Choose a data range"
msgstr "მონაცემთა ბაზის არჩევა"
-#. t;Y!
#: tp_RangeChooser.src
#, fuzzy
msgctxt ""
@@ -704,7 +632,6 @@ msgctxt ""
msgid "~Data range"
msgstr "მონაცემთა თანრიგი"
-#. @p99
#: tp_RangeChooser.src
msgctxt ""
"tp_RangeChooser.src\n"
@@ -714,7 +641,6 @@ msgctxt ""
msgid "Data series in ~rows"
msgstr ""
-#. 69eT
#: tp_RangeChooser.src
msgctxt ""
"tp_RangeChooser.src\n"
@@ -724,7 +650,6 @@ msgctxt ""
msgid "Data series in ~columns"
msgstr ""
-#. K@Zi
#: tp_RangeChooser.src
msgctxt ""
"tp_RangeChooser.src\n"
@@ -734,7 +659,6 @@ msgctxt ""
msgid "~First row as label"
msgstr ""
-#. [w4)
#: tp_RangeChooser.src
msgctxt ""
"tp_RangeChooser.src\n"
@@ -744,7 +668,6 @@ msgctxt ""
msgid "F~irst column as label"
msgstr ""
-#. 8]is
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -754,7 +677,6 @@ msgctxt ""
msgid "Regression Type"
msgstr ""
-#. (wAr
#: res_Trendline_tmpl.hrc
#, fuzzy
msgctxt ""
@@ -765,7 +687,6 @@ msgctxt ""
msgid "~None"
msgstr "არაფერი"
-#. GG9S
#: res_Trendline_tmpl.hrc
#, fuzzy
msgctxt ""
@@ -776,7 +697,6 @@ msgctxt ""
msgid "~Linear"
msgstr "წრფივი"
-#. 4:q_
#: res_Trendline_tmpl.hrc
#, fuzzy
msgctxt ""
@@ -787,7 +707,6 @@ msgctxt ""
msgid "L~ogarithmic"
msgstr "ლოგარითმი"
-#. 9K`S
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -797,7 +716,6 @@ msgctxt ""
msgid "E~xponential"
msgstr ""
-#. b9pq
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -807,7 +725,6 @@ msgctxt ""
msgid "~Power"
msgstr ""
-#. knid
#: res_Trendline_tmpl.hrc
#, fuzzy
msgctxt ""
@@ -818,7 +735,6 @@ msgctxt ""
msgid "Equation"
msgstr "განათლება"
-#. l)?b
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -828,7 +744,6 @@ msgctxt ""
msgid "Show ~equation"
msgstr ""
-#. fljX
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -838,7 +753,6 @@ msgctxt ""
msgid "Show ~coefficient of determination (R²)"
msgstr ""
-#. W|.3
#: tp_PolarOptions.src
msgctxt ""
"tp_PolarOptions.src\n"
@@ -848,7 +762,6 @@ msgctxt ""
msgid "~Clockwise direction"
msgstr ""
-#. ,hUr
#: tp_PolarOptions.src
#, fuzzy
msgctxt ""
@@ -859,7 +772,6 @@ msgctxt ""
msgid "Starting angle"
msgstr "საწყისი კუთხე"
-#. 8icR
#: tp_PolarOptions.src
msgctxt ""
"tp_PolarOptions.src\n"
@@ -869,7 +781,6 @@ msgctxt ""
msgid "~Degrees"
msgstr "~გრადუსი"
-#. E8Nh
#: tp_PolarOptions.src
#, fuzzy
msgctxt ""
@@ -880,7 +791,6 @@ msgctxt ""
msgid "Plot options"
msgstr "ბეჭდვის პარამეტრები"
-#. 5SC{
#: tp_PolarOptions.src
msgctxt ""
"tp_PolarOptions.src\n"
@@ -890,7 +800,6 @@ msgctxt ""
msgid "Include ~values from hidden cells"
msgstr ""
-#. ;bc;
#: tp_3D_SceneIllumination.src
msgctxt ""
"tp_3D_SceneIllumination.src\n"
@@ -900,7 +809,6 @@ msgctxt ""
msgid "~Light source"
msgstr "~სინათლის წყარო"
-#. b@)R
#: tp_3D_SceneIllumination.src
msgctxt ""
"tp_3D_SceneIllumination.src\n"
@@ -910,7 +818,6 @@ msgctxt ""
msgid "~Ambient light"
msgstr "~გარემომცველი სინათლე"
-#. jXhM
#: tp_3D_SceneIllumination.src
#, fuzzy
msgctxt ""
@@ -920,7 +827,6 @@ msgctxt ""
msgid "Light Preview"
msgstr "ღია მწვანე"
-#. i80-
#: tp_TitleRotation.src
msgctxt ""
"tp_TitleRotation.src\n"
@@ -930,7 +836,6 @@ msgctxt ""
msgid "Ve~rtically stacked"
msgstr "~ვერტიკალური დახრით"
-#. i\vL
#: tp_TitleRotation.src
msgctxt ""
"tp_TitleRotation.src\n"
@@ -940,7 +845,6 @@ msgctxt ""
msgid "~Degrees"
msgstr "~გრადუსი"
-#. 0.Y#
#: tp_TitleRotation.src
msgctxt ""
"tp_TitleRotation.src\n"
@@ -950,7 +854,6 @@ msgctxt ""
msgid "Text orientation"
msgstr "ტექსტის მიმართულება"
-#. hDoi
#: tp_TitleRotation.src
msgctxt ""
"tp_TitleRotation.src\n"
@@ -960,7 +863,6 @@ msgctxt ""
msgid "Te~xt direction"
msgstr "~ტექსტის მიმართულება"
-#. YA|:
#: dlg_ShapeFont.src
#, fuzzy
msgctxt ""
@@ -971,7 +873,6 @@ msgctxt ""
msgid "Font"
msgstr "შრიფტი"
-#. SBG(
#: dlg_ShapeFont.src
msgctxt ""
"dlg_ShapeFont.src\n"
@@ -981,7 +882,6 @@ msgctxt ""
msgid "Font Effects"
msgstr "შრიფტის ეფექტები"
-#. I@Wu
#: dlg_ShapeFont.src
#, fuzzy
msgctxt ""
@@ -992,7 +892,6 @@ msgctxt ""
msgid "Font Position"
msgstr "გასვლის პოზიცია"
-#. VWxy
#: dlg_ShapeFont.src
msgctxt ""
"dlg_ShapeFont.src\n"
@@ -1001,7 +900,6 @@ msgctxt ""
msgid "Character"
msgstr "სიმბოლოები"
-#. VD+x
#: Strings_Scale.src
msgctxt ""
"Strings_Scale.src\n"
@@ -1010,7 +908,6 @@ msgctxt ""
msgid "Numbers are required. Check your input."
msgstr ""
-#. #o=H
#: Strings_Scale.src
msgctxt ""
"Strings_Scale.src\n"
@@ -1019,7 +916,6 @@ msgctxt ""
msgid "The major interval requires a positive number. Check your input."
msgstr ""
-#. c9]c
#: Strings_Scale.src
msgctxt ""
"Strings_Scale.src\n"
@@ -1028,7 +924,6 @@ msgctxt ""
msgid "The logarithmic scale requires positive numbers. Check your input."
msgstr ""
-#. dA{W
#: Strings_Scale.src
msgctxt ""
"Strings_Scale.src\n"
@@ -1037,7 +932,6 @@ msgctxt ""
msgid "The minimum must be lower than the maximum. Check your input."
msgstr ""
-#. uCXQ
#: Strings_Scale.src
msgctxt ""
"Strings_Scale.src\n"
@@ -1046,7 +940,6 @@ msgctxt ""
msgid "The major interval needs to be greater than the minor interval. Check your input."
msgstr ""
-#. [=Fj
#: Strings_Scale.src
msgctxt ""
"Strings_Scale.src\n"
@@ -1055,7 +948,6 @@ msgctxt ""
msgid "The major and minor interval need to be greater or equal to the resolution. Check your input."
msgstr ""
-#. jLX5
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1065,7 +957,6 @@ msgctxt ""
msgid "Axes"
msgstr ""
-#. OO2y
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1075,7 +966,6 @@ msgctxt ""
msgid "Major grids"
msgstr ""
-#. B[TW
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1085,7 +975,6 @@ msgctxt ""
msgid "~X axis"
msgstr "~X ღერძი"
-#. L068
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1095,7 +984,6 @@ msgctxt ""
msgid "~Y axis"
msgstr "~Y ღერძი"
-#. 9]MJ
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1105,7 +993,6 @@ msgctxt ""
msgid "~Z axis"
msgstr "~Z ღერძი"
-#. S|.I
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1115,7 +1002,6 @@ msgctxt ""
msgid "Secondary axes"
msgstr ""
-#. L(K}
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1125,7 +1011,6 @@ msgctxt ""
msgid "Minor grids"
msgstr ""
-#. #+EL
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1135,7 +1020,6 @@ msgctxt ""
msgid "Choose a chart type"
msgstr ""
-#. !A4Y
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1145,7 +1029,6 @@ msgctxt ""
msgid "X axis with Categories"
msgstr ""
-#. [QFc
#: tp_ChartType.src
#, fuzzy
msgctxt ""
@@ -1156,7 +1039,6 @@ msgctxt ""
msgid "~3D Look"
msgstr "3D ხედი"
-#. }\g@
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1166,7 +1048,6 @@ msgctxt ""
msgid "~Stack series"
msgstr ""
-#. wAj`
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1176,7 +1057,6 @@ msgctxt ""
msgid "On top"
msgstr ""
-#. {_ID
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1186,7 +1066,6 @@ msgctxt ""
msgid "Percent"
msgstr "პროცენტი"
-#. fJnZ
#: tp_ChartType.src
#, fuzzy
msgctxt ""
@@ -1197,7 +1076,6 @@ msgctxt ""
msgid "Deep"
msgstr "ღრმად"
-#. 4Y]o
#: tp_ChartType.src
#, fuzzy
msgctxt ""
@@ -1208,7 +1086,6 @@ msgctxt ""
msgid "S~mooth lines"
msgstr "მომრგვალებული ხაზები"
-#. 4M\0
#: tp_ChartType.src
#, fuzzy
msgctxt ""
@@ -1231,7 +1108,6 @@ msgstr ""
"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
"თ~ვისებები..."
-#. CX=Y
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1241,7 +1117,6 @@ msgctxt ""
msgid "~Sort by X values"
msgstr ""
-#. lEJ3
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1251,7 +1126,6 @@ msgctxt ""
msgid "Cubic spline"
msgstr ""
-#. =8uq
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1261,7 +1135,6 @@ msgctxt ""
msgid "B-Spline"
msgstr "B-მრუდი"
-#. P[^4
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1271,7 +1144,6 @@ msgctxt ""
msgid "~Resolution"
msgstr "~გარჩევადობა"
-#. 7znu
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1281,7 +1153,6 @@ msgctxt ""
msgid "~Degree of polynomials"
msgstr ""
-#. Yq=6
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1291,7 +1162,6 @@ msgctxt ""
msgid "Customize data ranges for individual data series"
msgstr ""
-#. s+aV
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1301,7 +1171,6 @@ msgctxt ""
msgid "Data ~series"
msgstr ""
-#. JWm_
#: tp_DataSource.src
#, fuzzy
msgctxt ""
@@ -1312,7 +1181,6 @@ msgctxt ""
msgid "~Data ranges"
msgstr "მონაცემთა თანრიგი"
-#. .:VG
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1322,7 +1190,6 @@ msgctxt ""
msgid "Ran~ge for %VALUETYPE"
msgstr ""
-#. Zl#c
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1332,7 +1199,6 @@ msgctxt ""
msgid "~Categories"
msgstr "~კატეგორიები"
-#. 1m2y
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1342,7 +1208,6 @@ msgctxt ""
msgid "Data ~labels"
msgstr ""
-#. f[R%
#: tp_DataSource.src
#, fuzzy
msgctxt ""
@@ -1375,7 +1240,6 @@ msgstr ""
"#-#-#-#-# textconversiondlgs.po (PACKAGE VERSION) #-#-#-#-#\n"
"~დამატება"
-#. kBDc
#: tp_DataSource.src
#, fuzzy
msgctxt ""
@@ -1398,7 +1262,6 @@ msgstr ""
"#-#-#-#-# gui.po (PACKAGE VERSION) #-#-#-#-#\n"
"~ამოღება"
-#. G^6K
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1408,7 +1271,6 @@ msgctxt ""
msgid "Sho~w labels"
msgstr "ეტიკეტების ჩ~ვენება"
-#. Zoa+
#: tp_AxisLabel.src
#, fuzzy
msgctxt ""
@@ -1419,7 +1281,6 @@ msgctxt ""
msgid "Text orientation"
msgstr "ტექსტის მიმართულება"
-#. a`5r
#: tp_AxisLabel.src
#, fuzzy
msgctxt ""
@@ -1430,7 +1291,6 @@ msgctxt ""
msgid "Ve~rtically stacked"
msgstr "~ვერტიკალური დახრით"
-#. 68oB
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1440,7 +1300,6 @@ msgctxt ""
msgid "~Degrees"
msgstr "~გრადუსი"
-#. e9@?
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1450,7 +1309,6 @@ msgctxt ""
msgid "Text flow"
msgstr "ტექსტის მიყოლა"
-#. 0egC
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1460,7 +1318,6 @@ msgctxt ""
msgid "O~verlap"
msgstr "მი~ფარება"
-#. l:ya
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1470,7 +1327,6 @@ msgctxt ""
msgid "~Break"
msgstr "~შეწყვეტა"
-#. .@6\
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1480,7 +1336,6 @@ msgctxt ""
msgid "Order"
msgstr "თანრიგი"
-#. g:FP
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1490,7 +1345,6 @@ msgctxt ""
msgid "~Tile"
msgstr "~მოზაიკა"
-#. ,jVO
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1500,7 +1354,6 @@ msgctxt ""
msgid "St~agger odd"
msgstr "~ზიგზაგი კენტი"
-#. 8H5\
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1510,7 +1363,6 @@ msgctxt ""
msgid "Stagger ~even"
msgstr "ზიგზაგი ~ლუწი"
-#. 6S](
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1520,7 +1372,6 @@ msgctxt ""
msgid "A~utomatic"
msgstr "ა~ვტომატური"
-#. 1o^t
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1530,7 +1381,6 @@ msgctxt ""
msgid "Te~xt direction"
msgstr "ტექსტის მიმართულება"
-#. 0/!M
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1540,7 +1390,6 @@ msgctxt ""
msgid "~Title"
msgstr "სათაური"
-#. PZFl
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1550,7 +1399,6 @@ msgctxt ""
msgid "~Subtitle"
msgstr "~ქვესათაური"
-#. VBni
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1560,7 +1408,6 @@ msgctxt ""
msgid "Axes"
msgstr ""
-#. %y.|
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1570,7 +1417,6 @@ msgctxt ""
msgid "~X axis"
msgstr "~X ღერძი"
-#. 1O{i
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1580,7 +1426,6 @@ msgctxt ""
msgid "~Y axis"
msgstr "~Y ღერძი"
-#. QkE=
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1590,7 +1435,6 @@ msgctxt ""
msgid "~Z axis"
msgstr "~Z ღერძი"
-#. ffL@
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1600,7 +1444,6 @@ msgctxt ""
msgid "Secondary Axes"
msgstr ""
-#. @8#P
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1610,7 +1453,6 @@ msgctxt ""
msgid "X ~axis"
msgstr ""
-#. TS(}
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1620,7 +1462,6 @@ msgctxt ""
msgid "Y ax~is"
msgstr ""
-#. -C0w
#: dlg_ShapeParagraph.src
#, fuzzy
msgctxt ""
@@ -1637,7 +1478,6 @@ msgstr ""
"#-#-#-#-# form.po (PACKAGE VERSION) #-#-#-#-#\n"
"დაშორება და დაშორებები"
-#. :WTi
#: dlg_ShapeParagraph.src
msgctxt ""
"dlg_ShapeParagraph.src\n"
@@ -1647,7 +1487,6 @@ msgctxt ""
msgid "Alignment"
msgstr "გასწორება"
-#. 8tw(
#: dlg_ShapeParagraph.src
#, fuzzy
msgctxt ""
@@ -1658,7 +1497,6 @@ msgctxt ""
msgid "Asian Typography"
msgstr "აზიური ტიპოგრაფია"
-#. {Klu
#: dlg_ShapeParagraph.src
#, fuzzy
msgctxt ""
@@ -1669,7 +1507,6 @@ msgctxt ""
msgid "Tab"
msgstr "ტაბულაციები"
-#. jers
#: dlg_ShapeParagraph.src
#, fuzzy
msgctxt ""
@@ -1691,7 +1528,6 @@ msgstr ""
"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
"აბზაცი"
-#. #C55
#: tp_3D_SceneGeometry.src
msgctxt ""
"tp_3D_SceneGeometry.src\n"
@@ -1700,7 +1536,6 @@ msgctxt ""
msgid " degrees"
msgstr "გრადუსი"
-#. BMbV
#: tp_3D_SceneGeometry.src
msgctxt ""
"tp_3D_SceneGeometry.src\n"
@@ -1710,7 +1545,6 @@ msgctxt ""
msgid "~Right-angled axes"
msgstr ""
-#. jWQx
#: tp_3D_SceneGeometry.src
msgctxt ""
"tp_3D_SceneGeometry.src\n"
@@ -1720,7 +1554,6 @@ msgctxt ""
msgid "~X rotation"
msgstr ""
-#. (%\N
#: tp_3D_SceneGeometry.src
msgctxt ""
"tp_3D_SceneGeometry.src\n"
@@ -1730,7 +1563,6 @@ msgctxt ""
msgid "~Y rotation"
msgstr ""
-#. miUt
#: tp_3D_SceneGeometry.src
msgctxt ""
"tp_3D_SceneGeometry.src\n"
@@ -1740,7 +1572,6 @@ msgctxt ""
msgid "~Z rotation"
msgstr ""
-#. N=!e
#: tp_3D_SceneGeometry.src
msgctxt ""
"tp_3D_SceneGeometry.src\n"
@@ -1750,7 +1581,6 @@ msgctxt ""
msgid "~Perspective"
msgstr "~კუთხე"
-#. =YB6
#: res_SecondaryAxisCheckBoxes_tmpl.hrc
msgctxt ""
"res_SecondaryAxisCheckBoxes_tmpl.hrc\n"
@@ -1760,7 +1590,6 @@ msgctxt ""
msgid "X ~axis"
msgstr ""
-#. hZjk
#: res_SecondaryAxisCheckBoxes_tmpl.hrc
msgctxt ""
"res_SecondaryAxisCheckBoxes_tmpl.hrc\n"
@@ -1770,7 +1599,6 @@ msgctxt ""
msgid "Y ax~is"
msgstr ""
-#. N7M7
#: res_SecondaryAxisCheckBoxes_tmpl.hrc
msgctxt ""
"res_SecondaryAxisCheckBoxes_tmpl.hrc\n"
@@ -1780,7 +1608,6 @@ msgctxt ""
msgid "Z axi~s"
msgstr ""
-#. #b?E
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1789,7 +1616,6 @@ msgctxt ""
msgid "Chart Wizard"
msgstr "ცხრილების ასისტენტი"
-#. OV$q
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1798,7 +1624,6 @@ msgctxt ""
msgid "Smooth Lines"
msgstr "მომრგვალებული ხაზები"
-#. MLs=
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1807,7 +1632,6 @@ msgctxt ""
msgid "Number Format for Percentage Value"
msgstr "რიცხვის ფორმატი პროცენტული მნიშვნელობისთვის"
-#. [2mK
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1816,7 +1640,6 @@ msgctxt ""
msgid "Chart Type"
msgstr "დიაგრამის ტიპი"
-#. }`h%
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1825,7 +1648,6 @@ msgctxt ""
msgid "Data Range"
msgstr "მონაცემთა თანრიგი"
-#. @QzI
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1834,7 +1656,6 @@ msgctxt ""
msgid "Chart Elements"
msgstr "დიაგრამის ელემენტები"
-#. ,QlR
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1843,7 +1664,6 @@ msgctxt ""
msgid "Chart Location"
msgstr "დიაგრამის მდებარეობა"
-#. GOT7
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1852,7 +1672,6 @@ msgctxt ""
msgid "Line"
msgstr "ხაზი"
-#. w^ul
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1861,7 +1680,6 @@ msgctxt ""
msgid "Borders"
msgstr "ჩარჩოები"
-#. bx$a
#: Strings.src
#, fuzzy
msgctxt ""
@@ -1871,7 +1689,6 @@ msgctxt ""
msgid "Area"
msgstr "სივრცე"
-#. HE9j
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1880,7 +1697,6 @@ msgctxt ""
msgid "Transparency"
msgstr "გამჭირვალეობა"
-#. :7)n
#: Strings.src
#, fuzzy
msgctxt ""
@@ -1890,7 +1706,6 @@ msgctxt ""
msgid "Font"
msgstr "შრიფტი"
-#. Rje4
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1899,7 +1714,6 @@ msgctxt ""
msgid "Font Effects"
msgstr "შრიფტის ეფექტები"
-#. _Au`
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1908,7 +1722,6 @@ msgctxt ""
msgid "Numbers"
msgstr "რაოდენობა"
-#. `Y1Y
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1917,7 +1730,6 @@ msgctxt ""
msgid "Position"
msgstr "პოზიცია"
-#. 8QM_
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1926,7 +1738,6 @@ msgctxt ""
msgid "Up"
msgstr "ზემოთ"
-#. 1$X/
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1935,7 +1746,6 @@ msgctxt ""
msgid "Down"
msgstr "დაბლა"
-#. rr/8
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1944,7 +1754,6 @@ msgctxt ""
msgid "Layout"
msgstr "განლაგება"
-#. ]S?b
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1953,7 +1762,6 @@ msgctxt ""
msgid "Options"
msgstr "პარამეტრები"
-#. 4L1%
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1962,7 +1770,6 @@ msgctxt ""
msgid "Scale"
msgstr "მასშტაბირება"
-#. 3l@l
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1971,7 +1778,6 @@ msgctxt ""
msgid "Positioning"
msgstr "პოზიცია"
-#. x\.E
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2003,7 +1809,6 @@ msgstr ""
"#-#-#-#-# xsltdialog.po (PACKAGE VERSION) #-#-#-#-#\n"
"ტიპი"
-#. 4MGk
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2012,7 +1817,6 @@ msgctxt ""
msgid "X Error Bars"
msgstr ""
-#. 0Igp
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2021,7 +1825,6 @@ msgctxt ""
msgid "Y Error Bars"
msgstr ""
-#. Y]0*
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2030,7 +1833,6 @@ msgctxt ""
msgid "Z Error Bars"
msgstr ""
-#. YU\X
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2039,7 +1841,6 @@ msgctxt ""
msgid "Alignment"
msgstr "გასწორება"
-#. 5=oK
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2049,7 +1850,6 @@ msgctxt ""
msgid "Perspective"
msgstr "~კუთხე"
-#. e{?y
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2058,7 +1858,6 @@ msgctxt ""
msgid "Appearance"
msgstr "ხილვადობა"
-#. [)o%
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2067,7 +1866,6 @@ msgctxt ""
msgid "Illumination"
msgstr "ილუმინაცია"
-#. /(B=
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2077,7 +1875,6 @@ msgctxt ""
msgid "Asian Typography"
msgstr "აზიური ტიპოგრაფია"
-#. :+op
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2086,7 +1883,6 @@ msgctxt ""
msgid "Mean value line with value %AVERAGE_VALUE and standard deviation %STD_DEVIATION"
msgstr ""
-#. E%IQ
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2096,7 +1892,6 @@ msgctxt ""
msgid "Axis"
msgstr "ღ~ერძი"
-#. ibaz
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2105,7 +1900,6 @@ msgctxt ""
msgid "X Axis"
msgstr ""
-#. ,/Rn
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2114,7 +1908,6 @@ msgctxt ""
msgid "Y Axis"
msgstr ""
-#. 1om8
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2123,7 +1916,6 @@ msgctxt ""
msgid "Z Axis"
msgstr ""
-#. -#_=
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2133,7 +1925,6 @@ msgctxt ""
msgid "Secondary X Axis"
msgstr "~მეორადი X ღერძი..."
-#. gWrK
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2143,7 +1934,6 @@ msgctxt ""
msgid "Secondary Y Axis"
msgstr "~მეორადი Y ღერძი..."
-#. ?[f8
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2152,7 +1942,6 @@ msgctxt ""
msgid "Axes"
msgstr ""
-#. YgOW
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2161,7 +1950,6 @@ msgctxt ""
msgid "Grids"
msgstr "ბადე"
-#. ke3*
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2170,7 +1958,6 @@ msgctxt ""
msgid "Grid"
msgstr "ბადე"
-#. lOW(
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2180,7 +1967,6 @@ msgctxt ""
msgid "X Axis Major Grid"
msgstr "~X ღერძის მთავარი საკოორდინაციო ბადე"
-#. #wk1
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2190,7 +1976,6 @@ msgctxt ""
msgid "Y Axis Major Grid"
msgstr "~Y ღერძის მთავარი საკოორდინაციო ბადე"
-#. UH@@
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2200,7 +1985,6 @@ msgctxt ""
msgid "Z Axis Major Grid"
msgstr "~Z ღერძის მთავარი საკოორდინაციო ბადე"
-#. 9?cE
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2210,7 +1994,6 @@ msgctxt ""
msgid "X Axis Minor Grid"
msgstr "X ღერძის არამთავარი საკოორდინაციო ბადე"
-#. YWO5
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2220,7 +2003,6 @@ msgctxt ""
msgid "Y Axis Minor Grid"
msgstr "Y ღერძის არამთავარი ~საკოორდინაციო ბადე"
-#. 4j6J
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2230,7 +2012,6 @@ msgctxt ""
msgid "Z Axis Minor Grid"
msgstr "Z ~ღერძის არამთავარი საკოორდინაციო ბადე"
-#. sYEn
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2239,7 +2020,6 @@ msgctxt ""
msgid "Legend"
msgstr "ლეგენდა"
-#. 8c`i
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2248,7 +2028,6 @@ msgctxt ""
msgid "Title"
msgstr "სათაური"
-#. kLHp
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2257,7 +2036,6 @@ msgctxt ""
msgid "Titles"
msgstr "სათაურები"
-#. m[@6
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2266,7 +2044,6 @@ msgctxt ""
msgid "Main Title"
msgstr ""
-#. .lG5
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2275,7 +2052,6 @@ msgctxt ""
msgid "Subtitle"
msgstr "~ქვესათაური"
-#. *jdG
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2285,7 +2061,6 @@ msgctxt ""
msgid "X Axis Title"
msgstr "სათაური (~X ღერძი)..."
-#. SX[Q
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2295,7 +2070,6 @@ msgctxt ""
msgid "Y Axis Title"
msgstr "სათაური (~Y ღერძი)..."
-#. ]7.b
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2305,7 +2079,6 @@ msgctxt ""
msgid "Z Axis Title"
msgstr "სათაური (~Z ღერძი)..."
-#. $HXQ
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2314,7 +2087,6 @@ msgctxt ""
msgid "Secondary X Axis Title"
msgstr ""
-#. @.5E
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2323,7 +2095,6 @@ msgctxt ""
msgid "Secondary Y Axis Title"
msgstr ""
-#. ?5k5
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2332,7 +2103,6 @@ msgctxt ""
msgid "Label"
msgstr "ეტიკეტი"
-#. .%E/
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2341,7 +2111,6 @@ msgctxt ""
msgid "Data Labels"
msgstr ""
-#. oe^C
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2350,7 +2119,6 @@ msgctxt ""
msgid "Data Point"
msgstr "მონაცემთა წერტილი"
-#. *`4I
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2359,7 +2127,6 @@ msgctxt ""
msgid "Data Points"
msgstr "მონაცემთა წერტილი"
-#. 5;Uc
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2368,7 +2135,6 @@ msgctxt ""
msgid "Legend Key"
msgstr ""
-#. 1mXl
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2377,7 +2143,6 @@ msgctxt ""
msgid "Data Series"
msgstr ""
-#. A^\/
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2386,7 +2151,6 @@ msgctxt ""
msgid "Data Series"
msgstr ""
-#. Q.Bm
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2395,7 +2159,6 @@ msgctxt ""
msgid "Trend Line"
msgstr ""
-#. 3A2I
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2404,7 +2167,6 @@ msgctxt ""
msgid "Trend Lines"
msgstr ""
-#. ~J6k
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2413,7 +2175,6 @@ msgctxt ""
msgid "Trend line %FORMULA with accuracy R² = %RSQUARED"
msgstr ""
-#. vzbm
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2422,7 +2183,6 @@ msgctxt ""
msgid "Mean Value Line"
msgstr ""
-#. (_Oj
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2432,7 +2192,6 @@ msgctxt ""
msgid "Equation"
msgstr "განათლება"
-#. 1hj{
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2441,7 +2200,6 @@ msgctxt ""
msgid "X Error Bars"
msgstr ""
-#. RN#6
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2450,7 +2208,6 @@ msgctxt ""
msgid "Y Error Bars"
msgstr ""
-#. Jr2O
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2459,7 +2216,6 @@ msgctxt ""
msgid "Z Error Bars"
msgstr ""
-#. Zp(8
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2468,7 +2224,6 @@ msgctxt ""
msgid "Stock Loss"
msgstr ""
-#. ;nt8
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2477,7 +2232,6 @@ msgctxt ""
msgid "Stock Gain"
msgstr ""
-#. 33)~
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2486,7 +2240,6 @@ msgctxt ""
msgid "Chart Area"
msgstr "დიაგრამის არე"
-#. 3-4`
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2504,7 +2257,6 @@ msgstr ""
"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
"გრაფიკები"
-#. t8[[
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2513,7 +2265,6 @@ msgctxt ""
msgid "Chart Wall"
msgstr "დიაგრამის სტენდი"
-#. 0Hq|
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2522,7 +2273,6 @@ msgctxt ""
msgid "Chart Floor"
msgstr "დიაგრამის ფუძე"
-#. awbi
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2532,7 +2282,6 @@ msgctxt ""
msgid "Drawing Object"
msgstr "ხატვის ობიექტები"
-#. T0^x
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2542,7 +2291,6 @@ msgctxt ""
msgid "Select data range"
msgstr "მონაცემთა ბაზის მონიშვნა"
-#. YlE)
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2551,7 +2299,6 @@ msgctxt ""
msgid "Select a color using the color dialog"
msgstr ""
-#. 5Wbc
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2560,7 +2307,6 @@ msgctxt ""
msgid "Light Source %LIGHTNUMBER"
msgstr ""
-#. bv_+
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2569,7 +2315,6 @@ msgctxt ""
msgid "Data Series '%SERIESNAME'"
msgstr ""
-#. -x7j
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2578,7 +2323,6 @@ msgctxt ""
msgid "Data Point %POINTNUMBER"
msgstr ""
-#. R7n^
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2587,7 +2331,6 @@ msgctxt ""
msgid "Values: %POINTVALUES"
msgstr ""
-#. DM-.
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2596,7 +2339,6 @@ msgctxt ""
msgid "Data Point %POINTNUMBER, data series %SERIESNUMBER, values: %POINTVALUES"
msgstr ""
-#. _ofE
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2605,7 +2347,6 @@ msgctxt ""
msgid "Data point %POINTNUMBER in data series %SERIESNUMBER selected, values: %POINTVALUES"
msgstr ""
-#. 3f^o
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2614,7 +2355,6 @@ msgctxt ""
msgid "%OBJECTNAME selected"
msgstr ""
-#. }NA@
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2623,7 +2363,6 @@ msgctxt ""
msgid "Pie exploded by %PERCENTVALUE percent"
msgstr ""
-#. {Pez
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2632,7 +2371,6 @@ msgctxt ""
msgid "%OBJECTNAME for Data Series '%SERIESNAME'"
msgstr ""
-#. Tkh#
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2641,7 +2379,6 @@ msgctxt ""
msgid "%OBJECTNAME for all Data Series"
msgstr ""
-#. f,Vj
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2650,7 +2387,6 @@ msgctxt ""
msgid "Edit chart type"
msgstr ""
-#. owTG
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2659,7 +2395,6 @@ msgctxt ""
msgid "Edit data ranges"
msgstr ""
-#. h[n4
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2668,7 +2403,6 @@ msgctxt ""
msgid "Edit 3D view"
msgstr ""
-#. 7wE:
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2677,7 +2411,6 @@ msgctxt ""
msgid "Edit chart data"
msgstr ""
-#. G9*d
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2687,7 +2420,6 @@ msgctxt ""
msgid "Legend on/off"
msgstr "ლეგენდა ჩარტული/გამორთული"
-#. ms!r
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2697,7 +2429,6 @@ msgctxt ""
msgid "Horizontal grid on/off"
msgstr "ჰორიზონტალური საკოორდინაციო ბადე ჩარტული/გამორთული"
-#. zxjI
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2706,7 +2437,6 @@ msgctxt ""
msgid "Scale Text"
msgstr "ტექსტის მაშტაბირება"
-#. ]oB2
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2715,7 +2445,6 @@ msgctxt ""
msgid "Automatic Layout"
msgstr "რეორგანიზებული დიაგრამა"
-#. 1Gan
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2727,7 +2456,6 @@ msgstr ""
"ამ ფუნქციის გაშვება არჩეულ \n"
"ობიექტებთან ერთად შეუძლებელია."
-#. KLJ:
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2737,7 +2465,6 @@ msgctxt ""
msgid "Edit text"
msgstr "შენიშვნის რედაქტირება"
-#. zNY4
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2747,7 +2474,6 @@ msgctxt ""
msgid "Column %COLUMNNUMBER"
msgstr "სვეტი %COLUMNLETTER"
-#. 23K3
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2756,7 +2482,6 @@ msgctxt ""
msgid "Row %ROWNUMBER"
msgstr "სტრიქონი %ROWNUMBER"
-#. S=*e
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2786,7 +2511,6 @@ msgstr ""
"#-#-#-#-# xsltdialog.po (PACKAGE VERSION) #-#-#-#-#\n"
"სახელი"
-#. $=l!
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2796,7 +2520,6 @@ msgctxt ""
msgid "X-Values"
msgstr "მნიშვნელობები"
-#. $f\y
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2806,7 +2529,6 @@ msgctxt ""
msgid "Y-Values"
msgstr "მნიშვნელობები"
-#. I[7E
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2815,7 +2537,6 @@ msgctxt ""
msgid "Bubble Sizes"
msgstr ""
-#. q(j;
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2824,7 +2545,6 @@ msgctxt ""
msgid "X-Error-Bars"
msgstr ""
-#. lrQ\
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2833,7 +2553,6 @@ msgctxt ""
msgid "Positive X-Error-Bars"
msgstr ""
-#. QFp(
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2842,7 +2561,6 @@ msgctxt ""
msgid "Negative X-Error-Bars"
msgstr ""
-#. imSO
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2851,7 +2569,6 @@ msgctxt ""
msgid "Y-Error-Bars"
msgstr ""
-#. `UFh
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2860,7 +2577,6 @@ msgctxt ""
msgid "Positive Y-Error-Bars"
msgstr ""
-#. l@)o
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2869,7 +2585,6 @@ msgctxt ""
msgid "Negative Y-Error-Bars"
msgstr ""
-#. ],hv
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2878,7 +2593,6 @@ msgctxt ""
msgid "Open Values"
msgstr ""
-#. B*OJ
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2887,7 +2601,6 @@ msgctxt ""
msgid "Close Values"
msgstr ""
-#. i3VT
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2896,7 +2609,6 @@ msgctxt ""
msgid "Low Values"
msgstr ""
-#. cD^v
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2905,7 +2617,6 @@ msgctxt ""
msgid "High Values"
msgstr ""
-#. ;-Ya
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2914,7 +2625,6 @@ msgctxt ""
msgid "Categories"
msgstr "კატეგორიები"
-#. IZBn
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2923,7 +2633,6 @@ msgctxt ""
msgid "Unnamed Series"
msgstr ""
-#. ~O0Z
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2932,7 +2641,6 @@ msgctxt ""
msgid "Unnamed Series %NUMBER"
msgstr ""
-#. |QKQ
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2941,7 +2649,6 @@ msgctxt ""
msgid "Select Range for %VALUETYPE of %SERIESNAME"
msgstr ""
-#. x!Se
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2950,7 +2657,6 @@ msgctxt ""
msgid "Select Range for Categories"
msgstr ""
-#. m3}R
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2959,7 +2665,6 @@ msgctxt ""
msgid "Select Range for data labels"
msgstr ""
-#. RJb?
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2968,7 +2673,6 @@ msgctxt ""
msgid "Select Range for Positive Error Bars"
msgstr ""
-#. `C$+
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2977,7 +2681,6 @@ msgctxt ""
msgid "Select Range for Negative Error Bars"
msgstr ""
-#. ?E$Z
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2988,7 +2691,6 @@ msgid ""
"Ignore this change and close the dialog?"
msgstr ""
-#. nCOv
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2997,7 +2699,6 @@ msgctxt ""
msgid "Left-to-right"
msgstr "მარცხნიდან მარჯვნივ"
-#. $kId
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -3006,7 +2707,6 @@ msgctxt ""
msgid "Right-to-left"
msgstr "მარჯვნიდან მარცხნივ"
-#. S`BX
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -3015,7 +2715,6 @@ msgctxt ""
msgid "Use superordinate object settings"
msgstr "მაქვემდებარებელი ობიექტის პარამეტრების გამოყენება"
-#. rckm
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3025,7 +2724,6 @@ msgctxt ""
msgid "Axis line"
msgstr ""
-#. SD6X
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3035,7 +2733,6 @@ msgctxt ""
msgid "~Cross other axis at"
msgstr ""
-#. c9cc
#: tp_AxisPositions.src
#, fuzzy
msgctxt ""
@@ -3050,7 +2747,6 @@ msgstr ""
"#-#-#-#-# animations.po (PACKAGE VERSION) #-#-#-#-#\n"
"დაწყება"
-#. YVFb
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3060,7 +2756,6 @@ msgctxt ""
msgid "End"
msgstr "დასასრული"
-#. Hw.^
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3070,7 +2765,6 @@ msgctxt ""
msgid "Value"
msgstr "მნიშვნელობა"
-#. +-{(
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3080,7 +2774,6 @@ msgctxt ""
msgid "Category"
msgstr "კატეგორია"
-#. ~`FW
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3090,7 +2783,6 @@ msgctxt ""
msgid "Axis ~between categories"
msgstr ""
-#. LY7z
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3100,7 +2792,6 @@ msgctxt ""
msgid "Labels"
msgstr "ეტიკეტი"
-#. 8[W:
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3110,7 +2801,6 @@ msgctxt ""
msgid "~Place labels"
msgstr ""
-#. D[s0
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3120,7 +2810,6 @@ msgctxt ""
msgid "Near axis"
msgstr ""
-#. S%S2
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3130,7 +2819,6 @@ msgctxt ""
msgid "Near axis (other side)"
msgstr ""
-#. 1Qec
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3140,7 +2828,6 @@ msgctxt ""
msgid "Outside start"
msgstr ""
-#. %t1}
#: tp_AxisPositions.src
#, fuzzy
msgctxt ""
@@ -3151,7 +2838,6 @@ msgctxt ""
msgid "Outside end"
msgstr "მხოლოდ გარეთ"
-#. QN1h
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3161,7 +2847,6 @@ msgctxt ""
msgid "~Distance"
msgstr "~დისტანცია"
-#. mPyG
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3171,7 +2856,6 @@ msgctxt ""
msgid "Interval marks"
msgstr ""
-#. /VJ\
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3181,7 +2865,6 @@ msgctxt ""
msgid "Major:"
msgstr ""
-#. t^2?
#: tp_AxisPositions.src
#, fuzzy
msgctxt ""
@@ -3192,7 +2875,6 @@ msgctxt ""
msgid "~Inner"
msgstr "შიდა"
-#. ~FK?
#: tp_AxisPositions.src
#, fuzzy
msgctxt ""
@@ -3203,7 +2885,6 @@ msgctxt ""
msgid "~Outer"
msgstr "გარე"
-#. @~-@
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3213,7 +2894,6 @@ msgctxt ""
msgid "Minor:"
msgstr ""
-#. 3/jC
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3223,7 +2903,6 @@ msgctxt ""
msgid "I~nner"
msgstr "შ~იდა"
-#. q[lj
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3233,7 +2912,6 @@ msgctxt ""
msgid "O~uter"
msgstr "გ~არე"
-#. -O43
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3243,7 +2921,6 @@ msgctxt ""
msgid "Place ~marks"
msgstr ""
-#. jiQk
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3253,7 +2930,6 @@ msgctxt ""
msgid "At labels"
msgstr ""
-#. V3YC
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3263,7 +2939,6 @@ msgctxt ""
msgid "At axis"
msgstr ""
-#. 8E8C
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3273,7 +2948,6 @@ msgctxt ""
msgid "At axis and labels"
msgstr ""
-#. ;!Z4
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3283,7 +2957,6 @@ msgctxt ""
msgid "Grids"
msgstr "ბადე"
-#. XP5Z
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3293,7 +2966,6 @@ msgctxt ""
msgid "Show major ~grid"
msgstr ""
-#. /pjH
#: tp_AxisPositions.src
#, fuzzy
msgctxt ""
@@ -3304,7 +2976,6 @@ msgctxt ""
msgid "Mo~re..."
msgstr "დამატებით..."
-#. 3LQ!
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3314,7 +2985,6 @@ msgctxt ""
msgid "~Show minor grid"
msgstr ""
-#. ZpxH
#: tp_AxisPositions.src
#, fuzzy
msgctxt ""
@@ -3325,7 +2995,6 @@ msgctxt ""
msgid "Mor~e..."
msgstr "დამატებით..."
-#. =[g1
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3335,7 +3004,6 @@ msgctxt ""
msgid "Standard Error"
msgstr ""
-#. hiJ@
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3345,7 +3013,6 @@ msgctxt ""
msgid "Standard Deviation"
msgstr "~სტანდარტული გადახრა"
-#. ;Hm,
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3355,7 +3022,6 @@ msgctxt ""
msgid "Variance"
msgstr "~ვარიანტები"
-#. D]IP
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3365,7 +3031,6 @@ msgctxt ""
msgid "Error Margin"
msgstr "უხეში შე~ცდომა"
-#. ,[ic
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3375,7 +3040,6 @@ msgctxt ""
msgid "Error Category"
msgstr "შეცდომის კატეგორია"
-#. |Bzt
#: res_ErrorBar_tmpl.hrc
#, fuzzy
msgctxt ""
@@ -3386,7 +3050,6 @@ msgctxt ""
msgid "~None"
msgstr "არაფერი"
-#. (T]f
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3396,7 +3059,6 @@ msgctxt ""
msgid "~Constant Value"
msgstr "~კონსტანტური მნიშვნელობა"
-#. 21lr
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3406,7 +3068,6 @@ msgctxt ""
msgid "~Percentage"
msgstr "~პროცენტი"
-#. 40%j
#: res_ErrorBar_tmpl.hrc
#, fuzzy
msgctxt ""
@@ -3417,7 +3078,6 @@ msgctxt ""
msgid "Cell ~Range"
msgstr "უჯრის შუალედი"
-#. ;Mat
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3427,7 +3087,6 @@ msgctxt ""
msgid "Parameters"
msgstr "პარამეტრები"
-#. [9VJ
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3437,7 +3096,6 @@ msgctxt ""
msgid "P~ositive (+)"
msgstr ""
-#. 1,gt
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3447,7 +3105,6 @@ msgctxt ""
msgid "~Negative (-)"
msgstr ""
-#. LUUh
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3457,7 +3114,6 @@ msgctxt ""
msgid "Same value for both"
msgstr ""
-#. Fj-Q
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3467,7 +3123,6 @@ msgctxt ""
msgid "Error Indicator"
msgstr "შეცდომის ~ინდიკატორი"
-#. cl0H
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3477,7 +3132,6 @@ msgctxt ""
msgid "Positive ~and Negative"
msgstr ""
-#. _eU_
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3487,7 +3141,6 @@ msgctxt ""
msgid "Pos~itive"
msgstr "პოზიცია"
-#. FS4-
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3497,7 +3150,6 @@ msgctxt ""
msgid "Ne~gative"
msgstr ""
-#. 5KHP
#: tp_Scale.src
#, fuzzy
msgctxt ""
@@ -3512,7 +3164,6 @@ msgstr ""
"#-#-#-#-# analysis.po (PACKAGE VERSION) #-#-#-#-#\n"
"დღეები"
-#. *u.K
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3522,7 +3173,6 @@ msgctxt ""
msgid "Months"
msgstr "თვეებით"
-#. )(SQ
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3532,7 +3182,6 @@ msgctxt ""
msgid "Years"
msgstr "წლებით"
-#. ~9J`
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3542,7 +3191,6 @@ msgctxt ""
msgid "Scale"
msgstr "მასშტაბირება"
-#. dTXi
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3552,7 +3200,6 @@ msgctxt ""
msgid "~Reverse direction"
msgstr ""
-#. :\7L
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3562,7 +3209,6 @@ msgctxt ""
msgid "~Logarithmic scale"
msgstr ""
-#. )tli
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3572,7 +3218,6 @@ msgctxt ""
msgid "T~ype"
msgstr "აკ~რეფვა"
-#. fGyk
#: tp_Scale.src
#, fuzzy
msgctxt ""
@@ -3599,7 +3244,6 @@ msgstr ""
"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
"ავტომატური"
-#. _1xX
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3609,7 +3253,6 @@ msgctxt ""
msgid "Text"
msgstr "ტექსტი"
-#. :yj^
#: tp_Scale.src
#, fuzzy
msgctxt ""
@@ -3646,7 +3289,6 @@ msgstr ""
"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
"თარიღი"
-#. j%DR
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3656,7 +3298,6 @@ msgctxt ""
msgid "~Minimum"
msgstr "~მონიმუმი"
-#. #X(g
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3666,7 +3307,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "ავტომატური"
-#. V^*c
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3676,7 +3316,6 @@ msgctxt ""
msgid "Ma~ximum"
msgstr "მა~ქსიმუმი"
-#. ez:a
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3686,7 +3325,6 @@ msgctxt ""
msgid "A~utomatic"
msgstr "ა~ვტომატური"
-#. 52OW
#: tp_Scale.src
#, fuzzy
msgctxt ""
@@ -3697,7 +3335,6 @@ msgctxt ""
msgid "R~esolution"
msgstr "~გარჩევადობა"
-#. vO{%
#: tp_Scale.src
#, fuzzy
msgctxt ""
@@ -3708,7 +3345,6 @@ msgctxt ""
msgid "Automat~ic"
msgstr "ავტომატური"
-#. CUJ9
#: tp_Scale.src
#, fuzzy
msgctxt ""
@@ -3719,7 +3355,6 @@ msgctxt ""
msgid "Ma~jor interval"
msgstr "და~შორებები"
-#. XCc[
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3729,7 +3364,6 @@ msgctxt ""
msgid "Au~tomatic"
msgstr "ავტომატური"
-#. ;r1\
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3739,7 +3373,6 @@ msgctxt ""
msgid "Minor inter~val count"
msgstr ""
-#. {bi6
#: tp_Scale.src
#, fuzzy
msgctxt ""
@@ -3750,7 +3383,6 @@ msgctxt ""
msgid "Minor inter~val"
msgstr "დაშორების ინტერვალის დაცვა"
-#. {*X1
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3760,7 +3392,6 @@ msgctxt ""
msgid "Aut~omatic"
msgstr "ავტომატური"
-#. [;l[
#: tp_Scale.src
#, fuzzy
msgctxt ""
@@ -3771,7 +3402,6 @@ msgctxt ""
msgid "Re~ference value"
msgstr "მოხსენიების მნიშვნელობა (ჩართვა)"
-#. =H40
#: tp_Scale.src
#, fuzzy
msgctxt ""
@@ -3782,7 +3412,6 @@ msgctxt ""
msgid "Automat~ic"
msgstr "ავტომატური"
-#. 6:Wa
#: res_BarGeometry.src
msgctxt ""
"res_BarGeometry.src\n"
@@ -3792,7 +3421,6 @@ msgctxt ""
msgid "Box"
msgstr "ყუთი"
-#. -l2b
#: res_BarGeometry.src
msgctxt ""
"res_BarGeometry.src\n"
@@ -3802,7 +3430,6 @@ msgctxt ""
msgid "Cylinder"
msgstr "ცილინდრი"
-#. PKtY
#: res_BarGeometry.src
msgctxt ""
"res_BarGeometry.src\n"
@@ -3812,7 +3439,6 @@ msgctxt ""
msgid "Cone"
msgstr "კონუსი"
-#. 57Zr
#: res_BarGeometry.src
msgctxt ""
"res_BarGeometry.src\n"
@@ -3822,7 +3448,6 @@ msgctxt ""
msgid "Pyramid"
msgstr "პირამიდა"
-#. -7}K
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3832,7 +3457,6 @@ msgctxt ""
msgid "Best fit"
msgstr ""
-#. s8-Y
#: res_DataLabel_tmpl.hrc
#, fuzzy
msgctxt ""
@@ -3853,7 +3477,6 @@ msgstr ""
"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
"ცენტრი"
-#. bSEA
#: res_DataLabel_tmpl.hrc
#, fuzzy
msgctxt ""
@@ -3868,7 +3491,6 @@ msgstr ""
"#-#-#-#-# tabpages.po (PACKAGE VERSION) #-#-#-#-#\n"
"ზემოდან"
-#. u\_G
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3878,7 +3500,6 @@ msgctxt ""
msgid "Top left"
msgstr "მაღლა ზევით"
-#. a9#w
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3888,7 +3509,6 @@ msgctxt ""
msgid "Left"
msgstr "~მარცხნივ"
-#. =-^)
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3898,7 +3518,6 @@ msgctxt ""
msgid "Bottom left"
msgstr "ქვემოთ მარცხნივ"
-#. i3le
#: res_DataLabel_tmpl.hrc
#, fuzzy
msgctxt ""
@@ -3915,7 +3534,6 @@ msgstr ""
"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
"ქვემოთ"
-#. ui1O
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3925,7 +3543,6 @@ msgctxt ""
msgid "Bottom right"
msgstr "ქვემოთ მარჯვნივ"
-#. G8,p
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3935,7 +3552,6 @@ msgctxt ""
msgid "Right"
msgstr "~მარჯვნივ"
-#. DnRS
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3945,7 +3561,6 @@ msgctxt ""
msgid "Top right"
msgstr "მაღლა მარჯვნივ"
-#. @A~T
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3955,7 +3570,6 @@ msgctxt ""
msgid "Inside"
msgstr "შიგნით"
-#. Ub2P
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3965,7 +3579,6 @@ msgctxt ""
msgid "Outside"
msgstr "გარეთ"
-#. ^q^+
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3975,7 +3588,6 @@ msgctxt ""
msgid "Near origin"
msgstr ""
-#. r(m@
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3985,7 +3597,6 @@ msgctxt ""
msgid "Show value as ~number"
msgstr ""
-#. 1j\s
#: res_DataLabel_tmpl.hrc
#, fuzzy
msgctxt ""
@@ -3996,7 +3607,6 @@ msgctxt ""
msgid "Number ~format..."
msgstr "ციფრების ფორმატირება..."
-#. b5UV
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -4006,7 +3616,6 @@ msgctxt ""
msgid "Show value as ~percentage"
msgstr ""
-#. kGL.
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -4016,7 +3625,6 @@ msgctxt ""
msgid "Percentage f~ormat..."
msgstr ""
-#. Hgqq
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -4026,7 +3634,6 @@ msgctxt ""
msgid "Show ~category"
msgstr ""
-#. =L9T
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -4036,7 +3643,6 @@ msgctxt ""
msgid "Show ~legend key"
msgstr ""
-#. V0kj
#: res_DataLabel_tmpl.hrc
#, fuzzy
msgctxt ""
@@ -4047,7 +3653,6 @@ msgctxt ""
msgid "Place~ment"
msgstr "განთავსება"
-#. HUEL
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -4057,7 +3662,6 @@ msgctxt ""
msgid "Rotate Text"
msgstr "ტექსტის მოტრიალება"
-#. ;\$8
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -4067,7 +3671,6 @@ msgctxt ""
msgid "~Degrees"
msgstr "~გრადუსი"
-#. 4#_y
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -4077,7 +3680,6 @@ msgctxt ""
msgid "Te~xt direction"
msgstr "ტექსტის მიმართულება"
-#. ng[|
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -4087,7 +3689,6 @@ msgctxt ""
msgid "Align data series to"
msgstr "მონაცემთა სერიების განლაგება"
-#. ~_SB
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -4097,7 +3698,6 @@ msgctxt ""
msgid "Primary Y axis"
msgstr "პირველადი Y ღერძი"
-#. _zJy
#: tp_SeriesToAxis.src
#, fuzzy
msgctxt ""
@@ -4108,7 +3708,6 @@ msgctxt ""
msgid "Secondary Y axis"
msgstr "~მეორადი Y ღერძი..."
-#. XQNr
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -4118,7 +3717,6 @@ msgctxt ""
msgid "Settings"
msgstr "პარამეტრები"
-#. KMAa
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -4128,7 +3726,6 @@ msgctxt ""
msgid "~Overlap"
msgstr "~გადაფარვა"
-#. p1=I
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -4138,7 +3735,6 @@ msgctxt ""
msgid "~Spacing"
msgstr "~ინტერვალი"
-#. Z[1D
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -4148,7 +3744,6 @@ msgctxt ""
msgid "Connection lines"
msgstr "კავშირის ხაზები"
-#. 0*o)
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -4158,7 +3753,6 @@ msgctxt ""
msgid "Show ~bars side by side"
msgstr ""
-#. QK3f
#: tp_SeriesToAxis.src
#, fuzzy
msgctxt ""
@@ -4169,7 +3763,6 @@ msgctxt ""
msgid "Plot options"
msgstr "ბეჭდვის პარამეტრები"
-#. |\AV
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -4179,7 +3772,6 @@ msgctxt ""
msgid "Plot missing values"
msgstr ""
-#. #96`
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -4189,7 +3781,6 @@ msgctxt ""
msgid "~Leave gap"
msgstr ""
-#. um\c
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -4199,7 +3790,6 @@ msgctxt ""
msgid "~Assume zero"
msgstr ""
-#. ATS2
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -4209,7 +3799,6 @@ msgctxt ""
msgid "~Continue line"
msgstr ""
-#. _SmQ
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -4219,7 +3808,6 @@ msgctxt ""
msgid "Include ~values from hidden cells"
msgstr ""
-#. ]ma^
#: tp_Wizard_TitlesAndObjects.src
msgctxt ""
"tp_Wizard_TitlesAndObjects.src\n"
@@ -4229,7 +3817,6 @@ msgctxt ""
msgid "Choose titles, legend, and grid settings"
msgstr ""
-#. @8D|
#: tp_Wizard_TitlesAndObjects.src
#, fuzzy
msgctxt ""
diff --git a/source/ka/connectivity/registry/ado/org/openoffice/Office/DataAccess.po b/source/ka/connectivity/registry/ado/org/openoffice/Office/DataAccess.po
index 8d5736ea638..4784732dbfa 100644
--- a/source/ka/connectivity/registry/ado/org/openoffice/Office/DataAccess.po
+++ b/source/ka/connectivity/registry/ado/org/openoffice/Office/DataAccess.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ALWO
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "ADO"
msgstr ""
-#. =/ma
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "Microsoft Access"
msgstr ""
-#. NuVU
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ka/connectivity/registry/calc/org/openoffice/Office/DataAccess.po b/source/ka/connectivity/registry/calc/org/openoffice/Office/DataAccess.po
index 42c25379f48..83bfe5f9658 100644
--- a/source/ka/connectivity/registry/calc/org/openoffice/Office/DataAccess.po
+++ b/source/ka/connectivity/registry/calc/org/openoffice/Office/DataAccess.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. :[M$
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ka/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po b/source/ka/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po
index 69b1bac195a..3a6b15509e4 100644
--- a/source/ka/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po
+++ b/source/ka/connectivity/registry/dbase/org/openoffice/Office/DataAccess.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-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. +A^i
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ka/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po b/source/ka/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po
index 6b64343ac0e..e4a473f9e04 100644
--- a/source/ka/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po
+++ b/source/ka/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.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-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Tc`~
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Evolution Local"
msgstr ""
-#. hK7\
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "Evolution LDAP"
msgstr "Evolution LDAP"
-#. kWa#
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ka/connectivity/registry/flat/org/openoffice/Office/DataAccess.po b/source/ka/connectivity/registry/flat/org/openoffice/Office/DataAccess.po
index 27544300086..9f4e555db9a 100644
--- a/source/ka/connectivity/registry/flat/org/openoffice/Office/DataAccess.po
+++ b/source/ka/connectivity/registry/flat/org/openoffice/Office/DataAccess.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. LIZi
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ka/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po b/source/ka/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po
index 4ee0f9c52f6..79aba4ed15c 100644
--- a/source/ka/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po
+++ b/source/ka/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. B1h3
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ka/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po b/source/ka/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po
index 99038ca1247..3a2e6521286 100644
--- a/source/ka/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po
+++ b/source/ka/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.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-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 2wEV
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "JDBC"
msgstr ""
-#. 73*p
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ka/connectivity/registry/kab/org/openoffice/Office/DataAccess.po b/source/ka/connectivity/registry/kab/org/openoffice/Office/DataAccess.po
index 2ca68b64dca..09fa7256a3b 100644
--- a/source/ka/connectivity/registry/kab/org/openoffice/Office/DataAccess.po
+++ b/source/ka/connectivity/registry/kab/org/openoffice/Office/DataAccess.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 6J-U
#: Drivers.xcu
#, fuzzy
msgctxt ""
diff --git a/source/ka/connectivity/registry/macab/org/openoffice/Office/DataAccess.po b/source/ka/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
index 385f64001db..22ffe764897 100644
--- a/source/ka/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
+++ b/source/ka/connectivity/registry/macab/org/openoffice/Office/DataAccess.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. KR!^
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ka/connectivity/registry/mork/org/openoffice/Office/DataAccess.po b/source/ka/connectivity/registry/mork/org/openoffice/Office/DataAccess.po
index 854651832e1..cf29a3ba332 100644
--- a/source/ka/connectivity/registry/mork/org/openoffice/Office/DataAccess.po
+++ b/source/ka/connectivity/registry/mork/org/openoffice/Office/DataAccess.po
@@ -1,10 +1,9 @@
#. extracted from connectivity/registry/mork/org/openoffice/Office/DataAccess
-#, fuzzy
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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\n"
"PO-Revision-Date: 2011-04-05 23:14+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Glo9
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ka/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po b/source/ka/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po
index d18a0816692..40bbc9cc7ae 100644
--- a/source/ka/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po
+++ b/source/ka/connectivity/registry/mozab/org/openoffice/Office/DataAccess.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-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Br*`
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Microsoft Outlook Address Book"
msgstr ""
-#. [/:1
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "Microsoft Windows Address Book"
msgstr ""
-#. %2[M
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "SeaMonkey Address Book"
msgstr ""
-#. 54[^
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "Thunderbird/Icedove Address Book"
msgstr ""
-#. zqSc
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ka/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po b/source/ka/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po
index b9e07d9a04a..7281a202eba 100644
--- a/source/ka/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po
+++ b/source/ka/connectivity/registry/mysql/org/openoffice/Office/DataAccess.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. (_UU
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "MySQL (JDBC)"
msgstr ""
-#. ORu8
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "MySQL (ODBC)"
msgstr ""
-#. bwU]
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ka/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po b/source/ka/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po
index 72831502983..56e885927f2 100644
--- a/source/ka/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po
+++ b/source/ka/connectivity/registry/odbc/org/openoffice/Office/DataAccess.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. FkM2
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ka/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po b/source/ka/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po
index e857cbb02ca..e54bab290f2 100644
--- a/source/ka/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po
+++ b/source/ka/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.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-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Ckhc
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ka/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po b/source/ka/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po
index db85e6b2e59..8abdcb307f5 100644
--- a/source/ka/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po
+++ b/source/ka/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 4\P|
#: Drivers.xcu
#, fuzzy
msgctxt ""
diff --git a/source/ka/connectivity/source/resource.po b/source/ka/connectivity/source/resource.po
index 0c54a7f0304..898e1fcb87a 100644
--- a/source/ka/connectivity/source/resource.po
+++ b/source/ka/connectivity/source/resource.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-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\n"
"PO-Revision-Date: 2011-04-11 23:18+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,7 +16,6 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
#. This must be the term referring to address books in the user's Mozilla/Seamonkey profile in the system.
-#. a,YE
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -26,7 +25,6 @@ msgid "Mozilla/Seamonkey Addressbook Directory"
msgstr ""
#. This must be the term referring to address books in the user's Thunderbird profile in the system.
-#. GH!r
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Thunderbird Addressbook Directory"
msgstr ""
-#. $Ihk
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "Outlook Express Addressbook"
msgstr ""
-#. @KYo
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "Outlook (MAPI) Addressbook"
msgstr ""
-#. HEsi
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -62,7 +57,6 @@ msgctxt ""
msgid "Creating tables is not supported for this kind of address books."
msgstr "ცხრილების შექმნა არ არის მხარდაჭერილი ამ ტიპის მისამართების წიგნისათვის."
-#. +$$T
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -71,7 +65,6 @@ msgctxt ""
msgid "Cannot create new address books while Mozilla is running."
msgstr "შეუძლებელია ახალი მისამართების წიგნის შექმნა მაშინ როდესაც Mozilla არის გაშვებული."
-#. u+vQ
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -80,7 +73,6 @@ msgctxt ""
msgid "An address book entry could not be retrieved, an unknown error occurred."
msgstr "შეუძლებელია მისამართების წიგნის ჩანაწერის უკან გამოხმობა,წარმოიქმნა უცნობი შეცდომა."
-#. mY;=
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -89,7 +81,6 @@ msgctxt ""
msgid "An address book directory name could not be retrieved, an unknown error occurred."
msgstr "შეუძლებელია მისამართების წიგნის დირექტორიის სახელი უკან გამოხმობა,წარმოიქმნა უცნობი შეცდომა."
-#. Ux%b
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -98,7 +89,6 @@ msgctxt ""
msgid "Timed out while waiting for the result."
msgstr "შედეგების ლოდინის დრო გავიდა."
-#. yaqt
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -107,7 +97,6 @@ msgctxt ""
msgid "An error occurred while executing the query."
msgstr "შეცდომაა მოთხოვნის გამოყენებისას."
-#. P3*D
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -116,7 +105,6 @@ msgctxt ""
msgid "You can't make any changes to mozilla address book when mozilla is running."
msgstr "თქვენ არ შეგიძლიათ შეიტანოთ რაიმე შესწორება mozilla-ს მისამართების წიგნში მაშინ როდესაც mozilla არის გაშვებული."
-#. `d;g
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -125,7 +113,6 @@ msgctxt ""
msgid "Mozilla Address Book has been changed out of this process, we can't modify it in this condition."
msgstr "მოზილას მისამარტების წიგნი შეცვლილია ამ პროცესით, ჩვენ არ შეგვიძლია მისი შეცვლა ამ პირობით."
-#. RrJO
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -134,7 +121,6 @@ msgctxt ""
msgid "Can't find the requested row."
msgstr "შეუძლებელია მოთხოვნილი ჩანაწერის მოძებნა."
-#. TAhb
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -143,7 +129,6 @@ msgctxt ""
msgid "Can't find the card for the requested row."
msgstr "შეუძლებელია მოთხოვნილი ჩანაწერის პლატის მოძებნა."
-#. /Wy+
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -152,7 +137,6 @@ msgctxt ""
msgid "The query can not be executed. It needs at least one table."
msgstr ""
-#. 1W%h
#: conn_shared_res.src
#, fuzzy
msgctxt ""
@@ -162,7 +146,6 @@ msgctxt ""
msgid "The driver does not support the 'COUNT' function."
msgstr "ამ ფუნქციას არ აქვს დრაივერის მხარდაჭერა."
-#. $@ms
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -171,7 +154,6 @@ msgctxt ""
msgid "This statement type not supported by this database driver."
msgstr ""
-#. EL7J
#: conn_shared_res.src
#, fuzzy
msgctxt ""
@@ -181,7 +163,6 @@ msgctxt ""
msgid "An unknown error occurred."
msgstr "უცნობი შეცდომა"
-#. @3sw
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -190,7 +171,6 @@ msgctxt ""
msgid "Could not create a new address book. Mozilla error code is $1$."
msgstr ""
-#. `0Um
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -199,7 +179,6 @@ msgctxt ""
msgid "The library '$libname$' could not be loaded."
msgstr ""
-#. +MQ~
#: conn_shared_res.src
#, fuzzy
msgctxt ""
@@ -209,7 +188,6 @@ msgctxt ""
msgid "An error occurred while refreshing the current row."
msgstr "შეცდომა კალენდარის შექმნისას"
-#. NMzi
#: conn_shared_res.src
#, fuzzy
msgctxt ""
@@ -219,7 +197,6 @@ msgctxt ""
msgid "An error occurred while getting the current row."
msgstr "შეცდომა კალენდარის შექმნისას"
-#. OSgY
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -228,7 +205,6 @@ msgctxt ""
msgid "The row update can not be canceled."
msgstr ""
-#. cW9u
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -237,7 +213,6 @@ msgctxt ""
msgid "A new row can not be created."
msgstr ""
-#. $E$+
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -246,7 +221,6 @@ msgctxt ""
msgid "The query can not be executed. The 'IS NULL' can only be used with a column name."
msgstr ""
-#. Fb]K
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -255,7 +229,6 @@ msgctxt ""
msgid "Illegal cursor movement occurred."
msgstr ""
-#. 23.f
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -264,7 +237,6 @@ msgctxt ""
msgid "Please commit row '$position$' before update rows or insert new rows."
msgstr ""
-#. ;4ia
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -273,7 +245,6 @@ msgctxt ""
msgid "The update call can not be executed. The row is invalid."
msgstr ""
-#. =+Aj
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -282,7 +253,6 @@ msgctxt ""
msgid "The current row can not be saved."
msgstr ""
-#. Q%m0
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -291,7 +261,6 @@ msgctxt ""
msgid "No hostname was provided."
msgstr ""
-#. R^[G
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -300,7 +269,6 @@ msgctxt ""
msgid "No Base DN was provided."
msgstr ""
-#. |cpH
#: conn_shared_res.src
#, fuzzy
msgctxt ""
@@ -310,7 +278,6 @@ msgctxt ""
msgid "The connection to the LDAP server could not be established."
msgstr "კავშირი მონაცემთა ბაზასთან ვერ მყარდება."
-#. o-5b
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -319,7 +286,6 @@ msgctxt ""
msgid "It doesn't exist a connection to the database."
msgstr ""
-#. KDhr
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -328,7 +294,6 @@ msgctxt ""
msgid "You tried to set a parameter at position '$pos$' but there is/are only '$count$' parameter(s) allowed. One reason may be that the property \"ParameterNameSubstitution\" is not set to TRUE in the data source."
msgstr ""
-#. yvZX
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -337,7 +302,6 @@ msgctxt ""
msgid "End of InputStream reached before satisfying length specified when InputStream was set."
msgstr ""
-#. #Wb^
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -346,7 +310,6 @@ msgctxt ""
msgid "The input stream was not set."
msgstr ""
-#. :KKT
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -355,7 +318,6 @@ msgctxt ""
msgid "There is no element named '$name$'."
msgstr ""
-#. ;HCE
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -364,7 +326,6 @@ msgctxt ""
msgid "Invalid bookmark value"
msgstr ""
-#. (FRl
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -373,7 +334,6 @@ msgctxt ""
msgid "Privilege not granted: Only table privileges can be granted."
msgstr ""
-#. DeN#
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -382,7 +342,6 @@ msgctxt ""
msgid "Privilege not revoked: Only table privileges can be revoked."
msgstr ""
-#. ;H!L
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -391,7 +350,6 @@ msgctxt ""
msgid "The column name '$columnname$' is unknown."
msgstr ""
-#. N7LX
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -400,7 +358,6 @@ msgctxt ""
msgid "Function sequence error."
msgstr ""
-#. xmW\
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -409,7 +366,6 @@ msgctxt ""
msgid "Invalid descriptor index."
msgstr ""
-#. kM=T
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -418,7 +374,6 @@ msgctxt ""
msgid "The driver does not support the function '$functionname$'."
msgstr ""
-#. 7iBd
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -427,7 +382,6 @@ msgctxt ""
msgid "The driver does not support the functionality for '$featurename$'. It is not implemented."
msgstr ""
-#. E0Xc
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -436,7 +390,6 @@ msgctxt ""
msgid "The formula for TypeInfoSettings is wrong!"
msgstr ""
-#. ;#iF
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -445,7 +398,6 @@ msgctxt ""
msgid "The string '$string$' exceeds the maximum length of $maxlen$ characters when converted to the target character set '$charset$'."
msgstr ""
-#. Jb4D
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -454,7 +406,6 @@ msgctxt ""
msgid "The string '$string$' cannot be converted using the encoding '$charset$'."
msgstr ""
-#. DMWV
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -463,7 +414,6 @@ msgctxt ""
msgid "The connection URL is invalid."
msgstr ""
-#. 84as
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -472,7 +422,6 @@ msgctxt ""
msgid "The query can not be executed. It is too complex."
msgstr ""
-#. !w]^
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -481,7 +430,6 @@ msgctxt ""
msgid "The query can not be executed. The operator is too complex."
msgstr ""
-#. !=}r
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -490,7 +438,6 @@ msgctxt ""
msgid "The query can not be executed. You cannot use 'LIKE' with columns of this type."
msgstr ""
-#. k1,7
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -499,7 +446,6 @@ msgctxt ""
msgid "The query can not be executed. 'LIKE' can be used with a string argument only."
msgstr ""
-#. V(Tp
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -508,7 +454,6 @@ msgctxt ""
msgid "The query can not be executed. The 'NOT LIKE' condition is too complex."
msgstr ""
-#. NizQ
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -517,7 +462,6 @@ msgctxt ""
msgid "The query can not be executed. The 'LIKE' condition contains wildcard in the middle."
msgstr ""
-#. Zp#N
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -526,7 +470,6 @@ msgctxt ""
msgid "The query can not be executed. The 'LIKE' condition contains too many wildcards."
msgstr ""
-#. t@2d
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -535,7 +478,6 @@ msgctxt ""
msgid "The column name '$columnname$' is not valid."
msgstr ""
-#. [EUN
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -544,7 +486,6 @@ msgctxt ""
msgid "The statement contains an invalid selection of columns."
msgstr ""
-#. bW^]
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -553,7 +494,6 @@ msgctxt ""
msgid "The column at position '$position$' could not be updated."
msgstr ""
-#. 7JGA
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -562,7 +502,6 @@ msgctxt ""
msgid "The file $filename$ could not be loaded."
msgstr ""
-#. blWo
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -574,7 +513,6 @@ msgid ""
"$error_message$"
msgstr ""
-#. pcTO
#: conn_shared_res.src
#, fuzzy
msgctxt ""
@@ -584,7 +522,6 @@ msgctxt ""
msgid "The type could not be converted."
msgstr "ფაილი ვერ შეიქმნა."
-#. @l*(
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -593,7 +530,6 @@ msgctxt ""
msgid "Could not append column: invalid column descriptor."
msgstr ""
-#. MtK~
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -602,7 +538,6 @@ msgctxt ""
msgid "Could not create group: invalid object descriptor."
msgstr ""
-#. WOm(
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -611,7 +546,6 @@ msgctxt ""
msgid "Could not create index: invalid object descriptor."
msgstr ""
-#. ^3J2
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -620,7 +554,6 @@ msgctxt ""
msgid "Could not create key: invalid object descriptor."
msgstr ""
-#. U-bq
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -629,7 +562,6 @@ msgctxt ""
msgid "Could not create table: invalid object descriptor."
msgstr ""
-#. b1dt
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -638,7 +570,6 @@ msgctxt ""
msgid "Could not create user: invalid object descriptor."
msgstr ""
-#. (L0,
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -647,7 +578,6 @@ msgctxt ""
msgid "Could not create view: invalid object descriptor."
msgstr ""
-#. 7|fo
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -656,7 +586,6 @@ msgctxt ""
msgid "Could not create view: no command object."
msgstr ""
-#. q4w0
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -665,7 +594,6 @@ msgctxt ""
msgid "The connection could not be created. May be the necessary data provider is not installed."
msgstr ""
-#. ?4_.
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -674,7 +602,6 @@ msgctxt ""
msgid "The index could not be deleted. An unknown error while accessing the file system occurred."
msgstr ""
-#. nBp5
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -683,7 +610,6 @@ msgctxt ""
msgid "The index could not be created. Only one column per index is allowed."
msgstr ""
-#. Q+[N
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -692,7 +618,6 @@ msgctxt ""
msgid "The index could not be created. The values are not unique."
msgstr ""
-#. `g]A
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -701,7 +626,6 @@ msgctxt ""
msgid "The index could not be created. An unknown error appeared."
msgstr ""
-#. n2d9
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -710,7 +634,6 @@ msgctxt ""
msgid "The index could not be created. The file '$filename$' is used by an other index."
msgstr ""
-#. @84P
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -719,7 +642,6 @@ msgctxt ""
msgid "The index could not be created. The size of the chosen column is to big."
msgstr ""
-#. }+.?
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -728,7 +650,6 @@ msgctxt ""
msgid "The name '$name$' doesn't match SQL naming constraints."
msgstr ""
-#. 9^!2
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -737,7 +658,6 @@ msgctxt ""
msgid "The file $filename$ could not be deleted."
msgstr ""
-#. 6z@%
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -746,7 +666,6 @@ msgctxt ""
msgid "Invalid column type for column '$columnname$'."
msgstr ""
-#. nGQz
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -755,7 +674,6 @@ msgctxt ""
msgid "Invalid precision for column '$columnname$'."
msgstr ""
-#. EZe!
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -764,7 +682,6 @@ msgctxt ""
msgid "Precision is less than scale for column '$columnname$'."
msgstr ""
-#. 9oP9
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -773,7 +690,6 @@ msgctxt ""
msgid "Invalid column name length for column '$columnname$'."
msgstr ""
-#. q00K
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -782,7 +698,6 @@ msgctxt ""
msgid "Duplicate value found in column '$columnname$'."
msgstr ""
-#. X(VT
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -794,7 +709,6 @@ msgid ""
"The specified value \"$value$ is longer than the number of digits allowed."
msgstr ""
-#. p${!
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -803,7 +717,6 @@ msgctxt ""
msgid "The column '$columnname$' could not be altered. May be the file system is write protected."
msgstr ""
-#. ]j@H
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -812,7 +725,6 @@ msgctxt ""
msgid "The column '$columnname$' could not be updated. The value is invalid for that column."
msgstr ""
-#. uj.0
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -821,7 +733,6 @@ msgctxt ""
msgid "The column '$columnname$' could not be added. May be the file system is write protected."
msgstr ""
-#. m7a$
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -830,7 +741,6 @@ msgctxt ""
msgid "The column at position '$position$' could not be dropped. May be the file system is write protected."
msgstr ""
-#. :c@#
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -839,7 +749,6 @@ msgctxt ""
msgid "The table '$tablename$' could not be dropped. May be the file system is write protected."
msgstr ""
-#. u)|,
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -848,7 +757,6 @@ msgctxt ""
msgid "The table could not be altered."
msgstr ""
-#. oY{3
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -857,7 +765,6 @@ msgctxt ""
msgid "The file '$filename$' is an invalid (or unrecognized) dBase file."
msgstr ""
-#. Dk63
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -866,7 +773,6 @@ msgctxt ""
msgid "Cannot open Evolution address book."
msgstr ""
-#. Mg+@
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -875,7 +781,6 @@ msgctxt ""
msgid "Can only sort by table columns."
msgstr ""
-#. km~f
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -884,7 +789,6 @@ msgctxt ""
msgid "The query can not be executed. It is too complex. Only \"COUNT(*)\" is supported."
msgstr ""
-#. =nFX
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -893,7 +797,6 @@ msgctxt ""
msgid "The query can not be executed. The 'BETWEEN' arguments are not correct."
msgstr ""
-#. -}C%
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -902,7 +805,6 @@ msgctxt ""
msgid "The query can not be executed. The function is not supported."
msgstr ""
-#. $jt2
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -911,7 +813,6 @@ msgctxt ""
msgid "The table can not be changed. It is read only."
msgstr ""
-#. 0b)4
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -920,7 +821,6 @@ msgctxt ""
msgid "The row could not be deleted. The option \"Display inactive records\" is set."
msgstr ""
-#. )y.K
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -929,7 +829,6 @@ msgctxt ""
msgid "The row could not be deleted. It is already deleted."
msgstr ""
-#. #l*3
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -938,7 +837,6 @@ msgctxt ""
msgid "The query can not be executed. It contains more than one table."
msgstr ""
-#. =rQW
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -947,7 +845,6 @@ msgctxt ""
msgid "The query can not be executed. It contains no valid table."
msgstr ""
-#. Hkkg
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -956,7 +853,6 @@ msgctxt ""
msgid "The query can not be executed. It contains no valid columns."
msgstr ""
-#. j$,Q
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -965,7 +861,6 @@ msgctxt ""
msgid "The count of the given parameter values doesn't match the parameters."
msgstr ""
-#. $BfU
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -974,7 +869,6 @@ msgctxt ""
msgid "The URL '$URL$' is not valid. A connection can not be created."
msgstr ""
-#. 6.QN
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -983,7 +877,6 @@ msgctxt ""
msgid "The driver class '$classname$' could not be loaded."
msgstr ""
-#. shWj
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -992,7 +885,6 @@ msgctxt ""
msgid "No Java installation could be found. Please check your installation."
msgstr ""
-#. 6m3%
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1001,7 +893,6 @@ msgctxt ""
msgid "The execution of the query doesn't return a valid result set."
msgstr ""
-#. 2Lf)
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1010,7 +901,6 @@ msgctxt ""
msgid "The execution of the update statement doesn't effect any rows."
msgstr ""
-#. o@ek
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1019,7 +909,6 @@ msgctxt ""
msgid "The additional driver class path is '$classpath$'."
msgstr ""
-#. nw8%
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1028,7 +917,6 @@ msgctxt ""
msgid "The type of parameter at position '$position$' is unknown."
msgstr ""
-#. )YD2
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1037,7 +925,6 @@ msgctxt ""
msgid "The type of column at position '$position$' is unknown."
msgstr ""
-#. :lOr
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1046,7 +933,6 @@ msgctxt ""
msgid "No suitable KDE installation was found."
msgstr ""
-#. kc(d
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1055,7 +941,6 @@ msgctxt ""
msgid "KDE version $major$.$minor$ or higher is required to access the KDE Address Book."
msgstr ""
-#. mO]c
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1064,7 +949,6 @@ msgctxt ""
msgid "The found KDE version is too new. Only KDE up to version $major$.$minor$ is known to work with this product.\n"
msgstr ""
-#. p0jK
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1075,7 +959,6 @@ msgid ""
"\n"
msgstr ""
-#. ^EJF
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1084,7 +967,6 @@ msgctxt ""
msgid "Parameters can appear only in prepared statements."
msgstr ""
-#. s-^1
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1093,7 +975,6 @@ msgctxt ""
msgid "No such table!"
msgstr ""
-#. nSH:
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1102,7 +983,6 @@ msgctxt ""
msgid "No suitable Mac OS installation was found."
msgstr ""
-#. =qP1
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1111,7 +991,6 @@ msgctxt ""
msgid "The connection can not be established. No storage or URL was given."
msgstr ""
-#. jzB,
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1120,7 +999,6 @@ msgctxt ""
msgid "The given URL contains no valid local file system path. Please check the location of your database file."
msgstr ""
-#. )?4o
#: conn_shared_res.src
#, fuzzy
msgctxt ""
@@ -1130,7 +1008,6 @@ msgctxt ""
msgid "An error occurred while obtaining the connection's table container."
msgstr "შეცდომა კალენდარის შექმნისას"
-#. (05j
#: conn_shared_res.src
#, fuzzy
msgctxt ""
@@ -1140,7 +1017,6 @@ msgctxt ""
msgid "An error occurred while creating the table editor dialog."
msgstr "შეცდომა კალენდარის შექმნისას"
-#. Kh;I
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1149,7 +1025,6 @@ msgctxt ""
msgid "There is no table named '$tablename$'."
msgstr ""
-#. tx_=
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1158,7 +1033,6 @@ msgctxt ""
msgid "The provided DocumentUI is not allowed to be NULL."
msgstr ""
-#. E[k2
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1167,7 +1041,6 @@ msgctxt ""
msgid "The record operation has been vetoed."
msgstr ""
-#. bWU`
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1176,7 +1049,6 @@ msgctxt ""
msgid "The statement contains a cyclic reference to one or more sub queries."
msgstr ""
-#. 53In
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1185,7 +1057,6 @@ msgctxt ""
msgid "The name must not contain any slashes ('/')."
msgstr ""
-#. lXOt
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1194,7 +1065,6 @@ msgctxt ""
msgid "$1$ is no SQL conform identifier."
msgstr ""
-#. H52a
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1203,7 +1073,6 @@ msgctxt ""
msgid "Query names must not contain quote characters."
msgstr ""
-#. OJa/
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1212,7 +1081,6 @@ msgctxt ""
msgid "The name '$1$' is already in use in the database."
msgstr ""
-#. Dlp:
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1221,7 +1089,6 @@ msgctxt ""
msgid "No connection to the database exists."
msgstr ""
-#. zt(%
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1230,7 +1097,6 @@ msgctxt ""
msgid "No $1$ exists."
msgstr ""
-#. @b{T
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
diff --git a/source/ka/cui/source/customize.po b/source/ka/cui/source/customize.po
index ebce03b28a8..00011463a1f 100644
--- a/source/ka/cui/source/customize.po
+++ b/source/ka/cui/source/customize.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. j-B^
#: eventdlg.src
msgctxt ""
"eventdlg.src\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "Event"
msgstr "მოვლენა"
-#. _xpn
#: eventdlg.src
msgctxt ""
"eventdlg.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Assigned Action"
msgstr "მინიჭებული მოქმედება"
-#. ja\n
#: eventdlg.src
msgctxt ""
"eventdlg.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Save In"
msgstr "მდებარეობა"
-#. |M9I
#: eventdlg.src
msgctxt ""
"eventdlg.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Assign:"
msgstr "მინიჭება:"
-#. uAWW
#: eventdlg.src
msgctxt ""
"eventdlg.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "M~acro..."
msgstr "მ~აკრო..."
-#. $*0r
#: eventdlg.src
msgctxt ""
"eventdlg.src\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "~Remove"
msgstr "~მოცილება"
-#. S8A)
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "Menus"
msgstr "მენიუები"
-#. B%*x
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "Keyboard"
msgstr "კლავიატურა"
-#. cJGx
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "Toolbars"
msgstr "ხელსაწყოთა ზოლები"
-#. lU#W
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -115,7 +105,6 @@ msgctxt ""
msgid "Events"
msgstr "მოვლენები"
-#. 0wGy
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -124,7 +113,6 @@ msgctxt ""
msgid "Customize"
msgstr "მორგება"
-#. +L?G
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -133,7 +121,6 @@ msgctxt ""
msgid "Menu"
msgstr "მენიუ"
-#. eR2U
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -142,7 +129,6 @@ msgctxt ""
msgid "Begin a Group"
msgstr "ჯგუფის დასაწყისი"
-#. b_K*
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -151,7 +137,6 @@ msgctxt ""
msgid "Rename..."
msgstr "გადარქმევა..."
-#. r%|N
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -160,7 +145,6 @@ msgctxt ""
msgid "Delete..."
msgstr "წაშლა..."
-#. d(`f
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -169,7 +153,6 @@ msgctxt ""
msgid "Delete"
msgstr "წაშლა"
-#. L4rV
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -178,7 +161,6 @@ msgctxt ""
msgid "Move..."
msgstr "გადაადგილება..."
-#. }SVT
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -187,7 +169,6 @@ msgctxt ""
msgid "Restore Default Settings"
msgstr "ნაფულისხმევი პარამეტრების აღდგენა"
-#. #ivo
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -196,7 +177,6 @@ msgctxt ""
msgid "Restore Default Command"
msgstr "ნაგულისხმევი ბრძანების აღდგენა"
-#. =DbR
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -205,7 +185,6 @@ msgctxt ""
msgid "Text only"
msgstr "მხოლოდ ტექსტური"
-#. 6,\u
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -214,7 +193,6 @@ msgctxt ""
msgid "Toolbar Name"
msgstr "ხელსაწყოთა ზოლის სახელი"
-#. 9[PA
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -223,7 +201,6 @@ msgctxt ""
msgid "Save In"
msgstr "მდებარეობა"
-#. eXdU
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -233,7 +210,6 @@ msgctxt ""
msgid "%PRODUCTNAME %MODULENAME Menus"
msgstr "%PRODUCTNAME %MODULENAME-ის მენიუები"
-#. t$1q
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -243,7 +219,6 @@ msgctxt ""
msgid "New..."
msgstr "ახალი..."
-#. @~lW
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -253,7 +228,6 @@ msgctxt ""
msgid "Menu Content"
msgstr "მენიუს შეგთავსი"
-#. lic=
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -263,7 +237,6 @@ msgctxt ""
msgid "Entries"
msgstr "შენატანები"
-#. ={na
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -273,7 +246,6 @@ msgctxt ""
msgid "Add..."
msgstr "დამატება..."
-#. Cz(c
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -283,7 +255,6 @@ msgctxt ""
msgid "Modify"
msgstr "შეცვლა"
-#. VCwD
#: cfg.src
#, fuzzy
msgctxt ""
@@ -294,7 +265,6 @@ msgctxt ""
msgid "Description"
msgstr "აღწერილობა"
-#. %5;f
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -304,7 +274,6 @@ msgctxt ""
msgid "Add Submenu..."
msgstr "ქვემენიუს დამატება..."
-#. l0_N
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -314,7 +283,6 @@ msgctxt ""
msgid "Icons Only"
msgstr "მხოლოდ ხატულები"
-#. T0]N
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -324,7 +292,6 @@ msgctxt ""
msgid "Icons & Text"
msgstr "ხატულები და ტექსტი"
-#. ^udJ
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -334,7 +301,6 @@ msgctxt ""
msgid "Change Icon..."
msgstr "ხატულას შეცვლა..."
-#. 7wjq
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -344,7 +310,6 @@ msgctxt ""
msgid "Reset Icon"
msgstr "ხატულას ჩამოყრა"
-#. }~_]
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -353,7 +318,6 @@ msgctxt ""
msgid "New Menu %n"
msgstr "ახალი მენიუ %n"
-#. J{=Y
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -362,7 +326,6 @@ msgctxt ""
msgid "New Toolbar %n"
msgstr "ახალი ხელსაწყოთა ზოლი %n"
-#. 1~C[
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -371,7 +334,6 @@ msgctxt ""
msgid "Move Menu"
msgstr "მენიუს გადაადგილება"
-#. HII,
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -380,7 +342,6 @@ msgctxt ""
msgid "Add Submenu"
msgstr "ქვემენიუს დამატება"
-#. !6m^
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -389,7 +350,6 @@ msgctxt ""
msgid "Submenu name"
msgstr "ქვემენიუს დამატება"
-#. H]bA
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -398,7 +358,6 @@ msgctxt ""
msgid "To add a command to a menu, select the category and then the command. You can also drag the command to the Commands list of the Menus tab page in the Customize dialog."
msgstr "ბრძანების მენიუში დასამატებლად, მონიშნეთ კატეგორია და შემდეგ ბრძანება. აგრეთვე შეგიძლიათ გადაათრიოთ ბრძანება მენიუს ჩანართის ბრძანებათა სიაში მორგების დიალოგში."
-#. OPXN
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -408,7 +367,6 @@ msgctxt ""
msgid "Menu name"
msgstr "მენიუს სახელი"
-#. JS(w
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -418,7 +376,6 @@ msgctxt ""
msgid "Menu position"
msgstr "მენიუს ადგილმდებარეობა"
-#. -k#d
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -427,7 +384,6 @@ msgctxt ""
msgid "New Menu"
msgstr ""
-#. 4dv?
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -436,7 +392,6 @@ msgctxt ""
msgid "Name"
msgstr "სახელი"
-#. L}y(
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -446,7 +401,6 @@ msgctxt ""
msgid "Icons"
msgstr "ხატულები"
-#. .?[S
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -456,7 +410,6 @@ msgctxt ""
msgid "Import..."
msgstr "იმპორტი..."
-#. ry*^
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -466,7 +419,6 @@ msgctxt ""
msgid "Delete..."
msgstr "წაშლა..."
-#. 7iIT
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -478,7 +430,6 @@ msgid ""
"The size of an icon should be 16x16 pixel to achieve best quality. Different sized icons will be scaled automatically."
msgstr ""
-#. \DF}
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -487,7 +438,6 @@ msgctxt ""
msgid "Change Icon"
msgstr "ხატულას შეცვლა..."
-#. dRXT
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -499,7 +449,6 @@ msgid ""
"The file format could not be interpreted."
msgstr ""
-#. -f4B
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -508,7 +457,6 @@ msgctxt ""
msgid "%PRODUCTNAME %PRODUCTVERSION"
msgstr "%PRODUCTNAME %PRODUCTVERSION"
-#. s/P=
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -517,7 +465,6 @@ msgctxt ""
msgid "The files listed below could not be imported. The file format could not be interpreted."
msgstr ""
-#. 6?o6
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -526,7 +473,6 @@ msgctxt ""
msgid "Are you sure to delete the image?"
msgstr ""
-#. 3bqk
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -537,7 +483,6 @@ msgid ""
"Would you like to replace the existing icon?"
msgstr ""
-#. e1J_
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -546,7 +491,6 @@ msgctxt ""
msgid "Confirm Icon Replacement"
msgstr ""
-#. %\@%
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -555,7 +499,6 @@ msgctxt ""
msgid "Yes to All"
msgstr "დიახ ყველასათვის"
-#. w#!6
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -564,7 +507,6 @@ msgctxt ""
msgid "%PRODUCTNAME %MODULENAME Toolbars"
msgstr "%PRODUCTNAME %MODULENAME ხელსაწყოთა ზოლები"
-#. ig)B
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -573,7 +515,6 @@ msgctxt ""
msgid "Toolbar"
msgstr "ხელსაწყოთა ზოლი"
-#. Z}q6
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -582,7 +523,6 @@ msgctxt ""
msgid "Toolbar Content"
msgstr "ხელსაწყოთა ზოლის შემცველობა"
-#. o\66
#: cfg.src
#, fuzzy
msgctxt ""
@@ -592,7 +532,6 @@ msgctxt ""
msgid "Commands"
msgstr "ბრძანებები"
-#. NF$r
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -601,7 +540,6 @@ msgctxt ""
msgid "Command"
msgstr "ბრძანება"
-#. 13cn
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -610,7 +548,6 @@ msgctxt ""
msgid "Are you sure you want to delete the '%MENUNAME' menu?"
msgstr "დარწმუნებული ხართ, რომ გინდათ წაშალოთ '%MENUNAME'-ის მენიუ?"
-#. naB`
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -619,7 +556,6 @@ msgctxt ""
msgid "There are no more commands on the toolbar. Do you want to delete the toolbar?"
msgstr "ხელსაწყოთა ზოლზე ბრძანებები აღარაა განთავსებული. გნებავთ ხელსაწყოთა ზოლის წაშლა?"
-#. #p\j
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -628,7 +564,6 @@ msgctxt ""
msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the factory settings. Do you want to continue?"
msgstr "მენიუს კონფიგურაცია %შენახვა მონიშვნაში%-სათვის, იქნება დაბრუნებული ქარხნულ პარამეტრებზე. გსურთ გაგრძელება?"
-#. /TiS
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -637,7 +572,6 @@ msgctxt ""
msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the factory settings. Do you want to continue?"
msgstr "მენიუს კონფიგურაცია %შენახვა მონიშვნაში%-სათვის, იქნება დაბრუნებული ქარხნულ პარამეტრებზე. გსურთ გაგრძელება?"
-#. iWEu
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -646,7 +580,6 @@ msgctxt ""
msgid "The toolbar configuration for %SAVE IN SELECTION% will be reset to the factory settings. Do you want to continue?"
msgstr "მენიუს კონფიგურაცია %SAVE IN SELECTION%-თვის ჩამოიყრება საქარხნო პარამეტრებზე. გნებავთ გაგრძელება?"
-#. _oP[
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -655,7 +588,6 @@ msgctxt ""
msgid "This will delete all changes previously made to this toolbar. Do you really want to reset the toolbar?"
msgstr "ეს წაშლის ხელსაწყოთა ზოლში განხორციელებულ ყველა ცვლილებას. გნებავთ ხელსაწყოთა ზოლის ჩამოყრა?"
-#. Q\pG
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -664,7 +596,6 @@ msgctxt ""
msgid "Function is already included in this popup."
msgstr "ფუნქცია უკვე თან ახლავს ამ ამომხტარ ფანჯარას."
-#. E7RS
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -673,7 +604,6 @@ msgctxt ""
msgid "~New name"
msgstr "~ახალი სახელი"
-#. ^i*M
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -682,7 +612,6 @@ msgctxt ""
msgid "Rename Menu"
msgstr "მენიუს სახელის გადარქმევა"
-#. YbJA
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -691,7 +620,6 @@ msgctxt ""
msgid "Rename Toolbar"
msgstr "ხელსაწყოთა ზოლის გადარქმევა"
-#. jZ03
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -700,7 +628,6 @@ msgctxt ""
msgid "Up"
msgstr "ზემოთ"
-#. D|%U
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -709,7 +636,6 @@ msgctxt ""
msgid "Down"
msgstr "დაბლა"
-#. 6/DA
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -718,7 +644,6 @@ msgctxt ""
msgid "~Save..."
msgstr "~შენახვა..."
-#. [P~Y
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -727,7 +652,6 @@ msgctxt ""
msgid "R~eset"
msgstr "~ხელახალი კონფიგურაცია"
-#. Cf|1
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -736,7 +660,6 @@ msgctxt ""
msgid "~Load..."
msgstr "~ჩატვირთვა..."
-#. HmDi
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -745,7 +668,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~წაშლა"
-#. k8Ud
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -754,7 +676,6 @@ msgctxt ""
msgid "~Modify"
msgstr "~მოდიფიკაცია"
-#. 2!F~
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -763,7 +684,6 @@ msgctxt ""
msgid "~New"
msgstr "~ახალი"
-#. ${0m
#: acccfg.src
#, fuzzy
msgctxt ""
@@ -773,7 +693,6 @@ msgctxt ""
msgid "~Category"
msgstr "~კატეგორია"
-#. GiBa
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -782,7 +701,6 @@ msgctxt ""
msgid "Function"
msgstr "ფუნქცია"
-#. Amm=
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -791,7 +709,6 @@ msgctxt ""
msgid "Functions"
msgstr "ფუნქციები"
-#. c3f:
#: acccfg.src
#, fuzzy
msgctxt ""
@@ -802,7 +719,6 @@ msgctxt ""
msgid "Shortcut keys"
msgstr "მალსახმობი ღილაკები"
-#. ~gAl
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -812,7 +728,6 @@ msgctxt ""
msgid "~Keys"
msgstr ""
-#. q/*9
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -822,7 +737,6 @@ msgctxt ""
msgid "Load Keyboard Configuration"
msgstr ""
-#. )7Vi
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -832,7 +746,6 @@ msgctxt ""
msgid "Save Keyboard Configuration"
msgstr ""
-#. S:G]
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -842,7 +755,6 @@ msgctxt ""
msgid "Configuration"
msgstr "კონფიგურაცია"
-#. ~{9d
#: acccfg.src
#, fuzzy
msgctxt ""
@@ -853,7 +765,6 @@ msgctxt ""
msgid "BASIC Macros"
msgstr "BASIC მაკროები"
-#. MfpT
#: acccfg.src
#, fuzzy
msgctxt ""
@@ -870,7 +781,6 @@ msgstr ""
"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
"სტილები"
-#. $W23
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -880,7 +790,6 @@ msgctxt ""
msgid "Event"
msgstr "მოვლენა"
-#. sp!~
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -890,7 +799,6 @@ msgctxt ""
msgid "Assigned Action"
msgstr "მინიჭებული მოქმედება"
-#. 7-A1
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -900,7 +808,6 @@ msgctxt ""
msgid "Assign:"
msgstr "მინიჭება:"
-#. hQ$Q
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -910,7 +817,6 @@ msgctxt ""
msgid "M~acro..."
msgstr "მ~აკროსი..."
-#. StBD
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -920,7 +826,6 @@ msgctxt ""
msgid "Com~ponent..."
msgstr "~კომპონენტი..."
-#. k+F@
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -930,7 +835,6 @@ msgctxt ""
msgid "~Remove"
msgstr "~მოშორება"
-#. wO#o
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -939,7 +843,6 @@ msgctxt ""
msgid "Assign action"
msgstr "ქმედების მიმაგრება"
-#. }ncg
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -949,7 +852,6 @@ msgctxt ""
msgid "Component method name"
msgstr "კომპონენტის მეთოდის სახელი"
-#. s\`/
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -958,7 +860,6 @@ msgctxt ""
msgid "Assign Component"
msgstr "კომპონენტის მიმაგრება"
-#. dLYQ
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -967,7 +868,6 @@ msgctxt ""
msgid "Start Application"
msgstr "პროგრამის დაწყება"
-#. v2d[
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -976,7 +876,6 @@ msgctxt ""
msgid "Close Application"
msgstr "პროგრამის დახურვა"
-#. %H!x
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -985,7 +884,6 @@ msgctxt ""
msgid "New Document"
msgstr "დოკუმენტის გახსნა"
-#. AL^0
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -994,7 +892,6 @@ msgctxt ""
msgid "Document closed"
msgstr ""
-#. @3Vd
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1003,7 +900,6 @@ msgctxt ""
msgid "Document is going to be closed"
msgstr ""
-#. w;PH
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1012,7 +908,6 @@ msgctxt ""
msgid "Open Document"
msgstr "დოკუმენტის გახსნა"
-#. %)}(
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1021,7 +916,6 @@ msgctxt ""
msgid "Save Document"
msgstr "დოკუმენტის შენახვა"
-#. `$b`
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1030,7 +924,6 @@ msgctxt ""
msgid "Save Document As"
msgstr "დოკუმენტის შენახვა როგორც"
-#. E*BO
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1039,7 +932,6 @@ msgctxt ""
msgid "Document has been saved"
msgstr "დოკუმენტი შენახულია"
-#. U?F8
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1048,7 +940,6 @@ msgctxt ""
msgid "Document has been saved as"
msgstr "დოკუმენტის შენახულია როგორც"
-#. njr\
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1057,7 +948,6 @@ msgctxt ""
msgid "Activate Document"
msgstr "დოკუმენტის აქტივირება"
-#. zUV@
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1066,7 +956,6 @@ msgctxt ""
msgid "Deactivate Document"
msgstr "დოკუმენტის დეაქტივირება"
-#. N-3~
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1075,7 +964,6 @@ msgctxt ""
msgid "Print Document"
msgstr "დოკუმენტის ბეჭდვა"
-#. G]Kg
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1084,7 +972,6 @@ msgctxt ""
msgid "'Modified' status was changed"
msgstr "'შეცვლილია' სტატუსი შეიცვალა"
-#. 0/eq
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1093,7 +980,6 @@ msgctxt ""
msgid "Printing of form letters started"
msgstr ""
-#. 8-#P
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1102,7 +988,6 @@ msgctxt ""
msgid "Printing of form letters finished"
msgstr ""
-#. o`,X
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1111,7 +996,6 @@ msgctxt ""
msgid "Merging of form fields started"
msgstr ""
-#. %*EA
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1120,7 +1004,6 @@ msgctxt ""
msgid "Merging of form fields finished"
msgstr ""
-#. C;1I
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1129,7 +1012,6 @@ msgctxt ""
msgid "Changing the page count"
msgstr "გვედების რაოდენობა იცვლება"
-#. `CT^
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1138,7 +1020,6 @@ msgctxt ""
msgid "Loaded a sub component"
msgstr ""
-#. d/Pf
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1147,7 +1028,6 @@ msgctxt ""
msgid "Closed a sub component"
msgstr ""
-#. I,`n
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1156,7 +1036,6 @@ msgctxt ""
msgid "Fill parameters"
msgstr "შეავსეთ პარამეტრები"
-#. XsHX
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1165,7 +1044,6 @@ msgctxt ""
msgid "Execute action"
msgstr ""
-#. K)DR
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1174,7 +1052,6 @@ msgctxt ""
msgid "After updating"
msgstr "განახლების შემდეგ"
-#. VH)#
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1183,7 +1060,6 @@ msgctxt ""
msgid "Before updating"
msgstr "განახლებამდე"
-#. NysH
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1192,7 +1068,6 @@ msgctxt ""
msgid "Before record action"
msgstr "ჩანაწერის ქმედების წინ"
-#. -=So
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1201,7 +1076,6 @@ msgctxt ""
msgid "After record action"
msgstr "ჩანაწერის ქმედების შემდეგ"
-#. Qtkn
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1210,7 +1084,6 @@ msgctxt ""
msgid "Confirm deletion"
msgstr "წაშლის დადასტურება"
-#. zTYx
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1219,7 +1092,6 @@ msgctxt ""
msgid "Error occurred"
msgstr "მოხდა შეცდომა"
-#. qc3.
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1228,7 +1100,6 @@ msgctxt ""
msgid "While adjusting"
msgstr "რეგულირების დროს"
-#. rL.|
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1237,7 +1108,6 @@ msgctxt ""
msgid "When receiving focus"
msgstr "ფოკუსის მიღებისას"
-#. Y.6e
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1246,7 +1116,6 @@ msgctxt ""
msgid "When losing focus"
msgstr "ფოკუსის დაკარგვისას"
-#. B%3l
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1255,7 +1124,6 @@ msgctxt ""
msgid "Item status changed"
msgstr "ელემენტის სტატუსი შეიცვლა"
-#. zIW^
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1264,7 +1132,6 @@ msgctxt ""
msgid "Key pressed"
msgstr "კლავიში დაჭერილია"
-#. Q(de
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1273,7 +1140,6 @@ msgctxt ""
msgid "Key released"
msgstr "კლავიში აშვებულია"
-#. .Tf=
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1282,7 +1148,6 @@ msgctxt ""
msgid "When loading"
msgstr "ჩატვირთვისას"
-#. X2fy
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1291,7 +1156,6 @@ msgctxt ""
msgid "Before reloading"
msgstr "ჩატვირთვამდე"
-#. E.Q#
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1300,7 +1164,6 @@ msgctxt ""
msgid "When reloading"
msgstr "ხელახალი ჩატვირთვისას"
-#. p#Vl
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1309,7 +1172,6 @@ msgctxt ""
msgid "Mouse moved while key pressed"
msgstr "მაუსი მოძრაობდა, სანამ კლავიში დაჭერილია"
-#. e*M;
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1318,7 +1180,6 @@ msgctxt ""
msgid "Mouse inside"
msgstr "მაუსი შიგნითაა"
-#. ]faH
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1327,7 +1188,6 @@ msgctxt ""
msgid "Mouse outside"
msgstr "მაუსი გარეთაა"
-#. Yuu*
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1336,7 +1196,6 @@ msgctxt ""
msgid "Mouse moved"
msgstr "მაუსი გადაადგილდა"
-#. LkIT
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1345,7 +1204,6 @@ msgctxt ""
msgid "Mouse button pressed"
msgstr "მაუსის ღილაკი დაჭერილია"
-#. JAG]
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1354,7 +1212,6 @@ msgctxt ""
msgid "Mouse button released"
msgstr "მაუსის ღილაკი გაშვებულია"
-#. !gkv
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1363,7 +1220,6 @@ msgctxt ""
msgid "Before record change"
msgstr "ჩანაწერის ცვლილებამდე"
-#. w`-2
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1372,7 +1228,6 @@ msgctxt ""
msgid "After record change"
msgstr "ჩანაწერის ცვლილების შემდეგ"
-#. Y0}2
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1381,7 +1236,6 @@ msgctxt ""
msgid "After resetting"
msgstr "ჩამოყრის შემდეგ"
-#. JWpx
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1390,7 +1244,6 @@ msgctxt ""
msgid "Prior to reset"
msgstr "ჩამოყრამდე"
-#. eps}
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1399,7 +1252,6 @@ msgctxt ""
msgid "Approve action"
msgstr ""
-#. seFP
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1408,7 +1260,6 @@ msgctxt ""
msgid "Before submitting"
msgstr "შეყვანამდე"
-#. \(IG
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1417,7 +1268,6 @@ msgctxt ""
msgid "Text modified"
msgstr "ტექსტი მოდიფიცირებული"
-#. A%T%
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1426,7 +1276,6 @@ msgctxt ""
msgid "Before unloading"
msgstr "ამოტვირთვამდე"
-#. !pfh
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1435,7 +1284,6 @@ msgctxt ""
msgid "When unloading"
msgstr "ამოტვირთვის დროს"
-#. M,J1
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1444,7 +1292,6 @@ msgctxt ""
msgid "Changed"
msgstr "შეცვლილია"
-#. RTE-
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1453,7 +1300,6 @@ msgctxt ""
msgid "Document created"
msgstr ""
-#. Dr.t
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1462,7 +1308,6 @@ msgctxt ""
msgid "Document loading finished"
msgstr ""
-#. cV)6
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1471,7 +1316,6 @@ msgctxt ""
msgid "Saving of document failed"
msgstr ""
-#. YXUB
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1480,7 +1324,6 @@ msgctxt ""
msgid "'Save as' has failed"
msgstr ""
-#. !%^]
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1489,7 +1332,6 @@ msgctxt ""
msgid "Storing or exporting copy of document"
msgstr ""
-#. A)]:
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1498,7 +1340,6 @@ msgctxt ""
msgid "Document copy has been created"
msgstr ""
-#. J%Q:
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1507,7 +1348,6 @@ msgctxt ""
msgid "Creating of document copy failed"
msgstr ""
-#. Y{ap
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1516,7 +1356,6 @@ msgctxt ""
msgid "View created"
msgstr ""
-#. RZ([
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1525,7 +1364,6 @@ msgctxt ""
msgid "View is going to be closed"
msgstr ""
-#. p:$f
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1534,7 +1372,6 @@ msgctxt ""
msgid "View closed"
msgstr ""
-#. Y,ra
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1543,7 +1380,6 @@ msgctxt ""
msgid "Document title changed"
msgstr ""
-#. bNLp
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1552,7 +1388,6 @@ msgctxt ""
msgid "Document mode changed"
msgstr ""
-#. KLrx
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1561,7 +1396,6 @@ msgctxt ""
msgid "Visible area changed"
msgstr ""
-#. gd`i
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1570,7 +1404,6 @@ msgctxt ""
msgid "Document has got a new storage"
msgstr ""
-#. A3BV
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1579,7 +1412,6 @@ msgctxt ""
msgid "Document layout finished"
msgstr ""
-#. Rmvf
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1588,7 +1420,6 @@ msgctxt ""
msgid "Selection changed"
msgstr ""
-#. iihC
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1597,7 +1428,6 @@ msgctxt ""
msgid "Double click"
msgstr ""
-#. 2!XX
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1606,7 +1436,6 @@ msgctxt ""
msgid "Right click"
msgstr ""
-#. %[cV
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1615,7 +1444,6 @@ msgctxt ""
msgid "Formulas calculated"
msgstr ""
-#. ^,UT
#: macropg.src
msgctxt ""
"macropg.src\n"
diff --git a/source/ka/cui/source/dialogs.po b/source/ka/cui/source/dialogs.po
index 109d6fb0580..23694c2e43a 100644
--- a/source/ka/cui/source/dialogs.po
+++ b/source/ka/cui/source/dialogs.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-06-16 14:28+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. JQkn
#: newtabledlg.src
#, fuzzy
msgctxt ""
@@ -26,7 +25,6 @@ msgctxt ""
msgid "Number of columns:"
msgstr "ფერთა რიცხვი:"
-#. AH!B
#: newtabledlg.src
#, fuzzy
msgctxt ""
@@ -37,7 +35,6 @@ msgctxt ""
msgid "Number of rows:"
msgstr "სიტყვების რაოდენობა:"
-#. #JL_
#: newtabledlg.src
#, fuzzy
msgctxt ""
@@ -51,7 +48,6 @@ msgstr ""
"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
"ფაილის ჩასმა"
-#. -+=O
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -61,7 +57,6 @@ msgctxt ""
msgid "Origi~nal"
msgstr "ორიგი~ნალური"
-#. !@n?
#: commonlingui.src
#, fuzzy
msgctxt ""
@@ -72,7 +67,6 @@ msgctxt ""
msgid "~Word"
msgstr "ს~იტყვა"
-#. [Zi`
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -82,7 +76,6 @@ msgctxt ""
msgid "~Suggestions"
msgstr "~შეთავაზებები"
-#. UxL3
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -92,7 +85,6 @@ msgctxt ""
msgid "~Ignore"
msgstr "~უარყოფა"
-#. PE#P
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -102,7 +94,6 @@ msgctxt ""
msgid "Always I~gnore"
msgstr "ყოველთვის უა~რყოფა"
-#. dqEi
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -112,7 +103,6 @@ msgctxt ""
msgid "~Replace"
msgstr "ჩ~ანაცვლება"
-#. VVYV
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -122,7 +112,6 @@ msgctxt ""
msgid "Always R~eplace"
msgstr "ყოველთვის ჩანა~ცვლება"
-#. (+Di
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -132,7 +121,6 @@ msgctxt ""
msgid "Options..."
msgstr "პარამეტრები..."
-#. 0O{B
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -142,7 +130,6 @@ msgctxt ""
msgid "~Close"
msgstr "~დახურვა"
-#. KT;n
#: tbxform.src
msgctxt ""
"tbxform.src\n"
@@ -152,7 +139,6 @@ msgctxt ""
msgid "go to record"
msgstr "ჩაწერაზე გადასვლა"
-#. 7ojd
#: tbxform.src
msgctxt ""
"tbxform.src\n"
@@ -161,7 +147,6 @@ msgctxt ""
msgid "Record Number"
msgstr "რიცხვის ჩაწერა"
-#. {EtJ
#: dlgname.src
msgctxt ""
"dlgname.src\n"
@@ -170,7 +155,6 @@ msgctxt ""
msgid "Name"
msgstr "სახელი"
-#. S,q=
#: dlgname.src
msgctxt ""
"dlgname.src\n"
@@ -180,7 +164,6 @@ msgctxt ""
msgid "~Name"
msgstr "ს~ახელი"
-#. 45eG
#: dlgname.src
msgctxt ""
"dlgname.src\n"
@@ -189,7 +172,6 @@ msgctxt ""
msgid "Name"
msgstr "სახელი"
-#. QO;H
#: dlgname.src
msgctxt ""
"dlgname.src\n"
@@ -199,7 +181,6 @@ msgctxt ""
msgid "~Title"
msgstr "სათაური"
-#. p|s1
#: dlgname.src
#, fuzzy
msgctxt ""
@@ -224,7 +205,6 @@ msgstr ""
"#-#-#-#-# contnr.po (PACKAGE VERSION) #-#-#-#-#\n"
"აღწერილობა"
-#. l78d
#: dlgname.src
#, fuzzy
msgctxt ""
@@ -248,7 +228,6 @@ msgstr ""
"#-#-#-#-# contnr.po (PACKAGE VERSION) #-#-#-#-#\n"
"აღწერილობა"
-#. (/fB
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -258,7 +237,6 @@ msgctxt ""
msgid "Enter the name for the new library."
msgstr "შეიყვანეთ სახელი ახალი ბიბლიოთეკისათვის."
-#. !N=@
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -268,7 +246,6 @@ msgctxt ""
msgid "Create Library"
msgstr "ბიბლიოთეკის შექმნა"
-#. `J?K
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -278,7 +255,6 @@ msgctxt ""
msgid "Create Macro"
msgstr "მაკროს შექმნა"
-#. g/m.
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -288,7 +264,6 @@ msgctxt ""
msgid "Enter the name for the new macro."
msgstr "შეყვანეთ სახელი ახალი მაკროსათვის."
-#. |{iY
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -298,7 +273,6 @@ msgctxt ""
msgid "Rename"
msgstr "გადარქმევა"
-#. W%2?
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -308,7 +282,6 @@ msgctxt ""
msgid "Enter the new name for the selected object."
msgstr "შეიყვანეთ ახალი სახელი მონიშნული ობიექტისათვის."
-#. ri[#
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -317,7 +290,6 @@ msgctxt ""
msgid "Create Library"
msgstr "ბიბლიოთეკის შექმნა"
-#. ,-^k
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -326,7 +298,6 @@ msgctxt ""
msgid "Do you want to delete the following object?"
msgstr "გნებავთ შემდეგი ობიექტის წაშლა?"
-#. ~0)[
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -335,7 +306,6 @@ msgctxt ""
msgid "Confirm Deletion"
msgstr "წაშლის დასტური"
-#. _3$.
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -344,7 +314,6 @@ msgctxt ""
msgid "The selected object could not be deleted."
msgstr "მონიშნული ობიექტი ვერ წაიშლება."
-#. H18j
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -353,7 +322,6 @@ msgctxt ""
msgid " You do not have permission to delete this object."
msgstr " თქვენ არ გაქვთ უფლება ამ ობიექტის წაშლაზე."
-#. 1Jv:
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -362,7 +330,6 @@ msgctxt ""
msgid "Error Deleting Object"
msgstr "შეცდომა ობიექტის წაშლისას"
-#. cHhH
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -371,7 +338,6 @@ msgctxt ""
msgid "The object could not be created."
msgstr "ობიექტი ვერ შეიქმნება."
-#. K*6W
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -380,7 +346,6 @@ msgctxt ""
msgid " Object with the same name already exists."
msgstr " ობიექტის არნიშნული სახელით უკვე არსებობს."
-#. Yq_l
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -389,7 +354,6 @@ msgctxt ""
msgid " You do not have permission to create this object."
msgstr "თქვენ არ გაქვთ უფლება ამ ობიექტის შექმნაზე."
-#. spOJ
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -398,7 +362,6 @@ msgctxt ""
msgid "Error Creating Object"
msgstr "შეცდომა ობიექტის შექმნისას"
-#. NQAL
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -407,7 +370,6 @@ msgctxt ""
msgid "The object could not be renamed."
msgstr "ობიექტს სახელი ვერ გადაერქმევა."
-#. 1*3R
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -416,7 +378,6 @@ msgctxt ""
msgid " You do not have permission to rename this object."
msgstr "თქვენ არ გაქვთ უფლება ამ ობიექტის გადარქმევაზე."
-#. HYLl
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -425,7 +386,6 @@ msgctxt ""
msgid "Error Renaming Object"
msgstr "შეცდომა ობიექტის გადარქმევისას"
-#. s6](
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -434,7 +394,6 @@ msgctxt ""
msgid "%PRODUCTNAME Error"
msgstr "%PRODUCTNAME-ის შეცდომა"
-#. C$nb
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -443,7 +402,6 @@ msgctxt ""
msgid "The scripting language %LANGUAGENAME is not supported."
msgstr "სკრიპული ენა %LANGUAGENAME-ი მხარდაჭერილი არ არის."
-#. D#N(
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -452,7 +410,6 @@ msgctxt ""
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "მოხდა შეცდომა %LANGUAGENAME-ის script-ის %SCRIPTNAME გაშვებისას."
-#. E2ZD
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -461,7 +418,6 @@ msgctxt ""
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "მოხდა გამონალისი %LANGUAGENAME-ის script-ის %SCRIPTNAME გაშვებისას."
-#. gw)D
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -470,7 +426,6 @@ msgctxt ""
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "მოხდა შეცდომა %LANGUAGENAME-ის script-ის %SCRIPTNAME გაშვებისას ხაზზე: %LINENUMBER."
-#. p1zM
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -479,7 +434,6 @@ msgctxt ""
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "მოხდა გამონაკლისი %LANGUAGENAME-ის script-ის %SCRIPTNAME გაშვებისას ხაზზე: %LINENUMBER."
-#. HtXI
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -488,7 +442,6 @@ msgctxt ""
msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "სკრიპტის სამუშაო გარემოს შეცდომა %LANGUAGENAME-ის script-ის %SCRIPTNAME გაშვებისას."
-#. 8qs{
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -497,7 +450,6 @@ msgctxt ""
msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "სკრიპტის სამუშაო გარემოს შეცდომა %LANGUAGENAME-ის script-ის %SCRIPTNAME გაშვებისას ხაზზე: %LINENUMBER."
-#. Dz^m
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -506,7 +458,6 @@ msgctxt ""
msgid "Type:"
msgstr "აკრეფა:"
-#. k7^}
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -515,7 +466,6 @@ msgctxt ""
msgid "Message:"
msgstr "შეტყობინება:"
-#. 3lg2
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -524,7 +474,6 @@ msgctxt ""
msgid "Color Picker"
msgstr ""
-#. 3JWk
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -534,7 +483,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. xoSg
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -544,7 +492,6 @@ msgctxt ""
msgid "Pick a color from the document"
msgstr ""
-#. {iK^
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -554,7 +501,6 @@ msgctxt ""
msgid "RGB"
msgstr "RGB"
-#. =m%B
#: colorpicker.src
#, fuzzy
msgctxt ""
@@ -565,7 +511,6 @@ msgctxt ""
msgid "~Red"
msgstr "წითელი"
-#. 0D3o
#: colorpicker.src
#, fuzzy
msgctxt ""
@@ -576,7 +521,6 @@ msgctxt ""
msgid "~Green"
msgstr "მწვანე"
-#. \#ic
#: colorpicker.src
#, fuzzy
msgctxt ""
@@ -587,7 +531,6 @@ msgctxt ""
msgid "~Blue"
msgstr "ლურჯი"
-#. fIkP
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -597,7 +540,6 @@ msgctxt ""
msgid "Hex ~#"
msgstr ""
-#. 8)ee
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -607,7 +549,6 @@ msgctxt ""
msgid "HSB"
msgstr ""
-#. s:(.
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -617,7 +558,6 @@ msgctxt ""
msgid "H~ue"
msgstr ""
-#. N57m
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -627,7 +567,6 @@ msgctxt ""
msgid "~Saturation"
msgstr ""
-#. cPyX
#: colorpicker.src
#, fuzzy
msgctxt ""
@@ -638,7 +577,6 @@ msgctxt ""
msgid "Bright~ness"
msgstr "სიკაშკაშე"
-#. b+|\
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -648,7 +586,6 @@ msgctxt ""
msgid "CMYK"
msgstr "CMYK"
-#. ag@c
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -658,7 +595,6 @@ msgctxt ""
msgid "~Cyan"
msgstr ""
-#. 5mFC
#: colorpicker.src
#, fuzzy
msgctxt ""
@@ -669,7 +605,6 @@ msgctxt ""
msgid "~Magenta"
msgstr "იისფერი"
-#. 53Xa
#: colorpicker.src
#, fuzzy
msgctxt ""
@@ -680,7 +615,6 @@ msgctxt ""
msgid "~Yellow"
msgstr "ყვითელი"
-#. ]emz
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -690,7 +624,6 @@ msgctxt ""
msgid "~Key"
msgstr ""
-#. \pA8
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -700,7 +633,6 @@ msgctxt ""
msgid "General"
msgstr "ზოგადი"
-#. 2F1Z
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -709,7 +641,6 @@ msgctxt ""
msgid "Properties of "
msgstr "თვისებები"
-#. 15EY
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -719,7 +650,6 @@ msgctxt ""
msgid "General"
msgstr "ზოგადი"
-#. RbR?
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -729,7 +659,6 @@ msgctxt ""
msgid "Files"
msgstr "ფაილები"
-#. 1WZ%
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -738,7 +667,6 @@ msgctxt ""
msgid "Properties of "
msgstr "თვისებები"
-#. is@h
#: gallery.src
#, fuzzy
msgctxt ""
@@ -749,7 +677,6 @@ msgctxt ""
msgid "Type:"
msgstr "ტიპი:"
-#. kA7V
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -759,7 +686,6 @@ msgctxt ""
msgid "Location:"
msgstr "მდებარეობა:"
-#. )MmX
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -769,7 +695,6 @@ msgctxt ""
msgid "Contents:"
msgstr "შიგთავსი:"
-#. L(!(
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -779,7 +704,6 @@ msgctxt ""
msgid "Modified:"
msgstr "შეცვლილი:"
-#. ib8I
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -789,7 +713,6 @@ msgctxt ""
msgid "~File type"
msgstr "~ფაილის ტიპი"
-#. v)hb
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -799,7 +722,6 @@ msgctxt ""
msgid "~Find Files..."
msgstr "~ფაილების ძებნა..."
-#. pL8^
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -809,7 +731,6 @@ msgctxt ""
msgid "~Add"
msgstr "~დამატემა"
-#. YxAu
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -819,7 +740,6 @@ msgctxt ""
msgid "A~dd All"
msgstr "ყველას დ~ამატება"
-#. eEF:
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -829,7 +749,6 @@ msgctxt ""
msgid "Pr~eview"
msgstr "გა~დახედვა"
-#. in)o
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -839,7 +758,6 @@ msgctxt ""
msgid "Maddin1"
msgstr "Maddin1"
-#. 2!m.
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -849,7 +767,6 @@ msgctxt ""
msgid "Maddin2"
msgstr "Maddin2"
-#. ?3/P
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -859,7 +776,6 @@ msgctxt ""
msgid "Title"
msgstr "სათაური"
-#. h*#`
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -868,7 +784,6 @@ msgctxt ""
msgid "Enter Title"
msgstr "შეიყვანეთ სათაური"
-#. I9!p
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -878,7 +793,6 @@ msgctxt ""
msgid "Directory"
msgstr "დირექტორია"
-#. VH{G
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -888,7 +802,6 @@ msgctxt ""
msgid "File type"
msgstr "ფაილის ტიპი"
-#. -Fub
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -897,7 +810,6 @@ msgctxt ""
msgid "Find"
msgstr "ძიება"
-#. cJ,d
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -907,7 +819,6 @@ msgctxt ""
msgid "File"
msgstr "ფაილი"
-#. ~mtv
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -916,7 +827,6 @@ msgctxt ""
msgid "Apply"
msgstr "გამოყენება"
-#. gdfS
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -926,7 +836,6 @@ msgctxt ""
msgid "File"
msgstr "ფაილი"
-#. Ip#V
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -935,7 +844,6 @@ msgctxt ""
msgid "Update"
msgstr "განახლება"
-#. oY*p
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -945,7 +853,6 @@ msgctxt ""
msgid "ID"
msgstr "ID"
-#. ZViV
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -954,7 +861,6 @@ msgctxt ""
msgid "Theme ID"
msgstr "თემის ID"
-#. \{J1
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -963,7 +869,6 @@ msgctxt ""
msgid "<No Files>"
msgstr "<ფაილები არ არის>"
-#. jGG?
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -972,7 +877,6 @@ msgctxt ""
msgid "Do you want to update the file list?"
msgstr "გნებავთ ფაილთა ცხრილის განახლება?"
-#. Di38
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -981,7 +885,6 @@ msgctxt ""
msgid "Object;Objects"
msgstr "ობიექტი;ობიექტები"
-#. pJ-W
#: gallery.src
#, fuzzy
msgctxt ""
@@ -991,7 +894,6 @@ msgctxt ""
msgid "(read-only)"
msgstr "(მხოლოდ კითხვადი)"
-#. 3:9w
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -1000,7 +902,6 @@ msgctxt ""
msgid "<All Files>"
msgstr "<ყველა ფაილი>"
-#. \^i-
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -1009,7 +910,6 @@ msgctxt ""
msgid "This ID already exists..."
msgstr "ეს ID უკვე არსებობს..."
-#. _*.H
#: about.src
msgctxt ""
"about.src\n"
@@ -1019,7 +919,6 @@ msgctxt ""
msgid "Version %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX %PRODUCTEXTENSION"
msgstr ""
-#. fnif
#: about.src
msgctxt ""
"about.src\n"
@@ -1029,7 +928,6 @@ msgctxt ""
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#. vJe3
#: about.src
msgctxt ""
"about.src\n"
@@ -1039,7 +937,6 @@ msgctxt ""
msgid "This release was supplied by %OOOVENDOR"
msgstr ""
-#. W=Y_
#: about.src
msgctxt ""
"about.src\n"
@@ -1049,7 +946,6 @@ msgctxt ""
msgid "Copyright © 2000 - 2012 LibreOffice contributors and/or their affiliates"
msgstr ""
-#. PQ#6
#: about.src
msgctxt ""
"about.src\n"
@@ -1059,7 +955,6 @@ msgctxt ""
msgid "LibreOffice was based on OpenOffice.org"
msgstr ""
-#. Inr3
#: about.src
msgctxt ""
"about.src\n"
@@ -1069,7 +964,6 @@ msgctxt ""
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
msgstr ""
-#. 9iuu
#: about.src
msgctxt ""
"about.src\n"
@@ -1079,7 +973,6 @@ msgctxt ""
msgid "(Build ID: $BUILDID)"
msgstr ""
-#. NSIV
#: about.src
msgctxt ""
"about.src\n"
@@ -1089,7 +982,6 @@ msgctxt ""
msgid "http://www.libreoffice.org/about-us/credits/"
msgstr ""
-#. =p`t
#: about.src
msgctxt ""
"about.src\n"
@@ -1099,7 +991,6 @@ msgctxt ""
msgid "Credits"
msgstr ""
-#. J3Jn
#: about.src
#, fuzzy
msgctxt ""
@@ -1110,7 +1001,6 @@ msgctxt ""
msgid "Website"
msgstr "ჩემი ვებგვერდი"
-#. i2V.
#: about.src
msgctxt ""
"about.src\n"
@@ -1120,7 +1010,6 @@ msgctxt ""
msgid "~Close"
msgstr "~დახურვა"
-#. G*]4
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1130,7 +1019,6 @@ msgctxt ""
msgid "Font"
msgstr "შრიფტი"
-#. vUQR
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1140,7 +1028,6 @@ msgctxt ""
msgid "Font Effects"
msgstr "შფრიფტის ეფექტები"
-#. 3?)^
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1150,7 +1037,6 @@ msgctxt ""
msgid "Position"
msgstr "მდებარეობა"
-#. hlh#
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1160,7 +1046,6 @@ msgctxt ""
msgid "Asian Layout"
msgstr "აზიური განლაგება"
-#. d\(S
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1170,7 +1055,6 @@ msgctxt ""
msgid "Indents & Spacing"
msgstr "შეწევა და დაშორება"
-#. y/f$
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1180,7 +1064,6 @@ msgctxt ""
msgid "Alignment"
msgstr "სწორება"
-#. D6qF
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1190,7 +1073,6 @@ msgctxt ""
msgid "Text Flow"
msgstr "ტექსტის დინება"
-#. UD_4
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1200,7 +1082,6 @@ msgctxt ""
msgid "Asian Typography"
msgstr "აზიური ტიპოგრაფია"
-#. aTLc
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1210,7 +1091,6 @@ msgctxt ""
msgid "Background"
msgstr "ფონი"
-#. }1,p
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1219,7 +1099,6 @@ msgctxt ""
msgid "Text Format"
msgstr "ტექსტის ფორმატი"
-#. v$gu
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1229,7 +1108,6 @@ msgctxt ""
msgid "~Options"
msgstr "~პარამეტრები"
-#. SM1b
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1238,7 +1116,6 @@ msgctxt ""
msgid "Attributes"
msgstr "ატრიბუტები"
-#. LD%H
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1248,7 +1125,6 @@ msgctxt ""
msgid "~Exchange characters"
msgstr "~სიმბოლოების გაცვლა"
-#. [Pi9
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1258,7 +1134,6 @@ msgctxt ""
msgid "~Add characters"
msgstr "ს~იმბოლოების დამატება"
-#. +(O;
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1268,7 +1143,6 @@ msgctxt ""
msgid "~Remove characters"
msgstr "სი~მბოლოების ამოღება"
-#. J:4C
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1278,7 +1152,6 @@ msgctxt ""
msgid "~Combine"
msgstr "კომბინირება"
-#. gbBC
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1288,7 +1161,6 @@ msgctxt ""
msgid "Settings"
msgstr "პარამეტრები"
-#. DuTs
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1297,7 +1169,6 @@ msgctxt ""
msgid "Similarity Search"
msgstr "მსგავსის ძებნა"
-#. k]@_
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1307,7 +1178,6 @@ msgctxt ""
msgid "Source:"
msgstr "წყარო:"
-#. !A.C
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1317,7 +1187,6 @@ msgctxt ""
msgid "~Insert as"
msgstr "ჩასმა როგორც"
-#. OMLL
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1327,7 +1196,6 @@ msgctxt ""
msgid "Link to"
msgstr "მბული"
-#. q{bE
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1337,7 +1205,6 @@ msgctxt ""
msgid "~As icon"
msgstr "როგორც ხატულა"
-#. ,1%~
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1347,7 +1214,6 @@ msgctxt ""
msgid "~Other Icon..."
msgstr "სხვა ხატულა"
-#. )@lS
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1357,7 +1223,6 @@ msgctxt ""
msgid "Selection"
msgstr "მონიშნული"
-#. U@@a
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1367,7 +1232,6 @@ msgctxt ""
msgid "Object"
msgstr "ობიექტი"
-#. v8_5
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1376,7 +1240,6 @@ msgctxt ""
msgid "Paste Special"
msgstr "სპეციალური ჩასმა"
-#. c`$+
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1386,7 +1249,6 @@ msgctxt ""
msgid "Source file"
msgstr "საწყისი ფაილი"
-#. a,w^
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1396,7 +1258,6 @@ msgctxt ""
msgid "Element:"
msgstr "ელემენტი:"
-#. kM@g
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1406,7 +1267,6 @@ msgctxt ""
msgid "Type"
msgstr "აკრეფა"
-#. hI/s
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1416,7 +1276,6 @@ msgctxt ""
msgid "Status"
msgstr "სტატუსი"
-#. tL)m
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1426,7 +1285,6 @@ msgctxt ""
msgid "~Close"
msgstr "~დახურვა"
-#. l3_@
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1436,7 +1294,6 @@ msgctxt ""
msgid "~Update"
msgstr "~განახლება"
-#. /@R+
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1446,7 +1303,6 @@ msgctxt ""
msgid "~Open"
msgstr "~გახსნა"
-#. KQqI
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1456,7 +1312,6 @@ msgctxt ""
msgid "~Modify..."
msgstr "შ~ეცვლა..."
-#. ;R,p
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1466,7 +1321,6 @@ msgctxt ""
msgid "~Break Link"
msgstr "~მულის წყვეტა"
-#. sLvl
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1476,7 +1330,6 @@ msgctxt ""
msgid "Source file"
msgstr "საწყისი ფაილი"
-#. 6!L8
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1486,7 +1339,6 @@ msgctxt ""
msgid "Element:"
msgstr "ელემენტი:"
-#. b-eK
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1496,7 +1348,6 @@ msgctxt ""
msgid "Type:"
msgstr "აკრეფა:"
-#. sE5o
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1506,7 +1357,6 @@ msgctxt ""
msgid "Update:"
msgstr "განახლება:"
-#. qVkM
#: svuidlg.src
#, fuzzy
msgctxt ""
@@ -1517,7 +1367,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "~ავტომატური"
-#. KO-M
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1527,7 +1376,6 @@ msgctxt ""
msgid "Ma~nual"
msgstr "ხე~ლით"
-#. U|Nc
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1537,7 +1385,6 @@ msgctxt ""
msgid "Automatic"
msgstr "ავტომატური"
-#. YZ[\
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1547,7 +1394,6 @@ msgctxt ""
msgid "Manual"
msgstr "ხელით"
-#. 2CId
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1557,7 +1403,6 @@ msgctxt ""
msgid "Not available"
msgstr "არ არის ხელმისაწვდომი"
-#. oEVY
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1567,7 +1412,6 @@ msgctxt ""
msgid "Graphic"
msgstr "გრაფიკა"
-#. m8~j
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1577,7 +1421,6 @@ msgctxt ""
msgid "~Close"
msgstr "~დახურვა"
-#. 1Y;1
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1587,7 +1430,6 @@ msgctxt ""
msgid "Are you sure you want to remove the selected link?"
msgstr "დარწმუნებული ხართ რომ გსურთ არჩეული ბმულის წაშლა?"
-#. =-S)
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1597,7 +1439,6 @@ msgctxt ""
msgid "Are you sure you want to remove the selected link?"
msgstr "დარწმუნებული ხართ რომ გსურთ არჩეული ბმულის წაშლა?"
-#. 6j/[
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1607,7 +1448,6 @@ msgctxt ""
msgid "Waiting"
msgstr "ცდა"
-#. *=%J
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1616,7 +1456,6 @@ msgctxt ""
msgid "Edit Links"
msgstr "ბმულების რედაქტირება"
-#. ]q+~
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1626,7 +1465,6 @@ msgctxt ""
msgid "Exchange source:"
msgstr "წყაროს გაცვლა:"
-#. 4I9;
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1636,7 +1474,6 @@ msgctxt ""
msgid "Edit"
msgstr "რედაქტირება"
-#. aG_H
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1645,7 +1482,6 @@ msgctxt ""
msgid "Modify Link"
msgstr "მბულის განახლება"
-#. (}N.
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1655,7 +1491,6 @@ msgctxt ""
msgid "~Class"
msgstr "~კლასი"
-#. ii$;
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1665,7 +1500,6 @@ msgctxt ""
msgid "Class ~Location"
msgstr "~კლასის ადგილმდებარეობა"
-#. T2j\
#: svuidlg.src
#, fuzzy
msgctxt ""
@@ -1676,7 +1510,6 @@ msgctxt ""
msgid "~Search..."
msgstr "ძ~ებნა..."
-#. 0QcZ
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1686,7 +1519,6 @@ msgctxt ""
msgid "File"
msgstr "ფაილი"
-#. _a(?
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1696,7 +1528,6 @@ msgctxt ""
msgid "Options"
msgstr "პარამეტრები"
-#. Es_Q
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1705,7 +1536,6 @@ msgctxt ""
msgid "Insert Applet"
msgstr "აპლეტის ჩასმა"
-#. %a#=
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1715,7 +1545,6 @@ msgctxt ""
msgid "Author"
msgstr "ავტორი"
-#. :A[;
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1725,7 +1554,6 @@ msgctxt ""
msgid "~Text"
msgstr "~ტექსტი"
-#. !W!A
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1735,7 +1563,6 @@ msgctxt ""
msgid "Contents"
msgstr "სარჩევი"
-#. Ss^W
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1745,7 +1572,6 @@ msgctxt ""
msgid "~Insert"
msgstr "ჩ~ასმა"
-#. @2#v
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1755,7 +1581,6 @@ msgctxt ""
msgid "Author"
msgstr "ავტორი"
-#. ,40J
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1765,7 +1590,6 @@ msgctxt ""
msgid "Edit Comment"
msgstr "Edit Comment"
-#. K2K_
#: postdlg.src
#, fuzzy
msgctxt ""
@@ -1776,7 +1600,6 @@ msgctxt ""
msgid "Insert Comment"
msgstr "ბრძანების ჩასმა"
-#. eB(6
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1785,7 +1608,6 @@ msgctxt ""
msgid "Comment"
msgstr "კომენტარი"
-#. ^tib
#: sdrcelldlg.src
msgctxt ""
"sdrcelldlg.src\n"
@@ -1795,7 +1617,6 @@ msgctxt ""
msgid "Font"
msgstr "შრიფტი"
-#. GZZ.
#: sdrcelldlg.src
msgctxt ""
"sdrcelldlg.src\n"
@@ -1805,7 +1626,6 @@ msgctxt ""
msgid "Font Effects"
msgstr "შფრიფტის ეფექტები"
-#. Ah.s
#: sdrcelldlg.src
msgctxt ""
"sdrcelldlg.src\n"
@@ -1815,7 +1635,6 @@ msgctxt ""
msgid "Borders"
msgstr "ჩარჩო"
-#. l\ks
#: sdrcelldlg.src
msgctxt ""
"sdrcelldlg.src\n"
@@ -1825,7 +1644,6 @@ msgctxt ""
msgid "Background"
msgstr "ფონი"
-#. Nt}G
#: sdrcelldlg.src
msgctxt ""
"sdrcelldlg.src\n"
@@ -1835,7 +1653,6 @@ msgctxt ""
msgid "Return"
msgstr "დაბრუნება"
-#. $)x;
#: sdrcelldlg.src
#, fuzzy
msgctxt ""
@@ -1845,7 +1662,6 @@ msgctxt ""
msgid "Format Cells"
msgstr "უჯრის ფორმატი"
-#. pjv\
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1855,7 +1671,6 @@ msgctxt ""
msgid "Parameters"
msgstr "პარამეტრები"
-#. SN+G
#: grfflt.src
#, fuzzy
msgctxt ""
@@ -1866,7 +1681,6 @@ msgctxt ""
msgid "~Width"
msgstr "ს~იგანე"
-#. p1X7
#: grfflt.src
#, fuzzy
msgctxt ""
@@ -1877,7 +1691,6 @@ msgctxt ""
msgid " Pixel"
msgstr "პიქსელები"
-#. nwbg
#: grfflt.src
#, fuzzy
msgctxt ""
@@ -1888,7 +1701,6 @@ msgctxt ""
msgid "H~eight"
msgstr "სი~მაღლე"
-#. N7R~
#: grfflt.src
#, fuzzy
msgctxt ""
@@ -1899,7 +1711,6 @@ msgctxt ""
msgid " Pixel"
msgstr "პიქსელები"
-#. p3!y
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1909,7 +1720,6 @@ msgctxt ""
msgid "E~nhance edges"
msgstr "გაფართოებული კ~იდეები"
-#. !bNm
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1918,7 +1728,6 @@ msgctxt ""
msgid "Mosaic"
msgstr "მოზაიკა"
-#. _0,q
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1928,7 +1737,6 @@ msgctxt ""
msgid "Parameters"
msgstr "პარამეტრები"
-#. ^PlP
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1938,7 +1746,6 @@ msgctxt ""
msgid "Threshold ~value"
msgstr "~ზღვრული მნიშვნელობა"
-#. ~)5X
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1948,7 +1755,6 @@ msgctxt ""
msgid "~Invert"
msgstr "~გარდაქმნა"
-#. W(wS
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1957,7 +1763,6 @@ msgctxt ""
msgid "Solarization"
msgstr "სოლარიზაცა"
-#. _G@@
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1967,7 +1772,6 @@ msgctxt ""
msgid "Parameters"
msgstr "პარამეტრები"
-#. M2,n
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1977,7 +1781,6 @@ msgctxt ""
msgid "Aging degree"
msgstr "ასაკიანი ხარისხი"
-#. :d9]
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1986,7 +1789,6 @@ msgctxt ""
msgid "Aging"
msgstr "ასაკიანი"
-#. XZc%
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1996,7 +1798,6 @@ msgctxt ""
msgid "Parameters"
msgstr "პარამეტრები"
-#. xiDI
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -2006,7 +1807,6 @@ msgctxt ""
msgid "Poster colors"
msgstr "ლოგოს ფერები"
-#. gVT(
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -2015,7 +1815,6 @@ msgctxt ""
msgid "Posterize"
msgstr "პოსტერიზაცია"
-#. .oe|
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -2025,7 +1824,6 @@ msgctxt ""
msgid "Parameters"
msgstr "პარამეტრები"
-#. \5\Z
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -2035,7 +1833,6 @@ msgctxt ""
msgid "Light source"
msgstr "განათების წყარო"
-#. dx+o
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -2044,7 +1841,6 @@ msgctxt ""
msgid "Relief"
msgstr "რელიეფი"
-#. !#1M
#: grfflt.src
#, fuzzy
msgctxt ""
@@ -2055,7 +1851,6 @@ msgctxt ""
msgid "Parameters"
msgstr "პარამეტრები"
-#. c3c4
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -2065,7 +1860,6 @@ msgctxt ""
msgid "Smooth Radius"
msgstr ""
-#. v%.e
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -2074,7 +1868,6 @@ msgctxt ""
msgid "Smooth"
msgstr "გლუვი"
-#. :KSr
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2084,7 +1877,6 @@ msgctxt ""
msgid "Paths"
msgstr "გეზები"
-#. KdMM
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2094,7 +1886,6 @@ msgctxt ""
msgid "Mark the default path for new files."
msgstr "მონიშნეთ გზა ნაგულისხმევად ახალი ფაილებისთვის."
-#. [51a
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2104,7 +1895,6 @@ msgctxt ""
msgid "~Add..."
msgstr "~დამატება..."
-#. )N])
#: multipat.src
#, fuzzy
msgctxt ""
@@ -2115,7 +1905,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~წაშლა"
-#. En0v
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2125,7 +1914,6 @@ msgctxt ""
msgid "Path list"
msgstr "გზათა სია"
-#. TRw.
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2134,7 +1922,6 @@ msgctxt ""
msgid "Select Paths"
msgstr "ამოირჩიეთ გზები"
-#. m6Tt
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2143,7 +1930,6 @@ msgctxt ""
msgid "The path %1 already exists."
msgstr "გზა %1 უკვე არსებობს."
-#. ct+:
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2152,7 +1938,6 @@ msgctxt ""
msgid "Select files"
msgstr "ფაილების მონიშვნა"
-#. qaxg
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2161,7 +1946,6 @@ msgctxt ""
msgid "Files"
msgstr "ფაილები"
-#. WqDs
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2170,7 +1954,6 @@ msgctxt ""
msgid "Select Archives"
msgstr "არქივების მონიშვნა"
-#. N4GD
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2179,7 +1962,6 @@ msgctxt ""
msgid "Archives"
msgstr "არქივები"
-#. Ejr6
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2188,7 +1970,6 @@ msgctxt ""
msgid "The file %1 already exists."
msgstr "ფაილი %1 უკვე არსებობს."
-#. C!dE
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2198,7 +1979,6 @@ msgctxt ""
msgid "Text languag~e"
msgstr ""
-#. dq#@
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2208,7 +1988,6 @@ msgctxt ""
msgid "More..."
msgstr "დამატებით..."
-#. D]i)
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2218,7 +1997,6 @@ msgctxt ""
msgid "~Not in dictionary"
msgstr "~არ არის ლექსიკონში"
-#. 19.u
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2228,7 +2006,6 @@ msgctxt ""
msgid "~Suggestions"
msgstr "~რჩევები"
-#. Qj94
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2238,7 +2015,6 @@ msgctxt ""
msgid "Check ~grammar"
msgstr ""
-#. mi]-
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2248,7 +2024,6 @@ msgctxt ""
msgid "~Ignore Once"
msgstr "~ერთის უარყოფა"
-#. 0}6\
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2258,7 +2033,6 @@ msgctxt ""
msgid "I~gnore All"
msgstr "~ყველას უარყოფა"
-#. k#aT
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2268,7 +2042,6 @@ msgctxt ""
msgid "I~gnore Rule"
msgstr "~ყველას უარყოფა"
-#. y:He
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2278,7 +2051,6 @@ msgctxt ""
msgid "~Add"
msgstr "დ~ამატება"
-#. _VN:
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2288,7 +2060,6 @@ msgctxt ""
msgid "~Add"
msgstr "~დამატემა"
-#. Ut6,
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2298,7 +2069,6 @@ msgctxt ""
msgid "~Change"
msgstr "შ~ეცვლა"
-#. -f98
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2308,7 +2078,6 @@ msgctxt ""
msgid "Change A~ll"
msgstr "ყ~ველას შეცვლა"
-#. ;8tW
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2318,7 +2087,6 @@ msgctxt ""
msgid "AutoCor~rect"
msgstr "ავ~ტოკორექცია"
-#. .q5C
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2328,7 +2096,6 @@ msgctxt ""
msgid "O~ptions..."
msgstr "~პარამეტრები..."
-#. 2}-4
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2338,7 +2105,6 @@ msgctxt ""
msgid "~Undo"
msgstr "~მოქმედების დაბრუნება"
-#. epNd
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2348,7 +2114,6 @@ msgctxt ""
msgid "Cl~ose"
msgstr "და~ხურვა"
-#. ]$lP
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2358,7 +2123,6 @@ msgctxt ""
msgid "Resu~me"
msgstr "~გაგრძელება"
-#. 3pED
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2368,7 +2132,6 @@ msgctxt ""
msgid "(no suggestions)"
msgstr "(წინადადებები არ არის)"
-#. A_hh
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2378,7 +2141,6 @@ msgctxt ""
msgid "Spelling: $LANGUAGE ($LOCATION)"
msgstr ""
-#. :35q
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2388,7 +2150,6 @@ msgctxt ""
msgid "Spelling and Grammar: $LANGUAGE ($LOCATION)"
msgstr ""
-#. B3,S
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2398,7 +2159,6 @@ msgctxt ""
msgid "Spelling and Grammar: $LANGUAGE ($LOCATION) [$VendorName]"
msgstr ""
-#. Oruo
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2407,7 +2167,6 @@ msgctxt ""
msgid "Spellcheck: "
msgstr "მართლწერის შემოწმება: "
-#. lQDX
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2417,7 +2176,6 @@ msgctxt ""
msgid "~Split cell into"
msgstr ""
-#. %S?v
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2427,7 +2185,6 @@ msgctxt ""
msgid "Split"
msgstr "გაყოფა"
-#. T\yI
#: splitcelldlg.src
#, fuzzy
msgctxt ""
@@ -2438,7 +2195,6 @@ msgctxt ""
msgid "H~orizontally"
msgstr "ჰორიზონტალური"
-#. ^C%S
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2448,7 +2204,6 @@ msgctxt ""
msgid "~Into equal proportions"
msgstr ""
-#. y(/I
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2458,7 +2213,6 @@ msgctxt ""
msgid "~Vertically"
msgstr "~ვერტიკალურად"
-#. sYN+
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2468,7 +2222,6 @@ msgctxt ""
msgid "Direction"
msgstr "მიმართულება"
-#. 3hto
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2477,7 +2230,6 @@ msgctxt ""
msgid "Split Cells"
msgstr "უჯრების გაყოფა"
-#. K\)t
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2486,7 +2238,6 @@ msgctxt ""
msgid "No alternatives found."
msgstr ""
-#. [o|L
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2495,7 +2246,6 @@ msgctxt ""
msgid "Select File for Floating Frame"
msgstr "ფაილის მონიშვნა მცურავი ჩარჩოსათვის"
-#. Bx0.
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2504,7 +2254,6 @@ msgctxt ""
msgid "My Macros"
msgstr "ჩემი მაკროსები"
-#. [2V#
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2513,7 +2262,6 @@ msgctxt ""
msgid "%PRODUCTNAME Macros"
msgstr "%PRODUCTNAME მაკროსები"
-#. S7)b
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2522,7 +2270,6 @@ msgctxt ""
msgid "Add Commands"
msgstr "ბრძანებების დამატება"
-#. s2Fv
#: cuires.src
#, fuzzy
msgctxt ""
@@ -2532,7 +2279,6 @@ msgctxt ""
msgid "Run"
msgstr "გაშ~ვება"
-#. mRwK
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2541,7 +2287,6 @@ msgctxt ""
msgid "Insert Rows"
msgstr "სტრქონის ჩასმა"
-#. EWNK
#: cuires.src
#, fuzzy
msgctxt ""
@@ -2551,7 +2296,6 @@ msgctxt ""
msgid "Insert Columns"
msgstr "ს~ვეტების ჩასმა"
-#. DJr*
#: iconcdlg.src
msgctxt ""
"iconcdlg.src\n"
@@ -2560,7 +2304,6 @@ msgctxt ""
msgid "~Back"
msgstr "~უკან"
-#. hm/:
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2570,7 +2313,6 @@ msgctxt ""
msgid "~Find"
msgstr "~ზებნა"
-#. ?=/h
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2580,7 +2322,6 @@ msgctxt ""
msgid "Format"
msgstr "ფორმატი"
-#. gP:z
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2590,7 +2331,6 @@ msgctxt ""
msgid "~Hangul/Hanja"
msgstr "~ჰანგული/ჰანჯა"
-#. E*l:
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2600,7 +2340,6 @@ msgctxt ""
msgid "Hanja (Han~gul)"
msgstr "ჰანჯა (ჰან~გული)"
-#. ~\ef
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2610,7 +2349,6 @@ msgctxt ""
msgid "Hang~ul (Hanja)"
msgstr "ჰანგ~ული (ჰანჯა)"
-#. 9f_J
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2620,7 +2358,6 @@ msgctxt ""
msgid "Hangu~l"
msgstr "ჰანგუ~ლი"
-#. =6~o
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2630,7 +2367,6 @@ msgctxt ""
msgid "Hang~ul"
msgstr "ჰანგ~ული"
-#. {*IQ
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2640,7 +2376,6 @@ msgctxt ""
msgid "Han~ja"
msgstr "ჰანჯ~ა"
-#. qDL6
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2650,7 +2385,6 @@ msgctxt ""
msgid "Ha~nja"
msgstr "ჰა~ნჯა"
-#. r^LZ
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2660,7 +2394,6 @@ msgctxt ""
msgid "Conversion"
msgstr "გარდაქმნა"
-#. ,*V$
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2670,7 +2403,6 @@ msgctxt ""
msgid "Hangul ~only"
msgstr "~მხოლოდ ჰანგული"
-#. .)vB
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2680,7 +2412,6 @@ msgctxt ""
msgid "Hanja onl~y"
msgstr "მხოლო~დ ჰანჯა"
-#. .{gr
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2690,7 +2421,6 @@ msgctxt ""
msgid "Replace b~y character"
msgstr "ჩანა~ცვლება სიმბოლოთი"
-#. WK3M
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2700,7 +2430,6 @@ msgctxt ""
msgid "Hangul"
msgstr "ჰანგული"
-#. D;Ps
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2710,7 +2439,6 @@ msgctxt ""
msgid "Hanja"
msgstr "ჰანჯა"
-#. Z|[0
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2719,7 +2447,6 @@ msgctxt ""
msgid "Hangul/Hanja Conversion"
msgstr "ჰანგული/ჰანჯა საუბარი"
-#. k=@D
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2729,7 +2456,6 @@ msgctxt ""
msgid "User-defined dictionaries"
msgstr "მომხმარებლის მიერ განსაზღვრული ლექსიკონები"
-#. =VVJ
#: hangulhanjadlg.src
#, fuzzy
msgctxt ""
@@ -2762,7 +2488,6 @@ msgstr ""
"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
"პარამეტრები"
-#. R8%Y
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2772,7 +2497,6 @@ msgctxt ""
msgid "Ignore post-positional word"
msgstr "პოზიციის შემდეგი სიტყვის იგნორირება"
-#. i4n,
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2782,7 +2506,6 @@ msgctxt ""
msgid "Show recently used entries first"
msgstr "პირველად ხშირად გამოყენებული შენატანების ჩვენება"
-#. Qk`Y
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2792,7 +2515,6 @@ msgctxt ""
msgid "Replace all unique entries automatically"
msgstr "უნიკალური შენატანების ავტომატური ჩანაცვლება"
-#. /\;u
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2802,7 +2524,6 @@ msgctxt ""
msgid "New..."
msgstr "ახალი..."
-#. Ms/R
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2812,7 +2533,6 @@ msgctxt ""
msgid "Edit..."
msgstr "რედაქტირება..."
-#. /8LZ
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2822,7 +2542,6 @@ msgctxt ""
msgid "Delete"
msgstr "წაშლა"
-#. pf5k
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2831,7 +2550,6 @@ msgctxt ""
msgid "Hangul/Hanja Options"
msgstr "ჰანგული/ჰანჯა პარამეტრები"
-#. z;6c
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2841,7 +2559,6 @@ msgctxt ""
msgid "Dictionary"
msgstr "ლექსიკონი"
-#. =2[0
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2851,7 +2568,6 @@ msgctxt ""
msgid "~Name"
msgstr "ს~ახელი"
-#. ][6Z
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2860,7 +2576,6 @@ msgctxt ""
msgid "New Dictionary"
msgstr "ახალი ლექსიკონი"
-#. HMg`
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2870,7 +2585,6 @@ msgctxt ""
msgid "[Enter text here]"
msgstr "[შეიყვანეთ ტექსტი აქ]"
-#. .c/~
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2880,7 +2594,6 @@ msgctxt ""
msgid "Book"
msgstr "წიგნი"
-#. F[$_
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2890,7 +2603,6 @@ msgctxt ""
msgid "Original"
msgstr "დედანი"
-#. rs.K
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2900,7 +2612,6 @@ msgctxt ""
msgid "Suggestions (max. 8)"
msgstr "წინადადებები (მაქს. 8)"
-#. Q$)s
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2910,7 +2621,6 @@ msgctxt ""
msgid "New"
msgstr "ახალი"
-#. g([7
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2920,7 +2630,6 @@ msgctxt ""
msgid "Delete"
msgstr "წაშლა"
-#. GF,c
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2930,7 +2639,6 @@ msgctxt ""
msgid "Close"
msgstr "დახურვა"
-#. rr^7
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2939,7 +2647,6 @@ msgctxt ""
msgid "Edit Custom Dictionary"
msgstr "მორგებული ლექსიკონის რედაქტირება"
-#. p3_c
#: hlmarkwn.src
msgctxt ""
"hlmarkwn.src\n"
@@ -2949,7 +2656,6 @@ msgctxt ""
msgid "Apply"
msgstr "მისადაგება"
-#. z*]I
#: hlmarkwn.src
msgctxt ""
"hlmarkwn.src\n"
@@ -2959,7 +2665,6 @@ msgctxt ""
msgid "Close"
msgstr "დახურვა"
-#. gy4G
#: hlmarkwn.src
msgctxt ""
"hlmarkwn.src\n"
@@ -2968,7 +2673,6 @@ msgctxt ""
msgid "Target in Document"
msgstr "სამიზნე დოკუმენტში"
-#. X/m:
#: hlmarkwn.src
msgctxt ""
"hlmarkwn.src\n"
@@ -2977,7 +2681,6 @@ msgctxt ""
msgid "Targets do not exist in the document."
msgstr "სამიზნე არ არის გახსნილი დოკუმენტში"
-#. i3C0
#: hlmarkwn.src
msgctxt ""
"hlmarkwn.src\n"
@@ -2986,7 +2689,6 @@ msgctxt ""
msgid "Couldn't open the document."
msgstr "შეუძლებელია ამ დოკუმენტის გახსნა"
-#. dTPN
#: hlmarkwn.src
msgctxt ""
"hlmarkwn.src\n"
@@ -2995,7 +2697,6 @@ msgctxt ""
msgid "Mark Tree"
msgstr ""
-#. BA]n
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3005,7 +2706,6 @@ msgctxt ""
msgid "File encryption password"
msgstr ""
-#. 8$u*
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3015,7 +2715,6 @@ msgctxt ""
msgid "~Enter password to open"
msgstr ""
-#. NH6r
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3025,7 +2724,6 @@ msgctxt ""
msgid "Confirm password"
msgstr ""
-#. T3/i
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3035,7 +2733,6 @@ msgctxt ""
msgid "Note: After a password has been set, the document will only open with "
msgstr ""
-#. Ty55
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3045,7 +2742,6 @@ msgctxt ""
msgid "File sharing password"
msgstr ""
-#. mSdf
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3055,7 +2751,6 @@ msgctxt ""
msgid "Open file read-only"
msgstr ""
-#. eY%Q
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3065,7 +2760,6 @@ msgctxt ""
msgid "Enter password to allow editing"
msgstr ""
-#. ?qQg
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3075,7 +2769,6 @@ msgctxt ""
msgid "Confirm password"
msgstr ""
-#. CzkZ
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3085,7 +2778,6 @@ msgctxt ""
msgid "Password must be confirmed"
msgstr ""
-#. X7bk
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3095,7 +2787,6 @@ msgctxt ""
msgid "More ~Options"
msgstr "მეტი ~პარამეტრები"
-#. N8Nb
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3105,7 +2796,6 @@ msgctxt ""
msgid "Fewer ~Options"
msgstr ""
-#. J=eq
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3115,7 +2805,6 @@ msgctxt ""
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
msgstr ""
-#. DBsf
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3125,7 +2814,6 @@ msgctxt ""
msgid "The confirmation passwords did not match the original passwords. Set the passwords again."
msgstr ""
-#. KIwu
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3135,7 +2823,6 @@ msgctxt ""
msgid "Please enter a password to open or to modify, or check the open read-only option to continue."
msgstr ""
-#. T913
#: passwdomdlg.src
#, fuzzy
msgctxt ""
@@ -3145,7 +2832,6 @@ msgctxt ""
msgid "Set Password"
msgstr "ახალი პაროლი"
-#. GtFb
#: showcols.src
msgctxt ""
"showcols.src\n"
@@ -3155,7 +2841,6 @@ msgctxt ""
msgid "The following columns are currently hidden. Please mark the fields you want to show and choose OK."
msgstr "აღნიშნილი სვეტები ამ დროისთვის არიან დამალულები. გთხოვთ მონიშნეთ ის ველები , რომლებიც გინდათ , რომ გამოჩდნებ და აირჩიეთ OK."
-#. 66\h
#: showcols.src
msgctxt ""
"showcols.src\n"
@@ -3164,7 +2849,6 @@ msgctxt ""
msgid "Show columns"
msgstr "სვეტების ჩვენება"
-#. ;Nl/
#: cuiimapdlg.src
msgctxt ""
"cuiimapdlg.src\n"
@@ -3174,7 +2858,6 @@ msgctxt ""
msgid "~URL"
msgstr "~URL"
-#. vyqo
#: cuiimapdlg.src
msgctxt ""
"cuiimapdlg.src\n"
@@ -3184,7 +2867,6 @@ msgctxt ""
msgid "F~rame"
msgstr "ჩ~არჩო"
-#. dJ$b
#: cuiimapdlg.src
msgctxt ""
"cuiimapdlg.src\n"
@@ -3194,7 +2876,6 @@ msgctxt ""
msgid "~Name"
msgstr "ს~ახელი"
-#. x[gT
#: cuiimapdlg.src
msgctxt ""
"cuiimapdlg.src\n"
@@ -3204,7 +2885,6 @@ msgctxt ""
msgid "Alternative ~text"
msgstr "ალტენატიული ~ტექსტი"
-#. Jj@1
#: cuiimapdlg.src
#, fuzzy
msgctxt ""
@@ -3229,7 +2909,6 @@ msgstr ""
"#-#-#-#-# contnr.po (PACKAGE VERSION) #-#-#-#-#\n"
"აღწერილობა"
-#. m%N9
#: cuiimapdlg.src
msgctxt ""
"cuiimapdlg.src\n"
@@ -3238,7 +2917,6 @@ msgctxt ""
msgid "Properties"
msgstr "თვისებები"
-#. -|w`
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3248,7 +2926,6 @@ msgctxt ""
msgid "Search for"
msgstr "ძიება"
-#. cjUW
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3258,7 +2935,6 @@ msgctxt ""
msgid "~Text"
msgstr "~ტექსტი"
-#. 1wk!
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3268,7 +2944,6 @@ msgctxt ""
msgid "Field content is ~NULL"
msgstr "ველის შემცველობა არის ნოლი"
-#. iIi@
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3278,7 +2953,6 @@ msgctxt ""
msgid "Field content is not NU~LL"
msgstr "ველის შემცველობა არ არის ნოლი"
-#. F:2/
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3288,7 +2962,6 @@ msgctxt ""
msgid "Where to search"
msgstr "სად მოძებნოს"
-#. ,ugO
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3298,7 +2971,6 @@ msgctxt ""
msgid "Form"
msgstr "ფორმა"
-#. HDyg
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3308,7 +2980,6 @@ msgctxt ""
msgid "All Fields"
msgstr "ყველა ველი"
-#. 8B5A
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3318,7 +2989,6 @@ msgctxt ""
msgid "Single field"
msgstr "ერთმაგი ველი"
-#. }9g]
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3328,7 +2998,6 @@ msgctxt ""
msgid "Settings"
msgstr "პარამეტრები"
-#. p%(*
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3338,7 +3007,6 @@ msgctxt ""
msgid "Position"
msgstr "პოზიცია"
-#. -Tst
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3348,7 +3016,6 @@ msgctxt ""
msgid "Apply field format"
msgstr "ველის ფორმატის გააქტიურება"
-#. n\8{
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3358,7 +3025,6 @@ msgctxt ""
msgid "Match case"
msgstr "რეგისტრის დამთხვევა"
-#. it|3
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3368,7 +3034,6 @@ msgctxt ""
msgid "Search backwards"
msgstr "დაბრუნდი ძებნაში"
-#. O`ez
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3378,7 +3043,6 @@ msgctxt ""
msgid "From Beginning"
msgstr "დასაწყისი"
-#. 16xC
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3388,7 +3052,6 @@ msgctxt ""
msgid "Wildcard expression"
msgstr ""
-#. 0g-H
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3398,7 +3061,6 @@ msgctxt ""
msgid "Regular expression"
msgstr "რეგულარული გამოსახულება"
-#. W8;M
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3408,7 +3070,6 @@ msgctxt ""
msgid "Similarity Search"
msgstr "მსგავსი ძებნა"
-#. m31=
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3418,7 +3079,6 @@ msgctxt ""
msgid "..."
msgstr "..."
-#. jJ*}
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3428,7 +3088,6 @@ msgctxt ""
msgid "Match character width"
msgstr "ემთხვევა სიმბოლოს სიგანეს"
-#. 3`xm
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3438,7 +3097,6 @@ msgctxt ""
msgid "Sounds like (Japanese)"
msgstr "ხმის ბმული (იაპონური)"
-#. j7Sm
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3448,7 +3106,6 @@ msgctxt ""
msgid "..."
msgstr "..."
-#. |`#C
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3458,7 +3115,6 @@ msgctxt ""
msgid "State"
msgstr "შტატი"
-#. 9VXk
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3468,7 +3124,6 @@ msgctxt ""
msgid "Record :"
msgstr "ჩაწერა:"
-#. +m`C
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3478,7 +3133,6 @@ msgctxt ""
msgid "Search"
msgstr "ძებნა"
-#. ON)R
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3488,7 +3142,6 @@ msgctxt ""
msgid "~Close"
msgstr "~დახურვა"
-#. F([F
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3498,7 +3151,6 @@ msgctxt ""
msgid "~Help"
msgstr "~დახმარება"
-#. USgK
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3507,7 +3159,6 @@ msgctxt ""
msgid "Record Search"
msgstr "ცანაწერის ძებნა"
-#. kZ`W
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3516,7 +3167,6 @@ msgctxt ""
msgid "anywhere in the field"
msgstr ""
-#. $?Bi
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3525,7 +3175,6 @@ msgctxt ""
msgid "beginning of field"
msgstr ""
-#. 2m2z
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3534,7 +3183,6 @@ msgctxt ""
msgid "end of field"
msgstr ""
-#. 9y\(
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3543,7 +3191,6 @@ msgctxt ""
msgid "entire field"
msgstr ""
-#. Fyg1
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3552,7 +3199,6 @@ msgctxt ""
msgid "From top"
msgstr "ზემოდან"
-#. |pB(
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3561,7 +3207,6 @@ msgctxt ""
msgid "From bottom"
msgstr "ქვემოდან"
-#. W1kf
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3570,7 +3215,6 @@ msgctxt ""
msgid "No records corresponding to your data found."
msgstr "თქვენს ჩანაწერთან დაკავშირებული ჩანაწერები ვერ მოიძებნა."
-#. Nrm$
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3579,7 +3223,6 @@ msgctxt ""
msgid "An unknown error occurred. The search could not be finished."
msgstr "გამოვლინდა უცნობი შეცდომა. ძებნა ვერ დასრულდა."
-#. $9EZ
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3588,7 +3231,6 @@ msgctxt ""
msgid "Overflow, search continued at the beginning"
msgstr ""
-#. *9Ss
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3597,7 +3239,6 @@ msgctxt ""
msgid "Overflow, search continued at the end"
msgstr ""
-#. _wV?
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3606,7 +3247,6 @@ msgctxt ""
msgid "counting records"
msgstr "ჩაწერის მთვლელი"
-#. r7HA
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3616,7 +3256,6 @@ msgctxt ""
msgid "Hyperlink type"
msgstr "ჰიპერბმულის ტიპი"
-#. 0NYm
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3626,7 +3265,6 @@ msgctxt ""
msgid "~Web"
msgstr "~Web"
-#. $Qtr
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3636,7 +3274,6 @@ msgctxt ""
msgid "~FTP"
msgstr "~FTP"
-#. (f_?
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3646,7 +3283,6 @@ msgctxt ""
msgid "Tar~get"
msgstr "სამი~ზნე"
-#. SeM#
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3656,7 +3292,6 @@ msgctxt ""
msgid "~Login name"
msgstr "შ~ესვლის სახელი"
-#. ,LPj
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3666,7 +3301,6 @@ msgctxt ""
msgid "~Password"
msgstr "~პაროლი"
-#. eU:P
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3676,7 +3310,6 @@ msgctxt ""
msgid "Anonymous ~user"
msgstr "ანონიმური ~მომხმარებელი"
-#. ,Bu[
#: hyperdlg.src
#, fuzzy
msgctxt ""
@@ -3687,7 +3320,6 @@ msgctxt ""
msgid "WWW Browser"
msgstr "WWW ბრაუზერი"
-#. pVIH
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3697,7 +3329,6 @@ msgctxt ""
msgid "Open web browser, copy an URL, and paste it to Target field"
msgstr ""
-#. jP[4
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3707,7 +3338,6 @@ msgctxt ""
msgid "Further settings"
msgstr "მომდევნო პარამეტრები"
-#. pwv)
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3717,7 +3347,6 @@ msgctxt ""
msgid "F~rame"
msgstr "ჩ~არჩო"
-#. V44A
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3727,7 +3356,6 @@ msgctxt ""
msgid "F~orm"
msgstr "ფ~ორმა"
-#. i352
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3737,7 +3365,6 @@ msgctxt ""
msgid "Text"
msgstr "ტექსტი"
-#. JoDD
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3747,7 +3374,6 @@ msgctxt ""
msgid "Button"
msgstr "ღილაკი"
-#. +.[]
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3757,7 +3383,6 @@ msgctxt ""
msgid "Te~xt"
msgstr "ტე~ქსტი"
-#. TQ1?
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3767,7 +3392,6 @@ msgctxt ""
msgid "N~ame"
msgstr "ს~ახელი"
-#. xp?2
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3777,7 +3401,6 @@ msgctxt ""
msgid "Events"
msgstr "მოვლენები"
-#. pB%$
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3787,7 +3410,6 @@ msgctxt ""
msgid "Events"
msgstr "მოვლენები"
-#. IOK:
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3796,7 +3418,6 @@ msgctxt ""
msgid "Hyperlink"
msgstr "ბმული"
-#. P^3(
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3806,7 +3427,6 @@ msgctxt ""
msgid "Mail & news"
msgstr "ელფოსტა და ახალი ამბები"
-#. ?o1U
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3816,7 +3436,6 @@ msgctxt ""
msgid "~E-mail"
msgstr "ელფოსტა"
-#. 5#*Q
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3826,7 +3445,6 @@ msgctxt ""
msgid "~News"
msgstr "ახალი ამბები"
-#. PCm2
#: hyperdlg.src
#, fuzzy
msgctxt ""
@@ -3837,7 +3455,6 @@ msgctxt ""
msgid "Re~cipient"
msgstr "მიმ~ღები"
-#. V4A0
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3847,7 +3464,6 @@ msgctxt ""
msgid "~Subject"
msgstr "თ~ემა"
-#. Q=F`
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3857,7 +3473,6 @@ msgctxt ""
msgid "Data Sources..."
msgstr "მონაცემთა წყაროები..."
-#. A)ZY
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3867,7 +3482,6 @@ msgctxt ""
msgid "Data Sources..."
msgstr "მონაცემთა წყაროები..."
-#. h}Wq
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3877,7 +3491,6 @@ msgctxt ""
msgid "Further settings"
msgstr "მომდევნო პარამეტრები"
-#. _-w;
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3887,7 +3500,6 @@ msgctxt ""
msgid "F~rame"
msgstr "ჩ~არჩო"
-#. 9I9S
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3897,7 +3509,6 @@ msgctxt ""
msgid "F~orm"
msgstr "ფ~ორმა"
-#. !$_;
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3907,7 +3518,6 @@ msgctxt ""
msgid "Text"
msgstr "ტექსტი"
-#. 59P;
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3917,7 +3527,6 @@ msgctxt ""
msgid "Button"
msgstr "ღილაკი"
-#. ^@0{
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3927,7 +3536,6 @@ msgctxt ""
msgid "Te~xt"
msgstr "ტე~ქსტი"
-#. /dnx
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3937,7 +3545,6 @@ msgctxt ""
msgid "N~ame"
msgstr "ს~ახელი"
-#. p`hr
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3947,7 +3554,6 @@ msgctxt ""
msgid "Events"
msgstr "მოვლენები"
-#. aBLz
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3957,7 +3563,6 @@ msgctxt ""
msgid "Events"
msgstr "მოვლენები"
-#. ?Rac
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3966,7 +3571,6 @@ msgctxt ""
msgid "Hyperlink"
msgstr "ბმული"
-#. j6u`
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3976,7 +3580,6 @@ msgctxt ""
msgid "Document"
msgstr "დოკუმენტი"
-#. 1=Te
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3986,7 +3589,6 @@ msgctxt ""
msgid "~Path"
msgstr "~მდებარეობა"
-#. ~!|B
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3996,7 +3598,6 @@ msgctxt ""
msgid "Open File"
msgstr "ფაილის გახსნა"
-#. s-25
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4006,7 +3607,6 @@ msgctxt ""
msgid "Open File"
msgstr "ფაილის გახსნა"
-#. NgmW
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4016,7 +3616,6 @@ msgctxt ""
msgid "Target in document"
msgstr "სამიზნე დოკუმენტში"
-#. #MYW
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4026,7 +3625,6 @@ msgctxt ""
msgid "Targ~et"
msgstr "სამიზნე"
-#. A@6_
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4036,7 +3634,6 @@ msgctxt ""
msgid "URL"
msgstr "URL"
-#. ph[;
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4046,7 +3643,6 @@ msgctxt ""
msgid "Test text"
msgstr "ტესტური ტექსტი"
-#. $R`(
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4056,7 +3652,6 @@ msgctxt ""
msgid "Target in Document"
msgstr "სამიზნე დოკუმენტში"
-#. 0]co
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4066,7 +3661,6 @@ msgctxt ""
msgid "Target in Document"
msgstr "სამიზნე დოკუმენტში"
-#. FF^(
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4076,7 +3670,6 @@ msgctxt ""
msgid "Further settings"
msgstr "მომდევნო პარამეტრები"
-#. {awi
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4086,7 +3679,6 @@ msgctxt ""
msgid "F~rame"
msgstr "ჩ~არჩო"
-#. ZV\O
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4096,7 +3688,6 @@ msgctxt ""
msgid "F~orm"
msgstr "ფ~ორმა"
-#. [z4K
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4106,7 +3697,6 @@ msgctxt ""
msgid "Text"
msgstr "ტექსტი"
-#. ,U.W
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4116,7 +3706,6 @@ msgctxt ""
msgid "Button"
msgstr "ღილაკი"
-#. kvbO
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4126,7 +3715,6 @@ msgctxt ""
msgid "Te~xt"
msgstr "ტე~ქსტი"
-#. `|m|
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4136,7 +3724,6 @@ msgctxt ""
msgid "N~ame"
msgstr "ს~ახელი"
-#. D\6F
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4146,7 +3733,6 @@ msgctxt ""
msgid "Events"
msgstr "მოვლენები"
-#. td!k
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4156,7 +3742,6 @@ msgctxt ""
msgid "Events"
msgstr "მოვლენები"
-#. ]%Px
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4165,7 +3750,6 @@ msgctxt ""
msgid "Hyperlink"
msgstr "ბმული"
-#. *-*d
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4175,7 +3759,6 @@ msgctxt ""
msgid "New document"
msgstr "ახალი დოკუმენტი"
-#. Q9Pb
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4185,7 +3768,6 @@ msgctxt ""
msgid "Edit ~now"
msgstr "რედაქტირება ~ეხლა"
-#. 6:]p
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4195,7 +3777,6 @@ msgctxt ""
msgid "Edit ~later"
msgstr "რედაქტირება ~მოგვიანებით"
-#. 5m$V
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4205,7 +3786,6 @@ msgctxt ""
msgid "~File"
msgstr "~ფაილი"
-#. V0m0
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4215,7 +3795,6 @@ msgctxt ""
msgid "File ~type"
msgstr "ფაილის ~ტიპი"
-#. sNOa
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4225,7 +3804,6 @@ msgctxt ""
msgid "Select Path"
msgstr "ადგილმდებარეობის არჩევა"
-#. (:A,
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4235,7 +3813,6 @@ msgctxt ""
msgid "Select Path"
msgstr "ადგილმდებარეობის არჩევა"
-#. -]a3
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4245,7 +3822,6 @@ msgctxt ""
msgid "Further settings"
msgstr "მომდევნო პარამეტრები"
-#. fmXl
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4255,7 +3831,6 @@ msgctxt ""
msgid "F~rame"
msgstr "ჩ~არჩო"
-#. |86V
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4265,7 +3840,6 @@ msgctxt ""
msgid "F~orm"
msgstr "ფ~ორმა"
-#. mKrs
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4275,7 +3849,6 @@ msgctxt ""
msgid "Text"
msgstr "ტექსტი"
-#. IFOf
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4285,7 +3858,6 @@ msgctxt ""
msgid "Button"
msgstr "ღილაკი"
-#. r6BB
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4295,7 +3867,6 @@ msgctxt ""
msgid "Te~xt"
msgstr "ტე~ქსტი"
-#. ~Mq(
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4305,7 +3876,6 @@ msgctxt ""
msgid "N~ame"
msgstr "ს~ახელი"
-#. dZXk
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4315,7 +3885,6 @@ msgctxt ""
msgid "Events"
msgstr "მოვლენები"
-#. zK]z
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4325,7 +3894,6 @@ msgctxt ""
msgid "Events"
msgstr "მოვლენები"
-#. x;ZE
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4334,7 +3902,6 @@ msgctxt ""
msgid "Hyperlink"
msgstr "ბმული"
-#. 09mE
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4343,7 +3910,6 @@ msgctxt ""
msgid "Hyperlink"
msgstr "ბმული"
-#. ]-/)
#: hyperdlg.src
#, fuzzy
msgctxt ""
@@ -4363,7 +3929,6 @@ msgstr ""
"#-#-#-#-# framework.po (PACKAGE VERSION) #-#-#-#-#\n"
"გამოყენება"
-#. TQGN
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4372,7 +3937,6 @@ msgctxt ""
msgid "Close"
msgstr "დახურვა"
-#. N$)L
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4381,7 +3945,6 @@ msgctxt ""
msgid "Mouse over object"
msgstr "მაუსი ობიექტის ზევიდან"
-#. ~,38
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4390,7 +3953,6 @@ msgctxt ""
msgid "Trigger hyperlink"
msgstr "სასხლეტი ჰიპერბმული"
-#. !\1h
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4399,7 +3961,6 @@ msgctxt ""
msgid "Mouse leaves object"
msgstr "მაუსი ტოვებს ობიექტს"
-#. (2V!
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4408,7 +3969,6 @@ msgctxt ""
msgid "Please type in a valid file name."
msgstr "გთხოვთ აკრიფოთ ვარგისი სახელი."
-#. .mG@
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4417,7 +3977,6 @@ msgctxt ""
msgid "Internet"
msgstr "ინტერნეტი"
-#. mSyU
#: hyperdlg.src
#, fuzzy
msgctxt ""
@@ -4427,7 +3986,6 @@ msgctxt ""
msgid "This is where you create a hyperlink to a Web page or FTP server connection."
msgstr "აქ ქმნით ჰიპერბმულს ვებგვერდზე, FTP სერვერზე ან Telnet კავშირზე."
-#. A5}_
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4436,7 +3994,6 @@ msgctxt ""
msgid "Mail & News"
msgstr "ელფოსტა და ახალი ამბები"
-#. cHu(
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4445,7 +4002,6 @@ msgctxt ""
msgid "This is where you create a hyperlink to an e-mail address or newsgroup."
msgstr "აქ ქმნით ჰიპერბმულს ელფოსტის მისამართზე ან სადისკუსიო ჯგუფზე."
-#. KN!U
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4454,7 +4010,6 @@ msgctxt ""
msgid "Document"
msgstr "დოკუმენტი"
-#. eP`}
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4463,7 +4018,6 @@ msgctxt ""
msgid "This is where you create a hyperlink to an existing document or a target within a document."
msgstr ""
-#. kU1%
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4472,7 +4026,6 @@ msgctxt ""
msgid "New Document"
msgstr "ახალი დოკუმენტი"
-#. %r;g
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4481,7 +4034,6 @@ msgctxt ""
msgid "This is where you create a new document to which the new link points."
msgstr "აქ ქმნით ახალ დოკუმენტს, რომელზეც მიუთითებს ახალი ბმული."
-#. ?h/R
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4490,7 +4042,6 @@ msgctxt ""
msgid "Button"
msgstr "ღილაკი"
-#. mAnp
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4499,7 +4050,6 @@ msgctxt ""
msgid "Text"
msgstr "ტექსტი"
-#. X(k6
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
diff --git a/source/ka/cui/source/options.po b/source/ka/cui/source/options.po
index 9e98a42b19d..a4e104f2f09 100644
--- a/source/ka/cui/source/options.po
+++ b/source/ka/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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-06-16 14:28+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. A=\H
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "~Apply replacement table"
msgstr "ჩ~ანაცვლების ცხრილის მისადაგება"
-#. odH$
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "~Font"
msgstr "შრ~იფტი"
-#. \q-r
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Re~place with"
msgstr "ჩა~ნაცვლება"
-#. onWg
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Apply"
msgstr "მინიჭება"
-#. `z0Z
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "Delete"
msgstr "წაშლა"
-#. ]@Zo
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "Font settings for HTML, Basic and SQL sources"
msgstr ""
-#. ?yp8
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "Fonts"
msgstr "შრიფტები"
-#. A\x7
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "Non-proportional fonts only"
msgstr "არაპროპორციული შრიფტი"
-#. @jQo
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "~Size"
msgstr "~ზომა"
-#. pk(;
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -115,7 +105,6 @@ msgctxt ""
msgid "Always"
msgstr "ყოველთვის"
-#. j/M%
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -125,7 +114,6 @@ msgctxt ""
msgid "Screen only"
msgstr "მხოლოდ ჩვენება"
-#. \8--
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -135,7 +123,6 @@ msgctxt ""
msgid "Font"
msgstr "შრიფტი"
-#. NI?w
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -145,7 +132,6 @@ msgctxt ""
msgid "Replace with"
msgstr "ჩანაცვლება"
-#. F?eD
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -155,7 +141,6 @@ msgctxt ""
msgid "Automatic"
msgstr "ავტომატური"
-#. ~0FQ
#: internationaloptions.src
msgctxt ""
"internationaloptions.src\n"
@@ -165,7 +150,6 @@ msgctxt ""
msgid "Default text direction"
msgstr "ტექსტის ნაგულისხმევი მიმართულება"
-#. obv%
#: internationaloptions.src
msgctxt ""
"internationaloptions.src\n"
@@ -175,7 +159,6 @@ msgctxt ""
msgid "~Left-to-right"
msgstr "~მარცხნიდან-მარჯვნივ"
-#. 8hHh
#: internationaloptions.src
msgctxt ""
"internationaloptions.src\n"
@@ -185,7 +168,6 @@ msgctxt ""
msgid "~Right-to-left"
msgstr "მ~არჯვნიდან-მარცხნივ"
-#. M(q2
#: internationaloptions.src
msgctxt ""
"internationaloptions.src\n"
@@ -195,7 +177,6 @@ msgctxt ""
msgid "Sheet view"
msgstr "ფურცლის ხედი"
-#. l@hP
#: internationaloptions.src
msgctxt ""
"internationaloptions.src\n"
@@ -205,7 +186,6 @@ msgctxt ""
msgid "Right-~to-left"
msgstr "მ~არჯვნიდან-მარცხნივ"
-#. %djQ
#: internationaloptions.src
msgctxt ""
"internationaloptions.src\n"
@@ -215,7 +195,6 @@ msgctxt ""
msgid "~Current document only"
msgstr "~მხოლოდ მიმდინარე დოკუმენტი"
-#. f`v;
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -225,7 +204,6 @@ msgctxt ""
msgid "Color scheme"
msgstr "ფერთა სქემა"
-#. \BMw
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -235,7 +213,6 @@ msgctxt ""
msgid "Scheme"
msgstr "სქემა"
-#. Mn%,
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -245,7 +222,6 @@ msgctxt ""
msgid "Save..."
msgstr "შენახვა..."
-#. 6jmD
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -255,7 +231,6 @@ msgctxt ""
msgid "Delete"
msgstr "წაშლა"
-#. k+mp
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -265,7 +240,6 @@ msgctxt ""
msgid "Custom colors"
msgstr "მორგებული ფერები"
-#. HJdj
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -275,7 +249,6 @@ msgctxt ""
msgid "On"
msgstr "ჩართვა"
-#. `?5*
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -285,7 +258,6 @@ msgctxt ""
msgid "User interface elements"
msgstr "მომხმარებლის ინტერფეისის ელემენტები"
-#. K]2@
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -295,7 +267,6 @@ msgctxt ""
msgid "Color setting"
msgstr "ფერთა პარამეტრები"
-#. N-WH
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -305,7 +276,6 @@ msgctxt ""
msgid "Preview"
msgstr "გადახედვა"
-#. E!Sq
#: optcolor.src
#, fuzzy
msgctxt ""
@@ -328,7 +298,6 @@ msgstr ""
"#-#-#-#-# bibliography.po (PACKAGE VERSION) #-#-#-#-#\n"
"ზოგადი"
-#. nhy+
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -338,7 +307,6 @@ msgctxt ""
msgid "Document background"
msgstr "დოკუმენტის ფონი"
-#. *~K*
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -348,7 +316,6 @@ msgctxt ""
msgid "Text boundaries"
msgstr "ტექსტის საზღვრები"
-#. h]I.
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -358,7 +325,6 @@ msgctxt ""
msgid "Application background"
msgstr "პროგრამის ფონი"
-#. fDF;
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -368,7 +334,6 @@ msgctxt ""
msgid "Object boundaries"
msgstr "ობიექტის საზღვრები"
-#. lbY~
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -378,7 +343,6 @@ msgctxt ""
msgid "Table boundaries"
msgstr "ცხრილის საზღვრები"
-#. G[YZ
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -388,7 +352,6 @@ msgctxt ""
msgid "Font color"
msgstr "შრიფტის ფერი"
-#. QhTp
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -398,7 +361,6 @@ msgctxt ""
msgid "Unvisited links"
msgstr "მოუნახულებელი ბმულები"
-#. +U],
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -408,7 +370,6 @@ msgctxt ""
msgid "Visited links"
msgstr "მონახულებული ბმულები"
-#. )m1@
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -418,7 +379,6 @@ msgctxt ""
msgid "AutoSpellcheck"
msgstr "ავტომარლთწერა"
-#. h4Xu
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -428,7 +388,6 @@ msgctxt ""
msgid "Smart Tags"
msgstr ""
-#. hw3I
#: optcolor.src
#, fuzzy
msgctxt ""
@@ -439,7 +398,6 @@ msgctxt ""
msgid "Shadows"
msgstr "ჩრდილი"
-#. ]5`f
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -449,7 +407,6 @@ msgctxt ""
msgid "Text Document"
msgstr "ტექსტური დოკუმენტი"
-#. 4s.*
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -459,7 +416,6 @@ msgctxt ""
msgid "Grid"
msgstr "ბადე"
-#. g]9j
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -469,7 +425,6 @@ msgctxt ""
msgid "Field shadings"
msgstr "შტრიხველები"
-#. VAu1
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -479,7 +434,6 @@ msgctxt ""
msgid "Index and table shadings"
msgstr "ინდეხ და ცხრილის შტრიხები"
-#. ~;h`
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -489,7 +443,6 @@ msgctxt ""
msgid "Script indicator"
msgstr "სცრიპტის ინდიკატორი"
-#. HQ?J
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -499,7 +452,6 @@ msgctxt ""
msgid "Section boundaries"
msgstr "მონიშნულის საზღვრები"
-#. i1zC
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -509,7 +461,6 @@ msgctxt ""
msgid "Headers and Footer delimiter"
msgstr ""
-#. b:?Q
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -519,7 +470,6 @@ msgctxt ""
msgid "Page and column breaks"
msgstr "გვერდის და სვეტის დაცილება"
-#. 7a{;
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -529,7 +479,6 @@ msgctxt ""
msgid "Direct cursor"
msgstr "პირდაპირი კურსორი"
-#. *a81
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -539,7 +488,6 @@ msgctxt ""
msgid "HTML Document"
msgstr "HTML დოკუმენტი"
-#. O72Y
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -549,7 +497,6 @@ msgctxt ""
msgid "SGML syntax highlighting"
msgstr "SGML სინტაქსის გამოყოფა"
-#. P:Mr
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -559,7 +506,6 @@ msgctxt ""
msgid "Comment highlighting"
msgstr "ცომემტარების გამოყოფა"
-#. egNR
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -569,7 +515,6 @@ msgctxt ""
msgid "Keyword highlighting"
msgstr "საჯვანძო სიტყვის გამოყოფა"
-#. U^=j
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -579,7 +524,6 @@ msgctxt ""
msgid "Text"
msgstr "ტექსტი"
-#. #g.f
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -589,7 +533,6 @@ msgctxt ""
msgid "Spreadsheet"
msgstr "ელ.ცხრილი"
-#. 7fQQ
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -599,7 +542,6 @@ msgctxt ""
msgid "Grid lines"
msgstr "ბადის ხაზები"
-#. |N03
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -609,7 +551,6 @@ msgctxt ""
msgid "Page breaks"
msgstr "გვერდის დაცილება"
-#. Z/`c
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -619,7 +560,6 @@ msgctxt ""
msgid "Manual page breaks"
msgstr "გვერდის დაცილება ხელით"
-#. c3J6
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -629,7 +569,6 @@ msgctxt ""
msgid "Automatic page breaks"
msgstr "გვერდის ავტომატური დაცილება"
-#. b/b)
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -639,7 +578,6 @@ msgctxt ""
msgid "Detective"
msgstr "აღმომჩენი"
-#. dN3T
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -649,7 +587,6 @@ msgctxt ""
msgid "Detective error"
msgstr "შეცდომების აღმომჩენი"
-#. 3#:,
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -659,7 +596,6 @@ msgctxt ""
msgid "References"
msgstr "რეკომენდაცია"
-#. )+)m
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -669,7 +605,6 @@ msgctxt ""
msgid "Notes background"
msgstr "შენიშვნათა ფონი"
-#. xeXK
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -679,7 +614,6 @@ msgctxt ""
msgid "Drawing / Presentation"
msgstr "ხატვა / პრეზენტაცია"
-#. 1~UG
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -689,7 +623,6 @@ msgctxt ""
msgid "Grid"
msgstr "ბადე"
-#. eY-7
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -699,7 +632,6 @@ msgctxt ""
msgid "Basic Syntax Highlighting"
msgstr "Basic სინტაქსის გამოყოფა"
-#. E]Y%
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -709,7 +641,6 @@ msgctxt ""
msgid "Identifier"
msgstr "იდენტიფიკატორი"
-#. ppBS
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -719,7 +650,6 @@ msgctxt ""
msgid "Comment"
msgstr "კომენტარი"
-#. VRZD
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -729,7 +659,6 @@ msgctxt ""
msgid "Number"
msgstr "რიცხვი"
-#. TV`8
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -739,7 +668,6 @@ msgctxt ""
msgid "String"
msgstr "სტრიქონი"
-#. G3n@
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -749,7 +677,6 @@ msgctxt ""
msgid "Operator"
msgstr "ოპერატორი"
-#. tS83
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -759,7 +686,6 @@ msgctxt ""
msgid "Reserved expression"
msgstr "რეზერვირებული გამოსახულება"
-#. TKG7
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -769,7 +695,6 @@ msgctxt ""
msgid "Error"
msgstr "შეცდომა"
-#. /@+6
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -779,7 +704,6 @@ msgctxt ""
msgid "SQL Syntax Highlighting"
msgstr "SGML სინტაქსის გამოყოფა"
-#. rl/b
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -789,7 +713,6 @@ msgctxt ""
msgid "Identifier"
msgstr "იდენტიფიკატორი"
-#. OEOC
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -799,7 +722,6 @@ msgctxt ""
msgid "Number"
msgstr "რიცხვი"
-#. t/k;
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -809,7 +731,6 @@ msgctxt ""
msgid "String"
msgstr "სტრიქონი"
-#. (pRG
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -819,7 +740,6 @@ msgctxt ""
msgid "Operator"
msgstr "ოპერატორი"
-#. O6.s
#: optcolor.src
#, fuzzy
msgctxt ""
@@ -830,7 +750,6 @@ msgctxt ""
msgid "Keyword"
msgstr "~საკვანძო სიტყვები"
-#. [?JL
#: optcolor.src
#, fuzzy
msgctxt ""
@@ -841,7 +760,6 @@ msgctxt ""
msgid "Parameter"
msgstr "პარამეტრები"
-#. /Y[\
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -851,7 +769,6 @@ msgctxt ""
msgid "Comment"
msgstr "კომენტარი"
-#. vu[c
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -861,7 +778,6 @@ msgctxt ""
msgid "Colorsettings of the Extensions"
msgstr ""
-#. \ig?
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -871,7 +787,6 @@ msgctxt ""
msgid "Spell check highlighting"
msgstr ""
-#. F@`=
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -881,7 +796,6 @@ msgctxt ""
msgid "Grammar check highlighting"
msgstr ""
-#. /7J?
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -890,7 +804,6 @@ msgctxt ""
msgid "Do you really want to delete the color scheme?"
msgstr "ნამდვილად გნებავთ ფერთა სქემის წაშლა?"
-#. A*.;
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -899,7 +812,6 @@ msgctxt ""
msgid "Color Scheme Deletion"
msgstr "ფერთა სქემის წაშლა"
-#. xvT}
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -908,7 +820,6 @@ msgctxt ""
msgid "Save scheme"
msgstr "სქემის შენახვა"
-#. [5mX
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -917,7 +828,6 @@ msgctxt ""
msgid "Name of color scheme"
msgstr "ფერთა სქემის სახელი"
-#. B}jR
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -927,7 +837,6 @@ msgctxt ""
msgid "Miscellaneous options"
msgstr "სხვადასხვა საშუალებები"
-#. =:Q$
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -937,7 +846,6 @@ msgctxt ""
msgid "Support ~assistive technology tools (program restart required)"
msgstr "დამხმარე ~ინსტრუმენტების ტექნოლოგიის მხარდაჭერა (მოთხოვს პროგრამის გადატვირთვას)"
-#. WcI~
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -947,7 +855,6 @@ msgctxt ""
msgid "Use te~xt selection cursor in read-only text documents"
msgstr "გამოიყენეთ ~ტექსტის მოსანიშნი კურსური მხოლოდ კითხვად ტექსტუს დოკომენტებში"
-#. C-dh
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -957,7 +864,6 @@ msgctxt ""
msgid "Allow animated ~graphics"
msgstr "~გრაფიკული ანიმაციის დაშვება"
-#. kweM
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -967,7 +873,6 @@ msgctxt ""
msgid "Allow animated ~text"
msgstr "ანიმირებული ~ტექსტის დაშვება"
-#. =|Lk
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -977,7 +882,6 @@ msgctxt ""
msgid "~Help tips disappear after "
msgstr "~დახმარების კარნახის გაქრობა "
-#. 4,NJ
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -987,7 +891,6 @@ msgctxt ""
msgid "seconds"
msgstr "წამები"
-#. GaI6
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -997,7 +900,6 @@ msgctxt ""
msgid "Options for high contrast appearance"
msgstr "ვარიანტები მაღალი კონტრასტულობის გამოსაჩენათ"
-#. q`[|
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -1007,7 +909,6 @@ msgctxt ""
msgid "Automatically ~detect high contrast mode of operating system"
msgstr "ოპერაციული სისტემის კონტრასტულობის რეჟიმის ავტომატური ~დეტექტირება"
-#. gpk%
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -1017,7 +918,6 @@ msgctxt ""
msgid "Use automatic font ~color for screen display"
msgstr "ავტომატური ფონტის ~ფერის გამოყენება ეკრანზე საჩვენებლად"
-#. .Ij2
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -1027,7 +927,6 @@ msgctxt ""
msgid "~Use system colors for page previews"
msgstr "სისტემური ფერების გამოყენება ~გვერდების დათვალიერებისთვის"
-#. 2x9@
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1037,7 +936,6 @@ msgctxt ""
msgid "Connection pool"
msgstr "კავშირის პული"
-#. 82!s
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1047,7 +945,6 @@ msgctxt ""
msgid "Connection pooling enabled"
msgstr "დაშვებული კავშირის პული"
-#. ZGsP
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1057,7 +954,6 @@ msgctxt ""
msgid "Drivers known in %PRODUCTNAME"
msgstr "%PRODUCTNAME-ში ცნობილი დისკწამყვანები"
-#. g/*C
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1067,7 +963,6 @@ msgctxt ""
msgid "Current driver:"
msgstr "მიმდინარე დისკწამყვანი:"
-#. ?/pU
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1077,7 +972,6 @@ msgctxt ""
msgid "Enable pooling for this driver"
msgstr "ამ დისკწამყვანისათვის პული ნებადართულია"
-#. DGgy
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1087,7 +981,6 @@ msgctxt ""
msgid "Timeout (seconds)"
msgstr "ტაიმაუტი (წამები)"
-#. R]t8
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1097,7 +990,6 @@ msgctxt ""
msgid "Driver name"
msgstr "დისკწამყვანის სახელი"
-#. UZ7P
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1107,7 +999,6 @@ msgctxt ""
msgid "Pool"
msgstr "პული"
-#. sJ!}
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1117,7 +1008,6 @@ msgctxt ""
msgid "Timeout"
msgstr "ტაიმაუტი"
-#. E8nj
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1127,7 +1017,6 @@ msgctxt ""
msgid "Yes"
msgstr "დიახ"
-#. Mjva
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1137,7 +1026,6 @@ msgctxt ""
msgid "No"
msgstr "არა"
-#. X6z@
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1147,7 +1035,6 @@ msgctxt ""
msgid "Options"
msgstr "საშუალებები"
-#. h{?i
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1157,7 +1044,6 @@ msgctxt ""
msgid "Language"
msgstr "ენა"
-#. 13lr
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1167,7 +1053,6 @@ msgctxt ""
msgid "Move Up"
msgstr "ზევით აწევა"
-#. Kk;M
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1177,7 +1062,6 @@ msgctxt ""
msgid "Move Down"
msgstr "ქვევით ჩამოწევა"
-#. A[h6
#: optlingu.src
#, fuzzy
msgctxt ""
@@ -1188,7 +1072,6 @@ msgctxt ""
msgid "~Back"
msgstr "~უკან"
-#. \4Fz
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1198,7 +1081,6 @@ msgctxt ""
msgid "~Get more dictionaries online..."
msgstr ""
-#. UK\l
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1208,7 +1090,6 @@ msgctxt ""
msgid "Close"
msgstr "დახურვა"
-#. =s*M
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1218,7 +1099,6 @@ msgctxt ""
msgid "Spelling"
msgstr "მარლთწერა"
-#. vR0*
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1228,7 +1108,6 @@ msgctxt ""
msgid "Hyphenation"
msgstr "ჰიპერნაცია"
-#. l^r:
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1238,7 +1117,6 @@ msgctxt ""
msgid "Thesaurus"
msgstr "თეზაურუსი"
-#. oYol
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1248,7 +1126,6 @@ msgctxt ""
msgid "Grammar"
msgstr ""
-#. ld~b
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1257,7 +1134,6 @@ msgctxt ""
msgid "Edit Modules"
msgstr "მოდულების რედაქტირება"
-#. =*6X
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1267,7 +1143,6 @@ msgctxt ""
msgid "Characters before break"
msgstr "სიმბოლოები დაცილებამდე"
-#. l^`~
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1277,7 +1152,6 @@ msgctxt ""
msgid "Characters after break"
msgstr "სიმბოლოები დაცილების შემდეგ"
-#. %2Y3
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1287,7 +1161,6 @@ msgctxt ""
msgid "Minimal word length"
msgstr "სიტყვის მინიმალური ზომა"
-#. plc8
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1296,7 +1169,6 @@ msgctxt ""
msgid "Hyphenation"
msgstr "ჰიპერნაცია"
-#. g)%k
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1306,7 +1178,6 @@ msgctxt ""
msgid "Writing aids"
msgstr "წერის დახმარება"
-#. ^2GQ
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1316,7 +1187,6 @@ msgctxt ""
msgid "Available language modules"
msgstr "ხელმისაწვდომი ენების მოდულები"
-#. ;*(T
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1326,7 +1196,6 @@ msgctxt ""
msgid "~Edit..."
msgstr "~რედაქტირება..."
-#. 25qH
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1336,7 +1205,6 @@ msgctxt ""
msgid "User-defined dictionaries"
msgstr "მომხმარებლის მიერ განსაზღვრული ლექსიკონები"
-#. cF:O
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1346,7 +1214,6 @@ msgctxt ""
msgid "~New..."
msgstr "~ახალი..."
-#. 5gA+
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1356,7 +1223,6 @@ msgctxt ""
msgid "Ed~it..."
msgstr "რ~ედაქტირება..."
-#. RImA
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1366,7 +1232,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~წაშლა"
-#. D?(.
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1376,7 +1241,6 @@ msgctxt ""
msgid "~Options"
msgstr "~საშუალებები"
-#. ~f/{
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1386,7 +1250,6 @@ msgctxt ""
msgid "Edi~t..."
msgstr "რ~ედაქტირება..."
-#. \0)i
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1396,7 +1259,6 @@ msgctxt ""
msgid "~Get more dictionaries online..."
msgstr ""
-#. qh4p
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1406,7 +1268,6 @@ msgctxt ""
msgid "Check uppercase words"
msgstr "ზედა რეგისტრის სიტყვების შემოწმება"
-#. XFy]
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1416,17 +1277,6 @@ msgctxt ""
msgid "Check words with numbers "
msgstr "სიტყვების და რიცხვებთან შემოწმება"
-#. b#n5
-#: optlingu.src
-msgctxt ""
-"optlingu.src\n"
-"RID_SFXPAGE_LINGU\n"
-"STR_CAPITALIZATION\n"
-"string.text"
-msgid "Check capitalization"
-msgstr "შეამოწმეთ სიტყვათა გარდაქმნის ქვედა რეგისტრი"
-
-#. w+UH
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1436,7 +1286,6 @@ msgctxt ""
msgid "Check special regions"
msgstr "სპეცილაური რეგიონების შემოწმება"
-#. J@b?
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1446,7 +1295,6 @@ msgctxt ""
msgid "Check spelling as you type"
msgstr "შეამოწმეთ თქვენი აკრეფილის მართლწერა"
-#. !bY}
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1456,7 +1304,6 @@ msgctxt ""
msgid "Check grammar as you type"
msgstr ""
-#. vT^Y
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1466,7 +1313,6 @@ msgctxt ""
msgid "Minimal number of characters for hyphenation: "
msgstr "მინიმალური სიმბოლოების რიცხვი გადატანისთვის:"
-#. Jjl;
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1476,7 +1322,6 @@ msgctxt ""
msgid "Characters before line break: "
msgstr "სიმბოლოთა დაცილებები ხაზთან"
-#. $__I
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1486,7 +1331,6 @@ msgctxt ""
msgid "Characters after line break: "
msgstr "სიმბოლოები ხაზის დაცილების შემდეგ:"
-#. c_U/
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1496,7 +1340,6 @@ msgctxt ""
msgid "Hyphenate without inquiry"
msgstr "გადახედვის გარეშე გადატანა"
-#. iAE1
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1506,7 +1349,6 @@ msgctxt ""
msgid "Hyphenate special regions"
msgstr "სპეციალური რეგიონების გადადატანა"
-#. m7s6
#: optlingu.src
#, fuzzy
msgctxt ""
@@ -1517,7 +1359,6 @@ msgctxt ""
msgid "Edit Available language modules"
msgstr "ხელმისაწვდომი ენების მოდულები"
-#. 7Q/l
#: optlingu.src
#, fuzzy
msgctxt ""
@@ -1532,7 +1373,6 @@ msgstr ""
"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
"მომხმარებლის მიერ განსაზღვრული ლექსიკონები"
-#. 7,P;
#: optlingu.src
#, fuzzy
msgctxt ""
@@ -1543,7 +1383,6 @@ msgctxt ""
msgid "Edit Options"
msgstr " პარამეტრები"
-#. g|q^
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1552,7 +1391,6 @@ msgctxt ""
msgid "Options"
msgstr "საშუალებები"
-#. jI9]
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1561,7 +1399,6 @@ msgctxt ""
msgid "Do you want to delete the dictionary?"
msgstr "თქვენ ნამდვილად გნებავთ ლექსიკონის წაშლა?"
-#. OP:W
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1570,7 +1407,6 @@ msgctxt ""
msgid "Save"
msgstr "შენახვა"
-#. (Gqx
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1580,7 +1416,6 @@ msgctxt ""
msgid "Load"
msgstr "ჩატვირთვა"
-#. oSZ,
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1590,7 +1425,6 @@ msgctxt ""
msgid "Load user-specific settings with the document"
msgstr "მომხმრებლის სპეციფიკური პარამეტრების ჩატვირთვა დოკუმენტთან ერთად "
-#. `@VC
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1600,7 +1434,6 @@ msgctxt ""
msgid "Load printer settings with the document"
msgstr "მომხმრებლის სპეციფიკური პარამეტრების ჩატვირთვა დოკუმენტთან ერთად "
-#. T^mK
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1610,7 +1443,6 @@ msgctxt ""
msgid "Save"
msgstr "შენახვა"
-#. t%iL
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1620,7 +1452,6 @@ msgctxt ""
msgid "~Edit document properties before saving"
msgstr "~დოკუმენტის შენახვამდე თვისებების რედაქტირება "
-#. -[uP
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1630,7 +1461,6 @@ msgctxt ""
msgid "Al~ways create backup copy"
msgstr "ყ~ოველთვის შეიქმნას სარეზერვო ასლი"
-#. 0j[z
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1640,7 +1470,6 @@ msgctxt ""
msgid "Save ~AutoRecovery information every"
msgstr "ავტოამღდგენი ინფორმაციის შ~ენახვა ყოველ "
-#. ;W1!
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1650,7 +1479,6 @@ msgctxt ""
msgid "Minutes"
msgstr "წუთები"
-#. nUa=
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1660,7 +1488,6 @@ msgctxt ""
msgid "Save URLs relative to file system"
msgstr ""
-#. V)$!
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1670,7 +1497,6 @@ msgctxt ""
msgid "Save URLs relative to internet"
msgstr ""
-#. CmX8
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1680,7 +1506,6 @@ msgctxt ""
msgid "Default file format and ODF settings"
msgstr ""
-#. %U6k
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1690,7 +1515,6 @@ msgctxt ""
msgid "ODF format version"
msgstr ""
-#. Lr4b
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1700,7 +1524,6 @@ msgctxt ""
msgid "1.0/1.1"
msgstr ""
-#. t.nq
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1710,7 +1533,6 @@ msgctxt ""
msgid "1.2"
msgstr ""
-#. p7hQ
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1720,7 +1542,6 @@ msgctxt ""
msgid "1.2 Extended (compat mode)"
msgstr ""
-#. ?(b+
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1730,7 +1551,6 @@ msgctxt ""
msgid "1.2 Extended (recommended)"
msgstr ""
-#. q7Qe
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1740,7 +1560,6 @@ msgctxt ""
msgid "Size optimization for ODF format"
msgstr ""
-#. S:3M
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1750,7 +1569,6 @@ msgctxt ""
msgid "Warn when not saving in ODF or default format"
msgstr ""
-#. ;w%I
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1760,7 +1578,6 @@ msgctxt ""
msgid "D~ocument type"
msgstr "დ~ოკუმენტის ტიპი"
-#. ~PfO
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1770,7 +1587,6 @@ msgctxt ""
msgid "Always sa~ve as"
msgstr "ყოველთვის შე~ნახვა როგორც"
-#. TQqH
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1780,7 +1596,6 @@ msgctxt ""
msgid "Text document"
msgstr "ტექსტური დოკუმენტი"
-#. F*A7
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1790,7 +1605,6 @@ msgctxt ""
msgid "HTML document"
msgstr "HTML დოკუმენტი"
-#. 43]|
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1800,7 +1614,6 @@ msgctxt ""
msgid "Master document"
msgstr "მთავარი დოკუმენტი"
-#. *6i)
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1810,7 +1623,6 @@ msgctxt ""
msgid "Spreadsheet"
msgstr "ელცხრილი"
-#. WUb1
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1820,7 +1632,6 @@ msgctxt ""
msgid "Presentation"
msgstr "პრეზენტაცია"
-#. CdO1
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1830,7 +1641,6 @@ msgctxt ""
msgid "Drawing"
msgstr "ხატვა"
-#. %x|?
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1841,7 +1651,6 @@ msgid "Formula"
msgstr "ფორმულა"
#. EN-US, the term 'extended' must not be translated.
-#. l^u*
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1851,7 +1660,6 @@ msgctxt ""
msgid "Not using ODF 1.2 Extended may cause information to be lost."
msgstr ""
-#. Ls=.
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1861,7 +1669,6 @@ msgctxt ""
msgid "Using \"%1\" as default file format may cause information loss.\n"
msgstr "\"%1\" -ის გამოყენებამ როგორც ნაგულისხმევ ფაილის ფორმატად , შეიძლება გამოიწვიოს ინფორმაციის დაკარგვა.\n"
-#. zgR5
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1871,7 +1678,6 @@ msgctxt ""
msgid "Size ~1"
msgstr "ზომა ~1"
-#. PO2R
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1881,7 +1687,6 @@ msgctxt ""
msgid "Size ~2"
msgstr "ზომა ~2"
-#. 3g$2
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1891,7 +1696,6 @@ msgctxt ""
msgid "Size ~3"
msgstr "ზომა ~3"
-#. 0r4N
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1901,7 +1705,6 @@ msgctxt ""
msgid "Size ~4"
msgstr "ზომა ~4"
-#. MJC6
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1911,7 +1714,6 @@ msgctxt ""
msgid "Size ~5"
msgstr "ზომა ~5"
-#. mreQ
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1921,7 +1723,6 @@ msgctxt ""
msgid "Size ~6"
msgstr "ზომა ~6"
-#. VcR9
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1931,7 +1732,6 @@ msgctxt ""
msgid "Size ~7"
msgstr "ზომა ~7"
-#. C%pS
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1941,7 +1741,6 @@ msgctxt ""
msgid "Font sizes"
msgstr "შრიფტის ზომა"
-#. |[RB
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1951,7 +1750,6 @@ msgctxt ""
msgid "Import"
msgstr "იმპორტი"
-#. bNGp
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1961,7 +1759,6 @@ msgctxt ""
msgid "~Use '%ENGLISHUSLOCALE' locale for numbers"
msgstr "~'%ENGLISHUSLOCALE'-ის ლოკალის გამოყენება ციფრებისათვის"
-#. TxmA
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1971,7 +1768,6 @@ msgctxt ""
msgid "~Import unknown HTML tags as fields"
msgstr "~უცნობი HTML ტეგების იმპორტი ველების სახით"
-#. MPj\
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1981,7 +1777,6 @@ msgctxt ""
msgid "Ignore ~font settings"
msgstr "შრიფტის პარამეტრების ~უარყოფა"
-#. GM(I
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1991,7 +1786,6 @@ msgctxt ""
msgid "Export"
msgstr "ექსპორტი"
-#. ABpI
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -2000,7 +1794,6 @@ msgctxt ""
msgid "Display ~warning"
msgstr "~გაფრთხილების ჩვენება"
-#. ^yzu
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -2009,7 +1802,6 @@ msgctxt ""
msgid "~Print layout"
msgstr "~განთავსების ბეჭდვა"
-#. bmJi
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -2018,7 +1810,6 @@ msgctxt ""
msgid "~Copy local graphics to Internet"
msgstr "~ნახატების კოპირება ინტერნეტში"
-#. *6ta
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -2027,7 +1818,6 @@ msgctxt ""
msgid "Character set"
msgstr "კოდირება"
-#. QsDh
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2037,7 +1827,6 @@ msgctxt ""
msgid "~Company"
msgstr "~კომპანია"
-#. 5~=-
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2047,7 +1836,6 @@ msgctxt ""
msgid "First/Last ~name/Initials"
msgstr "სახელი/~გვარი /ინიციალები"
-#. G#cq
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2057,7 +1845,6 @@ msgctxt ""
msgid "Last Name/First name/Father's name/Initials"
msgstr ""
-#. xakm
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2067,7 +1854,6 @@ msgctxt ""
msgid "Last/First ~name/Initials"
msgstr "სახელი/~გვარი /ინიციალები"
-#. /2XD
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2077,7 +1863,6 @@ msgctxt ""
msgid "~Street"
msgstr "~ქუჩა"
-#. D+rO
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2087,7 +1872,6 @@ msgctxt ""
msgid "Street/Apartment number"
msgstr "ქუჩა/ბინის ნუმერი"
-#. O0Ki
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2097,7 +1881,6 @@ msgctxt ""
msgid "Zip/City"
msgstr "საფოსტო ინდექსი/ქალაქი"
-#. Uao{
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2107,7 +1890,6 @@ msgctxt ""
msgid "City/State/Zip"
msgstr "ქალაქი/შტატი/საფოსტო ინდექსი"
-#. oyb1
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2117,7 +1899,6 @@ msgctxt ""
msgid "Country/Region"
msgstr "ქვეყანა/რეგიონი"
-#. ?D$O
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2127,7 +1908,6 @@ msgctxt ""
msgid "~Title/Position"
msgstr "~სათაური/პოზიცია"
-#. [ED-
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2137,7 +1917,6 @@ msgctxt ""
msgid "Tel. (Home/Work)"
msgstr "ტელ. (სახლის/სამსახურის)"
-#. o/5*
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2147,7 +1926,6 @@ msgctxt ""
msgid "Fa~x / E-mail"
msgstr "ფა~ქსი/ელფოსტა"
-#. 6dG1
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2157,7 +1935,6 @@ msgctxt ""
msgid "Address "
msgstr "მისამართი"
-#. :M3h
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2167,7 +1944,6 @@ msgctxt ""
msgid "Use data for document properties"
msgstr "გამოიყენეთ მონაცემები დოკუმენტთა თვისებებისთვის"
-#. =jqL
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2176,7 +1952,6 @@ msgctxt ""
msgid "User Data"
msgstr "მომხმარებლის მონაცემები"
-#. +fXe
#: readonlyimage.src
msgctxt ""
"readonlyimage.src\n"
@@ -2185,7 +1960,6 @@ msgctxt ""
msgid "This setting is protected by the Administrator"
msgstr "ეს პარამეტრი დაცულია ადმინისტრატორის მიერ"
-#. Eev*
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2195,7 +1969,6 @@ msgctxt ""
msgid "Security warnings"
msgstr ""
-#. 8A_[
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2205,7 +1978,6 @@ msgctxt ""
msgid "Warn if document contains recorded changes, versions, hidden information or notes:"
msgstr ""
-#. B4O_
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2215,7 +1987,6 @@ msgctxt ""
msgid "When saving or sending"
msgstr ""
-#. shvw
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2225,7 +1996,6 @@ msgctxt ""
msgid "When signing"
msgstr ""
-#. |U;4
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2235,7 +2005,6 @@ msgctxt ""
msgid "When printing"
msgstr ""
-#. ccZm
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2245,7 +2014,6 @@ msgctxt ""
msgid "When creating PDF files"
msgstr ""
-#. kd=Z
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2255,7 +2023,6 @@ msgctxt ""
msgid "Security options"
msgstr ""
-#. GF6W
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2265,7 +2032,6 @@ msgctxt ""
msgid "Remove personal information on saving"
msgstr ""
-#. fJp-
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2275,7 +2041,6 @@ msgctxt ""
msgid "Recommend password protection on saving"
msgstr ""
-#. ;MC6
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2285,7 +2050,6 @@ msgctxt ""
msgid "Ctrl-click required to follow hyperlinks"
msgstr ""
-#. K2#U
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2294,7 +2058,6 @@ msgctxt ""
msgid "Security options and warnings"
msgstr ""
-#. Cp@J
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2304,7 +2067,6 @@ msgctxt ""
msgid "Chart colors"
msgstr ""
-#. ;Rls
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2314,7 +2076,6 @@ msgctxt ""
msgid "Color table"
msgstr "ფერთა ცხრილი"
-#. 0\bZ
#: optchart.src
#, fuzzy
msgctxt ""
@@ -2325,7 +2086,6 @@ msgctxt ""
msgid "~Add"
msgstr "~დამატება"
-#. }Jrr
#: optchart.src
#, fuzzy
msgctxt ""
@@ -2348,7 +2108,6 @@ msgstr ""
"#-#-#-#-# gui.po (PACKAGE VERSION) #-#-#-#-#\n"
"~ამოღება"
-#. VVnT
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2358,7 +2117,6 @@ msgctxt ""
msgid "~Default"
msgstr "~ნაგულისხმები"
-#. YU9]
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2367,7 +2125,6 @@ msgctxt ""
msgid "Default Colors"
msgstr "ნაგულისხმები ფერები"
-#. mPoM
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2376,7 +2133,6 @@ msgctxt ""
msgid "Data Series $(ROW)"
msgstr ""
-#. bo,w
#: optchart.src
#, fuzzy
msgctxt ""
@@ -2386,7 +2142,6 @@ msgctxt ""
msgid "Do you really want to delete the chart color?"
msgstr "ნამდვილად გნებავთ ფერთა სქემის წაშლა?"
-#. UU#8
#: optchart.src
#, fuzzy
msgctxt ""
@@ -2396,7 +2151,6 @@ msgctxt ""
msgid "Chart Color Deletion"
msgstr "ფერთა სქემის წაშლა"
-#. |FlO
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2406,7 +2160,6 @@ msgctxt ""
msgid "Registered name"
msgstr "დარეგისტრირებული სახელი"
-#. }O[-
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2416,7 +2169,6 @@ msgctxt ""
msgid "Database file"
msgstr "მონაცემთა ბაზის ფაილი"
-#. ?),S
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2426,7 +2178,6 @@ msgctxt ""
msgid "~New..."
msgstr "~ახალი..."
-#. wuoU
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2436,7 +2187,6 @@ msgctxt ""
msgid "~Edit..."
msgstr "რ~ედაქტირება..."
-#. `{zb
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2446,7 +2196,6 @@ msgctxt ""
msgid "~Delete"
msgstr "წ~აშლა"
-#. 0)Fh
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2456,7 +2205,6 @@ msgctxt ""
msgid "Registered databases"
msgstr "რეგისტრირებული მონაცემთა ბაზები"
-#. =ae0
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2465,7 +2213,6 @@ msgctxt ""
msgid "Registered databases"
msgstr "რეგისტრირებული მონაცემთა ბაზები"
-#. hZiT
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2475,7 +2222,6 @@ msgctxt ""
msgid "Treat as equal"
msgstr "დაამუშავეთ როგორც ტოლი"
-#. KmWi
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2485,7 +2231,6 @@ msgctxt ""
msgid "~uppercase/lowercase"
msgstr "~ზედა რეგისტრი/ქვედა რეგისტრი"
-#. +88#
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2495,7 +2240,6 @@ msgctxt ""
msgid "~full-width/half-width forms"
msgstr "~მთელი "
-#. Yct?
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2505,7 +2249,6 @@ msgctxt ""
msgid "~hiragana/katakana"
msgstr "~hiragana/katakana"
-#. wZLN
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2515,7 +2258,6 @@ msgctxt ""
msgid "~contractions (yo-on, sokuon)"
msgstr "~შემცირება (yo-on, sokuon)"
-#. 89|:
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2525,7 +2267,6 @@ msgctxt ""
msgid "~minus/dash/cho-on"
msgstr "~მინუსი/"
-#. :$;B
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2535,7 +2276,6 @@ msgctxt ""
msgid "'re~peat character' marks"
msgstr "'re~peat character' სიმბოლოები"
-#. Ll#h
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2545,7 +2285,6 @@ msgctxt ""
msgid "~variant-form kanji (itaiji)"
msgstr "~კანჯი (ითაიჯი) ვარიანტი"
-#. RLD6
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2555,7 +2294,6 @@ msgctxt ""
msgid "~old Kana forms"
msgstr "ძვ~ელი Kana ფორმები"
-#. ?w}z
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2565,7 +2303,6 @@ msgctxt ""
msgid "~di/zi, du/zu"
msgstr "~di/zi, du/zu"
-#. 3X4L
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2575,7 +2312,6 @@ msgctxt ""
msgid "~ba/va, ha/fa"
msgstr "~ba/va, ha/fa"
-#. 3HC6
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2585,7 +2321,6 @@ msgctxt ""
msgid "~tsi/thi/chi, dhi/zi"
msgstr "~tsi/thi/chi, dhi/zi"
-#. sU9=
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2595,7 +2330,6 @@ msgctxt ""
msgid "h~yu/fyu, byu/vyu"
msgstr "h~yu/fyu, byu/vyu"
-#. rauS
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2605,7 +2339,6 @@ msgctxt ""
msgid "~se/she, ze/je"
msgstr "~se/she, ze/je"
-#. N7LY
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2615,7 +2348,6 @@ msgctxt ""
msgid "~ia/iya (piano/piyano)"
msgstr "~ia/iya (piano/piyano)"
-#. ,odo
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2625,7 +2357,6 @@ msgctxt ""
msgid "~ki/ku (tekisuto/tekusuto)"
msgstr "~ki/ku (tekisuto/tekusuto)"
-#. Sz::
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2635,7 +2366,6 @@ msgctxt ""
msgid "Prolon~ged vowels (ka-/kaa)"
msgstr "გრძელ~ი თანხმოვნები (ka-/kaa)"
-#. *kAs
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2645,7 +2375,6 @@ msgctxt ""
msgid "Ignore"
msgstr "იგნორი"
-#. Q([|
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2655,7 +2384,6 @@ msgctxt ""
msgid "Pu~nctuation characters"
msgstr "პუ~ნქტუაციური სიმბოლოები"
-#. j8v1
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2665,7 +2393,6 @@ msgctxt ""
msgid "~Whitespace characters"
msgstr "~თეთრსივრციანი სიმბოლოები"
-#. +FWd
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2675,7 +2402,6 @@ msgctxt ""
msgid "Midd~le dots"
msgstr "საშუა~ლო წერტილები"
-#. \.Gn
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2684,7 +2410,6 @@ msgctxt ""
msgid "Searching in Japanese"
msgstr "ზიება იაპონურში"
-#. FaD!
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2694,7 +2419,6 @@ msgctxt ""
msgid "Online Update Options"
msgstr "ონლაინ განახლების პარამეტრები"
-#. I9Np
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2704,7 +2428,6 @@ msgctxt ""
msgid "~Check for updates automatically"
msgstr "განახლებების ავტომატური შ~ემოწმება"
-#. 3?@D
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2714,7 +2437,6 @@ msgctxt ""
msgid "Every Da~y"
msgstr "ყოველ დღ~ე"
-#. ul)D
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2724,7 +2446,6 @@ msgctxt ""
msgid "Every ~Week"
msgstr "ყოველ ~კვირა"
-#. #rsS
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2734,7 +2455,6 @@ msgctxt ""
msgid "Every ~Month"
msgstr "ყოველ თ~ვე"
-#. doG(
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2744,7 +2464,6 @@ msgctxt ""
msgid "Last checked: %DATE%, %TIME%"
msgstr ""
-#. Oqg^
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2754,7 +2473,6 @@ msgctxt ""
msgid "Check ~now"
msgstr "შეამოწმე ~ეხლა"
-#. 3a_)
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2764,7 +2482,6 @@ msgctxt ""
msgid "~Download updates automatically"
msgstr "განახლებების ავტომატური ~გადმოწერა"
-#. RhY~
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2774,7 +2491,6 @@ msgctxt ""
msgid "Download destination:"
msgstr "გადმოწერილი ფაილების ადგილმდებარეობა"
-#. EF+I
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2784,7 +2500,6 @@ msgctxt ""
msgid "Ch~ange..."
msgstr "შ~ეცვლა..."
-#. xH/+
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2794,7 +2509,6 @@ msgctxt ""
msgid "Last checked: Not yet"
msgstr ""
-#. (/bd
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2803,7 +2517,6 @@ msgctxt ""
msgid "OnlineUpdate"
msgstr "ონლაინ განახლება"
-#. ,M0q
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -2814,7 +2527,6 @@ msgctxt ""
msgid "~Revert"
msgstr "~უკუსვლა"
-#. _SYW
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2824,7 +2536,6 @@ msgctxt ""
msgid "The selected module could not be loaded."
msgstr "მონიშნული მოდული ვერ ჩაიტვირთა."
-#. ukL;
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -2856,7 +2567,6 @@ msgstr ""
"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
"პარამეტრები"
-#. !vl4
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2866,7 +2576,6 @@ msgctxt ""
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#. BlF]
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2876,7 +2585,6 @@ msgctxt ""
msgid "User Data"
msgstr "მომხმარებლის მონაცემები"
-#. ,::m
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2886,7 +2594,6 @@ msgctxt ""
msgid "General"
msgstr "ზოგადი"
-#. hFl~
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2896,7 +2603,6 @@ msgctxt ""
msgid "Memory"
msgstr "მეხსირება"
-#. gG;B
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2906,7 +2612,6 @@ msgctxt ""
msgid "View"
msgstr "ხედვა"
-#. {Joa
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -2927,7 +2632,6 @@ msgstr ""
"#-#-#-#-# contnr.po (PACKAGE VERSION) #-#-#-#-#\n"
"ბეჭდვა"
-#. /;d:
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2937,7 +2641,6 @@ msgctxt ""
msgid "Paths"
msgstr "გეზი"
-#. `PF{
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2947,7 +2650,6 @@ msgctxt ""
msgid "Colors"
msgstr "ფერები"
-#. ]X~[
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2957,7 +2659,6 @@ msgctxt ""
msgid "Fonts"
msgstr "შრიფტები"
-#. 0@56
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2967,7 +2668,6 @@ msgctxt ""
msgid "Security"
msgstr "უსაფრთხოება"
-#. HSPe
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2977,7 +2677,6 @@ msgctxt ""
msgid "Appearance"
msgstr "ხილვადობა"
-#. Ek#u
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2987,7 +2686,6 @@ msgctxt ""
msgid "Accessibility"
msgstr "ხელმისაწვდომობა"
-#. YkY/
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2997,7 +2695,6 @@ msgctxt ""
msgid "Advanced"
msgstr ""
-#. rwW`
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3007,7 +2704,6 @@ msgctxt ""
msgid "Online Update"
msgstr "ონლაინ განახლება"
-#. B]l]
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3017,7 +2713,6 @@ msgctxt ""
msgid "Language Settings"
msgstr "ენის პარამეტრები"
-#. lOH[
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3027,7 +2722,6 @@ msgctxt ""
msgid "Languages"
msgstr "ენები"
-#. F=\y
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3037,7 +2731,6 @@ msgctxt ""
msgid "Writing Aids"
msgstr "წერის დამხმარე საშუალებები"
-#. (*pv
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3047,7 +2740,6 @@ msgctxt ""
msgid "Searching in Japanese"
msgstr "ძებნა იაპონურად"
-#. Hr[3
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3057,7 +2749,6 @@ msgctxt ""
msgid "Asian Layout"
msgstr "აზიური განლაგება"
-#. 0@QW
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3067,7 +2758,6 @@ msgctxt ""
msgid "Complex Text Layout"
msgstr "ტექსტის კომპლექსური განლაგება"
-#. 6j_?
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3077,7 +2767,6 @@ msgctxt ""
msgid "Internet"
msgstr "ინტერნეტი"
-#. MRTU
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3087,7 +2776,6 @@ msgctxt ""
msgid "Proxy"
msgstr "პროქსი"
-#. HxUr
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3097,7 +2785,6 @@ msgctxt ""
msgid "E-mail"
msgstr "ელ.ფოსტა"
-#. :|lO
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3107,7 +2794,6 @@ msgctxt ""
msgid "Browser Plug-in"
msgstr ""
-#. jB7_
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3117,7 +2803,6 @@ msgctxt ""
msgid "%PRODUCTNAME Writer"
msgstr "%PRODUCTNAME Writer-ი"
-#. Ez,w
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3127,7 +2812,6 @@ msgctxt ""
msgid "General"
msgstr "ზოგადი"
-#. cj#h
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3137,7 +2821,6 @@ msgctxt ""
msgid "View"
msgstr "ხედვა"
-#. z4hb
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3147,7 +2830,6 @@ msgctxt ""
msgid "Formatting Aids"
msgstr "ფორმატირების დამხმარე საშუალებები"
-#. kX$3
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3157,7 +2839,6 @@ msgctxt ""
msgid "Grid"
msgstr "ბადე"
-#. l.2B
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3167,7 +2848,6 @@ msgctxt ""
msgid "Basic Fonts (Western)"
msgstr ""
-#. _UXE
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3177,7 +2857,6 @@ msgctxt ""
msgid "Basic Fonts (Asian)"
msgstr ""
-#. YX:%
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -3188,7 +2867,6 @@ msgctxt ""
msgid "Basic Fonts (CTL)"
msgstr "ძირითადი შრიფტები (%1)"
-#. mP=E
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -3209,7 +2887,6 @@ msgstr ""
"#-#-#-#-# contnr.po (PACKAGE VERSION) #-#-#-#-#\n"
"ბეჭდვა"
-#. H2Y#
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3219,7 +2896,6 @@ msgctxt ""
msgid "Table"
msgstr "ცხრილი"
-#. 3SB_
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -3230,7 +2906,6 @@ msgctxt ""
msgid "Changes"
msgstr "ცვლილებები"
-#. $lFu
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3240,7 +2915,6 @@ msgctxt ""
msgid "Comparison"
msgstr ""
-#. aB\D
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -3251,7 +2925,6 @@ msgctxt ""
msgid "Compatibility"
msgstr "თავსებადობა"
-#. `=]l
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -3262,7 +2935,6 @@ msgctxt ""
msgid "AutoCaption"
msgstr "ავტო წარწერა..."
-#. `J:Q
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3272,7 +2944,6 @@ msgctxt ""
msgid "Mail Merge E-mail"
msgstr "წერილთა გამაერთიანებელი ელფოსტის მისამართი"
-#. 9dn(
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3282,7 +2953,6 @@ msgctxt ""
msgid "%PRODUCTNAME Writer/Web"
msgstr "%PRODUCTNAME Writer/Web"
-#. GnRw
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3292,7 +2962,6 @@ msgctxt ""
msgid "View"
msgstr "ხედვა"
-#. Nv%(
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3302,7 +2971,6 @@ msgctxt ""
msgid "Formatting Aids"
msgstr "ფორმატირების დამხმარე საშუალებები"
-#. XWQ[
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3312,7 +2980,6 @@ msgctxt ""
msgid "Grid"
msgstr "ბადე"
-#. :B|!
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3322,7 +2989,6 @@ msgctxt ""
msgid "Print"
msgstr "ბეჭდვა"
-#. Romr
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3332,7 +2998,6 @@ msgctxt ""
msgid "Table"
msgstr "ცხრილი"
-#. [K)m
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3342,7 +3007,6 @@ msgctxt ""
msgid "Background"
msgstr "ფონი"
-#. +iBl
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3352,7 +3016,6 @@ msgctxt ""
msgid "%PRODUCTNAME Math"
msgstr "%PRODUCTNAME Math-ი"
-#. +uDg
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3362,7 +3025,6 @@ msgctxt ""
msgid "Settings"
msgstr "პარამეტრები"
-#. 5K-k
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3372,7 +3034,6 @@ msgctxt ""
msgid "%PRODUCTNAME Calc"
msgstr "%PRODUCTNAME Calc-ი"
-#. H9xU
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3382,7 +3043,6 @@ msgctxt ""
msgid "General"
msgstr "ზოგადი"
-#. NU%N
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -3393,7 +3053,6 @@ msgctxt ""
msgid "Defaults"
msgstr "სტანდარტული"
-#. N|0.
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -3404,7 +3063,6 @@ msgctxt ""
msgid "View"
msgstr "ხედვა"
-#. kG\1
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3414,7 +3072,6 @@ msgctxt ""
msgid "International"
msgstr "საერთაშორისო"
-#. \$l3
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3424,7 +3081,6 @@ msgctxt ""
msgid "Calculate"
msgstr "გამოთვლა"
-#. Sk`5
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -3435,7 +3091,6 @@ msgctxt ""
msgid "Formula"
msgstr "სიის სორტირება"
-#. 3SG+
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3445,7 +3100,6 @@ msgctxt ""
msgid "Sort Lists"
msgstr "სიის სორტირება"
-#. W6fZ
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -3456,7 +3110,6 @@ msgctxt ""
msgid "Changes"
msgstr "ცვლილებები"
-#. T9C=
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -3467,7 +3120,6 @@ msgctxt ""
msgid "Compatibility"
msgstr "თავსებადობა"
-#. _W9Z
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -3478,7 +3130,6 @@ msgctxt ""
msgid "Grid"
msgstr "ბადე"
-#. ^xQ(
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -3499,7 +3150,6 @@ msgstr ""
"#-#-#-#-# contnr.po (PACKAGE VERSION) #-#-#-#-#\n"
"ბეჭდვა"
-#. j\gR
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3509,7 +3159,6 @@ msgctxt ""
msgid "%PRODUCTNAME Impress"
msgstr "%PRODUCTNAME Impress-ი"
-#. /sAH
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3519,7 +3168,6 @@ msgctxt ""
msgid "General"
msgstr "ზოგადი"
-#. nUS2
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3529,7 +3177,6 @@ msgctxt ""
msgid "View"
msgstr "ხედვა"
-#. ,J0#
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3539,7 +3186,6 @@ msgctxt ""
msgid "Grid"
msgstr "ბადე"
-#. !q@W
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3549,7 +3195,6 @@ msgctxt ""
msgid "Print"
msgstr "ბეჭდვა"
-#. GPOG
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3559,7 +3204,6 @@ msgctxt ""
msgid "%PRODUCTNAME Draw"
msgstr "%PRODUCTNAME Draw-ი"
-#. cV2r
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3569,7 +3213,6 @@ msgctxt ""
msgid "General"
msgstr "ზოგადი"
-#. xmuL
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3579,7 +3222,6 @@ msgctxt ""
msgid "View"
msgstr "ხედვა"
-#. m!qY
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3589,7 +3231,6 @@ msgctxt ""
msgid "Grid"
msgstr "ბადე"
-#. mP5D
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3599,7 +3240,6 @@ msgctxt ""
msgid "Print"
msgstr "ბეჭდვა"
-#. 9)sB
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3609,7 +3249,6 @@ msgctxt ""
msgid "Charts"
msgstr "გრაფიკები"
-#. `r:w
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3619,7 +3258,6 @@ msgctxt ""
msgid "Default Colors"
msgstr "ნაგულისხმები ფერები"
-#. cKkg
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3629,7 +3267,6 @@ msgctxt ""
msgid "Load/Save"
msgstr "ჩატვირთვა/დამახსოვრება"
-#. m?g:
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3639,7 +3276,6 @@ msgctxt ""
msgid "General"
msgstr "ზოგადი"
-#. 4+LR
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3649,7 +3285,6 @@ msgctxt ""
msgid "VBA Properties"
msgstr "VBA თვისებები"
-#. WbyR
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3659,7 +3294,6 @@ msgctxt ""
msgid "Microsoft Office"
msgstr "Microsoft Office"
-#. OoXN
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3669,7 +3303,6 @@ msgctxt ""
msgid "HTML Compatibility"
msgstr "HTML თავსებადობა"
-#. #={;
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3679,7 +3312,6 @@ msgctxt ""
msgid "%PRODUCTNAME Base"
msgstr "%PRODUCTNAME Base-ი"
-#. [;2j
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3689,7 +3321,6 @@ msgctxt ""
msgid "Connections"
msgstr "კავშირები"
-#. xR[v
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3699,7 +3330,6 @@ msgctxt ""
msgid "Databases"
msgstr "მონაცემთა ბაზები"
-#. 5!e[
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3708,7 +3338,6 @@ msgctxt ""
msgid "Site certificates"
msgstr "საიტის სერტიფიკატი"
-#. lwlv
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3717,7 +3346,6 @@ msgctxt ""
msgid "Personal certificates"
msgstr "პერსონალური სერტიფიკატები"
-#. _aZX
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3727,7 +3355,6 @@ msgctxt ""
msgid "Kerning"
msgstr "კერინგი"
-#. eVTz
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3737,7 +3364,6 @@ msgctxt ""
msgid "~Western characters only"
msgstr "~მხოლოდ დასავლური სიმბოლოები"
-#. 2eI_
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3747,7 +3373,6 @@ msgctxt ""
msgid "Western ~text and Asian punctuation"
msgstr "დასავლური ~ტექსტი და აზიური პუნქტუაცია"
-#. ApQn
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3757,7 +3382,6 @@ msgctxt ""
msgid "Character spacing"
msgstr "სიმბოლოთა ინტერვალები "
-#. Yn]P
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3767,7 +3391,6 @@ msgctxt ""
msgid "~No compression"
msgstr "~არანაირი შეკუმშვა"
-#. /.mE
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3777,7 +3400,6 @@ msgctxt ""
msgid "~Compress punctuation only"
msgstr "მხოლოდ პუნქტუაციის ~შეკუმშვა"
-#. `Al!
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3787,7 +3409,6 @@ msgctxt ""
msgid "Compress ~punctuation and Japanese Kana"
msgstr "იაპონური Kana-ს და ~პუნქტუაციის შეკუმშვა"
-#. 4@Z{
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3797,7 +3418,6 @@ msgctxt ""
msgid "First and last characters"
msgstr "პირველი და ბოლო სიმბოლოები"
-#. Ur]C
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3807,7 +3427,6 @@ msgctxt ""
msgid "~Language"
msgstr "~ენა"
-#. fqOF
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3817,7 +3436,6 @@ msgctxt ""
msgid "~Default"
msgstr "~ნაგულისხმები"
-#. gT-)
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3827,7 +3445,6 @@ msgctxt ""
msgid "Not at start of line:"
msgstr " ხაზის დასაწყისში არა:"
-#. aB5-
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3837,7 +3454,6 @@ msgctxt ""
msgid "Not at end of line:"
msgstr "ხაზის ბოლოში არა:"
-#. I08U
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3847,7 +3463,6 @@ msgctxt ""
msgid "Without user-defined line break symbols"
msgstr "განსაზღვრული მომხმარებლის გარეშე ხაზები არღვევენ სიმბოლოებს"
-#. ^Bw~
#: optasian.src
#, fuzzy
msgctxt ""
@@ -3857,7 +3472,6 @@ msgctxt ""
msgid "Proxy"
msgstr "Proxy"
-#. ]I@@
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3867,7 +3481,6 @@ msgctxt ""
msgid "Java options"
msgstr "Java-ს პარამეტრები"
-#. ^KHF
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3877,7 +3490,6 @@ msgctxt ""
msgid "~Use a Java runtime environment"
msgstr "~Java-ს გაშვების რეჟიმის გარემოს გამოყენება"
-#. PmPu
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3887,7 +3499,6 @@ msgctxt ""
msgid "~Java runtime environments (JRE) already installed:"
msgstr "~Java-ს გაშვების რეჟიმის გარემო (JRE) უკვე დაყენებულია:"
-#. J5Cr
#: optjava.src
#, fuzzy
msgctxt ""
@@ -3898,7 +3509,6 @@ msgctxt ""
msgid "~Add..."
msgstr "~დამატება..."
-#. u_S0
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3908,7 +3518,6 @@ msgctxt ""
msgid "~Parameters..."
msgstr "~პარამეტრები..."
-#. Oo.1
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3918,7 +3527,6 @@ msgctxt ""
msgid "~Class Path..."
msgstr "~კლასის მდებარეობა..."
-#. V?5n
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3928,7 +3536,6 @@ msgctxt ""
msgid "Optional (unstable) options"
msgstr ""
-#. dPu2
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3938,7 +3545,6 @@ msgctxt ""
msgid "Enable experimental features"
msgstr ""
-#. AiLT
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3948,7 +3554,6 @@ msgctxt ""
msgid "Enable macro recording"
msgstr ""
-#. u7\^
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3958,7 +3563,6 @@ msgctxt ""
msgid "Location: "
msgstr "მდებარეობა:"
-#. AM%f
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3968,7 +3572,6 @@ msgctxt ""
msgid "with accessibility support"
msgstr "ხელმისაწვდომობის მხარდაჭერით"
-#. oER6
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3978,7 +3581,6 @@ msgctxt ""
msgid "Select a Java Runtime Environment"
msgstr "ამოირჩიეთ Java-ს გაშვების რეჟიმის გარემო"
-#. ?gY7
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3988,7 +3590,6 @@ msgctxt ""
msgid "Vendor"
msgstr "მწარმოებელი"
-#. WX4e
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3998,7 +3599,6 @@ msgctxt ""
msgid "Version"
msgstr "ვერსია"
-#. Cp`H
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4008,7 +3608,6 @@ msgctxt ""
msgid "Features"
msgstr "შესაძლებლობები"
-#. -z1]
#: optjava.src
#, fuzzy
msgctxt ""
@@ -4018,7 +3617,6 @@ msgctxt ""
msgid "Java"
msgstr "ჯავა"
-#. MD=`
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4028,7 +3626,6 @@ msgctxt ""
msgid "Java start ~parameter"
msgstr "Java-ს გაშვების პარამეტრი"
-#. mfGf
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4038,7 +3635,6 @@ msgctxt ""
msgid "~Assign"
msgstr "~მინიჭება"
-#. 80/}
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4048,7 +3644,6 @@ msgctxt ""
msgid "Assig~ned start parameters"
msgstr "მინიჭებული გაშვების პარამეტრები"
-#. Cp@,
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4058,7 +3653,6 @@ msgctxt ""
msgid "For example: -Dmyprop=c:\\program files\\java"
msgstr "მაგალითად: -Dmyprop=c:\\program files\\java"
-#. K?)3
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4068,7 +3662,6 @@ msgctxt ""
msgid "~Remove"
msgstr "~მოშორება"
-#. kVa7
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4077,7 +3670,6 @@ msgctxt ""
msgid "Java Start Parameters"
msgstr "Java-ს გაშვების პარამეტრები"
-#. gB:p
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4087,7 +3679,6 @@ msgctxt ""
msgid "A~ssigned folders and archives"
msgstr "მიმაგრებული საქაღალდეების და არქივები"
-#. \Hm@
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4097,7 +3688,6 @@ msgctxt ""
msgid "~Add Archive..."
msgstr "~არქივის დამატება..."
-#. `*Vb
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4107,7 +3697,6 @@ msgctxt ""
msgid "Add ~Folder"
msgstr "~საქაღალდის დამატება..."
-#. =A:e
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4117,7 +3706,6 @@ msgctxt ""
msgid "~Remove"
msgstr "~მოშორება"
-#. ]WhV
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4126,7 +3714,6 @@ msgctxt ""
msgid "Class Path"
msgstr "კლასის მდებარეობა"
-#. ;DoI
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4139,7 +3726,6 @@ msgstr ""
"საქაღალდე, რომელიც აირჩიეთ, არ შეიცავს Java-ს გაშვების რეჟიმის გარემოს.\n"
"გთხოვთ, აირჩიოთ სხვა საქაღალდე."
-#. m+7R
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4152,20 +3738,6 @@ msgstr ""
"Java-ს გაშვების რეჟიმის გარემო, რომელიც თქვენ აირჩიეთ არ არის მოთხოვნილი ვერსიის.\n"
"გთხოვთ, აირჩიოთ სხვა საქაღალდე."
-#. WZ/f
-#: optjava.src
-msgctxt ""
-"optjava.src\n"
-"RID_SVX_MSGBOX_JAVA_RESTART\n"
-"warningbox.text"
-msgid ""
-"For the selected Java runtime environment to work properly, %PRODUCTNAME must be restarted.\n"
-"Please restart %PRODUCTNAME now."
-msgstr ""
-"არჩეული Java-ს გაშვების რეჟიმის გარემოს გამართული მუშაობისათვის, %PRODUCTNAME-ი უნდა ჩაიტვირთოს ხელახლა.\n"
-"გთხოვთ ხელახლა ჩატვირთოთ %PRODUCTNAME-ი."
-
-#. I?^k
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4176,7 +3748,6 @@ msgid ""
"Please restart %PRODUCTNAME now."
msgstr ""
-#. !j-G
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4186,7 +3757,6 @@ msgctxt ""
msgid "~Database file"
msgstr "მონაცემთა ბაზის ~ფაილი"
-#. =w2.
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4196,7 +3766,6 @@ msgctxt ""
msgid "~Browse..."
msgstr "~დათვალიერება..."
-#. X\SR
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4206,7 +3775,6 @@ msgctxt ""
msgid "Registered ~name"
msgstr "რეგისტრირებული სა~ხელი"
-#. iuUJ
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4216,7 +3784,6 @@ msgctxt ""
msgid "Edit Database Link"
msgstr "მონაცემთა ბაზის რედაქტირების ბმული"
-#. }?4O
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4226,7 +3793,6 @@ msgctxt ""
msgid "Create Database Link"
msgstr "შექმენით მონაცემთა ბაზის ბმული"
-#. ^+uQ
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4241,7 +3807,6 @@ msgstr ""
"$file$\n"
"არ არის გახსნილი."
-#. ^gHK
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4253,7 +3818,6 @@ msgid ""
"does not exist in the local file system."
msgstr ""
-#. q3PM
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4266,7 +3830,6 @@ msgstr ""
"სახელი '$file$' უკვე დაკავებულია სხვა მონაცემთა ბაზის მიერ.\n"
"გთხოვთ აირჩიოთ სხვა სახელი."
-#. a%b8
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4275,7 +3838,6 @@ msgctxt ""
msgid "Do you want to delete the entry?"
msgstr "გნებავთ ამ შენატანის წაშლა?"
-#. p~{X
#: optpath.src
#, fuzzy
msgctxt ""
@@ -4286,7 +3848,6 @@ msgctxt ""
msgid "Type"
msgstr "ტიპი"
-#. uq/K
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4296,7 +3857,6 @@ msgctxt ""
msgid "Path"
msgstr "გზა"
-#. fg$t
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4306,7 +3866,6 @@ msgctxt ""
msgid "~Edit..."
msgstr "~რედაქტირება..."
-#. d=*h
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4316,7 +3875,6 @@ msgctxt ""
msgid "~Default"
msgstr "~ნაგულისხმები"
-#. Z}*7
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4326,7 +3884,6 @@ msgctxt ""
msgid "Paths used by %PRODUCTNAME"
msgstr "გზები გამოიყენება %PRODUCTNAME"
-#. Nwsb
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4336,7 +3893,6 @@ msgctxt ""
msgid "Edit Paths: %1"
msgstr "გზების რედაქტირება: %1"
-#. 0P6,
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4345,7 +3901,6 @@ msgctxt ""
msgid "Paths"
msgstr "გეზები"
-#. TOsx
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4358,7 +3913,6 @@ msgstr ""
"კონფიგურაცია და წერილების კატალოგები უნდა იყვეს განსაზღვრული როგორც ცალკეული დირექტორიები.\n"
"გთხოვთ ამოირჩიოთ ახალი გზა."
-#. a%Fs
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4367,7 +3921,6 @@ msgctxt ""
msgid "Configuration"
msgstr "კონფიგურაცია"
-#. M4Rz
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4376,7 +3929,6 @@ msgctxt ""
msgid "My Documents"
msgstr "ჩემი დოკუმენტები"
-#. J!sZ
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4385,7 +3937,6 @@ msgctxt ""
msgid "Graphics"
msgstr "გრაპიკები"
-#. 6isK
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4394,7 +3945,6 @@ msgctxt ""
msgid "Icons"
msgstr "ხატულები"
-#. f@It
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4403,7 +3953,6 @@ msgctxt ""
msgid "Palettes"
msgstr "პალიტრები"
-#. Q4Fe
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4412,7 +3961,6 @@ msgctxt ""
msgid "Backups"
msgstr "სამარქაფო ასლები"
-#. uXYX
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4421,7 +3969,6 @@ msgctxt ""
msgid "Modules"
msgstr "მოდულები"
-#. y9c)
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4430,7 +3977,6 @@ msgctxt ""
msgid "Templates"
msgstr "შაბლონები"
-#. $%aO
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4439,7 +3985,6 @@ msgctxt ""
msgid "AutoText"
msgstr "ავტოტექსტი"
-#. pa_k
#: optpath.src
#, fuzzy
msgctxt ""
@@ -4449,7 +3994,6 @@ msgctxt ""
msgid "Dictionaries"
msgstr "ლექსიკონები"
-#. P:~D
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4458,7 +4002,6 @@ msgctxt ""
msgid "Help"
msgstr "დახმარება"
-#. Q@)T
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4467,7 +4010,6 @@ msgctxt ""
msgid "Gallery"
msgstr "გალერეა"
-#. S.x/
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4476,7 +4018,6 @@ msgctxt ""
msgid "Message Storage"
msgstr "შეტყობინების მოცულობა"
-#. !YM[
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4485,7 +4026,6 @@ msgctxt ""
msgid "Temporary files"
msgstr "დროებითი ფაილები"
-#. \Tm)
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4494,7 +4034,6 @@ msgctxt ""
msgid "Plug-ins"
msgstr "დანამატები"
-#. rnxz
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4503,7 +4042,6 @@ msgctxt ""
msgid "Folder Bookmarks"
msgstr "დირექტორიის სანიშნები"
-#. n,@:
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4512,7 +4050,6 @@ msgctxt ""
msgid "Filters"
msgstr "ფილტრები"
-#. 7NA@
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4521,7 +4058,6 @@ msgctxt ""
msgid "Add-ins"
msgstr "ჩანართები"
-#. 9)3c
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4530,7 +4066,6 @@ msgctxt ""
msgid "User Configuration"
msgstr "მომხმარებლის კონფიგურაცია"
-#. ,hkG
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4539,7 +4074,6 @@ msgctxt ""
msgid "User-defined dictionaries"
msgstr "მომხმარებლის მიერ განსაზღვრული ლექსიკონები"
-#. e%Dj
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4548,7 +4082,6 @@ msgctxt ""
msgid "AutoCorrect"
msgstr "ავტოკორექცია"
-#. H[\{
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4557,7 +4090,6 @@ msgctxt ""
msgid "Writing aids"
msgstr "წერის დახმარება"
-#. 2k_@
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4567,7 +4099,6 @@ msgctxt ""
msgid "Sequence checking"
msgstr "მიმდევრობითი შემოწმება"
-#. @1PN
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4577,7 +4108,6 @@ msgctxt ""
msgid "Use se~quence checking"
msgstr "მი~მდევრობითი "
-#. V_P(
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4587,7 +4117,6 @@ msgctxt ""
msgid "Restricted"
msgstr "აკრძალული"
-#. jr*4
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4597,7 +4126,6 @@ msgctxt ""
msgid "~Type and replace"
msgstr "~აკრეფვა და შეცვლა"
-#. |9e(
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4607,7 +4135,6 @@ msgctxt ""
msgid "Cursor control"
msgstr "კურსორის მართვა"
-#. 21je
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4617,7 +4144,6 @@ msgctxt ""
msgid "Movement"
msgstr "მოძრაობა"
-#. jVib
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4627,7 +4153,6 @@ msgctxt ""
msgid "Lo~gical"
msgstr "ლო~გიკური"
-#. ,_Hy
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4637,7 +4162,6 @@ msgctxt ""
msgid "~Visual"
msgstr "~ვიზუალური"
-#. 9n4m
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4647,7 +4171,6 @@ msgctxt ""
msgid "General options"
msgstr "მთავარი საშუალებები"
-#. S)~V
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4657,7 +4180,6 @@ msgctxt ""
msgid "~Numerals"
msgstr "~ციფრები"
-#. Mx/@
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4667,7 +4189,6 @@ msgctxt ""
msgid "Arabic"
msgstr "არაბული"
-#. JQn\
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4677,7 +4198,6 @@ msgctxt ""
msgid "Hindi"
msgstr "ინდური"
-#. _:Y2
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4687,7 +4207,6 @@ msgctxt ""
msgid "System"
msgstr "სისტემა"
-#. 4!])
#: optctl.src
#, fuzzy
msgctxt ""
@@ -4698,7 +4217,6 @@ msgctxt ""
msgid "Context"
msgstr "კონტე~ქსტი"
-#. 0LeK
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4707,7 +4225,6 @@ msgctxt ""
msgid "Complex Text Layout"
msgstr "რთული ტექსტური განლაგება"
-#. `JwJ
#: optdict.src
#, fuzzy
msgctxt ""
@@ -4718,7 +4235,6 @@ msgctxt ""
msgid "~Name"
msgstr "~სახელი"
-#. a,F2
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4728,7 +4244,6 @@ msgctxt ""
msgid "~Language"
msgstr "~ენა"
-#. xMXC
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4738,7 +4253,6 @@ msgctxt ""
msgid "~Exception (-)"
msgstr "~გამონაკლისი (-)"
-#. 5%0s
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4748,7 +4262,6 @@ msgctxt ""
msgid "Dictionary"
msgstr "ლექსიკონი"
-#. mOZ)
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4757,7 +4270,6 @@ msgctxt ""
msgid "New Dictionary"
msgstr "ახალი ლექსიკონი"
-#. Kvmc
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4767,7 +4279,6 @@ msgctxt ""
msgid "~Book"
msgstr "~წიგნი"
-#. Y*4t
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4777,7 +4288,6 @@ msgctxt ""
msgid "~Language"
msgstr "~ენა"
-#. $cYD
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4787,7 +4297,6 @@ msgctxt ""
msgid "~Word"
msgstr "~სიტყვა"
-#. Iq}[
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4797,7 +4306,6 @@ msgctxt ""
msgid "Replace ~By:"
msgstr "ჩანაცვლებ~ა:"
-#. Z0=6
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4807,7 +4315,6 @@ msgctxt ""
msgid "~New"
msgstr "~ახალი"
-#. 9!S6
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4817,7 +4324,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~წაშლა"
-#. l;`f
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4827,7 +4333,6 @@ msgctxt ""
msgid "~Replace"
msgstr "~ჩანაცვლება"
-#. U`I*
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4837,7 +4342,6 @@ msgctxt ""
msgid "~Close"
msgstr "~დახურვა"
-#. =jF^
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4846,7 +4350,6 @@ msgctxt ""
msgid "Edit Custom Dictionary"
msgstr "მორგებული ლექსიკონის რედაქტირება"
-#. O/91
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4859,7 +4362,6 @@ msgstr ""
"მიტითებული სახელი უკვე არსებობს.\n"
"გთხოვთ შეიყვანოთ ახალი სახელი."
-#. !TG=
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4868,7 +4370,6 @@ msgctxt ""
msgid "Do you want to change the '%1' dictionary language?"
msgstr "გნებავთ '%1' ლექსიკონის ენის შეცვლა?"
-#. gcMt
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4878,7 +4379,6 @@ msgctxt ""
msgid "Microsoft Word 97/2000/XP"
msgstr ""
-#. qe?;
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4888,7 +4388,6 @@ msgctxt ""
msgid "Load Basic ~code"
msgstr ""
-#. KSy7
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4898,7 +4397,6 @@ msgctxt ""
msgid "E~xecutable code"
msgstr ""
-#. \!]w
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4908,7 +4406,6 @@ msgctxt ""
msgid "Save ~original Basic code"
msgstr ""
-#. (_Nm
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4918,7 +4415,6 @@ msgctxt ""
msgid "Microsoft Excel 97/2000/XP"
msgstr ""
-#. r5%B
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4928,7 +4424,6 @@ msgctxt ""
msgid "Lo~ad Basic code"
msgstr ""
-#. :vUd
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4938,7 +4433,6 @@ msgctxt ""
msgid "E~xecutable code"
msgstr ""
-#. t^0I
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4948,7 +4442,6 @@ msgctxt ""
msgid "Sa~ve original Basic code"
msgstr ""
-#. az!8
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4958,7 +4451,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 97/2000/XP"
msgstr ""
-#. NV{`
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4968,7 +4460,6 @@ msgctxt ""
msgid "Load Ba~sic code"
msgstr ""
-#. AJeg
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4978,7 +4469,6 @@ msgctxt ""
msgid "Sav~e original Basic code"
msgstr ""
-#. 41rG
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4988,7 +4478,6 @@ msgctxt ""
msgid "[L]"
msgstr "[L]"
-#. {)7]
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4998,7 +4487,6 @@ msgctxt ""
msgid "[S]"
msgstr "[S]"
-#. XIRT
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -5008,7 +4496,6 @@ msgctxt ""
msgid "[L]: Load and convert the object"
msgstr "[L]: ობიექტის ჩატვირთვა და კონვერტაცია"
-#. thlE
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -5018,7 +4505,6 @@ msgctxt ""
msgid "[S]: Convert and save the object"
msgstr "[S]: ობიექტის კონვერტაცია და შენახვა"
-#. =lGU
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -5028,7 +4514,6 @@ msgctxt ""
msgid "MathType to %PRODUCTNAME Math or reverse"
msgstr ""
-#. %DHi
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -5038,7 +4523,6 @@ msgctxt ""
msgid "WinWord to %PRODUCTNAME Writer or reverse"
msgstr ""
-#. c@,c
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -5048,7 +4532,6 @@ msgctxt ""
msgid "Excel to %PRODUCTNAME Calc or reverse"
msgstr ""
-#. Sx,`
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -5058,7 +4541,6 @@ msgctxt ""
msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
msgstr ""
-#. p2,2
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5068,7 +4550,6 @@ msgctxt ""
msgid "Undo"
msgstr "უკუსვლა"
-#. Ro8]
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5078,7 +4559,6 @@ msgctxt ""
msgid "Number of steps"
msgstr "ბიჯების რაოდენობა"
-#. SN_f
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5088,7 +4568,6 @@ msgctxt ""
msgid "Graphics cache"
msgstr "გრაფიკული კეში"
-#. $Q^P
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5098,7 +4577,6 @@ msgctxt ""
msgid "Use for %PRODUCTNAME"
msgstr "%PRODUCTNAME-ის გამოყენება"
-#. PEO$
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5108,7 +4586,6 @@ msgctxt ""
msgid "MB"
msgstr "მბ"
-#. x^j\
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5118,7 +4595,6 @@ msgctxt ""
msgid "Memory per object"
msgstr "მეხსიერება ობიექტისათვის"
-#. 3pMy
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5128,7 +4604,6 @@ msgctxt ""
msgid "MB"
msgstr "მბ"
-#. asb/
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5138,7 +4613,6 @@ msgctxt ""
msgid "Remove from memory after"
msgstr "მეხსირებიდან ამოღება"
-#. n3R0
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5148,7 +4622,6 @@ msgctxt ""
msgid "hh:mm"
msgstr "hh:mm"
-#. }ZKK
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5158,7 +4631,6 @@ msgctxt ""
msgid "Cache for inserted objects"
msgstr "ჩასმული ობიექტების კეში"
-#. F3y+
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5168,7 +4640,6 @@ msgctxt ""
msgid "Number of objects"
msgstr "ობიექტების რაოდენობა"
-#. Ikf/
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5178,7 +4649,6 @@ msgctxt ""
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter-ი"
-#. dx^3
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5188,7 +4658,6 @@ msgctxt ""
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME-ის ჩატვირთვა სისტემის გაშვების მომენტში"
-#. 6K=X
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5198,7 +4667,6 @@ msgctxt ""
msgid "Enable systray Quickstarter"
msgstr ""
-#. `!9w
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5208,7 +4676,6 @@ msgctxt ""
msgid "Browser Plug-in"
msgstr ""
-#. $;4R
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5218,7 +4685,6 @@ msgctxt ""
msgid "~Display documents in browser"
msgstr ""
-#. ~1YW
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5228,7 +4694,6 @@ msgctxt ""
msgid "Settings"
msgstr "პარამეტრები"
-#. I1kK
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5238,7 +4703,6 @@ msgctxt ""
msgid "Proxy s~erver"
msgstr "Proxy ს~ერვერი"
-#. SK(E
#: optinet2.src
#, fuzzy
msgctxt ""
@@ -5249,7 +4713,6 @@ msgctxt ""
msgid "None"
msgstr "არა"
-#. Vk}?
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5259,7 +4722,6 @@ msgctxt ""
msgid "System"
msgstr "სისტემა"
-#. 6O!V
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5269,7 +4731,6 @@ msgctxt ""
msgid "Manual"
msgstr "ხელით"
-#. e*Z6
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5279,7 +4740,6 @@ msgctxt ""
msgid "Use browser settings"
msgstr "ბროუზერის პარამეტრების გამოყენება"
-#. -Pi*
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5289,7 +4749,6 @@ msgctxt ""
msgid "HT~TP proxy"
msgstr "HT~TP პროქსი"
-#. F\0r
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5299,7 +4758,6 @@ msgctxt ""
msgid "~Port"
msgstr "~Port"
-#. Uq`o
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5309,7 +4767,6 @@ msgctxt ""
msgid "HTTP~S proxy"
msgstr "HT~TP პროქსი"
-#. ZeX%
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5319,7 +4776,6 @@ msgctxt ""
msgid "P~ort"
msgstr "პ~ორტი"
-#. BF:g
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5329,7 +4785,6 @@ msgctxt ""
msgid "~FTP proxy"
msgstr "~FTP პროქსი"
-#. Mr$j
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5339,7 +4794,6 @@ msgctxt ""
msgid "P~ort"
msgstr "პ~ორტი"
-#. !L}c
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5349,7 +4803,6 @@ msgctxt ""
msgid "~SOCKS proxy"
msgstr "~SOCKS პროქსი"
-#. L]+m
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5359,7 +4812,6 @@ msgctxt ""
msgid "Po~rt"
msgstr "პო~რტი"
-#. I*u`
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5369,7 +4821,6 @@ msgctxt ""
msgid "~No proxy for:"
msgstr "~არ არის პროქი:"
-#. AUdH
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5379,7 +4830,6 @@ msgctxt ""
msgid "Separator ;"
msgstr "გამყოფი:"
-#. fL;R
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5389,7 +4839,6 @@ msgctxt ""
msgid "DNS server"
msgstr "DNS სერვერი"
-#. X5$^
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5399,7 +4848,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "~ავტომატური"
-#. K{(7
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5409,7 +4857,6 @@ msgctxt ""
msgid "~Manual"
msgstr "~ხელით"
-#. bm95
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5419,7 +4866,6 @@ msgctxt ""
msgid "is not a valid entry for this field. Please specify a value between 0 and 255."
msgstr "ეს მცდარი ჩანაწერია ამ ველისთვის.გთხოვთ განსაზღვროთ მნიშვნელობა 0-დან 255-მდე."
-#. pmi`
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5429,7 +4875,6 @@ msgctxt ""
msgid "is not a valid entry for this field. Please specify a value between 1 and 255."
msgstr "ეს მცდარი ჩანაწერია ამ ველისთვის.გთხოვთ განსაზღვროთ მნიშვნელობა 1-დან 255-მდე."
-#. idzD
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5438,7 +4883,6 @@ msgctxt ""
msgid "Proxy"
msgstr "პროქსი"
-#. Y~::
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5448,7 +4892,6 @@ msgctxt ""
msgid "Security options and warnings"
msgstr ""
-#. _\Tj
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5458,7 +4901,6 @@ msgctxt ""
msgid "Adjust security related options and define warnings for hidden information in documents."
msgstr ""
-#. C%[/
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5468,7 +4910,6 @@ msgctxt ""
msgid "Options..."
msgstr "პარამეტრები..."
-#. j,Fn
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5478,7 +4919,6 @@ msgctxt ""
msgid "Passwords for web connections"
msgstr ""
-#. (D5s
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5488,7 +4928,6 @@ msgctxt ""
msgid "Persistently save passwords for web connections"
msgstr ""
-#. gOOu
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5498,7 +4937,6 @@ msgctxt ""
msgid "Connections..."
msgstr "კავშირები"
-#. -sma
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5508,7 +4946,6 @@ msgctxt ""
msgid "Protected by a master password (recommended)"
msgstr ""
-#. lAZG
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5518,7 +4955,6 @@ msgctxt ""
msgid "Passwords are protected by a master password. You will be asked to enter it once per session, if %PRODUCTNAME retrieves a password from the protected password list."
msgstr ""
-#. uHou
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5528,7 +4964,6 @@ msgctxt ""
msgid "Master Password..."
msgstr ""
-#. O;6$
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5538,7 +4973,6 @@ msgctxt ""
msgid "Macro security"
msgstr "მაკრო-ს უსაპრთხოება"
-#. #8PW
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5548,7 +4982,6 @@ msgctxt ""
msgid "Adjust the security level for executing macros and specify trusted macro developers."
msgstr "მოირგეთ უსაფრთხოეების დონე , იმისთვის რომ შესრულდეს მაკროს-ს განსაზღვრა და დადგინდეს მაკრო-დეველოვერების ნდობა."
-#. H$.Y
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5558,7 +4991,6 @@ msgctxt ""
msgid "Macro Security..."
msgstr "მაკრო-ს უსაპრთხოება..."
-#. FBJ,
#: optinet2.src
#, fuzzy
msgctxt ""
@@ -5569,7 +5001,6 @@ msgctxt ""
msgid "Certificate Path"
msgstr "სერტიფიკატის გეზი"
-#. 3Kf2
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5579,7 +5010,6 @@ msgctxt ""
msgid "Select the Network Security Services certificate directory to use for digital signatures."
msgstr ""
-#. Zqv8
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5589,7 +5019,6 @@ msgctxt ""
msgid "Certificate..."
msgstr ""
-#. !a9h
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5602,7 +5031,6 @@ msgid ""
"Do you want to delete password list and reset master password?"
msgstr ""
-#. ]bE+
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5611,7 +5039,6 @@ msgctxt ""
msgid "Security"
msgstr "უსაფრთხოება"
-#. ,LvN
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5626,7 +5053,6 @@ msgstr ""
"\n"
"მაქსიმალური მნიშვნელობა პორტის ნომერისთვის არის 65535."
-#. 3C$K
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5644,7 +5070,6 @@ msgstr ""
"\n"
"ნამდვილად გსურთ Java-ს გამორთვა?"
-#. TY*W
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5654,7 +5079,6 @@ msgctxt ""
msgid "~Don't show warning again"
msgstr "~აღარ მაჩვენო გაფრთხილება კიდევ"
-#. qa8o
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5664,7 +5088,6 @@ msgctxt ""
msgid "Sending documents as e-mail attachments"
msgstr "დოკუმენების გაგზავნა როგორც ელფოსტის დანართი "
-#. hZYo
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5674,7 +5097,6 @@ msgctxt ""
msgid "~E-mail program"
msgstr "~ელფოსტის პროგრამა"
-#. eU/[
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5684,7 +5106,6 @@ msgctxt ""
msgid "All files"
msgstr ""
-#. [(%E
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5694,7 +5115,6 @@ msgctxt ""
msgid "Web login information (passwords are never shown)"
msgstr ""
-#. tLxk
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5704,7 +5124,6 @@ msgctxt ""
msgid "Remove"
msgstr "~მოშორება"
-#. cEle
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5714,7 +5133,6 @@ msgctxt ""
msgid "Remove All"
msgstr ""
-#. z#ym
#: webconninfo.src
#, fuzzy
msgctxt ""
@@ -5725,7 +5143,6 @@ msgctxt ""
msgid "Change Password..."
msgstr "პაროლის ~შეცვლა..."
-#. %\[;
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5735,7 +5152,6 @@ msgctxt ""
msgid "Close"
msgstr "დახურვა"
-#. G8nn
#: webconninfo.src
#, fuzzy
msgctxt ""
@@ -5746,7 +5162,6 @@ msgctxt ""
msgid "Website"
msgstr "ჩემი ვებგვერდი"
-#. U9ns
#: webconninfo.src
#, fuzzy
msgctxt ""
@@ -5757,7 +5172,6 @@ msgctxt ""
msgid "User name"
msgstr "~მომხმარებლის სახელი"
-#. ix]!
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5766,7 +5180,6 @@ msgctxt ""
msgid "Stored Web Connection Information"
msgstr ""
-#. ,I]I
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5776,7 +5189,6 @@ msgctxt ""
msgid "Help"
msgstr "დახმარება"
-#. YD+@
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5786,7 +5198,6 @@ msgctxt ""
msgid "~Tips"
msgstr "~რჩევები"
-#. eD=X
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5796,7 +5207,6 @@ msgctxt ""
msgid "~Extended tips"
msgstr "~დამატებითი რჩევები"
-#. 1#:d
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5806,7 +5216,6 @@ msgctxt ""
msgid "~Help Agent"
msgstr "~დახმარების აგენტი"
-#. f6g6
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5816,7 +5225,6 @@ msgctxt ""
msgid "~Reset Help Agent"
msgstr "~დახმარების აგენტის ჩამოყრა"
-#. g#x(
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5826,7 +5234,6 @@ msgctxt ""
msgid "Open/Save dialogs"
msgstr "გახსნა/შენახვა დიალოგები"
-#. mmS2
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5836,7 +5243,6 @@ msgctxt ""
msgid "~Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME დიალოგების ~გამოყენება"
-#. j@+#
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5846,7 +5252,6 @@ msgctxt ""
msgid "Show ODMA DMS dialogs first"
msgstr ""
-#. j(J3
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5856,7 +5261,6 @@ msgctxt ""
msgid "Print dialogs"
msgstr ""
-#. -#;*
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5866,7 +5270,6 @@ msgctxt ""
msgid "Use %PRODUCTNAME ~dialogs"
msgstr "%PRODUCTNAME დიალოგების ~გამოყენება"
-#. `ed@
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5876,7 +5279,6 @@ msgctxt ""
msgid "Document status"
msgstr "დოკუმენტის სტატუსი"
-#. MOx)
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5886,7 +5288,6 @@ msgctxt ""
msgid "~Printing sets \"document modified\" status"
msgstr "~ბეჭდვის მიერ \"დოკუმენტი შეიცვალა\" სტატუსის დაყენება"
-#. Ak[c
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5896,7 +5297,6 @@ msgctxt ""
msgid "Allow to save document even when the document is not modified"
msgstr ""
-#. iK!g
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5906,7 +5306,6 @@ msgctxt ""
msgid "Year (two digits)"
msgstr "წელი (ორი ციფრი)"
-#. lZJ7
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5916,7 +5315,6 @@ msgctxt ""
msgid "Interpret as years between"
msgstr "როგორც წლებს შორის ინტერპრეტაცია"
-#. D*H`
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5926,7 +5324,6 @@ msgctxt ""
msgid "and "
msgstr "და"
-#. bKH[
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5936,7 +5333,6 @@ msgctxt ""
msgid "User Interface"
msgstr "მომხმარებლის ინტერფეისი"
-#. .yL.
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5946,7 +5342,6 @@ msgctxt ""
msgid "Sc~aling"
msgstr "მაშ~ტაბირება"
-#. $cC*
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5956,7 +5351,6 @@ msgctxt ""
msgid "Icon size and style"
msgstr "ხატულას ზომა და სტილი"
-#. VCmX
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5966,7 +5360,6 @@ msgctxt ""
msgid "Icon size"
msgstr "ხატულას ზომა"
-#. hB~A
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5976,7 +5369,6 @@ msgctxt ""
msgid "Automatic"
msgstr "ავტომატური"
-#. ,kLh
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5986,7 +5378,6 @@ msgctxt ""
msgid "Small"
msgstr "მცირე"
-#. KvFm
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5996,7 +5387,6 @@ msgctxt ""
msgid "Large"
msgstr "დიდი"
-#. NC@)
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6006,7 +5396,6 @@ msgctxt ""
msgid "Automatic"
msgstr "ავტომატური"
-#. (z#]
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6016,7 +5405,6 @@ msgctxt ""
msgid "Galaxy (default)"
msgstr ""
-#. jH)b
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6026,7 +5414,6 @@ msgctxt ""
msgid "High Contrast"
msgstr "მაღალი კონტრასტი #1"
-#. 4Nju
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6036,7 +5423,6 @@ msgctxt ""
msgid "Industrial"
msgstr "სამრეწველო"
-#. 2xKW
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6046,7 +5432,6 @@ msgctxt ""
msgid "Crystal"
msgstr "კრისტალი"
-#. ~U.}
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6056,7 +5441,6 @@ msgctxt ""
msgid "Tango"
msgstr ""
-#. uy%%
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6066,7 +5450,6 @@ msgctxt ""
msgid "Oxygen"
msgstr ""
-#. IxiQ
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6076,7 +5459,6 @@ msgctxt ""
msgid "Classic"
msgstr ""
-#. @%|F
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6086,7 +5468,6 @@ msgctxt ""
msgid "Human"
msgstr ""
-#. obAt
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6096,7 +5477,6 @@ msgctxt ""
msgid "Tango Testing"
msgstr ""
-#. q%e@
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6106,7 +5486,6 @@ msgctxt ""
msgid "Use system ~font for user interface"
msgstr "მომხმარებლის ინტერფეისისათვის სისტემური შრიფტის გამოყენება"
-#. l/O3
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6116,7 +5495,6 @@ msgctxt ""
msgid "Screen font antialiasing"
msgstr "ეკრანული შრიფტების დაგლუვება"
-#. xn~k
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6126,7 +5504,6 @@ msgctxt ""
msgid "from"
msgstr "დან"
-#. f_!h
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6136,7 +5513,6 @@ msgctxt ""
msgid "Pixels"
msgstr "პიქსელები"
-#. 3{aO
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6146,7 +5522,6 @@ msgctxt ""
msgid "Menu"
msgstr "მენიუ"
-#. B~H]
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6156,7 +5531,6 @@ msgctxt ""
msgid "Icons in menus"
msgstr ""
-#. ijM9
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6166,7 +5540,6 @@ msgctxt ""
msgid "Automatic"
msgstr "ავტომატური"
-#. bP%i
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6176,7 +5549,6 @@ msgctxt ""
msgid "Hide"
msgstr "დამალვა"
-#. #6tp
#: optgdlg.src
#, fuzzy
msgctxt ""
@@ -6193,7 +5565,6 @@ msgstr ""
"#-#-#-#-# impress.po (PACKAGE VERSION) #-#-#-#-#\n"
"შოუ"
-#. v?27
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6203,7 +5574,6 @@ msgctxt ""
msgid "Font Lists"
msgstr "შრიფტების სიები"
-#. h0hR
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6213,7 +5583,6 @@ msgctxt ""
msgid "Show p~review of fonts"
msgstr "შრიფტების გადახედვის ჩვენება"
-#. M[V(
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6223,7 +5592,6 @@ msgctxt ""
msgid "Show font h~istory"
msgstr "შრიფტის ისტორიის ჩვენება"
-#. 5Emv
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6233,7 +5601,6 @@ msgctxt ""
msgid "Graphics output"
msgstr "ნახატის გამონატანი"
-#. *a`d
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6243,7 +5610,6 @@ msgctxt ""
msgid "Use hardware acceleration"
msgstr "აპარატურული აჩქარების გამოყენება"
-#. 2p0?
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6253,7 +5619,6 @@ msgctxt ""
msgid "Use Anti-Aliasing"
msgstr ""
-#. aMIe
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6263,7 +5628,6 @@ msgctxt ""
msgid "Mouse"
msgstr "მაუსი"
-#. =HWk
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6273,7 +5637,6 @@ msgctxt ""
msgid "Mouse positioning"
msgstr "მაუსის პოზიციონირება"
-#. IPmL
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6283,7 +5646,6 @@ msgctxt ""
msgid "Default button"
msgstr "ნაგუსლისხმევი ღილაკი"
-#. \bTM
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6293,7 +5655,6 @@ msgctxt ""
msgid "Dialog center"
msgstr "დიალოგის ცენტრში"
-#. KU?K
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6303,7 +5664,6 @@ msgctxt ""
msgid "No automatic positioning"
msgstr "ავტომატური პოზიციონირების გარეშე"
-#. futz
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6313,7 +5673,6 @@ msgctxt ""
msgid "Middle mouse button"
msgstr "მაუსის შუა ღილაკი"
-#. q96U
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6323,7 +5682,6 @@ msgctxt ""
msgid "No function"
msgstr "ფუნქციის გარეშე"
-#. K2/~
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6333,7 +5691,6 @@ msgctxt ""
msgid "Automatic scrolling"
msgstr "ავტომატური გადაადგილება"
-#. A!(K
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6343,7 +5700,6 @@ msgctxt ""
msgid "Paste clipboard"
msgstr "გაცვლის ბუფერის ჩასმა"
-#. atGU
#: optgdlg.src
#, fuzzy
msgctxt ""
@@ -6376,7 +5732,6 @@ msgstr ""
"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
"არჩევა"
-#. $s.b
#: optgdlg.src
#, fuzzy
msgctxt ""
@@ -6391,7 +5746,6 @@ msgstr ""
"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
"გამჭვირვალობა"
-#. ,{Ex
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6401,7 +5755,6 @@ msgctxt ""
msgid "%"
msgstr "%"
-#. [j=#
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6411,7 +5764,6 @@ msgctxt ""
msgid "Language of"
msgstr "ენა"
-#. VZt6
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6421,7 +5773,6 @@ msgctxt ""
msgid "~User interface"
msgstr "~მომხმარებლის ინტერფეისი"
-#. HXP_
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6431,7 +5782,6 @@ msgctxt ""
msgid "Locale setting"
msgstr "ლოკალის პარამეტრები"
-#. /%${
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6441,7 +5791,6 @@ msgctxt ""
msgid "Decimal separator key"
msgstr "ათწილადის გამყოფის კლავიში"
-#. L)[t
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6451,7 +5800,6 @@ msgctxt ""
msgid "~Same as locale setting ( %1 )"
msgstr "~იგივე, რაც ლოკალის პარამეტრები ( %1 )"
-#. hK+W
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6461,7 +5809,6 @@ msgctxt ""
msgid "~Default currency"
msgstr "~ნაგულისხმევი ვალუტა"
-#. K8$R
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6471,7 +5818,6 @@ msgctxt ""
msgid "Date acceptance ~patterns"
msgstr ""
-#. 6bDG
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6481,7 +5827,6 @@ msgctxt ""
msgid "Default languages for documents"
msgstr "ნაგულისხმევი ენა დოკუმენტისათვის"
-#. w)d+
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6491,7 +5836,6 @@ msgctxt ""
msgid "Western"
msgstr "Western"
-#. X4of
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6501,7 +5845,6 @@ msgctxt ""
msgid "Asian"
msgstr "Asian"
-#. 3Wy@
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6511,7 +5854,6 @@ msgctxt ""
msgid "C~TL"
msgstr "C~TL"
-#. `nYT
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6521,7 +5863,6 @@ msgctxt ""
msgid "For the current document only"
msgstr "მოხოლდ მიმდინარე დოკუმენტი"
-#. lKr)
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6531,7 +5872,6 @@ msgctxt ""
msgid "Enhanced language support"
msgstr "ენის გაფართოებული მხარდაჭერა"
-#. W=V`
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6541,7 +5881,6 @@ msgctxt ""
msgid "Show UI elements for East Asia~n writings"
msgstr ""
-#. ~k5-
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6551,7 +5890,6 @@ msgctxt ""
msgid "Show UI elements for B~i-Directional writing"
msgstr ""
-#. H(%/
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6561,7 +5899,6 @@ msgctxt ""
msgid "Ignore s~ystem input language"
msgstr ""
-#. V#v[
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6570,7 +5907,6 @@ msgctxt ""
msgid "The language setting of the user interface has been updated and will take effect the next time you start %PRODUCTNAME %PRODUCTVERSION"
msgstr "მომხმარებლის ინტერფეისის ენის პარამეტრები განახლდა და ძალაში შევა %PRODUCTNAME %PRODUCTVERSION-ის შემდეგი გაშვებისას"
-#. DIQJ
#: certpath.src
#, fuzzy
msgctxt ""
@@ -6581,7 +5917,6 @@ msgctxt ""
msgid "Certificate Path"
msgstr "სერტიფიკატის გეზი"
-#. 2bc[
#: certpath.src
msgctxt ""
"certpath.src\n"
@@ -6591,7 +5926,6 @@ msgctxt ""
msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures:"
msgstr ""
-#. buLe
#: certpath.src
#, fuzzy
msgctxt ""
@@ -6602,7 +5936,6 @@ msgctxt ""
msgid "~Add..."
msgstr "~დამატება..."
-#. At/*
#: certpath.src
msgctxt ""
"certpath.src\n"
@@ -6612,7 +5945,6 @@ msgctxt ""
msgid "Select a Certificate directory"
msgstr ""
-#. 7lQw
#: certpath.src
#, fuzzy
msgctxt ""
@@ -6623,7 +5955,6 @@ msgctxt ""
msgid "manual"
msgstr "ხელით"
-#. ,{`@
#: certpath.src
msgctxt ""
"certpath.src\n"
@@ -6633,7 +5964,6 @@ msgctxt ""
msgid "Profile"
msgstr ""
-#. ]mvi
#: certpath.src
msgctxt ""
"certpath.src\n"
@@ -6643,7 +5973,6 @@ msgctxt ""
msgid "Directory"
msgstr "დირექტორია"
-#. $AA:
#: certpath.src
#, fuzzy
msgctxt ""
diff --git a/source/ka/cui/source/tabpages.po b/source/ka/cui/source/tabpages.po
index c1254e0b4e1..56d37e2b125 100644
--- a/source/ka/cui/source/tabpages.po
+++ b/source/ka/cui/source/tabpages.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-06-16 14:28+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. bz*m
#: strings.src
msgctxt ""
"strings.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Please enter a name for the gradient:"
msgstr "გთხოვთ, შეიყვანოთ სახელი გრადაციისათვის:"
-#. \|^?
#: strings.src
msgctxt ""
"strings.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Do you want to delete the gradient?"
msgstr "გნებავთ გრადიენტის წაშლა?"
-#. J0=v
#: strings.src
msgctxt ""
"strings.src\n"
@@ -46,7 +43,6 @@ msgstr ""
"გრადიენტი შეიცვალა შენახვის გარეშე. \n"
"შეცვალეთ მონიშნული გრადიენტი ან დაამატეთ ახალი გარდიენტი."
-#. aoNW
#: strings.src
msgctxt ""
"strings.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Please enter a name for the bitmap:"
msgstr "გთხოვთ, შეიყვანოთ სახელი ნახატისათვის:"
-#. 5`b,
#: strings.src
msgctxt ""
"strings.src\n"
@@ -64,7 +59,6 @@ msgctxt ""
msgid "Please enter a name for the external bitmap:"
msgstr "გთხოვთ, შეიყვანოთ სახელი გარე ნახატისათვის:"
-#. T!Xf
#: strings.src
msgctxt ""
"strings.src\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "Are you sure you want to delete the bitmap?"
msgstr "დარწმუნებული ხართ, რომ გინდათ ნახატის წაშლა?"
-#. ^oVM
#: strings.src
msgctxt ""
"strings.src\n"
@@ -86,7 +79,6 @@ msgstr ""
"ნახატი შეიცვალა შენახვის გარეშე. \n"
"შეცვალეთ მნიშნული ნახატი ან დაამატეთ ახალი ნახატი."
-#. tc;;
#: strings.src
msgctxt ""
"strings.src\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "Please enter a name for the line style:"
msgstr "გთხოვთ შეიყვანოთ სახელი ხაზის სტილისათვის:"
-#. D$-e
#: strings.src
msgctxt ""
"strings.src\n"
@@ -104,7 +95,6 @@ msgctxt ""
msgid "Do you want to delete the line style?"
msgstr "გნებავთ ხაზის სტილის წაშლა?"
-#. w9S4
#: strings.src
msgctxt ""
"strings.src\n"
@@ -117,7 +107,6 @@ msgstr ""
"ხაზის სტილი შეიცვალა დამახსოვრების გარეშე. \n"
"შეცვალეთ მონიშნული ხაზის სტილი ან დაამატეთ ახალი ხაზის სტილი."
-#. N:w[
#: strings.src
msgctxt ""
"strings.src\n"
@@ -126,7 +115,6 @@ msgctxt ""
msgid "Please enter a name for the hatching:"
msgstr "გთხოვთ შეიყვანოთ სახელი დაშტიხვისათვის:"
-#. I2,Z
#: strings.src
msgctxt ""
"strings.src\n"
@@ -135,7 +123,6 @@ msgctxt ""
msgid "Do you want to delete the hatching?"
msgstr "გნებავთ დაშტრიხვის წაშლა?"
-#. NluX
#: strings.src
msgctxt ""
"strings.src\n"
@@ -148,7 +135,6 @@ msgstr ""
"დაშტრიხვა შეიცვალა დამახსოვრების გარეშე. \n"
"შეცვალეთ მონიშნული დაშტრიხვა ან დაამატეთ ახალი დაშტრიხვა."
-#. qQ5L
#: strings.src
msgctxt ""
"strings.src\n"
@@ -157,7 +143,6 @@ msgctxt ""
msgid "Modify"
msgstr "შეცვლა"
-#. t-9^
#: strings.src
msgctxt ""
"strings.src\n"
@@ -166,7 +151,6 @@ msgctxt ""
msgid "Add"
msgstr "დამატება"
-#. 2c?|
#: strings.src
msgctxt ""
"strings.src\n"
@@ -175,7 +159,6 @@ msgctxt ""
msgid "Please enter a name for the new color:"
msgstr "გთხოვთ, შეიყვანოთ სახელი ახალი ფერისათვის:"
-#. Z/p*
#: strings.src
msgctxt ""
"strings.src\n"
@@ -184,7 +167,6 @@ msgctxt ""
msgid "Do you want to delete the color?"
msgstr "გნებავთ ფერის წაშლა?"
-#. v3Pw
#: strings.src
msgctxt ""
"strings.src\n"
@@ -197,7 +179,6 @@ msgstr ""
"ფერი შეიცვალა დამახსოვრების გარეშე. \n"
"შეცვალეთ მონიშნული ფერი ან დაამატეთ ახალი ფარი."
-#. Wb(#
#: strings.src
msgctxt ""
"strings.src\n"
@@ -206,7 +187,6 @@ msgctxt ""
msgid "Table"
msgstr "ცხრილი"
-#. \a0q
#: strings.src
msgctxt ""
"strings.src\n"
@@ -215,7 +195,6 @@ msgctxt ""
msgid "The file could not be saved!"
msgstr "ფაილი ვერ იქნა შენახული!"
-#. %Y#{
#: strings.src
msgctxt ""
"strings.src\n"
@@ -224,7 +203,6 @@ msgctxt ""
msgid "The file could not be loaded!"
msgstr "ფაილი ვერ იქნა ჩატვირთული!"
-#. x7o*
#: strings.src
msgctxt ""
"strings.src\n"
@@ -233,7 +211,6 @@ msgctxt ""
msgid "The list was modified without saving. Would you like to save the list now?"
msgstr "სია შეიცვალა დამახსოვრების გარეშე. გნებავთ სიის შენახვა?"
-#. BY;z
#: strings.src
msgctxt ""
"strings.src\n"
@@ -246,7 +223,6 @@ msgstr ""
"სახელი, რომელიც თქვენ შეიყვანეთ უკვე არსებობს. \n"
" გთხოვთ შეიყვანოთ სხვა სახელი."
-#. [S=I
#: strings.src
msgctxt ""
"strings.src\n"
@@ -255,7 +231,6 @@ msgctxt ""
msgid "Please enter a name for the new arrowhead:"
msgstr "გთხოვთ შეიყვანოთ სახელი ახალი ისრის თავებისათვის:"
-#. `z*8
#: strings.src
msgctxt ""
"strings.src\n"
@@ -264,7 +239,6 @@ msgctxt ""
msgid "Do you want to delete the arrowhead?"
msgstr "გნებავთ ისრის თავების წაშლა?"
-#. _}D`
#: strings.src
msgctxt ""
"strings.src\n"
@@ -277,7 +251,6 @@ msgstr ""
"ისრის თავები შეიცვალა დამახსოვრების გარეშე. \n"
"გნებავთ ისრის თავების შენახვა?"
-#. .0;n
#: strings.src
#, fuzzy
msgctxt ""
@@ -287,7 +260,6 @@ msgctxt ""
msgid "Transparent"
msgstr "გამჭვირვალე"
-#. ADJg
#: strings.src
msgctxt ""
"strings.src\n"
@@ -296,7 +268,6 @@ msgctxt ""
msgid "No %1"
msgstr ""
-#. )mlP
#: strings.src
#, fuzzy
msgctxt ""
@@ -306,7 +277,6 @@ msgctxt ""
msgid "Family"
msgstr "თამილი"
-#. X3I]
#: strings.src
#, fuzzy
msgctxt ""
@@ -334,7 +304,6 @@ msgstr ""
"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
"შრიფტი"
-#. .j5E
#: strings.src
#, fuzzy
msgctxt ""
@@ -344,7 +313,6 @@ msgctxt ""
msgid "Style"
msgstr "სტილი"
-#. shf_
#: strings.src
msgctxt ""
"strings.src\n"
@@ -353,7 +321,6 @@ msgctxt ""
msgid "Typeface"
msgstr "მოხაზულობა"
-#. P!fM
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -363,7 +330,6 @@ msgctxt ""
msgid "Transparency mode"
msgstr "გამჭირვალების რეჟიმი"
-#. {i/J
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -373,7 +339,6 @@ msgctxt ""
msgid "~No transparency"
msgstr "გამჭირვალების გარეშე"
-#. .7Zf
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -383,7 +348,6 @@ msgctxt ""
msgid "~Transparency"
msgstr "~გამჭვირვალეობა"
-#. rM_C
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -393,7 +357,6 @@ msgctxt ""
msgid "Gradient"
msgstr "გრადიენტი"
-#. 6TX_
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -403,7 +366,6 @@ msgctxt ""
msgid "Ty~pe"
msgstr "აკრე~ფა"
-#. |2t9
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -413,7 +375,6 @@ msgctxt ""
msgid "Linear"
msgstr "წრფივი"
-#. =jQm
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -423,7 +384,6 @@ msgctxt ""
msgid "Axial"
msgstr "ღერძული"
-#. 3EP1
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -433,7 +393,6 @@ msgctxt ""
msgid "Radial"
msgstr "წრიული"
-#. ]#aZ
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -443,7 +402,6 @@ msgctxt ""
msgid "Ellipsoid"
msgstr "ელიფსური"
-#. Hm;f
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -453,7 +411,6 @@ msgctxt ""
msgid "Quadratic"
msgstr "კვადრატული"
-#. AU==
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -463,7 +420,6 @@ msgctxt ""
msgid "Square"
msgstr "კვადრატული"
-#. \!^1
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -473,7 +429,6 @@ msgctxt ""
msgid "Center ~X"
msgstr "ცენტრი ~X"
-#. {6$S
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -483,7 +438,6 @@ msgctxt ""
msgid "Center ~Y"
msgstr "ცენტრი ~Y"
-#. DTd=
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -493,7 +447,6 @@ msgctxt ""
msgid "~Angle"
msgstr "~კუთხე"
-#. _UQe
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -503,7 +456,6 @@ msgctxt ""
msgid " degrees"
msgstr " გრადუსები"
-#. efT`
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -513,7 +465,6 @@ msgctxt ""
msgid "~Border"
msgstr "ს~აზღვარი"
-#. %6k1
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -523,7 +474,6 @@ msgctxt ""
msgid "~Start value"
msgstr "~საწყისი მნიშვნელობა"
-#. C:@8
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -533,7 +483,6 @@ msgctxt ""
msgid "~End value"
msgstr "ს~აბოლოო მნიშვნელობა"
-#. rCSD
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -542,7 +491,6 @@ msgctxt ""
msgid "Transparency"
msgstr "გამჭვირვალეობა"
-#. SP\]
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -552,7 +500,6 @@ msgctxt ""
msgid "Fill"
msgstr "შევსება"
-#. Vgl^
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -562,7 +509,6 @@ msgctxt ""
msgid "None"
msgstr "არცერთი"
-#. s2L2
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -572,7 +518,6 @@ msgctxt ""
msgid "Color"
msgstr "ფერი"
-#. ;9Ac
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -582,7 +527,6 @@ msgctxt ""
msgid "Gradient"
msgstr "გრადიენტი"
-#. 2e5%
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -592,7 +536,6 @@ msgctxt ""
msgid "Hatching"
msgstr "ჰეჩინგი"
-#. 9#s5
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -602,7 +545,6 @@ msgctxt ""
msgid "Bitmap"
msgstr "ნახატი"
-#. -*;%
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -612,7 +554,6 @@ msgctxt ""
msgid "Increments"
msgstr "მიმატება"
-#. 0Ka5
#: tabarea.src
#, fuzzy
msgctxt ""
@@ -623,7 +564,6 @@ msgctxt ""
msgid "A~utomatic"
msgstr "ა~ვტომატური"
-#. G7o[
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -633,7 +573,6 @@ msgctxt ""
msgid "~Background color"
msgstr "~ფონის ფერი"
-#. dc;2
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -643,7 +582,6 @@ msgctxt ""
msgid "Size"
msgstr "ზომა"
-#. c-j`
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -653,7 +591,6 @@ msgctxt ""
msgid "~Original"
msgstr "~დედანი"
-#. :lE~
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -663,7 +600,6 @@ msgctxt ""
msgid "Re~lative"
msgstr "ფარ~დობითი"
-#. 5@6t
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -673,7 +609,6 @@ msgctxt ""
msgid "Wi~dth"
msgstr "სი~განე"
-#. 8h5f
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -683,7 +618,6 @@ msgctxt ""
msgid "H~eight"
msgstr "სი~მაღლე"
-#. *?n9
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -693,7 +627,6 @@ msgctxt ""
msgid "Position"
msgstr "მდებარეობა"
-#. ]u)i
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -703,7 +636,6 @@ msgctxt ""
msgid "~X Offset"
msgstr "~X ოფსეტი"
-#. QpB:
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -713,7 +645,6 @@ msgctxt ""
msgid "~Y Offset"
msgstr "~Y ოფსეტი"
-#. .2MN
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -723,7 +654,6 @@ msgctxt ""
msgid "~Tile"
msgstr "~მოზაიკა"
-#. #b^l
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -733,7 +663,6 @@ msgctxt ""
msgid "Auto~Fit"
msgstr "ავტო მორგება"
-#. `JeJ
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -743,7 +672,6 @@ msgctxt ""
msgid "Offset"
msgstr "ოფსეტი"
-#. NLX;
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -753,7 +681,6 @@ msgctxt ""
msgid "Ro~w"
msgstr "სტრიქონი"
-#. dO`|
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -763,7 +690,6 @@ msgctxt ""
msgid "Colu~mn"
msgstr "სვეტი"
-#. q?g-
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -772,7 +698,6 @@ msgctxt ""
msgid "Area"
msgstr "არე"
-#. O#Q2
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -782,7 +707,6 @@ msgctxt ""
msgid "Properties"
msgstr "თვისებები"
-#. ,4#.
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -792,7 +716,6 @@ msgctxt ""
msgid "~Use shadow"
msgstr "ჩ~რდილის გამოყენება"
-#. fW-$
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -802,7 +725,6 @@ msgctxt ""
msgid "~Position"
msgstr "~მდებარეობა"
-#. n#ns
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -812,7 +734,6 @@ msgctxt ""
msgid "~Distance"
msgstr "~დისტანცია"
-#. Fr1[
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -822,7 +743,6 @@ msgctxt ""
msgid "~Color"
msgstr "~ფერი"
-#. +{\k
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -832,7 +752,6 @@ msgctxt ""
msgid "~Transparency"
msgstr "~გამჭვირვალეობა"
-#. @PQ:
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -841,7 +760,6 @@ msgctxt ""
msgid "Shadow"
msgstr "ჩრდილი"
-#. B-Y|
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -851,7 +769,6 @@ msgctxt ""
msgid "Properties"
msgstr "თვისებები"
-#. A0nG
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -861,7 +778,6 @@ msgctxt ""
msgid "~Spacing"
msgstr "~დაშორება"
-#. ,ASA
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -871,7 +787,6 @@ msgctxt ""
msgid "A~ngle"
msgstr "კ~უთხე"
-#. _k2A
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -881,7 +796,6 @@ msgctxt ""
msgid " degrees"
msgstr " გრადუსები"
-#. $~=7
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -891,7 +805,6 @@ msgctxt ""
msgid "~Line type"
msgstr "ხაზის ტიპი"
-#. 1*KW
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -901,7 +814,6 @@ msgctxt ""
msgid "Single"
msgstr "ერთმაგი"
-#. hQak
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -911,7 +823,6 @@ msgctxt ""
msgid "Crossed"
msgstr "ჯვარედინი"
-#. P;=x
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -921,7 +832,6 @@ msgctxt ""
msgid "Triple"
msgstr "სამმაგი"
-#. HGtc
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -931,7 +841,6 @@ msgctxt ""
msgid "Line ~color"
msgstr "ხაზის ფერი"
-#. \`*%
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -941,7 +850,6 @@ msgctxt ""
msgid "~Add..."
msgstr "~დამატება..."
-#. ^_8R
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -951,7 +859,6 @@ msgctxt ""
msgid "~Modify..."
msgstr "შ~ეცვლა..."
-#. C*D-
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -961,7 +868,6 @@ msgctxt ""
msgid "~Delete..."
msgstr "წ~აშლა..."
-#. mxu`
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -971,7 +877,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. B%1Q
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -981,7 +886,6 @@ msgctxt ""
msgid "Load Hatches List"
msgstr ""
-#. sE5p
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -991,7 +895,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. _^|?
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1001,7 +904,6 @@ msgctxt ""
msgid "Save Hatches List"
msgstr ""
-#. ma9g
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1011,7 +913,6 @@ msgctxt ""
msgid "Embed"
msgstr ""
-#. T)]y
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1020,7 +921,6 @@ msgctxt ""
msgid "Hatching"
msgstr "ჰეჩინგი"
-#. Hr,+
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1030,7 +930,6 @@ msgctxt ""
msgid "Properties"
msgstr "თვისებები"
-#. )o`;
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1040,7 +939,6 @@ msgctxt ""
msgid "Pattern Editor"
msgstr "ნიმუშის რედაქტორი"
-#. -/{@
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1050,7 +948,6 @@ msgctxt ""
msgid "~Foreground color"
msgstr "~წინაპლანის ფერი"
-#. Hk2Z
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1060,7 +957,6 @@ msgctxt ""
msgid "~Background color"
msgstr "~ფონის ფერი"
-#. -s:C
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1070,7 +966,6 @@ msgctxt ""
msgid "Bitmap"
msgstr "ნახატი"
-#. +Rpr
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1080,7 +975,6 @@ msgctxt ""
msgid "~Add..."
msgstr "~დამატება..."
-#. E\/J
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1090,7 +984,6 @@ msgctxt ""
msgid "~Modify..."
msgstr "შ~ეცვლა..."
-#. ZnY%
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1100,7 +993,6 @@ msgctxt ""
msgid "~Import..."
msgstr "~იმპორტი..."
-#. sBG#
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1110,7 +1002,6 @@ msgctxt ""
msgid "~Delete..."
msgstr "წ~აშლა..."
-#. CBTJ
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1120,7 +1011,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. /x\5
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1130,7 +1020,6 @@ msgctxt ""
msgid "Load Bitmap List"
msgstr ""
-#. ]CH1
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1140,7 +1029,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. 3d^L
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1150,7 +1038,6 @@ msgctxt ""
msgid "Save Bitmap List"
msgstr ""
-#. z{wT
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1160,7 +1047,6 @@ msgctxt ""
msgid "Embed"
msgstr ""
-#. 9_@%
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1169,7 +1055,6 @@ msgctxt ""
msgid "Bitmap Patterns"
msgstr "ნახატების შაბლონები"
-#. _g2`
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1179,7 +1064,6 @@ msgctxt ""
msgid "Properties"
msgstr "თვისებები"
-#. {hGV
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1189,7 +1073,6 @@ msgctxt ""
msgid "Ty~pe"
msgstr "ა~კრეფა"
-#. odos
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1199,7 +1082,6 @@ msgctxt ""
msgid "Linear"
msgstr "წრფივი"
-#. ,1nA
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1209,7 +1091,6 @@ msgctxt ""
msgid "Axial"
msgstr "ღერძული"
-#. ]n4T
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1219,7 +1100,6 @@ msgctxt ""
msgid "Radial"
msgstr "წრიული"
-#. PGr)
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1229,7 +1109,6 @@ msgctxt ""
msgid "Ellipsoid"
msgstr "ელიფსური"
-#. 2Zge
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1239,7 +1118,6 @@ msgctxt ""
msgid "Square"
msgstr "კვადრატული"
-#. NDC,
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1249,7 +1127,6 @@ msgctxt ""
msgid "Rectangular"
msgstr "მართკუთხედური"
-#. .)`T
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1259,7 +1136,6 @@ msgctxt ""
msgid "Center ~X"
msgstr "ცენტრი ~X"
-#. JrEp
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1269,7 +1145,6 @@ msgctxt ""
msgid "Center ~Y"
msgstr "ცენტრი ~Y"
-#. \$He
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1279,7 +1154,6 @@ msgctxt ""
msgid "A~ngle"
msgstr "კ~უთხე"
-#. uzh~
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1289,7 +1163,6 @@ msgctxt ""
msgid " degrees"
msgstr " გრადუსები"
-#. :;fo
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1299,7 +1172,6 @@ msgctxt ""
msgid "~Border"
msgstr "ს~აზღვარი"
-#. V%]P
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1309,7 +1181,6 @@ msgctxt ""
msgid "~From"
msgstr "~გამგზავნი"
-#. Q.m`
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1319,7 +1190,6 @@ msgctxt ""
msgid "~To"
msgstr "~მიმღები"
-#. FOW4
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1329,7 +1199,6 @@ msgctxt ""
msgid "~Add..."
msgstr "~დამატება..."
-#. /#Hb
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1339,7 +1208,6 @@ msgctxt ""
msgid "~Modify..."
msgstr "შ~ეცვლა..."
-#. lfp?
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1349,7 +1217,6 @@ msgctxt ""
msgid "~Delete..."
msgstr "წ~აშლა..."
-#. SvG$
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1359,7 +1226,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. ,3G7
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1369,7 +1235,6 @@ msgctxt ""
msgid "Load Gradients List"
msgstr ""
-#. MPW6
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1379,7 +1244,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. SA6:
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1389,7 +1253,6 @@ msgctxt ""
msgid "Save Gradients List"
msgstr ""
-#. K?S@
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1399,7 +1262,6 @@ msgctxt ""
msgid "Embed"
msgstr ""
-#. $8p?
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1408,7 +1270,6 @@ msgctxt ""
msgid "Gradients"
msgstr "გრადიენტები"
-#. 5[[J
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1418,7 +1279,6 @@ msgctxt ""
msgid "Properties"
msgstr "თვისებები"
-#. FZaU
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1428,7 +1288,6 @@ msgctxt ""
msgid "~Name"
msgstr "ს~ახელი"
-#. TT^+
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1438,7 +1297,6 @@ msgctxt ""
msgid "C~olor"
msgstr "ფ~ერი"
-#. 8`d!
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1448,7 +1306,6 @@ msgctxt ""
msgid "Color table"
msgstr "ფერთა ცხრილი"
-#. \W{j
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1458,7 +1315,6 @@ msgctxt ""
msgid "RGB"
msgstr "RGB"
-#. G}#?
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1468,7 +1324,6 @@ msgctxt ""
msgid "CMYK"
msgstr "CMYK"
-#. GE?.
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1478,7 +1333,6 @@ msgctxt ""
msgid "~C"
msgstr ""
-#. jUr~
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1488,7 +1342,6 @@ msgctxt ""
msgid "~M"
msgstr ""
-#. L^6j
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1498,7 +1351,6 @@ msgctxt ""
msgid "~Y"
msgstr ""
-#. h^y|
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1508,7 +1360,6 @@ msgctxt ""
msgid "~K"
msgstr ""
-#. f/(;
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1518,7 +1369,6 @@ msgctxt ""
msgid "~Add"
msgstr "~დამატება"
-#. b5}y
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1528,7 +1378,6 @@ msgctxt ""
msgid "~Edit..."
msgstr "რ~ედაქტირება..."
-#. woZ.
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1538,7 +1387,6 @@ msgctxt ""
msgid "~Delete..."
msgstr "წ~აშლა..."
-#. cvY+
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1548,7 +1396,6 @@ msgctxt ""
msgid "~Modify"
msgstr "~ცვლილება"
-#. 2YLY
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1558,7 +1405,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. m.ZS
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1568,7 +1414,6 @@ msgctxt ""
msgid "Load Color List"
msgstr ""
-#. w\/b
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1578,7 +1423,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. 66ST
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1588,7 +1432,6 @@ msgctxt ""
msgid "Save Color List"
msgstr ""
-#. JOkv
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1598,7 +1441,6 @@ msgctxt ""
msgid "Embed"
msgstr ""
-#. ~R10
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1607,7 +1449,6 @@ msgctxt ""
msgid "Colors"
msgstr "ფერები"
-#. X(7%
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1617,7 +1458,6 @@ msgctxt ""
msgid "Area"
msgstr "არე"
-#. ZJUM
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1627,7 +1467,6 @@ msgctxt ""
msgid "Shadow"
msgstr "ჩრდილი"
-#. AEY7
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1637,7 +1476,6 @@ msgctxt ""
msgid "Transparency"
msgstr "გამჭვირვალეობა"
-#. Ea4k
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1647,7 +1485,6 @@ msgctxt ""
msgid "Colors"
msgstr "ფერები"
-#. /IA}
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1657,7 +1494,6 @@ msgctxt ""
msgid "Gradients"
msgstr "გრადიენტები"
-#. m_0J
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1667,7 +1503,6 @@ msgctxt ""
msgid "Hatching"
msgstr "ჰეჩინგი"
-#. ).j=
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1677,7 +1512,6 @@ msgctxt ""
msgid "Bitmaps"
msgstr "ნახატები"
-#. uUYp
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1686,7 +1520,6 @@ msgctxt ""
msgid "Area"
msgstr "არე"
-#. 5-,:
#: tabarea.src
#, fuzzy
msgctxt ""
@@ -1696,7 +1529,6 @@ msgctxt ""
msgid "Hatching Style"
msgstr "დაშტრიხვა"
-#. OTe)
#: tabarea.src
#, fuzzy
msgctxt ""
@@ -1706,7 +1538,6 @@ msgctxt ""
msgid "Color Mode"
msgstr "კონტურის რეჟიმი"
-#. 8F/d
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1716,7 +1547,6 @@ msgctxt ""
msgid "Text animation effects"
msgstr "ტექსტის ანიმაციის ეფექტები"
-#. 9$j#
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1726,7 +1556,6 @@ msgctxt ""
msgid "E~ffect"
msgstr "ეფექტები"
-#. I1@4
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1736,7 +1565,6 @@ msgctxt ""
msgid "No Effect"
msgstr "~ეფექტები"
-#. Q/bR
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1746,7 +1574,6 @@ msgctxt ""
msgid "Blink"
msgstr "ციმციმი"
-#. mOFp
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1756,7 +1583,6 @@ msgctxt ""
msgid "Scroll Through"
msgstr "ჩათვალირება"
-#. 3Xr.
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1766,7 +1592,6 @@ msgctxt ""
msgid "Scroll Back and Forth"
msgstr "გადაფურცვლა"
-#. ZBvW
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1776,7 +1601,6 @@ msgctxt ""
msgid "Scroll In"
msgstr "გადაფურცვლა"
-#. j}%!
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1786,7 +1610,6 @@ msgctxt ""
msgid "Direction"
msgstr "მიმართულება"
-#. pKrx
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1796,7 +1619,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. $e:_
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1806,7 +1628,6 @@ msgctxt ""
msgid "To Top"
msgstr "To Top"
-#. c.)+
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1816,7 +1637,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. (Z1c
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1826,7 +1646,6 @@ msgctxt ""
msgid "To Left"
msgstr "To Left"
-#. K/;v
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1836,7 +1655,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. #3*%
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1846,7 +1664,6 @@ msgctxt ""
msgid "To Right"
msgstr "To Right"
-#. MaZP
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1856,7 +1673,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. L/2}
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1866,7 +1682,6 @@ msgctxt ""
msgid "To Bottom"
msgstr "To Bottom"
-#. Qf4O
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1876,7 +1691,6 @@ msgctxt ""
msgid "Properties"
msgstr "თვისებები"
-#. Y1^m
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1886,7 +1700,6 @@ msgctxt ""
msgid "S~tart inside"
msgstr "დაწყება შიგნით"
-#. rX=2
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1896,7 +1709,6 @@ msgctxt ""
msgid "Text visible when exiting"
msgstr "ხილული ტექსტი"
-#. l7}%
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1906,7 +1718,6 @@ msgctxt ""
msgid "Animation cycles"
msgstr "ანიმაციის ციკლები"
-#. /=]y
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1916,7 +1727,6 @@ msgctxt ""
msgid "~Continuous"
msgstr "~გაგრძელება"
-#. eKi%
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1926,7 +1736,6 @@ msgctxt ""
msgid "Increment"
msgstr "მიმატება"
-#. m$A[
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1936,7 +1745,6 @@ msgctxt ""
msgid "~Pixels"
msgstr "~პიქსელები"
-#. 4,Ns
#: textanim.src
#, fuzzy
msgctxt ""
@@ -1947,7 +1755,6 @@ msgctxt ""
msgid " Pixel"
msgstr "პიქსელები"
-#. %=`c
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1957,7 +1764,6 @@ msgctxt ""
msgid "Delay"
msgstr "შეყოვნება"
-#. m.K)
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1967,7 +1773,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "~ავტომატური"
-#. i#+n
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1977,7 +1782,6 @@ msgctxt ""
msgid " ms"
msgstr ""
-#. R8X,
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1986,7 +1790,6 @@ msgctxt ""
msgid "Animation"
msgstr "ანიმაცია"
-#. 1bOU
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1996,7 +1799,6 @@ msgctxt ""
msgid "Text"
msgstr "ტექსტი"
-#. en:.
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -2006,7 +1808,6 @@ msgctxt ""
msgid "Text Animation"
msgstr "ტექსტის ანიმაცია"
-#. %v0k
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -2015,7 +1816,6 @@ msgctxt ""
msgid "Text"
msgstr "ტექსტი"
-#. 1APd
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2025,7 +1825,6 @@ msgctxt ""
msgid "Selection"
msgstr "მონიშნული"
-#. ?Zl?
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2035,7 +1834,6 @@ msgctxt ""
msgid "Selection"
msgstr "მონიშნული"
-#. }oR6
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2045,7 +1843,6 @@ msgctxt ""
msgid "Selection"
msgstr "მონიშნული"
-#. MQPK
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2055,7 +1852,6 @@ msgctxt ""
msgid "Selection"
msgstr "მონიშნული"
-#. +Chl
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2065,7 +1861,6 @@ msgctxt ""
msgid "~Link graphics"
msgstr "~ნახატების მიბმა"
-#. \#XZ
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2075,7 +1870,6 @@ msgctxt ""
msgid "The Gallery theme 'Bullets' is empty (no graphics)."
msgstr "გალერეის თემა 'ბულეტები' ცარიელია (ნახატების გარეშე)."
-#. $4M{
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2085,7 +1879,6 @@ msgctxt ""
msgid "Level"
msgstr "დონე"
-#. RoU!
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2095,7 +1888,6 @@ msgctxt ""
msgid "Format"
msgstr "ფორმატი"
-#. #,^G
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2105,7 +1897,6 @@ msgctxt ""
msgid "~Numbering"
msgstr "~დანომვრა"
-#. DH6,
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2115,7 +1906,6 @@ msgctxt ""
msgid "1, 2, 3, ..."
msgstr "1, 2, 3, ..."
-#. _*+A
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2125,7 +1915,6 @@ msgctxt ""
msgid "A, B, C, ..."
msgstr "A, B, C, ..."
-#. ON7Y
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2135,7 +1924,6 @@ msgctxt ""
msgid "a, b, c, ..."
msgstr "ა, ბ, გ, ..."
-#. Qw([
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2145,7 +1933,6 @@ msgctxt ""
msgid "I, II, III, ..."
msgstr "I, II, III, ..."
-#. `hUW
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2155,7 +1942,6 @@ msgctxt ""
msgid "i, ii, iii, ..."
msgstr "i, ii, iii, ..."
-#. eomF
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2166,7 +1952,6 @@ msgctxt ""
msgid "A, .., AA, .., AAA, ..."
msgstr "A, .., AA, .., AAA, ... "
-#. WMiE
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2177,7 +1962,6 @@ msgctxt ""
msgid "a, .., aa, .., aaa, ..."
msgstr "a, .., aa, .., aaa, ..."
-#. X{Ye
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2187,7 +1971,6 @@ msgctxt ""
msgid "Bullet"
msgstr "ბულეტი"
-#. E-|@
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2197,7 +1980,6 @@ msgctxt ""
msgid "Graphics"
msgstr "გრაფიკა"
-#. hzrG
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2207,7 +1989,6 @@ msgctxt ""
msgid "Linked graphics"
msgstr "მიბმული ნახატები"
-#. V7o1
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2217,7 +1998,6 @@ msgctxt ""
msgid "None"
msgstr "არცერთი"
-#. rn]D
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2228,7 +2008,6 @@ msgctxt ""
msgid "Native Numbering"
msgstr "ნამდვილი რიცხვები"
-#. -]Mp
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2239,7 +2018,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
msgstr "А, Б, .., Аа, Аб, ... (ბულგარული)"
-#. mL.j
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2250,7 +2028,6 @@ msgctxt ""
msgid "а, б, .., аа, аб, ... (Bulgarian)"
msgstr "а, б, .., аа, аб, ... (ბულგარული)"
-#. 3/2X
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2261,7 +2038,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
msgstr "А, Б, .., Аа, Бб, ... (ბულგარული)"
-#. 5.T5
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2272,7 +2048,6 @@ msgctxt ""
msgid "а, б, .., аа, бб, ... (Bulgarian)"
msgstr "а, б, .., аа, бб, ... (ბულგარული)"
-#. )`w7
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2283,7 +2058,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Аб, ... (Russian)"
msgstr "А, Б, .., Аа, Аб, ... (რუსული)"
-#. JOTg
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2294,7 +2068,6 @@ msgctxt ""
msgid "а, б, .., аа, аб, ... (Russian)"
msgstr "а, б, .., аа, аб, ... (რუსული)"
-#. Tj,h
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2305,7 +2078,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Бб, ... (Russian)"
msgstr "А, Б, .., Аа, Бб, ... (რუსული)"
-#. )i{D
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2316,7 +2088,6 @@ msgctxt ""
msgid "а, б, .., аа, бб, ... (Russian)"
msgstr "а, б, .., аа, бб, ... (რუსული)"
-#. lhOs
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2327,7 +2098,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Аб, ... (Serbian)"
msgstr "А, Б, .., Аа, Аб, ... (რუსული)"
-#. qUXC
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2338,7 +2108,6 @@ msgctxt ""
msgid "а, б, .., аа, аб, ... (Serbian)"
msgstr "а, б, .., аа, аб, ... (რუსული)"
-#. ?t4n
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2349,7 +2118,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Бб, ... (Serbian)"
msgstr "А, Б, .., Аа, Бб, ... (რუსული)"
-#. uo6K
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2360,7 +2128,6 @@ msgctxt ""
msgid "а, б, .., аа, бб, ... (Serbian)"
msgstr "а, б, .., аа, бб, ... (რუსული)"
-#. Vm+Z
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2370,7 +2137,6 @@ msgctxt ""
msgid "Α, Β, Γ, ... (Greek Upper Letter)"
msgstr ""
-#. _k/t
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2380,7 +2146,6 @@ msgctxt ""
msgid "α, β, γ, ... (Greek Lower Letter)"
msgstr ""
-#. 4[Yd
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2390,7 +2155,6 @@ msgctxt ""
msgid "Before"
msgstr "მდე"
-#. g@IR
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2400,7 +2164,6 @@ msgctxt ""
msgid "After"
msgstr "შემდეგ"
-#. lJ6F
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2410,7 +2173,6 @@ msgctxt ""
msgid "~Character Style"
msgstr "~სიმბოლოს სტილი"
-#. QOYj
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2420,7 +2182,6 @@ msgctxt ""
msgid "Color"
msgstr "ფერი"
-#. qb8X
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2430,7 +2191,6 @@ msgctxt ""
msgid "~Relative size"
msgstr "შ~ეფარდებითი ზომა"
-#. +kJ]
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2440,7 +2200,6 @@ msgctxt ""
msgid "Show sublevels"
msgstr "ქვედონეების ჩვენება"
-#. r+h:
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2450,7 +2209,6 @@ msgctxt ""
msgid "Start at"
msgstr "დაწყება"
-#. 8-=M
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2460,7 +2218,6 @@ msgctxt ""
msgid "~Alignment"
msgstr "სწ~ორება"
-#. VWr;
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2470,7 +2227,6 @@ msgctxt ""
msgid "Left"
msgstr "მარცხნივ"
-#. fDE$
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2480,7 +2236,6 @@ msgctxt ""
msgid "Centered"
msgstr "ცენტრირებული"
-#. 9qqd
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2490,7 +2245,6 @@ msgctxt ""
msgid "Right"
msgstr "მარჯვენა"
-#. :6,,
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2500,7 +2254,6 @@ msgctxt ""
msgid "Character"
msgstr "სიმბოლო"
-#. .Sbe
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2510,7 +2263,6 @@ msgctxt ""
msgid "Graphics"
msgstr "გრაფიკა"
-#. ol:5
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2520,7 +2272,6 @@ msgctxt ""
msgid "From file..."
msgstr "ფაილიდან..."
-#. 5k%P
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2530,7 +2281,6 @@ msgctxt ""
msgid "Gallery"
msgstr "გალერეა"
-#. .Z./
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2540,7 +2290,6 @@ msgctxt ""
msgid "Select..."
msgstr "არჩევა..."
-#. 4y@W
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2550,7 +2299,6 @@ msgctxt ""
msgid "Width"
msgstr "სიგანე"
-#. :A!o
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2560,7 +2308,6 @@ msgctxt ""
msgid "Height"
msgstr "სიმაღლე"
-#. q!R}
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2570,7 +2317,6 @@ msgctxt ""
msgid "Keep ratio"
msgstr "ტანაფარდობის შენარჩუნება"
-#. h0e|
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2580,7 +2326,6 @@ msgctxt ""
msgid "Alignment"
msgstr "სწორება"
-#. :8T2
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2590,7 +2335,6 @@ msgctxt ""
msgid "Top of baseline"
msgstr "საყრდენი ხაზის ზევით"
-#. ^$%:
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2600,7 +2344,6 @@ msgctxt ""
msgid "Center of baseline"
msgstr "საყრდენი ხაზის ცენტრში"
-#. M,3T
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2610,7 +2353,6 @@ msgctxt ""
msgid "Bottom of baseline"
msgstr "საყრდენი ხაზის ქვევით"
-#. _ZGA
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2620,7 +2362,6 @@ msgctxt ""
msgid "Top of character"
msgstr "სიმბოლოს დასაწყისი"
-#. o^XK
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2630,7 +2371,6 @@ msgctxt ""
msgid "Center of character"
msgstr "სიმბოლოს ცენტრი"
-#. IB](
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2640,7 +2380,6 @@ msgctxt ""
msgid "Bottom of character"
msgstr "სიმბოლოს ბოლო"
-#. XP9L
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2650,7 +2389,6 @@ msgctxt ""
msgid "Top of line"
msgstr "ხაზის დასაწყისი"
-#. (E:?
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2660,7 +2398,6 @@ msgctxt ""
msgid "Center of line"
msgstr "ხაზის ცენტრი"
-#. 53yX
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2670,7 +2407,6 @@ msgctxt ""
msgid "Bottom of line"
msgstr "ხაზის ბოლო"
-#. =AXg
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2680,7 +2416,6 @@ msgctxt ""
msgid "All levels"
msgstr "ყველა დონე"
-#. F{=P
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2690,7 +2425,6 @@ msgctxt ""
msgid "~Consecutive numbering"
msgstr "თ~ანმიმდევრული ნუმერაცია"
-#. [6w]
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2700,7 +2434,6 @@ msgctxt ""
msgid "There are no graphics in the 'Bullets' Gallery theme."
msgstr "არ არის ნახატები 'ბულეტები'-ს გალერეის თემაში."
-#. xh=-
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2710,7 +2443,6 @@ msgctxt ""
msgid "Level"
msgstr "დონე"
-#. s`m~
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2720,7 +2452,6 @@ msgctxt ""
msgid "Position and spacing"
msgstr "ადგილმდებარეობა და დაშორება"
-#. jsIc
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2730,7 +2461,6 @@ msgctxt ""
msgid "Indent"
msgstr "დაშორება"
-#. L![.
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2740,7 +2470,6 @@ msgctxt ""
msgid "Relati~ve"
msgstr "რელა~ტიური"
-#. 9I/5
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2750,7 +2479,6 @@ msgctxt ""
msgid "Width of numbering"
msgstr ""
-#. z.1r
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2760,7 +2488,6 @@ msgctxt ""
msgid "Minimum space numbering <-> text"
msgstr "ჰარეთა მინიმალური რაოდენობა <-> ტექსტი"
-#. ubAm
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2770,7 +2497,6 @@ msgctxt ""
msgid "N~umbering alignment"
msgstr "ნუმერაციის გასწორება"
-#. SGd5
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2780,7 +2506,6 @@ msgctxt ""
msgid "Left"
msgstr "მარცხენა"
-#. ]8wE
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2790,7 +2515,6 @@ msgctxt ""
msgid "Centered"
msgstr "ცენტრირებული"
-#. :mbi
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2800,7 +2524,6 @@ msgctxt ""
msgid "Right"
msgstr "მარჯვენა"
-#. `H}q
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2810,7 +2533,6 @@ msgctxt ""
msgid "Numbering followed by"
msgstr ""
-#. H*vP
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2820,7 +2542,6 @@ msgctxt ""
msgid "Tab stop"
msgstr "ტაბულაციის შეჩერება"
-#. @t]i
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2830,7 +2551,6 @@ msgctxt ""
msgid "Space"
msgstr "სივრცე"
-#. #X\q
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2840,7 +2560,6 @@ msgctxt ""
msgid "Nothing"
msgstr ""
-#. 7/:h
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2850,7 +2569,6 @@ msgctxt ""
msgid "at"
msgstr ""
-#. 5bSr
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2860,7 +2578,6 @@ msgctxt ""
msgid "Aligned at"
msgstr ""
-#. q=6;
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2870,7 +2587,6 @@ msgctxt ""
msgid "Indent at"
msgstr ""
-#. d%#9
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2880,7 +2596,6 @@ msgctxt ""
msgid "Default"
msgstr "სტანდარტული"
-#. B@RJ
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2889,7 +2604,6 @@ msgctxt ""
msgid "Link"
msgstr "ბმული"
-#. 3p9J
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2899,7 +2613,6 @@ msgctxt ""
msgid "Before text"
msgstr "ტექსტამდე"
-#. :(BD
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2909,7 +2622,6 @@ msgctxt ""
msgid "After text"
msgstr "ტექსტის შემდეგ"
-#. -ps@
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2919,7 +2631,6 @@ msgctxt ""
msgid "~First line"
msgstr "~პირველი ხაზი"
-#. M_X8
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2929,7 +2640,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "~ავტომატური"
-#. ?cX^
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2939,7 +2649,6 @@ msgctxt ""
msgid "Indent"
msgstr "ინდენტური"
-#. dU]0
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2949,7 +2658,6 @@ msgctxt ""
msgid "Ab~ove paragraph"
msgstr "აბ~ზაცის ზევით"
-#. AV_o
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2959,7 +2667,6 @@ msgctxt ""
msgid "Below paragraph"
msgstr "აბზაცის ქვევით"
-#. Yqe@
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2969,7 +2676,6 @@ msgctxt ""
msgid "Don't add space between paragraphs of the same style"
msgstr ""
-#. g:KA
#: paragrph.src
#, fuzzy
msgctxt ""
@@ -2980,7 +2686,6 @@ msgctxt ""
msgid "Spacing"
msgstr "დაშორება"
-#. -}wG
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2990,7 +2695,6 @@ msgctxt ""
msgid "Single"
msgstr "ერთმაგი"
-#. 5Z0G
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3000,7 +2704,6 @@ msgctxt ""
msgid "1.5 lines"
msgstr "1.5 ხაზი"
-#. :wIT
#: paragrph.src
#, fuzzy
msgctxt ""
@@ -3011,7 +2714,6 @@ msgctxt ""
msgid "Double"
msgstr "ორმაგი"
-#. m4Q1
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3021,7 +2723,6 @@ msgctxt ""
msgid "Proportional"
msgstr "პროპორციული"
-#. p$9A
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3031,7 +2732,6 @@ msgctxt ""
msgid "At least"
msgstr "სულ მცირე"
-#. ~WXN
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3041,7 +2741,6 @@ msgctxt ""
msgid "Leading"
msgstr "სტრიქონთა დაშორება"
-#. SKqc
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3051,7 +2750,6 @@ msgctxt ""
msgid "Fixed"
msgstr "ფიქსირებული"
-#. 2YK;
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3061,7 +2759,6 @@ msgctxt ""
msgid "of"
msgstr "of"
-#. $47@
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3071,7 +2768,6 @@ msgctxt ""
msgid "Line spacing"
msgstr "ხაზების დაშორება"
-#. DF^-
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3081,7 +2777,6 @@ msgctxt ""
msgid "A~ctivate"
msgstr "ა~ქტივაცია"
-#. pPeY
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3091,7 +2786,6 @@ msgctxt ""
msgid "Register-true"
msgstr "რეგისტრაცია-მართებული"
-#. p\2w
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3100,7 +2794,6 @@ msgctxt ""
msgid "Indents and Spacing"
msgstr "დაშორებები და ინტერვალები"
-#. +iVb
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3110,7 +2803,6 @@ msgctxt ""
msgid "Options"
msgstr "პარამეტრები"
-#. rn^?
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3120,7 +2812,6 @@ msgctxt ""
msgid "~Left"
msgstr "~მარცხენა"
-#. S+nO
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3130,7 +2821,6 @@ msgctxt ""
msgid "Righ~t"
msgstr "მარჯვე~ნა"
-#. \\qF
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3140,7 +2830,6 @@ msgctxt ""
msgid "~Center"
msgstr "ცენტრ~ი"
-#. ^eP~
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3150,7 +2839,6 @@ msgctxt ""
msgid "Justified"
msgstr "გამართული"
-#. -%1v
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3160,7 +2848,6 @@ msgctxt ""
msgid "~Left/Top"
msgstr "~მარცხენა/ზედა"
-#. QM-q
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3170,7 +2857,6 @@ msgctxt ""
msgid "Righ~t/Bottom"
msgstr "მარჯვე~ნა/ქვედა"
-#. e,mA
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3180,7 +2866,6 @@ msgctxt ""
msgid "~Last line"
msgstr "~ბოლო ხაზი"
-#. K+u#
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3190,7 +2875,6 @@ msgctxt ""
msgid "Default"
msgstr "სტანდარტული"
-#. ls1d
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3200,7 +2884,6 @@ msgctxt ""
msgid "Left"
msgstr "მარცხენა"
-#. BkV=
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3210,7 +2893,6 @@ msgctxt ""
msgid "Centered"
msgstr "ცენტრირებული"
-#. v4iU
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3220,7 +2902,6 @@ msgctxt ""
msgid "Justified"
msgstr "გამართული"
-#. #g3s
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3230,7 +2911,6 @@ msgctxt ""
msgid "~Expand single word"
msgstr "~გაშალეთ ერთამგი სიტყვა"
-#. S(\L
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3240,7 +2920,6 @@ msgctxt ""
msgid "Snap to text grid (if active)"
msgstr "ტექსტურ ბადეზე მიმაგრება (თუ აქტიურია)"
-#. X(rr
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3250,7 +2929,6 @@ msgctxt ""
msgid "Text-to-text"
msgstr "Text-to-text"
-#. jT)2
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3260,7 +2938,6 @@ msgctxt ""
msgid "~Alignment"
msgstr "~სწორება"
-#. S+0s
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3270,7 +2947,6 @@ msgctxt ""
msgid "Automatic"
msgstr "ავტომატური"
-#. U#tn
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3280,7 +2956,6 @@ msgctxt ""
msgid "Base line"
msgstr "საბაზო ხაზი"
-#. pHU+
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3290,7 +2965,6 @@ msgctxt ""
msgid "Top"
msgstr "ზედა"
-#. pHHI
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3300,7 +2974,6 @@ msgctxt ""
msgid "Middle"
msgstr "შუა"
-#. i|[!
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3310,7 +2983,6 @@ msgctxt ""
msgid "Bottom"
msgstr "ქვედა"
-#. T1vl
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3320,7 +2992,6 @@ msgctxt ""
msgid "Properties"
msgstr "პარამეტრები"
-#. ;pI?
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3330,7 +3001,6 @@ msgctxt ""
msgid "Text ~direction"
msgstr "ტექსტის მიმართულება"
-#. Sl0L
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3339,7 +3009,6 @@ msgctxt ""
msgid "Alignment"
msgstr "სწორება"
-#. O6\q
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3349,7 +3018,6 @@ msgctxt ""
msgid "A~utomatically"
msgstr "ავტომატური"
-#. s4qf
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3359,7 +3027,6 @@ msgctxt ""
msgid "C~haracters at line end"
msgstr "სიმბოლოები ხაზის ბოლოში"
-#. %kqA
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3369,7 +3036,6 @@ msgctxt ""
msgid "Cha~racters at line begin"
msgstr "სიმბოლოები ხაზის დასწყისში"
-#. ;PO.
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3379,7 +3045,6 @@ msgctxt ""
msgid "~Maximum number of consecutive hyphens"
msgstr "თ~ანმიმდევრული დეფისების მაქსიმალური რაოდენობა"
-#. Omad
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3389,7 +3054,6 @@ msgctxt ""
msgid "Hyphenation"
msgstr "გადატანა"
-#. ]Sp@
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3399,7 +3063,6 @@ msgctxt ""
msgid "Options"
msgstr "პარამეტრები"
-#. E1i\
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3409,7 +3072,6 @@ msgctxt ""
msgid "Breaks"
msgstr "წყვეტები"
-#. rU:)
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3419,7 +3081,6 @@ msgctxt ""
msgid "Insert"
msgstr "ჩასმა"
-#. ^[8,
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3429,7 +3090,6 @@ msgctxt ""
msgid "~Type"
msgstr "~აკრეფა"
-#. +2m-
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3439,7 +3099,6 @@ msgctxt ""
msgid "Page"
msgstr "გვერდი"
-#. (v\9
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3449,7 +3108,6 @@ msgctxt ""
msgid "Column"
msgstr "სვეტი"
-#. 8C1!
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3459,7 +3117,6 @@ msgctxt ""
msgid "Position"
msgstr "მდებარეობა"
-#. VMnE
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3469,7 +3126,6 @@ msgctxt ""
msgid "Before"
msgstr "მდე"
-#. G;4q
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3479,7 +3135,6 @@ msgctxt ""
msgid "After"
msgstr "შემდეგ"
-#. Qx[/
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3489,7 +3144,6 @@ msgctxt ""
msgid "With Page St~yle"
msgstr "გვერდის სტილით"
-#. A||6
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3499,7 +3153,6 @@ msgctxt ""
msgid "Page ~number"
msgstr "გვერდის ნომერი"
-#. 6B?@
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3509,7 +3162,6 @@ msgctxt ""
msgid "~Do not split paragraph"
msgstr "არ გაიყოს "
-#. \/51
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3519,7 +3171,6 @@ msgctxt ""
msgid "~Keep with next paragraph"
msgstr "მომდევნო აბზაცტან ერთად ~დატოვება"
-#. [q5c
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3529,7 +3180,6 @@ msgctxt ""
msgid "~Orphan control"
msgstr "ობლის კონტროლი"
-#. ;)R[
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3539,7 +3189,6 @@ msgctxt ""
msgid "Lines"
msgstr "ხაზები"
-#. s_uO
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3549,7 +3198,6 @@ msgctxt ""
msgid "~Widow control"
msgstr "~ფანფრის კონტროლი"
-#. =LpZ
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3559,7 +3207,6 @@ msgctxt ""
msgid "Lines"
msgstr "ხაზები"
-#. n9mP
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3568,7 +3215,6 @@ msgctxt ""
msgid "Text Flow"
msgstr "ტექსტის დინება"
-#. (Z.s
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3578,7 +3224,6 @@ msgctxt ""
msgid "Line change"
msgstr "ხაზის შეცვლა"
-#. OaEY
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3588,7 +3233,6 @@ msgctxt ""
msgid "Apply list of forbidden characters to the beginning and end of lines"
msgstr "აკრძალული სიმბოლოების სიის მისადაგება ხაზების დასაწყისში და ბოლოში"
-#. -ajB
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3598,7 +3242,6 @@ msgctxt ""
msgid "Allow hanging punctuation"
msgstr "დაკიდებული პუნქტუაციის დაშვება"
-#. _OC;
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3608,7 +3251,6 @@ msgctxt ""
msgid "Apply spacing between Asian, Latin and Complex text"
msgstr "ჰარეების გამოყენება აზიურ, ლათინურ და შერეულ ტექსტს შორის"
-#. Wkuv
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3617,7 +3259,6 @@ msgctxt ""
msgid "Asian Typography"
msgstr "აზიური ტიპოგრაფია"
-#. Z|=E
#: paragrph.src
#, fuzzy
msgctxt ""
@@ -3627,7 +3268,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. ]/7=
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3636,7 +3276,6 @@ msgctxt ""
msgid "Page Style"
msgstr "გვერდის სტილი"
-#. lJ(k
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3646,7 +3285,6 @@ msgctxt ""
msgid "Event"
msgstr "მოვლენა"
-#. i0E2
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3656,7 +3294,6 @@ msgctxt ""
msgid "Assigned macro"
msgstr ""
-#. qfu2
#: macroass.src
#, fuzzy
msgctxt ""
@@ -3667,7 +3304,6 @@ msgctxt ""
msgid "~Existing macros\n"
msgstr "არსებული მაკროე~ბი:"
-#. ts5_
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3677,7 +3313,6 @@ msgctxt ""
msgid "~Assign"
msgstr "~მინიჭება"
-#. Jft1
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3687,7 +3322,6 @@ msgctxt ""
msgid "~Remove"
msgstr "Remove"
-#. \1di
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3697,7 +3331,6 @@ msgctxt ""
msgid "Macros"
msgstr "მარკოსები"
-#. mt7o
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3706,7 +3339,6 @@ msgctxt ""
msgid "Assign Macro"
msgstr ""
-#. $-R1
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3716,7 +3348,6 @@ msgctxt ""
msgid "Replace"
msgstr "ჩანაცვლება"
-#. %iDN
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3726,7 +3357,6 @@ msgctxt ""
msgid "Exceptions"
msgstr "გამონაკლისები"
-#. r$zB
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3736,7 +3366,6 @@ msgctxt ""
msgid "Options"
msgstr "პარამეტრები"
-#. ]?@*
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3746,7 +3375,6 @@ msgctxt ""
msgid "Options"
msgstr "პარამეტრები"
-#. h#j_
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3756,7 +3384,6 @@ msgctxt ""
msgid "Localized Options"
msgstr ""
-#. (O)t
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3766,7 +3393,6 @@ msgctxt ""
msgid "Word Completion"
msgstr "სიტყვის დასრულება"
-#. K({T
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3776,7 +3402,6 @@ msgctxt ""
msgid "Smart Tags"
msgstr ""
-#. d@N`
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3786,7 +3411,6 @@ msgctxt ""
msgid "Replacements and exceptions for language:"
msgstr "ჩანაცვლებები და გამონაკლისები ენისათვის:"
-#. `jKj
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3795,7 +3419,6 @@ msgctxt ""
msgid "AutoCorrect"
msgstr "ავტოკორექცია"
-#. mv.C
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3805,7 +3428,6 @@ msgctxt ""
msgid "Use replacement table"
msgstr "ჩანაცვლების ცხრილის გამოყენება"
-#. 0X7D
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3815,7 +3437,6 @@ msgctxt ""
msgid "Correct TWo INitial CApitals"
msgstr "Correct TWo INitial CApitals"
-#. FMV4
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3825,7 +3446,6 @@ msgctxt ""
msgid "Capitalize first letter of every sentence"
msgstr "ყოველი წინანდადების პირველი სიმბოლო მხედრულით"
-#. |L6G
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3835,7 +3455,6 @@ msgctxt ""
msgid "Automatic *bold* and _underline_"
msgstr "ავტომატური *გამუქება* და _ხაზგასმა_"
-#. H[+g
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3845,7 +3464,6 @@ msgctxt ""
msgid "Ignore double spaces"
msgstr "ორმაგი ჰარეს უგულვებელყოფა"
-#. X,n4
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3855,7 +3473,6 @@ msgctxt ""
msgid "URL Recognition"
msgstr "URL-ის ამოცნობა"
-#. S+Mv
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3865,7 +3482,6 @@ msgctxt ""
msgid "Replace dashes"
msgstr "ჩაანაცვლეთ ტირეები"
-#. B`19
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3875,7 +3491,6 @@ msgctxt ""
msgid "Correct accidental use of cAPS LOCK key"
msgstr ""
-#. ukmo
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3884,7 +3499,6 @@ msgctxt ""
msgid "Settings"
msgstr "პარამეტრები"
-#. kXDp
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3894,7 +3508,6 @@ msgctxt ""
msgid "~Edit..."
msgstr "ჩ~ასწორება"
-#. _iVG
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3904,7 +3517,6 @@ msgctxt ""
msgid "[M]"
msgstr "[M]"
-#. E\g,
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3914,7 +3526,6 @@ msgctxt ""
msgid "[T]"
msgstr "[T]"
-#. pT*_
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3924,7 +3535,6 @@ msgctxt ""
msgid "[M]: Replace while modifying existing text"
msgstr "[M]: ჩაანაცვლეთ, სანამ მოდიფიცეირებადი ტექსტი გახსნილია"
-#. 0Qc8
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3934,7 +3544,6 @@ msgctxt ""
msgid "[T]: AutoFormat/AutoCorrect while typing"
msgstr "[T]: ავტოფორმატირება/ავტოკორექცია ტექსტის აკრეფვისას"
-#. M.gd
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3944,7 +3553,6 @@ msgctxt ""
msgid "Remove blank paragraphs"
msgstr "ცარიელი აბზაცების ამოღება"
-#. `1g0
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3954,7 +3562,6 @@ msgctxt ""
msgid "Replace Custom Styles"
msgstr "მორგებული სტილების ჩანაცვლება"
-#. 3.Pp
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3964,7 +3571,6 @@ msgctxt ""
msgid "Replace bullets with: "
msgstr "ბულეტების ჩანაცვლება:"
-#. -j6z
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3974,7 +3580,6 @@ msgctxt ""
msgid "Combine single line paragraphs if length greater than"
msgstr "გააერთიანეთ ერთხაზიანი აბზაცები, თუ მათი სიგრძე მეტია ვიდრე"
-#. ag=D
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3984,7 +3589,6 @@ msgctxt ""
msgid "Apply numbering - symbol: "
msgstr "ნუმერაციის - სიმბოლოს მოსადაგება:"
-#. G_2y
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3994,7 +3598,6 @@ msgctxt ""
msgid "Apply border"
msgstr "ჩარჩოს მისადაგება"
-#. 0]MR
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4004,7 +3607,6 @@ msgctxt ""
msgid "Create table"
msgstr "ცხრილის შექმნა"
-#. 8kir
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4014,7 +3616,6 @@ msgctxt ""
msgid "Apply Styles"
msgstr "სტილის მისადაგება"
-#. +[L8
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4024,7 +3625,6 @@ msgctxt ""
msgid "Delete spaces and tabs at beginning and end of paragraph"
msgstr "აბზაცის დასაწყისში და ბოლოში ჰარეების და ტაბულაციის წაშლა"
-#. ]UYr
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4034,7 +3634,6 @@ msgctxt ""
msgid "Delete spaces and tabs at end and start of line"
msgstr "ხაზის დასაწყისში და ბოლოში ჰარეების და ტაბულაციის წაშლა"
-#. ^1|!
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4044,7 +3643,6 @@ msgctxt ""
msgid "Minimum size"
msgstr "მინიმალური ზომა"
-#. 6\kd
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4053,7 +3651,6 @@ msgctxt ""
msgid "Combine"
msgstr "გაერთიანება"
-#. Md6)
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4063,7 +3660,6 @@ msgctxt ""
msgid "Repla~ce"
msgstr "ჩანაცვ~ლება"
-#. v=7;
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4073,7 +3669,6 @@ msgctxt ""
msgid "~With:"
msgstr "~სიგანე:"
-#. j!Eh
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4083,7 +3678,6 @@ msgctxt ""
msgid "~Text only"
msgstr "~მხოლოდ ტექსტი"
-#. ~H{[
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4093,7 +3687,6 @@ msgctxt ""
msgid "~New"
msgstr "~ახალი"
-#. FeJZ
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4103,7 +3696,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~წაშლა"
-#. 5=_`
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4113,7 +3705,6 @@ msgctxt ""
msgid "~Replace"
msgstr "~ჩანაცვლება"
-#. ECB7
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4123,7 +3714,6 @@ msgctxt ""
msgid "Abbreviations (no subsequent capital)"
msgstr "აბრევიატურა (ქვედა რეგისტრის სიმბოლოების გარეშე)"
-#. qJB2
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4133,7 +3723,6 @@ msgctxt ""
msgid "~New"
msgstr "~ახალი"
-#. )H[d
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4143,7 +3732,6 @@ msgctxt ""
msgid "~Delete"
msgstr "~წაშლა"
-#. )n=I
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4153,7 +3741,6 @@ msgctxt ""
msgid "~AutoInclude"
msgstr "~ავტოჩასმა"
-#. qji9
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4163,7 +3750,6 @@ msgctxt ""
msgid "Words with TWo INitial CApitals"
msgstr "სიტყვები დაწყებული ორი მთავრული ასოთი"
-#. E{Gr
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4173,7 +3759,6 @@ msgctxt ""
msgid "Ne~w"
msgstr "ა~ხალი"
-#. Jd!_
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4183,7 +3768,6 @@ msgctxt ""
msgid "Dele~te"
msgstr "წაშ~ლა"
-#. a7:W
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4193,7 +3777,6 @@ msgctxt ""
msgid "A~utoInclude"
msgstr "ავ~ტოჩასმა"
-#. ^}`W
#: autocdlg.src
#, fuzzy
msgctxt ""
@@ -4204,7 +3787,6 @@ msgctxt ""
msgid "New abbreviations"
msgstr "შემცირება"
-#. RSVZ
#: autocdlg.src
#, fuzzy
msgctxt ""
@@ -4215,7 +3797,6 @@ msgctxt ""
msgid "Delete abbreviations"
msgstr "პარამეტრების წაშლა"
-#. auO@
#: autocdlg.src
#, fuzzy
msgctxt ""
@@ -4226,7 +3807,6 @@ msgctxt ""
msgid "New words with two initial capitals"
msgstr "სიტყვები დაწყებული ორი მთავრული ასოთი"
-#. A.R2
#: autocdlg.src
#, fuzzy
msgctxt ""
@@ -4237,7 +3817,6 @@ msgctxt ""
msgid "Delete words with two initial capitals"
msgstr "სიტყვები დაწყებული ორი მთავრული ასოთი"
-#. JFG?
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4247,7 +3826,6 @@ msgctxt ""
msgid "[M]"
msgstr "[M]"
-#. dc!2
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4257,7 +3835,6 @@ msgctxt ""
msgid "[T]"
msgstr "[T]"
-#. C+Ug
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4267,7 +3844,6 @@ msgctxt ""
msgid "Add non breaking space before specific punctuation marks in french text"
msgstr ""
-#. ]2VJ
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4277,7 +3853,6 @@ msgctxt ""
msgid "Format ordinal numbers suffixes (1st -> 1^st)"
msgstr ""
-#. -A%1
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4287,7 +3862,6 @@ msgctxt ""
msgid "Single quotes"
msgstr "ერთმაგი ბრჭყალები"
-#. 2ie3
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4297,7 +3871,6 @@ msgctxt ""
msgid "Repla~ce"
msgstr "ჩანაცვლე~ბა"
-#. B74f
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4307,7 +3880,6 @@ msgctxt ""
msgid "~Start quote:"
msgstr "გა~მხსნელი ბრჭყალი:"
-#. p/_n
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4317,7 +3889,6 @@ msgctxt ""
msgid "~End quote:"
msgstr "~დამხურავი ბრჭყალი:"
-#. EX/O
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4327,7 +3898,6 @@ msgctxt ""
msgid "~Default"
msgstr "~სტანდარტული"
-#. [iUT
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4337,7 +3907,6 @@ msgctxt ""
msgid "Double quotes"
msgstr "ორმაგი ბრჭყალი"
-#. )t3#
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4347,7 +3916,6 @@ msgctxt ""
msgid "Repl~ace"
msgstr "ჩანა~ცვლება"
-#. DrFf
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4357,7 +3925,6 @@ msgctxt ""
msgid "Start q~uote:"
msgstr "გა~მხსნელი ბრჭყალი:"
-#. :3`Z
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4367,7 +3934,6 @@ msgctxt ""
msgid "E~nd quote:"
msgstr "~დამხურავი ბრჭყალი:"
-#. !7g6
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4377,7 +3943,6 @@ msgctxt ""
msgid "De~fault"
msgstr "ნაგუ~ლისხმევი"
-#. GPLo
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4387,7 +3952,6 @@ msgctxt ""
msgid "Start quote"
msgstr "გამხსნელი ბრჭყალი"
-#. ).eR
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4397,7 +3961,6 @@ msgctxt ""
msgid "End quote"
msgstr "დამხურავი ბრჭყალი:"
-#. N@eH
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4407,7 +3970,6 @@ msgctxt ""
msgid "Default"
msgstr "სტანდარტული"
-#. ^)Z|
#: autocdlg.src
#, fuzzy
msgctxt ""
@@ -4418,7 +3980,6 @@ msgctxt ""
msgid "Single quotes default"
msgstr "ერთმაგი ბრჭყალები"
-#. |kXi
#: autocdlg.src
#, fuzzy
msgctxt ""
@@ -4429,7 +3990,6 @@ msgctxt ""
msgid "Double quotes default"
msgstr "ორმაგი ბრჭყალი"
-#. 5X,b
#: autocdlg.src
#, fuzzy
msgctxt ""
@@ -4440,7 +4000,6 @@ msgctxt ""
msgid "Start quote of single quotes"
msgstr "ერთმაგი ბრჭყალები"
-#. ]QB^
#: autocdlg.src
#, fuzzy
msgctxt ""
@@ -4451,7 +4010,6 @@ msgctxt ""
msgid "Start quote of double quotes"
msgstr "ერთმაგი ბრჭყალები"
-#. $HU7
#: autocdlg.src
#, fuzzy
msgctxt ""
@@ -4462,7 +4020,6 @@ msgctxt ""
msgid "End quote of single quotes"
msgstr "ერთმაგი ბრჭყალები"
-#. SjPl
#: autocdlg.src
#, fuzzy
msgctxt ""
@@ -4473,7 +4030,6 @@ msgctxt ""
msgid "End quote of double quotes"
msgstr "ორმაგი ბრჭყალი"
-#. LQ^p
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4482,7 +4038,6 @@ msgctxt ""
msgid "Localized Options"
msgstr ""
-#. bb2+
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4492,7 +4047,6 @@ msgctxt ""
msgid "Enable word ~completion"
msgstr "სიტყვის დასრულ~ების ნების დართვა"
-#. ~kT\
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4502,7 +4056,6 @@ msgctxt ""
msgid "~Append space"
msgstr "~სივრცის მისადაგება"
-#. 5Ilv
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4512,7 +4065,6 @@ msgctxt ""
msgid "~Show as tip"
msgstr "~რჩევის შვენება"
-#. )rBV
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4522,7 +4074,6 @@ msgctxt ""
msgid "C~ollect words"
msgstr "სი~ტყვების გაერთიანება"
-#. Ox(#
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4532,7 +4083,6 @@ msgctxt ""
msgid "~When closing a document, remove the words collected from it from the list"
msgstr ""
-#. k-1!
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4542,7 +4092,6 @@ msgctxt ""
msgid "Acc~ept with"
msgstr "მი~სადაგება"
-#. eogE
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4552,7 +4101,6 @@ msgctxt ""
msgid "Mi~n. word length"
msgstr "სიტყვის მინიმალ~ური სიგრძე"
-#. %)vT
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4562,7 +4110,6 @@ msgctxt ""
msgid "~Max. entries"
msgstr "მაქს. შ~ენატანები"
-#. 7RkL
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4572,7 +4119,6 @@ msgctxt ""
msgid "~Delete Entry"
msgstr "შენ~ატანის წაშლა"
-#. zT|y
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4581,7 +4127,6 @@ msgctxt ""
msgid "Word Completion"
msgstr "სიტყვის დასრულება"
-#. OGA)
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4591,7 +4136,6 @@ msgctxt ""
msgid "Label text with smart tags"
msgstr ""
-#. O4k5
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4601,7 +4145,6 @@ msgctxt ""
msgid "Currently installed smart tags"
msgstr ""
-#. Czo^
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4611,7 +4154,6 @@ msgctxt ""
msgid "Properties..."
msgstr "თვისებები"
-#. ME8-
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4620,7 +4162,6 @@ msgctxt ""
msgid "Smart Tags"
msgstr ""
-#. C%az
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4630,7 +4171,6 @@ msgctxt ""
msgid "Line properties"
msgstr "ხაზის თვისებები"
-#. 2RU!
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4640,7 +4180,6 @@ msgctxt ""
msgid "~Style"
msgstr "~სტილი"
-#. @6!$
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4650,7 +4189,6 @@ msgctxt ""
msgid "Colo~r"
msgstr "~ფერი"
-#. \D?-
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4660,7 +4198,6 @@ msgctxt ""
msgid "~Width"
msgstr "ს~იგანე"
-#. -@}2
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4670,7 +4207,6 @@ msgctxt ""
msgid "~Transparency"
msgstr "~გამჭვირვალეობა"
-#. Hpp[
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4680,7 +4216,6 @@ msgctxt ""
msgid "Arrow styles"
msgstr "ისრის სტილები"
-#. 3OsL
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4690,7 +4225,6 @@ msgctxt ""
msgid "St~yle"
msgstr "სტ~ილი"
-#. O7$H
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4700,7 +4234,6 @@ msgctxt ""
msgid "Wi~dth"
msgstr "სი~განე"
-#. 6d+_
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4710,7 +4243,6 @@ msgctxt ""
msgid "Ce~nter"
msgstr "~ცენტრი"
-#. (r[L
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4720,7 +4252,6 @@ msgctxt ""
msgid "C~enter"
msgstr "ც~ენტრი"
-#. ~=o$
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4730,7 +4261,6 @@ msgctxt ""
msgid "Synchroni~ze ends"
msgstr "ბოლოების სინქრონიზაცია"
-#. KoFj
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4740,7 +4270,6 @@ msgctxt ""
msgid "Corner and cap styles"
msgstr ""
-#. \lyH
#: tabline.src
#, fuzzy
msgctxt ""
@@ -4751,7 +4280,6 @@ msgctxt ""
msgid "~Corner style"
msgstr "კუთხის სტილი"
-#. (bCn
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4761,7 +4289,6 @@ msgctxt ""
msgid "Rounded"
msgstr "მომრგვალებული"
-#. s4nS
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4771,7 +4298,6 @@ msgctxt ""
msgid "- none -"
msgstr "- არცერთი -"
-#. A[nJ
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4781,7 +4307,6 @@ msgctxt ""
msgid "Mitered"
msgstr "გაშუალებული"
-#. XHol
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4791,7 +4316,6 @@ msgctxt ""
msgid "Beveled"
msgstr "დაქანებული"
-#. `e16
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4801,7 +4325,6 @@ msgctxt ""
msgid "Ca~p style"
msgstr ""
-#. /vXe
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4811,7 +4334,6 @@ msgctxt ""
msgid "Flat"
msgstr "ბრტყელი"
-#. \%w@
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4821,7 +4343,6 @@ msgctxt ""
msgid "Round"
msgstr "მრგვალი"
-#. L}p.
#: tabline.src
#, fuzzy
msgctxt ""
@@ -4832,7 +4353,6 @@ msgctxt ""
msgid "Square"
msgstr "კვადრატული"
-#. q.CD
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4842,7 +4362,6 @@ msgctxt ""
msgid "Icon"
msgstr "ხატულა"
-#. @bEf
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4852,7 +4371,6 @@ msgctxt ""
msgid "No Symbol"
msgstr "სიმბოლოს გარეშე"
-#. [HWA
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4862,7 +4380,6 @@ msgctxt ""
msgid "Automatic"
msgstr "ავტომატური"
-#. wNoJ
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4872,7 +4389,6 @@ msgctxt ""
msgid "From file..."
msgstr "ფაილიდან..."
-#. /_t{
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4882,7 +4398,6 @@ msgctxt ""
msgid "Gallery"
msgstr "გალერეა"
-#. Rrei
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4892,7 +4407,6 @@ msgctxt ""
msgid "Symbols"
msgstr "სიმბლოები"
-#. e=WC
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4902,7 +4416,6 @@ msgctxt ""
msgid "Select..."
msgstr "არჩევა..."
-#. ,L[E
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4912,7 +4425,6 @@ msgctxt ""
msgid "Width"
msgstr "სიგანე"
-#. faep
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4922,7 +4434,6 @@ msgctxt ""
msgid "Height"
msgstr "სიმაღლე"
-#. O*%]
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4932,7 +4443,6 @@ msgctxt ""
msgid "Keep ratio"
msgstr "თანაფარდობის შენარჩუნება"
-#. Y[la
#: tabline.src
#, fuzzy
msgctxt ""
@@ -4943,7 +4453,6 @@ msgctxt ""
msgid "Style"
msgstr "სტილი"
-#. lB[j
#: tabline.src
#, fuzzy
msgctxt ""
@@ -4954,7 +4463,6 @@ msgctxt ""
msgid "Start style"
msgstr "საწყისი თარიღი"
-#. d8%,
#: tabline.src
#, fuzzy
msgctxt ""
@@ -4965,7 +4473,6 @@ msgctxt ""
msgid "End style"
msgstr "ხაზის სტილი"
-#. kcar
#: tabline.src
#, fuzzy
msgctxt ""
@@ -4976,7 +4483,6 @@ msgctxt ""
msgid "Start width"
msgstr "~დაწყება"
-#. pM`y
#: tabline.src
#, fuzzy
msgctxt ""
@@ -4987,7 +4493,6 @@ msgctxt ""
msgid "End width"
msgstr "ხაზის სისქე"
-#. %an!
#: tabline.src
#, fuzzy
msgctxt ""
@@ -4998,7 +4503,6 @@ msgctxt ""
msgid "Start with center"
msgstr "~დაწყება"
-#. V-Kg
#: tabline.src
#, fuzzy
msgctxt ""
@@ -5009,7 +4513,6 @@ msgctxt ""
msgid "End with center"
msgstr "მარჯვნივ ცენტრში"
-#. Y[a%
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5018,7 +4521,6 @@ msgctxt ""
msgid "Lines"
msgstr "ხაზები"
-#. R?]H
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5028,7 +4530,6 @@ msgctxt ""
msgid "Properties"
msgstr "თვისებები"
-#. ;rab
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5038,7 +4539,6 @@ msgctxt ""
msgid "~Type"
msgstr "~აკრეფა"
-#. RU*2
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5048,7 +4548,6 @@ msgctxt ""
msgid "Dot"
msgstr "წერტილი"
-#. )_!j
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5058,7 +4557,6 @@ msgctxt ""
msgid "Dash"
msgstr "ტირე"
-#. 7O2m
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5068,7 +4566,6 @@ msgctxt ""
msgid "Dot"
msgstr "წერტილი"
-#. ^F}_
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5078,7 +4575,6 @@ msgctxt ""
msgid "Dash"
msgstr "ტირე"
-#. @,:%
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5088,7 +4584,6 @@ msgctxt ""
msgid "~Number"
msgstr "~ციფრი"
-#. 9wnD
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5098,7 +4593,6 @@ msgctxt ""
msgid "~Length"
msgstr "ს~იგრძე"
-#. W%eJ
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5108,7 +4602,6 @@ msgctxt ""
msgid "~Spacing"
msgstr "~დაშორება"
-#. #-OS
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5118,7 +4611,6 @@ msgctxt ""
msgid "~Fit to line width"
msgstr "~ხაზის სიგანეზე მორგება"
-#. S^Zl
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5128,7 +4620,6 @@ msgctxt ""
msgid "Line style"
msgstr "ხაზის სტილი"
-#. 4ov8
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5138,7 +4629,6 @@ msgctxt ""
msgid "~Add..."
msgstr "~დამატება..."
-#. }T1#
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5148,7 +4638,6 @@ msgctxt ""
msgid "~Modify..."
msgstr "შ~ეცვლა..."
-#. ?=2c
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5158,7 +4647,6 @@ msgctxt ""
msgid "~Delete..."
msgstr "წ~აშლა..."
-#. BF%@
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5168,7 +4656,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. 4Cd.
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5178,7 +4665,6 @@ msgctxt ""
msgid "Load Line Styles"
msgstr "Load Line Styles"
-#. igk%
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5188,7 +4674,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. 7.fE
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5198,7 +4683,6 @@ msgctxt ""
msgid "Save Line Styles"
msgstr "Save Line Styles"
-#. n%Vq
#: tabline.src
#, fuzzy
msgctxt ""
@@ -5209,7 +4693,6 @@ msgctxt ""
msgid "Start type"
msgstr "საწყისი თარიღი"
-#. p}ZC
#: tabline.src
#, fuzzy
msgctxt ""
@@ -5220,7 +4703,6 @@ msgctxt ""
msgid "End type"
msgstr "ბოლო თარიღი"
-#. vcqy
#: tabline.src
#, fuzzy
msgctxt ""
@@ -5231,7 +4713,6 @@ msgctxt ""
msgid "Start number"
msgstr "თავიდან გადანომვრა"
-#. h3AC
#: tabline.src
#, fuzzy
msgctxt ""
@@ -5242,7 +4723,6 @@ msgctxt ""
msgid "End number"
msgstr "დანომრვის გარეშე"
-#. QtEh
#: tabline.src
#, fuzzy
msgctxt ""
@@ -5253,7 +4733,6 @@ msgctxt ""
msgid "Start length"
msgstr "დაწყება"
-#. ?3ke
#: tabline.src
#, fuzzy
msgctxt ""
@@ -5264,7 +4743,6 @@ msgctxt ""
msgid "End length"
msgstr "ხაზის სიგრძე"
-#. +}V3
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5273,7 +4751,6 @@ msgctxt ""
msgid "Define line styles"
msgstr "ხაზის სტილების განსაზღვრა"
-#. eF$x
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5283,7 +4760,6 @@ msgctxt ""
msgid "Organize arrow styles"
msgstr "ისრიების სტილების მოწყობა"
-#. dexG
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5293,7 +4769,6 @@ msgctxt ""
msgid "Add a selected object to create new arrow styles."
msgstr "ახალი ისრის სტილის შესაქმნელად მონიშნული ობიექტის დმატება"
-#. pN,$
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5303,7 +4778,6 @@ msgctxt ""
msgid "Arrow style"
msgstr "ისრის სტილი"
-#. ~Vj/
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5313,7 +4787,6 @@ msgctxt ""
msgid "~Title"
msgstr "~სათაური"
-#. ~-~j
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5323,7 +4796,6 @@ msgctxt ""
msgid "~Add..."
msgstr "~დამატება..."
-#. *5X^
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5333,7 +4805,6 @@ msgctxt ""
msgid "~Modify..."
msgstr "შ~ეცვლა..."
-#. gab$
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5343,7 +4814,6 @@ msgctxt ""
msgid "~Delete..."
msgstr "წ~აშლა..."
-#. =aen
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5353,7 +4823,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. JGf;
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5363,7 +4832,6 @@ msgctxt ""
msgid "Load Arrow Styles"
msgstr "Load Arrow Styles"
-#. mdqE
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5373,7 +4841,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. ,)vS
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5383,7 +4850,6 @@ msgctxt ""
msgid "Save Arrow Styles"
msgstr "Save Arrow Styles"
-#. g*JP
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5392,7 +4858,6 @@ msgctxt ""
msgid "Arrowheads"
msgstr "ისრისთავები"
-#. ciPm
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5402,7 +4867,6 @@ msgctxt ""
msgid "Line"
msgstr "ხაზი"
-#. i$sT
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5412,7 +4876,6 @@ msgctxt ""
msgid "Shadow"
msgstr "ჩრდილი"
-#. #0Y4
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5422,7 +4885,6 @@ msgctxt ""
msgid "Line Styles"
msgstr "ხაზის სტილი"
-#. +,@9
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5432,7 +4894,6 @@ msgctxt ""
msgid "Arrow Styles"
msgstr "ისრის სტილი"
-#. H-#b
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5441,7 +4902,6 @@ msgctxt ""
msgid "Line"
msgstr "ხაზი"
-#. /|U|
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5451,7 +4911,6 @@ msgctxt ""
msgid "~Category"
msgstr "~კატეგორია"
-#. !Z5N
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5461,7 +4920,6 @@ msgctxt ""
msgid "All"
msgstr "ყველა"
-#. QQOp
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5471,7 +4929,6 @@ msgctxt ""
msgid "User-defined"
msgstr "მომხმარებლის მიერ განსაზღვრული"
-#. :I\4
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5481,7 +4938,6 @@ msgctxt ""
msgid "Number"
msgstr "რიცხვი"
-#. ^cP:
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5491,7 +4947,6 @@ msgctxt ""
msgid "Percent"
msgstr "პროცენტი"
-#. Q*F8
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5501,7 +4956,6 @@ msgctxt ""
msgid "Currency"
msgstr "ვალუტა"
-#. )s1O
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5511,7 +4965,6 @@ msgctxt ""
msgid "Date"
msgstr "თარიღი"
-#. sG:@
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5521,7 +4974,6 @@ msgctxt ""
msgid "Time"
msgstr "დრო"
-#. fj6?
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5531,7 +4983,6 @@ msgctxt ""
msgid "Scientific"
msgstr "სამეცნიერო"
-#. ^A8z
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5541,7 +4992,6 @@ msgctxt ""
msgid "Fraction"
msgstr "ფრაქცია"
-#. (iMc
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5551,7 +5001,6 @@ msgctxt ""
msgid "Boolean Value"
msgstr "ლოგიკური მნიშვნელობა"
-#. cqPK
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5561,7 +5010,6 @@ msgctxt ""
msgid "Text"
msgstr "ტექსტი"
-#. |4Oa
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5571,7 +5019,6 @@ msgctxt ""
msgid "~Format code"
msgstr "~ფორმატირებული კოდი"
-#. H[8Z
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5581,7 +5028,6 @@ msgctxt ""
msgid "F~ormat"
msgstr "ფ~ორმატირება"
-#. sq*T
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5591,7 +5037,6 @@ msgctxt ""
msgid "Automatically"
msgstr "ავტომატური"
-#. ,8.k
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5601,7 +5046,6 @@ msgctxt ""
msgid "~Decimal places"
msgstr "~ათობითი ნიშნები"
-#. !1fL
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5611,7 +5055,6 @@ msgctxt ""
msgid "Leading ~zeroes"
msgstr "საწყისი ~ნულები"
-#. QV;e
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5621,7 +5064,6 @@ msgctxt ""
msgid "~Negative numbers red"
msgstr "~უარყოფითი რიცხვები წითლად"
-#. {Ro/
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5631,7 +5073,6 @@ msgctxt ""
msgid "~Thousands separator"
msgstr "~ათასის გამყოფი"
-#. %3E4
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5641,7 +5082,6 @@ msgctxt ""
msgid "Options"
msgstr "პარამეტრები"
-#. [O\)
#: numfmt.src
#, fuzzy
msgctxt ""
@@ -5652,7 +5092,6 @@ msgctxt ""
msgid "~Language"
msgstr "~ენა"
-#. X@}M
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5662,7 +5101,6 @@ msgctxt ""
msgid "So~urce format"
msgstr "~წყაროს ფორმატირება"
-#. qG\P
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5672,7 +5110,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. G[Q(
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5682,7 +5119,6 @@ msgctxt ""
msgid "Add"
msgstr "Add"
-#. K,^/
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5692,7 +5128,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. *BMt
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5702,7 +5137,6 @@ msgctxt ""
msgid "Remove"
msgstr "Remove"
-#. A/zQ
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5712,7 +5146,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. Q5D7
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5722,7 +5155,6 @@ msgctxt ""
msgid "Edit Comment"
msgstr "Edit Comment"
-#. bH#n
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5732,7 +5164,6 @@ msgctxt ""
msgid "Automatic"
msgstr "ავტომატური"
-#. DUv#
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5741,7 +5172,6 @@ msgctxt ""
msgid "Number Format"
msgstr "ციფრების ფორმატი"
-#. EWij
#: bbdlg.src
msgctxt ""
"bbdlg.src\n"
@@ -5751,7 +5181,6 @@ msgctxt ""
msgid "Borders"
msgstr "საზღვრები"
-#. ?^{_
#: bbdlg.src
msgctxt ""
"bbdlg.src\n"
@@ -5761,7 +5190,6 @@ msgctxt ""
msgid "Background"
msgstr "ფონი"
-#. b4iR
#: bbdlg.src
msgctxt ""
"bbdlg.src\n"
@@ -5770,7 +5198,6 @@ msgctxt ""
msgid "Border / Background"
msgstr "ჩარჩო / ფონი"
-#. NkV_
#: page.src
msgctxt ""
"page.src\n"
@@ -5780,7 +5207,6 @@ msgctxt ""
msgid "Paper format"
msgstr "ფურცლის ზომა"
-#. jQ+m
#: page.src
msgctxt ""
"page.src\n"
@@ -5790,7 +5216,6 @@ msgctxt ""
msgid "~Format"
msgstr "~ფორმატი"
-#. *cE#
#: page.src
msgctxt ""
"page.src\n"
@@ -5800,7 +5225,6 @@ msgctxt ""
msgid "~Width"
msgstr "ს~იგანე"
-#. 9a{M
#: page.src
msgctxt ""
"page.src\n"
@@ -5810,7 +5234,6 @@ msgctxt ""
msgid "~Height"
msgstr "ს~იმაღლე"
-#. .8Jh
#: page.src
msgctxt ""
"page.src\n"
@@ -5820,7 +5243,6 @@ msgctxt ""
msgid "Orientation"
msgstr "ორიენტაცია"
-#. +Q$L
#: page.src
msgctxt ""
"page.src\n"
@@ -5830,7 +5252,6 @@ msgctxt ""
msgid "~Portrait"
msgstr "შ~ვეული"
-#. \y3M
#: page.src
msgctxt ""
"page.src\n"
@@ -5840,7 +5261,6 @@ msgctxt ""
msgid "L~andscape"
msgstr "თ~არაზული"
-#. x|e8
#: page.src
msgctxt ""
"page.src\n"
@@ -5850,7 +5270,6 @@ msgctxt ""
msgid "~Text direction"
msgstr "ტექსტის მიმართულება"
-#. B,2B
#: page.src
msgctxt ""
"page.src\n"
@@ -5860,7 +5279,6 @@ msgctxt ""
msgid "Paper ~tray"
msgstr "ფურცლის ~ჯამი"
-#. -2`o
#: page.src
msgctxt ""
"page.src\n"
@@ -5870,7 +5288,6 @@ msgctxt ""
msgid "Margins"
msgstr "კიდეები"
-#. Y/qs
#: page.src
msgctxt ""
"page.src\n"
@@ -5880,7 +5297,6 @@ msgctxt ""
msgid "~Left"
msgstr "მ~არცხენა"
-#. xn-)
#: page.src
msgctxt ""
"page.src\n"
@@ -5890,7 +5306,6 @@ msgctxt ""
msgid "~Right"
msgstr "მ~არჯვენა"
-#. dmv8
#: page.src
msgctxt ""
"page.src\n"
@@ -5900,7 +5315,6 @@ msgctxt ""
msgid "~Top"
msgstr "~ზედა"
-#. TXd3
#: page.src
msgctxt ""
"page.src\n"
@@ -5910,7 +5324,6 @@ msgctxt ""
msgid "~Bottom"
msgstr "~ქვედა"
-#. ;YeP
#: page.src
msgctxt ""
"page.src\n"
@@ -5920,7 +5333,6 @@ msgctxt ""
msgid "Layout settings"
msgstr "განლაგების პარამეტრები"
-#. \/\B
#: page.src
msgctxt ""
"page.src\n"
@@ -5930,7 +5342,6 @@ msgctxt ""
msgid "Page layout"
msgstr "გვერდის განლაგება"
-#. OKAX
#: page.src
msgctxt ""
"page.src\n"
@@ -5940,7 +5351,6 @@ msgctxt ""
msgid "Right and left"
msgstr "მარჯვნივ და მარცხნივ"
-#. d$K5
#: page.src
msgctxt ""
"page.src\n"
@@ -5950,7 +5360,6 @@ msgctxt ""
msgid "Mirrored"
msgstr "სარკისებურად"
-#. zkb9
#: page.src
msgctxt ""
"page.src\n"
@@ -5960,7 +5369,6 @@ msgctxt ""
msgid "Only right"
msgstr "მხოლოდ მარჯვენა"
-#. ;*O#
#: page.src
msgctxt ""
"page.src\n"
@@ -5970,7 +5378,6 @@ msgctxt ""
msgid "Only left"
msgstr "მხოლოდ მარცხენა"
-#. S_Tj
#: page.src
msgctxt ""
"page.src\n"
@@ -5980,7 +5387,6 @@ msgctxt ""
msgid "For~mat"
msgstr "ფორ~მატი"
-#. G%B}
#: page.src
#, fuzzy
msgctxt ""
@@ -5991,7 +5397,6 @@ msgctxt ""
msgid "1, 2, 3, ..."
msgstr "1, 2, 3, ..."
-#. *E(=
#: page.src
#, fuzzy
msgctxt ""
@@ -6002,7 +5407,6 @@ msgctxt ""
msgid "A, B, C, ..."
msgstr "A, B, C, ..."
-#. :qQZ
#: page.src
#, fuzzy
msgctxt ""
@@ -6013,7 +5417,6 @@ msgctxt ""
msgid "a, b, c, ..."
msgstr "ა, ბ, გ, ..."
-#. +kV=
#: page.src
#, fuzzy
msgctxt ""
@@ -6024,7 +5427,6 @@ msgctxt ""
msgid "I, II, III, ..."
msgstr "I, II, III, ..."
-#. T|%B
#: page.src
#, fuzzy
msgctxt ""
@@ -6035,7 +5437,6 @@ msgctxt ""
msgid "i, ii, iii, ..."
msgstr "i, ii, iii, ..."
-#. m\b/
#: page.src
msgctxt ""
"page.src\n"
@@ -6045,7 +5446,6 @@ msgctxt ""
msgid "None"
msgstr "არცერთი"
-#. Z_dU
#: page.src
#, fuzzy
msgctxt ""
@@ -6056,7 +5456,6 @@ msgctxt ""
msgid "A, .., AA, .., AAA, ..."
msgstr "A, .., AA, .., AAA, ... "
-#. A[8%
#: page.src
#, fuzzy
msgctxt ""
@@ -6067,7 +5466,6 @@ msgctxt ""
msgid "a, .., aa, .., aaa, ..."
msgstr "a, .., aa, .., aaa, ..."
-#. [e-7
#: page.src
#, fuzzy
msgctxt ""
@@ -6078,7 +5476,6 @@ msgctxt ""
msgid "Native Numbering"
msgstr "ნამდვილი რიცხვები"
-#. PpFS
#: page.src
#, fuzzy
msgctxt ""
@@ -6089,7 +5486,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
msgstr "А, Б, .., Аа, Аб, ... (ბულგარული)"
-#. 7P:)
#: page.src
#, fuzzy
msgctxt ""
@@ -6100,7 +5496,6 @@ msgctxt ""
msgid "а, б, .., аа, аб, ... (Bulgarian)"
msgstr "а, б, .., аа, аб, ... (ბულგარული)"
-#. Z1l@
#: page.src
#, fuzzy
msgctxt ""
@@ -6111,7 +5506,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
msgstr "А, Б, .., Аа, Бб, ... (ბულგარული)"
-#. Ql$!
#: page.src
#, fuzzy
msgctxt ""
@@ -6122,7 +5516,6 @@ msgctxt ""
msgid "а, б, .., аа, бб, ... (Bulgarian)"
msgstr "а, б, .., аа, бб, ... (ბულგარული)"
-#. *eo*
#: page.src
#, fuzzy
msgctxt ""
@@ -6133,7 +5526,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Аб, ... (Russian)"
msgstr "А, Б, .., Аа, Аб, ... (რუსული)"
-#. :C\_
#: page.src
#, fuzzy
msgctxt ""
@@ -6144,7 +5536,6 @@ msgctxt ""
msgid "а, б, .., аа, аб, ... (Russian)"
msgstr "а, б, .., аа, аб, ... (რუსული)"
-#. [NVz
#: page.src
#, fuzzy
msgctxt ""
@@ -6155,7 +5546,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Бб, ... (Russian)"
msgstr "А, Б, .., Аа, Бб, ... (რუსული)"
-#. VPcI
#: page.src
#, fuzzy
msgctxt ""
@@ -6166,7 +5556,6 @@ msgctxt ""
msgid "а, б, .., аа, бб, ... (Russian)"
msgstr "а, б, .., аа, бб, ... (რუსული)"
-#. ;K\[
#: page.src
#, fuzzy
msgctxt ""
@@ -6177,7 +5566,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Аб, ... (Serbian)"
msgstr "А, Б, .., Аа, Аб, ... (რუსული)"
-#. 2Ii3
#: page.src
#, fuzzy
msgctxt ""
@@ -6188,7 +5576,6 @@ msgctxt ""
msgid "а, б, .., аа, аб, ... (Serbian)"
msgstr "а, б, .., аа, аб, ... (რუსული)"
-#. C/`.
#: page.src
#, fuzzy
msgctxt ""
@@ -6199,7 +5586,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Бб, ... (Serbian)"
msgstr "А, Б, .., Аа, Бб, ... (რუსული)"
-#. no[X
#: page.src
#, fuzzy
msgctxt ""
@@ -6210,7 +5596,6 @@ msgctxt ""
msgid "а, б, .., аа, бб, ... (Serbian)"
msgstr "а, б, .., аа, бб, ... (რუსული)"
-#. #/VS
#: page.src
msgctxt ""
"page.src\n"
@@ -6220,7 +5605,6 @@ msgctxt ""
msgid "Α, Β, Γ, ... (Greek Upper Letter)"
msgstr ""
-#. GQ[7
#: page.src
msgctxt ""
"page.src\n"
@@ -6230,7 +5614,6 @@ msgctxt ""
msgid "α, β, γ, ... (Greek Lower Letter)"
msgstr ""
-#. +;j#
#: page.src
msgctxt ""
"page.src\n"
@@ -6240,7 +5623,6 @@ msgctxt ""
msgid "Table alignment"
msgstr "ცხრილის სწორება"
-#. #0G_
#: page.src
msgctxt ""
"page.src\n"
@@ -6250,7 +5632,6 @@ msgctxt ""
msgid "Hori~zontal"
msgstr "ჰორი~ზონტალური"
-#. $ki7
#: page.src
msgctxt ""
"page.src\n"
@@ -6260,7 +5641,6 @@ msgctxt ""
msgid "~Vertical"
msgstr "~ვერტიკალური"
-#. H#|a
#: page.src
msgctxt ""
"page.src\n"
@@ -6270,7 +5650,6 @@ msgctxt ""
msgid "~Fit object to paper format"
msgstr "~მოარგეთ ობიექტი ფურცლის ზომას"
-#. #)#b
#: page.src
msgctxt ""
"page.src\n"
@@ -6280,7 +5659,6 @@ msgctxt ""
msgid "Register-true"
msgstr "რეგისტრაცია-მართებული"
-#. [5ro
#: page.src
msgctxt ""
"page.src\n"
@@ -6290,7 +5668,6 @@ msgctxt ""
msgid "Reference ~Style"
msgstr "საცნობარო ინფორმაციის ~სტილი"
-#. j1Jh
#: page.src
msgctxt ""
"page.src\n"
@@ -6300,7 +5677,6 @@ msgctxt ""
msgid "I~nner"
msgstr "შ~იდა"
-#. M]|d
#: page.src
msgctxt ""
"page.src\n"
@@ -6310,7 +5686,6 @@ msgctxt ""
msgid "O~uter"
msgstr "გ~არე"
-#. 8-Fc
#: page.src
msgctxt ""
"page.src\n"
@@ -6326,7 +5701,6 @@ msgstr ""
"\n"
"მაინც გნებავთ ამ პარამეტრების მისადაგება?"
-#. 0fkz
#: page.src
#, fuzzy
msgctxt ""
@@ -6337,7 +5711,6 @@ msgctxt ""
msgid "A6"
msgstr "A"
-#. X`J2
#: page.src
#, fuzzy
msgctxt ""
@@ -6348,7 +5721,6 @@ msgctxt ""
msgid "A5"
msgstr "A"
-#. [3Dd
#: page.src
#, fuzzy
msgctxt ""
@@ -6359,7 +5731,6 @@ msgctxt ""
msgid "A4"
msgstr "A4"
-#. 3NNO
#: page.src
#, fuzzy
msgctxt ""
@@ -6370,7 +5741,6 @@ msgctxt ""
msgid "A3"
msgstr "A"
-#. r;+o
#: page.src
#, fuzzy
msgctxt ""
@@ -6381,7 +5751,6 @@ msgctxt ""
msgid "B6 (ISO)"
msgstr "B5 (ISO)"
-#. )^.Y
#: page.src
#, fuzzy
msgctxt ""
@@ -6392,7 +5761,6 @@ msgctxt ""
msgid "B5 (ISO)"
msgstr "B5 (ISO)"
-#. d/2L
#: page.src
#, fuzzy
msgctxt ""
@@ -6403,7 +5771,6 @@ msgctxt ""
msgid "B4 (ISO)"
msgstr "B5 (ISO)"
-#. |G=H
#: page.src
#, fuzzy
msgctxt ""
@@ -6414,7 +5781,6 @@ msgctxt ""
msgid "Letter"
msgstr "წერილი"
-#. \.[f
#: page.src
msgctxt ""
"page.src\n"
@@ -6424,7 +5790,6 @@ msgctxt ""
msgid "Legal"
msgstr ""
-#. \(K)
#: page.src
#, fuzzy
msgctxt ""
@@ -6435,7 +5800,6 @@ msgctxt ""
msgid "Long Bond"
msgstr "გრძელი ტირე (მუქი)"
-#. X{,.
#: page.src
#, fuzzy
msgctxt ""
@@ -6446,7 +5810,6 @@ msgctxt ""
msgid "Tabloid"
msgstr "ცხრილი"
-#. q.!A
#: page.src
#, fuzzy
msgctxt ""
@@ -6457,7 +5820,6 @@ msgctxt ""
msgid "B6 (JIS)"
msgstr "B5 (ISO)"
-#. $nO2
#: page.src
#, fuzzy
msgctxt ""
@@ -6468,7 +5830,6 @@ msgctxt ""
msgid "B5 (JIS)"
msgstr "B5 (ISO)"
-#. =4[)
#: page.src
#, fuzzy
msgctxt ""
@@ -6479,7 +5840,6 @@ msgctxt ""
msgid "B4 (JIS)"
msgstr "B5 (ISO)"
-#. XOb`
#: page.src
msgctxt ""
"page.src\n"
@@ -6489,7 +5849,6 @@ msgctxt ""
msgid "16 Kai"
msgstr ""
-#. py5m
#: page.src
msgctxt ""
"page.src\n"
@@ -6499,7 +5858,6 @@ msgctxt ""
msgid "32 Kai"
msgstr ""
-#. z:bV
#: page.src
msgctxt ""
"page.src\n"
@@ -6509,7 +5867,6 @@ msgctxt ""
msgid "Big 32 Kai"
msgstr ""
-#. l**]
#: page.src
#, fuzzy
msgctxt ""
@@ -6520,7 +5877,6 @@ msgctxt ""
msgid "User"
msgstr "მომხმარებელი"
-#. .*!q
#: page.src
#, fuzzy
msgctxt ""
@@ -6531,7 +5887,6 @@ msgctxt ""
msgid "DL Envelope"
msgstr "კონვერტი"
-#. Vmv8
#: page.src
#, fuzzy
msgctxt ""
@@ -6542,7 +5897,6 @@ msgctxt ""
msgid "C6 Envelope"
msgstr "კონვერტი"
-#. @*@R
#: page.src
#, fuzzy
msgctxt ""
@@ -6553,7 +5907,6 @@ msgctxt ""
msgid "C6/5 Envelope"
msgstr "კონვერტი"
-#. %vH`
#: page.src
#, fuzzy
msgctxt ""
@@ -6564,7 +5917,6 @@ msgctxt ""
msgid "C5 Envelope"
msgstr "კონვერტი"
-#. ij/h
#: page.src
#, fuzzy
msgctxt ""
@@ -6575,7 +5927,6 @@ msgctxt ""
msgid "C4 Envelope"
msgstr "კონვერტი"
-#. 5aab
#: page.src
msgctxt ""
"page.src\n"
@@ -6585,7 +5936,6 @@ msgctxt ""
msgid "#6 3/4 (Personal) Envelope"
msgstr ""
-#. 1k)*
#: page.src
msgctxt ""
"page.src\n"
@@ -6595,7 +5945,6 @@ msgctxt ""
msgid "#8 (Monarch) Envelope"
msgstr ""
-#. Z}ug
#: page.src
#, fuzzy
msgctxt ""
@@ -6606,7 +5955,6 @@ msgctxt ""
msgid "#9 Envelope"
msgstr "კონვერტი"
-#. $WZ,
#: page.src
#, fuzzy
msgctxt ""
@@ -6617,7 +5965,6 @@ msgctxt ""
msgid "#10 Envelope"
msgstr "კონვერტი"
-#. V==k
#: page.src
#, fuzzy
msgctxt ""
@@ -6628,7 +5975,6 @@ msgctxt ""
msgid "#11 Envelope"
msgstr "კონვერტი"
-#. ?EpA
#: page.src
#, fuzzy
msgctxt ""
@@ -6639,7 +5985,6 @@ msgctxt ""
msgid "#12 Envelope"
msgstr "კონვერტი"
-#. Rb3s
#: page.src
msgctxt ""
"page.src\n"
@@ -6649,7 +5994,6 @@ msgctxt ""
msgid "Japanese Postcard"
msgstr ""
-#. Z}X4
#: page.src
#, fuzzy
msgctxt ""
@@ -6660,7 +6004,6 @@ msgctxt ""
msgid "A6"
msgstr "A"
-#. .(D,
#: page.src
#, fuzzy
msgctxt ""
@@ -6671,7 +6014,6 @@ msgctxt ""
msgid "A5"
msgstr "A"
-#. SsJl
#: page.src
#, fuzzy
msgctxt ""
@@ -6682,7 +6024,6 @@ msgctxt ""
msgid "A4"
msgstr "A4"
-#. ]uFl
#: page.src
#, fuzzy
msgctxt ""
@@ -6693,7 +6034,6 @@ msgctxt ""
msgid "A3"
msgstr "A"
-#. V$N(
#: page.src
msgctxt ""
"page.src\n"
@@ -6703,7 +6043,6 @@ msgctxt ""
msgid "A2"
msgstr ""
-#. P06I
#: page.src
msgctxt ""
"page.src\n"
@@ -6713,7 +6052,6 @@ msgctxt ""
msgid "A1"
msgstr ""
-#. -k#Y
#: page.src
msgctxt ""
"page.src\n"
@@ -6723,7 +6061,6 @@ msgctxt ""
msgid "A0"
msgstr ""
-#. eT3W
#: page.src
#, fuzzy
msgctxt ""
@@ -6734,7 +6071,6 @@ msgctxt ""
msgid "B6 (ISO)"
msgstr "B5 (ISO)"
-#. E4#h
#: page.src
#, fuzzy
msgctxt ""
@@ -6745,7 +6081,6 @@ msgctxt ""
msgid "B5 (ISO)"
msgstr "B5 (ISO)"
-#. BMq@
#: page.src
#, fuzzy
msgctxt ""
@@ -6756,7 +6091,6 @@ msgctxt ""
msgid "B4 (ISO)"
msgstr "B5 (ISO)"
-#. ;gT~
#: page.src
#, fuzzy
msgctxt ""
@@ -6767,7 +6101,6 @@ msgctxt ""
msgid "Letter"
msgstr "წერილი"
-#. `sBE
#: page.src
msgctxt ""
"page.src\n"
@@ -6777,7 +6110,6 @@ msgctxt ""
msgid "Legal"
msgstr ""
-#. -In)
#: page.src
#, fuzzy
msgctxt ""
@@ -6788,7 +6120,6 @@ msgctxt ""
msgid "Long Bond"
msgstr "გრძელი ტირე (მუქი)"
-#. IP*F
#: page.src
#, fuzzy
msgctxt ""
@@ -6799,7 +6130,6 @@ msgctxt ""
msgid "Tabloid"
msgstr "ცხრილი"
-#. 2}2K
#: page.src
#, fuzzy
msgctxt ""
@@ -6810,7 +6140,6 @@ msgctxt ""
msgid "B6 (JIS)"
msgstr "B5 (ISO)"
-#. 9A5-
#: page.src
#, fuzzy
msgctxt ""
@@ -6821,7 +6150,6 @@ msgctxt ""
msgid "B5 (JIS)"
msgstr "B5 (ISO)"
-#. tb9*
#: page.src
#, fuzzy
msgctxt ""
@@ -6832,7 +6160,6 @@ msgctxt ""
msgid "B4 (JIS)"
msgstr "B5 (ISO)"
-#. bZe|
#: page.src
msgctxt ""
"page.src\n"
@@ -6842,7 +6169,6 @@ msgctxt ""
msgid "16 Kai"
msgstr ""
-#. 2-.U
#: page.src
msgctxt ""
"page.src\n"
@@ -6852,7 +6178,6 @@ msgctxt ""
msgid "32 Kai"
msgstr ""
-#. 2RO}
#: page.src
msgctxt ""
"page.src\n"
@@ -6862,7 +6187,6 @@ msgctxt ""
msgid "Big 32 Kai"
msgstr ""
-#. =/Ol
#: page.src
#, fuzzy
msgctxt ""
@@ -6873,7 +6197,6 @@ msgctxt ""
msgid "User"
msgstr "მომხმარებელი"
-#. RPXm
#: page.src
#, fuzzy
msgctxt ""
@@ -6884,7 +6207,6 @@ msgctxt ""
msgid "DL Envelope"
msgstr "კონვერტი"
-#. 2Y8\
#: page.src
#, fuzzy
msgctxt ""
@@ -6895,7 +6217,6 @@ msgctxt ""
msgid "C6 Envelope"
msgstr "კონვერტი"
-#. 024q
#: page.src
#, fuzzy
msgctxt ""
@@ -6906,7 +6227,6 @@ msgctxt ""
msgid "C6/5 Envelope"
msgstr "კონვერტი"
-#. ?^U$
#: page.src
#, fuzzy
msgctxt ""
@@ -6917,7 +6237,6 @@ msgctxt ""
msgid "C5 Envelope"
msgstr "კონვერტი"
-#. $7,l
#: page.src
#, fuzzy
msgctxt ""
@@ -6928,7 +6247,6 @@ msgctxt ""
msgid "C4 Envelope"
msgstr "კონვერტი"
-#. A0o)
#: page.src
msgctxt ""
"page.src\n"
@@ -6938,7 +6256,6 @@ msgctxt ""
msgid "Dia Slide"
msgstr ""
-#. W++{
#: page.src
msgctxt ""
"page.src\n"
@@ -6948,7 +6265,6 @@ msgctxt ""
msgid "Screen 4:3"
msgstr ""
-#. }77H
#: page.src
msgctxt ""
"page.src\n"
@@ -6958,7 +6274,6 @@ msgctxt ""
msgid "Screen 16:9"
msgstr ""
-#. -A-/
#: page.src
msgctxt ""
"page.src\n"
@@ -6968,7 +6283,6 @@ msgctxt ""
msgid "Screen 16:10"
msgstr ""
-#. ;mpl
#: page.src
msgctxt ""
"page.src\n"
@@ -6978,7 +6292,6 @@ msgctxt ""
msgid "Japanese Postcard"
msgstr ""
-#. v3v3
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6987,7 +6300,6 @@ msgctxt ""
msgid "Unlinked graphic"
msgstr "მიუბმელი ნახატები"
-#. ,V~k
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6997,7 +6309,6 @@ msgctxt ""
msgid "A~s"
msgstr "რო~გორც"
-#. e!QI
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7007,7 +6318,6 @@ msgctxt ""
msgid "Color"
msgstr "ფერი"
-#. H[3@
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7017,7 +6327,6 @@ msgctxt ""
msgid "Graphic"
msgstr "გრაფიკა"
-#. n7T@
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7027,7 +6336,6 @@ msgctxt ""
msgid "F~or"
msgstr "F~or"
-#. /X$p
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7037,7 +6345,6 @@ msgctxt ""
msgid "Cell"
msgstr "უჯრა"
-#. 7d`s
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7047,7 +6354,6 @@ msgctxt ""
msgid "Row"
msgstr "მწკრივი"
-#. 1yIP
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7057,7 +6363,6 @@ msgctxt ""
msgid "Table"
msgstr "ცხრილი"
-#. Jp7R
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7067,7 +6372,6 @@ msgctxt ""
msgid "Paragraph"
msgstr "აბზაცი"
-#. W_af
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7077,7 +6381,6 @@ msgctxt ""
msgid "Character"
msgstr "სიმბოლო"
-#. e]|x
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7087,7 +6390,6 @@ msgctxt ""
msgid "Background color"
msgstr "ფონის ფერი"
-#. a+(q
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7097,7 +6399,6 @@ msgctxt ""
msgid "~Transparency"
msgstr "~გამჭვირვალობა"
-#. dqI8
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7107,7 +6408,6 @@ msgctxt ""
msgid "File"
msgstr "ფაილი"
-#. [-%/
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7117,7 +6417,6 @@ msgctxt ""
msgid "~Browse..."
msgstr "~დათვალიერება..."
-#. s+{F
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7127,7 +6426,6 @@ msgctxt ""
msgid "~Link"
msgstr "~ბმული"
-#. 4p/T
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7137,7 +6435,6 @@ msgctxt ""
msgid "Type"
msgstr "აკრეფა"
-#. hN!D
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7147,7 +6444,6 @@ msgctxt ""
msgid "~Position"
msgstr "~მდებარეობა"
-#. vIpk
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7157,7 +6453,6 @@ msgctxt ""
msgid "Ar~ea"
msgstr "არ~ეა"
-#. ,ln_
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7167,7 +6462,6 @@ msgctxt ""
msgid "~Tile"
msgstr "~მოზაიკა"
-#. qp^.
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7177,7 +6471,6 @@ msgctxt ""
msgid "Transparency"
msgstr "გამჭვირვალობა"
-#. J[oD
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7187,7 +6480,6 @@ msgctxt ""
msgid "Pre~view"
msgstr "წინასწარი დათ~ვალიერება"
-#. m({C
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7197,7 +6489,6 @@ msgctxt ""
msgid "Find graphics"
msgstr "ნახატის მოძიება"
-#. d92{
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7206,7 +6497,6 @@ msgctxt ""
msgid "Background"
msgstr "ფონი"
-#. n^lK
#: border.src
msgctxt ""
"border.src\n"
@@ -7216,7 +6506,6 @@ msgctxt ""
msgid "Line arrangement"
msgstr "ხაზის სწორება"
-#. ]/%T
#: border.src
msgctxt ""
"border.src\n"
@@ -7226,7 +6515,6 @@ msgctxt ""
msgid "~Default"
msgstr "~სტანდარტული"
-#. ~#B*
#: border.src
msgctxt ""
"border.src\n"
@@ -7236,7 +6524,6 @@ msgctxt ""
msgid "~User-defined"
msgstr "~მომხმარებლის მიერ განსაზღვრული"
-#. cJ_Y
#: border.src
msgctxt ""
"border.src\n"
@@ -7246,7 +6533,6 @@ msgctxt ""
msgid "Line"
msgstr "ხაზი"
-#. 08X/
#: border.src
msgctxt ""
"border.src\n"
@@ -7256,7 +6542,6 @@ msgctxt ""
msgid "St~yle"
msgstr "სტ~ილი"
-#. 25#7
#: border.src
#, fuzzy
msgctxt ""
@@ -7275,7 +6560,6 @@ msgstr ""
"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
"~სიგანე"
-#. TpdV
#: border.src
msgctxt ""
"border.src\n"
@@ -7285,7 +6569,6 @@ msgctxt ""
msgid "~Color"
msgstr "~ფერი"
-#. +@J2
#: border.src
msgctxt ""
"border.src\n"
@@ -7295,7 +6578,6 @@ msgctxt ""
msgid "~Left"
msgstr "~მარცხენა"
-#. :=*:
#: border.src
msgctxt ""
"border.src\n"
@@ -7305,7 +6587,6 @@ msgctxt ""
msgid "Right"
msgstr "მარჯვენა"
-#. !J6X
#: border.src
msgctxt ""
"border.src\n"
@@ -7315,7 +6596,6 @@ msgctxt ""
msgid "~Top"
msgstr "~ზემოდან"
-#. Ecpy
#: border.src
msgctxt ""
"border.src\n"
@@ -7325,7 +6605,6 @@ msgctxt ""
msgid "~Bottom"
msgstr "~ქვემოდან"
-#. _;;X
#: border.src
msgctxt ""
"border.src\n"
@@ -7335,7 +6614,6 @@ msgctxt ""
msgid "Synchronize"
msgstr "სინქრონიზაცია"
-#. ($FG
#: border.src
msgctxt ""
"border.src\n"
@@ -7345,7 +6623,6 @@ msgctxt ""
msgid "Spacing to contents"
msgstr "დაშორება სარჩევში"
-#. b#%R
#: border.src
msgctxt ""
"border.src\n"
@@ -7355,7 +6632,6 @@ msgctxt ""
msgid "~Position"
msgstr "~მდებარეობა"
-#. m7lu
#: border.src
msgctxt ""
"border.src\n"
@@ -7365,7 +6641,6 @@ msgctxt ""
msgid "Distan~ce"
msgstr "მანძ~ილი"
-#. Ysn3
#: border.src
msgctxt ""
"border.src\n"
@@ -7375,7 +6650,6 @@ msgctxt ""
msgid "C~olor"
msgstr "ფ~ერი"
-#. X3X[
#: border.src
msgctxt ""
"border.src\n"
@@ -7385,7 +6659,6 @@ msgctxt ""
msgid "Shadow style"
msgstr "ჩრდილოვანი სტილი"
-#. d/!4
#: border.src
msgctxt ""
"border.src\n"
@@ -7395,7 +6668,6 @@ msgctxt ""
msgid "Properties"
msgstr "თვისებები"
-#. 2^:K
#: border.src
msgctxt ""
"border.src\n"
@@ -7405,7 +6677,6 @@ msgctxt ""
msgid "~Merge with next paragraph"
msgstr "შ~ემდეგ აბზაცთან გაერთიანება"
-#. =\k{
#: border.src
msgctxt ""
"border.src\n"
@@ -7415,7 +6686,6 @@ msgctxt ""
msgid "~Merge adjacent line styles"
msgstr "შეაერთეთ მეზობელი ტ~იპის ხაზები"
-#. DHQ^
#: border.src
msgctxt ""
"border.src\n"
@@ -7424,7 +6694,6 @@ msgctxt ""
msgid "Borders"
msgstr "საზღვრები"
-#. DhrX
#: border.src
msgctxt ""
"border.src\n"
@@ -7433,7 +6702,6 @@ msgctxt ""
msgid "Set No Borders"
msgstr "ჩარჩოების გარეშე დაყენება"
-#. z[PB
#: border.src
msgctxt ""
"border.src\n"
@@ -7442,7 +6710,6 @@ msgctxt ""
msgid "Set Outer Border Only"
msgstr "მხოლოდ გარე ჩარჩოს დაყენება"
-#. #bvo
#: border.src
msgctxt ""
"border.src\n"
@@ -7451,7 +6718,6 @@ msgctxt ""
msgid "Set Outer Border and Horizontal Lines"
msgstr "მხოლოდ გარე ჩარჩოს და ჰორიზონტალური ხაზების დაყენება"
-#. d,4j
#: border.src
msgctxt ""
"border.src\n"
@@ -7460,7 +6726,6 @@ msgctxt ""
msgid "Set Outer Border and All Inner Lines"
msgstr "მხოლოდ გარე ჩარჩოს და შიდა ხაზების დაყენება"
-#. |I`P
#: border.src
msgctxt ""
"border.src\n"
@@ -7469,7 +6734,6 @@ msgctxt ""
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "მხოლოდ გარე ჩარჩოს დაყენება შიდა ხაზების დაყენების გარეშე"
-#. q5Ra
#: border.src
msgctxt ""
"border.src\n"
@@ -7478,7 +6742,6 @@ msgctxt ""
msgid "Set Diagonal Lines Only"
msgstr "მხოლოდ დიაგონალური ხაზების დაყენება"
-#. @r`[
#: border.src
msgctxt ""
"border.src\n"
@@ -7487,7 +6750,6 @@ msgctxt ""
msgid "Set All Four Borders"
msgstr "ყველა ჩარჩოს დაყენება"
-#. J=C/
#: border.src
msgctxt ""
"border.src\n"
@@ -7496,7 +6758,6 @@ msgctxt ""
msgid "Set Left and Right Borders Only"
msgstr "მხოლოდ მარცხენა და მარჯვენა ჩარჩოების დაყენება"
-#. 6WwJ
#: border.src
msgctxt ""
"border.src\n"
@@ -7505,7 +6766,6 @@ msgctxt ""
msgid "Set Top and Bottom Borders Only"
msgstr "მხოლოდ ზედა და ქვედა ჩარჩოების დაყენება"
-#. *BB2
#: border.src
msgctxt ""
"border.src\n"
@@ -7514,7 +6774,6 @@ msgctxt ""
msgid "Set Left Border Only"
msgstr "მხოლოდ მარცხენა ჩარჩოს დაყენება"
-#. [qV2
#: border.src
msgctxt ""
"border.src\n"
@@ -7523,7 +6782,6 @@ msgctxt ""
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "ზედა და ქვედა ჩარჩოების, აგრეთვე ყველა შიდა ხაზის დაყენება"
-#. ~x/;
#: border.src
msgctxt ""
"border.src\n"
@@ -7532,7 +6790,6 @@ msgctxt ""
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "მარცხენა და მარჯვენა ჩარჩოების, აგრეთვე ყველა შიდა ხაზის დაყენება"
-#. J{ud
#: border.src
msgctxt ""
"border.src\n"
@@ -7541,7 +6798,6 @@ msgctxt ""
msgid "No Shadow"
msgstr "უჩრდილო"
-#. PbcA
#: border.src
msgctxt ""
"border.src\n"
@@ -7550,7 +6806,6 @@ msgctxt ""
msgid "Cast Shadow to Bottom Right"
msgstr "ჩრდილი ქვედა მარჯვენა მხარეს"
-#. fiV;
#: border.src
msgctxt ""
"border.src\n"
@@ -7559,7 +6814,6 @@ msgctxt ""
msgid "Cast Shadow to Top Right"
msgstr "ჩრდილი ზედა მარჯვენა მხარეს"
-#. Q!Ng
#: border.src
msgctxt ""
"border.src\n"
@@ -7568,7 +6822,6 @@ msgctxt ""
msgid "Cast Shadow to Bottom Left"
msgstr "ჩრდილი ქვედა მარცხენა მხარეს"
-#. _n^j
#: border.src
msgctxt ""
"border.src\n"
@@ -7577,7 +6830,6 @@ msgctxt ""
msgid "Cast Shadow to Top Left"
msgstr "ჩრდილი ზედა მარცხენა მხარეს"
-#. n`vD
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7587,7 +6839,6 @@ msgctxt ""
msgid "Position"
msgstr "მდებარეობა"
-#. -~ZG
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7597,7 +6848,6 @@ msgctxt ""
msgid "Position ~X"
msgstr "მდებარეობა ~X"
-#. R@*.
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7607,7 +6857,6 @@ msgctxt ""
msgid "Position ~Y"
msgstr "მდებარეობა ~Y"
-#. wfoH
#: transfrm.src
#, fuzzy
msgctxt ""
@@ -7618,7 +6867,6 @@ msgctxt ""
msgid "Base point"
msgstr "საბაზო წერტილი"
-#. Es_c
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7628,7 +6876,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. :.As
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7638,7 +6885,6 @@ msgctxt ""
msgid "Base point"
msgstr "Base point"
-#. Xt|8
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7648,7 +6894,6 @@ msgctxt ""
msgid "Size"
msgstr "ზომა"
-#. q^/k
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7658,7 +6903,6 @@ msgctxt ""
msgid "Wi~dth"
msgstr "სი~განე"
-#. j^`5
#: transfrm.src
#, fuzzy
msgctxt ""
@@ -7669,7 +6913,6 @@ msgctxt ""
msgid "H~eight"
msgstr "სი~მაღლე"
-#. O2k/
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7679,7 +6922,6 @@ msgctxt ""
msgid "Base point"
msgstr "საბაზო წერტილი"
-#. |`{p
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7689,7 +6931,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. j{C(
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7699,7 +6940,6 @@ msgctxt ""
msgid "Base point"
msgstr "Base point"
-#. ^MPq
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7709,7 +6949,6 @@ msgctxt ""
msgid "~Keep ratio"
msgstr "თანაფარდობის შ~ენარჩუნება"
-#. XQKj
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7719,7 +6958,6 @@ msgctxt ""
msgid "Protect"
msgstr "დაცვა"
-#. LDZh
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7729,7 +6967,6 @@ msgctxt ""
msgid "Position"
msgstr "მდებარეობა"
-#. Qr=j
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7739,7 +6976,6 @@ msgctxt ""
msgid "~Size"
msgstr "~ზომა"
-#. ,)fg
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7749,7 +6985,6 @@ msgctxt ""
msgid "Adapt"
msgstr "მორგება"
-#. 18bt
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7759,7 +6994,6 @@ msgctxt ""
msgid "~Fit width to text"
msgstr "სიგანის ტექსტზე ~მორგება"
-#. _6pH
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7769,7 +7003,6 @@ msgctxt ""
msgid "Fit ~height to text"
msgstr "ს~იმაღლის ტექსტზე მორგება"
-#. NcZW
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7779,7 +7012,6 @@ msgctxt ""
msgid "Anchor"
msgstr "ღუზა"
-#. p@Sq
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7789,7 +7021,6 @@ msgctxt ""
msgid "~Anchor"
msgstr "ღ~უზა"
-#. gzF1
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7799,7 +7030,6 @@ msgctxt ""
msgid "To paragraph"
msgstr "აბზაცში"
-#. hHJC
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7809,7 +7039,6 @@ msgctxt ""
msgid "As character"
msgstr "როგორც სიმბოლო"
-#. PSai
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7819,7 +7048,6 @@ msgctxt ""
msgid "To page"
msgstr "გვერდზე"
-#. yIcZ
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7829,7 +7057,6 @@ msgctxt ""
msgid "To frame"
msgstr "ჩარჩოში"
-#. Ue[1
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7839,7 +7066,6 @@ msgctxt ""
msgid "P~osition"
msgstr "პოზიცია"
-#. !FM]
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7849,7 +7075,6 @@ msgctxt ""
msgid "From top"
msgstr "ზემოდან"
-#. e{\b
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7859,7 +7084,6 @@ msgctxt ""
msgid "Above"
msgstr "ზემოდან"
-#. b/n(
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7869,7 +7093,6 @@ msgctxt ""
msgid "Centered"
msgstr "ცენტრირებული"
-#. ED^R
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7879,7 +7102,6 @@ msgctxt ""
msgid "Below"
msgstr "ქვემოდან"
-#. (l^+
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7889,7 +7111,6 @@ msgctxt ""
msgid "Top of character"
msgstr "სიმბოლოს თავი"
-#. arW=
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7899,7 +7120,6 @@ msgctxt ""
msgid "Center of character"
msgstr "სიმბოლოს ცენტრი"
-#. +T?`
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7909,7 +7129,6 @@ msgctxt ""
msgid "Bottom of character"
msgstr "სიმბოლოს ბოლო"
-#. ^e}}
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7919,7 +7138,6 @@ msgctxt ""
msgid "Top of line"
msgstr "ხაზის დასაწყისი"
-#. $8m,
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7929,7 +7147,6 @@ msgctxt ""
msgid "Center of line"
msgstr "ხაზის ცენტრი"
-#. s2aP
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7939,7 +7156,6 @@ msgctxt ""
msgid "Bottom of line"
msgstr "ხაზის ბოლო"
-#. nS.J
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7948,7 +7164,6 @@ msgctxt ""
msgid "Position and Size"
msgstr "მდებარეობა და ზომა"
-#. )IQS
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7958,7 +7173,6 @@ msgctxt ""
msgid "Pivot point"
msgstr "Pivot-წერტილი"
-#. +77j
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7968,7 +7182,6 @@ msgctxt ""
msgid "Position ~X"
msgstr "მდებარეობა ~X"
-#. )mec
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7978,7 +7191,6 @@ msgctxt ""
msgid "Position ~Y"
msgstr "მდებარეობა ~Y"
-#. u`\N
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7988,7 +7200,6 @@ msgctxt ""
msgid "Default settings"
msgstr "სტანდარტული პარამეტრები"
-#. YF-T
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7998,7 +7209,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. UME]
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8008,7 +7218,6 @@ msgctxt ""
msgid "Rotation point"
msgstr "Rotation point"
-#. j#M[
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8018,7 +7227,6 @@ msgctxt ""
msgid "Rotation angle"
msgstr "ბრუნვის კუთხე"
-#. jrEA
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8028,7 +7236,6 @@ msgctxt ""
msgid "~Angle"
msgstr "~კუთხე"
-#. O^KI
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8038,7 +7245,6 @@ msgctxt ""
msgid "Default settings"
msgstr "სტანდარტული პარამეტრები"
-#. /j7F
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8048,7 +7254,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. )zS$
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8058,7 +7263,6 @@ msgctxt ""
msgid "Rotation Angle"
msgstr "Rotation Angle"
-#. 3k$u
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8067,7 +7271,6 @@ msgctxt ""
msgid "Angle"
msgstr "კუთხე"
-#. XXwz
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8077,7 +7280,6 @@ msgctxt ""
msgid "Corner radius"
msgstr "კუთხის რადიუსი"
-#. 3dk$
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8087,7 +7289,6 @@ msgctxt ""
msgid "~Radius"
msgstr "რ~ადიუსი"
-#. #1R@
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8097,7 +7298,6 @@ msgctxt ""
msgid "Slant"
msgstr "დაქანება"
-#. raS]
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8107,7 +7307,6 @@ msgctxt ""
msgid "~Angle"
msgstr "~კუთხე"
-#. ZwNz
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8117,7 +7316,6 @@ msgctxt ""
msgid " degrees"
msgstr " გრადუსები"
-#. (tq)
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8126,7 +7324,6 @@ msgctxt ""
msgid "Slant & Corner Radius"
msgstr "დაქანება და კუთხის რადიუსი"
-#. @R?d
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8135,7 +7332,6 @@ msgctxt ""
msgid "Position and Size"
msgstr "მდებარეობა და ზომა"
-#. m+f:
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8145,7 +7341,6 @@ msgctxt ""
msgid "Rotation"
msgstr "ბრუნვა"
-#. 9TS\
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8155,7 +7350,6 @@ msgctxt ""
msgid "Slant & Corner Radius"
msgstr "დაქანება და კუთხის რადიუსი"
-#. (C)n
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8164,7 +7358,6 @@ msgctxt ""
msgid "Position and Size"
msgstr "მდებარეობა და ზომა"
-#. F4#l
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8174,7 +7367,6 @@ msgctxt ""
msgid "Crop"
msgstr "ამოჭრა"
-#. 18dG
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8184,7 +7376,6 @@ msgctxt ""
msgid "~Left"
msgstr "~მარცხენა"
-#. mvqk
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8194,7 +7385,6 @@ msgctxt ""
msgid "~Right"
msgstr "~მარჯვენა"
-#. oa]v
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8204,7 +7394,6 @@ msgctxt ""
msgid "~Top"
msgstr "~ზედა"
-#. CA$2
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8214,7 +7403,6 @@ msgctxt ""
msgid "~Bottom"
msgstr "~ქვედა"
-#. Xl2o
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8224,7 +7412,6 @@ msgctxt ""
msgid "Keep image si~ze"
msgstr "~ნახატის ზომის შენახვა"
-#. L?Pb
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8234,7 +7421,6 @@ msgctxt ""
msgid "Keep ~scale"
msgstr "~მაშტაბის შენახვა"
-#. FQ3(
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8244,7 +7430,6 @@ msgctxt ""
msgid "Scale"
msgstr "მაშტაბი"
-#. T,g[
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8254,7 +7439,6 @@ msgctxt ""
msgid "~Width"
msgstr "ს~იგანე"
-#. [Rjf
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8264,7 +7448,6 @@ msgctxt ""
msgid "H~eight"
msgstr "სი~მაღლე"
-#. ruSg
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8274,7 +7457,6 @@ msgctxt ""
msgid "Image size"
msgstr "ნახატის ზომა"
-#. A-[r
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8284,7 +7466,6 @@ msgctxt ""
msgid "~Width"
msgstr "ს~იგანე"
-#. s72f
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8294,7 +7475,6 @@ msgctxt ""
msgid "H~eight"
msgstr "სი~მაღლე"
-#. UX0u
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8305,7 +7485,6 @@ msgid "~Original Size"
msgstr "სა~წყისი ზომა"
#. PPI is pixel per inch, %1 is a number
-#. *HN@
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8314,7 +7493,6 @@ msgctxt ""
msgid "(%1 PPI)"
msgstr ""
-#. L~e:
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8324,7 +7502,6 @@ msgctxt ""
msgid "Line"
msgstr "ხაზი"
-#. T/=p
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8334,7 +7511,6 @@ msgctxt ""
msgid "Line ~distance"
msgstr "ხასთა შორის დაშორება"
-#. HuP%
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8344,7 +7520,6 @@ msgctxt ""
msgid "Guide ~overhang"
msgstr "მეგზური ჩ~ამოკიდებული"
-#. 4@kv
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8354,7 +7529,6 @@ msgctxt ""
msgid "~Guide distance"
msgstr "~სახელმძღვანელოს დაშორება"
-#. ^Y\3
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8364,7 +7538,6 @@ msgctxt ""
msgid "~Left guide"
msgstr "~მარცხენა სახელმძღვანელო"
-#. Z/d!
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8374,7 +7547,6 @@ msgctxt ""
msgid "~Right guide"
msgstr "მ~არჯვენა სახელმძღვანელო"
-#. J%hw
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8384,7 +7556,6 @@ msgctxt ""
msgid "Measure ~below object"
msgstr "ზომა ობიექტს ქვევით"
-#. \?3I
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8394,7 +7565,6 @@ msgctxt ""
msgid "Decimal places"
msgstr "ათობითი ნიშნები"
-#. pO,3
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8404,7 +7574,6 @@ msgctxt ""
msgid "Legend"
msgstr "ლეგენდა"
-#. Mhm!
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8414,7 +7583,6 @@ msgctxt ""
msgid "~Text position"
msgstr "~ტექსტის ადგილმდებარეობა"
-#. 9M%e
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8424,7 +7592,6 @@ msgctxt ""
msgid "~AutoVertical"
msgstr "~ავტოვერტიკალური"
-#. U,m6
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8434,7 +7601,6 @@ msgctxt ""
msgid "A~utoHorizontal"
msgstr "ა~ვტოჰორიზონტალური"
-#. sASP
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8444,7 +7610,6 @@ msgctxt ""
msgid "~Parallel to line"
msgstr "ხაზის პარალელური"
-#. $Di1
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8454,7 +7619,6 @@ msgctxt ""
msgid "Show ~meas. units"
msgstr "ზომის ერთ. ჩვენება"
-#. 6DJ8
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8464,7 +7628,6 @@ msgctxt ""
msgid "Automatic"
msgstr "ავტომატური"
-#. HT!4
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8473,7 +7636,6 @@ msgctxt ""
msgid "Dimensioning"
msgstr "ზომების განსაზღვრა"
-#. ;b7$
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8483,7 +7645,6 @@ msgctxt ""
msgid "Size"
msgstr "ზომა"
-#. Bf8G
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8493,7 +7654,6 @@ msgctxt ""
msgid "~Width"
msgstr "ს~იგანე"
-#. FLTc
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8503,7 +7663,6 @@ msgctxt ""
msgid "H~eight"
msgstr "ს~იმაღლე"
-#. c??#
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8513,7 +7672,6 @@ msgctxt ""
msgid "~Keep ratio"
msgstr "თანაფარდობის შ~ენარჩუნება"
-#. lJ{^
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8523,7 +7681,6 @@ msgctxt ""
msgid "Anchor"
msgstr "ღუზა"
-#. $s[M
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8533,7 +7690,6 @@ msgctxt ""
msgid "To ~page"
msgstr "გვერდზე"
-#. Ogur
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8543,7 +7699,6 @@ msgctxt ""
msgid "To paragrap~h"
msgstr "აბზაცზე"
-#. (6,q
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8553,7 +7708,6 @@ msgctxt ""
msgid "To cha~racter"
msgstr "სიმბოლოზე"
-#. Z#V^
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8563,7 +7717,6 @@ msgctxt ""
msgid "~As character"
msgstr "როგორც სიმბოლო"
-#. kPsZ
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8573,7 +7726,6 @@ msgctxt ""
msgid "To ~frame"
msgstr "ჩარჩოზე"
-#. E!fZ
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8583,7 +7735,6 @@ msgctxt ""
msgid "Protect"
msgstr "დაცვა"
-#. .4T7
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8593,7 +7744,6 @@ msgctxt ""
msgid "Position"
msgstr "მდებარეობა"
-#. N6}0
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8603,7 +7753,6 @@ msgctxt ""
msgid "~Size"
msgstr "~ზომა"
-#. )8~0
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8613,7 +7762,6 @@ msgctxt ""
msgid "Position"
msgstr "მდებარეობა"
-#. F/Xo
#: swpossizetabpage.src
#, fuzzy
msgctxt ""
@@ -8624,7 +7772,6 @@ msgctxt ""
msgid "Hori~zontal"
msgstr "~ჰორიზონტალური"
-#. f.o[
#: swpossizetabpage.src
#, fuzzy
msgctxt ""
@@ -8635,7 +7782,6 @@ msgctxt ""
msgid "b~y"
msgstr "თ~ან"
-#. H-[L
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8645,7 +7791,6 @@ msgctxt ""
msgid "~to"
msgstr "~to"
-#. YCRC
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8655,7 +7800,6 @@ msgctxt ""
msgid "~Mirror on even pages"
msgstr "სარკისებურად ლუწ გვერდებზე"
-#. NI9r
#: swpossizetabpage.src
#, fuzzy
msgctxt ""
@@ -8674,7 +7818,6 @@ msgstr ""
"#-#-#-#-# engine3d.po (PACKAGE VERSION) #-#-#-#-#\n"
"~ვერტიკალური"
-#. FA+q
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8684,7 +7827,6 @@ msgctxt ""
msgid "by"
msgstr "by"
-#. Q60h
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8694,7 +7836,6 @@ msgctxt ""
msgid "t~o"
msgstr "t~o"
-#. nTd)
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8704,7 +7845,6 @@ msgctxt ""
msgid "Follow text flow"
msgstr "მიყევით ტექსტის ნაკადს"
-#. j~Hw
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8713,7 +7853,6 @@ msgctxt ""
msgid "Position and Size"
msgstr "მდებარეობა და ზომა"
-#. \~Gz
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8723,7 +7862,6 @@ msgctxt ""
msgid "Horizontal"
msgstr "ჰორიზონტალური"
-#. ,KGs
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8733,7 +7871,6 @@ msgctxt ""
msgid "~None"
msgstr "~არაფერი"
-#. 0]qv
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8743,7 +7880,6 @@ msgctxt ""
msgid "~Left"
msgstr "~მარცხენა"
-#. n_6%
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8753,7 +7889,6 @@ msgctxt ""
msgid "~Center"
msgstr "ც~ენტრი"
-#. sfIs
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8763,7 +7898,6 @@ msgctxt ""
msgid "~Spacing"
msgstr "~დაშორება"
-#. EB2X
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8773,7 +7907,6 @@ msgctxt ""
msgid "~Right"
msgstr "~მარჯვენა"
-#. _@wT
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8783,7 +7916,6 @@ msgctxt ""
msgid "Vertical"
msgstr "ვერტიკალური"
-#. jGF%
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8793,7 +7925,6 @@ msgctxt ""
msgid "N~one"
msgstr "არც~ერთი"
-#. 1/;R
#: dstribut.src
#, fuzzy
msgctxt ""
@@ -8814,7 +7945,6 @@ msgstr ""
"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
"~ზემოთ"
-#. 4_W6
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8824,7 +7954,6 @@ msgctxt ""
msgid "C~enter"
msgstr "ც~ენტრი"
-#. aMx.
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8834,7 +7963,6 @@ msgctxt ""
msgid "S~pacing"
msgstr "~დაშორება"
-#. U-A9
#: dstribut.src
#, fuzzy
msgctxt ""
@@ -8855,7 +7983,6 @@ msgstr ""
"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
"~ქცვემოთ"
-#. 2Lu}
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8864,7 +7991,6 @@ msgctxt ""
msgid "Distribution"
msgstr "გავრცელება"
-#. 8@$\
#: align.src
msgctxt ""
"align.src\n"
@@ -8874,7 +8000,6 @@ msgctxt ""
msgid "Text alignment"
msgstr "ტექსტის გასწორება"
-#. C+eC
#: align.src
msgctxt ""
"align.src\n"
@@ -8884,7 +8009,6 @@ msgctxt ""
msgid "Hori~zontal"
msgstr "ჰორ~იზონტალური"
-#. XZp4
#: align.src
msgctxt ""
"align.src\n"
@@ -8894,7 +8018,6 @@ msgctxt ""
msgid "Default"
msgstr "სტანდარტული"
-#. c(al
#: align.src
#, fuzzy
msgctxt ""
@@ -8919,7 +8042,6 @@ msgstr ""
"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
"მარცხენა"
-#. SqI!
#: align.src
msgctxt ""
"align.src\n"
@@ -8929,7 +8051,6 @@ msgctxt ""
msgid "Center"
msgstr "ცენტრი"
-#. 0J*Q
#: align.src
msgctxt ""
"align.src\n"
@@ -8939,7 +8060,6 @@ msgctxt ""
msgid "Right"
msgstr "მარჯვენა"
-#. v04T
#: align.src
#, fuzzy
msgctxt ""
@@ -8956,7 +8076,6 @@ msgstr ""
"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
"დამოწმებული"
-#. ^gMh
#: align.src
msgctxt ""
"align.src\n"
@@ -8966,7 +8085,6 @@ msgctxt ""
msgid "Filled"
msgstr "შევსებული"
-#. oh4s
#: align.src
#, fuzzy
msgctxt ""
@@ -8977,7 +8095,6 @@ msgctxt ""
msgid "Distributed"
msgstr "გავრცელება"
-#. zgG^
#: align.src
msgctxt ""
"align.src\n"
@@ -8987,7 +8104,6 @@ msgctxt ""
msgid "I~ndent"
msgstr "დ~აშორება"
-#. eOO.
#: align.src
msgctxt ""
"align.src\n"
@@ -8997,7 +8113,6 @@ msgctxt ""
msgid "~Vertical"
msgstr "ვერტიკალურ~ი"
-#. Xag:
#: align.src
msgctxt ""
"align.src\n"
@@ -9007,7 +8122,6 @@ msgctxt ""
msgid "Default"
msgstr "სტანდარტული"
-#. ;#Aq
#: align.src
msgctxt ""
"align.src\n"
@@ -9017,7 +8131,6 @@ msgctxt ""
msgid "Top"
msgstr "დასაწყისი"
-#. i+n%
#: align.src
msgctxt ""
"align.src\n"
@@ -9027,7 +8140,6 @@ msgctxt ""
msgid "Middle"
msgstr "შუა"
-#. !]9-
#: align.src
msgctxt ""
"align.src\n"
@@ -9037,7 +8149,6 @@ msgctxt ""
msgid "Bottom"
msgstr "ქვედა"
-#. -01E
#: align.src
#, fuzzy
msgctxt ""
@@ -9054,7 +8165,6 @@ msgstr ""
"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
"დამოწმებული"
-#. mTAR
#: align.src
#, fuzzy
msgctxt ""
@@ -9065,7 +8175,6 @@ msgctxt ""
msgid "Distributed"
msgstr "გავრცელება"
-#. VUn^
#: align.src
msgctxt ""
"align.src\n"
@@ -9075,7 +8184,6 @@ msgctxt ""
msgid "Text orientation"
msgstr "ტექსტის ორიენტაცია"
-#. {9pT
#: align.src
msgctxt ""
"align.src\n"
@@ -9085,7 +8193,6 @@ msgctxt ""
msgid "Ve~rtically stacked"
msgstr "ვერტიკალურად სტე~კირებული"
-#. Mj;\
#: align.src
msgctxt ""
"align.src\n"
@@ -9095,7 +8202,6 @@ msgctxt ""
msgid "De~grees"
msgstr "~გრადუსი"
-#. -bmx
#: align.src
msgctxt ""
"align.src\n"
@@ -9105,7 +8211,6 @@ msgctxt ""
msgid "Re~ference edge"
msgstr "მით~ითების კუთხე"
-#. G-fc
#: align.src
msgctxt ""
"align.src\n"
@@ -9115,7 +8220,6 @@ msgctxt ""
msgid "Asian layout ~mode"
msgstr "~აზიური განლაგების რეჟიმი"
-#. Q$PC
#: align.src
msgctxt ""
"align.src\n"
@@ -9125,7 +8229,6 @@ msgctxt ""
msgid "Properties"
msgstr "თვისებები"
-#. eiS^
#: align.src
msgctxt ""
"align.src\n"
@@ -9135,7 +8238,6 @@ msgctxt ""
msgid "~Wrap text automatically"
msgstr "~ტექსტის ავტომატური გადატანა "
-#. ~58)
#: align.src
msgctxt ""
"align.src\n"
@@ -9145,7 +8247,6 @@ msgctxt ""
msgid "Hyphenation ~active"
msgstr "სიტყვის გადატანა აქტ~იურია"
-#. rJ[X
#: align.src
msgctxt ""
"align.src\n"
@@ -9155,7 +8256,6 @@ msgctxt ""
msgid "~Shrink to fit cell size"
msgstr "შ~ეკუმშვა უჯრის ზომამდე"
-#. jKGh
#: align.src
msgctxt ""
"align.src\n"
@@ -9165,7 +8265,6 @@ msgctxt ""
msgid "Te~xt direction"
msgstr "ტე~ქსტის მიმართულება"
-#. $RvI
#: align.src
msgctxt ""
"align.src\n"
@@ -9175,7 +8274,6 @@ msgctxt ""
msgid "Text Extension From Lower Cell Border"
msgstr "ტექსტის გაფართოება უჯრის ქვედა კიდედან"
-#. Bsa~
#: align.src
msgctxt ""
"align.src\n"
@@ -9185,7 +8283,6 @@ msgctxt ""
msgid "Text Extension From Upper Cell Border"
msgstr "ტექსტის გაფართოება უჯრის ზედა კიდედან"
-#. ?pg9
#: align.src
msgctxt ""
"align.src\n"
@@ -9195,7 +8292,6 @@ msgctxt ""
msgid "Text Extension Inside Cell"
msgstr "ტექსტის გაფართოება უჯრის შიგნით"
-#. G63q
#: align.src
msgctxt ""
"align.src\n"
@@ -9204,7 +8300,6 @@ msgctxt ""
msgid "Alignment"
msgstr "სწორება"
-#. 1XZu
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9213,7 +8308,6 @@ msgctxt ""
msgid "Left-to-right"
msgstr "მარცხნიდან მარჯვნივ"
-#. @.,U
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9222,7 +8316,6 @@ msgctxt ""
msgid "Right-to-left"
msgstr "მარჯვნიდან მარცხნივ"
-#. B3w1
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9231,7 +8324,6 @@ msgctxt ""
msgid "Use superordinate object settings"
msgstr "მაქვემდებარებელი ობიექტის პარამეტრების გამოყენება"
-#. y_lb
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9240,7 +8332,6 @@ msgctxt ""
msgid "Left-to-right (horizontal)"
msgstr "მარცხნიდან მარჯვნივ (ჰორიზონტალური)"
-#. f6OC
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9249,7 +8340,6 @@ msgctxt ""
msgid "Right-to-left (horizontal)"
msgstr "მარჯვნიდან მარცხნივ (ჰორიზონტალური)"
-#. 0Bn*
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9258,7 +8348,6 @@ msgctxt ""
msgid "Right-to-left (vertical)"
msgstr "მარჯვნიდან მარცხნივ (ვერტიკალური)"
-#. s3_Q
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9267,7 +8356,6 @@ msgctxt ""
msgid "Left-to-right (vertical)"
msgstr "მარცხნიდან მარჯვნივ (ვერტიკალური)"
-#. 0!5}
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9277,7 +8365,6 @@ msgctxt ""
msgid "Text"
msgstr "ტექსტი"
-#. s:zK
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9287,7 +8374,6 @@ msgctxt ""
msgid "Fit wi~dth to text"
msgstr "სიგანის ტექსტზე მორგება"
-#. ;m5h
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9297,7 +8383,6 @@ msgctxt ""
msgid "Fit h~eight to text"
msgstr "სიგრძის ტექსტზე მორგება"
-#. D.[+
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9307,7 +8392,6 @@ msgctxt ""
msgid "~Fit to frame"
msgstr "ჩ~არჩოზე მორგება"
-#. 1{_R
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9317,7 +8401,6 @@ msgctxt ""
msgid "~Adjust to contour"
msgstr "კონტურის გასწორება"
-#. yw5g
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9327,7 +8410,6 @@ msgctxt ""
msgid "~Word wrap text in shape"
msgstr "~ტექსტის გადატანა ფორმაში"
-#. J1[T
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9337,7 +8419,6 @@ msgctxt ""
msgid "~Resize shape to fit text"
msgstr "~ფორმის ტექსტზე მორგება"
-#. GKRS
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9347,7 +8428,6 @@ msgctxt ""
msgid "Spacing to borders"
msgstr "დაშორება კონტურიდან"
-#. /Vk7
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9357,7 +8437,6 @@ msgctxt ""
msgid "~Left"
msgstr "~მარცხენა"
-#. XPNI
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9367,7 +8446,6 @@ msgctxt ""
msgid "~Right"
msgstr "~მარჯვენა"
-#. pQk#
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9377,7 +8455,6 @@ msgctxt ""
msgid "~Top"
msgstr "~ზედა"
-#. Bj$F
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9387,7 +8464,6 @@ msgctxt ""
msgid "~Bottom"
msgstr "~ქვედა"
-#. 1*/l
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9397,7 +8473,6 @@ msgctxt ""
msgid "Text anchor"
msgstr "ტექსტის ღუზა"
-#. j;7?
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9407,7 +8482,6 @@ msgctxt ""
msgid "Full ~width"
msgstr "სრული სი~განე"
-#. %oGK
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9416,7 +8490,6 @@ msgctxt ""
msgid "Text"
msgstr "ტექსტი"
-#. h^Y0
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9426,7 +8499,6 @@ msgctxt ""
msgid "~Type"
msgstr "~აკრეფა"
-#. ^*_l
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9436,7 +8508,6 @@ msgctxt ""
msgid "Line skew"
msgstr "ირიბი ხაზი"
-#. p^,B
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9446,7 +8517,6 @@ msgctxt ""
msgid "Line ~1"
msgstr "ხაზი ~1"
-#. HmZG
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9456,7 +8526,6 @@ msgctxt ""
msgid "Line ~2"
msgstr "ხაზი ~2"
-#. _ImA
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9466,7 +8535,6 @@ msgctxt ""
msgid "Line ~3"
msgstr "ხაზი ~3"
-#. +?hF
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9476,7 +8544,6 @@ msgctxt ""
msgid "Line spacing"
msgstr "ხაზების დაშორება"
-#. Qk%$
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9486,7 +8553,6 @@ msgctxt ""
msgid "~Begin horizontal"
msgstr "დაწყება ჰორიზო~ნტალური"
-#. 9;sg
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9496,7 +8562,6 @@ msgctxt ""
msgid "End ~horizontal"
msgstr "დასასრუ~ლი ჰორიზონტალური"
-#. H?@d
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9506,7 +8571,6 @@ msgctxt ""
msgid "Begin ~vertical"
msgstr "დაწყება ვ~ერტიკალური"
-#. B8~L
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9516,7 +8580,6 @@ msgctxt ""
msgid "~End vertical"
msgstr "დასასრული ვერტიკა~ლური"
-#. rg\6
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9526,7 +8589,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. G./+
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9536,7 +8598,6 @@ msgctxt ""
msgid "Preview"
msgstr "Preview"
-#. EiaR
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9545,7 +8606,6 @@ msgctxt ""
msgid "Connector"
msgstr "კონექტორი"
-#. Ib+e
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9555,7 +8615,6 @@ msgctxt ""
msgid "~Spacing"
msgstr "~დაშორება"
-#. K`^?
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9565,7 +8624,6 @@ msgctxt ""
msgid "~Angle"
msgstr "~კუთხე"
-#. ~^@J
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9575,7 +8633,6 @@ msgctxt ""
msgid "Free"
msgstr "თავისუფალი"
-#. ;$)X
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9585,7 +8642,6 @@ msgctxt ""
msgid "30 Degrees"
msgstr "30 გრადუსი"
-#. +mfh
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9595,7 +8651,6 @@ msgctxt ""
msgid "45 Degrees"
msgstr "45 გრადუსი"
-#. gaT3
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9605,7 +8660,6 @@ msgctxt ""
msgid "60 Degrees"
msgstr "60 გრადუსი"
-#. eHvk
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9615,7 +8669,6 @@ msgctxt ""
msgid "90 Degrees"
msgstr "90 გრადუსი"
-#. W.Q7
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9625,7 +8678,6 @@ msgctxt ""
msgid "~Extension"
msgstr "~გაფართოება"
-#. Jc5Q
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9635,7 +8687,6 @@ msgctxt ""
msgid "Optimal"
msgstr "ოპტიმალური"
-#. BM[a
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9645,7 +8696,6 @@ msgctxt ""
msgid "From top"
msgstr "ზემოდან"
-#. L,ff
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9655,7 +8705,6 @@ msgctxt ""
msgid "From left"
msgstr "მარცხნიდან"
-#. ;rcV
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9665,7 +8714,6 @@ msgctxt ""
msgid "Horizontal"
msgstr "ჰორიზონტალური"
-#. ^NyI
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9675,7 +8723,6 @@ msgctxt ""
msgid "Vertical"
msgstr "ვერტიკალური"
-#. 3ZTk
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9685,7 +8732,6 @@ msgctxt ""
msgid "~By"
msgstr "თა~ნ"
-#. y_yp
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9695,7 +8741,6 @@ msgctxt ""
msgid "~Position"
msgstr "~მდებარეობა"
-#. Hz4o
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9705,7 +8750,6 @@ msgctxt ""
msgid "~Length"
msgstr "ს~იგრძე"
-#. `[\;
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9715,7 +8759,6 @@ msgctxt ""
msgid "~Optimal"
msgstr "~ოფტიმალური"
-#. =%x?
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9725,7 +8768,6 @@ msgctxt ""
msgid "Straight Line"
msgstr "პირდაპირი ხაზი"
-#. kW,`
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9735,7 +8777,6 @@ msgctxt ""
msgid "Angled Line"
msgstr "კუთხოვანი ხაზი"
-#. %V_/
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9745,7 +8786,6 @@ msgctxt ""
msgid "Angled Connector Line"
msgstr "კუთხოვანი შემაერთებელი ხაზი"
-#. V,^$
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9755,7 +8795,6 @@ msgctxt ""
msgid "Double-angled line"
msgstr "ორმაგკუთხოვანი კაზი"
-#. Bc\h
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9765,7 +8804,6 @@ msgctxt ""
msgid "Top;Middle;Bottom"
msgstr "ზემოთ;შუაში;ქვემოთ"
-#. xt/V
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9775,7 +8813,6 @@ msgctxt ""
msgid "Left;Middle;Right"
msgstr "მარცხნივ;შუაში;მარჯვნივ"
-#. #;mU
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9784,7 +8821,6 @@ msgctxt ""
msgid "Callouts"
msgstr "მიმთითებლები"
-#. Y|g\
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9793,7 +8829,6 @@ msgctxt ""
msgid "Position and Size"
msgstr "მდებარეობა და ზომა"
-#. VrQo
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9803,7 +8838,6 @@ msgctxt ""
msgid "Callout"
msgstr "მიმთითებელი"
-#. Wia\
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9812,7 +8846,6 @@ msgctxt ""
msgid "Callouts"
msgstr "მიმთითებლები"
-#. ;}xQ
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9822,7 +8855,6 @@ msgctxt ""
msgid "Position"
msgstr "მდებარეობა"
-#. h~0G
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9832,7 +8864,6 @@ msgctxt ""
msgid "Type"
msgstr "აკრეფა"
-#. ^+n6
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9842,7 +8873,6 @@ msgctxt ""
msgid "~Left"
msgstr "~მარცხენა"
-#. 1h{,
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9852,7 +8882,6 @@ msgctxt ""
msgid "Righ~t"
msgstr "მარჯვე~ნა"
-#. J.@7
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9862,7 +8891,6 @@ msgctxt ""
msgid "C~entered"
msgstr "ცენტრში"
-#. fA1r
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9872,7 +8900,6 @@ msgctxt ""
msgid "Deci~mal"
msgstr "ათობითი რიცხვი"
-#. MFNj
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9882,7 +8909,6 @@ msgctxt ""
msgid "~Character"
msgstr "~სიმბოლო"
-#. 0KSL
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9892,7 +8918,6 @@ msgctxt ""
msgid "Fill character"
msgstr "სიმბოლო შემავსებელი"
-#. Hn3e
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9902,7 +8927,6 @@ msgctxt ""
msgid "N~one"
msgstr "არც~ერთი"
-#. LLSZ
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9912,7 +8936,6 @@ msgctxt ""
msgid "Character"
msgstr "სიმბოლო"
-#. E]XT
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9922,7 +8945,6 @@ msgctxt ""
msgid "~New"
msgstr "~ახალი"
-#. v5s\
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9932,7 +8954,6 @@ msgctxt ""
msgid "Delete ~All"
msgstr "~ყველაფრის წაშლა"
-#. ls9o
#: tabstpge.src
#, fuzzy
msgctxt ""
@@ -9975,7 +8996,6 @@ msgstr ""
"#-#-#-#-# textconversiondlgs.po (PACKAGE VERSION) #-#-#-#-#\n"
"~წაშლა"
-#. ~Q-s
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9985,7 +9005,6 @@ msgctxt ""
msgid "~Left/Top"
msgstr "~მარცხენა/ზედა"
-#. c~t_
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9995,7 +9014,6 @@ msgctxt ""
msgid "Righ~t/Bottom"
msgstr "მარჯვე~ნა/ქვედა"
-#. w-%8
#: tabstpge.src
#, fuzzy
msgctxt ""
@@ -10024,7 +9042,6 @@ msgstr ""
"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
"სიმბოლო"
-#. 94_f
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
diff --git a/source/ka/cui/uiconfig/ui.po b/source/ka/cui/uiconfig/ui.po
index 0e42e5615a7..be532f1ee4e 100644
--- a/source/ka/cui/uiconfig/ui.po
+++ b/source/ka/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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-11-17 19:02+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. fzF8
#: insertoleobject.ui
msgctxt ""
"insertoleobject.ui\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Insert OLE Object"
msgstr "OLE ობიექტის ჩასმა"
-#. ^M4J
#: insertoleobject.ui
#, fuzzy
msgctxt ""
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Create new"
msgstr "~ახლის შექმნა"
-#. bOEw
#: insertoleobject.ui
#, fuzzy
msgctxt ""
@@ -46,7 +43,6 @@ msgctxt ""
msgid "Create from file"
msgstr "ფაილიდან შექმნა"
-#. \KD3
#: insertoleobject.ui
msgctxt ""
"insertoleobject.ui\n"
@@ -56,7 +52,6 @@ msgctxt ""
msgid "Object type"
msgstr "ობიექტის ტიპი"
-#. phV%
#: insertoleobject.ui
#, fuzzy
msgctxt ""
@@ -67,7 +62,6 @@ msgctxt ""
msgid "Search ..."
msgstr "ძებნა..."
-#. jAF*
#: insertoleobject.ui
#, fuzzy
msgctxt ""
@@ -78,7 +72,6 @@ msgctxt ""
msgid "Link to file"
msgstr "~ბმული ფაილზე"
-#. w:,;
#: insertoleobject.ui
msgctxt ""
"insertoleobject.ui\n"
@@ -88,7 +81,6 @@ msgctxt ""
msgid "File"
msgstr "ფაილი"
-#. HX-2
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -98,7 +90,6 @@ msgctxt ""
msgid "Superscript"
msgstr "ზედა რეგისტრი"
-#. 9rL|
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -108,7 +99,6 @@ msgctxt ""
msgid "Normal"
msgstr "ჩვეულებრივი"
-#. 3IJk
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -118,7 +108,6 @@ msgctxt ""
msgid "Subscript"
msgstr "ქვედა რეგისტრი"
-#. pp6o
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -129,7 +118,6 @@ msgctxt ""
msgid "Raise/lower by"
msgstr "~ზედა/ქვედა"
-#. 45,!
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -139,7 +127,6 @@ msgctxt ""
msgid "Relative font size"
msgstr "შრიფტის შეფრადებითი ზომა"
-#. 5Vhf
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -150,7 +137,6 @@ msgctxt ""
msgid "Automatic"
msgstr "ავტომატური"
-#. H~EV
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -161,7 +147,6 @@ msgctxt ""
msgid "Position"
msgstr "მდებარეობა"
-#. _c{-
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -171,7 +156,6 @@ msgctxt ""
msgid "0 degrees"
msgstr "0 გრადუსი"
-#. bp*2
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -181,7 +165,6 @@ msgctxt ""
msgid "90 degrees"
msgstr "90 გრადუსი"
-#. =%Q*
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -191,7 +174,6 @@ msgctxt ""
msgid "270 degrees"
msgstr "270 გრადუსი"
-#. CKMx
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -201,7 +183,6 @@ msgctxt ""
msgid "Fit to line"
msgstr "ხაზზე გათანაბრება"
-#. W.Y0
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -212,7 +193,6 @@ msgctxt ""
msgid "Scale width"
msgstr "მაშტაბირება ზომ~ით"
-#. 20.0
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -223,7 +203,6 @@ msgctxt ""
msgid "Rotation / Scaling"
msgstr "ბრუნვა / მაშტაბირება"
-#. j5E0
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -234,7 +213,6 @@ msgctxt ""
msgid "Rotation"
msgstr "ციტატირება"
-#. 1|Si
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -244,7 +222,6 @@ msgctxt ""
msgid "by"
msgstr ""
-#. @lw^
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -255,7 +232,6 @@ msgctxt ""
msgid "Pair kerning"
msgstr "წყვილი~ს კერნინგი"
-#. 8hG)
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -265,7 +241,6 @@ msgctxt ""
msgid "Spacing"
msgstr "დაშორება"
-#. mRP9
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -276,7 +251,6 @@ msgctxt ""
msgid "Preview"
msgstr "გადახედვა"
-#. x2;W
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -287,7 +261,6 @@ msgctxt ""
msgid "Default"
msgstr "ნაგულისხმები"
-#. YKj+
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -297,7 +270,6 @@ msgctxt ""
msgid "Expanded"
msgstr "გაშლილი"
-#. GJ83
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -307,7 +279,6 @@ msgctxt ""
msgid "Condensed"
msgstr "შეკუმშული"
-#. T{W/
#: twolinespage.ui
#, fuzzy
msgctxt ""
@@ -318,7 +289,6 @@ msgctxt ""
msgid "Write in double lines"
msgstr "ჩაწერ~ა წყვილ ხაზს შორის"
-#. Fdn%
#: twolinespage.ui
#, fuzzy
msgctxt ""
@@ -329,7 +299,6 @@ msgctxt ""
msgid "Double-lined"
msgstr "ორმხრიანი"
-#. IO4p
#: twolinespage.ui
#, fuzzy
msgctxt ""
@@ -340,7 +309,6 @@ msgctxt ""
msgid "Initial character"
msgstr "~გამხსნელი სიმბოლო"
-#. |fLC
#: twolinespage.ui
#, fuzzy
msgctxt ""
@@ -351,7 +319,6 @@ msgctxt ""
msgid "Final character"
msgstr "დამამთავრებ~ელი სიმბოლოები"
-#. QAfs
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -361,7 +328,6 @@ msgctxt ""
msgid "Enclosing character"
msgstr "დამხურველი სიმბოლო"
-#. wYR*
#: twolinespage.ui
#, fuzzy
msgctxt ""
@@ -372,7 +338,6 @@ msgctxt ""
msgid "Preview"
msgstr "გადახედვა"
-#. ;Y8`
#: twolinespage.ui
#, fuzzy
msgctxt ""
@@ -383,7 +348,6 @@ msgctxt ""
msgid "(None)"
msgstr "(არცერთი)"
-#. =eLM
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -393,7 +357,6 @@ msgctxt ""
msgid "("
msgstr ""
-#. T4x(
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -403,7 +366,6 @@ msgctxt ""
msgid "["
msgstr ""
-#. ZMJ^
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -413,7 +375,6 @@ msgctxt ""
msgid "<"
msgstr ""
-#. .)fW
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -423,7 +384,6 @@ msgctxt ""
msgid "{"
msgstr ""
-#. 8{1%
#: twolinespage.ui
#, fuzzy
msgctxt ""
@@ -434,7 +394,6 @@ msgctxt ""
msgid "Other Characters..."
msgstr "სხვა სიმბოლოები..."
-#. IRms
#: twolinespage.ui
#, fuzzy
msgctxt ""
@@ -445,7 +404,6 @@ msgctxt ""
msgid "(None)"
msgstr "(არცერთი)"
-#. chCs
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -455,7 +413,6 @@ msgctxt ""
msgid ")"
msgstr ""
-#. EPeh
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -465,7 +422,6 @@ msgctxt ""
msgid "]"
msgstr ""
-#. Fy=F
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -475,7 +431,6 @@ msgctxt ""
msgid ">"
msgstr ""
-#. i(WD
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -485,7 +440,6 @@ msgctxt ""
msgid "}"
msgstr ""
-#. @{Yt
#: twolinespage.ui
#, fuzzy
msgctxt ""
@@ -496,7 +450,6 @@ msgctxt ""
msgid "Other Characters..."
msgstr "სხვა სიმბოლოები..."
-#. 0LTV
#: scriptorganizer.ui
msgctxt ""
"scriptorganizer.ui\n"
@@ -506,7 +459,6 @@ msgctxt ""
msgid "%MACROLANG Macros"
msgstr ""
-#. 3NqI
#: scriptorganizer.ui
msgctxt ""
"scriptorganizer.ui\n"
@@ -516,7 +468,6 @@ msgctxt ""
msgid "Macros"
msgstr "მარკოსები"
-#. Lo_D
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -526,7 +477,6 @@ msgctxt ""
msgid "Zoom & View Layout"
msgstr ""
-#. Q!;e
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -536,7 +486,6 @@ msgctxt ""
msgid "Optimal"
msgstr ""
-#. 9q=w
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -546,7 +495,6 @@ msgctxt ""
msgid "Fit width and height"
msgstr ""
-#. ]~JW
#: zoomdialog.ui
#, fuzzy
msgctxt ""
@@ -557,7 +505,6 @@ msgctxt ""
msgid "Fit width"
msgstr "მოარგე ~სიგანე"
-#. _H?+
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -567,7 +514,6 @@ msgctxt ""
msgid "100%"
msgstr "100%"
-#. Xg#s
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -577,7 +523,6 @@ msgctxt ""
msgid "Variable"
msgstr "ცვლადი"
-#. s\dE
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -587,7 +532,6 @@ msgctxt ""
msgid "Zoom factor"
msgstr "მაშტაბირების ფაქტორი"
-#. fMR4
#: zoomdialog.ui
#, fuzzy
msgctxt ""
@@ -598,7 +542,6 @@ msgctxt ""
msgid "Automatic"
msgstr "ავტომატური"
-#. k$e(
#: zoomdialog.ui
#, fuzzy
msgctxt ""
@@ -609,7 +552,6 @@ msgctxt ""
msgid "Single page"
msgstr "~ერთი გვერდი"
-#. )rgt
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -619,7 +561,6 @@ msgctxt ""
msgid "Columns"
msgstr "სვეტები"
-#. @~{`
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -629,7 +570,6 @@ msgctxt ""
msgid "Book mode"
msgstr ""
-#. l30c
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -639,7 +579,6 @@ msgctxt ""
msgid "View layout"
msgstr ""
-#. ]e:q
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -649,7 +588,6 @@ msgctxt ""
msgid "Macro Selector"
msgstr ""
-#. hM|8
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -659,7 +597,6 @@ msgctxt ""
msgid "Select the library that contains the macro you want. Then select the macro under 'Macro name'."
msgstr "მონიშნეთ ბიბლიოთეკა, რომელიც შეიცავს მაკროს რომელიც გჭირდებათ. შემდეგ მონიშნეთ მაკრო 'მაკროს სახელი'-ს ქვეშ."
-#. ^VMl
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -669,7 +606,6 @@ msgctxt ""
msgid "To add a command to a toolbar, select the category and then the command. Then drag the command to the Commands list of the Toolbars tab page in the Customize dialog."
msgstr "ბრძანების ხელსაწყოთა ზოლზე დასამატებლად, ამოირჩიეთ კატეგორია და ბრძანება. შემდეგ გადაათრიეთ ბრძანება ბრძანებათა სიაში ხელსაწყოთა ზოლის ჩანართზე მორგების დიალოგში."
-#. l-*E
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -679,7 +615,6 @@ msgctxt ""
msgid "Library"
msgstr "ბიბლიოთეკა"
-#. Xd;?
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -689,7 +624,6 @@ msgctxt ""
msgid "Category"
msgstr "კატეგორია"
-#. (.AE
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -699,7 +633,6 @@ msgctxt ""
msgid "Macro name"
msgstr "მაკროს სახელი"
-#. hft9
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -709,7 +642,6 @@ msgctxt ""
msgid "Commands"
msgstr "ბრძანებები"
-#. P\TL
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -719,7 +651,6 @@ msgctxt ""
msgid "Description"
msgstr "აღწერილობა"
-#. ONGJ
#: thesaurus.ui
msgctxt ""
"thesaurus.ui\n"
@@ -729,7 +660,6 @@ msgctxt ""
msgid "Thesaurus"
msgstr "თეზაურუსი"
-#. ijR5
#: thesaurus.ui
#, fuzzy
msgctxt ""
@@ -740,7 +670,6 @@ msgctxt ""
msgid "Replace"
msgstr "ჩ~ანაცვლება"
-#. 8$!3
#: thesaurus.ui
msgctxt ""
"thesaurus.ui\n"
@@ -750,7 +679,6 @@ msgctxt ""
msgid "Current word"
msgstr ""
-#. #AXW
#: thesaurus.ui
msgctxt ""
"thesaurus.ui\n"
@@ -760,7 +688,6 @@ msgctxt ""
msgid "Alternatives"
msgstr ""
-#. Q+)g
#: thesaurus.ui
#, fuzzy
msgctxt ""
@@ -771,7 +698,6 @@ msgctxt ""
msgid "Replace with"
msgstr "ჩა~ნაცვლება"
-#. q#i6
#: thesaurus.ui
msgctxt ""
"thesaurus.ui\n"
@@ -781,7 +707,6 @@ msgctxt ""
msgid "label"
msgstr ""
-#. `7#G
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -791,7 +716,6 @@ msgctxt ""
msgid "Font color"
msgstr "შრიფტის ფერი"
-#. 5W_D
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -801,7 +725,6 @@ msgctxt ""
msgid "Effects"
msgstr "ეფექტები"
-#. iE1D
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -811,7 +734,6 @@ msgctxt ""
msgid "Relief"
msgstr "რელიეფი"
-#. dKiS
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -821,7 +743,6 @@ msgctxt ""
msgid "Overlining"
msgstr ""
-#. nB`/
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -831,7 +752,6 @@ msgctxt ""
msgid "Strikethrough"
msgstr ""
-#. VjM$
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -841,7 +761,6 @@ msgctxt ""
msgid "Underlining"
msgstr ""
-#. 6O?$
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -851,7 +770,6 @@ msgctxt ""
msgid "Overline color"
msgstr ""
-#. aUBk
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -861,7 +779,6 @@ msgctxt ""
msgid "Underline Color"
msgstr ""
-#. ;H;`
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -871,7 +788,6 @@ msgctxt ""
msgid "Outline"
msgstr "სქემა"
-#. dhPb
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -881,7 +797,6 @@ msgctxt ""
msgid "Shadow"
msgstr "ჩრდილი"
-#. X29q
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -891,7 +806,6 @@ msgctxt ""
msgid "Blinking"
msgstr "ციმციმი"
-#. Kwf+
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -902,7 +816,6 @@ msgctxt ""
msgid "Hidden"
msgstr "და~მალული"
-#. ~\DY
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -912,7 +825,6 @@ msgctxt ""
msgid "Individual words"
msgstr "ცალკეული სიტყვები"
-#. Go^Z
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -923,7 +835,6 @@ msgctxt ""
msgid "Position"
msgstr "მდებარეობა"
-#. v:D]
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -933,7 +844,6 @@ msgctxt ""
msgid "Emphasis mark"
msgstr "გამოყოფილი ნიშანი"
-#. Mo4/
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -944,7 +854,6 @@ msgctxt ""
msgid "Options"
msgstr "პარამეტრები"
-#. 0@E?
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -955,7 +864,6 @@ msgctxt ""
msgid "Preview"
msgstr "გადახედვა"
-#. +fQ_
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -966,7 +874,6 @@ msgctxt ""
msgid "(Without)"
msgstr "(გარეშე)"
-#. )1Tc
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -976,7 +883,6 @@ msgctxt ""
msgid "Capitals"
msgstr "ასომთავრული ასოები"
-#. bPMC
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -986,7 +892,6 @@ msgctxt ""
msgid "Lowercase"
msgstr "ქვედა რეგისტრი"
-#. #KbY
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -996,7 +901,6 @@ msgctxt ""
msgid "Title"
msgstr "სათაური"
-#. 45Au
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1006,7 +910,6 @@ msgctxt ""
msgid "Small capitals"
msgstr "მცირე ნუსხური"
-#. Fk%]
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1017,7 +920,6 @@ msgctxt ""
msgid "(Without)"
msgstr "(გარეშე)"
-#. k/N[
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1027,7 +929,6 @@ msgctxt ""
msgid "Embossed"
msgstr "რელიეფური"
-#. U}V)
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1037,7 +938,6 @@ msgctxt ""
msgid "Engraved"
msgstr "გრავირებული"
-#. c.(\
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1048,7 +948,6 @@ msgctxt ""
msgid "(Without)"
msgstr "(გარეშე)"
-#. M+l@
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1058,7 +957,6 @@ msgctxt ""
msgid "Dot"
msgstr "წერტილი"
-#. +Q/}
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1068,7 +966,6 @@ msgctxt ""
msgid "Circle"
msgstr "წრე"
-#. {3?|
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1078,7 +975,6 @@ msgctxt ""
msgid "Disc"
msgstr "დისკო"
-#. wbE-
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1088,7 +984,6 @@ msgctxt ""
msgid "Accent"
msgstr "აქცენტი"
-#. l)a}
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1098,7 +993,6 @@ msgctxt ""
msgid "Above text"
msgstr "ტექსტის ზევით"
-#. G%TQ
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1108,7 +1002,6 @@ msgctxt ""
msgid "Below text"
msgstr "ტექსტის ქვევით"
-#. @8.a
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1119,7 +1012,6 @@ msgctxt ""
msgid "(Without)"
msgstr "(გარეშე)"
-#. hbpz
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1130,7 +1022,6 @@ msgctxt ""
msgid "Single"
msgstr "ცალი"
-#. VDcX
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1141,7 +1032,6 @@ msgctxt ""
msgid "Double"
msgstr "ორმაგი"
-#. T/+;
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1152,7 +1042,6 @@ msgctxt ""
msgid "Bold"
msgstr "მუქი"
-#. x8;w
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1162,7 +1051,6 @@ msgctxt ""
msgid "With /"
msgstr "სიგანე /"
-#. ?.Os
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1172,7 +1060,6 @@ msgctxt ""
msgid "With X"
msgstr "სიგანე X"
-#. z5Hc
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1183,7 +1070,6 @@ msgctxt ""
msgid "(Without)"
msgstr "(გარეშე)"
-#. 5Wt,
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1194,7 +1080,6 @@ msgctxt ""
msgid "Single"
msgstr "ცალი"
-#. N1$+
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1205,7 +1090,6 @@ msgctxt ""
msgid "Double"
msgstr "ორმაგი"
-#. ,XR1
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -1216,7 +1100,6 @@ msgctxt ""
msgid "Bold"
msgstr "მუქი"
-#. LM@`
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1226,7 +1109,6 @@ msgctxt ""
msgid "Dotted"
msgstr "წერტილოვანი"
-#. o.wf
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1236,7 +1118,6 @@ msgctxt ""
msgid "Dotted (Bold)"
msgstr "წერტილოვანი (მუქი)"
-#. pR1M
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1246,7 +1127,6 @@ msgctxt ""
msgid "Dash"
msgstr "ტირე"
-#. i:6S
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1256,7 +1136,6 @@ msgctxt ""
msgid "Dash (Bold)"
msgstr "ტირე (მუქი)"
-#. ]l,[
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1266,7 +1145,6 @@ msgctxt ""
msgid "Long Dash"
msgstr "გრძელი ტირე"
-#. bGo_
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1276,7 +1154,6 @@ msgctxt ""
msgid "Long Dash (Bold)"
msgstr "გრძელი ტირე (მუქი)"
-#. 4uf2
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1286,7 +1163,6 @@ msgctxt ""
msgid "Dot Dash"
msgstr "წერტილ-ტირე"
-#. JN,A
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1296,7 +1172,6 @@ msgctxt ""
msgid "Dot Dash (Bold)"
msgstr "წერტილ-ტირე (მუქი)"
-#. [$g.
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1306,7 +1181,6 @@ msgctxt ""
msgid "Dot Dot Dash"
msgstr "წერტილ-წერტილ"
-#. cccV
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1316,7 +1190,6 @@ msgctxt ""
msgid "Dot Dot Dash (Bold)"
msgstr "წერტილ-წერტილ (მუქი)"
-#. FPu3
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1326,7 +1199,6 @@ msgctxt ""
msgid "Wave"
msgstr "ტალღა"
-#. h8:*
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1336,7 +1208,6 @@ msgctxt ""
msgid "Wave (Bold)"
msgstr "ტალღა (მუქი)"
-#. ME7o
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1346,7 +1217,6 @@ msgctxt ""
msgid "Double Wave"
msgstr "ორმაგი ტალღა"
-#. @.{F
#: insertrowcolumn.ui
msgctxt ""
"insertrowcolumn.ui\n"
@@ -1356,7 +1226,6 @@ msgctxt ""
msgid "Insert Row"
msgstr "სტრიქონის ჩასმა"
-#. se3Q
#: insertrowcolumn.ui
#, fuzzy
msgctxt ""
@@ -1367,7 +1236,6 @@ msgctxt ""
msgid "_Number"
msgstr "რიცხვი"
-#. I_7r
#: insertrowcolumn.ui
msgctxt ""
"insertrowcolumn.ui\n"
@@ -1377,7 +1245,6 @@ msgctxt ""
msgid "Insert"
msgstr "ჩასმა"
-#. +H}G
#: insertrowcolumn.ui
#, fuzzy
msgctxt ""
@@ -1388,7 +1255,6 @@ msgctxt ""
msgid "_Before"
msgstr "-მდე"
-#. maCG
#: insertrowcolumn.ui
#, fuzzy
msgctxt ""
@@ -1399,7 +1265,6 @@ msgctxt ""
msgid "A_fter"
msgstr "-შემდეგ"
-#. Z97Q
#: insertrowcolumn.ui
#, fuzzy
msgctxt ""
@@ -1410,7 +1275,6 @@ msgctxt ""
msgid "Position"
msgstr "მდებარეობა"
-#. K5U8
#: hyphenate.ui
msgctxt ""
"hyphenate.ui\n"
@@ -1420,7 +1284,6 @@ msgctxt ""
msgid "Hyphenation"
msgstr "ჰიპერნაცია"
-#. byra
#: hyphenate.ui
msgctxt ""
"hyphenate.ui\n"
@@ -1430,7 +1293,6 @@ msgctxt ""
msgid "Hyphenate All"
msgstr ""
-#. QJ{Y
#: hyphenate.ui
#, fuzzy
msgctxt ""
@@ -1441,7 +1303,6 @@ msgctxt ""
msgid "Word"
msgstr "ს~იტყვა"
-#. PnrN
#: hyphenate.ui
msgctxt ""
"hyphenate.ui\n"
@@ -1451,7 +1312,6 @@ msgctxt ""
msgid "Hyphenate"
msgstr ""
-#. :p?D
#: hyphenate.ui
msgctxt ""
"hyphenate.ui\n"
@@ -1461,7 +1321,6 @@ msgctxt ""
msgid "Skip"
msgstr ""
-#. zGJ.
#: charnamepage.ui
msgctxt ""
"charnamepage.ui\n"
@@ -1471,7 +1330,6 @@ msgctxt ""
msgid "Family "
msgstr ""
-#. @^8,
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1482,7 +1340,6 @@ msgctxt ""
msgid "Style"
msgstr "სტილი"
-#. cjw{
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1493,7 +1350,6 @@ msgctxt ""
msgid "Size"
msgstr "ზომა"
-#. fz$6
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1504,7 +1360,6 @@ msgctxt ""
msgid "Language"
msgstr "ენა"
-#. _6aN
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1515,7 +1370,6 @@ msgctxt ""
msgid "Font"
msgstr "შრიფტი"
-#. bkLe
#: charnamepage.ui
msgctxt ""
"charnamepage.ui\n"
@@ -1525,7 +1379,6 @@ msgctxt ""
msgid "Family "
msgstr ""
-#. `Hcq
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1536,7 +1389,6 @@ msgctxt ""
msgid "Style"
msgstr "სტილი"
-#. tDAb
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1547,7 +1399,6 @@ msgctxt ""
msgid "Size"
msgstr "ზომა"
-#. cQ#i
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1558,7 +1409,6 @@ msgctxt ""
msgid "Language"
msgstr "ენა"
-#. eI/w
#: charnamepage.ui
msgctxt ""
"charnamepage.ui\n"
@@ -1568,7 +1418,6 @@ msgctxt ""
msgid "Western text font"
msgstr "დასვალური ტექსტის შრიფტი"
-#. f?%c
#: charnamepage.ui
msgctxt ""
"charnamepage.ui\n"
@@ -1578,7 +1427,6 @@ msgctxt ""
msgid "Family "
msgstr ""
-#. ![e0
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1589,7 +1437,6 @@ msgctxt ""
msgid "Style"
msgstr "სტილი"
-#. [96A
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1600,7 +1447,6 @@ msgctxt ""
msgid "Size"
msgstr "ზომა"
-#. `AqW
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1611,7 +1457,6 @@ msgctxt ""
msgid "Language"
msgstr "ენა"
-#. A%/9
#: charnamepage.ui
msgctxt ""
"charnamepage.ui\n"
@@ -1621,7 +1466,6 @@ msgctxt ""
msgid "Asian text font"
msgstr "აზიური ტექსტის შრიფტი"
-#. nP!Z
#: charnamepage.ui
msgctxt ""
"charnamepage.ui\n"
@@ -1631,7 +1475,6 @@ msgctxt ""
msgid "Family "
msgstr ""
-#. 9[0`
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1642,7 +1485,6 @@ msgctxt ""
msgid "Style"
msgstr "სტილი"
-#. efyW
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1653,7 +1495,6 @@ msgctxt ""
msgid "Size"
msgstr "ზომა"
-#. q[V0
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1664,7 +1505,6 @@ msgctxt ""
msgid "Language"
msgstr "ენა"
-#. DoEn
#: charnamepage.ui
msgctxt ""
"charnamepage.ui\n"
@@ -1674,7 +1514,6 @@ msgctxt ""
msgid "CTL font"
msgstr "CTL შრიფტი"
-#. MZZM
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1685,7 +1524,6 @@ msgctxt ""
msgid "Preview"
msgstr "გადახედვა"
-#. M2ds
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1695,7 +1533,6 @@ msgctxt ""
msgid "Floating Frame Properties"
msgstr "მცურავი ჩარჩოს პარამეტრები"
-#. x_rI
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1705,7 +1542,6 @@ msgctxt ""
msgid "Name"
msgstr "სახელი"
-#. 9cbs
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1715,7 +1551,6 @@ msgctxt ""
msgid "Contents"
msgstr "შინაარსი"
-#. 1,k{
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1726,7 +1561,6 @@ msgctxt ""
msgid "Browse..."
msgstr "ძიება..."
-#. Fdl9
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1736,7 +1570,6 @@ msgctxt ""
msgid "On"
msgstr ""
-#. aMs|
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1747,7 +1580,6 @@ msgctxt ""
msgid "Off"
msgstr "გამორთუ~ლია"
-#. P,tS
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1758,7 +1590,6 @@ msgctxt ""
msgid "Automatic"
msgstr "ავტომატური"
-#. Va^(
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1769,7 +1600,6 @@ msgctxt ""
msgid "Scroll bar"
msgstr "გადაადგილების ზოლები"
-#. Zd7=
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1779,7 +1609,6 @@ msgctxt ""
msgid "On"
msgstr ""
-#. 6;Lm
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1790,7 +1619,6 @@ msgctxt ""
msgid "Off"
msgstr "გამორთუ~ლია"
-#. TiIq
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1800,7 +1628,6 @@ msgctxt ""
msgid "Border"
msgstr "ჩარჩო"
-#. Neq]
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1810,7 +1637,6 @@ msgctxt ""
msgid "Width"
msgstr "სიგანე"
-#. QVdm
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1820,7 +1646,6 @@ msgctxt ""
msgid "Height"
msgstr "სიმაღლე"
-#. ^+2e
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1831,7 +1656,6 @@ msgctxt ""
msgid "Default"
msgstr "ნაგულისხმები"
-#. r7lA
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1842,7 +1666,6 @@ msgctxt ""
msgid "Default"
msgstr "ნაგულისხმები"
-#. eJ[8
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1852,7 +1675,6 @@ msgctxt ""
msgid "Spacing to contents"
msgstr "დაშორება სარჩევში"
-#. 3;XK
#: insertplugin.ui
msgctxt ""
"insertplugin.ui\n"
@@ -1862,7 +1684,6 @@ msgctxt ""
msgid "Insert Plug-in"
msgstr "დანამატის ჩასმა"
-#. ]O7?
#: insertplugin.ui
#, fuzzy
msgctxt ""
@@ -1873,7 +1694,6 @@ msgctxt ""
msgid "Browse..."
msgstr "ძიება..."
-#. !+?B
#: insertplugin.ui
#, fuzzy
msgctxt ""
@@ -1884,7 +1704,6 @@ msgctxt ""
msgid "File/URL"
msgstr "ფაილი / URL"
-#. ^)sT
#: insertplugin.ui
#, fuzzy
msgctxt ""
@@ -1895,7 +1714,6 @@ msgctxt ""
msgid "Options"
msgstr "პარამეტრები"
-#. e^,=
#: specialcharacters.ui
msgctxt ""
"specialcharacters.ui\n"
@@ -1905,7 +1723,6 @@ msgctxt ""
msgid "Special Characters"
msgstr "სპეციალური სიმბოლოები"
-#. (EUz
#: specialcharacters.ui
#, fuzzy
msgctxt ""
@@ -1916,7 +1733,6 @@ msgctxt ""
msgid "Font"
msgstr "შრიფტი"
-#. UkPh
#: specialcharacters.ui
msgctxt ""
"specialcharacters.ui\n"
@@ -1926,7 +1742,6 @@ msgctxt ""
msgid "Subset"
msgstr "ქვეწყობა"
-#. ?@d/
#: specialcharacters.ui
msgctxt ""
"specialcharacters.ui\n"
@@ -1936,7 +1751,6 @@ msgctxt ""
msgid "U+0020(32)"
msgstr ""
-#. b4V[
#: specialcharacters.ui
msgctxt ""
"specialcharacters.ui\n"
diff --git a/source/ka/dbaccess/source/core/resource.po b/source/ka/dbaccess/source/core/resource.po
index b7b919b88cc..d7f0fcc6145 100644
--- a/source/ka/dbaccess/source/core/resource.po
+++ b/source/ka/dbaccess/source/core/resource.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-11 23:18+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. /lSI
#: strings.src
msgctxt ""
"strings.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Tried to open the table $name$."
msgstr "$name$ ცხრილის გახსნის მცდელობა."
-#. tr!y
#: strings.src
msgctxt ""
"strings.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "No connection could be established."
msgstr "კავშირი არ მყარდება."
-#. E/=,
#: strings.src
msgctxt ""
"strings.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "The table $name$ already exists. It is not visible because it has been filtered out."
msgstr "ჩარჩო $name$ უკვე არსებობს.ხილული არ არის რადგან გაიფილტრა."
-#. p,*w
#: strings.src
msgctxt ""
"strings.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "You have no write access to the configuration data the object is based on."
msgstr "ობიექტის კონპიგურაციის მონაცემებში არ გაქვთ ჩაწერის უფლება."
-#. Jr@6
#: strings.src
msgctxt ""
"strings.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "The connection to the external data source could not be established. An unknown error occurred. The driver is probably defective."
msgstr "კავშირი გარე მონაცემთა საწყისთან არ არის დამყარებული. ადგილი ჰქონდა უცნობ შეცდომას,ალბათ დრაივერია წყობიდან გამოსული."
-#. f,gU
#: strings.src
msgctxt ""
"strings.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "The connection to the external data source could not be established. No SDBC driver was found for the given URL."
msgstr "კავშირი გარე მონაცემთა საწყისთან არ არის დამყარებული.მოცემული მისამართისთვის SDBC დრაივერი არ არის ნაპოვნი."
-#. %rB^
#: strings.src
msgctxt ""
"strings.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "The connection to the external data source could not be established. The SDBC driver manager could not be loaded."
msgstr "კავშირი გარე მონაცემთა საწყისთან არ არის დამყარებული. SDBC დრაივერი არ არის ჩატვირთული."
-#. C0.?
#: strings.src
msgctxt ""
"strings.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Form"
msgstr "ფორმა"
-#. 8u\$
#: strings.src
msgctxt ""
"strings.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Report"
msgstr "ანგარიში"
-#. ILO.
#: strings.src
msgctxt ""
"strings.src\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "The data source was not saved. Please use the interface XStorable to save the data source."
msgstr "მონაცემთა დასაჭყისი არ არის შენახული. გამოიყენე XStorable ინტერფეისი, მონაცემტა დასაცყისის შესანახად."
-#. B3.M
#: strings.src
msgctxt ""
"strings.src\n"
@@ -118,7 +107,6 @@ msgstr ""
"მოცემული ბრძანება არ არის SELECT დებულება.\n"
"დასაშვებია მხოლოდ მოთხოვნები."
-#. gkPZ
#: strings.src
msgctxt ""
"strings.src\n"
@@ -127,7 +115,6 @@ msgctxt ""
msgid "No values were modified."
msgstr "მნიშვნელობები არ შეცვლილა."
-#. 10Eg
#: strings.src
msgctxt ""
"strings.src\n"
@@ -136,7 +123,6 @@ msgctxt ""
msgid "Values could not be inserted. The XRowUpdate interface is not supported by ResultSet."
msgstr "მნიშვნელობის ჩამატება შეუძლებელია,XResultSetUpdate ინტერფეისი არ არი ნებადართული ResultSet-ის მიერ."
-#. =V{\
#: strings.src
msgctxt ""
"strings.src\n"
@@ -145,7 +131,6 @@ msgctxt ""
msgid "Values could not be inserted. The XResultSetUpdate interface is not supported by ResultSet."
msgstr "მნიშვნელობის ჩამატება შეუძლებელია, XResultSetUpdate ინტერფეისი არ არის ნებადართული ResultSet მიერ."
-#. J+0E
#: strings.src
msgctxt ""
"strings.src\n"
@@ -154,7 +139,6 @@ msgctxt ""
msgid "Values could not be modified, due to a missing condition statement."
msgstr "მნიშვნელობის შეცვლა შეუძლებელია კონდიციური სტრიქონის არარსებობის გამო."
-#. dJMS
#: strings.src
msgctxt ""
"strings.src\n"
@@ -163,7 +147,6 @@ msgctxt ""
msgid "The adding of columns is not supported."
msgstr "სვეტების დამატება არ არის მხარდაჭერილი."
-#. `dr(
#: strings.src
msgctxt ""
"strings.src\n"
@@ -172,7 +155,6 @@ msgctxt ""
msgid "The dropping of columns is not supported."
msgstr "ჩამოშლილი სვეტი არ არის მხარდაჭერილი."
-#. !\c+
#: strings.src
msgctxt ""
"strings.src\n"
@@ -181,7 +163,6 @@ msgctxt ""
msgid "The WHERE condition could not be created for the primary key."
msgstr "ძირითადი გასაღებისთვის WHERE პირობა ვერ შეიქმნა"
-#. DmYo
#: strings.src
msgctxt ""
"strings.src\n"
@@ -190,7 +171,6 @@ msgctxt ""
msgid "The column does not support the property '%value'."
msgstr "ამ სვეტს არ გააჩნია თვისების %value' მხარდაჭერა."
-#. hROM
#: strings.src
msgctxt ""
"strings.src\n"
@@ -199,7 +179,6 @@ msgctxt ""
msgid "The column is not searchable!"
msgstr "ეს სვეტი არ არის ძებნადი!"
-#. T^=x
#: strings.src
msgctxt ""
"strings.src\n"
@@ -208,7 +187,6 @@ msgctxt ""
msgid "The value of the columns is not of the type Sequence<sal_Int8>."
msgstr "სვეტების თანმიმდევრობა არ არის აკრეფილი ტანმიმდევრობით<sal_Int8>"
-#. dmJ^
#: strings.src
msgctxt ""
"strings.src\n"
@@ -217,7 +195,6 @@ msgctxt ""
msgid "The column is not valid."
msgstr "ეს სვეტი არ არის მართებული."
-#. GKQn
#: strings.src
msgctxt ""
"strings.src\n"
@@ -226,7 +203,6 @@ msgctxt ""
msgid "The column '%name' must be visible as a column."
msgstr "სვეტის %name' სვეტივიტ ხილული უნა იყოს."
-#. ChFg
#: strings.src
msgctxt ""
"strings.src\n"
@@ -235,7 +211,6 @@ msgctxt ""
msgid "The interface XQueriesSupplier is not available."
msgstr "XQueries supplier ინტერფასი არ არის ხელმისაწვდომი."
-#. `Vl,
#: strings.src
msgctxt ""
"strings.src\n"
@@ -244,7 +219,6 @@ msgctxt ""
msgid "The driver does not support this function."
msgstr "ამ ფუნქციას არ აქვს დრაივერის მხარდაჭერა."
-#. b9mq
#: strings.src
msgctxt ""
"strings.src\n"
@@ -253,7 +227,6 @@ msgctxt ""
msgid "An 'absolute(0)' call is not allowed."
msgstr "'absolute(0)' გამოძახება არ არის ნებადართული."
-#. #7.J
#: strings.src
msgctxt ""
"strings.src\n"
@@ -262,7 +235,6 @@ msgctxt ""
msgid "Relative positioning is not allowed in this state."
msgstr "შესაბამისი მდებარეობა არ არის ნებაართული ამ მდგომარეობაში."
-#. J~{Z
#: strings.src
msgctxt ""
"strings.src\n"
@@ -271,7 +243,6 @@ msgctxt ""
msgid "A row cannot be refreshed when the ResultSet is positioned after the last row."
msgstr "ახალი სტრიქონი ვერ განახლდება როდესაც ResultSet ბოლო სტრიქონის შემდეგ."
-#. b1[?
#: strings.src
msgctxt ""
"strings.src\n"
@@ -280,7 +251,6 @@ msgctxt ""
msgid "A new row cannot be inserted when the ResultSet is not first moved to the insert row."
msgstr "ახალი სტრიქონი ვერ ჩაემატება როდესაც ResultSet პირველი არ არის ჩასმის სტრიქონში."
-#. w:c%
#: strings.src
msgctxt ""
"strings.src\n"
@@ -289,7 +259,6 @@ msgctxt ""
msgid "A row cannot be modified in this state"
msgstr "ამ მდგომარეობაში სტრიქონმის შეცვლა შეუძლებელია"
-#. 2.*I
#: strings.src
msgctxt ""
"strings.src\n"
@@ -298,7 +267,6 @@ msgctxt ""
msgid "A row cannot be deleted in this state."
msgstr "სტრიქონი არ შეიდზლება ამ მდგომარეობასში წაიშალოს."
-#. E(eo
#: strings.src
msgctxt ""
"strings.src\n"
@@ -307,7 +275,6 @@ msgctxt ""
msgid "The driver does not support table renaming."
msgstr "დრაივერს ცხრილის სახელის შეცვლის მხარდჭერის ფუნქცია არააქვს."
-#. s7Q2
#: strings.src
msgctxt ""
"strings.src\n"
@@ -316,7 +283,6 @@ msgctxt ""
msgid "The driver does not support the modification of column descriptions."
msgstr "დრაივერს სვეტის მოდიფიკაციის მხარდაჭერის ფუნქცია არააქვს."
-#. #kM]
#: strings.src
msgctxt ""
"strings.src\n"
@@ -325,7 +291,6 @@ msgctxt ""
msgid "The driver does not support the modification of column descriptions by changing the name."
msgstr "დრაივერს სვეტის სახლის შეცვლის მხარდაჭერა არააქვს."
-#. UDA3
#: strings.src
msgctxt ""
"strings.src\n"
@@ -334,7 +299,6 @@ msgctxt ""
msgid "The driver does not support the modification of column descriptions by changing the index."
msgstr "დრაივერს სვეტის ინდექსის შეცვლის მხარდაჭერა არ გააჩნია."
-#. dSi`
#: strings.src
msgctxt ""
"strings.src\n"
@@ -343,7 +307,6 @@ msgctxt ""
msgid "The file \"$file$\" does not exist."
msgstr "\"$file$\" ფაილი არ არსებობს."
-#. fMB5
#: strings.src
msgctxt ""
"strings.src\n"
@@ -352,7 +315,6 @@ msgctxt ""
msgid "There exists no table named \"$table$\"."
msgstr "ცხრილი სახელად \"$table$\" არ არსებობს."
-#. x6hr
#: strings.src
msgctxt ""
"strings.src\n"
@@ -361,7 +323,6 @@ msgctxt ""
msgid "There exists no query named \"$table$\"."
msgstr "ცხრილი სახელად \"$table$\" არ არსებობს."
-#. 6*vj
#: strings.src
msgctxt ""
"strings.src\n"
@@ -370,7 +331,6 @@ msgctxt ""
msgid "There are tables in the database whose names conflict with the names of existing queries. To make full use of all queries and tables, make sure they have distinct names."
msgstr "აქ არის ცხრილები მონაცემთა ბაზაში, რომელთა სახელები კონფლიკტშია არსებულ მოთხოვნასთან. გამოყენებითი რომ გახდეს მოთხოვნები და ცხრილები, დარწმუნდით რომ მათ მკაფიო სახელები გააჩნია."
-#. +2_)
#: strings.src
msgctxt ""
"strings.src\n"
@@ -385,7 +345,6 @@ msgstr ""
"\n"
"$command$"
-#. sLLi
#: strings.src
msgctxt ""
"strings.src\n"
@@ -394,7 +353,6 @@ msgctxt ""
msgid "The SQL command does not describe a result set."
msgstr ""
-#. 1um:
#: strings.src
#, fuzzy
msgctxt ""
@@ -404,7 +362,6 @@ msgctxt ""
msgid "The name must not be empty."
msgstr "სერვერი არ შეიძლება იყოს ცარიელი."
-#. aW[i
#: strings.src
msgctxt ""
"strings.src\n"
@@ -413,7 +370,6 @@ msgctxt ""
msgid "The container cannot contain NULL objects."
msgstr ""
-#. aG.\
#: strings.src
msgctxt ""
"strings.src\n"
@@ -422,7 +378,6 @@ msgctxt ""
msgid "There already is an object with the given name."
msgstr ""
-#. WVfc
#: strings.src
msgctxt ""
"strings.src\n"
@@ -431,7 +386,6 @@ msgctxt ""
msgid "This object cannot be part of this container."
msgstr ""
-#. $n`c
#: strings.src
msgctxt ""
"strings.src\n"
@@ -440,7 +394,6 @@ msgctxt ""
msgid "The object already is, with a different name, part of the container."
msgstr ""
-#. L^Ws
#: strings.src
msgctxt ""
"strings.src\n"
@@ -449,7 +402,6 @@ msgctxt ""
msgid "Unable to find the document '$name$'."
msgstr ""
-#. UTT6
#: strings.src
msgctxt ""
"strings.src\n"
@@ -460,7 +412,6 @@ msgid ""
"$message$"
msgstr ""
-#. WcZo
#: strings.src
msgctxt ""
"strings.src\n"
@@ -471,7 +422,6 @@ msgid ""
"$error$"
msgstr ""
-#. c/c)
#: strings.src
msgctxt ""
"strings.src\n"
@@ -480,7 +430,6 @@ msgctxt ""
msgid "There exists no folder named \"$folder$\"."
msgstr "ცხრილი სახელად \"$table$\" არ არსებობს."
-#. p6+_
#: strings.src
msgctxt ""
"strings.src\n"
@@ -489,7 +438,6 @@ msgctxt ""
msgid "Cannot delete the before-first or after-last row."
msgstr ""
-#. 3S;+
#: strings.src
msgctxt ""
"strings.src\n"
@@ -498,7 +446,6 @@ msgctxt ""
msgid "Cannot delete the insert-row."
msgstr ""
-#. ncD}
#: strings.src
msgctxt ""
"strings.src\n"
@@ -507,7 +454,6 @@ msgctxt ""
msgid "Result set is read only."
msgstr ""
-#. {d*:
#: strings.src
msgctxt ""
"strings.src\n"
@@ -516,7 +462,6 @@ msgctxt ""
msgid "DELETE privilege not available."
msgstr ""
-#. AaXP
#: strings.src
msgctxt ""
"strings.src\n"
@@ -525,7 +470,6 @@ msgctxt ""
msgid "Current row is already deleted."
msgstr ""
-#. T}{9
#: strings.src
#, fuzzy
msgctxt ""
@@ -535,7 +479,6 @@ msgctxt ""
msgid "Current row could not be updated."
msgstr "მონაცემთა შიგთავსი ვერ განახლდება"
-#. p--J
#: strings.src
msgctxt ""
"strings.src\n"
@@ -544,7 +487,6 @@ msgctxt ""
msgid "INSERT privilege not available."
msgstr ""
-#. IbfB
#: strings.src
msgctxt ""
"strings.src\n"
@@ -553,7 +495,6 @@ msgctxt ""
msgid "Internal error: no statement object provided by the database driver."
msgstr ""
-#. YpbE
#: strings.src
msgctxt ""
"strings.src\n"
@@ -562,7 +503,6 @@ msgctxt ""
msgid "Expression1"
msgstr ""
-#. ~6oS
#: strings.src
msgctxt ""
"strings.src\n"
@@ -571,7 +511,6 @@ msgctxt ""
msgid "No SQL command was provided."
msgstr ""
-#. ,*fj
#: strings.src
msgctxt ""
"strings.src\n"
@@ -580,7 +519,6 @@ msgctxt ""
msgid "Invalid column index."
msgstr ""
-#. */,\
#: strings.src
msgctxt ""
"strings.src\n"
@@ -589,7 +527,6 @@ msgctxt ""
msgid "Invalid cursor state."
msgstr ""
-#. xfeZ
#: strings.src
msgctxt ""
"strings.src\n"
@@ -598,7 +535,6 @@ msgctxt ""
msgid "The cursor points to before the first or after the last row."
msgstr ""
-#. /|WO
#: strings.src
msgctxt ""
"strings.src\n"
@@ -607,7 +543,6 @@ msgctxt ""
msgid "The rows before the first and after the last row don't have a bookmark."
msgstr ""
-#. nl.%
#: strings.src
msgctxt ""
"strings.src\n"
@@ -616,7 +551,6 @@ msgctxt ""
msgid "The current row is deleted, and thus doesn't have a bookmark."
msgstr ""
-#. st[S
#: strings.src
msgctxt ""
"strings.src\n"
@@ -625,7 +559,6 @@ msgctxt ""
msgid "Embedding of database documents is not supported."
msgstr ""
-#. D257
#: strings.src
msgctxt ""
"strings.src\n"
@@ -634,7 +567,6 @@ msgctxt ""
msgid "A connection for the following URL was requested \"$name$\"."
msgstr ""
-#. UZxP
#: strings.src
msgctxt ""
"strings.src\n"
diff --git a/source/ka/dbaccess/source/ext/macromigration.po b/source/ka/dbaccess/source/ext/macromigration.po
index ab8edac9967..9c287a51e0c 100644
--- a/source/ka/dbaccess/source/ext/macromigration.po
+++ b/source/ka/dbaccess/source/ext/macromigration.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. /*XT
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "Prepare"
msgstr ""
-#. ;GCY
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Backup Document"
msgstr ""
-#. wO:K
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Migrate"
msgstr ""
-#. x3s]
#: macromigration.src
#, fuzzy
msgctxt ""
@@ -56,7 +52,6 @@ msgctxt ""
msgid "Summary"
msgstr "მოკლე შინაარსი"
-#. O8E~
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "Database Document Macro Migration"
msgstr ""
-#. URJi
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "Welcome to the Database Macro Migration Wizard"
msgstr ""
-#. rNob
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -92,7 +85,6 @@ msgid ""
"Before the migration can start, all forms, reports, queries and tables belonging to the document must be closed. Press 'Next' to do so."
msgstr ""
-#. [*kI
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -102,7 +94,6 @@ msgctxt ""
msgid "Not all objects could be closed. Please close them manually, and re-start the wizard."
msgstr ""
-#. ys;s
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -112,7 +103,6 @@ msgctxt ""
msgid "Backup your Document"
msgstr ""
-#. l.o/
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -122,7 +112,6 @@ msgctxt ""
msgid "To allow you to go back to the state before the migration, the database document will be backed up to a location of your choice. Every change done by the wizard will be made to the original document, the backup will stay untouched."
msgstr ""
-#. /T7e
#: macromigration.src
#, fuzzy
msgctxt ""
@@ -133,7 +122,6 @@ msgctxt ""
msgid "Save To:"
msgstr "შენახვა:"
-#. k[Sg
#: macromigration.src
#, fuzzy
msgctxt ""
@@ -144,7 +132,6 @@ msgctxt ""
msgid "Browse ..."
msgstr "ძიება..."
-#. sT2J
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -154,7 +141,6 @@ msgctxt ""
msgid "Press 'Next' to save a copy of your document, and to begin the migration."
msgstr ""
-#. BCGi
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -164,7 +150,6 @@ msgctxt ""
msgid "Migration Progress"
msgstr ""
-#. g[FI
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -174,7 +159,6 @@ msgctxt ""
msgid "The database document contains $forms$ form(s) and $reports$ report(s), which are currently being processed:"
msgstr ""
-#. Tp]j
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -184,7 +168,6 @@ msgctxt ""
msgid "Current object:"
msgstr ""
-#. P5HM
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -194,7 +177,6 @@ msgctxt ""
msgid "Current progress:"
msgstr ""
-#. zf(u
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -204,7 +186,6 @@ msgctxt ""
msgid "Overall progress:"
msgstr ""
-#. =+\*
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -214,7 +195,6 @@ msgctxt ""
msgid "document $current$ of $overall$"
msgstr ""
-#. OWE0
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -224,7 +204,6 @@ msgctxt ""
msgid "All forms and reports have been successfully processed. Press 'Next' to show a detailed summary."
msgstr ""
-#. IGos
#: macromigration.src
#, fuzzy
msgctxt ""
@@ -235,7 +214,6 @@ msgctxt ""
msgid "Summary"
msgstr "მოკლე შინაარსი"
-#. f%B9
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -245,7 +223,6 @@ msgctxt ""
msgid "The migration was successful. Below is a log of the actions which have been taken to your document."
msgstr ""
-#. UOYO
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -256,7 +233,6 @@ msgid "The migration was not successful. Examine the migration log below for det
msgstr ""
#. This refers to a form document inside a database document.
-#. ,!c1
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -266,7 +242,6 @@ msgid "Form '$name$'"
msgstr ""
#. This refers to a report document inside a database document.
-#. _dZ#
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -275,7 +250,6 @@ msgctxt ""
msgid "Report '$name$'"
msgstr ""
-#. adV]
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -284,7 +258,6 @@ msgctxt ""
msgid "document $current$ of $overall$"
msgstr ""
-#. dS]Q
#: macromigration.src
#, fuzzy
msgctxt ""
@@ -294,7 +267,6 @@ msgctxt ""
msgid "Database Document"
msgstr "მონაცემთა ბაზის დოკუმენტები"
-#. x,#Z
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -303,7 +275,6 @@ msgctxt ""
msgid "saved copy to $location$"
msgstr ""
-#. ONwp
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -312,7 +283,6 @@ msgctxt ""
msgid "migrated $type$ library '$old$' to '$new$'"
msgstr ""
-#. (x0u
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -321,7 +291,6 @@ msgctxt ""
msgid "$type$ library '$library$'"
msgstr ""
-#. ro*Q
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -330,7 +299,6 @@ msgctxt ""
msgid "migrating libraries ..."
msgstr ""
-#. MH9T
#: macromigration.src
#, fuzzy
msgctxt ""
@@ -340,7 +308,6 @@ msgctxt ""
msgid "%PRODUCTNAME Basic"
msgstr "%PRODUCTNAME ნახაზი"
-#. L95~
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -349,7 +316,6 @@ msgctxt ""
msgid "JavaScript"
msgstr ""
-#. K_(k
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -358,7 +324,6 @@ msgctxt ""
msgid "BeanShell"
msgstr ""
-#. z5Zc
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -367,7 +332,6 @@ msgctxt ""
msgid "Java"
msgstr "ჯავა"
-#. g~Jm
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -376,7 +340,6 @@ msgctxt ""
msgid "Python"
msgstr ""
-#. JK8L
#: macromigration.src
#, fuzzy
msgctxt ""
@@ -386,7 +349,6 @@ msgctxt ""
msgid "dialog"
msgstr "დიალოგი"
-#. {huM
#: macromigration.src
#, fuzzy
msgctxt ""
@@ -396,7 +358,6 @@ msgctxt ""
msgid "Error(s)"
msgstr "შეცდომები"
-#. lP[k
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -405,7 +366,6 @@ msgctxt ""
msgid "Warnings"
msgstr ""
-#. RJnt
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -414,7 +374,6 @@ msgctxt ""
msgid "caught exception:"
msgstr ""
-#. JmHf
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -423,7 +382,6 @@ msgctxt ""
msgid "You need to choose a backup location other than the document location itself."
msgstr ""
-#. `o=?
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -432,7 +390,6 @@ msgctxt ""
msgid "Invalid number of initialization arguments. Expected 1."
msgstr ""
-#. Q7eK
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -441,7 +398,6 @@ msgctxt ""
msgid "No database document found in the initialization arguments."
msgstr ""
-#. SZ+3
#: macromigration.src
msgctxt ""
"macromigration.src\n"
diff --git a/source/ka/dbaccess/source/sdbtools/resource.po b/source/ka/dbaccess/source/sdbtools/resource.po
index 6fd31780c8f..4b57832acbf 100644
--- a/source/ka/dbaccess/source/sdbtools/resource.po
+++ b/source/ka/dbaccess/source/sdbtools/resource.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 4W,4
#: sdbt_strings.src
msgctxt ""
"sdbt_strings.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "You cannot give a table and a query the same name. Please use a name which is not yet used by a query or table."
msgstr "თქვენ არ შეგიძლიათ ცხრილისთვის და მოთხოვნისთვის ერთი და იმავე სახელის დარქმევა. გთხოვთ გამოიყენოთ სახელი რომელიც მოთხოვნისთვის ან ცხრილისთვის ჯერ არ დაგირქმევიათ."
-#. gyh%
#: sdbt_strings.src
msgctxt ""
"sdbt_strings.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Table"
msgstr "ცხრილი"
-#. /LI:
#: sdbt_strings.src
msgctxt ""
"sdbt_strings.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Query"
msgstr "მოთხოვნა"
-#. 7qKO
#: sdbt_strings.src
msgctxt ""
"sdbt_strings.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "The given connection is no valid query and/or tables supplier."
msgstr ""
-#. mGK#
#: sdbt_strings.src
msgctxt ""
"sdbt_strings.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "The given object is no table object."
msgstr ""
-#. LIUa
#: sdbt_strings.src
msgctxt ""
"sdbt_strings.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Invalid composition type - need a value from com.sun.star.sdb.tools.CompositionType."
msgstr ""
-#. _8X^
#: sdbt_strings.src
msgctxt ""
"sdbt_strings.src\n"
diff --git a/source/ka/dbaccess/source/ui/app.po b/source/ka/dbaccess/source/ui/app.po
index 388315b0574..148d415f96c 100644
--- a/source/ka/dbaccess/source/ui/app.po
+++ b/source/ka/dbaccess/source/ui/app.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. M8+u
#: app.src
msgctxt ""
"app.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Create Form in Design View..."
msgstr "ფორმის შექმნა დიზაინის ხედში..."
-#. 5}mf
#: app.src
msgctxt ""
"app.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Use Wizard to Create Form..."
msgstr "ფორმის შესაქმნელად ოსტატის გამოყენება..."
-#. ^I:2
#: app.src
msgctxt ""
"app.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Use Wizard to Create Report..."
msgstr "ანგარიშის შესაქმნელად ოსტატის გამოყენება..."
-#. 5%!)
#: app.src
msgctxt ""
"app.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Create Report in Design View..."
msgstr "ფორმის შექმნა დიზაინის ხედში..."
-#. QMc.
#: app.src
msgctxt ""
"app.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Create Query in Design View..."
msgstr "მოთხოვნის შექმნა დიზაინის ხედში..."
-#. wQLG
#: app.src
msgctxt ""
"app.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Create Query in SQL View..."
msgstr "მოთხოვნის შექმნა SQL-ის ხედში..."
-#. 0j=5
#: app.src
msgctxt ""
"app.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Use Wizard to Create Query..."
msgstr "ოსტატის გამოყენება მოთხოვნის შესაქმნელად..."
-#. c+m^
#: app.src
msgctxt ""
"app.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Create Table in Design View..."
msgstr "ცხრილის შექმნა დიზაინის ხედში..."
-#. 8_x!
#: app.src
msgctxt ""
"app.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Use Wizard to Create Table..."
msgstr "ცხრილის შესაქმნელად ოსტატის გამოყენება"
-#. U-|Y
#: app.src
msgctxt ""
"app.src\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Create View..."
msgstr "ხედის შექმნა..."
-#. 52Z[
#: app.src
msgctxt ""
"app.src\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "Forms"
msgstr "ფორმები"
-#. il@k
#: app.src
msgctxt ""
"app.src\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "Reports"
msgstr "ანგარიშები"
-#. gSSQ
#: app.src
msgctxt ""
"app.src\n"
@@ -133,7 +120,6 @@ msgctxt ""
msgid "Form..."
msgstr "ფორმა..."
-#. #,}Q
#: app.src
#, fuzzy
msgctxt ""
@@ -144,7 +130,6 @@ msgctxt ""
msgid "Report..."
msgstr "ექსპორტი..."
-#. ]kPd
#: app.src
msgctxt ""
"app.src\n"
@@ -154,7 +139,6 @@ msgctxt ""
msgid "View (Simple)..."
msgstr "ხედი (მარტივი)..."
-#. =nyK
#: app.src
msgctxt ""
"app.src\n"
@@ -164,7 +148,6 @@ msgctxt ""
msgid "Paste Special..."
msgstr "სპეციალური ჩასმა..."
-#. qc.B
#: app.src
msgctxt ""
"app.src\n"
@@ -174,7 +157,6 @@ msgctxt ""
msgid "Delete"
msgstr "წაშლა"
-#. TJf$
#: app.src
msgctxt ""
"app.src\n"
@@ -184,7 +166,6 @@ msgctxt ""
msgid "Rename"
msgstr "გადარქმევა"
-#. M[`t
#: app.src
msgctxt ""
"app.src\n"
@@ -194,7 +175,6 @@ msgctxt ""
msgid "Edit"
msgstr "რედაქტირება"
-#. Dxkr
#: app.src
msgctxt ""
"app.src\n"
@@ -204,7 +184,6 @@ msgctxt ""
msgid "Edit in SQL View..."
msgstr ""
-#. O)+e
#: app.src
msgctxt ""
"app.src\n"
@@ -214,7 +193,6 @@ msgctxt ""
msgid "Open"
msgstr "გახსნა"
-#. p;88
#: app.src
msgctxt ""
"app.src\n"
@@ -224,7 +202,6 @@ msgctxt ""
msgid "Create as View"
msgstr "შექმნა როგორც ხედი"
-#. Ci\=
#: app.src
msgctxt ""
"app.src\n"
@@ -234,7 +211,6 @@ msgctxt ""
msgid "Form Wizard..."
msgstr "ფორმის ოსტატი..."
-#. 5qX\
#: app.src
#, fuzzy
msgctxt ""
@@ -245,7 +221,6 @@ msgctxt ""
msgid "Report..."
msgstr "ექსპორტი..."
-#. iu:i
#: app.src
msgctxt ""
"app.src\n"
@@ -255,7 +230,6 @@ msgctxt ""
msgid "Report Wizard..."
msgstr "ანგარიშის ოსტატი..."
-#. 0Q3,
#: app.src
msgctxt ""
"app.src\n"
@@ -265,7 +239,6 @@ msgctxt ""
msgid "Select All"
msgstr "ყველას არჩევა"
-#. #W3E
#: app.src
#, fuzzy
msgctxt ""
@@ -276,7 +249,6 @@ msgctxt ""
msgid "Properties..."
msgstr "თვისებები"
-#. l*B:
#: app.src
#, fuzzy
msgctxt ""
@@ -287,7 +259,6 @@ msgctxt ""
msgid "Connection Type..."
msgstr "კავშირის ტიპი"
-#. 1Avo
#: app.src
#, fuzzy
msgctxt ""
@@ -298,7 +269,6 @@ msgctxt ""
msgid "Advanced Settings..."
msgstr "დამატებითი პარამეტრები"
-#. i3v)
#: app.src
msgctxt ""
"app.src\n"
@@ -308,7 +278,6 @@ msgctxt ""
msgid "~Database"
msgstr "~მონაცემთა ბაზა"
-#. /bmi
#: app.src
msgctxt ""
"app.src\n"
@@ -317,7 +286,6 @@ msgctxt ""
msgid "Do you want to delete the data source '%1'?"
msgstr "გსურთ წაშალოთ მონაცემთა წყარო '%1'?"
-#. #e4D
#: app.src
msgctxt ""
"app.src\n"
@@ -326,7 +294,6 @@ msgctxt ""
msgid " - %PRODUCTNAME Base"
msgstr " - %PRODUCTNAME ბაზა"
-#. Y@N!
#: app.src
msgctxt ""
"app.src\n"
@@ -335,7 +302,6 @@ msgctxt ""
msgid "The wizard will guide you through the steps necessary to create a report."
msgstr "ოსტატი გაგიძღვებათ ანგარიშის შექმნისთვის საჭირო ნაბიჯებში."
-#. R:%2
#: app.src
msgctxt ""
"app.src\n"
@@ -344,7 +310,6 @@ msgctxt ""
msgid "Create a form by specifying the record source, controls, and control properties."
msgstr "ფორმის შექმნდა ჩანაწერის წყაროს, კონტროლების და კონტროლის პარამეტრების მითითებით."
-#. /eW?
#: app.src
msgctxt ""
"app.src\n"
@@ -353,7 +318,6 @@ msgctxt ""
msgid "Create a report by specifying the record source, controls, and control properties."
msgstr "ფორმის შექმნდა ჩანაწერის წყაროს, კონტროლების და კონტროლის პარამეტრების მითითებით."
-#. /#er
#: app.src
msgctxt ""
"app.src\n"
@@ -362,7 +326,6 @@ msgctxt ""
msgid "The wizard will guide you through the steps necessary to create a form."
msgstr "ოსტატი გაგიძღვებათ ფორმის შექმნისთვის საჭირო ნაბიჯებში."
-#. #+2[
#: app.src
#, fuzzy
msgctxt ""
@@ -372,7 +335,6 @@ msgctxt ""
msgid "Create a query by specifying the filters, input tables, field names, and properties for sorting or grouping."
msgstr "მოთხოვნის შექმნა ფილტრების, შეტანის ცხრილების, ველის სახელების და დაჯგუფების და დახარისხების თვისებების მითითება"
-#. `P.h
#: app.src
#, fuzzy
msgctxt ""
@@ -382,7 +344,6 @@ msgctxt ""
msgid "Create a query entering an SQL statement directly."
msgstr "მოთხოვნის შექმნდა SQL დებულების პირდაპირ შეყვანით."
-#. x`M;
#: app.src
msgctxt ""
"app.src\n"
@@ -391,7 +352,6 @@ msgctxt ""
msgid "The wizard will guide you through the steps necessary to create a query."
msgstr "ოსტატი გაგიძღვებათ მოთხოვნის შექმნისთვის საჭირო ნაბიჯებში."
-#. muUk
#: app.src
msgctxt ""
"app.src\n"
@@ -400,7 +360,6 @@ msgctxt ""
msgid "Create a table by specifying the field names and properties, as well as the data types."
msgstr "ცხრილის შექმნდა ველის სახელების და თვისებების, აგრეთვე მონაცემთა ტიპების მითითებით."
-#. ,A)/
#: app.src
msgctxt ""
"app.src\n"
@@ -409,7 +368,6 @@ msgctxt ""
msgid "Choose from a selection of business and personal table samples, which you customize to create a table."
msgstr "ამოირჩიეთ საქმიანი და პერონალური ცხრილების ნიმუშების სიიდან, რომელსაც ცხრილის შექმნისთვის მოარგებთ."
-#. 1}hB
#: app.src
msgctxt ""
"app.src\n"
@@ -418,7 +376,6 @@ msgctxt ""
msgid "Create a view by specifying the tables and field names you would like to have visible."
msgstr "ხედის შექმნდა ცხრილების და ველთა სახელების მითითება, რომელთა გამოჩენაც გსურთ."
-#. uecI
#: app.src
msgctxt ""
"app.src\n"
@@ -427,7 +384,6 @@ msgctxt ""
msgid "Opens the view wizard"
msgstr "ხსნის ხედის ოსტატს"
-#. 8!I9
#: app.src
msgctxt ""
"app.src\n"
@@ -436,7 +392,6 @@ msgctxt ""
msgid "Database"
msgstr "მონაცემთა ბაზა"
-#. +oK?
#: app.src
msgctxt ""
"app.src\n"
@@ -445,7 +400,6 @@ msgctxt ""
msgid "Tasks"
msgstr "დავალებები"
-#. ]#8r
#: app.src
msgctxt ""
"app.src\n"
@@ -454,7 +408,6 @@ msgctxt ""
msgid "Description"
msgstr "აღწერილობა"
-#. QP~x
#: app.src
msgctxt ""
"app.src\n"
@@ -463,7 +416,6 @@ msgctxt ""
msgid "Preview"
msgstr "გადახედვა"
-#. 4Q8\
#: app.src
msgctxt ""
"app.src\n"
@@ -472,7 +424,6 @@ msgctxt ""
msgid "Disable Preview"
msgstr "გადახედვის გათიშვა"
-#. IV?f
#: app.src
msgctxt ""
"app.src\n"
@@ -485,7 +436,6 @@ msgstr ""
"მონაცემთა ბაზა შეიცვალა.\n"
"გსურთ ცვლილებათა შენახვა?"
-#. E6t=
#: app.src
msgctxt ""
"app.src\n"
@@ -502,7 +452,6 @@ msgstr ""
"\n"
"გსურთ ყველა დოკუმენტის დახურვა?"
-#. -xWK
#: app.src
msgctxt ""
"app.src\n"
@@ -512,7 +461,6 @@ msgctxt ""
msgid "None"
msgstr "არცერთი"
-#. r.2f
#: app.src
msgctxt ""
"app.src\n"
@@ -522,7 +470,6 @@ msgctxt ""
msgid "Document Information"
msgstr "დოკუმენტის ინფორმაცია"
-#. 8rn:
#: app.src
msgctxt ""
"app.src\n"
@@ -532,7 +479,6 @@ msgctxt ""
msgid "Document"
msgstr "დოკუმენტი"
-#. \5_4
#: app.src
msgctxt ""
"app.src\n"
@@ -541,7 +487,6 @@ msgctxt ""
msgid "Form"
msgstr "ფორმა"
-#. Bc1t
#: app.src
msgctxt ""
"app.src\n"
@@ -550,7 +495,6 @@ msgctxt ""
msgid "Report"
msgstr "ანგარიში"
-#. .j2e
#: app.src
msgctxt ""
"app.src\n"
@@ -559,7 +503,6 @@ msgctxt ""
msgid "F~orm name"
msgstr "~ფორმის სახელი"
-#. ,lje
#: app.src
msgctxt ""
"app.src\n"
@@ -568,7 +511,6 @@ msgctxt ""
msgid "~Report name"
msgstr "~ანგარიშის სახელი"
-#. g:.c
#: app.src
msgctxt ""
"app.src\n"
@@ -577,7 +519,6 @@ msgctxt ""
msgid "F~older name"
msgstr "~დირექტორიის სახელი"
-#. LM}N
#: app.src
msgctxt ""
"app.src\n"
@@ -586,7 +527,6 @@ msgctxt ""
msgid "The document contains forms or reports with embedded macros."
msgstr ""
-#. *a0E
#: app.src
msgctxt ""
"app.src\n"
@@ -600,7 +540,6 @@ msgid ""
"Note that you won't be able to embed macros into the database document itself until this migration is done. "
msgstr ""
-#. IG;w
#: app.src
msgctxt ""
"app.src\n"
@@ -609,7 +548,6 @@ msgctxt ""
msgid "Embedded database"
msgstr ""
-#. 9PgD
#: app.src
msgctxt ""
"app.src\n"
@@ -618,7 +556,6 @@ msgctxt ""
msgid "You cannot select different categories."
msgstr ""
-#. !1~2
#: app.src
msgctxt ""
"app.src\n"
diff --git a/source/ka/dbaccess/source/ui/browser.po b/source/ka/dbaccess/source/ui/browser.po
index a345cab311e..71aa7afc9da 100644
--- a/source/ka/dbaccess/source/ui/browser.po
+++ b/source/ka/dbaccess/source/ui/browser.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Yg61
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "Column ~Format..."
msgstr "სვეტის ~ფორმატი"
-#. S*3^
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Copy Column D~escription"
msgstr "სვეტის ~აღწერილობის კოპირება"
-#. OrWW
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Table Format..."
msgstr "ცხრილის ფორმატი..."
-#. _*Kp
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Row Height..."
msgstr "რიგის სიმაღლე..."
-#. tU(+
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -64,7 +59,6 @@ msgctxt ""
msgid "Undo: Data Input"
msgstr "უკუსვლა: მონაცემების შენატანი"
-#. -/O(
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "Save current record"
msgstr "მიმდინარე ჩანაწერის შენახვა"
-#. P*@v
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -82,7 +75,6 @@ msgctxt ""
msgid "Query #"
msgstr "მოთხოვნა#"
-#. 0*?p
#: sbagrid.src
#, fuzzy
msgctxt ""
@@ -92,7 +84,6 @@ msgctxt ""
msgid "Table #"
msgstr "ცხრილი #"
-#. }ltF
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -101,7 +92,6 @@ msgctxt ""
msgid "View #"
msgstr "ნახვა #"
-#. G~7/
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -110,7 +100,6 @@ msgctxt ""
msgid "The name \"#\" already exists."
msgstr "სახელი \"#\" უკვე არსებობს."
-#. 9=7^
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -119,7 +108,6 @@ msgctxt ""
msgid "No matching column names were found."
msgstr "თავსებადი სვეტები სახელები ვერ მოიძებნა."
-#. bg|4
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -128,7 +116,6 @@ msgctxt ""
msgid "An error occurred. Do you want to continue copying?"
msgstr "ნაპოვნია შეცდომა. გსურთ კოპირების გაგრძელება?"
-#. jJ/o
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -137,7 +124,6 @@ msgctxt ""
msgid "Data source table view"
msgstr "მონაცემების წყაროს ცხრილის ხედი"
-#. ^TTF
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -146,7 +132,6 @@ msgctxt ""
msgid "Shows the selected table or query."
msgstr "აჩვენებს მონიშნულ ცხრილს ან მოთხოვნას."
-#. Y2P,
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -159,7 +144,6 @@ msgstr ""
"მიმდინარე ჩანაწერი შეიცვალა.\n"
"გსურთ თუ არა ცვლილებების შენახვა?"
-#. kn*1
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -168,7 +152,6 @@ msgctxt ""
msgid "Do you want to delete the selected data?"
msgstr "მართლა გსურთ მონიშნული მონაცემების შენახვა?"
-#. =Rsz
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -177,7 +160,6 @@ msgctxt ""
msgid "(filtered)"
msgstr "(გაფილტრული)"
-#. rB\v
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -186,7 +168,6 @@ msgctxt ""
msgid "Error setting the sort criteria"
msgstr "დახარისხების კრიტერიუმის დაყენებისას წარმოიქმნა შეცდომა"
-#. Pp/v
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -195,7 +176,6 @@ msgctxt ""
msgid "Error setting the filter criteria"
msgstr "ფილტრის კრიტერიუმის დაყენებისას წარმოიქმნა შეცდომა"
-#. rQ1R
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -204,7 +184,6 @@ msgctxt ""
msgid "Connection lost"
msgstr "კავშირი დაიკარგა"
-#. H6bx
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -213,7 +192,6 @@ msgctxt ""
msgid "Queries"
msgstr "მოთხოვნები"
-#. MA(8
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -222,7 +200,6 @@ msgctxt ""
msgid "Tables"
msgstr "ცხრილები"
-#. =r`]
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -231,7 +208,6 @@ msgctxt ""
msgid "Edit ~Database File..."
msgstr "~მონაცემთა ფაილის რედაქტირება..."
-#. REP(
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -240,7 +216,6 @@ msgctxt ""
msgid "Registered databases ..."
msgstr "რეგისტრირებული მონაცემთა ბაზები ..."
-#. HoF`
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -249,7 +224,6 @@ msgctxt ""
msgid "Disco~nnect"
msgstr "გა~თიშვა"
-#. )aE+
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -258,7 +232,6 @@ msgctxt ""
msgid "Confirm Deletion"
msgstr "წაშლის დამტკიცება"
-#. T!@5
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -267,7 +240,6 @@ msgctxt ""
msgid "Do you want to delete the table '%1'?"
msgstr "მართლა გსურთ '%1' ცხრილის წაშლა?"
-#. Cu)A
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -276,7 +248,6 @@ msgctxt ""
msgid "The query already exists. Do you want to delete it?"
msgstr "მოთხოვნა უკვე არსებობს. მართლა გსურთ მისი წაშლა?"
-#. Bmq=
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -285,7 +256,6 @@ msgctxt ""
msgid "The connection to the database has been lost. Do you want to reconnect?"
msgstr "მონაცემთა ბაზასთან კავშირი დაიკარგა. მართლა გსურთ თავიდან დაკავშირება?"
-#. huTN
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -294,7 +264,6 @@ msgctxt ""
msgid "Warnings encountered"
msgstr "შემჩნეულია შეცდომები"
-#. 6w9[
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -303,7 +272,6 @@ msgctxt ""
msgid "While retrieving the tables, warnings were reported by the database connection."
msgstr "ცხრილების მიღებისას გაფრთხილებების უწყება მონაცემთა ბაზის კავშირის საშუალებით შედგა."
-#. ,R(F
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -312,7 +280,6 @@ msgctxt ""
msgid "Connecting to \"$name$\" ..."
msgstr "\"$name$\"-სთან დაკავშირება..."
-#. VeAp
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -321,7 +288,6 @@ msgctxt ""
msgid "Loading query $name$ ..."
msgstr "მოთხოვნა $name$-ის ჩატვირთვა..."
-#. %?6?
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -330,7 +296,6 @@ msgctxt ""
msgid "Loading table $name$ ..."
msgstr "ცხრილის $name$-ის ჩატვირთვა"
-#. J,jS
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -339,7 +304,6 @@ msgctxt ""
msgid "No table format could be found."
msgstr "შეუძლებელია ცხრილის ფორმატის პოვნა."
-#. W=|$
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -348,7 +312,6 @@ msgctxt ""
msgid "The connection to the data source \"$name$\" could not be established."
msgstr "კავშირი მონაცემთა წყაროს \"$name$\"-თან ვერ დამყარდა."
-#. 3J7q
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
diff --git a/source/ka/dbaccess/source/ui/control.po b/source/ka/dbaccess/source/ui/control.po
index f28198da592..0d7531abdc2 100644
--- a/source/ka/dbaccess/source/ui/control.po
+++ b/source/ka/dbaccess/source/ui/control.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 8ex9
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Table name"
msgstr "ცხრილის სახელი"
-#. NWcr
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Insert data"
msgstr "მონაცემების ჩასმა"
-#. #X=!
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Delete data"
msgstr "მონაცემების წაშლა"
-#. Eu.9
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Modify data"
msgstr "მონაცემების შეცვლა"
-#. 4KTe
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Alter structure"
msgstr "სტრუქტურის შეცვლა"
-#. 0L=`
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Read data"
msgstr "მონაცემების წაკითხვა"
-#. IwWY
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Modify references"
msgstr "დამოწმებული პარამეტრების შეცვლა"
-#. %!#X
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Drop structure"
msgstr "სტრუქტურის ამოგდება"
-#. ^[If
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -97,7 +88,6 @@ msgctxt ""
msgid "Sort Ascending"
msgstr "დალაგება ზრდის მიხედვით"
-#. rER,
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -107,7 +97,6 @@ msgctxt ""
msgid "Sort Descending"
msgstr "დალაგება კლების მიხედვით"
-#. P!#:
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -116,7 +105,6 @@ msgctxt ""
msgid "Cannot connect to the SDBC driver manager (#servicename#)."
msgstr "SDBC დრაივერის მენეჯერთან შეერთება ვერ ხერხდება(#servicename#)."
-#. !+g!
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -125,7 +113,6 @@ msgctxt ""
msgid "A driver is not registered for the URL #connurl#."
msgstr "დრაივერი დარეგისტრირებული არ არის URL-სთვის #connurl#."
-#. qbiS
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -134,7 +121,6 @@ msgctxt ""
msgid "No connection could be established for the URL #connurl#."
msgstr "კავშირი ვერ დამყარდა URL-ისთვის #connurl#."
-#. _5\K
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -143,7 +129,6 @@ msgctxt ""
msgid "Please check the current settings, for example user name and password."
msgstr "გთხოვთ გადაამოწმოთ მიმდინარე პარამეტრები, მაგალითად მომხმარებლის სახელი და პაროლი."
-#. Y5.=
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -152,7 +137,6 @@ msgctxt ""
msgid "Successfully connected, but information about database tables is not available."
msgstr "დაკავშირება განხორციელდა წარმატებით, მაგრამ ინფორმაცია მონაცემთა ბაზის შესახებ მიუწვდომელია."
-#. GZ_O
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -161,7 +145,6 @@ msgctxt ""
msgid "All tables"
msgstr "ყველა ცხრილი"
-#. :hM%
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -170,7 +153,6 @@ msgctxt ""
msgid "All views"
msgstr "ყველა ხედი"
-#. bYB*
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -179,7 +161,6 @@ msgctxt ""
msgid "All tables and views"
msgstr "ყველა ცხრილი და ხედი"
-#. W[Ho
#: undosqledit.src
msgctxt ""
"undosqledit.src\n"
diff --git a/source/ka/dbaccess/source/ui/dlg.po b/source/ka/dbaccess/source/ui/dlg.po
index 3e9cc23c4ae..97580956753 100644
--- a/source/ka/dbaccess/source/ui/dlg.po
+++ b/source/ka/dbaccess/source/ui/dlg.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-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-12-15 14:16+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ffSl
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. A5*3
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Create New Directory"
msgstr "ახალი დირექტორიის შექმნა"
-#. |r[Z
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "-"
msgstr "-"
-#. U?Au
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Up One Level"
msgstr "ერთი დონით ზემოთ"
-#. ^CAh
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "File ~name:"
msgstr "ფაილის ~სახელი:"
-#. j)yZ
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "Save"
msgstr "შენახვა"
-#. dLcd
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "~Path:"
msgstr "~მდებარეობა:"
-#. lEAb
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -94,7 +86,6 @@ msgctxt ""
msgid "Save"
msgstr "შენახვა"
-#. fSV0
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -103,7 +94,6 @@ msgctxt ""
msgid "Folder"
msgstr "დირექტორია"
-#. c4eo
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -112,7 +102,6 @@ msgctxt ""
msgid "The file already exists. Overwrite?"
msgstr "ფაილი უკვე არსებობს. გადავაწერო?"
-#. .O;!
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -121,7 +110,6 @@ msgctxt ""
msgid "A password is needed to connect to the data source \"$name$\"."
msgstr "\"$name$\" მონაცემთა წყაროსთან დასაკავშირებლად საჭიროა პაროლი"
-#. RD7L
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -140,7 +128,6 @@ msgstr ""
"\n"
"არ არსებობს. უნდა შეიქმნას?"
-#. m0z/
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -149,7 +136,6 @@ msgctxt ""
msgid "The directory $name$ could not be created."
msgstr "$name$ დირექტორია ვერ შეიქმნება."
-#. ?SeD
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -159,7 +145,6 @@ msgctxt ""
msgid "Please enter the ~password for the user 'DOMAIN'."
msgstr "მომხმარებელი 'DOMAIN' -სთვის შეიყვანეთ ~პაროლი"
-#. b~o^
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -168,7 +153,6 @@ msgctxt ""
msgid "Convert Database"
msgstr "მონაცემთა ბაზის კონვერტირება"
-#. :ieU
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -178,7 +162,6 @@ msgctxt ""
msgid "Tables and table filter"
msgstr "რილების და ცხრილის ფილტრი"
-#. X-?g
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -188,7 +171,6 @@ msgctxt ""
msgid "Mark the tables that should be visible for the applications."
msgstr "მონიშნეთ ცხრილი რომელიც ხილული იქნება პროგრამებისთვის."
-#. \!,2
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -197,7 +179,6 @@ msgctxt ""
msgid "Tables Filter"
msgstr "ცხრილის ფილტრი"
-#. ;m0#
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -207,7 +188,6 @@ msgctxt ""
msgid "Database Wizard"
msgstr "მონაცემთა ბაზის ოსტატი"
-#. RNn.
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -217,7 +197,6 @@ msgctxt ""
msgid "Select database"
msgstr "მონაცემთა ბაზის მონიშვნა"
-#. PC[R
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -227,7 +206,6 @@ msgctxt ""
msgid "Set up dBASE connection"
msgstr "dBASE კავშირის დაყენება"
-#. =#2V
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -237,7 +215,6 @@ msgctxt ""
msgid "Set up a connection to text files"
msgstr "ტექსტურ ფაილებთან კავშირის შექმნა"
-#. C:B\
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -247,7 +224,6 @@ msgctxt ""
msgid "Set up Microsoft Access connection"
msgstr "Microsoft Access-ის კავშირის დაყენება"
-#. 8]3W
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -257,7 +233,6 @@ msgctxt ""
msgid "Set up LDAP connection"
msgstr "LDAP კავშირის დაყენება"
-#. ton+
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -267,7 +242,6 @@ msgctxt ""
msgid "Set up ADO connection"
msgstr "ADO კავშირის დაყენება"
-#. l:9b
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -277,7 +251,6 @@ msgctxt ""
msgid "Set up JDBC connection"
msgstr "JDBC კავშირის დაყენება"
-#. 4SO_
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -287,7 +260,6 @@ msgctxt ""
msgid "Set up Oracle database connection"
msgstr "Oracle-ის მონაცემთა ბაზის დაყენება"
-#. Z9!@
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -297,7 +269,6 @@ msgctxt ""
msgid "Set up MySQL connection"
msgstr "MySQL კავშირის დაყენება"
-#. /EEM
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -307,7 +278,6 @@ msgctxt ""
msgid "Set up ODBC connection"
msgstr "ODBC კავშირის დაყენება"
-#. ^H)z
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -317,7 +287,6 @@ msgctxt ""
msgid "Set up Spreadsheet connection"
msgstr "ელექტრონული ცხრილის კავშირის დაყენება"
-#. I(,a
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -327,7 +296,6 @@ msgctxt ""
msgid "Set up user authentication"
msgstr "მომხმარებლის ავთენტიფიკაციის დაყენება"
-#. 4)zw
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -337,7 +305,6 @@ msgctxt ""
msgid "Set up MySQL server data"
msgstr ""
-#. lQF(
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -347,7 +314,6 @@ msgctxt ""
msgid "Save and proceed"
msgstr "შენახვა და გაგრძელება"
-#. RFmE
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -356,7 +322,6 @@ msgctxt ""
msgid "Database Wizard"
msgstr "მონაცემთა ბაზის ოსტატი"
-#. .5,A
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -365,7 +330,6 @@ msgctxt ""
msgid "New Database"
msgstr "ახალი მონაცემთა ბაზა"
-#. 13CT
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -375,7 +339,6 @@ msgctxt ""
msgid "Set up a connection to a MySQL database"
msgstr "MySQL მონაცემთა ბაზის კავშირის დაყენება"
-#. HRD[
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -389,7 +352,6 @@ msgstr ""
"შესაძლებელია MySQL-ის მონაცემთა ბაზასთან დაკავშირება ODBC ან JDBC-ის გამოყენებით.\n"
"დაუკავშირდით თქვენი სისტემის ადმინისტრატორს თუ არ ხართ დარწმუნებული შემდეგ პარამერტებში."
-#. [4^C
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -399,7 +361,6 @@ msgctxt ""
msgid "How do you want to connect to your MySQL database?"
msgstr "როგორ გსურთ თქვენს MySQL მონაცემთა ბაზას დაუკავშირდეთ?"
-#. K6aj
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -409,7 +370,6 @@ msgctxt ""
msgid "Connect using ODBC (Open Database Connectivity)"
msgstr "კავშირი ODBC-ს გამოყენებით (მონაცემთა ბაზასთან კავშირების გახსნა)"
-#. %NHc
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -419,7 +379,6 @@ msgctxt ""
msgid "Connect using JDBC (Java Database Connectivity)"
msgstr "კავშირი JDBC-ს გამოყენებით (Java მონაცემთა ბაზის კავშირები)"
-#. ,#aB
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -429,7 +388,6 @@ msgctxt ""
msgid "Connect directly"
msgstr ""
-#. MflO
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -439,7 +397,6 @@ msgctxt ""
msgid "Set up the user authentication"
msgstr "მომხმარებლის ავთენტიფიკაციის დაყენება"
-#. b~Fi
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -449,7 +406,6 @@ msgctxt ""
msgid "Some databases require you to enter a user name."
msgstr "ზოგიერთი მონაცემთა ბაზა ითხოვს მომხმარებლის სახელის შეყვანას."
-#. CvQU
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -459,7 +415,6 @@ msgctxt ""
msgid "~User name"
msgstr "~მომხმარებლის სახელი"
-#. wx1d
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -469,7 +424,6 @@ msgctxt ""
msgid "Password re~quired"
msgstr "სა~ჭიროა პაროლი"
-#. =y9*
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -479,7 +433,6 @@ msgctxt ""
msgid "~Test Connection"
msgstr "~კავშირის ტესტირება"
-#. _WJF
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -489,7 +442,6 @@ msgctxt ""
msgid "Decide how to proceed after saving the database"
msgstr "მოიფიქრე თუ როგორ განაგრძო მუშაობა მონაცემთა ბაზის შენახვის შემდეგ"
-#. $34|
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -499,7 +451,6 @@ msgctxt ""
msgid "Do you want the wizard to register the database in %PRODUCTNAME?"
msgstr "გნებავთ ოსტატმა დაარეგისტრიროს მონაცემთა ბაზა %PRODUCTNAME-ში?"
-#. 5BE]
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -509,7 +460,6 @@ msgctxt ""
msgid "~Yes, register the database for me"
msgstr "~დიახ, დამირეგისტრირე მონაცემთა ბაზა"
-#. .nMS
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -519,7 +469,6 @@ msgctxt ""
msgid "N~o, do not register the database"
msgstr "არ~ა, ნუ დაარეისტრირებ მონაცემთა ბაზას"
-#. ?(A\
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -529,7 +478,6 @@ msgctxt ""
msgid "After the database file has been saved, what do you want to do?"
msgstr "~რომელი ოპერაციის შესრულება გსურთ მონაცემთა ბაზის ფაილების შენახვის შემდეგ?"
-#. ?P6L
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -539,7 +487,6 @@ msgctxt ""
msgid "Open the database for editing"
msgstr "მონაცემთა ბაზის გახსნა რედაქტირებისთვის"
-#. ni)v
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -549,7 +496,6 @@ msgctxt ""
msgid "Create tables using the table wizard"
msgstr "ცხრილების შექმნა ცხრილის ოსტატის გამოყენებით"
-#. UJ/7
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -559,7 +505,6 @@ msgctxt ""
msgid "Click 'Finish' to save the database."
msgstr "დააწკაპუნე 'დამთავრება' მონაცემთა ბაზის შესანახად."
-#. [%Ae
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -569,7 +514,6 @@ msgctxt ""
msgid "Set up connection to a MySQL database using JDBC"
msgstr "MySQL-ის მონაცემთა ბაზისთვის კავშირის დაყენება JDBC-ს გამოყენებით"
-#. dL?|
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -583,7 +527,6 @@ msgstr ""
"გთხოვთ შეიყვანოთ MySQL მონაცემთა ბაზასთან JDBC-ს გამოყენებით შეერთებისთვის საჭირო ინფორმაცია. გაითვალისწინეთ, რომ JDBC-ს დრაივერის კლასი დაინსტალირებული უნდა იყოს თქვენს სისტემაზე და რეგისტრირებული %PRODUCTNAME -სთან.\n"
"თუ არ ხართ დარწმუნებული ჩამოთვლილ პარამეტრებში, მიმართეთ თქვენს სისტემურრ ადმინისტრატორს."
-#. Oq2=
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -593,7 +536,6 @@ msgctxt ""
msgid "MySQL JDBC d~river class:"
msgstr "MySQL JDBC დ~რაივერის კლასი:"
-#. 4O*+
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -603,7 +545,6 @@ msgctxt ""
msgid "Default: 3306"
msgstr "სტანდარტი: 3306"
-#. b|Hj
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -613,7 +554,6 @@ msgctxt ""
msgid "Set up connection to a MySQL database"
msgstr "MySQL მონაცემთა ბაზის კავშირის დაყენება"
-#. bc+h
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -623,7 +563,6 @@ msgctxt ""
msgid "Please enter the required information to connect to a MySQL database."
msgstr ""
-#. 8Lf+
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -633,7 +572,6 @@ msgctxt ""
msgid "Set up a connection to dBASE files"
msgstr "dBASE ფაილების კავშირის დაყენება"
-#. *K-H
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -643,7 +581,6 @@ msgctxt ""
msgid "Select the folder where the dBASE files are stored."
msgstr "შენახული dBASE ფაილების დირექტორიის მონიშვნა."
-#. ZP#(
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -653,7 +590,6 @@ msgctxt ""
msgid "Set up a connection to text files"
msgstr "ტექსტურ ფაილებთან კავშირის შექმნა"
-#. w]t#
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -663,7 +599,6 @@ msgctxt ""
msgid "Select the folder where the CSV (Comma Separated Values) text files are stored. %PRODUCTNAME Base will open these files in read-only mode."
msgstr "მონიშნე დირექტორია სადაც CSV (მძიმეებით გამოყოფილი მნიშვნელობები) ტექსტები ინახება. %PRODUCTNAME Base გაიხსნის ამ ფაილს მხოლოდ საკითხავ მოდულში."
-#. (G{Q
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -673,7 +608,6 @@ msgctxt ""
msgid "Path to text files"
msgstr "ტექსტური ფაილების მდებარეობა"
-#. f(p8
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -683,7 +617,6 @@ msgctxt ""
msgid "Set up a connection to a Microsoft Access database"
msgstr "Microsoft Access-ის მონაცემთა ბაზის კავშირის დაყენება"
-#. Ci:K
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -693,7 +626,6 @@ msgctxt ""
msgid "Please select the Microsoft Access file you want to access."
msgstr "მონიშნეთ Microsoft Access-ის ფაილი რომელიც გსურთ რომ იყოს ხელმისაწვდომი."
-#. =EPv
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -703,7 +635,6 @@ msgctxt ""
msgid "Set up a connection to an LDAP directory"
msgstr "LDAP დირექტორიაზე კავშირის დაყენება"
-#. =iWu
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -717,7 +648,6 @@ msgstr ""
"გთხოვთ შეიყვანოთ LDAP დირექტორიასთან შესაერთებლად საჭირო ინფორმაცია.\n"
"თუ არ ხართ დარწმუნებული ჩამოთვლილ პარამეტრებში, მიმართეთ თქვენს სისტემურრ ადმინისტრატორს."
-#. \,ib
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -727,7 +657,6 @@ msgctxt ""
msgid "Default: 389"
msgstr "სტანდარტი: 389"
-#. `5LH
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -737,7 +666,6 @@ msgctxt ""
msgid "Use ~secure connection (SSL)"
msgstr "უ~საფრთხო კავშირის (SSL) გამოყენება"
-#. AqsX
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -747,7 +675,6 @@ msgctxt ""
msgid "Set up a connection to an ADO database"
msgstr "ADO მონაცემთა ბაზასთან კავშირის დაყენება"
-#. rC+d
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -763,7 +690,6 @@ msgstr ""
"პროვაიდერზე დამოკიდებული პარამეტრების დასაყენებლად დააჭირეთ 'ძებნას'.\n"
"თუ არ ხართ დარწმუნებული ჩამოთვლილ პარამეტრებში, მიმართეთ თქვენს სისტემურრ ადმინისტრატორს."
-#. dXJ_
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -773,7 +699,6 @@ msgctxt ""
msgid "Set up a connection to an ODBC database"
msgstr "ODBC მონაცემთა ბაზის კავშირის დაყენება"
-#. J6(6
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -789,7 +714,6 @@ msgstr ""
"%PRODUCTNAME-ში უკვე დარეგისტრირებული ODBC ბაზის ამოსარჩევათ დააჭირეთ 'ძებნას...'\n"
"თუ არ ხართ დარწმუნებული ჩამოთვლილ პარამეტრებში, მიმართეთ თქვენს სისტემურრ ადმინისტრატორს."
-#. `jQA
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -799,7 +723,6 @@ msgctxt ""
msgid "Set up a connection to a JDBC database"
msgstr "JDBC მონაცემთა ბაზის კავშირის დაყენება"
-#. sv51
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -813,7 +736,6 @@ msgstr ""
"JDBC მონაცემთა ბაზასთნ შესაერთებლად, გთხოვთ შეიყვანოთ საჭირო ინფორმაცია.\n"
"თუ არ ხართ დარწმუნებული ჩამოთვლილ პარამეტრებში, მიმართეთ თქვენს სისტემურრ ადმინისტრატორს."
-#. ~Z0B
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -823,7 +745,6 @@ msgctxt ""
msgid "Set up a connection to an Oracle database"
msgstr "Oracle-ის მონაცემთა ბაზაზე კავშირის დაყენება"
-#. bQ#G
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -833,7 +754,6 @@ msgctxt ""
msgid "Default: 1521"
msgstr "სტანდარტი: 1521"
-#. uMc*
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -843,7 +763,6 @@ msgctxt ""
msgid "Oracle JDBC ~driver class"
msgstr "~Oracle JDBC დრაივერის კლასი"
-#. gRsG
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -857,7 +776,6 @@ msgstr ""
"Oracle-ს მონაცემთა ბაზასთან შესაერთებლად გთხოვთ შეიყვანოთ საჭირო ინფორმაცია. გაითვალისწინეთ, რომ JDBC დრაივერის კლასი დაინსტალირებული უნდა იყოს თქვენს სისტემაში და რეგისტრირებული %PRODUCTNAME-თან.\n"
"თუ არ ხართ დარწმუნებული ჩამოთვლილ პარამეტრებში, მიმართეთ თქვენს სისტემურრ ადმინისტრატორს."
-#. ?lvf
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -867,7 +785,6 @@ msgctxt ""
msgid "Set up a connection to spreadsheets"
msgstr "ელექტრონული ცხრილის კავშირის დაყენება"
-#. Lg{}
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -881,7 +798,6 @@ msgstr ""
"დააჭირეთ 'მოძიებას..' რათა აირჩიოთ %PRODUCTNAME-ის ან Microsoft Excel -ის ელ. ცხრილი.\n"
"%PRODUCTNAME გაიხსნის ამ ფაილს მხოლოდ წაკითხივის უფლებით."
-#. (oKh
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -891,7 +807,6 @@ msgctxt ""
msgid "~Location and file name"
msgstr "~მდებარეობა და ფაილის სახელი"
-#. ;#lG
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -901,7 +816,6 @@ msgctxt ""
msgid "~Password required"
msgstr "~სავალდებულოა პაროლი"
-#. _^lO
#: admincontrols.src
#, fuzzy
msgctxt ""
@@ -912,7 +826,6 @@ msgctxt ""
msgid "~Database name"
msgstr "მონაცემთა ბაზის სახელი"
-#. ;U^I
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -922,7 +835,6 @@ msgctxt ""
msgid "Se~rver / Port"
msgstr ""
-#. 4Z}n
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -932,7 +844,6 @@ msgctxt ""
msgid "~Server"
msgstr ""
-#. w|ti
#: admincontrols.src
#, fuzzy
msgctxt ""
@@ -951,7 +862,6 @@ msgstr ""
"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
"~პორტი"
-#. $ae)
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -961,7 +871,6 @@ msgctxt ""
msgid "Default: 3306"
msgstr "სტანდარტი: 3306"
-#. e38~
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -971,7 +880,6 @@ msgctxt ""
msgid "So~cket"
msgstr ""
-#. S`c+
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -981,7 +889,6 @@ msgctxt ""
msgid "Named p~ipe"
msgstr ""
-#. :-A#
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -991,7 +898,6 @@ msgctxt ""
msgid "Browse"
msgstr "მოძიება"
-#. 6x\s
#: AutoControls_tmpl.hrc
#, fuzzy
msgctxt ""
@@ -1002,7 +908,6 @@ msgctxt ""
msgid "Database name"
msgstr "მონაცემთა ბაზის სახელი"
-#. HgJa
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1012,7 +917,6 @@ msgctxt ""
msgid "Server"
msgstr ""
-#. p6EL
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1022,7 +926,6 @@ msgctxt ""
msgid "Base ~DN"
msgstr "ბაზა ~DN"
-#. A%st
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1032,7 +935,6 @@ msgctxt ""
msgid "~Port number"
msgstr "~პორტის ნომერი"
-#. gm+d
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1042,7 +944,6 @@ msgctxt ""
msgid "Data conversion"
msgstr "მონაცემთა კონვერტირება"
-#. ~bs:
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1052,7 +953,6 @@ msgctxt ""
msgid "~Character set"
msgstr "~თვისებების საყენება"
-#. `H!z
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1062,7 +962,6 @@ msgctxt ""
msgid "Specify the type of files you want to access"
msgstr "მიუთითე სასურველი ფაილის ტიპი"
-#. xRp+
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1072,7 +971,6 @@ msgctxt ""
msgid "Plain text files (*.txt)"
msgstr "ცარიელი ტექსტის ფაილები (*.txt)"
-#. CWPo
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1082,7 +980,6 @@ msgctxt ""
msgid "'Comma separated value' files (*.csv)"
msgstr "'მძიმით გამოყოფილი' ფაილები (*.csv)"
-#. 1C2B
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1092,7 +989,6 @@ msgctxt ""
msgid "Custom:"
msgstr "ინდივიდუალური:"
-#. 1STv
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1102,7 +998,6 @@ msgctxt ""
msgid "Custom: *.abc"
msgstr "ინდივიდუალური: *.abc"
-#. \?;M
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1112,7 +1007,6 @@ msgctxt ""
msgid "Row Format"
msgstr "სტრიქონის ფორმატირება"
-#. [9b?
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1122,7 +1016,6 @@ msgctxt ""
msgid "Field separator"
msgstr "ველის გამყოფი"
-#. +,P3
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1132,7 +1025,6 @@ msgctxt ""
msgid "Text separator"
msgstr "ტექსტური გამყოფი"
-#. ^yUz
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1142,7 +1034,6 @@ msgctxt ""
msgid "Decimal separator"
msgstr "ათობითი გამყოფი"
-#. XGXf
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1151,7 +1042,6 @@ msgctxt ""
msgid "Thousands separator"
msgstr "ათასების გამყოფი"
-#. 1oA.
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1160,7 +1050,6 @@ msgctxt ""
msgid "~Text contains headers"
msgstr "~ტექსტი შეიცავს ჰედერს"
-#. J~Fh
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1170,7 +1059,6 @@ msgid "{None}"
msgstr "{არაფერი}"
#. EM Dec 2002: \'Space\' refers to what you get when you hit the space bar on your keyboard.
-#. =nL2
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1179,7 +1067,6 @@ msgctxt ""
msgid ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Space}\t32"
msgstr ""
-#. 3m#(
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1188,7 +1075,6 @@ msgctxt ""
msgid "#1 must be set."
msgstr "#1 დაყენებული უნდა იყოს."
-#. +We1
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1197,7 +1083,6 @@ msgctxt ""
msgid "#1 and #2 must be different."
msgstr "#1 და #2 განსხვავებული უნდა იყოს."
-#. {1mo
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1206,7 +1091,6 @@ msgctxt ""
msgid "Wildcards such as ?,* are not allowed in #1."
msgstr "ჩანაცვლების სიმბოლო როგორიცაა ?,* არ დაიშვება #1."
-#. jeZ\
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1216,7 +1100,6 @@ msgctxt ""
msgid "JDBC d~river class"
msgstr "JDBC დ~რაივერის კლასი"
-#. LceU
#: AutoControls_tmpl.hrc
#, fuzzy
msgctxt ""
@@ -1227,7 +1110,6 @@ msgctxt ""
msgid "Test class"
msgstr "ტესტური კლასი"
-#. sA+g
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1237,7 +1119,6 @@ msgctxt ""
msgid "Socket"
msgstr ""
-#. YDRn
#: adtabdlg.src
msgctxt ""
"adtabdlg.src\n"
@@ -1247,7 +1128,6 @@ msgctxt ""
msgid "Tables"
msgstr "ცხრილები"
-#. T9F\
#: adtabdlg.src
msgctxt ""
"adtabdlg.src\n"
@@ -1257,7 +1137,6 @@ msgctxt ""
msgid "Queries"
msgstr "მოთხოვნები"
-#. ;GDK
#: adtabdlg.src
msgctxt ""
"adtabdlg.src\n"
@@ -1267,7 +1146,6 @@ msgctxt ""
msgid "~Add"
msgstr "~დამატება"
-#. }OFr
#: adtabdlg.src
msgctxt ""
"adtabdlg.src\n"
@@ -1277,7 +1155,6 @@ msgctxt ""
msgid "~Close"
msgstr "~დახურვა"
-#. :@gb
#: adtabdlg.src
msgctxt ""
"adtabdlg.src\n"
@@ -1287,7 +1164,6 @@ msgctxt ""
msgid "Add Tables"
msgstr "ცხრილის დამატება"
-#. MQVE
#: adtabdlg.src
msgctxt ""
"adtabdlg.src\n"
@@ -1297,7 +1173,6 @@ msgctxt ""
msgid "Add Table or Query"
msgstr "ცხრილის ან მოთხოვნის დამატება"
-#. ;2;l
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1307,7 +1182,6 @@ msgctxt ""
msgid "User selection"
msgstr "მომხმარებლის შერჩევა"
-#. 7F_B
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1317,7 +1191,6 @@ msgctxt ""
msgid "Us~er:"
msgstr "მომხმარე~ბელი:"
-#. bvaS
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1327,7 +1200,6 @@ msgctxt ""
msgid "~Add User..."
msgstr "~მომხმარებლის დამატება..."
-#. 0p(6
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1337,7 +1209,6 @@ msgctxt ""
msgid "Change ~Password..."
msgstr "პაროლის ~შეცვლა..."
-#. ET(d
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1347,7 +1218,6 @@ msgctxt ""
msgid "~Delete User..."
msgstr "~მომხმარებლის წაშლა..."
-#. .fB!
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1357,7 +1227,6 @@ msgctxt ""
msgid "Access rights for selected user"
msgstr "მონიშნული მომხმარებლის წვდომის უფლებები"
-#. -JJP
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1366,7 +1235,6 @@ msgctxt ""
msgid "Do you really want to delete the user?"
msgstr "გნებავთ წაშალოთ მომხმარებელი?"
-#. UN`:
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1375,7 +1243,6 @@ msgctxt ""
msgid "The database does not support user administration."
msgstr "მონაცემთა ბაზა არ ეთანხმება მომხმარებლის ადმინისტრაციას."
-#. pamf
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1385,7 +1252,6 @@ msgctxt ""
msgid "User \"$name$: $\""
msgstr "მომხარებელი \"$name$: $\""
-#. fD9T
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1395,7 +1261,6 @@ msgctxt ""
msgid "Old p~assword"
msgstr "ძველი პ~აროლი"
-#. SinN
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1405,7 +1270,6 @@ msgctxt ""
msgid "~Password"
msgstr "~პაროლი"
-#. Qj;-
#: UserAdmin.src
#, fuzzy
msgctxt ""
@@ -1416,7 +1280,6 @@ msgctxt ""
msgid "~Confirm password"
msgstr "~პაროლის დადასტურება"
-#. irnY
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1425,7 +1288,6 @@ msgctxt ""
msgid "Change Password"
msgstr "პაროლის შეცვლა"
-#. ]7nT
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1434,7 +1296,6 @@ msgctxt ""
msgid "The passwords do not match. Please enter the password again."
msgstr "პაროლი არ ემთხვევა. გთხოვთ შეიყვანეთ პაროლი ხელმეორედ."
-#. @`Wp
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1444,7 +1305,6 @@ msgctxt ""
msgid "General"
msgstr "ზოგადი"
-#. 5BSd
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1454,7 +1314,6 @@ msgctxt ""
msgid "~Host name"
msgstr "~ჰოსტის სახელი"
-#. O?pb
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1464,7 +1323,6 @@ msgctxt ""
msgid "User authentication"
msgstr "მომხმარებლის ავთენტიფიკაცია"
-#. 8n{0
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1474,7 +1332,6 @@ msgctxt ""
msgid "~User name"
msgstr "~მომხმარებლის სახელი"
-#. d)K?
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1484,7 +1341,6 @@ msgctxt ""
msgid "Password required"
msgstr "პაროლი სავალდებულოა"
-#. w6dh
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1494,7 +1350,6 @@ msgctxt ""
msgid "JDBC properties"
msgstr "JDBC-ს თვისებები"
-#. d=^3
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1504,7 +1359,6 @@ msgctxt ""
msgid "~JDBC driver class"
msgstr "~JDBC დრაივერის კლასი"
-#. oO(K
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1514,7 +1368,6 @@ msgctxt ""
msgid "Test Class"
msgstr "კლასის ტესტირება"
-#. @#%8
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1524,7 +1377,6 @@ msgctxt ""
msgid "Test Connection"
msgstr "კავშირის ტესტირება"
-#. Vc?;
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1533,7 +1385,6 @@ msgctxt ""
msgid "Connection Test"
msgstr "კავშირის ტესტირება"
-#. IL]+
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1542,7 +1393,6 @@ msgctxt ""
msgid "The connection was established successfully."
msgstr "დაკავშირება წარმატებით განხორციელდა."
-#. \tud
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1551,7 +1401,6 @@ msgctxt ""
msgid "The connection could not be established."
msgstr "დაკავშირება არ განხორციელდა წარმატებით."
-#. Az|t
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1560,7 +1409,6 @@ msgctxt ""
msgid "The JDBC driver was loaded successfully."
msgstr "JDBC დრაივერი წარმატებით ჩაიტვირთა."
-#. iPjC
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1569,7 +1417,6 @@ msgctxt ""
msgid "The JDBC driver could not be loaded."
msgstr "JDBC დრაივერი ვერ ჩაიტვირთა."
-#. /-LM
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1578,7 +1425,6 @@ msgctxt ""
msgid "MS Access file"
msgstr "MS წვდომის ფაილი"
-#. ZbpT
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1587,7 +1433,6 @@ msgctxt ""
msgid "MS Access 2007 file"
msgstr ""
-#. D36C
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1597,7 +1442,6 @@ msgctxt ""
msgid "New Index"
msgstr "ახალი ინდექსი"
-#. 8l#U
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1607,7 +1451,6 @@ msgctxt ""
msgid "Delete Current Index"
msgstr "მიმდინარე ინდექსის წაშლა"
-#. 9MlT
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1617,7 +1460,6 @@ msgctxt ""
msgid "Rename Current Index"
msgstr "მიმდინარე ინდექსის გადარქმევა"
-#. R6,[
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1627,7 +1469,6 @@ msgctxt ""
msgid "Save Current Index"
msgstr "მიმდინარე ინდექსის შენახვა"
-#. iUa]
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1637,7 +1478,6 @@ msgctxt ""
msgid "Reset Current Index"
msgstr "მიმდინარე ინდექსის ჩამოყრა"
-#. 7RS/
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1647,7 +1487,6 @@ msgctxt ""
msgid "Index details"
msgstr "ინდექსის დეტალები"
-#. w$KI
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1657,7 +1496,6 @@ msgctxt ""
msgid "Index identifier:"
msgstr "ინდექსის ამომცნობი:"
-#. ZQl)
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1667,7 +1505,6 @@ msgctxt ""
msgid "~Unique"
msgstr "~უნიკალური"
-#. /.[`
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1677,7 +1514,6 @@ msgctxt ""
msgid "Fields"
msgstr "ველები"
-#. rvRK
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1687,7 +1523,6 @@ msgctxt ""
msgid "~Close"
msgstr "~დახურვა"
-#. SSe{
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1696,7 +1531,6 @@ msgctxt ""
msgid "Indexes"
msgstr "ინდექსები"
-#. @J((
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1705,7 +1539,6 @@ msgctxt ""
msgid "Sort order"
msgstr "დახარისხების მიმართულება"
-#. +20R
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1714,7 +1547,6 @@ msgctxt ""
msgid "Index field"
msgstr "ინდექსის ველი"
-#. 2[30
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1723,7 +1555,6 @@ msgctxt ""
msgid "Ascending"
msgstr "მზარდი"
-#. ;o^d
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1732,7 +1563,6 @@ msgctxt ""
msgid "Descending"
msgstr "კლებადი"
-#. 3*]#
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1741,7 +1571,6 @@ msgctxt ""
msgid "Do you really want to delete the index '$name$'?"
msgstr "დარწმუნებული ხართ, რომ გსურთ ინდექსი '$name$'-ის წაშლა?"
-#. yAOm
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1750,7 +1579,6 @@ msgctxt ""
msgid "index"
msgstr "ინდექსი"
-#. ^shB
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1759,7 +1587,6 @@ msgctxt ""
msgid "The index must contain at least one field."
msgstr "ინდექსი უნდა შეიცავდეს სულ მცირე ერთ ველს."
-#. rLRc
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1768,7 +1595,6 @@ msgctxt ""
msgid "Save Index"
msgstr "ინდექსის შენახვა"
-#. SgJ^
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1777,7 +1603,6 @@ msgctxt ""
msgid "Do you want to save the changes made to the current index?"
msgstr "გნებავთ მიმდინარე ინდექსში შეტანილი ცვლილებების შენახვა?"
-#. WPnm
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1786,7 +1611,6 @@ msgctxt ""
msgid "Exit Index Design"
msgstr "ინდექსის დიზაინის დატოვება"
-#. T/54
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1795,7 +1619,6 @@ msgctxt ""
msgid "There is already another index named \"$name$\"."
msgstr "სხვა ინდექსი სახელად \"$name$\" უკვე არსებობს."
-#. 4,G}
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1804,7 +1627,6 @@ msgctxt ""
msgid "In an index definition, no table column may occur more than once. However, you have entered column \"$name$\" twice."
msgstr "ინდექსის განმარტებაში ცხრილის სვეტი უნდა გამოჩნდეს მხოლოდ ერთხელ. თუმცა, თქვენ შეიყვანეთ სვეტი \"$name$\" ორჯერ."
-#. YvCP
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1814,7 +1636,6 @@ msgctxt ""
msgid "Tables involved"
msgstr "შემავალი ცხრილები"
-#. !kk6
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1824,7 +1645,6 @@ msgctxt ""
msgid "Fields involved"
msgstr "შემავალი ველები"
-#. $5V0
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1834,7 +1654,6 @@ msgctxt ""
msgid "Update options"
msgstr "პარამეტრების განახლება"
-#. hWIU
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1844,7 +1663,6 @@ msgctxt ""
msgid "~No action"
msgstr "~უმოქმოდოდ"
-#. 1%#_
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1854,7 +1672,6 @@ msgctxt ""
msgid "~Update cascade"
msgstr "~კასკადის განახლება"
-#. FA!m
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1864,7 +1681,6 @@ msgctxt ""
msgid "~Set null"
msgstr "~განულება"
-#. TL$:
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1874,7 +1690,6 @@ msgctxt ""
msgid "Set ~default"
msgstr "~საწყისზე დაყენება"
-#. P/w[
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1884,7 +1699,6 @@ msgctxt ""
msgid "Delete options"
msgstr "პარამეტრების წაშლა"
-#. VVn6
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1894,7 +1708,6 @@ msgctxt ""
msgid "~No action"
msgstr "~უმოქმედოდ"
-#. CRXV
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1904,7 +1717,6 @@ msgctxt ""
msgid "Delete ~cascade"
msgstr "კასკადის~წაშლა"
-#. k,W^
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1914,7 +1726,6 @@ msgctxt ""
msgid "~Set null"
msgstr "~განულება"
-#. $ewE
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1924,7 +1735,6 @@ msgctxt ""
msgid "Set ~default"
msgstr "~საწყისზე დაყენება"
-#. C+##
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1933,7 +1743,6 @@ msgctxt ""
msgid "Relations"
msgstr "კავშირები"
-#. WM_x
#: dsselect.src
msgctxt ""
"dsselect.src\n"
@@ -1943,7 +1752,6 @@ msgctxt ""
msgid "Choose a data source:"
msgstr "მონაცემთა წყაროს არჩევა:"
-#. %K`o
#: dsselect.src
msgctxt ""
"dsselect.src\n"
@@ -1953,7 +1761,6 @@ msgctxt ""
msgid "Organize..."
msgstr "ორგანიზება..."
-#. LmJ3
#: dsselect.src
msgctxt ""
"dsselect.src\n"
@@ -1963,7 +1770,6 @@ msgctxt ""
msgid "Create..."
msgstr "შექმნა..."
-#. g59A
#: dsselect.src
msgctxt ""
"dsselect.src\n"
@@ -1973,7 +1779,6 @@ msgctxt ""
msgid "Local Databases"
msgstr "ადგილობრივი მონაცემთა ბაზა"
-#. EOo,
#: dsselect.src
msgctxt ""
"dsselect.src\n"
@@ -1983,7 +1788,6 @@ msgctxt ""
msgid "Choose a database"
msgstr "მონაცემთა ბაზის არჩევა"
-#. |,ZV
#: dsselect.src
msgctxt ""
"dsselect.src\n"
@@ -1992,7 +1796,6 @@ msgctxt ""
msgid "Data Source"
msgstr "მონაცემთა წყარო"
-#. /kst
#: paramdialog.src
msgctxt ""
"paramdialog.src\n"
@@ -2002,7 +1805,6 @@ msgctxt ""
msgid "~Parameters"
msgstr "~პარამეტრები"
-#. pRnb
#: paramdialog.src
msgctxt ""
"paramdialog.src\n"
@@ -2012,7 +1814,6 @@ msgctxt ""
msgid "~Value"
msgstr "~მნიშვნელობა"
-#. NA%L
#: paramdialog.src
msgctxt ""
"paramdialog.src\n"
@@ -2022,7 +1823,6 @@ msgctxt ""
msgid "~Next"
msgstr "~შემდეგი"
-#. qDEP
#: paramdialog.src
msgctxt ""
"paramdialog.src\n"
@@ -2032,7 +1832,6 @@ msgctxt ""
msgid "The entry could not be converted to a valid value for the \"$name$\"column"
msgstr "ჩანაწერი ვერ კონვერტირდება ვარგის მნიშვნელობად \"$name$\" სვეტისთვის"
-#. B}3N
#: paramdialog.src
msgctxt ""
"paramdialog.src\n"
@@ -2041,7 +1840,6 @@ msgctxt ""
msgid "Parameter Input"
msgstr "მუდმივი შეტანა"
-#. ;zAN
#: dlgsize.src
msgctxt ""
"dlgsize.src\n"
@@ -2051,7 +1849,6 @@ msgctxt ""
msgid "~Height"
msgstr "~სიმაღლე"
-#. -y\s
#: dlgsize.src
msgctxt ""
"dlgsize.src\n"
@@ -2061,7 +1858,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "~ავტომატური"
-#. %^F0
#: dlgsize.src
msgctxt ""
"dlgsize.src\n"
@@ -2070,7 +1866,6 @@ msgctxt ""
msgid "Row Height"
msgstr "სტრიქონის სიმაღლე"
-#. ?GHK
#: dlgsize.src
msgctxt ""
"dlgsize.src\n"
@@ -2080,7 +1875,6 @@ msgctxt ""
msgid "~Width"
msgstr "~სიგანე"
-#. VE;(
#: dlgsize.src
msgctxt ""
"dlgsize.src\n"
@@ -2090,7 +1884,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "~ავტომატური"
-#. U3F2
#: dlgsize.src
msgctxt ""
"dlgsize.src\n"
@@ -2099,7 +1892,6 @@ msgctxt ""
msgid "Column Width"
msgstr "სვტის სიგანე"
-#. %@Zj
#: UserAdminDlg.src
msgctxt ""
"UserAdminDlg.src\n"
@@ -2109,7 +1901,6 @@ msgctxt ""
msgid "User Settings"
msgstr "მომხმარებლის პარამეტრები"
-#. [n;|
#: UserAdminDlg.src
msgctxt ""
"UserAdminDlg.src\n"
@@ -2118,7 +1909,6 @@ msgctxt ""
msgid "User administration"
msgstr "მომხმარებლის ადმინისტრაცია"
-#. ,IC5
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2128,7 +1918,6 @@ msgctxt ""
msgid "AND"
msgstr "AND"
-#. A8/!
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2138,7 +1927,6 @@ msgctxt ""
msgid "OR"
msgstr "OR"
-#. nm[J
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2148,7 +1936,6 @@ msgctxt ""
msgid "AND"
msgstr "AND"
-#. Rd28
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2158,7 +1945,6 @@ msgctxt ""
msgid "OR"
msgstr "OR"
-#. (k^l
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2168,7 +1954,6 @@ msgctxt ""
msgid "Field name"
msgstr "ველის სახელი"
-#. yu4j
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2178,7 +1963,6 @@ msgctxt ""
msgid "Condition"
msgstr "მდგომარეობა"
-#. hI8?
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2188,7 +1972,6 @@ msgctxt ""
msgid "Value"
msgstr "მნიშვნელობა"
-#. WE?/
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2198,7 +1981,6 @@ msgctxt ""
msgid "Operator"
msgstr "ოპერატორი"
-#. +,T)
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2208,7 +1990,6 @@ msgctxt ""
msgid "Criteria"
msgstr "კროტერიუმი"
-#. =p+m
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2218,7 +1999,6 @@ msgctxt ""
msgid "- none -"
msgstr "-არაფერი-"
-#. FQ8-
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2228,7 +2008,6 @@ msgctxt ""
msgid "=;<>;<;<=;>;>=;like;not like;null;not null"
msgstr "=;<>;<;<=;>;>=;მსგავსი;განსხვავებული;ნული;ნული არა"
-#. wMcy
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2237,7 +2016,6 @@ msgctxt ""
msgid "Standard Filter"
msgstr "სტანდარტული ფილტრი"
-#. ~R+m
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2247,7 +2025,6 @@ msgctxt ""
msgid "Options"
msgstr "პარამეტრები"
-#. B{1#
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2257,7 +2034,6 @@ msgctxt ""
msgid "Use SQL92 naming constraints"
msgstr "SQL92 დასახელებითი შეზღუდვები"
-#. j77S
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2267,7 +2043,6 @@ msgctxt ""
msgid "Append the table alias name on SELECT statements"
msgstr "ცხრილის მეტსახელის დამატება SELECT განცხადებაზე"
-#. %-b#
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2277,7 +2052,6 @@ msgctxt ""
msgid "Use keyword AS before table alias names"
msgstr ""
-#. g*$x
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2287,7 +2061,6 @@ msgctxt ""
msgid "Use Outer Join syntax '{OJ }'"
msgstr "Outer Join syntax '{OJ }'-ის გამოყენება"
-#. 6AM.
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2297,7 +2070,6 @@ msgctxt ""
msgid "Ignore the privileges from the database driver"
msgstr "მონაცემთა ბაზის დრაივერიდან უპირატესობების უგულებელყოფა"
-#. 3u}1
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2307,7 +2079,6 @@ msgctxt ""
msgid "Replace named parameters with '?'"
msgstr "დასათაურებული პარამერტების '?'-თი ჩანაცვლება."
-#. 5d?c
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2317,7 +2088,6 @@ msgctxt ""
msgid "Display version columns (when available)"
msgstr "ვერსიების სვეტების ჩვენება (როცა შესაძლებელია)"
-#. {~yG
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2327,7 +2097,6 @@ msgctxt ""
msgid "Use catalog name in SELECT statements"
msgstr "კატალოგის სახელის გამოყენება SELECT განცხადებაში"
-#. aF\2
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2337,7 +2106,6 @@ msgctxt ""
msgid "Use schema name in SELECT statements"
msgstr "სქემის სახელის გამოყენება SELECT განცხადებაში"
-#. hQP1
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2347,7 +2115,6 @@ msgctxt ""
msgid "Create index with ASC or DESC statement"
msgstr "ASC or DESC-ის უწყებით ინდექსის შექმნა"
-#. }Li9
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2357,7 +2124,6 @@ msgctxt ""
msgid "End text lines with CR+LF"
msgstr "ტექსტის ხაზის დასრულება CR+LF-ით"
-#. \h1o
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2367,7 +2133,6 @@ msgctxt ""
msgid "Ignore currency field information"
msgstr ""
-#. xb9,
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2377,7 +2142,6 @@ msgctxt ""
msgid "Form data input checks for required fields"
msgstr ""
-#. ^L^J
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2387,7 +2151,6 @@ msgctxt ""
msgid "Use ODBC conformant date/time literals"
msgstr ""
-#. rH;A
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2397,7 +2160,6 @@ msgctxt ""
msgid "Supports primary keys"
msgstr ""
-#. el(|
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2407,7 +2169,6 @@ msgctxt ""
msgid "Respect the result set type from the database driver"
msgstr ""
-#. RaMX
#: advancedsettings.src
#, fuzzy
msgctxt ""
@@ -2428,7 +2189,6 @@ msgstr ""
"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
"სტანდარტული"
-#. j(P5
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2438,7 +2198,6 @@ msgctxt ""
msgid "SQL"
msgstr "SQL"
-#. E[lr
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2448,7 +2207,6 @@ msgctxt ""
msgid "Mixed"
msgstr ""
-#. ;-|W
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2458,7 +2216,6 @@ msgctxt ""
msgid "MS Access"
msgstr ""
-#. V%%y
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2468,7 +2225,6 @@ msgctxt ""
msgid "Comparison of Boolean values"
msgstr "Boolean მნიშვნელობების შედარება"
-#. .4_P
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2478,7 +2234,6 @@ msgctxt ""
msgid "Rows to scan column types"
msgstr ""
-#. Hgyf
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2488,7 +2243,6 @@ msgctxt ""
msgid "Settings"
msgstr "პარამეტრები"
-#. V.?p
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2498,7 +2252,6 @@ msgctxt ""
msgid "Re~trieve generated values"
msgstr "წ~არმოებული მნიშვნელობების აღდგენა"
-#. ?q57
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2508,7 +2261,6 @@ msgctxt ""
msgid "~Auto-increment statement"
msgstr "~ავტო-მზარდი განცხადება"
-#. jUJD
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2518,7 +2270,6 @@ msgctxt ""
msgid "~Query of generated values"
msgstr "~წარმოებული მნიშვნელობების მოთხოვნა"
-#. L`U^
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2528,7 +2279,6 @@ msgctxt ""
msgid "Generated Values"
msgstr "გენერირებული თვისებები"
-#. _B5}
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2538,7 +2288,6 @@ msgctxt ""
msgid "Special Settings"
msgstr "საგანგებო პარამეტრები"
-#. 2D^.
#: advancedsettings.src
#, fuzzy
msgctxt ""
@@ -2548,7 +2297,6 @@ msgctxt ""
msgid "Advanced Settings"
msgstr "გაფართოებული პარამეტრები..."
-#. ^ujX
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2558,7 +2306,6 @@ msgctxt ""
msgid "Details"
msgstr "დეტალები"
-#. U.*d
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2568,7 +2315,6 @@ msgctxt ""
msgid "Error ~list:"
msgstr "შეცდომათა ~სია:"
-#. ]9\m
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2578,7 +2324,6 @@ msgctxt ""
msgid "~Description:"
msgstr "~განმარტება:"
-#. {C_X
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2588,7 +2333,6 @@ msgctxt ""
msgid "SQL Status"
msgstr "SQL სტატუსი"
-#. 28;^
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2598,7 +2342,6 @@ msgctxt ""
msgid "Error code"
msgstr "შეცდომის კოდი"
-#. sZn`
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2607,7 +2350,6 @@ msgctxt ""
msgid "%PRODUCTNAME Base"
msgstr "%PRODUCTNAME ბაზა"
-#. u$#$
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2616,7 +2358,6 @@ msgctxt ""
msgid "A frequent reason for this error is an inappropriate character set setting for the language of your database. Check the setting by choosing Edit - Database - Properties."
msgstr "ამ შეცდომის ხშირი მიზეზი არის ასო-ნიშანთა წყობის შეუსაბამო პარამეტრები თქვენი მონაცემთა ბაზის ენისათვის. პარამეტრების შესამოწმებლად შეამოწმეთ რედაქტირება - მონაცემთა ბაზა - თვისებები."
-#. mh$.
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2625,7 +2366,6 @@ msgctxt ""
msgid "Error"
msgstr "შეცდომა"
-#. k-g!
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2634,7 +2374,6 @@ msgctxt ""
msgid "Warning"
msgstr "გაფრთხილება"
-#. =`Tc
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2643,7 +2382,6 @@ msgctxt ""
msgid "Information"
msgstr "ინფორმაცია"
-#. x=e|
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2652,7 +2390,6 @@ msgctxt ""
msgid "Details"
msgstr "დეტალები"
-#. KI/V
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2661,7 +2398,6 @@ msgctxt ""
msgid "Path to the dBASE files"
msgstr "dBASE ფაილების მდებარეობა"
-#. 1C(o
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2670,7 +2406,6 @@ msgctxt ""
msgid "Path to the text files"
msgstr "ტექტის ფაილების მდებარეობა"
-#. )_e!
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2679,7 +2414,6 @@ msgctxt ""
msgid "Path to the spreadsheet document"
msgstr "ელექტრონული ცხრილის დოკუმენტების მდებარეობა"
-#. 5UGP
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2688,7 +2422,6 @@ msgctxt ""
msgid "Name of the ODBC data source on your system"
msgstr "თქვენს სისტემაში ODBC მონაცემთა წყაროს დასახელება"
-#. 4Gf-
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2697,7 +2430,6 @@ msgctxt ""
msgid "Name of the MySQL database"
msgstr "MySQL მონაცემთა ბაზის დასახელება"
-#. QdI$
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2706,7 +2438,6 @@ msgctxt ""
msgid "Name of the Oracle database"
msgstr "Oracle მონაცემთა ბაზის დასახელება"
-#. b%J#
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2715,7 +2446,6 @@ msgctxt ""
msgid "Microsoft Access database file"
msgstr "Microsoft-ის მონაცემთა ბაზის ფაილების წვდომა"
-#. vdjy
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2724,7 +2454,6 @@ msgctxt ""
msgid "No more settings are necessary. To verify that the connection is working, click the '%test' button."
msgstr "მეტი პარამეტრები აღარ არის საჭირო. კავშირის მუშაობის დასადასტურებლად დააჭირე '%test' ღილაკს."
-#. C^HW
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2733,7 +2462,6 @@ msgctxt ""
msgid "Datasource URL"
msgstr "URL მონაცემთა წყარო"
-#. Lbcq
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2742,7 +2470,6 @@ msgctxt ""
msgid "~Host name"
msgstr "~ჰოსტის სახელი"
-#. SrR0
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2751,7 +2478,6 @@ msgctxt ""
msgid "~Mozilla profile name"
msgstr "~Mozilla-ს პროფილი"
-#. Rd0$
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2760,7 +2486,6 @@ msgctxt ""
msgid "~Thunderbird profile name"
msgstr "~Thunderbird-ის პროფილი"
-#. P#xG
#: dbfindex.src
msgctxt ""
"dbfindex.src\n"
@@ -2770,7 +2495,6 @@ msgctxt ""
msgid "~Table"
msgstr "~ცხრილი"
-#. qTrl
#: dbfindex.src
msgctxt ""
"dbfindex.src\n"
@@ -2780,7 +2504,6 @@ msgctxt ""
msgid "Assignment"
msgstr "მინიჭება"
-#. _=:Y
#: dbfindex.src
msgctxt ""
"dbfindex.src\n"
@@ -2790,7 +2513,6 @@ msgctxt ""
msgid "T~able indexes"
msgstr "ც~რილის ინდექსი"
-#. ,HVL
#: dbfindex.src
msgctxt ""
"dbfindex.src\n"
@@ -2800,7 +2522,6 @@ msgctxt ""
msgid "~Free indexes"
msgstr "~თავისუფალი ინდექსი"
-#. =VnW
#: dbfindex.src
msgctxt ""
"dbfindex.src\n"
@@ -2809,7 +2530,6 @@ msgctxt ""
msgid "Indexes"
msgstr "ინდექსები"
-#. lwB5
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2819,7 +2539,6 @@ msgctxt ""
msgid "SQL command"
msgstr "SQL ბრძანება"
-#. R@PQ
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2829,7 +2548,6 @@ msgctxt ""
msgid "Command to execute"
msgstr "შესრულების ბრძანება"
-#. #bq3
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2839,7 +2557,6 @@ msgctxt ""
msgid "Show output of \"select\" statements"
msgstr ""
-#. QoyE
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2849,7 +2566,6 @@ msgctxt ""
msgid "Execute"
msgstr "გაშვება"
-#. Hqn@
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2859,7 +2575,6 @@ msgctxt ""
msgid "Previous commands"
msgstr "წინა ბრძანებები"
-#. SP#3
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2869,7 +2584,6 @@ msgctxt ""
msgid "Status"
msgstr "სტატუსი"
-#. H(_C
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2879,7 +2593,6 @@ msgctxt ""
msgid "Output"
msgstr "გამონატანი"
-#. opUu
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2889,7 +2602,6 @@ msgctxt ""
msgid "Close"
msgstr "დახურვა"
-#. 2b!X
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2898,7 +2610,6 @@ msgctxt ""
msgid "Execute SQL Statement"
msgstr "SQL უწყების შესრულება"
-#. .qQZ
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2907,7 +2618,6 @@ msgctxt ""
msgid "Command successfully executed."
msgstr "ბრძანება წარმატებით შესრულდა."
-#. ^@na
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2916,7 +2626,6 @@ msgctxt ""
msgid "The connection to the database has been lost. This dialog will be closed."
msgstr "კავშირი მონაცემთა ბაზასთან დაიკარგა. დიალოგი დაიხურება."
-#. Vu5}
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2926,7 +2635,6 @@ msgctxt ""
msgid "ascending"
msgstr "ზრდადი"
-#. 7KG$
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2936,7 +2644,6 @@ msgctxt ""
msgid "descending"
msgstr "კლებადი"
-#. ;|C!
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2946,7 +2653,6 @@ msgctxt ""
msgid "ascending"
msgstr "ზრდადი"
-#. !9O5
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2956,7 +2662,6 @@ msgctxt ""
msgid "descending"
msgstr "კლებადი"
-#. .xG#
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2966,7 +2671,6 @@ msgctxt ""
msgid "ascending"
msgstr "ზრდადი"
-#. J@T?
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2976,7 +2680,6 @@ msgctxt ""
msgid "descending"
msgstr "კლებადი"
-#. Ci!@
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2986,7 +2689,6 @@ msgctxt ""
msgid "Field name"
msgstr "ველის სახელი"
-#. /sG1
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2996,7 +2698,6 @@ msgctxt ""
msgid "and then"
msgstr "and then"
-#. I3/[
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -3006,7 +2707,6 @@ msgctxt ""
msgid "and then"
msgstr "and then"
-#. Cy)e
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -3016,7 +2716,6 @@ msgctxt ""
msgid "Operator"
msgstr "ოპერატორი"
-#. Sd%+
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -3026,7 +2725,6 @@ msgctxt ""
msgid "Order"
msgstr "ბრძანება"
-#. Qyn7
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -3036,7 +2734,6 @@ msgctxt ""
msgid "Sort order"
msgstr "დახარისხება"
-#. pN.P
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -3046,7 +2743,6 @@ msgctxt ""
msgid "<none>"
msgstr "<არაფერი>"
-#. 2Cd\
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -3055,7 +2751,6 @@ msgctxt ""
msgid "Sort Order"
msgstr "სორტირების ბრძანება"
-#. 3k+d
#: dlgattr.src
msgctxt ""
"dlgattr.src\n"
@@ -3065,7 +2760,6 @@ msgctxt ""
msgid "Bac~k"
msgstr "უკა~ნ"
-#. b?cs
#: dlgattr.src
msgctxt ""
"dlgattr.src\n"
@@ -3075,7 +2769,6 @@ msgctxt ""
msgid "Font"
msgstr "ფონტი"
-#. 2OM{
#: dlgattr.src
msgctxt ""
"dlgattr.src\n"
@@ -3085,7 +2778,6 @@ msgctxt ""
msgid "Format"
msgstr "ფორმატი"
-#. 2pg9
#: dlgattr.src
msgctxt ""
"dlgattr.src\n"
@@ -3095,7 +2787,6 @@ msgctxt ""
msgid "Alignment"
msgstr "შესწორება"
-#. Ph37
#: dlgattr.src
msgctxt ""
"dlgattr.src\n"
@@ -3105,7 +2796,6 @@ msgctxt ""
msgid "Table Format"
msgstr "ცხრილის ფორმატირება"
-#. rxJX
#: dlgattr.src
msgctxt ""
"dlgattr.src\n"
@@ -3114,7 +2804,6 @@ msgctxt ""
msgid "Field Format"
msgstr "ველის ფორმატირება"
-#. c@0H
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3124,7 +2813,6 @@ msgctxt ""
msgid "Use catalog for file-based databases"
msgstr "კატალოგის გამოყენება ფაილზე დაფუძნებული მონაცემთა ბაზისათვის"
-#. ^ZGR
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3134,7 +2822,6 @@ msgctxt ""
msgid "Connection Settings"
msgstr "კავშირის პარამეტრები"
-#. ejW]
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3144,7 +2831,6 @@ msgctxt ""
msgid "~Host name"
msgstr "~ჰოსტის სახელი"
-#. DX0)
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3154,7 +2840,6 @@ msgctxt ""
msgid "~Port number"
msgstr "~პორტის ნომერი"
-#. E=m_
#: dbadmin.src
#, fuzzy
msgctxt ""
@@ -3165,7 +2850,6 @@ msgctxt ""
msgid "Advanced Properties"
msgstr "დამატებითი თვისებები"
-#. XEmD
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3175,7 +2859,6 @@ msgctxt ""
msgid "Additional Settings"
msgstr "დამატებითი თვისებები"
-#. L=D~
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3185,7 +2868,6 @@ msgctxt ""
msgid "Connection settings"
msgstr "დაკავშირების პარამეტრები"
-#. ]q!n
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3194,7 +2876,6 @@ msgctxt ""
msgid "Database properties"
msgstr "მონაცემთა ბაზის თვისებები"
-#. pRGW
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3203,7 +2884,6 @@ msgctxt ""
msgid "Database properties"
msgstr "მონაცემთა ბაზის თვისებები"
-#. =Pu^
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3213,7 +2893,6 @@ msgctxt ""
msgid "Welcome to the %PRODUCTNAME Database Wizard"
msgstr "მოგესალმებათ მონაცემთა %PRODUCTNAME-ის ბაზის ოსტატი"
-#. })5x
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3223,7 +2902,6 @@ msgctxt ""
msgid "Use the Database Wizard to create a new database, open an existing database file, or connect to a database stored on a server."
msgstr "ახალი მონაცემთა ბაზის შესაქმნელად მონაცემთა ბაზის ოსტატის გამოყენება, არსებული მონაცემთა ბაზის გახსნა, ან სერვერზე შენახულ მონაცემთა ბაზასთან დაკავშირება."
-#. /f4U
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3233,7 +2911,6 @@ msgctxt ""
msgid "What do you want to do?"
msgstr "რისი გაკეთება გსურთ?"
-#. ^h6]
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3243,7 +2920,6 @@ msgctxt ""
msgid "Create a n~ew database"
msgstr "ა~ხალი მონაცემთა ბაზის შექმნა"
-#. ,hb*
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3253,7 +2929,6 @@ msgctxt ""
msgid "Open an existing database ~file"
msgstr "არსებული მონაცემთა ბაზის ~ფაილის გახსნა"
-#. `Xr@
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3263,7 +2938,6 @@ msgctxt ""
msgid "Recently used"
msgstr "ახლახან გამოყენებული"
-#. R-kZ
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3273,7 +2947,6 @@ msgctxt ""
msgid "Connect to an e~xisting database"
msgstr "ა~რსებულ მონაცემთა ბაზასთან დაკავშირება"
-#. 9=#0
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3283,7 +2956,6 @@ msgctxt ""
msgid "Select the type of database to which you want to establish a connection."
msgstr "მონიშნეთ მონაცემთა ბაზის ტიპი რომელთანაც გსურთ კავშირის დამყარება."
-#. N@Z\
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3293,7 +2965,6 @@ msgctxt ""
msgid "Database ~type "
msgstr "მონაცემთა ბაზის ~ტიპი "
-#. 0:5]
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3303,7 +2974,6 @@ msgctxt ""
msgid "Database"
msgstr "მონაცემთა ბაზა"
-#. kO@$
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3319,7 +2989,6 @@ msgstr ""
"\n"
"არსებულ პარამეტრებს გადაეწერება ახალი პარამეტრები."
-#. e~n0
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3329,7 +2998,6 @@ msgctxt ""
msgid "MySQL"
msgstr "MySQL"
-#. *it,
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3339,7 +3007,6 @@ msgctxt ""
msgid "Data Source Properties: #"
msgstr "მონაცემთა წყაროს თვისებები: #"
-#. w0gU
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3349,7 +3016,6 @@ msgctxt ""
msgid "Could not load the program library #lib# or it is corrupted. The ODBC data source selection is not available."
msgstr "პროგრამის ბიბლიოთეკა ვერ იტვირთება#lib# ან იგი დაზიანებულია. ODBC მონაცემთა წყაროს არჩევა შეუძლებელია."
-#. f^dK
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3363,7 +3029,6 @@ msgstr ""
"ამ პლატფორმაზე მოცემული ტიპის მონაცემთა წყაროს მხარდაჭერა არ არსებობს.\n"
"თქვენ შეგიძლიათ პარამეტრების შეცვლა, მაგრამ ალბათ ვერ შეძლებთ მონაცემთა ბაზასთან დაკავშირებას."
-#. C*#+
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3372,7 +3037,6 @@ msgctxt ""
msgid "General"
msgstr "ზოგადი"
-#. 0NKa
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3382,7 +3046,6 @@ msgctxt ""
msgid "Optional settings"
msgstr "ნებაყოფლობითი პარამეტრები"
-#. 3aG,
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3392,7 +3055,6 @@ msgctxt ""
msgid "Display deleted records as well"
msgstr "უჩვენე ასევე წაშლილი ჩანაწერები"
-#. 5ERl
#: dbadmin.src
#, fuzzy
msgctxt ""
@@ -3403,7 +3065,6 @@ msgctxt ""
msgid "Note: When deleted, and thus inactive, records are displayed, you will not be able to delete records from the data source."
msgstr "შენიშვნა: წაშლის შემთხვევაში არააქტიურია, ჩანაწარები ნაჩვენებია, თქვენ არ გექნებათ საშალება მონაცემთა წყაროდან წაშალოთ ჩანაწერები."
-#. b$A0
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3413,7 +3074,6 @@ msgctxt ""
msgid "Indexes..."
msgstr "ინდექსები..."
-#. #o]#
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3423,7 +3083,6 @@ msgctxt ""
msgid "Optional Settings"
msgstr "ნებაყოფლობითი პარამეტრები"
-#. F{_:
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3433,7 +3092,6 @@ msgctxt ""
msgid "ODBC ~options"
msgstr "ODBC ~პარამეტრები"
-#. %()v
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3443,7 +3101,6 @@ msgctxt ""
msgid "MySQL JDBC d~river class"
msgstr "MySQL JDBC დ~რაივერის კლასი"
-#. ~|U$
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3453,7 +3110,6 @@ msgctxt ""
msgid "Test class"
msgstr "ტესტური კლასი"
-#. hahS
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3463,7 +3119,6 @@ msgctxt ""
msgid "User authentication"
msgstr "მომხმარებლის ავთენტიფიკაცია"
-#. Pbb,
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3473,7 +3128,6 @@ msgctxt ""
msgid "~User name"
msgstr "~მომხმარებლის სახელი"
-#. ~Txm
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3483,7 +3137,6 @@ msgctxt ""
msgid "Password required"
msgstr "პაროლი სავალდებულოა"
-#. (Av;
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3493,7 +3146,6 @@ msgctxt ""
msgid "Oracle JDBC d~river class"
msgstr "Oracle JDBC დ~რაივერის კლასი"
-#. !fXk
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3503,7 +3155,6 @@ msgctxt ""
msgid "Test class"
msgstr "ტესტური კლასი"
-#. g!\o
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3513,7 +3164,6 @@ msgctxt ""
msgid "Connection Settings"
msgstr "კავშირის პარამეტრები"
-#. =r!-
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3523,7 +3173,6 @@ msgctxt ""
msgid "~Base DN"
msgstr "~DN ბაზა"
-#. B\Ag
#: dbadmin.src
#, fuzzy
msgctxt ""
@@ -3534,7 +3183,6 @@ msgctxt ""
msgid "Use secure connection (SSL)"
msgstr "უ~საფრთხო კავშირის (SSL) გამოყენება"
-#. WpTf
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3544,7 +3192,6 @@ msgctxt ""
msgid "~Port number"
msgstr "~პორტის ნომერი"
-#. GQcj
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3554,7 +3201,6 @@ msgctxt ""
msgid "Maximum number of ~records"
msgstr "ჩანაწერების~მაქსიმალური რაოდენობა"
-#. =`Pn
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3564,7 +3210,6 @@ msgctxt ""
msgid "~Hostname"
msgstr "~ჰოსტისსახელი"
-#. 5!kk
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3574,7 +3219,6 @@ msgctxt ""
msgid "~Port number"
msgstr "~პორტის ნომერი"
-#. /w7`
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3584,7 +3228,6 @@ msgctxt ""
msgid "~Driver settings"
msgstr "~დრაივერის პარამეტრები"
-#. ;`uA
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3593,7 +3236,6 @@ msgctxt ""
msgid "Please choose 'Connect to an existing database' to connect to an existing database instead."
msgstr ""
-#. v)e%
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3603,7 +3245,6 @@ msgctxt ""
msgid "Please enter a name for the object to be created:"
msgstr "შეიყვანეთ შესაქმნელი ობიექტის სახელი:"
-#. c3eC
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3613,7 +3254,6 @@ msgctxt ""
msgid "~Catalog"
msgstr "~კატალოგი"
-#. Z0U.
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3623,7 +3263,6 @@ msgctxt ""
msgid "~Schema"
msgstr "~სქემა"
-#. `D?l
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3633,7 +3272,6 @@ msgctxt ""
msgid "~Table Name"
msgstr "~ცხრილის სახელი"
-#. e[Yw
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3643,7 +3281,6 @@ msgctxt ""
msgid "~Name of table view"
msgstr "~ცხრილის სახელის ნახვა"
-#. ape!
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3653,7 +3290,6 @@ msgctxt ""
msgid "~Query name"
msgstr "~მოთხოვნის სახელი"
-#. j1j;
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3663,7 +3299,6 @@ msgctxt ""
msgid "Rename to"
msgstr "გადარქმევა"
-#. 7+Kr
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3673,7 +3308,6 @@ msgctxt ""
msgid "Insert as"
msgstr "ჩასმა როგორც..."
-#. sloO
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3682,7 +3316,6 @@ msgctxt ""
msgid "Save As"
msgstr "დამახსოვრება როგორც..."
-#. n]DW
#: textconnectionsettings.src
msgctxt ""
"textconnectionsettings.src\n"
diff --git a/source/ka/dbaccess/source/ui/inc.po b/source/ka/dbaccess/source/ui/inc.po
index 3806e5019ad..c60e8c0c19a 100644
--- a/source/ka/dbaccess/source/ui/inc.po
+++ b/source/ka/dbaccess/source/ui/inc.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. y~aA
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Refresh"
msgstr "განახლება"
-#. .g*Q
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "New ~View Design"
msgstr "ახალი ~ხედის დიზაინი"
-#. Z39f
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "New ~Table Design"
msgstr "ახალი ~ხედის დიზაინი"
-#. xZ!m
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Query AutoPilot..."
msgstr "მოთხოვნის ავტოპილოტი..."
-#. gmw^
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "New ~Query (Design View)"
msgstr "ახალი ~მოთხოვნის (ხედის დიზაინი)"
-#. XmK)
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "~Edit Query"
msgstr "~მოთხოვნის რედაქტორება"
-#. {Vbo
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "New Query (~SQL View)"
msgstr "ახალი მოთხოვნა (~SQL ხედი)"
-#. hUMy
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Edit..."
msgstr "რედაქტირება..."
-#. KH%8
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Column ~Width..."
msgstr "სვეტის ~სიგანე..."
-#. B3ba
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Report Wizard..."
msgstr "ანგარიშის ოსტატი..."
-#. #v:m
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
diff --git a/source/ka/dbaccess/source/ui/misc.po b/source/ka/dbaccess/source/ui/misc.po
index 981aaad168b..0d4fd0bcd26 100644
--- a/source/ka/dbaccess/source/ui/misc.po
+++ b/source/ka/dbaccess/source/ui/misc.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. kTJJ
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Apply columns"
msgstr "მიუსადაგე სვეტებს"
-#. OCCW
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Type formatting"
msgstr "ბეჭდვის ფორმატირება"
-#. oYJb
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "The following fields have already been set as primary keys:\n"
msgstr "შემდეგი ველები უკვე დაყენებულია როგორც ძირითადი გასაღებები:\n"
-#. ?DZP
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Assign columns"
msgstr "მიანიჭე სვეტებს"
-#. {.7a
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -61,7 +56,6 @@ msgctxt ""
msgid "~Help"
msgstr "~დახმარება"
-#. ?{e|
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -71,7 +65,6 @@ msgctxt ""
msgid "~Cancel"
msgstr "~გაუქმება"
-#. EJ$?
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -81,7 +74,6 @@ msgctxt ""
msgid "< ~Back"
msgstr "< ~უკან"
-#. XLgB
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -91,7 +83,6 @@ msgctxt ""
msgid "~Next>"
msgstr "~შემდეგი>"
-#. !Ss)
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -101,7 +92,6 @@ msgctxt ""
msgid "C~reate"
msgstr "შ~ექმნა"
-#. 5}TZ
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -110,7 +100,6 @@ msgctxt ""
msgid "Copy RTF Table"
msgstr "RTF ცხრილის კოპირება"
-#. Nhe\
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -120,7 +109,6 @@ msgctxt ""
msgid "Existing columns"
msgstr "არსებული სვეტები"
-#. E#D^
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -130,7 +118,6 @@ msgctxt ""
msgid "Column information"
msgstr "სვეტის ინფორმაცია"
-#. ,9{H
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -140,7 +127,6 @@ msgctxt ""
msgid "Automatic type recognition"
msgstr "ტიპის ავტოამოცნობა"
-#. `NE6
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -150,7 +136,6 @@ msgctxt ""
msgid "Lines (ma~x)"
msgstr "ხაზები (მა~ქსიმუმი)"
-#. $+=1
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -160,7 +145,6 @@ msgctxt ""
msgid "Primary Key"
msgstr "ძირითადი კლავიში"
-#. AX+?
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -170,7 +154,6 @@ msgctxt ""
msgid "Source table: \n"
msgstr "საწყისი ცხრილი: \n"
-#. hf?!
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -180,7 +163,6 @@ msgctxt ""
msgid "Destination table: \n"
msgstr "საბოლოო ცხრილი: \n"
-#. {O8B
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -190,7 +172,6 @@ msgctxt ""
msgid "~All"
msgstr "~ყველა"
-#. ZWa*
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -200,7 +181,6 @@ msgctxt ""
msgid "Non~e"
msgstr "არ~აფერი"
-#. gcfF
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -210,7 +190,6 @@ msgctxt ""
msgid "Ta~ble name"
msgstr "ც~ხრილის სახელი"
-#. !JEQ
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -220,7 +199,6 @@ msgctxt ""
msgid "Options"
msgstr "პარამეტრები"
-#. QOk;
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -230,7 +208,6 @@ msgctxt ""
msgid "De~finition and data"
msgstr "~განსაზღვრება და მონაცემი"
-#. 6zkh
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -240,7 +217,6 @@ msgctxt ""
msgid "Def~inition"
msgstr "გა~ნსაზღვრება"
-#. VRP*
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -250,7 +226,6 @@ msgctxt ""
msgid "A~s table view"
msgstr "ცხრ~ილის სახით"
-#. M?|_
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -260,7 +235,6 @@ msgctxt ""
msgid "Append ~data"
msgstr "მონაცემთა ~დამატება"
-#. -au[
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -270,7 +244,6 @@ msgctxt ""
msgid "Use first ~line as column names"
msgstr ""
-#. 09rg
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -280,7 +253,6 @@ msgctxt ""
msgid "Crea~te primary key"
msgstr "შექ~მენი ძირითადი გასაღები"
-#. =79|
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -290,7 +262,6 @@ msgctxt ""
msgid "Name"
msgstr "სახელი"
-#. *`p=
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -299,7 +270,6 @@ msgctxt ""
msgid "Copy table"
msgstr "ცხრილის კოპირება"
-#. )^(0
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -308,7 +278,6 @@ msgctxt ""
msgid "Copy table"
msgstr "ცხრილის კოპირება"
-#. +^3G
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -317,7 +286,6 @@ msgctxt ""
msgid "This table name is not valid in the current database."
msgstr "ამ მონაცემთა ბაზაში ეს ცხრილის სახელი არასწორია."
-#. zpA1
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -326,7 +294,6 @@ msgctxt ""
msgid "Choose the option 'Append data' on the first page to append data to an existing table."
msgstr "არსებულ ცხრილში მონაცემთა ჩასამატებლად პირველ გვერდზე აირჩიე ვარიანტი 'მონაცემთა დამატება'."
-#. u#s2
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -335,7 +302,6 @@ msgctxt ""
msgid "Please change the table name. It is too long."
msgstr "ცხრილის სახელი დაშვებულზე გრძელია, გთხოვთ შეცვალოთ."
-#. Q1z5
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -345,7 +311,6 @@ msgctxt ""
msgid "System"
msgstr "სისტემა"
-#. UEPj
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -354,7 +319,6 @@ msgctxt ""
msgid "Error during creation"
msgstr "შეცდომა შექმნისას"
-#. oM]T
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -363,7 +327,6 @@ msgctxt ""
msgid "An unexpected error occurred. The operation could not be performed."
msgstr "ოპერაცია ვერ ტარდება, მოხდა მოულოდნელი შეცდომა."
-#. ?a9N
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -372,7 +335,6 @@ msgctxt ""
msgid "The document \"$file$\" could not be opened."
msgstr ""
-#. W~t+
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -381,7 +343,6 @@ msgctxt ""
msgid "The table cannot be deleted because the database connection does not support this."
msgstr "ცხრილი არ იშლება, რადგან ბაზის კავშირი ამას ვერ უზრუნველყოფს."
-#. /vzc
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -390,7 +351,6 @@ msgctxt ""
msgid "~All"
msgstr "~ყველა"
-#. ;!wA
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -399,7 +359,6 @@ msgctxt ""
msgid "Undo:"
msgstr "უკანსვლა:"
-#. @QFQ
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -408,7 +367,6 @@ msgctxt ""
msgid "Redo:"
msgstr "წინსვლა:"
-#. 4+;Y
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -417,7 +375,6 @@ msgctxt ""
msgid "No corresponding column type could be found for column '#1'."
msgstr "სვეტი '#1'-სთვის შესაბამისი სვეტის ტიპი არ მოიძებნა."
-#. 71C1
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -426,7 +383,6 @@ msgctxt ""
msgid "The file \"$file$\" does not exist."
msgstr "ფაილი \"$file$\"არ არსებობს."
-#. 8#h)
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -435,7 +391,6 @@ msgctxt ""
msgid "Warnings were encountered while connecting to the data source. Press \"$buttontext$\" to view them."
msgstr "მონაცემთა წყაროსთან შეერთებისას აღმოჩენილია გაფრთხილებები. მათ სანახავად დააჭირეთ \"$buttontext$\"-ს"
-#. Bori
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -448,7 +403,6 @@ msgstr ""
"სახელი '$#$' უკვე არსებობს.\n"
"გთხოვთ შეიყვანოთ სხვა სახელი."
-#. X@3n
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
diff --git a/source/ka/dbaccess/source/ui/querydesign.po b/source/ka/dbaccess/source/ui/querydesign.po
index 87088d54abe..43797e8c155 100644
--- a/source/ka/dbaccess/source/ui/querydesign.po
+++ b/source/ka/dbaccess/source/ui/querydesign.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. rJ%%
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "Options"
msgstr "პარამეტრები"
-#. =9+%
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "~Type"
msgstr "~ტიპი"
-#. \iJy
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Inner join"
msgstr "შიდა კავშირი"
-#. dVrr
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Left join"
msgstr "მარცხენა კავშირი"
-#. SsFj
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "Right join"
msgstr "მარჯვენა კავშირი"
-#. 5HYb
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "Full (outer) join"
msgstr "სრული (გარე) კავშირი"
-#. v7q7
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "Cross join"
msgstr ""
-#. k**g
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "Natural"
msgstr ""
-#. 46q*
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "Tables involved"
msgstr "შემოტანილი ცხრილები"
-#. GK=\
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -115,7 +105,6 @@ msgctxt ""
msgid "Fields involved"
msgstr "ჩართული ველები"
-#. $;xp
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -124,7 +113,6 @@ msgctxt ""
msgid "Join Properties"
msgstr "კავშირის პარამეტრები"
-#. _a)x
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -133,7 +121,6 @@ msgctxt ""
msgid "Please note that some databases may not support this join type."
msgstr "გთხოვთ, გაითვალისწინოთ, რომ ზოგიერთი მონაცემთა ბაზა მხარს არ უჭერს ამ ტიპის კავშირს."
-#. [gm?
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -142,7 +129,6 @@ msgctxt ""
msgid "Includes only records for which the contents of the related fields of both tables are identical."
msgstr "შეიცავს მხოლოდ იმ ჩანაწერებს რომელთან დაკავშირებულ ველთა შინაარსიც იდენტურია ორივე ცხრილისათვის. "
-#. X2Gm
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -151,7 +137,6 @@ msgctxt ""
msgid "Contains ALL records from table '%1' but only records from table '%2' where the values in the related fields are matching."
msgstr "შეიცავს ყველა ჩანაწერს '%1' ცხრილიდან, და მხოლოდ იმ ჩანაწერებს '%2' ცხრილიდან, სადაც დაკავშირებულ ველებში მნიშვნელობები შესაბამისია."
-#. 4zbd
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -160,7 +145,6 @@ msgctxt ""
msgid "Contains ALL records from '%1' and from '%2'."
msgstr "შეიცავს ყველა ჩანაწერს '%1'-დან და '%2'-დან."
-#. kpOB
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -169,7 +153,6 @@ msgctxt ""
msgid "Contains the cartesian product of ALL records from '%1' and from '%2'."
msgstr ""
-#. PD$H
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -178,7 +161,6 @@ msgctxt ""
msgid "Contains only one column for each pair of equally-named columns from '%1' and from '%2'."
msgstr ""
-#. 0-qf
#: query.src
msgctxt ""
"query.src\n"
@@ -187,7 +169,6 @@ msgctxt ""
msgid "Add Table Window"
msgstr "ცხრილის ფანჯრის დამატება"
-#. uig%
#: query.src
msgctxt ""
"query.src\n"
@@ -196,7 +177,6 @@ msgctxt ""
msgid "Move table window"
msgstr "ცხრილის ფანჯრის გადატანა"
-#. 8WpA
#: query.src
msgctxt ""
"query.src\n"
@@ -205,7 +185,6 @@ msgctxt ""
msgid "Insert Join"
msgstr "კავშირის დამატება"
-#. sG6M
#: query.src
msgctxt ""
"query.src\n"
@@ -214,7 +193,6 @@ msgctxt ""
msgid "Delete Join"
msgstr "კავშირის წაშლა"
-#. L+^W
#: query.src
msgctxt ""
"query.src\n"
@@ -223,7 +201,6 @@ msgctxt ""
msgid "Resize table window"
msgstr "ცხრილის ფანჯრის ზომის შეცვლა"
-#. D^BY
#: query.src
msgctxt ""
"query.src\n"
@@ -232,7 +209,6 @@ msgctxt ""
msgid "Delete Column"
msgstr "სვეტის წაშლა"
-#. AW%^
#: query.src
msgctxt ""
"query.src\n"
@@ -241,7 +217,6 @@ msgctxt ""
msgid "Move column"
msgstr "სვეტის გადატანა"
-#. nOk3
#: query.src
msgctxt ""
"query.src\n"
@@ -250,7 +225,6 @@ msgctxt ""
msgid "Add Column"
msgstr "სვეტის დამატება"
-#. )UDE
#: query.src
msgctxt ""
"query.src\n"
@@ -259,7 +233,6 @@ msgctxt ""
msgid "Invalid expression, table '$name$' does not exist."
msgstr "არასწორი გამოსახულება, ცხრილი '$name$' არ არსებობს."
-#. .W\\
#: query.src
msgctxt ""
"query.src\n"
@@ -268,7 +241,6 @@ msgctxt ""
msgid "Invalid expression, field name '$name$' does not exist."
msgstr "არასწორი გამოსახულება, ცხრილის სახელი '$name$' არ არსებობს."
-#. a1mP
#: query.src
msgctxt ""
"query.src\n"
@@ -277,7 +249,6 @@ msgctxt ""
msgid "The query covers #num# tables. The selected database type, however, can only process a maximum of #maxnum# table(s) per statement."
msgstr "მოთხოვნა ფარავს #num# ცხრილს. არჩეული მონაცემთა ტიპის ყოველ დებულებაზე შეუძლია დაამუშაოს მაქსიმუმ #maxnum# ცხრილი."
-#. 3I|w
#: query.src
msgctxt ""
"query.src\n"
@@ -286,7 +257,6 @@ msgctxt ""
msgid "Delete Table Window"
msgstr "ცხრილის ფანჯრის წაშლა"
-#. wI.O
#: query.src
msgctxt ""
"query.src\n"
@@ -295,7 +265,6 @@ msgctxt ""
msgid "Edit Column Description"
msgstr "სვეტის აღწერილობის რედაქტირება"
-#. krXD
#: query.src
msgctxt ""
"query.src\n"
@@ -304,7 +273,6 @@ msgctxt ""
msgid "Adjust column width"
msgstr "სვეტის სიგანის გასწორება"
-#. /HIh
#: query.src
msgctxt ""
"query.src\n"
@@ -313,7 +281,6 @@ msgctxt ""
msgid "(not sorted);ascending;descending"
msgstr "(არასორტირებული): ზრდადობით; კლებადობით"
-#. W|zJ
#: query.src
msgctxt ""
"query.src\n"
@@ -322,7 +289,6 @@ msgctxt ""
msgid "(no function);Group"
msgstr "(ფუნქციის გარეშე);ჯგუფი"
-#. bG9n
#: query.src
msgctxt ""
"query.src\n"
@@ -331,7 +297,6 @@ msgctxt ""
msgid "(no table)"
msgstr "(ცხრლის გარეშე)"
-#. )!;O
#: query.src
msgctxt ""
"query.src\n"
@@ -340,7 +305,6 @@ msgctxt ""
msgid "The database only supports sorting for visible fields."
msgstr "მონაცემთა ბაზა მხარს უჭერს მხოლოდ ხილულ ველებს."
-#. Fh8`
#: query.src
msgctxt ""
"query.src\n"
@@ -350,7 +314,6 @@ msgctxt ""
msgid "Functions"
msgstr "ფუნქციები"
-#. 7*N!
#: query.src
msgctxt ""
"query.src\n"
@@ -360,7 +323,6 @@ msgctxt ""
msgid "Table Name"
msgstr "ცხრილის სახელი"
-#. 4toX
#: query.src
msgctxt ""
"query.src\n"
@@ -370,7 +332,6 @@ msgctxt ""
msgid "Alias"
msgstr "მეტსახელი"
-#. )b[Y
#: query.src
msgctxt ""
"query.src\n"
@@ -380,7 +341,6 @@ msgctxt ""
msgid "Distinct Values"
msgstr "ცალსახა მნიშვნელობები"
-#. :]VY
#: query.src
msgctxt ""
"query.src\n"
@@ -389,7 +349,6 @@ msgctxt ""
msgid "Field;Alias;Table;Sort;Visible;Function;Criterion;Or;Or"
msgstr "ველი;მეტსახელი;ცხრილი;სორტირება;ხილული;ფუნქცია;კრიტერიუმი;ან;ან"
-#. ukK~
#: query.src
msgctxt ""
"query.src\n"
@@ -398,7 +357,6 @@ msgctxt ""
msgid "There are too many columns."
msgstr "ზედმეტად ბევრი სვეტია."
-#. XKI9
#: query.src
msgctxt ""
"query.src\n"
@@ -407,7 +365,6 @@ msgctxt ""
msgid "A condition cannot be applied to field [*]"
msgstr "პირობა არ აქტივირდება ველზე [*]"
-#. 3f`+
#: query.src
msgctxt ""
"query.src\n"
@@ -416,7 +373,6 @@ msgctxt ""
msgid "The SQL statement created is too long."
msgstr "შექმნილი SQL მოთხოვნა ზედმეტად გრძელია."
-#. 4({}
#: query.src
msgctxt ""
"query.src\n"
@@ -425,7 +381,6 @@ msgctxt ""
msgid "Query is too complex"
msgstr "მოთხოვნა ზედმეტად რთულია"
-#. qiv2
#: query.src
msgctxt ""
"query.src\n"
@@ -434,7 +389,6 @@ msgctxt ""
msgid "Nothing has been selected."
msgstr "მონიშნული არაფერი არ არის."
-#. =0zi
#: query.src
msgctxt ""
"query.src\n"
@@ -443,7 +397,6 @@ msgctxt ""
msgid "Too many search criteria"
msgstr "ძალიან ბევრი საძიებო კრიტერიუმი"
-#. r~B!
#: query.src
msgctxt ""
"query.src\n"
@@ -452,7 +405,6 @@ msgctxt ""
msgid "SQL syntax error"
msgstr "SQL სინტაქსური შეცდომა"
-#. iOY@
#: query.src
msgctxt ""
"query.src\n"
@@ -461,7 +413,6 @@ msgctxt ""
msgid "[*] cannot be used as a sort criterion."
msgstr "[*] ვერ გამოიყენება სორტირების კრიტერიუმად."
-#. ;2~e
#: query.src
msgctxt ""
"query.src\n"
@@ -470,7 +421,6 @@ msgctxt ""
msgid "There are too many tables."
msgstr "ძალიან ბევრი ცხრილია."
-#. `ItO
#: query.src
msgctxt ""
"query.src\n"
@@ -479,7 +429,6 @@ msgctxt ""
msgid "The statement will not be applied when querying in the SQL dialect of the database."
msgstr "ბრძანება არ გააქტიურდება მონაცემთა ბაზაში SQL დიალექტზე გაკეთებული მოთხოვნისას."
-#. /)~O
#: query.src
msgctxt ""
"query.src\n"
@@ -488,7 +437,6 @@ msgctxt ""
msgid "Field name not found or not unique"
msgstr "ველის სახელი ვერ მოიძებნა ან უნიკალური არ არის"
-#. Es13
#: query.src
msgctxt ""
"query.src\n"
@@ -497,7 +445,6 @@ msgctxt ""
msgid "Join could not be processed"
msgstr "კავშირი ვერ გრძელდება"
-#. F{b/
#: query.src
msgctxt ""
"query.src\n"
@@ -506,7 +453,6 @@ msgctxt ""
msgid "Syntax error in SQL statement"
msgstr "სინტაქსური შეცდომა SQL განაცხადში"
-#. #D4O
#: query.src
msgctxt ""
"query.src\n"
@@ -515,7 +461,6 @@ msgctxt ""
msgid "This database does not support table views."
msgstr "მონაცემთა ბაზა მხარს არ უჭერს ცხრილების ნახვას."
-#. 05;K
#: query.src
msgctxt ""
"query.src\n"
@@ -524,7 +469,6 @@ msgctxt ""
msgid "This database does not support altering of existing table views."
msgstr ""
-#. Xae+
#: query.src
msgctxt ""
"query.src\n"
@@ -533,7 +477,6 @@ msgctxt ""
msgid "Do you want to create a query instead?"
msgstr "გსურთ სანაცვლოდ მოთხოვნის შექმნა?"
-#. xN(!
#: query.src
msgctxt ""
"query.src\n"
@@ -542,7 +485,6 @@ msgctxt ""
msgid "No query could be created."
msgstr "მოთხოვნა ვერ წარმოიქმნა."
-#. Dg/-
#: query.src
msgctxt ""
"query.src\n"
@@ -551,7 +493,6 @@ msgctxt ""
msgid "No query could be created because no fields were selected."
msgstr "მოთხოვნა ვერ წარმოიქმნა რადგან ველები არ არის მონიშნული."
-#. @Y.Y
#: query.src
msgctxt ""
"query.src\n"
@@ -560,7 +501,6 @@ msgctxt ""
msgid "The corresponding data source has been deleted. Therefore, data relevant to that data source cannot be saved."
msgstr "შესაბამისი მონაცემთა წყარო წაიშალა. თუმცა ამ მონაცემთა წყაროსთან დაკავშირებული მონაცემების დამახსოვრება ვერ მოხერხდა."
-#. 8C.r
#: query.src
msgctxt ""
"query.src\n"
@@ -569,7 +509,6 @@ msgctxt ""
msgid "The column '$name$' is unknown."
msgstr "სვეტი '$name$' უცნობია."
-#. 5SB6
#: query.src
msgctxt ""
"query.src\n"
@@ -578,7 +517,6 @@ msgctxt ""
msgid "Columns can only be compared using '='."
msgstr "სვეტების შედარება მხოლოდ '='-ის გამოყენებით შეიძლება."
-#. q-oU
#: query.src
msgctxt ""
"query.src\n"
@@ -587,7 +525,6 @@ msgctxt ""
msgid "You must use a column name before 'LIKE'."
msgstr "'LIKE'-ის წინ უნდა გამოიყენოთ სვეტის სახელი."
-#. d0vF
#: query.src
msgctxt ""
"query.src\n"
@@ -596,7 +533,6 @@ msgctxt ""
msgid "The column could not be found. Please note that the database is case-sensitive."
msgstr "სვეტის პოვნა შეუძლებელია. გახსოვდეთ, რომ მონაცემთა ბაზა რეგისტრისადმი მგრშნობიარეა."
-#. 5v?A
#: query.src
msgctxt ""
"query.src\n"
@@ -605,7 +541,6 @@ msgctxt ""
msgid " - %PRODUCTNAME Base: Query Design"
msgstr " - %PRODUCTNAME ბაზა: მოთხოვნის შექმნა"
-#. %0im
#: query.src
msgctxt ""
"query.src\n"
@@ -615,7 +550,6 @@ msgid " - %PRODUCTNAME Base: View Design"
msgstr " - %PRODUCTNAME ბაზა: ნახვა"
#. For $object$, one of the values of the RSC_QUERY_OBJECT_TYPE resource will be inserted.
-#. Y-cb
#: query.src
msgctxt ""
"query.src\n"
@@ -629,7 +563,6 @@ msgstr ""
"გსურთ ცვლილებათა შენახვა?"
#. For $object$, one of the values of the RSC_QUERY_OBJECT_TYPE resource (except "SQL command", which doesn't make sense here) will be inserted.
-#. Cw:+
#: query.src
msgctxt ""
"query.src\n"
@@ -639,7 +572,6 @@ msgid "$object$ is based on an SQL command which could not be parsed."
msgstr ""
#. For $object$, one of the values of the RSC_QUERY_OBJECT_TYPE resource (except "SQL command", which doesn't make sense here) will be inserted.
-#. @bfe
#: query.src
msgctxt ""
"query.src\n"
@@ -648,7 +580,6 @@ msgctxt ""
msgid "$object$ will be opened in SQL view."
msgstr "მოთხოვნა გაიხსნება SQL -ის წარმოდგენაში."
-#. HAdD
#: query.src
msgctxt ""
"query.src\n"
@@ -658,7 +589,6 @@ msgctxt ""
msgid "The table view"
msgstr "ცხრილის ნახვა"
-#. Nl{E
#: query.src
msgctxt ""
"query.src\n"
@@ -668,7 +598,6 @@ msgctxt ""
msgid "The query"
msgstr "მოთხოვნა"
-#. f\zj
#: query.src
msgctxt ""
"query.src\n"
@@ -678,7 +607,6 @@ msgctxt ""
msgid "The SQL statement"
msgstr "SQL განაცხადი"
-#. y=%/
#: query.src
msgctxt ""
"query.src\n"
@@ -687,7 +615,6 @@ msgctxt ""
msgid "The query does not create a result set, and thus cannot be part of another query."
msgstr "მოთხოვნა არ ქმნის შედეგთა ნაკრებას, შედეგად, იგი ვერ იქნება სხვა მოთხოვნის ნაწილი. "
-#. SIJ`
#: query.src
msgctxt ""
"query.src\n"
diff --git a/source/ka/dbaccess/source/ui/relationdesign.po b/source/ka/dbaccess/source/ui/relationdesign.po
index 647f3348b94..c60eab7b1de 100644
--- a/source/ka/dbaccess/source/ui/relationdesign.po
+++ b/source/ka/dbaccess/source/ui/relationdesign.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. hOZ_
#: relation.src
msgctxt ""
"relation.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "This relation already exists. Do you want to edit it or create a new one?"
msgstr ""
-#. o];n
#: relation.src
msgctxt ""
"relation.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Edit..."
msgstr "რედაქტირება..."
-#. 1c[-
#: relation.src
msgctxt ""
"relation.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Create..."
msgstr "შექმნა..."
-#. AoH_
#: relation.src
msgctxt ""
"relation.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid " - %PRODUCTNAME Base: Relation design"
msgstr " - %PRODUCTNAME ბაზა: კავშირის დიზაინი"
-#. )MM4
#: relation.src
msgctxt ""
"relation.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "The database does not support relations."
msgstr "მონაცემთა ბაზა ვერ უზრუნველყოფს კავშირს."
-#. NYJF
#: relation.src
msgctxt ""
"relation.src\n"
@@ -73,7 +67,6 @@ msgstr ""
"შეიცვალა კავშირის დიზაინი.\n"
" გსურთ ცვლილებების შენახვა?"
-#. #EzH
#: relation.src
msgctxt ""
"relation.src\n"
@@ -82,7 +75,6 @@ msgctxt ""
msgid "When you delete this table all corresponding relations will be deleted as well. Continue?"
msgstr "როდესაც თქვენ შლით შესაბამის ცხრილს, ყველა შესაბამისი კავშირი წაიშლება. გავაგრძელო?"
-#. {1NJ
#: relation.src
msgctxt ""
"relation.src\n"
diff --git a/source/ka/dbaccess/source/ui/tabledesign.po b/source/ka/dbaccess/source/ui/tabledesign.po
index 5ac6622a620..4e9842a39eb 100644
--- a/source/ka/dbaccess/source/ui/tabledesign.po
+++ b/source/ka/dbaccess/source/ui/tabledesign.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. +zNj
#: table.src
msgctxt ""
"table.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Unknown;Text;Number;Date/Time;Date;Time;Yes/No;Currency;Memo;Counter;Image;Text (fix);Decimal;Binary (fix);Binary;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Object;Distinct;Structure;Field;BLOB;CLOB;REF;OTHER;Bit (fix)"
msgstr "უცნობი;ტექსტი;ნომერი;თარიღი/დრო;თარიღი;დრო;დიახ/არა;ვალუტა;უწყება;მთვლელი;ნახატი;ტექსტი (ფიქსირება);ათობითი;ორობითი (ფიქსირება);ორობითი;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Object;Distinct;Structure;Field;BLOB;CLOB;REF;OTHER"
-#. |sU@
#: table.src
msgctxt ""
"table.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Insert/remove primary key"
msgstr "ძირითადი გასაღების ჩასმა/ამოღება"
-#. UI--
#: table.src
msgctxt ""
"table.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Yes"
msgstr "დიახ"
-#. X9{a
#: table.src
msgctxt ""
"table.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "No"
msgstr "არა"
-#. ..-$
#: table.src
msgctxt ""
"table.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Ascending"
msgstr "ზრდადი"
-#. :+)e
#: table.src
msgctxt ""
"table.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Descending"
msgstr "კლებადობი"
-#. 5(BM
#: table.src
msgctxt ""
"table.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "<none>"
msgstr "<არცერთი>"
-#. =2Fw
#: table.src
msgctxt ""
"table.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Field name"
msgstr "ველის სახელი"
-#. b!J7
#: table.src
msgctxt ""
"table.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Field Name"
msgstr "ველის სახელი"
-#. Ke6E
#: table.src
msgctxt ""
"table.src\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Field ~type"
msgstr "ველის ტიპი"
-#. 3=e_
#: table.src
msgctxt ""
"table.src\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "Field Type"
msgstr "ველის ტიპი"
-#. H%CY
#: table.src
msgctxt ""
"table.src\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "Field length"
msgstr "ველის სიგრძე"
-#. M[,x
#: table.src
msgctxt ""
"table.src\n"
@@ -132,7 +119,6 @@ msgctxt ""
msgid "Description"
msgstr "განმარტება"
-#. {oh-
#: table.src
#, fuzzy
msgctxt ""
@@ -142,7 +128,6 @@ msgctxt ""
msgid "Column Description"
msgstr "სვეტის აღწერილობის რედაქტირება"
-#. #FSY
#: table.src
msgctxt ""
"table.src\n"
@@ -151,7 +136,6 @@ msgctxt ""
msgid "Input required"
msgstr "საჭიროა შეყვანა"
-#. A[jT
#: table.src
msgctxt ""
"table.src\n"
@@ -160,7 +144,6 @@ msgctxt ""
msgid "~AutoValue"
msgstr "~ავტომნიშვნელობა"
-#. ,izf
#: table.src
msgctxt ""
"table.src\n"
@@ -169,7 +152,6 @@ msgctxt ""
msgid "Field Properties"
msgstr "ველის თვისებები"
-#. Wp+k
#: table.src
msgctxt ""
"table.src\n"
@@ -178,7 +160,6 @@ msgctxt ""
msgid "General"
msgstr "ზოგადი"
-#. X?RF
#: table.src
msgctxt ""
"table.src\n"
@@ -187,7 +168,6 @@ msgctxt ""
msgid "Description:"
msgstr "განმარტება:"
-#. v]`~
#: table.src
msgctxt ""
"table.src\n"
@@ -196,7 +176,6 @@ msgctxt ""
msgid "Table properties"
msgstr "ცხრილის თვისებები"
-#. hCr$
#: table.src
msgctxt ""
"table.src\n"
@@ -205,7 +184,6 @@ msgctxt ""
msgid "The text you entered is not a list element. "
msgstr "თქვენს მიერ შეყვანილი ტექსტი არ არის ელემენტების სიაში. "
-#. Z~\!
#: table.src
msgctxt ""
"table.src\n"
@@ -215,7 +193,6 @@ msgctxt ""
msgid "Insert Rows"
msgstr "სტრქონის ჩასმა"
-#. buHQ
#: table.src
msgctxt ""
"table.src\n"
@@ -225,7 +202,6 @@ msgctxt ""
msgid "Primary Key"
msgstr "პირველადი გასაღები"
-#. :tSG
#: table.src
msgctxt ""
"table.src\n"
@@ -234,7 +210,6 @@ msgctxt ""
msgid "Modify cell"
msgstr "უჯრის შეცვლა"
-#. `87G
#: table.src
msgctxt ""
"table.src\n"
@@ -243,7 +218,6 @@ msgctxt ""
msgid "Delete row"
msgstr "სტრიქონის წაშლია"
-#. 6PCw
#: table.src
msgctxt ""
"table.src\n"
@@ -252,7 +226,6 @@ msgctxt ""
msgid "Modify field type"
msgstr "ველის ტიპის მონიფიცირება"
-#. of6E
#: table.src
msgctxt ""
"table.src\n"
@@ -261,7 +234,6 @@ msgctxt ""
msgid "Insert row"
msgstr "სტრიქონის ჩასმა"
-#. gP#0
#: table.src
msgctxt ""
"table.src\n"
@@ -270,7 +242,6 @@ msgctxt ""
msgid "Insert new row"
msgstr "ჩასვით ახალი სტრიქონი"
-#. O90e
#: table.src
msgctxt ""
"table.src\n"
@@ -279,7 +250,6 @@ msgctxt ""
msgid "Insert/remove primary key"
msgstr "ძირითადი გასაღების ჩასმა/ამოღება"
-#. h)Dv
#: table.src
msgctxt ""
"table.src\n"
@@ -288,7 +258,6 @@ msgctxt ""
msgid "~Default value"
msgstr "~სტანდარტული მნიშვნელობა"
-#. AHx$
#: table.src
msgctxt ""
"table.src\n"
@@ -297,7 +266,6 @@ msgctxt ""
msgid "~Entry required"
msgstr "~სეიყვანეთ მოთხოვნა"
-#. IM1C
#: table.src
msgctxt ""
"table.src\n"
@@ -306,7 +274,6 @@ msgctxt ""
msgid "~Length"
msgstr "~სიგრძე"
-#. UMNU
#: table.src
msgctxt ""
"table.src\n"
@@ -315,7 +282,6 @@ msgctxt ""
msgid "~Type"
msgstr "~ტიპი"
-#. +E.l
#: table.src
msgctxt ""
"table.src\n"
@@ -324,7 +290,6 @@ msgctxt ""
msgid "~Length"
msgstr "~სიგრძე"
-#. 6)Qn
#: table.src
msgctxt ""
"table.src\n"
@@ -333,7 +298,6 @@ msgctxt ""
msgid "Decimal ~places"
msgstr "წილადის ~მდებარეობა"
-#. 3W;J
#: table.src
msgctxt ""
"table.src\n"
@@ -342,7 +306,6 @@ msgctxt ""
msgid "Format example"
msgstr "მაგალითის ფორმატირება"
-#. pENt
#: table.src
msgctxt ""
"table.src\n"
@@ -355,7 +318,6 @@ msgstr ""
"მონიშნეთ მნიშვნელობა რომელიც გამოჩნდება ყველა ახალ ჩანაწერში როგორც საწყისი.\n"
"თუ ველს არ გააჩნია საწყისი მნიშვნელობა, მონიშნე ცარიელი სტრიქონი."
-#. ;^|H
#: table.src
msgctxt ""
"table.src\n"
@@ -370,7 +332,6 @@ msgstr ""
"\n"
"თქვენ როდესაც მოგვიანებით შეიყვანთ თარიღს ცხრილში, ეს მნიშვენლობა გამოყენებული იქნება ყოელ ახალ ჩანაწერშიმონიშნული ველისათვის. ეს უნდა იყოს, იმოტომ რომ, შეესაბამებოდეს ცხრილის უჯრას, რომელიც მითიებული უნდა იყოს ქვემოთ."
-#. 3}PH
#: table.src
msgctxt ""
"table.src\n"
@@ -379,7 +340,6 @@ msgctxt ""
msgid "Activate this option if this field cannot contain NULL values, i.e. the user must always enter data."
msgstr "თუ ველი არ შეიცავს NULL მნიშვნელობას, გააქტიურეთ ეს ოპცა, i.e. მომხმარებელმა ყოველთვის უნდა შეიყვანოს მონაცემი."
-#. 7mL^
#: table.src
msgctxt ""
"table.src\n"
@@ -388,7 +348,6 @@ msgctxt ""
msgid "Enter the maximum text length permitted."
msgstr "შეიყვანეთ ტექსტის სიგრძის მაქსიმალური ნებართვა."
-#. 7#=!
#: table.src
msgctxt ""
"table.src\n"
@@ -397,7 +356,6 @@ msgctxt ""
msgid "Enter the number format."
msgstr "შეიყვანეთ ფორმატის ნომერი."
-#. b1p*
#: table.src
msgctxt ""
"table.src\n"
@@ -414,7 +372,6 @@ msgstr ""
"თუ აობიი ველი, მას შემდეგ რაც შევა მაქსიმალური სიგრძის რიცხვი, თუ ორობითი ველი, შემდეგ სიგრძე მონაცემის ბლოკის.\n"
"მნიშვნელობა ატომატრად იქნება შესწორებული თუ ის გადააჭარბებს მაქსიმუმს ამ მონაცემთა ბაზისათვის."
-#. -^69
#: table.src
msgctxt ""
"table.src\n"
@@ -423,7 +380,6 @@ msgctxt ""
msgid "Specify the number of decimal places permitted in this field."
msgstr "განსაზღვრეთ ათობიი რიცხვის ადგილი ნებადართულ ველში."
-#. C%%|
#: table.src
msgctxt ""
"table.src\n"
@@ -432,7 +388,6 @@ msgctxt ""
msgid "This is where you see how the data would be displayed in the current format (use the button on the right to modify the format)."
msgstr "ეს ის ადგილია სადაც გამოჩნდება მონაცემი მიმდინარე ფორმატში (გამოიყენეთ მარჯვენა ღილაკი ფორმატირების მოდიფიკაციისათვის)."
-#. Hqk$
#: table.src
msgctxt ""
"table.src\n"
@@ -441,7 +396,6 @@ msgctxt ""
msgid "This is where you determine the output format of the data."
msgstr "ეს ის ადგილია სადაც თქვენ განსაზღვრავთ მონაცემის გამოტანის ფორმატს."
-#. [?XS
#: table.src
msgctxt ""
"table.src\n"
@@ -456,7 +410,6 @@ msgstr ""
"\n"
"თქვენ არ შეგიძლიათ შეიყვანოთ მონაცემი ამ ტიპის ველში. არსობრივი მნიშვნელობა იქნება ავტომატურად მინიჭებული ახალი ჩანაწერი (გამომდინარე წინა ჩანაწერის მნიშვნელობიდან)."
-#. .I\i
#: table.src
msgctxt ""
"table.src\n"
@@ -465,7 +418,6 @@ msgctxt ""
msgid "~..."
msgstr "~..."
-#. (WO0
#: table.src
msgctxt ""
"table.src\n"
@@ -474,7 +426,6 @@ msgctxt ""
msgid "The table cannot be saved because column name \"$column$\" was assigned twice."
msgstr "ცხრილის შენახვა ვერ ხერხდება, რადგან სვეტის სახელი \"$column$\" მინიჭებულია ორჯერ."
-#. BE=K
#: table.src
msgctxt ""
"table.src\n"
@@ -483,7 +434,6 @@ msgctxt ""
msgid "The column \"$column$\" belongs to the primary key. If the column is deleted, the primary key will also be deleted. Do you really want to continue?"
msgstr "სვეტი \"$column$\" ეკუთვსნის ძირითად გასაღებს. თუ სვეტი წაიშლება, ძირითადი გასაღებიც წაიშლება. გსურთ გაგრძელება?"
-#. H0za
#: table.src
msgctxt ""
"table.src\n"
@@ -492,7 +442,6 @@ msgctxt ""
msgid "Primary Key Affected"
msgstr "საწყისი გასაღები გაუსწორებელი"
-#. ^k*0
#: table.src
msgctxt ""
"table.src\n"
@@ -501,7 +450,6 @@ msgctxt ""
msgid "Column"
msgstr "სვეტი"
-#. o1m@
#: table.src
msgctxt ""
"table.src\n"
@@ -510,7 +458,6 @@ msgctxt ""
msgid "Continue anyway?"
msgstr "მაინც გავაგრძელო?"
-#. :}Ea
#: table.src
msgctxt ""
"table.src\n"
@@ -519,7 +466,6 @@ msgctxt ""
msgid "Warning!"
msgstr "გაფრტხილება!"
-#. 3U@W
#: table.src
msgctxt ""
"table.src\n"
@@ -532,7 +478,6 @@ msgstr ""
"ცხრილი იქნა შეცვლილი.\n"
"გსურთ ცვლილებების შენახვა?"
-#. LHZG
#: table.src
msgctxt ""
"table.src\n"
@@ -545,7 +490,6 @@ msgstr ""
"მონაცემთა ბაზასთან კავშირი დაიკარგა! ცხრილის დიზაინი მხოლოდ ლიმიტირებული უკავშირო ფუნქციონალობით გამოიყენება.\n"
"კვლავ დავუკავშირდე?"
-#. IXlV
#: table.src
msgctxt ""
"table.src\n"
@@ -554,7 +498,6 @@ msgctxt ""
msgid "The table could not be saved due to problems connecting to the database."
msgstr "ცხრილი ვერ იქნა შენახული მონაცემთა ბაზასთან კავშირის პრობლემის გამო."
-#. g4@I
#: table.src
msgctxt ""
"table.src\n"
@@ -563,7 +506,6 @@ msgctxt ""
msgid "The table filter could not be adjusted because the data source has been deleted."
msgstr "ცხრილის ფილტრი ვერ ალაგებს მონაცემებს რადგან მონაცემთა წყარო იქნა წაშლილი."
-#. w5qJ
#: table.src
msgctxt ""
"table.src\n"
@@ -576,7 +518,6 @@ msgstr ""
"მანამ სანამ თქვენ შეცვლით ცხრილის სარჩევს, თქვენ უნდა შეინახოთ ის.\n"
"გსურთ შეინახოთ ცვლილებები ახლა?"
-#. IT/l
#: table.src
msgctxt ""
"table.src\n"
@@ -585,7 +526,6 @@ msgctxt ""
msgid "No primary key"
msgstr "არ არის საწყისი გასაღები"
-#. gnM:
#: table.src
msgctxt ""
"table.src\n"
@@ -602,7 +542,6 @@ msgstr ""
"\n"
"გსურთ საწყის გასაღების შექმნა ეხლა?"
-#. ds(e
#: table.src
msgctxt ""
"table.src\n"
@@ -611,7 +550,6 @@ msgctxt ""
msgid " - %PRODUCTNAME Base: Table Design"
msgstr " - %PRODUCTNAME ბაზე: ცხრილის დიზაინი"
-#. j\[$
#: table.src
msgctxt ""
"table.src\n"
@@ -620,7 +558,6 @@ msgctxt ""
msgid "The column \"$column$\" could not be changed. Should the column instead be deleted and the new format appended?"
msgstr "სვეტი \"$column$\" ვერ შეიცვლება. წაიშალოს სვეტი და დაედოს ახალი ფორმატი?"
-#. 3pC`
#: table.src
msgctxt ""
"table.src\n"
@@ -629,7 +566,6 @@ msgctxt ""
msgid "Error while saving the table design"
msgstr "შეცდომა ცხრილის დიზაინის შენახვისას"
-#. s$A0
#: table.src
msgctxt ""
"table.src\n"
@@ -638,7 +574,6 @@ msgctxt ""
msgid "The column $column$ could not be deleted."
msgstr "სვეტი $column$ ვერ წაიშალა."
-#. b+/B
#: table.src
msgctxt ""
"table.src\n"
@@ -647,7 +582,6 @@ msgctxt ""
msgid "You are trying to delete all the columns in the table. A table cannot exist without columns. Should the table be deleted from the database? If not, the table will remain unchanged."
msgstr "თქვენ ცდილობთ წაშალოთ ყველა სვეტი ცხრილში. ცხრილი ვერ იარსებებს სვეტის გარეშე. ცხრილი შეიდზლება ამოშლილი იქნეს მონაცემთა ბაზიდან. თუ არა, ცხრილი დარჩება შეუცვლელი."
-#. mb.U
#: table.src
msgctxt ""
"table.src\n"
@@ -656,7 +590,6 @@ msgctxt ""
msgid "A~uto-increment statement"
msgstr "ა~ვტო-ზრდადი ბრძანება"
-#. ZA{U
#: table.src
msgctxt ""
"table.src\n"
@@ -671,7 +604,6 @@ msgstr ""
"\n"
"ეს ბრძანება პირდაპირ იქნება გადაადგილებული მონაცემთა ბაზაში როცა შეიქმნება ახალი ცხრილი."
-#. -CSJ
#: table.src
msgctxt ""
"table.src\n"
@@ -684,7 +616,6 @@ msgstr ""
"არანაირი ტიპის ინფორმაცია არ ადგა მონაცემთა ბაზიდან.\n"
"ცხრილის დიზაინის რეჟიმი ამ მონაცემთა წყაროსათვის არ არის ხელმისაწვდომი."
-#. da%i
#: table.src
msgctxt ""
"table.src\n"
@@ -693,7 +624,6 @@ msgctxt ""
msgid "change field name"
msgstr "ველის სახელის შეცვლა"
-#. V6k6
#: table.src
msgctxt ""
"table.src\n"
@@ -702,7 +632,6 @@ msgctxt ""
msgid "change field type"
msgstr "ველის ტიპის შეცვლა"
-#. \=gd
#: table.src
msgctxt ""
"table.src\n"
@@ -711,7 +640,6 @@ msgctxt ""
msgid "change field description"
msgstr "ველის განმარტების შეცვლა"
-#. AAJ]
#: table.src
msgctxt ""
"table.src\n"
diff --git a/source/ka/dbaccess/source/ui/uno.po b/source/ka/dbaccess/source/ui/uno.po
index ceca1f7b2f8..07efa39a1e2 100644
--- a/source/ka/dbaccess/source/ui/uno.po
+++ b/source/ka/dbaccess/source/ui/uno.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. eQiO
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "The destination database does not support views."
msgstr ""
-#. _=Y9
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "The destination database does not support primary keys."
msgstr ""
-#. 3?2,
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "no data access descriptor found, or no data access descriptor able to provide all necessary information"
msgstr ""
-#. zV0M
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Only tables and queries are supported at the moment."
msgstr ""
-#. ~}tx
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "The copy source's result set must support bookmarks."
msgstr ""
-#. UCzS
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Unsupported source column type ($type$) at column position $pos$."
msgstr ""
-#. We~`
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Illegal number of initialization parameters."
msgstr ""
-#. mBwh
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "An error occurred during initialization."
msgstr ""
-#. HAbb
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Unsupported setting in the copy source descriptor: $name$."
msgstr ""
-#. mJDu
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "To copy a query, your connection must be able to provide queries."
msgstr ""
-#. poOe
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "The given interaction handler is invalid."
msgstr ""
-#. D3WL
#: dbinteraction.src
msgctxt ""
"dbinteraction.src\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "~Remember password until end of session"
msgstr "~პაროლის დამახსოვრება სესიის ბოლომდე"
-#. ?:go
#: dbinteraction.src
msgctxt ""
"dbinteraction.src\n"
diff --git a/source/ka/desktop/source/app.po b/source/ka/desktop/source/app.po
index 80d97b43a8e..6120b6a9c5d 100644
--- a/source/ka/desktop/source/app.po
+++ b/source/ka/desktop/source/app.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-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ;-E#
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Should the file \"$1\" be restored?"
msgstr "აღსდგეს \"$1\" ფაილი?"
-#. ;NJ+
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "File Recovery"
msgstr "ფაილის აღდგენა"
-#. NS+@
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -50,7 +47,6 @@ msgstr ""
"ყველა შეცვლილი ფაილი შენახულია და \n"
"შესაძლებელია მათი პროგრამის ხელახალი ჩატვირთვის შემდეგ აღდგენა."
-#. G(.k
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -59,7 +55,6 @@ msgctxt ""
msgid "The application cannot be started. "
msgstr "პროგრამა ვერ გაეშვება. "
-#. `a$P
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -68,7 +63,6 @@ msgctxt ""
msgid "The configuration directory \"$1\" could not be found."
msgstr "კონფიგურაციის დირექტორია \"$1\" ვერ მოიძებნა."
-#. D5B@
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -77,7 +71,6 @@ msgctxt ""
msgid "The installation path is invalid."
msgstr "ინსტალაციის მდებარეობა არასწორია."
-#. 3KSX
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -86,7 +79,6 @@ msgctxt ""
msgid "The installation path is not available."
msgstr "ინსტალაციის მდებარეობა აღმოჩენილი არა არის."
-#. [Rc8
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "An internal error occurred."
msgstr "მოხდა შიდა შეცდომა."
-#. Lp6S
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -104,7 +95,6 @@ msgctxt ""
msgid "The configuration file \"$1\" is corrupt."
msgstr "კონფიგურაციის ფაილი \"$1\" დაზიანებულია."
-#. FI:n
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -113,7 +103,6 @@ msgctxt ""
msgid "The configuration file \"$1\" was not found."
msgstr "კონფიგურაციის ფაილი \"$1\" ვერ მოიძებნა."
-#. rEGY
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -122,7 +111,6 @@ msgctxt ""
msgid "The configuration file \"$1\" does not support the current version."
msgstr "კონფიგურაციის ფაილი \"$1\" მხარს არ უჭერს მიმდინარე ვერსიას."
-#. 8}+c
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -131,7 +119,6 @@ msgctxt ""
msgid "The user interface language cannot be determined."
msgstr ""
-#. 8M4/
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -140,7 +127,6 @@ msgctxt ""
msgid "The configuration service is not available."
msgstr "კომპონენტების სერვისი ხელმისაწვდომი არაა."
-#. 7@8E
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -149,7 +135,6 @@ msgctxt ""
msgid "Start the setup application to repair the installation from the CD or the folder containing the installation packages."
msgstr "გაუშვით პროგრამის დაყენება ინსტალაციის აღსადგენად საინსატალაციო პაკეტების შემცველი კდ-დან ან საქაღალდედან."
-#. ;Qn6
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -158,7 +143,6 @@ msgctxt ""
msgid "The startup settings for accessing the central configuration are incomplete. "
msgstr "ჩატვირთვის პარამეტრები ცენტრალურ კონფიგურაციასთან წვდომისათვის არა არის დასრულებული. "
-#. rd?U
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -167,7 +151,6 @@ msgctxt ""
msgid "A connection to the central configuration could not be established. "
msgstr "კავშირი ცენტრალურ კონფიგურაციასთან ვერ დამყარდა. "
-#. N;}*
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -176,7 +159,6 @@ msgctxt ""
msgid "You cannot access the central configuration because of missing access rights. "
msgstr "არ შეგიძლიათ განახროციელოტ წვდომა ცენტრალურ კონფიგურაციასთან წვდომის უფლებების არ ქონის გამო."
-#. mb`J
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -185,7 +167,6 @@ msgctxt ""
msgid "A general error occurred while accessing your central configuration. "
msgstr "მოხდა ძირითადი შეცდომა ცენტრალურ კონფიგურაციასთან წვდომისას."
-#. gXwr
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -194,7 +175,6 @@ msgctxt ""
msgid "The changes to your personal settings cannot be stored centrally because of missing access rights. "
msgstr "ცვლილებები თქვენს პერსონალურ პარამეტრებში არ შენახულა ცენტრალიზირებულად, წვდომის უფლებების არ ქონის გამო. "
-#. :j,M
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -209,7 +189,6 @@ msgstr ""
"\n"
"გთხოვთ დაუკაბშირდეთ თქვენს სისტემურ ადმინსტრატორს."
-#. Hq*q
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -218,7 +197,6 @@ msgctxt ""
msgid "The following internal error has occurred: "
msgstr "მოხდა შემდეგი შიდა შეცდომა: "
-#. ]saI
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -235,7 +213,6 @@ msgstr ""
"\n"
"ნამდვილად გნებავთ გაგრძელება?"
-#. 5c(@
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -244,7 +221,6 @@ msgctxt ""
msgid "%PRODUCTNAME %PRODUCTVERSION"
msgstr "%PRODUCTNAME %PRODUCTVERSION"
-#. g1Dd
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -253,7 +229,6 @@ msgctxt ""
msgid "Help Message..."
msgstr ""
-#. _hMD
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -262,7 +237,6 @@ msgctxt ""
msgid "Printing is disabled. No documents can be printed."
msgstr "ბეჭდვა გამორთულია. ვერცერთი დოკუმენტი ვერ დაიბეჭდება."
-#. l%BI
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -271,7 +245,6 @@ msgctxt ""
msgid "%PRODUCTNAME %PRODUCTVERSION"
msgstr "%PRODUCTNAME %PRODUCTVERSION"
-#. @L?:
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -280,7 +253,6 @@ msgctxt ""
msgid "The path manager is not available.\n"
msgstr "ადგილმდებარეობის მმართველი არ არის ხელმისაწვდომი.\n"
-#. X:/Z
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -293,7 +265,6 @@ msgstr ""
"%PRODUCTNAME-ის სამომხმარებლო ინსტალაცია ვერ დასრულდება არასაკმარისი დისკური სივრცის გამო. გთხოვთ, გაანთავისუფლეთ დისკური სივრცე და გადატვირთეთ %PRODUCTNAME-ი:\n"
"\n"
-#. r2c(
#: desktop.src
msgctxt ""
"desktop.src\n"
diff --git a/source/ka/desktop/source/deployment/gui.po b/source/ka/desktop/source/deployment/gui.po
index 0b140e17fec..0b905b9116c 100644
--- a/source/ka/desktop/source/deployment/gui.po
+++ b/source/ka/desktop/source/deployment/gui.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-06-16 14:28+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. )g4a
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Add Extension(s)"
msgstr "გაფართოებ(ებ)ის"
-#. qUw1
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "~Remove"
msgstr "~ამოღება"
-#. /yLf
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "~Enable"
msgstr "ჩა~რთვა"
-#. nB=b
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "~Disable"
msgstr "~გამორთვა"
-#. UpY+
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "~Update..."
msgstr ""
-#. 6pLh
#: dp_gui_dialog.src
#, fuzzy
msgctxt ""
@@ -82,7 +76,6 @@ msgstr ""
"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
"~პარამეტრები..."
-#. F3Kz
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -91,7 +84,6 @@ msgctxt ""
msgid "Adding %EXTENSION_NAME"
msgstr ""
-#. H)hJ
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -100,7 +92,6 @@ msgctxt ""
msgid "Removing %EXTENSION_NAME"
msgstr ""
-#. -w-g
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -109,7 +100,6 @@ msgctxt ""
msgid "Enabling %EXTENSION_NAME"
msgstr ""
-#. m^rx
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -118,7 +108,6 @@ msgctxt ""
msgid "Disabling %EXTENSION_NAME"
msgstr ""
-#. sH1[
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -127,7 +116,6 @@ msgctxt ""
msgid "Accept license for %EXTENSION_NAME"
msgstr ""
-#. UeQm
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -136,7 +124,6 @@ msgctxt ""
msgid "~For all users"
msgstr ""
-#. F49M
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -145,7 +132,6 @@ msgctxt ""
msgid "~Only for me"
msgstr ""
-#. #_~A
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -154,7 +140,6 @@ msgctxt ""
msgid "Error: The status of this extension is unknown"
msgstr ""
-#. :D9%
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -163,7 +148,6 @@ msgctxt ""
msgid "Close"
msgstr "დახურვა"
-#. TuR@
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -172,7 +156,6 @@ msgctxt ""
msgid "Quit"
msgstr ""
-#. `^)5
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -184,7 +167,6 @@ msgid ""
"Updating of shared extension requires administrator privileges. Contact your system administrator to update the following shared extensions:"
msgstr ""
-#. JF-Z
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -195,7 +177,6 @@ msgstr ""
"ამ გაფართოების დაყენება შეუძლებელია ვინაიდან არ არის შესრულებული სისტემაზე\n"
"დამოკიდებული შემდეგი მოდულები:"
-#. DEjZ
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -204,7 +185,6 @@ msgctxt ""
msgid "This extension is disabled because you haven't accepted the license yet.\n"
msgstr ""
-#. dig5
#: dp_gui_dialog.src
#, fuzzy
msgctxt ""
@@ -214,7 +194,6 @@ msgctxt ""
msgid "Show license"
msgstr "სვეტების ჩვენება"
-#. ZWP3
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -224,7 +203,6 @@ msgctxt ""
msgid "Please follow these steps to proceed with the installation of the extension:"
msgstr "გაფართოების დასაყენებლად გთხოვთ შეასრულოთ შემდეგი მოქმედებები:"
-#. ?TEs
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -234,7 +212,6 @@ msgctxt ""
msgid "1."
msgstr "1."
-#. `^|e
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -244,7 +221,6 @@ msgctxt ""
msgid "Read the complete License Agreement. Use the scroll bar or the \\'Scroll Down\\' button in this dialog to view the entire license text."
msgstr "სრულად წაიკითხეთ შეთანხმება ლიცენზიის შესახებ. გამოიყენეთ ცოცია ან \\'ქვემოთ გადაადგილების\\' ღილაკი ამ დიალოგში ლიცენზიის სრული ტექსტის სანახავად."
-#. 5-GY
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -254,7 +230,6 @@ msgctxt ""
msgid "2."
msgstr "2."
-#. Q2.T
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -264,7 +239,6 @@ msgctxt ""
msgid "Accept the License Agreement for the extension by pressing the \\'Accept\\' button."
msgstr "დაეთანხმეთ შეთანხმებას ამ გაფართოების ლიცენზიის შესახებ \\'დათანხმება\\' ღილაკზე დაჭერით."
-#. pW8s
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -274,7 +248,6 @@ msgctxt ""
msgid "~Scroll Down"
msgstr "~ქვემოთ გადაადგილება"
-#. )$3l
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -284,7 +257,6 @@ msgctxt ""
msgid "Accept"
msgstr "მიღება"
-#. h7-`
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -294,7 +266,6 @@ msgctxt ""
msgid "Decline"
msgstr "უარყოფა"
-#. ?Bqn
#: dp_gui_dialog.src
#, fuzzy
msgctxt ""
@@ -304,7 +275,6 @@ msgctxt ""
msgid "Extension Software License Agreement"
msgstr "შეთანხმება გაფართოების პროგრამის ლიცენზიის შესახებ"
-#. T!U?
#: dp_gui_dialog.src
#, fuzzy
msgctxt ""
@@ -315,7 +285,6 @@ msgctxt ""
msgid "Close"
msgstr "დახურვა"
-#. D\Lp
#: dp_gui_dialog.src
#, fuzzy
msgctxt ""
@@ -325,7 +294,6 @@ msgctxt ""
msgid "Extension Software License Agreement"
msgstr "შეთანხმება გაფართოების პროგრამის ლიცენზიის შესახებ"
-#. r:LX
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -337,7 +305,6 @@ msgid ""
"Click \\'Cancel\\' to stop the installation."
msgstr ""
-#. .AYw
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -349,7 +316,6 @@ msgid ""
"Click \\'Cancel\\' to stop removing the extension."
msgstr ""
-#. D_!C
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -361,7 +327,6 @@ msgid ""
"Click \\'Cancel\\' to stop removing the extension."
msgstr ""
-#. BUHX
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -373,7 +338,6 @@ msgid ""
"Click \\'Cancel\\' to stop enabling the extension."
msgstr ""
-#. ,`QG
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -385,7 +349,6 @@ msgid ""
"Click \\'Cancel\\' to stop disabling the extension."
msgstr ""
-#. %hVk
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -394,7 +357,6 @@ msgctxt ""
msgid "The extension \\'%Name\\' does not work on this computer."
msgstr ""
-#. `a+p
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -404,7 +366,6 @@ msgctxt ""
msgid "Checking..."
msgstr ""
-#. hka,
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -414,7 +375,6 @@ msgctxt ""
msgid "~Available extension updates"
msgstr ""
-#. vUpW
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -424,7 +384,6 @@ msgctxt ""
msgid "~Show all updates"
msgstr ""
-#. _4Io
#: dp_gui_updatedialog.src
#, fuzzy
msgctxt ""
@@ -449,7 +408,6 @@ msgstr ""
"#-#-#-#-# contnr.po (PACKAGE VERSION) #-#-#-#-#\n"
"აღწერილობა"
-#. [wV,
#: dp_gui_updatedialog.src
#, fuzzy
msgctxt ""
@@ -460,7 +418,6 @@ msgctxt ""
msgid "Publisher:"
msgstr "გამომცემი"
-#. 6iXl
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -470,7 +427,6 @@ msgctxt ""
msgid "What is new:"
msgstr ""
-#. KrCa
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -480,7 +436,6 @@ msgctxt ""
msgid "Release Notes"
msgstr ""
-#. _e-8
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -490,7 +445,6 @@ msgctxt ""
msgid "~Install"
msgstr ""
-#. EFhl
#: dp_gui_updatedialog.src
#, fuzzy
msgctxt ""
@@ -501,7 +455,6 @@ msgctxt ""
msgid "Close"
msgstr "დახურვა"
-#. qn?R
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -511,7 +464,6 @@ msgctxt ""
msgid "Error"
msgstr "შეცდომა"
-#. OU;g
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -521,7 +473,6 @@ msgctxt ""
msgid "No new updates are available."
msgstr ""
-#. EKIX
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -531,7 +482,6 @@ msgctxt ""
msgid "No installable updates are available. To see ignored or disabled updates, mark the check box 'Show all updates'."
msgstr ""
-#. Qw.N
#: dp_gui_updatedialog.src
#, fuzzy
msgctxt ""
@@ -542,7 +492,6 @@ msgctxt ""
msgid "An error occurred:"
msgstr "მოხდა შეცდომა."
-#. )des
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -552,7 +501,6 @@ msgctxt ""
msgid "Unknown error."
msgstr ""
-#. ,G^c
#: dp_gui_updatedialog.src
#, fuzzy
msgctxt ""
@@ -563,7 +511,6 @@ msgctxt ""
msgid "No more details are available for this update."
msgstr "შენიშვნა: ფონტები ხელმისაწყობია მხოლოდ პროგრამებისთვის."
-#. Bxze
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -573,7 +520,6 @@ msgctxt ""
msgid "The extension cannot be updated because:"
msgstr ""
-#. bi+m
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -583,7 +529,6 @@ msgctxt ""
msgid "Required %PRODUCTNAME version doesn't match:"
msgstr ""
-#. HBWQ
#: dp_gui_updatedialog.src
#, fuzzy
msgctxt ""
@@ -594,7 +539,6 @@ msgctxt ""
msgid "You have %PRODUCTNAME %VERSION"
msgstr "%PRODUCTNAME %PRODUCTVERSION"
-#. 0NEU
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -604,7 +548,6 @@ msgctxt ""
msgid "browser based update"
msgstr ""
-#. I_7{
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -614,7 +557,6 @@ msgctxt ""
msgid "Version"
msgstr "ვერსია"
-#. uR^i
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -624,7 +566,6 @@ msgctxt ""
msgid "Ignore this Update"
msgstr ""
-#. -GBE
#: dp_gui_updatedialog.src
#, fuzzy
msgctxt ""
@@ -635,7 +576,6 @@ msgctxt ""
msgid "Ignore all Updates"
msgstr "ორმაგი ჰარეს უგულვებელყოფა"
-#. PR1b
#: dp_gui_updatedialog.src
#, fuzzy
msgctxt ""
@@ -650,7 +590,6 @@ msgstr ""
"#-#-#-#-# onlineupdate.po (PACKAGE VERSION) #-#-#-#-#\n"
"განახლება კავშირის რეჟიმში"
-#. 7Lu#
#: dp_gui_updatedialog.src
#, fuzzy
msgctxt ""
@@ -661,7 +600,6 @@ msgctxt ""
msgid "This update will be ignored.\n"
msgstr "განახლების შენახვა ვერ ხერხდება."
-#. vPxV
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -670,7 +608,6 @@ msgctxt ""
msgid "Extension Update"
msgstr ""
-#. O;8G
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -682,7 +619,6 @@ msgid ""
"Click \\'Cancel\\' to stop updating the extensions."
msgstr ""
-#. v0Pp
#: dp_gui_dependencydialog.src
msgctxt ""
"dp_gui_dependencydialog.src\n"
@@ -696,7 +632,6 @@ msgstr ""
"ამ გაფართოების დაყენება შეუძლებელია ვინაიდან არ არის შესრულებული სისტემაზე\n"
"დამოკიდებული შემდეგი მოდულები:"
-#. gH@N
#: dp_gui_dependencydialog.src
msgctxt ""
"dp_gui_dependencydialog.src\n"
@@ -705,7 +640,6 @@ msgctxt ""
msgid "System dependencies check"
msgstr "სისტემაზე დამოკიდებული მოდულების შემოწმება"
-#. S/I0
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -715,7 +649,6 @@ msgctxt ""
msgid "Downloading extensions..."
msgstr ""
-#. N(AN
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -725,7 +658,6 @@ msgctxt ""
msgid "Result"
msgstr "შედეგები"
-#. mNYs
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -735,7 +667,6 @@ msgctxt ""
msgid "OK"
msgstr "კარგი"
-#. (iRd
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -745,7 +676,6 @@ msgctxt ""
msgid "Cancel Update"
msgstr ""
-#. ac=/
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -755,7 +685,6 @@ msgctxt ""
msgid "Installing extensions..."
msgstr ""
-#. EtdK
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -765,7 +694,6 @@ msgctxt ""
msgid "Installation finished"
msgstr ""
-#. Y.qI
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -775,7 +703,6 @@ msgctxt ""
msgid "No errors."
msgstr ""
-#. DsXR
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -785,7 +712,6 @@ msgctxt ""
msgid "Error while downloading extension %NAME. "
msgstr ""
-#. s.gj
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -795,7 +721,6 @@ msgctxt ""
msgid "The error message is: "
msgstr ""
-#. [\]=
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -805,7 +730,6 @@ msgctxt ""
msgid "Error while installing extension %NAME. "
msgstr ""
-#. .{M/
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -815,7 +739,6 @@ msgctxt ""
msgid "The license agreement for extension %NAME was refused. "
msgstr ""
-#. SNOs
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -825,7 +748,6 @@ msgctxt ""
msgid "The extension will not be installed."
msgstr ""
-#. e$)a
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -834,7 +756,6 @@ msgctxt ""
msgid "Download and Installation"
msgstr ""
-#. HBhD
#: dp_gui_versionboxes.src
msgctxt ""
"dp_gui_versionboxes.src\n"
@@ -847,7 +768,6 @@ msgid ""
"Click \\'Cancel\\' to stop the installation."
msgstr ""
-#. r9;l
#: dp_gui_versionboxes.src
msgctxt ""
"dp_gui_versionboxes.src\n"
@@ -860,7 +780,6 @@ msgid ""
"Click \\'Cancel\\' to stop the installation."
msgstr ""
-#. :)M6
#: dp_gui_versionboxes.src
msgctxt ""
"dp_gui_versionboxes.src\n"
@@ -873,7 +792,6 @@ msgid ""
"Click \\'Cancel\\' to stop the installation."
msgstr ""
-#. 5+YJ
#: dp_gui_versionboxes.src
msgctxt ""
"dp_gui_versionboxes.src\n"
@@ -886,7 +804,6 @@ msgid ""
"Click \\'Cancel\\' to stop the installation."
msgstr ""
-#. hr,;
#: dp_gui_versionboxes.src
msgctxt ""
"dp_gui_versionboxes.src\n"
@@ -899,7 +816,6 @@ msgid ""
"Click \\'Cancel\\' to stop the installation."
msgstr ""
-#. BQ2$
#: dp_gui_versionboxes.src
msgctxt ""
"dp_gui_versionboxes.src\n"
@@ -912,7 +828,6 @@ msgid ""
"Click \\'Cancel\\' to stop the installation."
msgstr ""
-#. Q#=\
#: dp_gui_dialog2.src
msgctxt ""
"dp_gui_dialog2.src\n"
@@ -922,7 +837,6 @@ msgctxt ""
msgid "%PRODUCTNAME has been updated to a new version. Some installed %PRODUCTNAME extensions are not compatible with this version and need to be updated before they can be used."
msgstr ""
-#. `PVo
#: dp_gui_dialog2.src
msgctxt ""
"dp_gui_dialog2.src\n"
@@ -932,7 +846,6 @@ msgctxt ""
msgid "Adding %EXTENSION_NAME"
msgstr ""
-#. 3rgH
#: dp_gui_dialog2.src
msgctxt ""
"dp_gui_dialog2.src\n"
@@ -942,7 +855,6 @@ msgctxt ""
msgid "Check for ~Updates..."
msgstr "~განახლებაზე შემოწმება..."
-#. }LZ[
#: dp_gui_dialog2.src
msgctxt ""
"dp_gui_dialog2.src\n"
@@ -952,7 +864,6 @@ msgctxt ""
msgid "Disable all"
msgstr ""
-#. p:Gn
#: dp_gui_dialog2.src
msgctxt ""
"dp_gui_dialog2.src\n"
@@ -961,7 +872,6 @@ msgctxt ""
msgid "Extension Update Required"
msgstr ""
-#. *iQV
#: dp_gui_dialog2.src
msgctxt ""
"dp_gui_dialog2.src\n"
diff --git a/source/ka/desktop/source/deployment/manager.po b/source/ka/desktop/source/deployment/manager.po
index 6fc7076b87c..c68195a0f2d 100644
--- a/source/ka/desktop/source/deployment/manager.po
+++ b/source/ka/desktop/source/deployment/manager.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. %IZC
#: dp_manager.src
msgctxt ""
"dp_manager.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Copying: "
msgstr "კოპირება:"
-#. L/\_
#: dp_manager.src
msgctxt ""
"dp_manager.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Error while adding: "
msgstr "შეცდომა ჩამატებისას:"
-#. kAc8
#: dp_manager.src
msgctxt ""
"dp_manager.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Error while removing: "
msgstr "შეცდომა ამოღებისას:"
-#. -+ai
#: dp_manager.src
msgctxt ""
"dp_manager.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Extension has already been added: "
msgstr "გაფართოება უკვე დამატებულია:"
-#. UZM;
#: dp_manager.src
msgctxt ""
"dp_manager.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "There is no such extension deployed: "
msgstr "ასეთი გაფართოება არ არის გაშლილი:"
-#. W\gZ
#: dp_manager.src
msgctxt ""
"dp_manager.src\n"
diff --git a/source/ka/desktop/source/deployment/misc.po b/source/ka/desktop/source/deployment/misc.po
index 939bca09867..bf74a40fc83 100644
--- a/source/ka/desktop/source/deployment/misc.po
+++ b/source/ka/desktop/source/deployment/misc.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-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-11-26 02:59+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. e]=d
#: dp_misc.src
msgctxt ""
"dp_misc.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Unknown"
msgstr "უცნობი"
-#. F{be
#: dp_misc.src
msgctxt ""
"dp_misc.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Extension requires at least OpenOffice.org reference version %VERSION"
msgstr ""
-#. 4sPj
#: dp_misc.src
msgctxt ""
"dp_misc.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Extension does not support OpenOffice.org reference versions greater than %VERSION"
msgstr ""
-#. qt\U
#: dp_misc.src
msgctxt ""
"dp_misc.src\n"
diff --git a/source/ka/desktop/source/deployment/registry.po b/source/ka/desktop/source/deployment/registry.po
index f0eddf1c9e8..9911e2144cd 100644
--- a/source/ka/desktop/source/deployment/registry.po
+++ b/source/ka/desktop/source/deployment/registry.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. $cpn
#: dp_registry.src
msgctxt ""
"dp_registry.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Enabling: "
msgstr "ჩართვა:"
-#. G/D(
#: dp_registry.src
msgctxt ""
"dp_registry.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Disabling: "
msgstr "გამორთვა:"
-#. %Y)g
#: dp_registry.src
msgctxt ""
"dp_registry.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Cannot detect media-type: "
msgstr "მედია ტიპის ამოცნობა შეუძლებელია: "
-#. VeLI
#: dp_registry.src
msgctxt ""
"dp_registry.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "This media-type is not supported: "
msgstr "ეს მედია-ტიპი არაა მხარდაჭერილი: "
-#. AMk0
#: dp_registry.src
msgctxt ""
"dp_registry.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "An error occurred while enabling: "
msgstr "ჩართვისას მოხდა შეცდომა:"
-#. bDCE
#: dp_registry.src
msgctxt ""
"dp_registry.src\n"
diff --git a/source/ka/desktop/source/deployment/registry/component.po b/source/ka/desktop/source/deployment/registry/component.po
index 95ae6c961b7..bd0e2df0070 100644
--- a/source/ka/desktop/source/deployment/registry/component.po
+++ b/source/ka/desktop/source/deployment/registry/component.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-11 23:18+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. `$\G
#: dp_component.src
msgctxt ""
"dp_component.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "UNO Dynamic Library Component"
msgstr "UNO დინამიკური ბიბლიოთეკის კომპონენტი"
-#. 3QYD
#: dp_component.src
msgctxt ""
"dp_component.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "UNO Java Component"
msgstr "UNO Java-ს კომპონენტი"
-#. 2xq{
#: dp_component.src
msgctxt ""
"dp_component.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "UNO Python Component"
msgstr "UNO Python-ის კომპონენტი"
-#. ;TgS
#: dp_component.src
#, fuzzy
msgctxt ""
@@ -52,7 +48,6 @@ msgctxt ""
msgid "UNO Components"
msgstr "UNO Java-ს კომპონენტი"
-#. 8KR6
#: dp_component.src
msgctxt ""
"dp_component.src\n"
@@ -61,7 +56,6 @@ msgctxt ""
msgid "UNO RDB Type Library"
msgstr "UNO RBD-ის ტიპის ბიბლიოთეკა"
-#. rD`-
#: dp_component.src
msgctxt ""
"dp_component.src\n"
diff --git a/source/ka/desktop/source/deployment/registry/configuration.po b/source/ka/desktop/source/deployment/registry/configuration.po
index 872d83df1c1..54779bb3be8 100644
--- a/source/ka/desktop/source/deployment/registry/configuration.po
+++ b/source/ka/desktop/source/deployment/registry/configuration.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. p]HL
#: dp_configuration.src
msgctxt ""
"dp_configuration.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Configuration Schema"
msgstr "კონფიგურაციის სქემა"
-#. A5Gt
#: dp_configuration.src
msgctxt ""
"dp_configuration.src\n"
diff --git a/source/ka/desktop/source/deployment/registry/help.po b/source/ka/desktop/source/deployment/registry/help.po
index 5c38900a554..93ab0c96b9e 100644
--- a/source/ka/desktop/source/deployment/registry/help.po
+++ b/source/ka/desktop/source/deployment/registry/help.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. `3-+
#: dp_help.src
msgctxt ""
"dp_help.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Help"
msgstr "დახმარება"
-#. .hUu
#: dp_help.src
msgctxt ""
"dp_help.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "The extension cannot be installed because:\n"
msgstr ""
-#. 4P[r
#: dp_help.src
msgctxt ""
"dp_help.src\n"
diff --git a/source/ka/desktop/source/deployment/registry/package.po b/source/ka/desktop/source/deployment/registry/package.po
index 72a1bca6f02..35e737165a6 100644
--- a/source/ka/desktop/source/deployment/registry/package.po
+++ b/source/ka/desktop/source/deployment/registry/package.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-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. y7B0
#: dp_package.src
msgctxt ""
"dp_package.src\n"
diff --git a/source/ka/desktop/source/deployment/registry/script.po b/source/ka/desktop/source/deployment/registry/script.po
index 24b3c0fb599..f2143732846 100644
--- a/source/ka/desktop/source/deployment/registry/script.po
+++ b/source/ka/desktop/source/deployment/registry/script.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. csc-
#: dp_script.src
msgctxt ""
"dp_script.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "%PRODUCTNAME Basic Library"
msgstr "%PRODUCTNAME საბაზო ბიბლიოთეკა"
-#. IAA3
#: dp_script.src
msgctxt ""
"dp_script.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Dialog Library"
msgstr "დიალოგური ბიბლიოთეკა"
-#. C(Vl
#: dp_script.src
msgctxt ""
"dp_script.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "The library name could not be determined."
msgstr "ბიბლიოთეკის სახელი ვერ განისაზღვრა."
-#. G**:
#: dp_script.src
msgctxt ""
"dp_script.src\n"
diff --git a/source/ka/desktop/source/deployment/registry/sfwk.po b/source/ka/desktop/source/deployment/registry/sfwk.po
index 65dd0d61452..77fbe2c2729 100644
--- a/source/ka/desktop/source/deployment/registry/sfwk.po
+++ b/source/ka/desktop/source/deployment/registry/sfwk.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. lAa`
#: dp_sfwk.src
msgctxt ""
"dp_sfwk.src\n"
diff --git a/source/ka/desktop/source/deployment/unopkg.po b/source/ka/desktop/source/deployment/unopkg.po
index 3e0206bfd15..c45f0bd444f 100644
--- a/source/ka/desktop/source/deployment/unopkg.po
+++ b/source/ka/desktop/source/deployment/unopkg.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ;TPh
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Extension Software License Agreement of $NAME:"
msgstr ""
-#. 44FH
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Read the complete License Agreement displayed above. Accept the License Agreement by typing \"yes\" on the console then press the Return key. Type \"no\" to decline and to abort the extension setup."
msgstr "წაიკითხეთ ზემოთ ნაჩვენები სრული სალიცენზიო შეთანხმება. დაეთანხმეთ სალიცენზიო შეთანხმებას \"yes\" აკრეფით კონსოლზე და შემდეგ დააჭირეთ დაბრუნების ღილაკს. აკრიფეთ \"no\" რათა თქვათ უარი და შეწყვითოთ გაფართოების ინსტალაცია."
-#. 805f
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "[Enter \"yes\" or \"no\"]:"
msgstr "[აკრიფეთ \"yes\" ან \"no\"]:"
-#. B9~w
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Your input was not correct. Please enter \"yes\" or \"no\":"
msgstr "თქვეს მიერ შეყვანილი მონაცემები არასწორია. გთხოვთ, შეიყვანოთ \"yes\" ან \"no\":"
-#. %T)~
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "YES"
msgstr "YES"
-#. XAaL
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Y"
msgstr "დ"
-#. [qZ4
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "NO"
msgstr "NO"
-#. !,ds
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "N"
msgstr "ა"
-#. |bKo
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "unopkg cannot be started. The lock file indicates it as already running. If this does not apply, delete the lock file at:"
msgstr ""
-#. WrUl
#: unopkg.src
#, fuzzy
msgctxt ""
diff --git a/source/ka/desktop/uiconfig/ui.po b/source/ka/desktop/uiconfig/ui.po
index 6a445ecae21..3ab6c86a5c8 100644
--- a/source/ka/desktop/uiconfig/ui.po
+++ b/source/ka/desktop/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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-11-17 19:02+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,91 +14,81 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. :oeY
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"ExtensionManagerDialog\n"
"title\n"
"string.text"
msgid "Extension Manager"
-msgstr "გაფართოების მენეჯერი"
+msgstr ""
-#. )+V:
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"add\n"
"label\n"
"string.text"
msgid "Add..."
-msgstr "დამატება..."
+msgstr ""
-#. 7biP
-#: ExtensionManager.ui
-#, fuzzy
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"update\n"
"label\n"
"string.text"
msgid "Check for updates..."
-msgstr "~განახლებაზე შემოწმება..."
+msgstr ""
-#. ;U^(
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"shared\n"
"label\n"
"string.text"
msgid "Shared"
msgstr ""
-#. .O_p
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"user\n"
"label\n"
"string.text"
msgid "User"
-msgstr "მომხმარებელი"
+msgstr ""
-#. o[/Q
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"bundled\n"
"label\n"
"string.text"
msgid "Installation"
msgstr ""
-#. OkPj
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "Type of Extension"
msgstr ""
-#. `O^B
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"progressft\n"
"label\n"
"string.text"
msgid "Adding %EXTENSION_NAME"
msgstr ""
-#. s9*(
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"getextensions\n"
"label\n"
"string.text"
diff --git a/source/ka/dictionaries/af_ZA.po b/source/ka/dictionaries/af_ZA.po
index e30fc69c0a3..95be7a4ed8a 100644
--- a/source/ka/dictionaries/af_ZA.po
+++ b/source/ka/dictionaries/af_ZA.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:46+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. M*jg
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/an_ES.po b/source/ka/dictionaries/an_ES.po
index 4bbad2840a5..257efa2e85b 100644
--- a/source/ka/dictionaries/an_ES.po
+++ b/source/ka/dictionaries/an_ES.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-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. gb;t
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/ar.po b/source/ka/dictionaries/ar.po
index a50eacc6f61..b854890fe4a 100644
--- a/source/ka/dictionaries/ar.po
+++ b/source/ka/dictionaries/ar.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: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ys!9
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/be_BY.po b/source/ka/dictionaries/be_BY.po
index 742998c484b..dff5bae8c6b 100644
--- a/source/ka/dictionaries/be_BY.po
+++ b/source/ka/dictionaries/be_BY.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. [4y]
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/bg_BG.po b/source/ka/dictionaries/bg_BG.po
index 7619a151bb3..b56065d2f4d 100644
--- a/source/ka/dictionaries/bg_BG.po
+++ b/source/ka/dictionaries/bg_BG.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:46+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. dq%%
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/bn_BD.po b/source/ka/dictionaries/bn_BD.po
index 0e83c76eb3a..3219611f5fd 100644
--- a/source/ka/dictionaries/bn_BD.po
+++ b/source/ka/dictionaries/bn_BD.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. bojQ
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/br_FR.po b/source/ka/dictionaries/br_FR.po
index 84b5df8f97d..b24e7210d93 100644
--- a/source/ka/dictionaries/br_FR.po
+++ b/source/ka/dictionaries/br_FR.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: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 9Xa=
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/ca.po b/source/ka/dictionaries/ca.po
index 21f28abc9c0..42b07ae946f 100644
--- a/source/ka/dictionaries/ca.po
+++ b/source/ka/dictionaries/ca.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:46+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. =.lo
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/cs_CZ.po b/source/ka/dictionaries/cs_CZ.po
index 7712dd505ae..69b6a58d304 100644
--- a/source/ka/dictionaries/cs_CZ.po
+++ b/source/ka/dictionaries/cs_CZ.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Blot
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/da_DK.po b/source/ka/dictionaries/da_DK.po
index ea980d823a1..6c33324b4ab 100644
--- a/source/ka/dictionaries/da_DK.po
+++ b/source/ka/dictionaries/da_DK.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: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. \}Cs
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/de.po b/source/ka/dictionaries/de.po
index ffebda90ad4..6c2ac6c9c10 100644
--- a/source/ka/dictionaries/de.po
+++ b/source/ka/dictionaries/de.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 8oqA
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/el_GR.po b/source/ka/dictionaries/el_GR.po
index 8ce6e3b399a..5868c4ef0e5 100644
--- a/source/ka/dictionaries/el_GR.po
+++ b/source/ka/dictionaries/el_GR.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Onq%
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/en.po b/source/ka/dictionaries/en.po
index 7d2a8982b9e..b801cad4701 100644
--- a/source/ka/dictionaries/en.po
+++ b/source/ka/dictionaries/en.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:44+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. XeP\
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/en/dialog.po b/source/ka/dictionaries/en/dialog.po
index 1903b4fc124..ba0ef61936e 100644
--- a/source/ka/dictionaries/en/dialog.po
+++ b/source/ka/dictionaries/en/dialog.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 9e.W
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Grammar checking"
msgstr ""
-#. Q@$;
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "Check more grammar errors."
msgstr ""
-#. HoPw
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "Possible mistakes"
msgstr ""
-#. 3rmv
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -50,7 +46,6 @@ msgctxt ""
msgid "Check missing capitalization of sentences."
msgstr ""
-#. Z3Ni
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -59,7 +54,6 @@ msgctxt ""
msgid "Capitalization"
msgstr ""
-#. 9l$4
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -68,7 +62,6 @@ msgctxt ""
msgid "Check repeated words."
msgstr ""
-#. M[VX
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -77,7 +70,6 @@ msgctxt ""
msgid "Word duplication"
msgstr ""
-#. O#JY
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -86,7 +78,6 @@ msgctxt ""
msgid "Check missing or extra parentheses and quotation marks."
msgstr ""
-#. 0[^A
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -95,7 +86,6 @@ msgctxt ""
msgid "Parentheses"
msgstr ""
-#. PpHs
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -104,7 +94,6 @@ msgctxt ""
msgid "Punctuation"
msgstr ""
-#. ]@g;
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -113,7 +102,6 @@ msgctxt ""
msgid "Check single spaces between words."
msgstr ""
-#. sq8g
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -122,7 +110,6 @@ msgctxt ""
msgid "Word spacing"
msgstr ""
-#. #L*f
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -131,7 +118,6 @@ msgctxt ""
msgid "Force unspaced em dash instead of spaced en dash."
msgstr ""
-#. /0jw
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -140,7 +126,6 @@ msgctxt ""
msgid "Em dash"
msgstr ""
-#. ]mQU
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -149,7 +134,6 @@ msgctxt ""
msgid "Force spaced en dash instead of unspaced em dash."
msgstr ""
-#. (`[R
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -158,7 +142,6 @@ msgctxt ""
msgid "En dash"
msgstr ""
-#. H5p]
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -167,7 +150,6 @@ msgctxt ""
msgid "Check double quotation marks: \"x\" → “x”"
msgstr ""
-#. ?I09
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -176,7 +158,6 @@ msgctxt ""
msgid "Quotation marks"
msgstr ""
-#. 1c-\
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -185,7 +166,6 @@ msgctxt ""
msgid "Check true multiplication sign: 5x5 → 5×5"
msgstr ""
-#. iHJD
#: en_en_US.properties
#, fuzzy
msgctxt ""
@@ -195,7 +175,6 @@ msgctxt ""
msgid "Multiplication sign"
msgstr "გამრავლება (x)"
-#. ck+~
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -204,7 +183,6 @@ msgctxt ""
msgid "Check single spaces between sentences."
msgstr ""
-#. 096i
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -213,7 +191,6 @@ msgctxt ""
msgid "Sentence spacing"
msgstr ""
-#. PXO.
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -222,7 +199,6 @@ msgctxt ""
msgid "Check more than two extra space characters between words and sentences."
msgstr ""
-#. HW6K
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -231,7 +207,6 @@ msgctxt ""
msgid "More spaces"
msgstr ""
-#. _bd.
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -240,7 +215,6 @@ msgctxt ""
msgid "Change hyphen characters to real minus signs."
msgstr ""
-#. 6wpz
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -249,7 +223,6 @@ msgctxt ""
msgid "Minus sign"
msgstr ""
-#. [P3;
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -258,7 +231,6 @@ msgctxt ""
msgid "Change typewriter apostrophe, single quotation marks and correct double primes."
msgstr ""
-#. WGfe
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -267,7 +239,6 @@ msgctxt ""
msgid "Apostrophe"
msgstr ""
-#. #i/A
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -276,7 +247,6 @@ msgctxt ""
msgid "Change three dots with ellipsis."
msgstr ""
-#. x8=~
#: en_en_US.properties
#, fuzzy
msgctxt ""
@@ -286,7 +256,6 @@ msgctxt ""
msgid "Ellipsis"
msgstr "ელიპსები"
-#. BXZ|
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -295,7 +264,6 @@ msgctxt ""
msgid "Others"
msgstr "დანარჩენი"
-#. i7h_
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -304,7 +272,6 @@ msgctxt ""
msgid "Measurement conversion from °F, mph, ft, in, lb, gal and miles."
msgstr ""
-#. D=QB
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -313,7 +280,6 @@ msgctxt ""
msgid "Convert to metric (°C, km/h, m, kg, l)"
msgstr ""
-#. 65`Q
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -322,7 +288,6 @@ msgctxt ""
msgid "Common (1000000 → 1,000,000) or ISO (1000000 → 1 000 000)."
msgstr ""
-#. ZQ.i
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -331,7 +296,6 @@ msgctxt ""
msgid "Thousand separation of large numbers"
msgstr ""
-#. %]x4
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -340,7 +304,6 @@ msgctxt ""
msgid "Measurement conversion from °C; km/h; cm, m, km; kg; l."
msgstr ""
-#. h%;X
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
diff --git a/source/ka/dictionaries/en/dialog/registry/data/org/openoffice/Office.po b/source/ka/dictionaries/en/dialog/registry/data/org/openoffice/Office.po
index d7f5888ddbb..28bf03cc485 100644
--- a/source/ka/dictionaries/en/dialog/registry/data/org/openoffice/Office.po
+++ b/source/ka/dictionaries/en/dialog/registry/data/org/openoffice/Office.po
@@ -1,10 +1,9 @@
#. extracted from dictionaries/en/dialog/registry/data/org/openoffice/Office
-#, fuzzy
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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:14+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. PR\r
#: OptionsDialog.xcu
msgctxt ""
"OptionsDialog.xcu\n"
@@ -26,7 +24,6 @@ msgctxt ""
msgid "Dictionaries"
msgstr "ლექსიკონები"
-#. _5nX
#: OptionsDialog.xcu
msgctxt ""
"OptionsDialog.xcu\n"
diff --git a/source/ka/dictionaries/es.po b/source/ka/dictionaries/es.po
index f51b6dacf9a..5e852c85810 100644
--- a/source/ka/dictionaries/es.po
+++ b/source/ka/dictionaries/es.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-11-17 19:02+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. }r*O
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/et_EE.po b/source/ka/dictionaries/et_EE.po
index 77bad033707..f0ba90e43f1 100644
--- a/source/ka/dictionaries/et_EE.po
+++ b/source/ka/dictionaries/et_EE.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. N8[E
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/fr_FR.po b/source/ka/dictionaries/fr_FR.po
index d48d92dc351..6a9a88b22e4 100644
--- a/source/ka/dictionaries/fr_FR.po
+++ b/source/ka/dictionaries/fr_FR.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 8=ws
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/gd_GB.po b/source/ka/dictionaries/gd_GB.po
index 4bb15344778..b388333890a 100644
--- a/source/ka/dictionaries/gd_GB.po
+++ b/source/ka/dictionaries/gd_GB.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 5C,5
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/gl.po b/source/ka/dictionaries/gl.po
index 2132c048a45..7b1d218be58 100644
--- a/source/ka/dictionaries/gl.po
+++ b/source/ka/dictionaries/gl.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:44+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Um]a
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/gu_IN.po b/source/ka/dictionaries/gu_IN.po
index 339551e9e4e..7827b215a3d 100644
--- a/source/ka/dictionaries/gu_IN.po
+++ b/source/ka/dictionaries/gu_IN.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. oa/$
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/he_IL.po b/source/ka/dictionaries/he_IL.po
index dbb13977a10..f88cf1d269b 100644
--- a/source/ka/dictionaries/he_IL.po
+++ b/source/ka/dictionaries/he_IL.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 0$d\
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/hi_IN.po b/source/ka/dictionaries/hi_IN.po
index 0f35fb2bb66..335254f3a8f 100644
--- a/source/ka/dictionaries/hi_IN.po
+++ b/source/ka/dictionaries/hi_IN.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ?Zn,
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/hr_HR.po b/source/ka/dictionaries/hr_HR.po
index 0591fe9cbfe..c90d68a118f 100644
--- a/source/ka/dictionaries/hr_HR.po
+++ b/source/ka/dictionaries/hr_HR.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. HRhW
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/hu_HU.po b/source/ka/dictionaries/hu_HU.po
index 1cb0c6a77a5..cb5f08ae510 100644
--- a/source/ka/dictionaries/hu_HU.po
+++ b/source/ka/dictionaries/hu_HU.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: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:44+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. dBOo
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/hu_HU/dialog.po b/source/ka/dictionaries/hu_HU/dialog.po
index 141a8c173f2..5cb3cc1e55b 100644
--- a/source/ka/dictionaries/hu_HU/dialog.po
+++ b/source/ka/dictionaries/hu_HU/dialog.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-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. (yO7
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Spelling"
msgstr "მარლთწერა"
-#. tD_{
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "Capitalization"
msgstr ""
-#. 9QT2
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "Parentheses"
msgstr ""
-#. WnVo
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -50,7 +46,6 @@ msgctxt ""
msgid "Word parts of compounds"
msgstr ""
-#. +*+#
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -59,7 +54,6 @@ msgctxt ""
msgid "Comma usage"
msgstr ""
-#. PErZ
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -68,7 +62,6 @@ msgctxt ""
msgid "Proofreading"
msgstr ""
-#. T.I:
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -77,7 +70,6 @@ msgctxt ""
msgid "Style checking"
msgstr ""
-#. sU-l
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -86,7 +78,6 @@ msgctxt ""
msgid "Underline typo-like compound words"
msgstr ""
-#. I/P9
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -95,7 +86,6 @@ msgctxt ""
msgid "Underline all generated compound words"
msgstr ""
-#. 6+J\
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -104,7 +94,6 @@ msgctxt ""
msgid "Possible mistakes"
msgstr ""
-#. 53F}
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -113,7 +102,6 @@ msgctxt ""
msgid "Consistency of money amounts"
msgstr ""
-#. X~\N
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -122,7 +110,6 @@ msgctxt ""
msgid "Word duplication"
msgstr ""
-#. #NB5
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -131,7 +118,6 @@ msgctxt ""
msgid "Word duplication"
msgstr ""
-#. .b*#
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -140,7 +126,6 @@ msgctxt ""
msgid "Duplication within clauses"
msgstr ""
-#. 3z2o
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -149,7 +134,6 @@ msgctxt ""
msgid "Duplication within sentences"
msgstr ""
-#. =^q+
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -158,7 +142,6 @@ msgctxt ""
msgid "Allow previous checkings with affixes"
msgstr ""
-#. `xRF
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -167,7 +150,6 @@ msgctxt ""
msgid "Thousand separation of numbers"
msgstr ""
-#. kZht
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -176,7 +158,6 @@ msgctxt ""
msgid "Typography"
msgstr ""
-#. YD{P
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -185,7 +166,6 @@ msgctxt ""
msgid "Quotation marks"
msgstr ""
-#. 7x;$
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -194,7 +174,6 @@ msgctxt ""
msgid "Apostrophe"
msgstr ""
-#. !.--
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -203,7 +182,6 @@ msgctxt ""
msgid "En dash"
msgstr ""
-#. J;9p
#: hu_HU_en_US.properties
#, fuzzy
msgctxt ""
@@ -213,7 +191,6 @@ msgctxt ""
msgid "Ellipsis"
msgstr "ელიპსები"
-#. sEY|
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -222,7 +199,6 @@ msgctxt ""
msgid "Ligature suggestion"
msgstr ""
-#. VEY2
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -231,7 +207,6 @@ msgctxt ""
msgid "Underline ligatures"
msgstr ""
-#. V%oS
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -240,7 +215,6 @@ msgctxt ""
msgid "Fractions"
msgstr "წილადები"
-#. .WP!
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -249,7 +223,6 @@ msgctxt ""
msgid "Thin space"
msgstr ""
-#. ^7+^
#: hu_HU_en_US.properties
#, fuzzy
msgctxt ""
@@ -259,7 +232,6 @@ msgctxt ""
msgid "Double spaces"
msgstr "ორმაგი ფიგურული ფრჩხილი"
-#. Au8_
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -268,7 +240,6 @@ msgctxt ""
msgid "More spaces"
msgstr ""
-#. $g\3
#: hu_HU_en_US.properties
#, fuzzy
msgctxt ""
@@ -278,7 +249,6 @@ msgctxt ""
msgid "Indices"
msgstr "ინვოისები"
-#. Rhh5
#: hu_HU_en_US.properties
#, fuzzy
msgctxt ""
@@ -288,7 +258,6 @@ msgctxt ""
msgid "Minus"
msgstr "მენიუები"
-#. (bpf
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -297,7 +266,6 @@ msgctxt ""
msgid "Measurements"
msgstr ""
-#. 8dyI
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
diff --git a/source/ka/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po b/source/ka/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po
index 4b33687a090..8d426a153eb 100644
--- a/source/ka/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po
+++ b/source/ka/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po
@@ -1,10 +1,9 @@
#. extracted from dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office
-#, fuzzy
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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:14+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. *[P5
#: OptionsDialog.xcu
msgctxt ""
"OptionsDialog.xcu\n"
@@ -26,7 +24,6 @@ msgctxt ""
msgid "Dictionaries"
msgstr "ლექსიკონები"
-#. (=QA
#: OptionsDialog.xcu
msgctxt ""
"OptionsDialog.xcu\n"
diff --git a/source/ka/dictionaries/it_IT.po b/source/ka/dictionaries/it_IT.po
index e207af3ba1f..2e9175d8d53 100644
--- a/source/ka/dictionaries/it_IT.po
+++ b/source/ka/dictionaries/it_IT.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 3)CA
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/ku_TR.po b/source/ka/dictionaries/ku_TR.po
index 4e64de06f47..53d8b00860e 100644
--- a/source/ka/dictionaries/ku_TR.po
+++ b/source/ka/dictionaries/ku_TR.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. S-Qn
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/lt_LT.po b/source/ka/dictionaries/lt_LT.po
index c0e0cc771a4..c20e2e9c5de 100644
--- a/source/ka/dictionaries/lt_LT.po
+++ b/source/ka/dictionaries/lt_LT.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. tL*^
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/lv_LV.po b/source/ka/dictionaries/lv_LV.po
index 5b3e4193ab5..689688903d2 100644
--- a/source/ka/dictionaries/lv_LV.po
+++ b/source/ka/dictionaries/lv_LV.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: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:46+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. _J-[
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/ne_NP.po b/source/ka/dictionaries/ne_NP.po
index bc8e6571a5d..f3828e1540e 100644
--- a/source/ka/dictionaries/ne_NP.po
+++ b/source/ka/dictionaries/ne_NP.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: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:46+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. x+],
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/nl_NL.po b/source/ka/dictionaries/nl_NL.po
index 9446f70d7f0..60e64fe55fb 100644
--- a/source/ka/dictionaries/nl_NL.po
+++ b/source/ka/dictionaries/nl_NL.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: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. =]Af
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/no.po b/source/ka/dictionaries/no.po
index 668d27e41ca..d28de696786 100644
--- a/source/ka/dictionaries/no.po
+++ b/source/ka/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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:46+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ifIT
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/oc_FR.po b/source/ka/dictionaries/oc_FR.po
index e38b92e12fb..2c8cb871ff4 100644
--- a/source/ka/dictionaries/oc_FR.po
+++ b/source/ka/dictionaries/oc_FR.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: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. H,N3
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/pl_PL.po b/source/ka/dictionaries/pl_PL.po
index 324eff561dc..4ecd7bdd453 100644
--- a/source/ka/dictionaries/pl_PL.po
+++ b/source/ka/dictionaries/pl_PL.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:46+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. f%I^
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/pt_BR.po b/source/ka/dictionaries/pt_BR.po
index bc3f9610a6f..1fa87bf8af0 100644
--- a/source/ka/dictionaries/pt_BR.po
+++ b/source/ka/dictionaries/pt_BR.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: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,11 +14,10 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. =qP5
#: description.xml
msgctxt ""
"description.xml\n"
"dispname\n"
"description.text"
-msgid "Brazilian Portuguese spelling Dictionary (1990 Spelling Agreement), and hyphenation rules"
+msgid "Spelling, hyphenation and grammar checking tools for Brazilian Portuguese"
msgstr ""
diff --git a/source/ka/dictionaries/pt_BR/dialog.po b/source/ka/dictionaries/pt_BR/dialog.po
new file mode 100644
index 00000000000..11d6aeef567
--- /dev/null
+++ b/source/ka/dictionaries/pt_BR/dialog.po
@@ -0,0 +1,311 @@
+#. extracted from dictionaries/pt_BR/dialog
+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-11-30 12:19+0100\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: ka\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"
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"spelling\n"
+"property.text"
+msgid "Grammar checking"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_grammar\n"
+"property.text"
+msgid "Check more grammar errors."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"grammar\n"
+"property.text"
+msgid "Possible mistakes"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_cap\n"
+"property.text"
+msgid "Check missing capitalization of sentences."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"cap\n"
+"property.text"
+msgid "Capitalization"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_dup\n"
+"property.text"
+msgid "Check repeated words."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"dup\n"
+"property.text"
+msgid "Word duplication"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_pair\n"
+"property.text"
+msgid "Check missing or extra parentheses and quotation marks."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"pair\n"
+"property.text"
+msgid "Parentheses"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"punctuation\n"
+"property.text"
+msgid "Punctuation"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_spaces\n"
+"property.text"
+msgid "Check single spaces between words."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"spaces\n"
+"property.text"
+msgid "Word spacing"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_mdash\n"
+"property.text"
+msgid "Force unspaced em dash instead of spaced en dash."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"mdash\n"
+"property.text"
+msgid "Em dash"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_ndash\n"
+"property.text"
+msgid "Force spaced en dash instead of unspaced em dash."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"ndash\n"
+"property.text"
+msgid "En dash"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_quotation\n"
+"property.text"
+msgid "Check double quotation marks: \"x\" → “x”"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"quotation\n"
+"property.text"
+msgid "Quotation marks"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_times\n"
+"property.text"
+msgid "Check true multiplication sign: 5x5 → 5×5"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"times\n"
+"property.text"
+msgid "Multiplication sign"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_spaces2\n"
+"property.text"
+msgid "Check single spaces between sentences."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"spaces2\n"
+"property.text"
+msgid "Sentence spacing"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_spaces3\n"
+"property.text"
+msgid "Check more than two extra space characters between words and sentences."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"spaces3\n"
+"property.text"
+msgid "More spaces"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_minus\n"
+"property.text"
+msgid "Change hyphen characters to real minus signs."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"minus\n"
+"property.text"
+msgid "Minus sign"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_apostrophe\n"
+"property.text"
+msgid "Change typewriter apostrophe, single quotation marks and correct double primes."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"apostrophe\n"
+"property.text"
+msgid "Apostrophe"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_ellipsis\n"
+"property.text"
+msgid "Change three dots with ellipsis."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"ellipsis\n"
+"property.text"
+msgid "Ellipsis"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"others\n"
+"property.text"
+msgid "Others"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_metric\n"
+"property.text"
+msgid "Measurement conversion from °F, mph, ft, in, lb, gal and miles."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"metric\n"
+"property.text"
+msgid "Convert to metric (°C, km/h, m, kg, l)"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_numsep\n"
+"property.text"
+msgid "Common (1000000 → 1,000,000) or ISO (1000000 → 1 000 000)."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"numsep\n"
+"property.text"
+msgid "Thousand separation of large numbers"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_nonmetric\n"
+"property.text"
+msgid "Measurement conversion from °C; km/h; cm, m, km; kg; l."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"nonmetric\n"
+"property.text"
+msgid "Convert to non-metric (°F, mph, ft, lb, gal)"
+msgstr ""
diff --git a/source/ka/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po b/source/ka/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po
new file mode 100644
index 00000000000..e69e16bbe98
--- /dev/null
+++ b/source/ka/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po
@@ -0,0 +1,33 @@
+#. extracted from dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office
+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-11-30 12:19+0100\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: ka\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"
+
+#: OptionsDialog.xcu
+msgctxt ""
+"OptionsDialog.xcu\n"
+"..OptionsDialog.Nodes.org.openoffice.lightproof\n"
+"Label\n"
+"value.text"
+msgid "Dictionaries"
+msgstr ""
+
+#: OptionsDialog.xcu
+msgctxt ""
+"OptionsDialog.xcu\n"
+"..OptionsDialog.Nodes.org.openoffice.lightproof.Leaves.org.openoffice.lightproof.pt_BR\n"
+"Label\n"
+"value.text"
+msgid "Grammar checking (Portuguese)"
+msgstr ""
diff --git a/source/ka/dictionaries/pt_PT.po b/source/ka/dictionaries/pt_PT.po
index 95473597319..7388dc28da3 100644
--- a/source/ka/dictionaries/pt_PT.po
+++ b/source/ka/dictionaries/pt_PT.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. mWcf
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/ro.po b/source/ka/dictionaries/ro.po
index 7a80cd3bba6..770aff61946 100644
--- a/source/ka/dictionaries/ro.po
+++ b/source/ka/dictionaries/ro.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: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 8Eaa
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/ru_RU.po b/source/ka/dictionaries/ru_RU.po
index f89557eba1e..bdffe7b7749 100644
--- a/source/ka/dictionaries/ru_RU.po
+++ b/source/ka/dictionaries/ru_RU.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. XCYX
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/ru_RU/dialog.po b/source/ka/dictionaries/ru_RU/dialog.po
index 1cc7cbedff7..62f504f87e6 100644
--- a/source/ka/dictionaries/ru_RU/dialog.po
+++ b/source/ka/dictionaries/ru_RU/dialog.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. cG^a
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Abbreviation"
msgstr ""
-#. y{T{
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "Grammar"
msgstr ""
-#. 7CWi
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "Compound words with hyphen"
msgstr ""
-#. [nFL
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -50,7 +46,6 @@ msgctxt ""
msgid "Comma usage"
msgstr ""
-#. .ahk
#: ru_RU_en_US.properties
#, fuzzy
msgctxt ""
@@ -60,7 +55,6 @@ msgctxt ""
msgid "General error"
msgstr "ზოგადი შეცდომა"
-#. 2ZRv
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Multiword expressions"
msgstr ""
-#. 0gNL
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Together/separately"
msgstr ""
-#. Jm1Q
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Proofreading"
msgstr ""
-#. u^sY
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Space mistake"
msgstr ""
-#. *e_$
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Typographica"
msgstr ""
-#. 0^;9
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "Word duplication"
msgstr ""
-#. {_8V
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "Others"
msgstr "დანარჩენი"
-#. )UB#
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -132,7 +119,6 @@ msgctxt ""
msgid "Separation of large numbers (ISO)"
msgstr ""
-#. 1D6y
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
diff --git a/source/ka/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po b/source/ka/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po
index c6cfb20578e..c8ce260d585 100644
--- a/source/ka/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po
+++ b/source/ka/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po
@@ -1,10 +1,9 @@
#. extracted from dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office
-#, fuzzy
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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:14+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. :g40
#: OptionsDialog.xcu
msgctxt ""
"OptionsDialog.xcu\n"
@@ -26,7 +24,6 @@ msgctxt ""
msgid "Dictionaries"
msgstr "ლექსიკონები"
-#. \hWw
#: OptionsDialog.xcu
msgctxt ""
"OptionsDialog.xcu\n"
diff --git a/source/ka/dictionaries/si_LK.po b/source/ka/dictionaries/si_LK.po
index c739bf44439..d04c194e1cf 100644
--- a/source/ka/dictionaries/si_LK.po
+++ b/source/ka/dictionaries/si_LK.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. %WZE
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/sk_SK.po b/source/ka/dictionaries/sk_SK.po
index a739e6af45d..d7fd3b0468f 100644
--- a/source/ka/dictionaries/sk_SK.po
+++ b/source/ka/dictionaries/sk_SK.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. IJ[6
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/sl_SI.po b/source/ka/dictionaries/sl_SI.po
index 9f05682e7ef..67a0fb8d3b4 100644
--- a/source/ka/dictionaries/sl_SI.po
+++ b/source/ka/dictionaries/sl_SI.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. c7;T
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/sr.po b/source/ka/dictionaries/sr.po
index 2d0598a22f8..3c6a3da2ff8 100644
--- a/source/ka/dictionaries/sr.po
+++ b/source/ka/dictionaries/sr.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. !)vU
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/sv_SE.po b/source/ka/dictionaries/sv_SE.po
index 4e102e3b4a1..029bdc9368a 100644
--- a/source/ka/dictionaries/sv_SE.po
+++ b/source/ka/dictionaries/sv_SE.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:46+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Mcgn
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/sw_TZ.po b/source/ka/dictionaries/sw_TZ.po
index e6f2fb01f3b..fe5305ebdf6 100644
--- a/source/ka/dictionaries/sw_TZ.po
+++ b/source/ka/dictionaries/sw_TZ.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. c6!@
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/te_IN.po b/source/ka/dictionaries/te_IN.po
index 6d0a3245163..a76fc3d0a6d 100644
--- a/source/ka/dictionaries/te_IN.po
+++ b/source/ka/dictionaries/te_IN.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. USC3
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/th_TH.po b/source/ka/dictionaries/th_TH.po
index 954758f80b0..073898b73a6 100644
--- a/source/ka/dictionaries/th_TH.po
+++ b/source/ka/dictionaries/th_TH.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. oK5)
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/uk_UA.po b/source/ka/dictionaries/uk_UA.po
index ac479fa104d..75c59697eed 100644
--- a/source/ka/dictionaries/uk_UA.po
+++ b/source/ka/dictionaries/uk_UA.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. mB1I
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/vi.po b/source/ka/dictionaries/vi.po
index 4337ece71de..075a318ecf5 100644
--- a/source/ka/dictionaries/vi.po
+++ b/source/ka/dictionaries/vi.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:44+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. F(qG
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/dictionaries/zu_ZA.po b/source/ka/dictionaries/zu_ZA.po
index be7e682cfcd..5fe94338287 100644
--- a/source/ka/dictionaries/zu_ZA.po
+++ b/source/ka/dictionaries/zu_ZA.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: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ;UVp
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ka/editeng/source/accessibility.po b/source/ka/editeng/source/accessibility.po
index 7d8cff55a15..ca5578d502b 100644
--- a/source/ka/editeng/source/accessibility.po
+++ b/source/ka/editeng/source/accessibility.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. t5il
#: accessibility.src
msgctxt ""
"accessibility.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Image bullet in paragraph"
msgstr ""
-#. 8|X!
#: accessibility.src
msgctxt ""
"accessibility.src\n"
diff --git a/source/ka/editeng/source/editeng.po b/source/ka/editeng/source/editeng.po
index c3a71e719a3..82bf662f52a 100644
--- a/source/ka/editeng/source/editeng.po
+++ b/source/ka/editeng/source/editeng.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-06-16 14:28+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 2(*p
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Delete"
msgstr "წაშლა"
-#. I3}j
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Move"
msgstr "გადაადგილება"
-#. I?T;
#: editeng.src
#, fuzzy
msgctxt ""
@@ -61,7 +58,6 @@ msgstr ""
"#-#-#-#-# basicide.po (PACKAGE VERSION) #-#-#-#-#\n"
"ჩასმა"
-#. eGK$
#: editeng.src
#, fuzzy
msgctxt ""
@@ -83,7 +79,6 @@ msgstr ""
"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
"ჩანაცვლებაჰ"
-#. 4/p.
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -92,7 +87,6 @@ msgctxt ""
msgid "Apply attributes"
msgstr "მიუსადაგე ატრიბუტები"
-#. uWM0
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -101,7 +95,6 @@ msgctxt ""
msgid "Reset attributes"
msgstr "ატრიბუტები საწყის მდგომარეობაში"
-#. :oTC
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -110,7 +103,6 @@ msgctxt ""
msgid "Indent"
msgstr "დაშორება"
-#. B%=0
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -119,7 +111,6 @@ msgctxt ""
msgid "Apply Styles"
msgstr "სტილის მისადაგება"
-#. H~}+
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -128,7 +119,6 @@ msgctxt ""
msgid "~Change Case"
msgstr "~რეგისტრის შეცვლა"
-#. x`g8
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -138,7 +128,6 @@ msgctxt ""
msgid "~Spellcheck..."
msgstr "~მართლწერის შემოწმება..."
-#. k]@@
#: editeng.src
#, fuzzy
msgctxt ""
@@ -171,7 +160,6 @@ msgstr ""
"#-#-#-#-# textconversiondlgs.po (PACKAGE VERSION) #-#-#-#-#\n"
"~დამატება"
-#. bR{%
#: editeng.src
#, fuzzy
msgctxt ""
@@ -204,7 +192,6 @@ msgstr ""
"#-#-#-#-# textconversiondlgs.po (PACKAGE VERSION) #-#-#-#-#\n"
"~დამატება"
-#. W}8j
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -214,7 +201,6 @@ msgctxt ""
msgid "Ignore All"
msgstr "იგნორირება ყველგან"
-#. Z}FQ
#: editeng.src
#, fuzzy
msgctxt ""
@@ -235,7 +221,6 @@ msgstr ""
"#-#-#-#-# tabpages.po (PACKAGE VERSION) #-#-#-#-#\n"
"ავტოკორექცია"
-#. 6huV
#: editeng.src
#, fuzzy
msgctxt ""
@@ -245,7 +230,6 @@ msgctxt ""
msgid "Word is %x"
msgstr "სიტყვა არის "
-#. NpM!
#: editeng.src
#, fuzzy
msgctxt ""
diff --git a/source/ka/editeng/source/items.po b/source/ka/editeng/source/items.po
index 39780f7900a..f45b343a465 100644
--- a/source/ka/editeng/source/items.po
+++ b/source/ka/editeng/source/items.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-12 00:27+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. `m0)
#: page.src
msgctxt ""
"page.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Paper tray"
msgstr "ქაღალდის მოსაწოდებელი"
-#. `IKX
#: page.src
msgctxt ""
"page.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "[From printer settings]"
msgstr ""
-#. MppO
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "True"
msgstr "ჭეშმარიტი"
-#. W*j@
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "False"
msgstr "მცდარი"
-#. a`*i
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "No break"
msgstr ""
-#. peH?
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Break before new column"
msgstr ""
-#. w_,F
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Break after new column"
msgstr ""
-#. 7Pc(
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Break before and after new column"
msgstr ""
-#. -_lp
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Break before new page"
msgstr "წყვეტა ახალი გვერდის წინ"
-#. u/3c
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -106,7 +96,6 @@ msgctxt ""
msgid "Break after new page"
msgstr "წყვეტა ახალი გვერდის წინ"
-#. `{Y?
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -115,7 +104,6 @@ msgctxt ""
msgid "Break before and after new page"
msgstr ""
-#. ~ObJ
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -129,7 +117,6 @@ msgstr ""
"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
"ჩრდილის გარეშე"
-#. RgUU
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -138,7 +125,6 @@ msgctxt ""
msgid "Shadow top left"
msgstr ""
-#. H0}V
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -147,7 +133,6 @@ msgctxt ""
msgid "Shadow top right"
msgstr ""
-#. 1mbn
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -156,7 +141,6 @@ msgctxt ""
msgid "Shadow bottom left"
msgstr ""
-#. ipm;
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -165,7 +149,6 @@ msgctxt ""
msgid "Shadow bottom right"
msgstr ""
-#. f5u9
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -175,7 +158,6 @@ msgctxt ""
msgid "Color "
msgstr "ფერი"
-#. Gz2%
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -184,7 +166,6 @@ msgctxt ""
msgid "Black"
msgstr "შავი"
-#. %BRR
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -193,7 +174,6 @@ msgctxt ""
msgid "Blue"
msgstr "ლურჯი"
-#. ?3E,
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -202,7 +182,6 @@ msgctxt ""
msgid "Green"
msgstr "მწვანე"
-#. F:Qc
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -211,7 +190,6 @@ msgctxt ""
msgid "Cyan"
msgstr ""
-#. xbPR
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -220,7 +198,6 @@ msgctxt ""
msgid "Red"
msgstr "წითელი"
-#. X*L,
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -229,7 +206,6 @@ msgctxt ""
msgid "Magenta"
msgstr "იისფერი"
-#. 4E^B
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -238,7 +214,6 @@ msgctxt ""
msgid "Brown"
msgstr "ყავისფერი"
-#. T+Tb
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -247,7 +222,6 @@ msgctxt ""
msgid "Gray"
msgstr "ნაცრისფერი"
-#. [e-U
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -256,7 +230,6 @@ msgctxt ""
msgid "Light Gray"
msgstr "ნათელი ნაცრისფერი"
-#. =tA|
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -266,7 +239,6 @@ msgctxt ""
msgid "Light Blue"
msgstr "ღია ლურჯი"
-#. EO_G
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -276,7 +248,6 @@ msgctxt ""
msgid "Light Green"
msgstr "ღია მწვანე"
-#. M:z@
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -286,7 +257,6 @@ msgctxt ""
msgid "Light Cyan"
msgstr "ღია ცისფერი"
-#. K8J,
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -296,7 +266,6 @@ msgctxt ""
msgid "Light Red"
msgstr "ღია წითელი"
-#. 4U[n
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -306,7 +275,6 @@ msgctxt ""
msgid "Light Magenta"
msgstr "ღია იისფერი"
-#. @ebO
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -315,7 +283,6 @@ msgctxt ""
msgid "Yellow"
msgstr "ყვითელი"
-#. aboy
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -324,7 +291,6 @@ msgctxt ""
msgid "White"
msgstr "თეთრი"
-#. Ko*D
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -333,7 +299,6 @@ msgctxt ""
msgid "Not Italic"
msgstr ""
-#. o{,0
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -342,7 +307,6 @@ msgctxt ""
msgid "Oblique italic"
msgstr ""
-#. 3ju/
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -370,7 +334,6 @@ msgstr ""
"#-#-#-#-# svdraw.po (PACKAGE VERSION) #-#-#-#-#\n"
"დახრილი"
-#. !5hY
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -379,7 +342,6 @@ msgctxt ""
msgid "thin"
msgstr ""
-#. odl:
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -388,7 +350,6 @@ msgctxt ""
msgid "ultra thin"
msgstr ""
-#. HAPs
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -412,7 +373,6 @@ msgstr ""
"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
"მარჯვენა"
-#. li?X
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -421,7 +381,6 @@ msgctxt ""
msgid "semi light"
msgstr ""
-#. );gy
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -431,7 +390,6 @@ msgctxt ""
msgid "normal"
msgstr "ჩვეულებრივი"
-#. cK$~
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -441,7 +399,6 @@ msgctxt ""
msgid "medium"
msgstr "საშუალო"
-#. lHA+
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -450,7 +407,6 @@ msgctxt ""
msgid "semi bold"
msgstr ""
-#. 35-f
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -460,7 +416,6 @@ msgctxt ""
msgid "bold"
msgstr "შეკვრა"
-#. Q@mS
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -469,7 +424,6 @@ msgctxt ""
msgid "ultra bold"
msgstr ""
-#. EdRE
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -479,7 +433,6 @@ msgctxt ""
msgid "black"
msgstr "შავი"
-#. szk;
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -488,7 +441,6 @@ msgctxt ""
msgid "No underline"
msgstr ""
-#. N$`=
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -497,7 +449,6 @@ msgctxt ""
msgid "Single underline"
msgstr ""
-#. e=TH
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -507,7 +458,6 @@ msgctxt ""
msgid "Double underline"
msgstr "ორმაგი ხაზგასმა"
-#. 9F#d
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -516,7 +466,6 @@ msgctxt ""
msgid "Dotted underline"
msgstr ""
-#. uglo
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -536,7 +485,6 @@ msgstr ""
"#-#-#-#-# svdraw.po (PACKAGE VERSION) #-#-#-#-#\n"
"ხაზგასმული"
-#. ^o2G
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -545,7 +493,6 @@ msgctxt ""
msgid "Underline (dashes)"
msgstr ""
-#. LtkP
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -554,7 +501,6 @@ msgctxt ""
msgid "Underline (long dashes)"
msgstr ""
-#. c|Oo
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -563,7 +509,6 @@ msgctxt ""
msgid "Underline (dot dash)"
msgstr ""
-#. q:--
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -572,7 +517,6 @@ msgctxt ""
msgid "Underline (dot dot dash)"
msgstr ""
-#. [5A\
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -581,7 +525,6 @@ msgctxt ""
msgid "Underline (small wave)"
msgstr ""
-#. JfbI
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -590,7 +533,6 @@ msgctxt ""
msgid "Underline (Wave)"
msgstr ""
-#. HFTP
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -599,7 +541,6 @@ msgctxt ""
msgid "Underline (Double wave)"
msgstr ""
-#. jY!%
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -608,7 +549,6 @@ msgctxt ""
msgid "Underlined (Bold)"
msgstr ""
-#. mG2U
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -617,7 +557,6 @@ msgctxt ""
msgid "Dotted underline (Bold)"
msgstr ""
-#. ,fcU
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -626,7 +565,6 @@ msgctxt ""
msgid "Underline (Dash bold)"
msgstr ""
-#. p^I/
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -635,7 +573,6 @@ msgctxt ""
msgid "Underline (long dash, bold)"
msgstr ""
-#. K:|d
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -644,7 +581,6 @@ msgctxt ""
msgid "Underline (dot dash, bold)"
msgstr ""
-#. X}gG
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -653,7 +589,6 @@ msgctxt ""
msgid "Underline (dot dot dash, bold)"
msgstr ""
-#. RX8\
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -662,7 +597,6 @@ msgctxt ""
msgid "Underline (wave, bold)"
msgstr ""
-#. FTF7
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -671,7 +605,6 @@ msgctxt ""
msgid "No overline"
msgstr ""
-#. lf:R
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -680,7 +613,6 @@ msgctxt ""
msgid "Single overline"
msgstr ""
-#. Y}-d
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -690,7 +622,6 @@ msgctxt ""
msgid "Double overline"
msgstr "ორმაგი ხაზგასმა"
-#. 1`6|
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -699,7 +630,6 @@ msgctxt ""
msgid "Dotted overline"
msgstr ""
-#. ^k=5
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -708,7 +638,6 @@ msgctxt ""
msgid "Overline"
msgstr ""
-#. l3!R
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -717,7 +646,6 @@ msgctxt ""
msgid "Overline (dashes)"
msgstr ""
-#. rj?D
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -726,7 +654,6 @@ msgctxt ""
msgid "Overline (long dashes)"
msgstr ""
-#. AXoK
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -735,7 +662,6 @@ msgctxt ""
msgid "Overline (dot dash)"
msgstr ""
-#. qnHq
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -744,7 +670,6 @@ msgctxt ""
msgid "Overline (dot dot dash)"
msgstr ""
-#. F*p|
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -753,7 +678,6 @@ msgctxt ""
msgid "Overline (small wave)"
msgstr ""
-#. 4iNC
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -762,7 +686,6 @@ msgctxt ""
msgid "Overline (Wave)"
msgstr ""
-#. c_R/
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -771,7 +694,6 @@ msgctxt ""
msgid "Overline (Double wave)"
msgstr ""
-#. q1=d
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -780,7 +702,6 @@ msgctxt ""
msgid "Overlined (Bold)"
msgstr ""
-#. N*cM
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -789,7 +710,6 @@ msgctxt ""
msgid "Dotted overline (Bold)"
msgstr ""
-#. (]`L
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -798,7 +718,6 @@ msgctxt ""
msgid "Overline (Dash bold)"
msgstr ""
-#. FUNs
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -807,7 +726,6 @@ msgctxt ""
msgid "Overline (long dash, bold)"
msgstr ""
-#. ?GOU
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -816,7 +734,6 @@ msgctxt ""
msgid "Overline (dot dash, bold)"
msgstr ""
-#. 9Al%
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -825,7 +742,6 @@ msgctxt ""
msgid "Overline (dot dot dash, bold)"
msgstr ""
-#. |.\k
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -834,7 +750,6 @@ msgctxt ""
msgid "Overline (wave, bold)"
msgstr ""
-#. @w7S
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -843,7 +758,6 @@ msgctxt ""
msgid "No strikethrough"
msgstr ""
-#. o?fU
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -852,7 +766,6 @@ msgctxt ""
msgid "Single strikethrough"
msgstr ""
-#. =QVc
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -861,7 +774,6 @@ msgctxt ""
msgid "Double strikethrough"
msgstr ""
-#. CAd5
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -870,7 +782,6 @@ msgctxt ""
msgid "Bold strikethrough"
msgstr ""
-#. zN]L
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -879,7 +790,6 @@ msgctxt ""
msgid "Strike through with slash"
msgstr ""
-#. *\\Y
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -888,7 +798,6 @@ msgctxt ""
msgid "Strike through with Xes"
msgstr ""
-#. m3z=
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -926,7 +835,6 @@ msgstr ""
"#-#-#-#-# stbctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
"არცერთი"
-#. %t+X
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -936,7 +844,6 @@ msgctxt ""
msgid "Caps"
msgstr "რუქები"
-#. obX:
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -950,7 +857,6 @@ msgstr ""
"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
"ქვედა რეგისტრი"
-#. 6z+n
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -982,7 +888,6 @@ msgstr ""
"#-#-#-#-# textconversiondlgs.po (PACKAGE VERSION) #-#-#-#-#\n"
"სათაური"
-#. L@(9
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -991,7 +896,6 @@ msgctxt ""
msgid "Small caps"
msgstr "პატარა მთავრულები"
-#. ?]?J
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1000,7 +904,6 @@ msgctxt ""
msgid "Normal position"
msgstr ""
-#. \G84
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1010,7 +913,6 @@ msgctxt ""
msgid "Superscript "
msgstr "ზედა რეგისტრი"
-#. qZ|8
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1020,7 +922,6 @@ msgctxt ""
msgid "Subscript "
msgstr "ქვედა რეგისტრი"
-#. P~==
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1046,7 +947,6 @@ msgstr ""
"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
"ავტომატური"
-#. hf\G
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1056,7 +956,6 @@ msgctxt ""
msgid "Align left"
msgstr "დალაგება მარცხნივ"
-#. **?b
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1066,7 +965,6 @@ msgctxt ""
msgid "Align right"
msgstr "სწორება მარჯვნივ"
-#. iEy0
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1075,7 +973,6 @@ msgctxt ""
msgid "Justify"
msgstr ""
-#. .*zC
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1085,7 +982,6 @@ msgctxt ""
msgid "Centered"
msgstr "ცენტრში"
-#. H\^F
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1094,7 +990,6 @@ msgctxt ""
msgid "Justify"
msgstr ""
-#. abYQ
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1103,7 +998,6 @@ msgctxt ""
msgid "Decimal Symbol:"
msgstr ""
-#. _?Pd
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1113,7 +1007,6 @@ msgctxt ""
msgid "Fill character:"
msgstr "დამამთავრებ~ელი სიმბოლოები"
-#. DdJk
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1137,7 +1030,6 @@ msgstr ""
"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
"მარცხენა"
-#. m`AD
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1161,7 +1053,6 @@ msgstr ""
"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
"მარჯვენა"
-#. BF!U
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1177,7 +1068,6 @@ msgstr ""
"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
"ათწილადი რიცხვი"
-#. Sw@L
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1187,7 +1077,6 @@ msgctxt ""
msgid "Centered"
msgstr "ცენტრში"
-#. !ag-
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1207,7 +1096,6 @@ msgstr ""
"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
"სტანდარტული"
-#. FCe]
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1217,7 +1105,6 @@ msgctxt ""
msgid "Single, solid"
msgstr "ერთმაგი ველი"
-#. kc`~
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1227,7 +1114,6 @@ msgctxt ""
msgid "Single, dotted"
msgstr "დახვეწილი დაწერტილებული"
-#. ?|Lh
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1237,7 +1123,6 @@ msgctxt ""
msgid "Single, dashed"
msgstr "დახვეწილი წყვეტილი"
-#. G/WV
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1246,7 +1131,6 @@ msgctxt ""
msgid "Double"
msgstr "ორმაგი"
-#. eyJ5
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1255,7 +1139,6 @@ msgctxt ""
msgid "Double, inside: fine, outside: thick, spacing: small"
msgstr ""
-#. WXz9
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1264,7 +1147,6 @@ msgctxt ""
msgid "Double, inside: fine, outside: thick, spacing: medium"
msgstr ""
-#. CGqI
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1273,7 +1155,6 @@ msgctxt ""
msgid "Double, inside: fine, outside: thick, spacing: large"
msgstr ""
-#. 6f!m
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1282,7 +1163,6 @@ msgctxt ""
msgid "Double, inside: thick, outside: fine, spacing: small"
msgstr ""
-#. R7_s
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1291,7 +1171,6 @@ msgctxt ""
msgid "Double, inside: thick, outside: fine, spacing: medium"
msgstr ""
-#. b8Mc
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1300,7 +1179,6 @@ msgctxt ""
msgid "Double, inside: thick, outside: fine, spacing: large"
msgstr ""
-#. mTj=
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1310,7 +1188,6 @@ msgctxt ""
msgid "3D embossed"
msgstr "რელიეფური"
-#. +uB$
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1320,7 +1197,6 @@ msgctxt ""
msgid "3D engraved"
msgstr "გრავირებული"
-#. @9bK
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1348,7 +1224,6 @@ msgstr ""
"#-#-#-#-# basicide.po (PACKAGE VERSION) #-#-#-#-#\n"
"ჩასმა"
-#. xK@k
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1358,7 +1233,6 @@ msgctxt ""
msgid "Outset"
msgstr "გარეთ"
-#. `ZBO
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1367,7 +1241,6 @@ msgctxt ""
msgid "mm"
msgstr "მმ"
-#. EcCb
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1376,7 +1249,6 @@ msgctxt ""
msgid "cm"
msgstr "სმ"
-#. _j4`
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1385,7 +1257,6 @@ msgctxt ""
msgid "inch"
msgstr "დიუმი"
-#. VdV@
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1394,7 +1265,6 @@ msgctxt ""
msgid "pt"
msgstr "პტ"
-#. +ad@
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1403,7 +1273,6 @@ msgctxt ""
msgid "twip"
msgstr "ტვიპი"
-#. L2/C
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1412,7 +1281,6 @@ msgctxt ""
msgid "pixel"
msgstr ""
-#. L,,X
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1421,7 +1289,6 @@ msgctxt ""
msgid "Shadowed"
msgstr "დაჩრდილული"
-#. 3H|c
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1435,7 +1302,6 @@ msgstr ""
"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
"ჩრდილის გარეშე"
-#. Kux+
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1444,7 +1310,6 @@ msgctxt ""
msgid "Blinking"
msgstr "ციმციმი"
-#. j`^^
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1453,7 +1318,6 @@ msgctxt ""
msgid "Not Blinking"
msgstr ""
-#. ![q=
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1463,7 +1327,6 @@ msgctxt ""
msgid "Pair Kerning"
msgstr "წყვილი~ს კერნინგი"
-#. TIB$
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1472,7 +1335,6 @@ msgctxt ""
msgid "No pair kerning"
msgstr ""
-#. mgJt
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1481,7 +1343,6 @@ msgctxt ""
msgid "Individual words"
msgstr "ცალკეული სიტყვები"
-#. cYB4
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1490,7 +1351,6 @@ msgctxt ""
msgid "Not Words Only"
msgstr ""
-#. F/+g
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1518,7 +1378,6 @@ msgstr ""
"#-#-#-#-# svdraw.po (PACKAGE VERSION) #-#-#-#-#\n"
"მონახაზი"
-#. =AiM
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1527,7 +1386,6 @@ msgctxt ""
msgid "No Outline"
msgstr ""
-#. Sns]
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1547,7 +1405,6 @@ msgstr ""
"#-#-#-#-# contnr.po (PACKAGE VERSION) #-#-#-#-#\n"
"ბეჭდვა"
-#. %k)M
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1556,7 +1413,6 @@ msgctxt ""
msgid "Don't print"
msgstr "არ დაბეჭდო"
-#. 2(i2
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1565,7 +1421,6 @@ msgctxt ""
msgid "Opaque"
msgstr ""
-#. h\3[
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1574,7 +1429,6 @@ msgctxt ""
msgid "Not Opaque"
msgstr ""
-#. n[YX
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1583,7 +1437,6 @@ msgctxt ""
msgid "Keep with next paragraph"
msgstr "შემდეგ აბზაცთან დატოვება"
-#. E+PN
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1592,7 +1445,6 @@ msgctxt ""
msgid "Don't Keep Paragraphs Together"
msgstr ""
-#. L^La
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1602,7 +1454,6 @@ msgctxt ""
msgid "Split paragraph"
msgstr "აბზაცის მონიშვნა"
-#. =ft_
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1612,7 +1463,6 @@ msgctxt ""
msgid "Don't split paragraph"
msgstr "პარაგრაფის არ დაყოფა"
-#. HUJg
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1621,7 +1471,6 @@ msgctxt ""
msgid "Contents protected"
msgstr ""
-#. S9WM
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1630,7 +1479,6 @@ msgctxt ""
msgid "Contents not protected"
msgstr ""
-#. WZ:q
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1639,7 +1487,6 @@ msgctxt ""
msgid "Size protected"
msgstr ""
-#. H5Z3
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1648,7 +1495,6 @@ msgctxt ""
msgid "Size not protected"
msgstr ""
-#. ^?hm
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1657,7 +1503,6 @@ msgctxt ""
msgid "Position protected"
msgstr "პოზიცია დაცულია"
-#. [D=9
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1667,7 +1512,6 @@ msgctxt ""
msgid "Position not protected"
msgstr "პოზიცია დაცულია"
-#. 1V=y
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1676,7 +1520,6 @@ msgctxt ""
msgid "Transparent"
msgstr "გამჭვირვალე"
-#. el]e
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1685,7 +1528,6 @@ msgctxt ""
msgid "Not Transparent"
msgstr ""
-#. 8-~R
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1705,7 +1547,6 @@ msgstr ""
"#-#-#-#-# svdraw.po (PACKAGE VERSION) #-#-#-#-#\n"
"გაქვავება"
-#. :n)[
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1714,7 +1555,6 @@ msgctxt ""
msgid "No hyphenation"
msgstr ""
-#. l7o|
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1723,7 +1563,6 @@ msgctxt ""
msgid "Page End"
msgstr ""
-#. Ig0C
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1733,7 +1572,6 @@ msgctxt ""
msgid "No Page End"
msgstr "გევრდის დასასრულიდან"
-#. V-)G
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1743,7 +1581,6 @@ msgctxt ""
msgid "Width: "
msgstr "სიგანე:"
-#. H3%V
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1753,7 +1590,6 @@ msgctxt ""
msgid "Height: "
msgstr "სიმაღლე:"
-#. IFQW
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1762,7 +1598,6 @@ msgctxt ""
msgid "Indent left "
msgstr ""
-#. wPF\
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1771,7 +1606,6 @@ msgctxt ""
msgid "First Line "
msgstr ""
-#. }=:d
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1780,7 +1614,6 @@ msgctxt ""
msgid "Indent right "
msgstr ""
-#. ]t)3
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1790,7 +1623,6 @@ msgctxt ""
msgid "Shadow: "
msgstr "დაჩრდილული"
-#. )owa
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1800,7 +1632,6 @@ msgctxt ""
msgid "Borders "
msgstr "ჩარჩოები"
-#. 0/=_
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1809,7 +1640,6 @@ msgctxt ""
msgid "No border"
msgstr "არ არის საზღვრები"
-#. 5Jwo
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1818,7 +1648,6 @@ msgctxt ""
msgid "top "
msgstr ""
-#. /e]Y
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1827,7 +1656,6 @@ msgctxt ""
msgid "bottom "
msgstr ""
-#. ;(mv
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1837,7 +1665,6 @@ msgctxt ""
msgid "left "
msgstr "მარცხნივ"
-#. ,lN3
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1847,7 +1674,6 @@ msgctxt ""
msgid "right "
msgstr "მარჯვნივ"
-#. JYEV
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1857,7 +1683,6 @@ msgctxt ""
msgid "Spacing "
msgstr "დაშორება"
-#. tGk.
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1867,7 +1692,6 @@ msgctxt ""
msgid "From top "
msgstr "ზემოდან"
-#. ]4[1
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1878,7 +1702,6 @@ msgid "From bottom "
msgstr "ქვემოდან"
#. pb: %1 == will be replaced by the number of lines
-#. ^}/r
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1888,7 +1711,6 @@ msgctxt ""
msgid "%1 Lines"
msgstr "3დ ხაზები"
-#. QB%S
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1898,7 +1720,6 @@ msgctxt ""
msgid "Widow control"
msgstr "~ფანფრის კონტროლი"
-#. ;.?^
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1908,7 +1729,6 @@ msgctxt ""
msgid "Orphan control"
msgstr "ობლის კონტროლი"
-#. -_VD
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1917,7 +1737,6 @@ msgctxt ""
msgid "Characters at end of line"
msgstr ""
-#. SB9k
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1926,7 +1745,6 @@ msgctxt ""
msgid "Characters at beginning of line"
msgstr ""
-#. w8tr
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1935,7 +1753,6 @@ msgctxt ""
msgid "Hyphens"
msgstr ""
-#. *rD3
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1944,7 +1761,6 @@ msgctxt ""
msgid "Page Style: "
msgstr "გვერდის სტილი: "
-#. O/gB
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1953,7 +1769,6 @@ msgctxt ""
msgid "Kerning "
msgstr ""
-#. 5J^q
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1962,7 +1777,6 @@ msgctxt ""
msgid "locked "
msgstr ""
-#. ELkw
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1972,7 +1786,6 @@ msgctxt ""
msgid "Condensed "
msgstr "შეკუმშული"
-#. 6FdL
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1988,7 +1801,6 @@ msgstr ""
"#-#-#-#-# tabpages.po (PACKAGE VERSION) #-#-#-#-#\n"
"გრაფიკა"
-#. Is0j
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1997,7 +1809,6 @@ msgctxt ""
msgid "none"
msgstr "ცარიელი"
-#. x]rG
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2006,7 +1817,6 @@ msgctxt ""
msgid "Dots "
msgstr ""
-#. |@}S
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -2016,7 +1826,6 @@ msgctxt ""
msgid "Circle "
msgstr "წრე"
-#. _Z:L
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2025,7 +1834,6 @@ msgctxt ""
msgid "Filled circle "
msgstr ""
-#. ^s+%
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -2035,7 +1843,6 @@ msgctxt ""
msgid "Accent "
msgstr "აქცენტი"
-#. /fjz
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -2049,7 +1856,6 @@ msgstr ""
"#-#-#-#-# tabpages.po (PACKAGE VERSION) #-#-#-#-#\n"
"ზემოდან"
-#. 7v=/
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -2065,7 +1871,6 @@ msgstr ""
"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
"ქვემოთ"
-#. ,81g
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -2079,7 +1884,6 @@ msgstr ""
"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
"ორმაგი ხაზი"
-#. i/uh
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -2093,7 +1897,6 @@ msgstr ""
"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
"ორმაგი ხაზი"
-#. @8IO
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2102,7 +1905,6 @@ msgctxt ""
msgid "No automatic character spacing"
msgstr ""
-#. [keR
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2111,7 +1913,6 @@ msgctxt ""
msgid "No automatic character spacing"
msgstr ""
-#. Vwk5
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2120,7 +1921,6 @@ msgctxt ""
msgid "No hanging punctuation at line end"
msgstr ""
-#. l[0A
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2129,7 +1929,6 @@ msgctxt ""
msgid "Hanging punctuation at line end"
msgstr ""
-#. :lQ)
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -2139,7 +1938,6 @@ msgctxt ""
msgid "Apply list of forbidden characters to beginning and end of lines"
msgstr "აკრძალული სიმბოლოების სიის მისადაგება ხაზების დასაწყისში და ბოლოში"
-#. RI,4
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -2149,7 +1947,6 @@ msgctxt ""
msgid "Don't apply list of forbidden characters to beginning and end of lines"
msgstr "აკრძალული სიმბოლოების სიის მისადაგება ხაზების დასაწყისში და ბოლოში"
-#. ?|XU
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2158,7 +1955,6 @@ msgctxt ""
msgid "No rotated characters"
msgstr ""
-#. 4tJ;
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2167,7 +1963,6 @@ msgctxt ""
msgid "Character rotated by $(ARG1)°"
msgstr ""
-#. 8EOh
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2176,7 +1971,6 @@ msgctxt ""
msgid "Fit to line"
msgstr "ხაზზე გათანაბრება"
-#. Dzb7
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2185,7 +1979,6 @@ msgctxt ""
msgid "Characters scaled $(ARG1)%"
msgstr ""
-#. AbZe
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2194,7 +1987,6 @@ msgctxt ""
msgid "No scaled characters"
msgstr ""
-#. 5cf5
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2203,7 +1995,6 @@ msgctxt ""
msgid "No relief"
msgstr ""
-#. 02\+
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2212,7 +2003,6 @@ msgctxt ""
msgid "Relief"
msgstr "რელიეფი"
-#. /MSK
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2221,7 +2011,6 @@ msgctxt ""
msgid "Engraved"
msgstr "გრავირებული"
-#. s-*X
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2230,7 +2019,6 @@ msgctxt ""
msgid "Automatic text alignment"
msgstr ""
-#. B1S1
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2239,7 +2027,6 @@ msgctxt ""
msgid "Text aligned to base line"
msgstr ""
-#. )7Zr
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2248,7 +2035,6 @@ msgctxt ""
msgid "Text aligned top"
msgstr ""
-#. _J)X
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2257,7 +2043,6 @@ msgctxt ""
msgid "Text aligned middle"
msgstr ""
-#. x^OA
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2266,7 +2051,6 @@ msgctxt ""
msgid "Text aligned bottom"
msgstr ""
-#. 7,nz
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2275,7 +2059,6 @@ msgctxt ""
msgid "Text direction left-to-right (horizontal)"
msgstr ""
-#. 5)6s
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2284,7 +2067,6 @@ msgctxt ""
msgid "Text direction right-to-left (horizontal)"
msgstr ""
-#. kof^
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2293,7 +2075,6 @@ msgctxt ""
msgid "Text direction right-to-left (vertical)"
msgstr ""
-#. ?T`o
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2302,7 +2083,6 @@ msgctxt ""
msgid "Text direction left-to-right (vertical)"
msgstr ""
-#. JXGc
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2311,7 +2091,6 @@ msgctxt ""
msgid "Use superordinate object text direction setting"
msgstr ""
-#. fM`2
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2320,7 +2099,6 @@ msgctxt ""
msgid "Paragraph snaps to text grid (if active)"
msgstr ""
-#. #A/P
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2329,7 +2107,6 @@ msgctxt ""
msgid "Paragraph does not snap to text grid"
msgstr ""
-#. UKdN
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2338,7 +2115,6 @@ msgctxt ""
msgid "Not hidden"
msgstr ""
-#. YeN,
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -2348,7 +2124,6 @@ msgctxt ""
msgid "Hidden"
msgstr "და~მალული"
-#. G^l9
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2357,7 +2132,6 @@ msgctxt ""
msgid "Horizontal alignment default"
msgstr ""
-#. l`jc
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -2367,7 +2141,6 @@ msgctxt ""
msgid "Align left"
msgstr "დალაგება მარცხნივ"
-#. R}h[
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2376,7 +2149,6 @@ msgctxt ""
msgid "Centered horizontally"
msgstr "ჰორიზონტალურად ცენტრირებული"
-#. .{Z*
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -2386,7 +2158,6 @@ msgctxt ""
msgid "Align right"
msgstr "სწორება მარჯვნივ"
-#. 8RRN
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2395,7 +2166,6 @@ msgctxt ""
msgid "Justify"
msgstr ""
-#. $V)3
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -2405,7 +2175,6 @@ msgctxt ""
msgid "Repeat alignment"
msgstr "ტექსტის გასწორება"
-#. k;]C
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2414,7 +2183,6 @@ msgctxt ""
msgid "Vertical alignment default"
msgstr ""
-#. gsee
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -2424,7 +2192,6 @@ msgctxt ""
msgid "Align to top"
msgstr "%O-ის სწორება ზევით"
-#. j)er
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2433,7 +2200,6 @@ msgctxt ""
msgid "Centered vertically"
msgstr "ვერტიკალურად ცენტრირებული"
-#. !nb,
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -2443,7 +2209,6 @@ msgctxt ""
msgid "Align to bottom"
msgstr "%O-ის სწორება ქვევით"
-#. r}Pq
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -2469,7 +2234,6 @@ msgstr ""
"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
"ავტომატური"
-#. i89j
#: svxitems.src
#, fuzzy
msgctxt ""
diff --git a/source/ka/editeng/source/misc.po b/source/ka/editeng/source/misc.po
index 638cd8e308b..9a6594cd1e2 100644
--- a/source/ka/editeng/source/misc.po
+++ b/source/ka/editeng/source/misc.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-12 00:27+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ;GN0
#: lingu.src
msgctxt ""
"lingu.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Continue checking at beginning of document?"
msgstr "განვაგრძოთ დოკუმენტის დასაწყისში შემოწმება?"
-#. (XiS
#: lingu.src
#, fuzzy
msgctxt ""
@@ -34,7 +32,6 @@ msgctxt ""
msgid "Continue checking at end of document?"
msgstr "განვაგრძოთ დოკუმენტის დასაწყისში შემოწმება?"
-#. Dg\]
#: lingu.src
#, fuzzy
msgctxt ""
@@ -48,7 +45,6 @@ msgstr ""
"ამ ენისთვის არ არის ხელმისაწვდომი თეზაურუსები.\n"
"გთხოვთ შეამოწმოთ ინსტალაცია და დააინსტალიროთ სასურველი ენა."
-#. F]n]
#: lingu.src
msgctxt ""
"lingu.src\n"
@@ -59,7 +55,6 @@ msgid ""
"due to unknown reason."
msgstr ""
-#. q)8|
#: lingu.src
msgctxt ""
"lingu.src\n"
@@ -68,7 +63,6 @@ msgctxt ""
msgid "The dictionary is already full."
msgstr ""
-#. 4a]{
#: lingu.src
msgctxt ""
"lingu.src\n"
diff --git a/source/ka/editeng/source/outliner.po b/source/ka/editeng/source/outliner.po
index c8e59bda193..e6db2a6b3b4 100644
--- a/source/ka/editeng/source/outliner.po
+++ b/source/ka/editeng/source/outliner.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-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. k.GI
#: outliner.src
msgctxt ""
"outliner.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Move"
msgstr "გადაადგილება"
-#. Wp7d
#: outliner.src
msgctxt ""
"outliner.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Indent"
msgstr "დაშორება"
-#. 1S}L
#: outliner.src
#, fuzzy
msgctxt ""
@@ -43,7 +40,6 @@ msgctxt ""
msgid "Show subpoints"
msgstr "ქვეპუნქტების ჩვენება"
-#. 9_,d
#: outliner.src
#, fuzzy
msgctxt ""
@@ -57,7 +53,6 @@ msgstr ""
"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
"კოლაპსი"
-#. {RTY
#: outliner.src
msgctxt ""
"outliner.src\n"
@@ -66,7 +61,6 @@ msgctxt ""
msgid "Apply attributes"
msgstr "მიუსადაგე ატრიბუტები"
-#. \`,S
#: outliner.src
#, fuzzy
msgctxt ""
diff --git a/source/ka/extensions/source/abpilot.po b/source/ka/extensions/source/abpilot.po
index cda3e93b2e5..a4c0d03f83d 100644
--- a/source/ka/extensions/source/abpilot.po
+++ b/source/ka/extensions/source/abpilot.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-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 1JQo
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "Address book type"
msgstr "მისამართების წიგნის ტიპი"
-#. 8JN?
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Connection Settings"
msgstr "კავშირის პარამერები"
-#. yQ$-
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Table selection"
msgstr "ცხრილის მონიშვნა"
-#. ?#w,
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Field Assignment"
msgstr "ველის მინიჭება"
-#. 3KqL
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "Data Source Title"
msgstr "მონაცემთა წყაროს სათაური"
-#. ?|S3
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -74,7 +68,6 @@ msgctxt ""
msgid "Address Book Data Source Wizard"
msgstr "მისამართების წიგნის მონაცემთა წყაროს ოსტატი"
-#. mg}~
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -90,7 +83,6 @@ msgstr ""
"\n"
"ეს გიდი დაგეხმარებათ შექმნათ მონაცემთა ახალი წყარო."
-#. IP/A
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -100,7 +92,6 @@ msgctxt ""
msgid "Please select the type of your external address book:"
msgstr "გთხოვთ მონიშნოთ თქვენი გარე მისამართების წიგნის ტიპი:"
-#. [#-P
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -110,7 +101,6 @@ msgctxt ""
msgid "Evolution"
msgstr "Evolution"
-#. p#S3
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -120,7 +110,6 @@ msgctxt ""
msgid "Groupwise"
msgstr "Groupwise"
-#. fe\.
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -130,7 +119,6 @@ msgctxt ""
msgid "Evolution LDAP"
msgstr "Evolution LDAP"
-#. VyMn
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -140,7 +128,6 @@ msgctxt ""
msgid "Mozilla / Netscape"
msgstr "Mozilla / Netscape"
-#. \np^
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -150,7 +137,6 @@ msgctxt ""
msgid "Thunderbird/Icedove"
msgstr ""
-#. L|c=
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -160,7 +146,6 @@ msgctxt ""
msgid "KDE address book"
msgstr "KDE მისამართების წიგნი"
-#. V7Xp
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -170,7 +155,6 @@ msgctxt ""
msgid "Mac OS X address book"
msgstr ""
-#. YD2R
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -180,7 +164,6 @@ msgctxt ""
msgid "LDAP address data"
msgstr "LDAP მისართების მონაცემი"
-#. /ZAL
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -190,7 +173,6 @@ msgctxt ""
msgid "Outlook address book"
msgstr "სხვა მისამართების წიგნის"
-#. vA$Z
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -200,7 +182,6 @@ msgctxt ""
msgid "Windows system address book"
msgstr "Windows-ის სისტემის მისამართების წიგნი"
-#. Zg(X
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -210,7 +191,6 @@ msgctxt ""
msgid "Other external data source"
msgstr "სხვა გარე მონაცემთა წყაროები"
-#. WWX%
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -226,7 +206,6 @@ msgstr ""
"\n"
"დააჭირეთ შემდეგ ღილაკს ახალი დიალოგის გასახსნელად, რომელშიც შეიტანთ საჭირო ინფორმაციას."
-#. N(1@
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -236,7 +215,6 @@ msgctxt ""
msgid "Settings"
msgstr "პარამერები"
-#. !_df
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -250,7 +228,6 @@ msgstr ""
"კავშირი მონაცემთა წყაროსთან არ შედგა.\n"
"მანამ სანამ თქვენ გააგრძელებთ, შეამოწმეთ დაყენებული პარამეტრები, ან (წინა გვერდზე) აირჩიეთ სხვა მონაცემთა წყაროს ტიპი."
-#. 3Vhd
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -264,7 +241,6 @@ msgstr ""
"გარე მონაცემთა წყარო რომელიც თქვენ აიჩეთ შეიცავს ერთზე მეტ მისამართების წიგნს .\n"
"გთხოვთ აირჩიოთ რომელმათგანთან სურთ ძირითადად მშაობა:"
-#. oTnN
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -284,7 +260,6 @@ msgstr ""
"\n"
"ახალი დიალოგის გასახსნელად, სადაც შეიყვანთ მონაცემთა თქვენი წყაროს პარამეტრებს, დააჭირეთ ქვემოთ მოცემულ ღილაკს."
-#. YNt9
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -294,7 +269,6 @@ msgctxt ""
msgid "Field Assignment"
msgstr "ველის მინიჭება"
-#. e@G8
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -310,7 +284,6 @@ msgstr ""
"\n"
"ახლა შეიყვანეთ სახელი, რომლითაც გსურთ დაარეგისტრიროთ მონაცემთა წყარო %PRODUCTNAME -ში."
-#. WJF6
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -320,7 +293,6 @@ msgctxt ""
msgid "Location"
msgstr "ადგილმდებარეობა"
-#. a.A8
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -330,7 +302,6 @@ msgctxt ""
msgid "Browse..."
msgstr "მოძიება..."
-#. kmv1
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -340,7 +311,6 @@ msgctxt ""
msgid "Make this address book available to all modules in %PRODUCTNAME."
msgstr "გახადეთ ეს მისამართების წიგნი ხელმისაწვდომი ყველა მოდულისათვის %PRODUCTNAME-ში."
-#. y47[
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -350,7 +320,6 @@ msgctxt ""
msgid "Address book name"
msgstr "მონაცემთა წიგნის სახელი"
-#. dv^{
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -360,7 +329,6 @@ msgctxt ""
msgid "Another data source already has this name. As data sources have to have globally unique names, you need to choose another one."
msgstr "სხვა მონაცემთა წყაროს გააჩნია ეს სახელი. მონაცემთა წყაროს როგორც ასეთს უნდა ქონდეს უნიკალური სახელი, თქვენ უნდა აირჩიოთ რაიმე სხა."
-#. SDu;
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -369,7 +337,6 @@ msgctxt ""
msgid "Please select a type of address book."
msgstr "გთხოვთ მონიშვნოთ მისამართების წიგნის ტიპი."
-#. B=Hq
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -382,7 +349,6 @@ msgstr ""
"მონაცემთა წყარო არ შეიცას არცერთ ცხრილს.\n"
"გსურ დააყენოთ ის როგორც მისამართების მონაცემთა წყარო, სადმე?"
-#. I07?
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -393,7 +359,6 @@ msgid ""
"Do you want to set it up as an address data source, anyway?"
msgstr ""
-#. JX@8
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -402,7 +367,6 @@ msgctxt ""
msgid "Addresses"
msgstr "მისამართები"
-#. angg
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -411,7 +375,6 @@ msgctxt ""
msgid "Create Address Data Source"
msgstr "მისამართების მონაცემთა წყაროს შექმნა"
-#. ?E#@
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -420,7 +383,6 @@ msgctxt ""
msgid "The connection could not be established."
msgstr "კაშირი ვერ დამყარდა."
-#. 0q1K
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -429,7 +391,6 @@ msgctxt ""
msgid "Please check the settings made for the data source."
msgstr "გთხოვთ შეამოწმოთ დაყენებული პარამერები მონაცემთა წყაროსათვის."
-#. GOTt
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -438,7 +399,6 @@ msgctxt ""
msgid "Address Data - Field Assignment"
msgstr "მისამართების მონაცემების - ველის გადანაწილება"
-#. 3r2n
#: abspilot.src
msgctxt ""
"abspilot.src\n"
diff --git a/source/ka/extensions/source/bibliography.po b/source/ka/extensions/source/bibliography.po
index 33b5a046c27..313ecfce58d 100644
--- a/source/ka/extensions/source/bibliography.po
+++ b/source/ka/extensions/source/bibliography.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-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Rbhw
#: datman.src
msgctxt ""
"datman.src\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "Column names"
msgstr "სვეტის სახელწოდება"
-#. ItOt
#: datman.src
msgctxt ""
"datman.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "<none>"
msgstr "<არცერთი>"
-#. 4hv1
#: datman.src
msgctxt ""
"datman.src\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "Column Layout for Table %1"
msgstr "სვეტის განლაგება %1 ცხრილისათვის"
-#. lzUI
#: datman.src
msgctxt ""
"datman.src\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "Entry"
msgstr "ჩანაწერი"
-#. K=~*
#: datman.src
msgctxt ""
"datman.src\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "Choose Data Source"
msgstr "აირჩიე მონაცემთა წყარო"
-#. H25O
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "Table"
msgstr "ცხრილი"
-#. mlEM
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -83,7 +76,6 @@ msgctxt ""
msgid "Search Key"
msgstr "ძებნის გასაღები"
-#. $WWh
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -93,7 +85,6 @@ msgctxt ""
msgid "AutoFilter"
msgstr "ავტოფილტრი"
-#. /bA7
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -103,7 +94,6 @@ msgctxt ""
msgid "Standard Filter"
msgstr "სტანდარტული ფილტრი"
-#. ^rxA
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -113,7 +103,6 @@ msgctxt ""
msgid "Remove Filter"
msgstr "ფილტრის მოშორება"
-#. I7e}
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -123,7 +112,6 @@ msgctxt ""
msgid "Column Arrangement"
msgstr "სვეტის განლაგება"
-#. pr!1
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -133,7 +121,6 @@ msgctxt ""
msgid "Data Source"
msgstr "მონაცემთა წყარო"
-#. Kp#/
#: bib.src
msgctxt ""
"bib.src\n"
@@ -142,7 +129,6 @@ msgctxt ""
msgid "Field selection:"
msgstr "ველის შერჩევა:"
-#. !{]?
#: bib.src
msgctxt ""
"bib.src\n"
@@ -151,7 +137,6 @@ msgctxt ""
msgid "Table;Query;Sql;Sql [Native]"
msgstr "ცხრილი;მოთხოვნა;Sql;Sql [Native]"
-#. Npkk
#: bib.src
msgctxt ""
"bib.src\n"
@@ -160,7 +145,6 @@ msgctxt ""
msgid "Bibliography Database"
msgstr "ბიბლიოგრაფიული მონაცემთა ბაზა"
-#. 3iZl
#: bib.src
msgctxt ""
"bib.src\n"
@@ -169,7 +153,6 @@ msgctxt ""
msgid "Do you want to edit the column arrangement?"
msgstr "გსურთ სვეტების განლაგების რედაქტირება?"
-#. _;+#
#: sections.src
msgctxt ""
"sections.src\n"
@@ -179,7 +162,6 @@ msgctxt ""
msgid "The following column names could not be assigned:\n"
msgstr "სვეტებს შემდეგი სახელები ვერ ენიჭება:\n"
-#. ;*(N
#: sections.src
msgctxt ""
"sections.src\n"
@@ -189,7 +171,6 @@ msgctxt ""
msgid "Article"
msgstr "სტატია"
-#. 1fmq
#: sections.src
msgctxt ""
"sections.src\n"
@@ -199,7 +180,6 @@ msgctxt ""
msgid "Book"
msgstr "წიგნი"
-#. cD62
#: sections.src
msgctxt ""
"sections.src\n"
@@ -209,7 +189,6 @@ msgctxt ""
msgid "Brochures"
msgstr "ბროშურა"
-#. [.Aq
#: sections.src
msgctxt ""
"sections.src\n"
@@ -219,7 +198,6 @@ msgctxt ""
msgid "Conference proceedings"
msgstr "კონფერენციის საქციელი"
-#. p*hM
#: sections.src
msgctxt ""
"sections.src\n"
@@ -229,7 +207,6 @@ msgctxt ""
msgid "Book excerpt"
msgstr "წიგნის ამონარიდი"
-#. JdB*
#: sections.src
msgctxt ""
"sections.src\n"
@@ -239,7 +216,6 @@ msgctxt ""
msgid "Book excerpt with title"
msgstr "წიგნის ამონარიდი სათაურით"
-#. 8y.1
#: sections.src
msgctxt ""
"sections.src\n"
@@ -249,7 +225,6 @@ msgctxt ""
msgid "Conference proceedings"
msgstr "კონფერენციის საქციელი"
-#. JH,h
#: sections.src
msgctxt ""
"sections.src\n"
@@ -259,7 +234,6 @@ msgctxt ""
msgid "Journal"
msgstr "ჟურნალი"
-#. Tl@B
#: sections.src
msgctxt ""
"sections.src\n"
@@ -269,7 +243,6 @@ msgctxt ""
msgid "Techn. documentation"
msgstr "ტექნიკური დოკუმენტაცია"
-#. =rwC
#: sections.src
msgctxt ""
"sections.src\n"
@@ -279,7 +252,6 @@ msgctxt ""
msgid "Thesis"
msgstr "თეზისები"
-#. }C\Z
#: sections.src
msgctxt ""
"sections.src\n"
@@ -289,7 +261,6 @@ msgctxt ""
msgid "Miscellaneous"
msgstr "სხვადასხვა"
-#. 8zYB
#: sections.src
msgctxt ""
"sections.src\n"
@@ -299,7 +270,6 @@ msgctxt ""
msgid "Dissertation"
msgstr "დისერტაცია"
-#. wb((
#: sections.src
msgctxt ""
"sections.src\n"
@@ -309,7 +279,6 @@ msgctxt ""
msgid "Conference proceedings"
msgstr "კონფერენციის საქციელი"
-#. 0G{o
#: sections.src
msgctxt ""
"sections.src\n"
@@ -319,7 +288,6 @@ msgctxt ""
msgid "Research report"
msgstr "კვლევის ანგარიში"
-#. t03R
#: sections.src
msgctxt ""
"sections.src\n"
@@ -329,7 +297,6 @@ msgctxt ""
msgid "Unpublished"
msgstr "გამოუქვეყნებელი"
-#. bKkA
#: sections.src
msgctxt ""
"sections.src\n"
@@ -339,7 +306,6 @@ msgctxt ""
msgid "e-mail"
msgstr "ელფოსტა"
-#. {\=i
#: sections.src
msgctxt ""
"sections.src\n"
@@ -349,7 +315,6 @@ msgctxt ""
msgid "WWW document"
msgstr "WWW დოკუმენტი"
-#. lK:k
#: sections.src
msgctxt ""
"sections.src\n"
@@ -359,7 +324,6 @@ msgctxt ""
msgid "User-defined1"
msgstr "მომხმარებლის მიერ განსაზღვრული1"
-#. ,fWi
#: sections.src
msgctxt ""
"sections.src\n"
@@ -369,7 +333,6 @@ msgctxt ""
msgid "User-defined2"
msgstr "მომხმარებლის მიერ განსაზღვრული2"
-#. -3Q0
#: sections.src
msgctxt ""
"sections.src\n"
@@ -379,7 +342,6 @@ msgctxt ""
msgid "User-defined3"
msgstr "მომხმარებლის მიერ განსაზღვრული3"
-#. dUYp
#: sections.src
msgctxt ""
"sections.src\n"
@@ -389,7 +351,6 @@ msgctxt ""
msgid "User-defined4"
msgstr "მომხმარებლის მიერ განსაზღვრული4"
-#. eDcN
#: sections.src
msgctxt ""
"sections.src\n"
@@ -399,7 +360,6 @@ msgctxt ""
msgid "User-defined5"
msgstr "მომხმარებლის მიერ განსაზღვრული5"
-#. ;|`$
#: sections.src
msgctxt ""
"sections.src\n"
@@ -408,7 +368,6 @@ msgctxt ""
msgid "General"
msgstr "ზოგადი"
-#. k4y+
#: sections.src
msgctxt ""
"sections.src\n"
@@ -418,7 +377,6 @@ msgctxt ""
msgid "Insert Section..."
msgstr "ჩასვი განყოფილება... "
-#. e(F]
#: sections.src
msgctxt ""
"sections.src\n"
@@ -428,7 +386,6 @@ msgctxt ""
msgid "Delete Section..."
msgstr "წაშალე განყოფილება..."
-#. v$!9
#: sections.src
msgctxt ""
"sections.src\n"
@@ -438,7 +395,6 @@ msgctxt ""
msgid "Modify Name..."
msgstr "შეცვალე სახელი..."
-#. Vtq4
#: sections.src
msgctxt ""
"sections.src\n"
@@ -447,7 +403,6 @@ msgctxt ""
msgid "~Short name"
msgstr "~მოკლე სახელი"
-#. I3)Y
#: sections.src
msgctxt ""
"sections.src\n"
@@ -456,7 +411,6 @@ msgctxt ""
msgid "~Type"
msgstr "~ტიპი"
-#. Y#d(
#: sections.src
msgctxt ""
"sections.src\n"
@@ -465,7 +419,6 @@ msgctxt ""
msgid "~Year"
msgstr "წ~ელი"
-#. DjB2
#: sections.src
msgctxt ""
"sections.src\n"
@@ -474,7 +427,6 @@ msgctxt ""
msgid "Author(s)"
msgstr "ავტორ(ები)ი"
-#. PHsi
#: sections.src
msgctxt ""
"sections.src\n"
@@ -483,7 +435,6 @@ msgctxt ""
msgid "Tit~le"
msgstr "სათა~ური"
-#. *,8A
#: sections.src
msgctxt ""
"sections.src\n"
@@ -492,7 +443,6 @@ msgctxt ""
msgid "~Publisher"
msgstr "~გამომცემელი"
-#. Z__r
#: sections.src
msgctxt ""
"sections.src\n"
@@ -501,7 +451,6 @@ msgctxt ""
msgid "A~ddress"
msgstr "~მისამართი"
-#. ;ep$
#: sections.src
msgctxt ""
"sections.src\n"
@@ -510,7 +459,6 @@ msgctxt ""
msgid "~ISBN"
msgstr "~ISBN"
-#. r*ku
#: sections.src
msgctxt ""
"sections.src\n"
@@ -519,7 +467,6 @@ msgctxt ""
msgid "~Chapter"
msgstr "თ~ავი"
-#. TmGf
#: sections.src
msgctxt ""
"sections.src\n"
@@ -528,7 +475,6 @@ msgctxt ""
msgid "Pa~ge(s)"
msgstr "გ~ვერდ(ებ)ი"
-#. bPZS
#: sections.src
msgctxt ""
"sections.src\n"
@@ -537,7 +483,6 @@ msgctxt ""
msgid "Editor"
msgstr "რედაქტორი"
-#. dPQC
#: sections.src
msgctxt ""
"sections.src\n"
@@ -546,7 +491,6 @@ msgctxt ""
msgid "Ed~ition"
msgstr "გა~მოცემა"
-#. DF`,
#: sections.src
msgctxt ""
"sections.src\n"
@@ -555,7 +499,6 @@ msgctxt ""
msgid "~Book title"
msgstr "წ~იგნის სათაური"
-#. 7,dY
#: sections.src
msgctxt ""
"sections.src\n"
@@ -564,7 +507,6 @@ msgctxt ""
msgid "Volume"
msgstr "ტომი"
-#. @b{R
#: sections.src
msgctxt ""
"sections.src\n"
@@ -573,7 +515,6 @@ msgctxt ""
msgid "Publication t~ype"
msgstr "პუბლიკაციი ~ტიპი"
-#. X8VI
#: sections.src
msgctxt ""
"sections.src\n"
@@ -582,7 +523,6 @@ msgctxt ""
msgid "Organi~zation"
msgstr "ორგანი~ზაცია"
-#. *?bv
#: sections.src
msgctxt ""
"sections.src\n"
@@ -591,7 +531,6 @@ msgctxt ""
msgid "Instit~ution"
msgstr "ინს~ტიტუტი"
-#. 7UuL
#: sections.src
msgctxt ""
"sections.src\n"
@@ -600,7 +539,6 @@ msgctxt ""
msgid "University"
msgstr "უნივერსიტეტი"
-#. [A!K
#: sections.src
msgctxt ""
"sections.src\n"
@@ -609,7 +547,6 @@ msgctxt ""
msgid "Type of re~port"
msgstr "ა~ნგარიშის ტიპი"
-#. Y9}k
#: sections.src
msgctxt ""
"sections.src\n"
@@ -618,7 +555,6 @@ msgctxt ""
msgid "~Month"
msgstr "თ~ვე"
-#. [1\(
#: sections.src
msgctxt ""
"sections.src\n"
@@ -627,7 +563,6 @@ msgctxt ""
msgid "~Journal"
msgstr "ჟ~ურნალი"
-#. sr\i
#: sections.src
msgctxt ""
"sections.src\n"
@@ -636,7 +571,6 @@ msgctxt ""
msgid "Numb~er"
msgstr "ნო~მერი"
-#. r;~e
#: sections.src
msgctxt ""
"sections.src\n"
@@ -645,7 +579,6 @@ msgctxt ""
msgid "Se~ries"
msgstr "სე~რია"
-#. L|jB
#: sections.src
msgctxt ""
"sections.src\n"
@@ -654,7 +587,6 @@ msgctxt ""
msgid "Ann~otation"
msgstr "ა~ნოტაცია"
-#. ]bo0
#: sections.src
msgctxt ""
"sections.src\n"
@@ -663,7 +595,6 @@ msgctxt ""
msgid "~Note"
msgstr "შ~ენიშვნა"
-#. M*U:
#: sections.src
msgctxt ""
"sections.src\n"
@@ -672,7 +603,6 @@ msgctxt ""
msgid "URL"
msgstr "URL"
-#. FPm5
#: sections.src
msgctxt ""
"sections.src\n"
@@ -681,7 +611,6 @@ msgctxt ""
msgid "User-defined field ~1"
msgstr "მომხმარებლის მიერ განსაზღვრული ველი ~1"
-#. XKC]
#: sections.src
msgctxt ""
"sections.src\n"
@@ -690,7 +619,6 @@ msgctxt ""
msgid "User-defined field ~2"
msgstr "მომხმარებლის მიერ განსაზღვრული ველი ~2"
-#. _Eg/
#: sections.src
msgctxt ""
"sections.src\n"
@@ -699,7 +627,6 @@ msgctxt ""
msgid "User-defined field ~3"
msgstr "მომხმარებლის მიერ განსაზღვრული ველი ~3"
-#. #c=)
#: sections.src
msgctxt ""
"sections.src\n"
@@ -708,7 +635,6 @@ msgctxt ""
msgid "User-defined field ~4"
msgstr "მომხმარებლის მიერ განსაზღვრული ველი ~4"
-#. 7%j|
#: sections.src
msgctxt ""
"sections.src\n"
diff --git a/source/ka/extensions/source/dbpilots.po b/source/ka/extensions/source/dbpilots.po
index 712a0585b20..c5662f4019c 100644
--- a/source/ka/extensions/source/dbpilots.po
+++ b/source/ka/extensions/source/dbpilots.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-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. $j3G
#: gridpages.src
msgctxt ""
"gridpages.src\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "Table element"
msgstr "ცხრილის ელემენტი"
-#. :_jY
#: gridpages.src
msgctxt ""
"gridpages.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Existing fields"
msgstr "არსებული ველები"
-#. #:,M
#: gridpages.src
msgctxt ""
"gridpages.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Selected fields"
msgstr "არჩეული ველები"
-#. 1o.W
#: gridpages.src
msgctxt ""
"gridpages.src\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "Field Selection"
msgstr "ველის მონიშვნა"
-#. YRh3
#: gridpages.src
msgctxt ""
"gridpages.src\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid " (Date)"
msgstr " (თარიღი)"
-#. f6a;
#: gridpages.src
msgctxt ""
"gridpages.src\n"
@@ -72,7 +66,6 @@ msgctxt ""
msgid " (Time)"
msgstr " (დრო)"
-#. ssgQ
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -82,7 +75,6 @@ msgctxt ""
msgid "Data"
msgstr "მონაცემები"
-#. (Gpo
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -104,7 +96,6 @@ msgstr ""
"\n"
"გთხოვთ გაითვალისწინოთ, რომ ამ გვერდზე დაყენებული პარამეტრები ძალაში შევა მყისიერად ამ გვერდის დატოვებისთანავე."
-#. NusL
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -114,7 +105,6 @@ msgctxt ""
msgid "~Data source:"
msgstr "~მონაცემთა წყარო:"
-#. LWd7
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -124,7 +114,6 @@ msgctxt ""
msgid "~..."
msgstr "~..."
-#. JB;F
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -134,7 +123,6 @@ msgctxt ""
msgid "~Table / Query:"
msgstr "~ცხრილი / მოთხოვნა:"
-#. Or?S
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -143,7 +131,6 @@ msgctxt ""
msgid "Data"
msgstr "მონაცემები"
-#. b3fR
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -153,7 +140,6 @@ msgctxt ""
msgid "Do you want to save the value in a database field?"
msgstr "გსურთ შეინახოთ მნიშვნელობა მონაცემთა ბაზის ველში?"
-#. jj8n
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -163,7 +149,6 @@ msgctxt ""
msgid "~Yes, I want to save it in the following database field:"
msgstr "~დიახ, მე მსურს მისი შენახვა შემდეგ მონაცემთა ბაზის ველში:"
-#. c~:7
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -173,7 +158,6 @@ msgctxt ""
msgid "~No, I only want to save the value in the form."
msgstr "~არა, მე მხოლოდ მინდა ფორმაში მნიშვნელობის შენახვა."
-#. `:,h
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -182,7 +166,6 @@ msgctxt ""
msgid "Database Field"
msgstr "მონაცემთა ბაზის ველი"
-#. %E`E
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -192,7 +175,6 @@ msgctxt ""
msgid "Form"
msgstr "ფორმა"
-#. f7bX
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -202,7 +184,6 @@ msgctxt ""
msgid "Data source"
msgstr "მონაცემთა წყარო"
-#. W+#i
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -212,7 +193,6 @@ msgctxt ""
msgid "Content type"
msgstr "შინაარსის ტიპი"
-#. gz2*
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -222,7 +202,6 @@ msgctxt ""
msgid "Content"
msgstr "შინაარსი"
-#. +`K`
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -231,7 +210,6 @@ msgctxt ""
msgid "Table"
msgstr "ცხრილი"
-#. ku*E
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -240,7 +218,6 @@ msgctxt ""
msgid "Query"
msgstr "მოთხოვნა"
-#. YUJ,
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -249,7 +226,6 @@ msgctxt ""
msgid "SQL command"
msgstr "SQL ბრძანება"
-#. P$*+
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -259,7 +235,6 @@ msgctxt ""
msgid "Control"
msgstr "კონტროლი"
-#. BU8b
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -277,7 +252,6 @@ msgstr ""
"\n"
"აირჩიეთ ცხრილი, რომლიდანაც მონაცემები გამოყენებული იქნება როგორც სიის შინაარსის ბაზისი:"
-#. l`Pq
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -286,7 +260,6 @@ msgctxt ""
msgid "Table Selection"
msgstr "ცხრილის მონიშვნა"
-#. sd!v
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -296,7 +269,6 @@ msgctxt ""
msgid "Existing fields"
msgstr "არსებული ველები"
-#. 8nq/
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -306,7 +278,6 @@ msgctxt ""
msgid "Display field"
msgstr "ველის ჩვენება"
-#. V#k%
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -316,7 +287,6 @@ msgctxt ""
msgid "The contents of the field selected will be shown in the combo box list."
msgstr "არჩეული ველის შინაარსი გამოჩნდება როგორც კომბო-ველის სია."
-#. n4cy
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -326,7 +296,6 @@ msgctxt ""
msgid "The contents of the selected field will be shown in the list box if the linked fields are identical."
msgstr "თუ დაკავშირებული ველები იდენტურია, მონიშნული ველის შინაარსი სიის ველიში გამოჩნდება."
-#. KvoZ
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -335,7 +304,6 @@ msgctxt ""
msgid "Field Selection"
msgstr "ველის მონიშვნა"
-#. ,`\f
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -345,7 +313,6 @@ msgctxt ""
msgid "This is where you select fields with matching contents so that the value from the display field will be shown."
msgstr ""
-#. jBo1
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -355,7 +322,6 @@ msgctxt ""
msgid "Field from the ~Value Table"
msgstr "ველი ~მნიშვნელობის ცხრილიდან"
-#. ?dLF
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -365,7 +331,6 @@ msgctxt ""
msgid "Field from the ~List Table"
msgstr "ველი ~სიის ცხრილიდან"
-#. Lu=F
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -374,7 +339,6 @@ msgctxt ""
msgid "Field Link"
msgstr "ველის ბმული"
-#. ,XBB
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -383,7 +347,6 @@ msgctxt ""
msgid "You can either save the value of the combo box in a database field or use it for display purposes."
msgstr "თქვენ შეგიძლიათ შეინახოთ კომბო-ველის მნიშვნელობა მონაცემთა ბაზაში ან გამოიყენოთ იგი ჩვენებისთვის."
-#. *d$D
#: dbpilots.src
msgctxt ""
"dbpilots.src\n"
@@ -392,7 +355,6 @@ msgctxt ""
msgid "Group Element Wizard"
msgstr "ჯგუფის ელემენტების ოსტატი"
-#. ^P)8
#: dbpilots.src
msgctxt ""
"dbpilots.src\n"
@@ -401,7 +363,6 @@ msgctxt ""
msgid "Table Element Wizard"
msgstr "ცხრილის ელემენტების გიდი"
-#. HVB\
#: dbpilots.src
msgctxt ""
"dbpilots.src\n"
@@ -410,7 +371,6 @@ msgctxt ""
msgid "List Box Wizard"
msgstr "სიის ველის გიდი"
-#. Sf5W
#: dbpilots.src
msgctxt ""
"dbpilots.src\n"
@@ -419,7 +379,6 @@ msgctxt ""
msgid "Combo Box Wizard"
msgstr "კომბო-ველის გიდი"
-#. D5#]
#: dbpilots.src
msgctxt ""
"dbpilots.src\n"
@@ -428,7 +387,6 @@ msgctxt ""
msgid "The table connection to the data source could not be established."
msgstr "ცხრილის კავშირი მონაცემთა წყაროსთან ვერ მყარდება."
-#. yhZH
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -438,7 +396,6 @@ msgctxt ""
msgid "Which ~names do you want to give the option fields?"
msgstr "რა ~სახელები გინდათ მიანიჭოთ ვარიანტის ველებს?"
-#. |m2@
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -448,7 +405,6 @@ msgctxt ""
msgid "~Option fields"
msgstr "~პარამეტრების ველები"
-#. RM_V
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -457,7 +413,6 @@ msgctxt ""
msgid "Data"
msgstr "მონაცემები"
-#. q]+)
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -467,7 +422,6 @@ msgctxt ""
msgid "Should one option field be selected as a default?"
msgstr "იქნეს ერთი ვარიანტის ველი არჩეული როგორც ძირითადი?"
-#. ^\h?
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -477,7 +431,6 @@ msgctxt ""
msgid "~Yes, the following:"
msgstr "~დიახ, შემდეგი:"
-#. pa#G
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -487,7 +440,6 @@ msgctxt ""
msgid "No, one particular field is not going to be selected."
msgstr "არა, ერთი კონკრეტული ველი არ იქნება არჩეული."
-#. w!)y
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -496,7 +448,6 @@ msgctxt ""
msgid "Default Field Selection"
msgstr "ძირითადი ველის არჩევა"
-#. G3K[
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -506,7 +457,6 @@ msgctxt ""
msgid "When you select an option, the option group is given a specific value."
msgstr "როდესაც აირჩევთ ვარიანტს, ვარიანტების ჯგუფს ეძლევა სპეციფიკური მნიშვნელობა."
-#. S.}}
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -516,7 +466,6 @@ msgctxt ""
msgid "Which ~value do you want to assign to each option?"
msgstr "რა ~მნიშვნელობა გინდათ მიანიჭოთ თითოეულ ვარიანტს?"
-#. 36TA
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -526,7 +475,6 @@ msgctxt ""
msgid "~Option fields"
msgstr "~პარამეტრების ველები"
-#. n)Xv
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -535,7 +483,6 @@ msgctxt ""
msgid "Field Values"
msgstr "ველის მნიშვნელობები"
-#. r_Vt
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -545,7 +492,6 @@ msgctxt ""
msgid "Which ~caption is to be given to your option group?"
msgstr "რომელი ~წარწერა უნდა დაერქვას თქვენს ვარიანტების ჯგუფს?"
-#. Ks;\
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -555,7 +501,6 @@ msgctxt ""
msgid "These were all details needed to create the option group."
msgstr "ეს იყო ვარიანტების ჯგუფის შესაქმნელად საჭირო ყველა დეტალი."
-#. %B*Q
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -564,7 +509,6 @@ msgctxt ""
msgid "Create Option Group"
msgstr "შექმენი ვარიანტების ჯგუფი"
-#. 8fp0
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
diff --git a/source/ka/extensions/source/propctrlr.po b/source/ka/extensions/source/propctrlr.po
index a5cad5df3ed..a71307bf8bb 100644
--- a/source/ka/extensions/source/propctrlr.po
+++ b/source/ka/extensions/source/propctrlr.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\n"
"PO-Revision-Date: 2011-04-12 00:27+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. s^Me
#: newdatatype.src
msgctxt ""
"newdatatype.src\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "Type a name for the new data type:"
msgstr "ჩაბეჭდეთ ახალი მონაცემთა ტიპის სახელი:"
-#. eMQ`
#: newdatatype.src
msgctxt ""
"newdatatype.src\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "New Data Type"
msgstr "ახალი მონაცემთა ტიპი"
-#. gtRM
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -47,7 +44,6 @@ msgstr ""
"გნებავთ მონაცემთა ტიპის '#type#' თარგმნა ნიმუშიდან?\n"
"გახსოვდეთ, რომ ეს დააზიანებს ყველა კონტროლს დაკავშირებულს ამ მონაცემთა ტიპთან."
-#. rhqo
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -56,7 +52,6 @@ msgctxt ""
msgid "Button"
msgstr "ბურთულა"
-#. a$g)
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "Option Button"
msgstr "პარამეტრის ბურთულა"
-#. ;nYX
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -74,7 +68,6 @@ msgctxt ""
msgid "Check Box"
msgstr "თოლია"
-#. tPb3
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -83,7 +76,6 @@ msgctxt ""
msgid "Label Field"
msgstr "წარწერის ველი"
-#. a]FH
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -92,7 +84,6 @@ msgctxt ""
msgid "Group Box"
msgstr "ჯგუფის ველი"
-#. bcKT
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -101,7 +92,6 @@ msgctxt ""
msgid "Text Box"
msgstr "ტესტური ველი"
-#. K2K~
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -110,7 +100,6 @@ msgctxt ""
msgid "Formatted Field"
msgstr "ფორმატირებული ველი"
-#. BP7h
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -119,7 +108,6 @@ msgctxt ""
msgid "List Box"
msgstr "სიის ველი"
-#. +#b|
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -128,7 +116,6 @@ msgctxt ""
msgid "Combo Box"
msgstr "კომბო ველი"
-#. +C`#
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -137,7 +124,6 @@ msgctxt ""
msgid "Image Button"
msgstr "გამოსახულების ბურთულა"
-#. O)BT
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -146,7 +132,6 @@ msgctxt ""
msgid "Hidden Control"
msgstr "დამალული კონტროლი"
-#. jRM[
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -155,7 +140,6 @@ msgctxt ""
msgid "Control (unknown type)"
msgstr "კონტროლი (უცნობი ტიპი)"
-#. ),$Q
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -164,7 +148,6 @@ msgctxt ""
msgid "Image Control"
msgstr "გამოსახულების კონტროლი"
-#. eo0;
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -173,7 +156,6 @@ msgctxt ""
msgid "File Selection"
msgstr "ფაილის მონიშვნა"
-#. ~|#\
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -182,7 +164,6 @@ msgctxt ""
msgid "Date Field"
msgstr "მონაცემთა ველი"
-#. `qPz
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -191,7 +172,6 @@ msgctxt ""
msgid "Time Field"
msgstr "დროის ველი"
-#. -lTu
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -200,7 +180,6 @@ msgctxt ""
msgid "Numeric Field"
msgstr "ნუმერაციული ვალი"
-#. \py,
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -209,7 +188,6 @@ msgctxt ""
msgid "Currency Field"
msgstr "ვალუტის ველი"
-#. FWrU
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -218,7 +196,6 @@ msgctxt ""
msgid "Pattern Field"
msgstr "შაბლონის ველი"
-#. J|/E
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -227,7 +204,6 @@ msgctxt ""
msgid "Table Control "
msgstr "ცხრილის კონტროლი "
-#. p$6p
#: taborder.src
msgctxt ""
"taborder.src\n"
@@ -237,7 +213,6 @@ msgctxt ""
msgid "Controls"
msgstr "კონტროლი"
-#. a?R:
#: taborder.src
msgctxt ""
"taborder.src\n"
@@ -247,7 +222,6 @@ msgctxt ""
msgid "Move Up"
msgstr "გადაადგილება ზემოთ"
-#. `.-3
#: taborder.src
msgctxt ""
"taborder.src\n"
@@ -257,7 +231,6 @@ msgctxt ""
msgid "Move Down"
msgstr "გადაადგილება ზემოთ"
-#. NGJK
#: taborder.src
msgctxt ""
"taborder.src\n"
@@ -267,7 +240,6 @@ msgctxt ""
msgid "Automatic Sort"
msgstr "ავტომატური სორტირება"
-#. Y)jO
#: taborder.src
msgctxt ""
"taborder.src\n"
@@ -276,7 +248,6 @@ msgctxt ""
msgid "Tab Order"
msgstr "ფოკუსის მიმდევრობა"
-#. 9@:e
#: formlinkdialog.src
msgctxt ""
"formlinkdialog.src\n"
@@ -286,7 +257,6 @@ msgctxt ""
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "ქვეფორმები შეიძლება გამოყენებულ იქნას მასტერ ფორმის შესახებ მიმდინარე ჩანაწერის დეტალური მონაცემების საჩვენებლად."
-#. njzO
#: formlinkdialog.src
msgctxt ""
"formlinkdialog.src\n"
@@ -295,7 +265,6 @@ msgctxt ""
msgid "Link fields"
msgstr "კავშირის ველები"
-#. `%6Y
#: formlinkdialog.src
msgctxt ""
"formlinkdialog.src\n"
@@ -304,7 +273,6 @@ msgctxt ""
msgid "Suggest"
msgstr "შეთავაზება"
-#. l?+o
#: formlinkdialog.src
msgctxt ""
"formlinkdialog.src\n"
@@ -313,7 +281,6 @@ msgctxt ""
msgid "Sub Form"
msgstr "ქვეფორმა"
-#. xdX1
#: formlinkdialog.src
msgctxt ""
"formlinkdialog.src\n"
@@ -323,7 +290,6 @@ msgid "Master Form"
msgstr "მთავარი ფორმა"
#. # will be replace with a name.
-#. VSK=
#: formlinkdialog.src
msgctxt ""
"formlinkdialog.src\n"
@@ -332,7 +298,6 @@ msgctxt ""
msgid "The columns of '#' could not be retrieved."
msgstr "ქვეფორმის სვეტები ვერ მოიძია."
-#. -4:3
#: formres.src
msgctxt ""
"formres.src\n"
@@ -341,7 +306,6 @@ msgctxt ""
msgid "Edit mask"
msgstr "ნიღბის შეცვლა"
-#. _[Y%
#: formres.src
msgctxt ""
"formres.src\n"
@@ -350,7 +314,6 @@ msgctxt ""
msgid "Literal mask"
msgstr "პირდაპირი ნიღაბი"
-#. C_~0
#: formres.src
msgctxt ""
"formres.src\n"
@@ -359,7 +322,6 @@ msgctxt ""
msgid "Read-only"
msgstr "მხოლოდ წაკითხვადი"
-#. wp|I
#: formres.src
msgctxt ""
"formres.src\n"
@@ -368,7 +330,6 @@ msgctxt ""
msgid "Enabled"
msgstr "შესაძლებლობის მიცემა"
-#. ,ML=
#: formres.src
#, fuzzy
msgctxt ""
@@ -378,7 +339,6 @@ msgctxt ""
msgid "Visible"
msgstr "~ხილული"
-#. C{q5
#: formres.src
msgctxt ""
"formres.src\n"
@@ -387,7 +347,6 @@ msgctxt ""
msgid "AutoFill"
msgstr "ავტო შევსება"
-#. \#!;
#: formres.src
msgctxt ""
"formres.src\n"
@@ -396,7 +355,6 @@ msgctxt ""
msgid "Line count"
msgstr "სტრიქონის დათვლა"
-#. :w)d
#: formres.src
msgctxt ""
"formres.src\n"
@@ -405,7 +363,6 @@ msgctxt ""
msgid "Max. text length"
msgstr "მაქს. ტექსტის სიგრძე"
-#. S?#_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -414,7 +371,6 @@ msgctxt ""
msgid "Spin Button"
msgstr "მარეგულირებელი ღილაკი"
-#. c9H)
#: formres.src
msgctxt ""
"formres.src\n"
@@ -423,7 +379,6 @@ msgctxt ""
msgid "Strict format"
msgstr "მკაცრი ფორმატი"
-#. S?Nz
#: formres.src
msgctxt ""
"formres.src\n"
@@ -432,7 +387,6 @@ msgctxt ""
msgid "Thousands separator"
msgstr "ათასების გამყოფი"
-#. uUsL
#: formres.src
#, fuzzy
msgctxt ""
@@ -442,7 +396,6 @@ msgctxt ""
msgid "Printable"
msgstr "~ბეჭდვადი"
-#. 9svO
#: formres.src
msgctxt ""
"formres.src\n"
@@ -451,7 +404,6 @@ msgctxt ""
msgid "URL"
msgstr "URL"
-#. =B]w
#: formres.src
msgctxt ""
"formres.src\n"
@@ -460,7 +412,6 @@ msgctxt ""
msgid "Frame"
msgstr "ჩარჩო"
-#. \;fA
#: formres.src
msgctxt ""
"formres.src\n"
@@ -469,7 +420,6 @@ msgctxt ""
msgid "Help text"
msgstr "დახმარების ტექსტი"
-#. @[oe
#: formres.src
msgctxt ""
"formres.src\n"
@@ -478,7 +428,6 @@ msgctxt ""
msgid "Help URL"
msgstr "დახმარების URL"
-#. 5;yD
#: formres.src
msgctxt ""
"formres.src\n"
@@ -487,7 +436,6 @@ msgctxt ""
msgid "Additional information"
msgstr "დამატებითი ინფორმაცია"
-#. 8V1v
#: formres.src
msgctxt ""
"formres.src\n"
@@ -496,7 +444,6 @@ msgctxt ""
msgid "Password character"
msgstr "პაროლის თვისებები"
-#. {JkO
#: formres.src
msgctxt ""
"formres.src\n"
@@ -505,7 +452,6 @@ msgctxt ""
msgid "Tristate"
msgstr "სამ მდგომარეობიანი"
-#. XPsV
#: formres.src
msgctxt ""
"formres.src\n"
@@ -514,7 +460,6 @@ msgctxt ""
msgid "Empty string is NULL"
msgstr "ცარიელი სტრიქონი არის NULL"
-#. gKIe
#: formres.src
msgctxt ""
"formres.src\n"
@@ -523,7 +468,6 @@ msgctxt ""
msgid "Decimal accuracy"
msgstr "ათობითი სიზუსტე"
-#. vDV_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -532,7 +476,6 @@ msgctxt ""
msgid "Graphics"
msgstr "გრაფიკები"
-#. Y6h_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -541,7 +484,6 @@ msgctxt ""
msgid "Default selection"
msgstr "სტანდარტის შერჩევა"
-#. {+kZ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -550,7 +492,6 @@ msgctxt ""
msgid "Default button"
msgstr "სტანდარტის ბურთულა"
-#. e9*B
#: formres.src
msgctxt ""
"formres.src\n"
@@ -559,7 +500,6 @@ msgctxt ""
msgid "Label Field"
msgstr "წარწერის ველი"
-#. h`vU
#: formres.src
msgctxt ""
"formres.src\n"
@@ -568,7 +508,6 @@ msgctxt ""
msgid "Label"
msgstr "ჭდე"
-#. )3wp
#: formres.src
msgctxt ""
"formres.src\n"
@@ -577,7 +516,6 @@ msgctxt ""
msgid "Alignment"
msgstr "გასწორება"
-#. YPNU
#: formres.src
msgctxt ""
"formres.src\n"
@@ -586,7 +524,6 @@ msgctxt ""
msgid "Vert. Alignment"
msgstr "ვერტ. სწორება"
-#. n9SR
#: formres.src
msgctxt ""
"formres.src\n"
@@ -596,7 +533,6 @@ msgctxt ""
msgid "Top"
msgstr "თავი"
-#. L!Y^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -606,7 +542,6 @@ msgctxt ""
msgid "Middle"
msgstr "შუა"
-#. r\~P
#: formres.src
msgctxt ""
"formres.src\n"
@@ -616,7 +551,6 @@ msgctxt ""
msgid "Bottom"
msgstr "ძირი"
-#. :K/s
#: formres.src
msgctxt ""
"formres.src\n"
@@ -625,7 +559,6 @@ msgctxt ""
msgid "Graphics alignment"
msgstr "გრაფიკების გასწორება"
-#. S[^Y
#: formres.src
msgctxt ""
"formres.src\n"
@@ -634,7 +567,6 @@ msgctxt ""
msgid "Font"
msgstr "შრიფტი"
-#. Aor5
#: formres.src
msgctxt ""
"formres.src\n"
@@ -643,7 +575,6 @@ msgctxt ""
msgid "Background color"
msgstr "ფონის ფერი"
-#. r8Bv
#: formres.src
msgctxt ""
"formres.src\n"
@@ -652,7 +583,6 @@ msgctxt ""
msgid "Border"
msgstr "საზღვარი"
-#. H05x
#: formres.src
msgctxt ""
"formres.src\n"
@@ -661,7 +591,6 @@ msgctxt ""
msgid "Icon size"
msgstr "ხატულის ზომა"
-#. lJf2
#: formres.src
msgctxt ""
"formres.src\n"
@@ -671,7 +600,6 @@ msgctxt ""
msgid "Small"
msgstr "მცირე"
-#. v.\*
#: formres.src
msgctxt ""
"formres.src\n"
@@ -681,7 +609,6 @@ msgctxt ""
msgid "Large"
msgstr "დიდი"
-#. k@aG
#: formres.src
msgctxt ""
"formres.src\n"
@@ -690,7 +617,6 @@ msgctxt ""
msgid "Positioning"
msgstr "პოზიცია"
-#. r@H`
#: formres.src
msgctxt ""
"formres.src\n"
@@ -699,7 +625,6 @@ msgctxt ""
msgid "Navigation"
msgstr "ნავიგაცია"
-#. 6D{T
#: formres.src
msgctxt ""
"formres.src\n"
@@ -708,7 +633,6 @@ msgctxt ""
msgid "Acting on a record"
msgstr "ჩანაწერის შესრულება"
-#. h{oJ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -717,7 +641,6 @@ msgctxt ""
msgid "Filtering / Sorting"
msgstr "ფილტრაცია/სორტირება"
-#. 0of2
#: formres.src
msgctxt ""
"formres.src\n"
@@ -726,7 +649,6 @@ msgctxt ""
msgid "Horizontal scroll bar"
msgstr "ჰორიზონტალური გადაადგილების ზოლი"
-#. !-Kj
#: formres.src
msgctxt ""
"formres.src\n"
@@ -735,7 +657,6 @@ msgctxt ""
msgid "Vertical scroll bar"
msgstr "ვერტიკალური გადაადგილების ზოლი"
-#. .G=Y
#: formres.src
msgctxt ""
"formres.src\n"
@@ -744,7 +665,6 @@ msgctxt ""
msgid "Word break"
msgstr "გადამთანი"
-#. M@V3
#: formres.src
msgctxt ""
"formres.src\n"
@@ -753,7 +673,6 @@ msgctxt ""
msgid "Multiline input"
msgstr "მრავლობითი შეტანა"
-#. uerX
#: formres.src
msgctxt ""
"formres.src\n"
@@ -762,7 +681,6 @@ msgctxt ""
msgid "Multiselection"
msgstr "რამდენიმე ასარჩევი"
-#. N0W=
#: formres.src
msgctxt ""
"formres.src\n"
@@ -771,7 +689,6 @@ msgctxt ""
msgid "Name"
msgstr "სახელი"
-#. *t]/
#: formres.src
msgctxt ""
"formres.src\n"
@@ -780,7 +697,6 @@ msgctxt ""
msgid "Group name"
msgstr ""
-#. ?8N/
#: formres.src
msgctxt ""
"formres.src\n"
@@ -789,7 +705,6 @@ msgctxt ""
msgid "Tab order"
msgstr "ტაბის ბრძანება"
-#. =xa@
#: formres.src
msgctxt ""
"formres.src\n"
@@ -798,7 +713,6 @@ msgctxt ""
msgid "Mouse wheel scroll"
msgstr ""
-#. i^O.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -807,7 +721,6 @@ msgctxt ""
msgid "Filter"
msgstr "ფილტრი"
-#. M^@9
#: formres.src
msgctxt ""
"formres.src\n"
@@ -816,7 +729,6 @@ msgctxt ""
msgid "Sort"
msgstr "სორტი"
-#. AXX0
#: formres.src
msgctxt ""
"formres.src\n"
@@ -825,7 +737,6 @@ msgctxt ""
msgid "Record marker"
msgstr "ჩანაწერის მარკერი"
-#. r-jp
#: formres.src
msgctxt ""
"formres.src\n"
@@ -834,7 +745,6 @@ msgctxt ""
msgid "Filter proposal"
msgstr "ფილტრის ვარიანტი"
-#. #|_O
#: formres.src
msgctxt ""
"formres.src\n"
@@ -843,7 +753,6 @@ msgctxt ""
msgid "Navigation bar"
msgstr "სანავიგაციო ზოლი"
-#. I*I9
#: formres.src
msgctxt ""
"formres.src\n"
@@ -852,7 +761,6 @@ msgctxt ""
msgid "Cycle"
msgstr "ციკლი"
-#. jek%
#: formres.src
msgctxt ""
"formres.src\n"
@@ -861,7 +769,6 @@ msgctxt ""
msgid "Tabstop"
msgstr "ტაბულაციის ნიშანი"
-#. ULD~
#: formres.src
msgctxt ""
"formres.src\n"
@@ -870,7 +777,6 @@ msgctxt ""
msgid "Data field"
msgstr "მონაცემთა ველი"
-#. _{S8
#: formres.src
msgctxt ""
"formres.src\n"
@@ -879,7 +785,6 @@ msgctxt ""
msgid "Dropdown"
msgstr "ჩამოშლა"
-#. #|^\
#: formres.src
msgctxt ""
"formres.src\n"
@@ -888,7 +793,6 @@ msgctxt ""
msgid "Bound field"
msgstr "ზღვრის ველი"
-#. 0z+)
#: formres.src
msgctxt ""
"formres.src\n"
@@ -897,7 +801,6 @@ msgctxt ""
msgid "List content"
msgstr "სიის შემადგენლობა"
-#. ~b3V
#: formres.src
msgctxt ""
"formres.src\n"
@@ -906,7 +809,6 @@ msgctxt ""
msgid "Type of list contents"
msgstr "სიის შემადგენლობის ტიპი"
-#. 0T[g
#: formres.src
msgctxt ""
"formres.src\n"
@@ -915,7 +817,6 @@ msgctxt ""
msgid "Content"
msgstr "შემადგენლობა"
-#. A/Os
#: formres.src
msgctxt ""
"formres.src\n"
@@ -924,7 +825,6 @@ msgctxt ""
msgid "Content type"
msgstr "შემადგენლობის ტიპი"
-#. WE*;
#: formres.src
msgctxt ""
"formres.src\n"
@@ -933,7 +833,6 @@ msgctxt ""
msgid "Allow additions"
msgstr "დამატების ნებართვა"
-#. F@XG
#: formres.src
msgctxt ""
"formres.src\n"
@@ -942,7 +841,6 @@ msgctxt ""
msgid "Allow deletions"
msgstr "წაშლის ნებართვა"
-#. -S87
#: formres.src
msgctxt ""
"formres.src\n"
@@ -951,7 +849,6 @@ msgctxt ""
msgid "Allow modifications"
msgstr "მოდიფიკაციის ნებართვა"
-#. 4W?_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -960,7 +857,6 @@ msgctxt ""
msgid "Add data only"
msgstr "მხოლოდ მონაცემების დამატება"
-#. X=]v
#: formres.src
msgctxt ""
"formres.src\n"
@@ -969,7 +865,6 @@ msgctxt ""
msgid "Data source"
msgstr "მონაცემთა წყარო"
-#. moG/
#: formres.src
msgctxt ""
"formres.src\n"
@@ -978,7 +873,6 @@ msgctxt ""
msgid "Link master fields"
msgstr "კავშირის მასტერის ველები"
-#. q@tb
#: formres.src
msgctxt ""
"formres.src\n"
@@ -987,7 +881,6 @@ msgctxt ""
msgid "Link slave fields"
msgstr "მეორადი ველების დაკავშირება"
-#. ODr[
#: formres.src
msgctxt ""
"formres.src\n"
@@ -996,7 +889,6 @@ msgctxt ""
msgid "Value min."
msgstr "მნიშვნელობა მინ."
-#. bp2?
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1005,7 +897,6 @@ msgctxt ""
msgid "Value max."
msgstr "მნიშვნელობა მაქს."
-#. [eew
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1014,7 +905,6 @@ msgctxt ""
msgid "Incr./decrement value"
msgstr "Incr./დეკრემენტის მნიშვნელობა"
-#. ]e}P
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1023,7 +913,6 @@ msgctxt ""
msgid "Currency symbol"
msgstr "ვალუტის სიმბოლო"
-#. Jl%q
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1032,7 +921,6 @@ msgctxt ""
msgid "Date min."
msgstr "თარიღი მინ."
-#. iuNO
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1041,7 +929,6 @@ msgctxt ""
msgid "Date max."
msgstr "თარიღი მაქს."
-#. dJPA
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1050,7 +937,6 @@ msgctxt ""
msgid "Date format"
msgstr "თარიღის ფორმატი"
-#. 33T]
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1059,7 +945,6 @@ msgctxt ""
msgid "Selection"
msgstr "მონიშვნა"
-#. z|8+
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1068,7 +953,6 @@ msgctxt ""
msgid "Time min."
msgstr "დრო მინ."
-#. K=!B
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1077,7 +961,6 @@ msgctxt ""
msgid "Time max."
msgstr "დრო მაქს."
-#. S!5/
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1086,7 +969,6 @@ msgctxt ""
msgid "Time format"
msgstr "დროის ფორმატი"
-#. 3pJn
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1095,7 +977,6 @@ msgctxt ""
msgid "Prefix symbol"
msgstr "პრეფიქსის სიმბოლო"
-#. 4sJ}
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1104,7 +985,6 @@ msgctxt ""
msgid "Value"
msgstr "მნიშვნელობა"
-#. 9Rdn
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1113,7 +993,6 @@ msgctxt ""
msgid "Formatting"
msgstr "ფორმატირება"
-#. ?$EN
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1122,7 +1001,6 @@ msgctxt ""
msgid "Class ID"
msgstr "ID კლასი"
-#. qAX(
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1131,7 +1009,6 @@ msgctxt ""
msgid "Height"
msgstr "სიმაღლე"
-#. 7:#s
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1140,7 +1017,6 @@ msgctxt ""
msgid "Width"
msgstr "სიგანე"
-#. n:B.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1149,7 +1025,6 @@ msgctxt ""
msgid "List index"
msgstr "სიის ინდექსი"
-#. $AcG
#: formres.src
#, fuzzy
msgctxt ""
@@ -1159,7 +1034,6 @@ msgctxt ""
msgid "Row height"
msgstr "სტრიქონის სიმაღლე"
-#. ?Pek
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1168,7 +1042,6 @@ msgctxt ""
msgid "Fill color"
msgstr "ფერის შევსება"
-#. ]dkd
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1177,7 +1050,6 @@ msgctxt ""
msgid "Line color"
msgstr "სტრიქონის ფერი"
-#. 7*Rh
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1186,7 +1058,6 @@ msgctxt ""
msgid "Reference value (on)"
msgstr "მოხსენიების მნიშვნელობა (ჩართვა)"
-#. ndxJ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1195,7 +1066,6 @@ msgctxt ""
msgid "Reference value (off)"
msgstr "მოხსენიების მნიშვნელობა (გამორთვა)"
-#. !d/7
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1204,7 +1074,6 @@ msgctxt ""
msgid "List entries"
msgstr "სიის შენატანები"
-#. X#ie
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1213,7 +1082,6 @@ msgctxt ""
msgid "Action"
msgstr "მოქმედება"
-#. 5*J.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1222,7 +1090,6 @@ msgctxt ""
msgid "URL"
msgstr "URL"
-#. $,h2
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1231,7 +1098,6 @@ msgctxt ""
msgid "Type of submission"
msgstr "დაქვემდებარების ტიპი"
-#. )C4Q
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1240,7 +1106,6 @@ msgctxt ""
msgid "Default status"
msgstr "სტანდარტის სტატუსი"
-#. [Y5P
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1249,7 +1114,6 @@ msgctxt ""
msgid "Submission encoding"
msgstr "კოდირების გადაგზავნა"
-#. bs(D
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1258,7 +1122,6 @@ msgctxt ""
msgid "Default value"
msgstr "სტანდარტული მნიშვნელობა"
-#. 8V5s
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1267,7 +1130,6 @@ msgctxt ""
msgid "Default text"
msgstr "სტანდარტული ტექსტი"
-#. m:fJ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1276,7 +1138,6 @@ msgctxt ""
msgid "Default date"
msgstr "სტანდარტული თარიღი"
-#. =9eF
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1285,7 +1146,6 @@ msgctxt ""
msgid "Default time"
msgstr "სტანდარტული დრო"
-#. 5\n,
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1294,7 +1154,6 @@ msgctxt ""
msgid "Frame"
msgstr "ჩარჩო"
-#. gvBZ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1304,7 +1163,6 @@ msgctxt ""
msgid "Without frame"
msgstr ""
-#. `OE4
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1314,7 +1172,6 @@ msgctxt ""
msgid "3D look"
msgstr "3D ხედი"
-#. WER5
#: formres.src
#, fuzzy
msgctxt ""
@@ -1325,7 +1182,6 @@ msgctxt ""
msgid "Flat"
msgstr "ბრტყელი"
-#. s!/R
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1335,7 +1191,6 @@ msgctxt ""
msgid "Valuelist"
msgstr ""
-#. .DU=
#: formres.src
#, fuzzy
msgctxt ""
@@ -1346,7 +1201,6 @@ msgctxt ""
msgid "Table"
msgstr "ცხრილი"
-#. lo]r
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1356,7 +1210,6 @@ msgctxt ""
msgid "Query"
msgstr ""
-#. Ymw,
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1366,7 +1219,6 @@ msgctxt ""
msgid "Sql"
msgstr "Sql"
-#. ?=gQ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1376,7 +1228,6 @@ msgctxt ""
msgid "Sql [Native]"
msgstr "Sql [Native]"
-#. ,S\v
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1386,7 +1237,6 @@ msgctxt ""
msgid "Tablefields"
msgstr ""
-#. Pb[-
#: formres.src
#, fuzzy
msgctxt ""
@@ -1411,7 +1261,6 @@ msgstr ""
"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
"მარცხენა"
-#. (^\V
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1421,7 +1270,6 @@ msgctxt ""
msgid "Center"
msgstr "ცენტრში"
-#. d71O
#: formres.src
#, fuzzy
msgctxt ""
@@ -1446,7 +1294,6 @@ msgstr ""
"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
"მარჯვენა"
-#. Qv,_
#: formres.src
#, fuzzy
msgctxt ""
@@ -1457,7 +1304,6 @@ msgctxt ""
msgid "None"
msgstr "არაფერი"
-#. envc
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1467,7 +1313,6 @@ msgctxt ""
msgid "Submit form"
msgstr ""
-#. Ncsk
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1477,7 +1322,6 @@ msgctxt ""
msgid "Reset form"
msgstr ""
-#. zk8i
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1487,7 +1331,6 @@ msgctxt ""
msgid "Open document/web page"
msgstr ""
-#. U!^p
#: formres.src
#, fuzzy
msgctxt ""
@@ -1498,7 +1341,6 @@ msgctxt ""
msgid "First record"
msgstr "პირველი ჩანაწერი"
-#. `DKS
#: formres.src
#, fuzzy
msgctxt ""
@@ -1509,7 +1351,6 @@ msgctxt ""
msgid "Previous record"
msgstr "წინა ჩანაწერი"
-#. #tT1
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1519,7 +1360,6 @@ msgctxt ""
msgid "Next record"
msgstr "შემდეგი ჩანაწერი"
-#. iQf\
#: formres.src
#, fuzzy
msgctxt ""
@@ -1530,7 +1370,6 @@ msgctxt ""
msgid "Last record"
msgstr "ბოლო ჩანაწერი"
-#. K.a;
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1540,7 +1379,6 @@ msgctxt ""
msgid "Save record"
msgstr ""
-#. md:S
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1550,7 +1388,6 @@ msgctxt ""
msgid "Undo data entry"
msgstr ""
-#. ;kox
#: formres.src
#, fuzzy
msgctxt ""
@@ -1561,7 +1398,6 @@ msgctxt ""
msgid "New record"
msgstr "შემდეგი ჩანაწერი"
-#. ch,#
#: formres.src
#, fuzzy
msgctxt ""
@@ -1572,7 +1408,6 @@ msgctxt ""
msgid "Delete record"
msgstr "ჩანაწერის წაშლა"
-#. }G3{
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1582,7 +1417,6 @@ msgctxt ""
msgid "Refresh form"
msgstr ""
-#. 39MD
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1592,7 +1426,6 @@ msgctxt ""
msgid "Get"
msgstr "მიღება"
-#. nup%
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1602,7 +1435,6 @@ msgctxt ""
msgid "Post"
msgstr "გაგზავნა"
-#. .:Px
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1612,7 +1444,6 @@ msgctxt ""
msgid "URL"
msgstr "URL"
-#. DT?;
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1622,7 +1453,6 @@ msgctxt ""
msgid "Multipart"
msgstr ""
-#. Bght
#: formres.src
#, fuzzy
msgctxt ""
@@ -1633,7 +1463,6 @@ msgctxt ""
msgid "Text"
msgstr "ტექსტი"
-#. 5SE#
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1643,7 +1472,6 @@ msgctxt ""
msgid "Standard (short)"
msgstr "სტანდარტული (მოკლე)"
-#. w\.d
#: formres.src
#, fuzzy
msgctxt ""
@@ -1654,7 +1482,6 @@ msgctxt ""
msgid "Standard (short YY)"
msgstr "სტანდარტული (მოკლე)"
-#. /649
#: formres.src
#, fuzzy
msgctxt ""
@@ -1665,7 +1492,6 @@ msgctxt ""
msgid "Standard (short YYYY)"
msgstr "სტანდარტული (მოკლე)"
-#. =^4t
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1675,7 +1501,6 @@ msgctxt ""
msgid "Standard (long)"
msgstr "სტანდარტული (გრძელი)"
-#. !q\M
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1685,7 +1510,6 @@ msgctxt ""
msgid "DD/MM/YY"
msgstr ""
-#. x,)s
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1695,7 +1519,6 @@ msgctxt ""
msgid "MM/DD/YY"
msgstr ""
-#. r`c0
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1705,7 +1528,6 @@ msgctxt ""
msgid "YY/MM/DD"
msgstr ""
-#. K1Ia
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1715,7 +1537,6 @@ msgctxt ""
msgid "DD/MM/YYYY"
msgstr ""
-#. F)Ta
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1725,7 +1546,6 @@ msgctxt ""
msgid "MM/DD/YYYY"
msgstr ""
-#. 4moL
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1735,7 +1555,6 @@ msgctxt ""
msgid "YYYY/MM/DD"
msgstr ""
-#. Jk}k
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1745,7 +1564,6 @@ msgctxt ""
msgid "YY-MM-DD"
msgstr ""
-#. iU`H
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1755,7 +1573,6 @@ msgctxt ""
msgid "YYYY-MM-DD"
msgstr ""
-#. oN[8
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1765,7 +1582,6 @@ msgctxt ""
msgid "13:45"
msgstr ""
-#. 4xjn
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1775,7 +1591,6 @@ msgctxt ""
msgid "13:45:00"
msgstr ""
-#. 6MyJ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1785,7 +1600,6 @@ msgctxt ""
msgid "01:45 PM"
msgstr ""
-#. E#X6
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1795,7 +1609,6 @@ msgctxt ""
msgid "01:45:00 PM"
msgstr ""
-#. `UFq
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1805,7 +1618,6 @@ msgctxt ""
msgid "Not Selected"
msgstr ""
-#. K3uO
#: formres.src
#, fuzzy
msgctxt ""
@@ -1816,7 +1628,6 @@ msgctxt ""
msgid "Selected"
msgstr "მონიშვნა"
-#. X_8I
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1826,7 +1637,6 @@ msgctxt ""
msgid "Not Defined"
msgstr ""
-#. Xptb
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1836,7 +1646,6 @@ msgctxt ""
msgid "All records"
msgstr ""
-#. fY_,
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1846,7 +1655,6 @@ msgctxt ""
msgid "Active record"
msgstr ""
-#. VwD6
#: formres.src
#, fuzzy
msgctxt ""
@@ -1857,7 +1665,6 @@ msgctxt ""
msgid "Current page"
msgstr "მიმდინარე თარიღი"
-#. nM7X
#: formres.src
#, fuzzy
msgctxt ""
@@ -1868,7 +1675,6 @@ msgctxt ""
msgid "No"
msgstr "არა"
-#. qP@v
#: formres.src
#, fuzzy
msgctxt ""
@@ -1879,7 +1685,6 @@ msgctxt ""
msgid "Yes"
msgstr "დ~იახ"
-#. p!5z
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1889,7 +1694,6 @@ msgctxt ""
msgid "Parent Form"
msgstr ""
-#. n8)q
#: formres.src
#, fuzzy
msgctxt ""
@@ -1900,7 +1704,6 @@ msgctxt ""
msgid "None"
msgstr "არაფერი"
-#. sS9+
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1910,7 +1713,6 @@ msgctxt ""
msgid "Single"
msgstr "ცალი"
-#. .HAc
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1920,7 +1722,6 @@ msgctxt ""
msgid "Multi"
msgstr ""
-#. qWrG
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1930,7 +1731,6 @@ msgctxt ""
msgid "Range"
msgstr "დიაპაზონი"
-#. \aOo
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1939,7 +1739,6 @@ msgctxt ""
msgid "Fill parameters"
msgstr "პარამეტრების შევსება"
-#. z1`m
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1948,7 +1747,6 @@ msgctxt ""
msgid "Execute action"
msgstr ""
-#. c{1]
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1957,7 +1755,6 @@ msgctxt ""
msgid "After updating"
msgstr "განახლების შემდეგ"
-#. ^aZ=
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1966,7 +1763,6 @@ msgctxt ""
msgid "Before updating"
msgstr "განახლებამდე"
-#. 0L4,
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1975,7 +1771,6 @@ msgctxt ""
msgid "Before record action"
msgstr "ჩაწერის დაწყებამდე"
-#. q4W6
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1984,7 +1779,6 @@ msgctxt ""
msgid "After record action"
msgstr "ჩაწერის დაწყების შემდეგ"
-#. o2v`
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1993,7 +1787,6 @@ msgctxt ""
msgid "Confirm deletion"
msgstr "წაშლის დადასტურება"
-#. M91!
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2002,7 +1795,6 @@ msgctxt ""
msgid "Error occurred"
msgstr "შეცდომაა"
-#. :9M2
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2011,7 +1803,6 @@ msgctxt ""
msgid "When receiving focus"
msgstr "ფოკუსის მიღებისას"
-#. =o+p
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2020,7 +1811,6 @@ msgctxt ""
msgid "When losing focus"
msgstr "ფოკუსის დაკარგვისას"
-#. [D8#
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2029,7 +1819,6 @@ msgctxt ""
msgid "Item status changed"
msgstr "ელემენტის სტატუსის შეცვლა"
-#. |8SN
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2038,7 +1827,6 @@ msgctxt ""
msgid "Key pressed"
msgstr "ღილაკი დაჭერილია"
-#. FW$u
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2047,7 +1835,6 @@ msgctxt ""
msgid "Key released"
msgstr "ღილაკი აშვებულია"
-#. =PkA
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2056,7 +1843,6 @@ msgctxt ""
msgid "When loading"
msgstr "ჩატვირთვისას"
-#. ^Kw+
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2065,7 +1851,6 @@ msgctxt ""
msgid "Before reloading"
msgstr "გადატვირთვამდე"
-#. 8H0@
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2074,7 +1859,6 @@ msgctxt ""
msgid "When reloading"
msgstr "გადატვირთვისას"
-#. WS3:
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2083,7 +1867,6 @@ msgctxt ""
msgid "Mouse moved while key pressed"
msgstr "ღილაკის დაჭერისას მაუსი გადაადგილდა"
-#. yr$)
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2092,7 +1875,6 @@ msgctxt ""
msgid "Mouse inside"
msgstr "მაუსი შიგნით"
-#. 5,mV
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2101,7 +1883,6 @@ msgctxt ""
msgid "Mouse outside"
msgstr "მაუსი გარეთ"
-#. gi#W
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2110,7 +1891,6 @@ msgctxt ""
msgid "Mouse moved"
msgstr "მაუსი გადაადგილდა"
-#. si70
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2119,7 +1899,6 @@ msgctxt ""
msgid "Mouse button pressed"
msgstr "მაუსის ბურთულა დაჭერილია"
-#. p!M}
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2128,7 +1907,6 @@ msgctxt ""
msgid "Mouse button released"
msgstr "მაუსის ბურთულა აშვებულია"
-#. \2se
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2137,7 +1915,6 @@ msgctxt ""
msgid "Before record change"
msgstr "ჩანაწერის შეცვლამდე"
-#. YnB!
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2146,7 +1923,6 @@ msgctxt ""
msgid "After record change"
msgstr "ჩანაწერის შეცვლის შემდეგ"
-#. 5#jX
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2155,7 +1931,6 @@ msgctxt ""
msgid "After resetting"
msgstr "ჩამოყრის შემდეგ"
-#. $eXM
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2164,7 +1939,6 @@ msgctxt ""
msgid "Prior to reset"
msgstr "ჩამოყრემდე"
-#. M14g
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2173,7 +1947,6 @@ msgctxt ""
msgid "Approve action"
msgstr ""
-#. -!|E
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2182,7 +1955,6 @@ msgctxt ""
msgid "Before submitting"
msgstr "დაწყებამდე"
-#. Frn3
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2191,7 +1963,6 @@ msgctxt ""
msgid "Text modified"
msgstr "ტექსტი შეცვლილია"
-#. uyNm
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2200,7 +1971,6 @@ msgctxt ""
msgid "Before unloading"
msgstr "ატვირთვამდე"
-#. ;HGO
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2209,7 +1979,6 @@ msgctxt ""
msgid "When unloading"
msgstr "ატვირთვისას"
-#. (PP(
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2218,7 +1987,6 @@ msgctxt ""
msgid "Changed"
msgstr "შეცვლილია"
-#. aKp;
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2227,7 +1995,6 @@ msgctxt ""
msgid "Events"
msgstr "მოვლენები"
-#. @v~z
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2236,7 +2003,6 @@ msgctxt ""
msgid "Analyze SQL command"
msgstr "SQL ბრძანების ანალიზი"
-#. W;0g
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2245,7 +2011,6 @@ msgctxt ""
msgid "PositionX"
msgstr "მდგონარეობაX"
-#. Pjpn
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2254,7 +2019,6 @@ msgctxt ""
msgid "PositionY"
msgstr "მდგომარეობაY"
-#. M6ON
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2263,7 +2027,6 @@ msgctxt ""
msgid "Title"
msgstr "წოდება"
-#. -87E
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2272,7 +2035,6 @@ msgctxt ""
msgid "Page (step)"
msgstr "გვერდი (საფეხური)"
-#. ;kM`
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2281,7 +2043,6 @@ msgctxt ""
msgid "Progress value"
msgstr "პროგრასის მნიშვნელობა"
-#. 1?kb
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2290,7 +2051,6 @@ msgctxt ""
msgid "Progress value min."
msgstr "პროგრასის მნიშვნელობა მინ."
-#. S)Z:
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2299,7 +2059,6 @@ msgctxt ""
msgid "Progress value max."
msgstr "პროგრასის მნიშვნელობა მაქს."
-#. qDPA
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2308,7 +2067,6 @@ msgctxt ""
msgid "Scroll value"
msgstr "გადაადგილების მნიშვნელობა"
-#. s0rz
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2317,7 +2075,6 @@ msgctxt ""
msgid "Scroll value max."
msgstr "გადაადგილების მნიშვნელობა მაქს."
-#. @L1:
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2326,7 +2083,6 @@ msgctxt ""
msgid "Scroll value min."
msgstr "გადაადგილების მნიშვნელობა მინ."
-#. PoU-
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2335,7 +2091,6 @@ msgctxt ""
msgid "Scroll width"
msgstr ""
-#. TH`U
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2344,7 +2099,6 @@ msgctxt ""
msgid "Scroll height"
msgstr ""
-#. #/`L
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2353,7 +2107,6 @@ msgctxt ""
msgid "Scroll top"
msgstr ""
-#. Y.\3
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2362,7 +2115,6 @@ msgctxt ""
msgid "Scroll left"
msgstr ""
-#. dcw%
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2371,7 +2123,6 @@ msgctxt ""
msgid "Default scroll value"
msgstr "სტანდარტული გადაადგილების მნიშვნელობა"
-#. A,nt
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2380,7 +2131,6 @@ msgctxt ""
msgid "Small change"
msgstr "მცირე ცვლილება"
-#. -NF]
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2389,7 +2139,6 @@ msgctxt ""
msgid "Large change"
msgstr "დიდი ცვლილება"
-#. XQig
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2398,7 +2147,6 @@ msgctxt ""
msgid "Delay"
msgstr "შეყოვნება"
-#. cdN\
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2407,7 +2155,6 @@ msgctxt ""
msgid "Repeat"
msgstr "გამეორება"
-#. IT`?
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2416,7 +2163,6 @@ msgctxt ""
msgid "Visible size"
msgstr "ხილული ზომა"
-#. fr[=
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2425,7 +2171,6 @@ msgctxt ""
msgid "Orientation"
msgstr "ორიენტაცია"
-#. kOP3
#: formres.src
#, fuzzy
msgctxt ""
@@ -2436,7 +2181,6 @@ msgctxt ""
msgid "Horizontal"
msgstr "ჰორიზონტალური"
-#. @0u#
#: formres.src
#, fuzzy
msgctxt ""
@@ -2447,7 +2191,6 @@ msgctxt ""
msgid "Vertical"
msgstr "ვერტიკალური"
-#. @{o^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2456,7 +2199,6 @@ msgctxt ""
msgid "While adjusting"
msgstr "მორგებისას"
-#. \nO8
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2465,7 +2207,6 @@ msgctxt ""
msgid "Date"
msgstr "თარიღი"
-#. #^c)
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2474,7 +2215,6 @@ msgctxt ""
msgid "State"
msgstr "მდგომარეობა"
-#. %pud
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2483,7 +2223,6 @@ msgctxt ""
msgid "Time"
msgstr "დრო"
-#. IC[|
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2492,7 +2231,6 @@ msgctxt ""
msgid "Scale"
msgstr "მასშტაბი"
-#. .=PL
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2501,7 +2239,6 @@ msgctxt ""
msgid "Button type"
msgstr "ბურთულის ტიპი"
-#. 1Xm3
#: formres.src
#, fuzzy
msgctxt ""
@@ -2512,7 +2249,6 @@ msgctxt ""
msgid "Default"
msgstr "ნაგულისხმები"
-#. #VJ5
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2522,7 +2258,6 @@ msgctxt ""
msgid "OK"
msgstr "კარგი"
-#. [@v_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2532,7 +2267,6 @@ msgctxt ""
msgid "Cancel"
msgstr "გაუქმება"
-#. Xzb_
#: formres.src
#, fuzzy
msgctxt ""
@@ -2543,7 +2277,6 @@ msgctxt ""
msgid "Help"
msgstr "დახმარება"
-#. 6fk?
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2552,7 +2285,6 @@ msgctxt ""
msgid "The connection to the data source \"$name$\" could not be established."
msgstr "მონაცემთა წყაროსთან \"$name$\" კავშირი ვერ დამყარდა."
-#. E.]F
#: formres.src
#, fuzzy
msgctxt ""
@@ -2562,7 +2294,6 @@ msgctxt ""
msgid "Text"
msgstr "ტექსტი"
-#. dE\_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2571,7 +2302,6 @@ msgctxt ""
msgid "Linked cell"
msgstr "გადაბმული უჯრედი"
-#. i3l-
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2580,7 +2310,6 @@ msgctxt ""
msgid "Source cell range"
msgstr "საწყისი უჯრედთა დიაპაზონი"
-#. s2s{
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2589,7 +2318,6 @@ msgctxt ""
msgid "Contents of the linked cell"
msgstr "გადაბმული უჯრედების შემცველობა"
-#. 3?q/
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2599,7 +2327,6 @@ msgctxt ""
msgid "The selected entry"
msgstr ""
-#. F$*\
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2609,7 +2336,6 @@ msgctxt ""
msgid "Position of the selected entry"
msgstr ""
-#. .r5g
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2618,7 +2344,6 @@ msgctxt ""
msgid "Scrollbars"
msgstr "გადაადგილების ზოლები"
-#. Xq.j
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2628,7 +2353,6 @@ msgctxt ""
msgid "Single-line"
msgstr "ერთ-სტრიქონიანი"
-#. R0-%
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2638,7 +2362,6 @@ msgctxt ""
msgid "Multi-line"
msgstr "მრავალ-სტრიქონიანი"
-#. G4gE
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2648,7 +2371,6 @@ msgctxt ""
msgid "Multi-line with formatting"
msgstr "მრავალხაზიანი ფორმატირებით"
-#. {:/n
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2657,7 +2379,6 @@ msgctxt ""
msgid "Symbol color"
msgstr "სიმბოლოს ფერი"
-#. +9o9
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2666,7 +2387,6 @@ msgctxt ""
msgid "Text lines end with"
msgstr "ტექსტის ხაზე"
-#. Pn$*
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2676,7 +2396,6 @@ msgctxt ""
msgid "LF (Unix)"
msgstr "LF (უნიქსი)"
-#. {JJn
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2686,7 +2405,6 @@ msgctxt ""
msgid "CR+LF (Windows)"
msgstr "CR+LF (Windows)"
-#. chgv
#: formres.src
#, fuzzy
msgctxt ""
@@ -2697,7 +2415,6 @@ msgctxt ""
msgid "None"
msgstr "არაფერი"
-#. qCVL
#: formres.src
#, fuzzy
msgctxt ""
@@ -2708,7 +2425,6 @@ msgctxt ""
msgid "Horizontal"
msgstr "ჰორიზონტალური"
-#. C~lr
#: formres.src
#, fuzzy
msgctxt ""
@@ -2719,7 +2435,6 @@ msgctxt ""
msgid "Vertical"
msgstr "ვერტიკალური"
-#. /tKF
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2729,7 +2444,6 @@ msgctxt ""
msgid "Both"
msgstr "ორივე"
-#. 9-$K
#: formres.src
#, fuzzy
msgctxt ""
@@ -2740,7 +2454,6 @@ msgctxt ""
msgid "Table"
msgstr "ცხრილი"
-#. ,bsl
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2750,7 +2463,6 @@ msgctxt ""
msgid "Query"
msgstr ""
-#. Sfg@
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2760,7 +2472,6 @@ msgctxt ""
msgid "SQL command"
msgstr "SQL ბრძანება"
-#. *Xi.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2769,7 +2480,6 @@ msgctxt ""
msgid "Toggle"
msgstr "გადართვა"
-#. 137^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2778,7 +2488,6 @@ msgctxt ""
msgid "Take Focus on Click"
msgstr "ფოკუსი დაჭერაზე"
-#. 75:(
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2787,7 +2496,6 @@ msgctxt ""
msgid "Hide selection"
msgstr "მონიშვნის დამალვა"
-#. #K-[
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2796,7 +2504,6 @@ msgctxt ""
msgid "Style"
msgstr "სტილი"
-#. S}u\
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2806,7 +2513,6 @@ msgctxt ""
msgid "3D"
msgstr "3D"
-#. hfq?
#: formres.src
#, fuzzy
msgctxt ""
@@ -2817,7 +2523,6 @@ msgctxt ""
msgid "Flat"
msgstr "ბრტყელი"
-#. #/cN
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2826,7 +2531,6 @@ msgctxt ""
msgid "Border color"
msgstr "საზღვრის ფერი"
-#. $4$`
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2836,7 +2540,6 @@ msgctxt ""
msgid "Left top"
msgstr "ზედა მარცხენა"
-#. UuZU
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2846,7 +2549,6 @@ msgctxt ""
msgid "Left centered"
msgstr "მარცხენა ცენტრში"
-#. sn],
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2856,7 +2558,6 @@ msgctxt ""
msgid "Left bottom"
msgstr "მარცხნივ ქვედა"
-#. q%p}
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2866,7 +2567,6 @@ msgctxt ""
msgid "Right top"
msgstr "მარჯვნივ ზედა"
-#. El?n
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2876,7 +2576,6 @@ msgctxt ""
msgid "Right centered"
msgstr "მარჯვენა ცენტრში"
-#. sIfy
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2886,7 +2585,6 @@ msgctxt ""
msgid "Right bottom"
msgstr "მარჯვენა ქვემოთ"
-#. ]UGJ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2896,7 +2594,6 @@ msgctxt ""
msgid "Above left"
msgstr "მარცხენა ზემოთ"
-#. +[9p
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2906,7 +2603,6 @@ msgctxt ""
msgid "Above centered"
msgstr "ზედა ცენტრში"
-#. dWOS
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2916,7 +2612,6 @@ msgctxt ""
msgid "Above right"
msgstr "ზედა მარჯვნივ"
-#. CC~q
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2926,7 +2621,6 @@ msgctxt ""
msgid "Below left"
msgstr "ქვედა მარცხნივ"
-#. mqC(
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2936,7 +2630,6 @@ msgctxt ""
msgid "Below centered"
msgstr "ქვედა ცენტრში"
-#. v-Fd
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2946,7 +2639,6 @@ msgctxt ""
msgid "Below right"
msgstr "ქვემოთ მარჯვნივ"
-#. +o?.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2956,7 +2648,6 @@ msgctxt ""
msgid "Centered"
msgstr "ცენტრში"
-#. 0;oG
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2965,7 +2656,6 @@ msgctxt ""
msgid "Wrap text automatically"
msgstr "ტექსტის ავტომატურად გადატანა"
-#. %+Y^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2974,7 +2664,6 @@ msgctxt ""
msgid "Text type"
msgstr "ტექსტის ტიპი"
-#. S#Q3
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2984,7 +2673,6 @@ msgctxt ""
msgid "Hide"
msgstr "დამალვა"
-#. PnDz
#: formres.src
#, fuzzy
msgctxt ""
@@ -3001,7 +2689,6 @@ msgstr ""
"#-#-#-#-# impress.po (PACKAGE VERSION) #-#-#-#-#\n"
"შოუ"
-#. u$=i
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3010,7 +2697,6 @@ msgctxt ""
msgid "XML data model"
msgstr "XML მონემთა ნიმუში"
-#. f\dm
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3019,7 +2705,6 @@ msgctxt ""
msgid "Binding expression"
msgstr "დამაკავშირებელი გამოსახულება"
-#. OlmL
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3028,7 +2713,6 @@ msgctxt ""
msgid "Required"
msgstr "სავალდებულოა"
-#. r!.y
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3037,7 +2721,6 @@ msgctxt ""
msgid "List entry source"
msgstr "სიის შენატანის დასაწყისი"
-#. 2RO$
#: formres.src
#, fuzzy
msgctxt ""
@@ -3047,7 +2730,6 @@ msgctxt ""
msgid "Relevant"
msgstr "ა~რსებითი"
-#. M\XT
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3056,7 +2738,6 @@ msgctxt ""
msgid "Read-only"
msgstr "მხოლოდ წაკითხვადი"
-#. ~R[H
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3065,7 +2746,6 @@ msgctxt ""
msgid "Constraint"
msgstr "მუდმივი"
-#. w]xA
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3074,7 +2754,6 @@ msgctxt ""
msgid "Calculation"
msgstr "გამოთვლა"
-#. C7!B
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3083,7 +2762,6 @@ msgctxt ""
msgid "Data type"
msgstr "მონაცემთა ტიპი"
-#. RTu-
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3092,7 +2770,6 @@ msgctxt ""
msgid "Whitespaces"
msgstr "თეთრი არეალები"
-#. 2`~}
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3102,7 +2779,6 @@ msgctxt ""
msgid "Preserve"
msgstr ""
-#. DB_^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3112,7 +2788,6 @@ msgctxt ""
msgid "Replace"
msgstr "ჩანაცვლება"
-#. a:1a
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3122,7 +2797,6 @@ msgctxt ""
msgid "Collapse"
msgstr "კოლაპსი"
-#. _:{*
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3131,7 +2805,6 @@ msgctxt ""
msgid "Pattern"
msgstr "შბლონი"
-#. {TC%
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3140,7 +2813,6 @@ msgctxt ""
msgid "Length"
msgstr "სიგრძე"
-#. qNpQ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3149,7 +2821,6 @@ msgctxt ""
msgid "Length (at least)"
msgstr "სიგრძე (სულ მცირე)"
-#. UHOq
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3158,7 +2829,6 @@ msgctxt ""
msgid "Length (at most)"
msgstr "სიგრძე (ყველაზე დიდი)"
-#. 6j97
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3167,7 +2837,6 @@ msgctxt ""
msgid "Digits (total)"
msgstr "ციფრები (მთლიანი)"
-#. O%8#
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3176,7 +2845,6 @@ msgctxt ""
msgid "Digits (fraction)"
msgstr "ციფრები (ფრაქციები)"
-#. ^fxb
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3185,7 +2853,6 @@ msgctxt ""
msgid "Max. (inclusive)"
msgstr "მაქს. (შემავალი)"
-#. rm_.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3194,7 +2861,6 @@ msgctxt ""
msgid "Max. (exclusive)"
msgstr "მაქს. (გამავალი)"
-#. ]~D~
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3203,7 +2869,6 @@ msgctxt ""
msgid "Min. (inclusive)"
msgstr "მინ. (შემავალი)"
-#. qah+
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3212,7 +2877,6 @@ msgctxt ""
msgid "Min. (exclusive)"
msgstr "მინ. (გამავალი)"
-#. J\Hf
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3221,7 +2885,6 @@ msgctxt ""
msgid "Submission"
msgstr "რეგისტრაცია"
-#. (Cb(
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3230,7 +2893,6 @@ msgctxt ""
msgid "Binding"
msgstr "გადაბმა"
-#. 0!k2
#: formres.src
#, fuzzy
msgctxt ""
@@ -3240,7 +2902,6 @@ msgctxt ""
msgid "Selection type"
msgstr "მონიშვნის რეჟიმი"
-#. HlSx
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3249,7 +2910,6 @@ msgctxt ""
msgid "Root displayed"
msgstr ""
-#. .+E7
#: formres.src
#, fuzzy
msgctxt ""
@@ -3259,7 +2919,6 @@ msgctxt ""
msgid "Show handles"
msgstr "ცვლილებების ჩვენება"
-#. @h9_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3268,7 +2927,6 @@ msgctxt ""
msgid "Show root handles"
msgstr ""
-#. 2:Pq
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3277,7 +2935,6 @@ msgctxt ""
msgid "Editable"
msgstr ""
-#. BCaS
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3286,7 +2943,6 @@ msgctxt ""
msgid "Invokes stop node editing"
msgstr ""
-#. \S=z
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3295,7 +2951,6 @@ msgctxt ""
msgid "With title bar"
msgstr ""
-#. EO4w
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3304,7 +2959,6 @@ msgctxt ""
msgid "No Label"
msgstr ""
-#. smZT
#: formres.src
#, fuzzy
msgctxt ""
@@ -3315,7 +2969,6 @@ msgctxt ""
msgid "No"
msgstr "არა"
-#. 1gPb
#: formres.src
#, fuzzy
msgctxt ""
@@ -3326,7 +2979,6 @@ msgctxt ""
msgid "Keep Ratio"
msgstr "ტანაფარდობის შენარჩუნება"
-#. `Wm.
#: formres.src
#, fuzzy
msgctxt ""
@@ -3337,7 +2989,6 @@ msgctxt ""
msgid "Fit to Size"
msgstr "~ზომაზე მორგება"
-#. vJ8;
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3346,7 +2997,6 @@ msgctxt ""
msgid "Input required"
msgstr "საჭიროა შეყვანა"
-#. FJqs
#: formres.src
#, fuzzy
msgctxt ""
@@ -3356,7 +3006,6 @@ msgctxt ""
msgid "Text direction"
msgstr "~ტექსტის მიმართულება"
-#. E6Mb
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3366,7 +3015,6 @@ msgctxt ""
msgid "Left-to-right"
msgstr "მარცხნიდან მარჯვნივ"
-#. e(6@
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3376,7 +3024,6 @@ msgctxt ""
msgid "Right-to-left"
msgstr "მარჯვნიდან მარცხნივ"
-#. ^{n^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3386,7 +3033,6 @@ msgctxt ""
msgid "Use superordinate object settings"
msgstr "მაქვემდებარებელი ობიექტის პარამეტრების გამოყენება"
-#. }q9O
#: formres.src
#, fuzzy
msgctxt ""
@@ -3397,7 +3043,6 @@ msgctxt ""
msgid "Never"
msgstr "~არასდროს"
-#. Crc\
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3407,7 +3052,6 @@ msgctxt ""
msgid "When focused"
msgstr ""
-#. Sr4`
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3417,7 +3061,6 @@ msgctxt ""
msgid "Always"
msgstr "ყოველთვის"
-#. F/k`
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3426,7 +3069,6 @@ msgctxt ""
msgid "Anchor"
msgstr "სანიშნე"
-#. 7r+v
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3436,7 +3078,6 @@ msgctxt ""
msgid "To Paragraph"
msgstr "პარაგრაფი"
-#. Fy8h
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3446,7 +3087,6 @@ msgctxt ""
msgid "As Character"
msgstr "თვისებები"
-#. ye~-
#: formres.src
#, fuzzy
msgctxt ""
@@ -3457,7 +3097,6 @@ msgctxt ""
msgid "To Page"
msgstr "გვერდზე"
-#. MB0^
#: formres.src
#, fuzzy
msgctxt ""
@@ -3468,7 +3107,6 @@ msgctxt ""
msgid "To Frame"
msgstr "ჩარჩოზე"
-#. 3i7.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3478,7 +3116,6 @@ msgctxt ""
msgid "To Character"
msgstr "თვისებები"
-#. |ZcH
#: formres.src
#, fuzzy
msgctxt ""
@@ -3489,7 +3126,6 @@ msgctxt ""
msgid "To Page"
msgstr "გვერდზე"
-#. )n?x
#: formres.src
#, fuzzy
msgctxt ""
@@ -3501,7 +3137,6 @@ msgid "To Cell"
msgstr "უჯრედთან"
#. That's the 'Regular' as used for a font style (as opposed to 'italic' and 'bold'), so please use a consistent translation.
-#. 9qOJ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3511,7 +3146,6 @@ msgid "Regular"
msgstr "ჩვეულებრივი"
#. That's the 'Bold Italic' as used for a font style, so please use a consistent translation.
-#. /i9?
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3521,7 +3155,6 @@ msgid "Bold Italic"
msgstr "მუქი კურსივი"
#. That's the 'Italic' as used for a font style, so please use a consistent translation.
-#. ^IUO
#: formres.src
#, fuzzy
msgctxt ""
@@ -3550,7 +3183,6 @@ msgstr ""
"დახრილი"
#. That's the 'Bold' as used for a font style, so please use a consistent translation.
-#. ;yDn
#: formres.src
#, fuzzy
msgctxt ""
@@ -3576,7 +3208,6 @@ msgstr ""
"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
"მუქი"
-#. aX]A
#: formres.src
#, fuzzy
msgctxt ""
@@ -3586,7 +3217,6 @@ msgctxt ""
msgid "(Default)"
msgstr "ნაგულისხმები"
-#. d)p)
#: fontdialog.src
msgctxt ""
"fontdialog.src\n"
@@ -3596,7 +3226,6 @@ msgctxt ""
msgid "Font"
msgstr "შრიფტი"
-#. L{e]
#: fontdialog.src
msgctxt ""
"fontdialog.src\n"
@@ -3606,7 +3235,6 @@ msgctxt ""
msgid "Font Effects"
msgstr "ფონტის ეფექტები"
-#. CnL3
#: fontdialog.src
msgctxt ""
"fontdialog.src\n"
@@ -3615,7 +3243,6 @@ msgctxt ""
msgid "Character"
msgstr "თვისებები"
-#. hzG4
#: selectlabeldialog.src
msgctxt ""
"selectlabeldialog.src\n"
@@ -3625,7 +3252,6 @@ msgctxt ""
msgid "These are control fields that can be used as label fields for the $control_class$ $control_name$."
msgstr "ეს არის კონტროლის ველები რომლებიც არ გამოიყენება როგორც ჭდის ველები $control_class$ $control_name$ -თვის."
-#. -0+n
#: selectlabeldialog.src
msgctxt ""
"selectlabeldialog.src\n"
@@ -3635,7 +3261,6 @@ msgctxt ""
msgid "~No assignment"
msgstr "~განაწილების გარეშე"
-#. kV]M
#: selectlabeldialog.src
msgctxt ""
"selectlabeldialog.src\n"
@@ -3644,7 +3269,6 @@ msgctxt ""
msgid "Label Field Selection"
msgstr "ჭდის ველის მონიშვნა"
-#. %X$n
#: selectlabeldialog.src
msgctxt ""
"selectlabeldialog.src\n"
@@ -3653,7 +3277,6 @@ msgctxt ""
msgid "Forms"
msgstr "ფორმები"
-#. gyU6
#: propres.src
#, fuzzy
msgctxt ""
@@ -3663,7 +3286,6 @@ msgctxt ""
msgid "Default"
msgstr "ნაგულისხმები"
-#. cx8C
#: propres.src
msgctxt ""
"propres.src\n"
@@ -3672,7 +3294,6 @@ msgctxt ""
msgid "General"
msgstr "ზოგადი"
-#. $aE`
#: propres.src
msgctxt ""
"propres.src\n"
@@ -3681,7 +3302,6 @@ msgctxt ""
msgid "Data"
msgstr "მონაცემები"
-#. e^gC
#: propres.src
#, fuzzy
msgctxt ""
@@ -3692,7 +3312,6 @@ msgctxt ""
msgid "No"
msgstr "არა"
-#. Z;YA
#: propres.src
#, fuzzy
msgctxt ""
@@ -3703,7 +3322,6 @@ msgctxt ""
msgid "Yes"
msgstr "დ~იახ"
-#. PD5y
#: propres.src
#, fuzzy
msgctxt ""
@@ -3713,7 +3331,6 @@ msgctxt ""
msgid "Help"
msgstr "დახმარება"
-#. xGE$
#: propres.src
msgctxt ""
"propres.src\n"
@@ -3722,7 +3339,6 @@ msgctxt ""
msgid "<Embedded-Image>"
msgstr ""
-#. aOT_
#: propres.src
#, fuzzy
msgctxt ""
diff --git a/source/ka/extensions/source/scanner.po b/source/ka/extensions/source/scanner.po
index 18d9183d217..77253a8f3b7 100644
--- a/source/ka/extensions/source/scanner.po
+++ b/source/ka/extensions/source/scanner.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. _8P\
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -29,7 +28,6 @@ msgstr ""
"შესახებ\n"
" მოწ~ყობილობა"
-#. nZmm
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -43,7 +41,6 @@ msgstr ""
"შექმნა\n"
"გადახედვა"
-#. ,$ZF
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -53,7 +50,6 @@ msgctxt ""
msgid "Scan"
msgstr "სკანირება"
-#. ESbO
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -63,7 +59,6 @@ msgctxt ""
msgid "Preview"
msgstr "გადახედვა"
-#. ,O6b
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -73,7 +68,6 @@ msgctxt ""
msgid "Scan area"
msgstr "სკანირების არე"
-#. apdX
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -83,7 +77,6 @@ msgctxt ""
msgid "Left:"
msgstr "მარცხენა ნაწილი:"
-#. ITmF
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -93,7 +86,6 @@ msgctxt ""
msgid "Top:"
msgstr "ზედა:"
-#. bmM`
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -103,7 +95,6 @@ msgctxt ""
msgid "Right:"
msgstr "მარჯვენა ნაწილი:"
-#. sNk/
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -113,7 +104,6 @@ msgctxt ""
msgid "Bottom:"
msgstr "ქვედა ნაწილი:"
-#. bTWg
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -123,7 +113,6 @@ msgctxt ""
msgid "Device used:"
msgstr "გამოყენებული მოწყობილობა:"
-#. f^4O
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -133,7 +122,6 @@ msgctxt ""
msgid "Resolution [~DPI]"
msgstr "გარჩევადობა [~DPI]"
-#. Qq$M
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -143,7 +131,6 @@ msgctxt ""
msgid "Show advanced options"
msgstr "გაფართოებული პარამეტრების ჩვენება"
-#. NK-a
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -153,7 +140,6 @@ msgctxt ""
msgid "Options:"
msgstr "პარამეტრები:"
-#. J:eK
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -163,7 +149,6 @@ msgctxt ""
msgid "Vector element"
msgstr "ვექტორული ელემენტი"
-#. /}\N
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -173,7 +158,6 @@ msgctxt ""
msgid "Set"
msgstr "დაყენება"
-#. 5]Q7
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -182,7 +166,6 @@ msgctxt ""
msgid "Scanner"
msgstr "სკანერი"
-#. h;sG
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -199,7 +182,6 @@ msgstr ""
"მოდელი: %s\n"
"ტიპი: %s"
-#. Rw80
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -208,7 +190,6 @@ msgctxt ""
msgid "An error occurred while scanning."
msgstr "შეცდომა წარმოიშვა სკანირების დროს."
-#. Tp-+
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -217,7 +198,6 @@ msgctxt ""
msgid "The device does not offer a preview option. Therefore, a normal scan will be used as a preview instead. This may take a considerable amount of time."
msgstr "მოწყობილობას არ აქვს გადახედვის პარამეტრი. ამიტომ გადახედვის მაგივრად გამოყენებული იქნება ჩვეულებრივი სკანირება. ამას შეიძლება დასჭირდეს გარკვეული დრო. "
-#. hX;j
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -226,7 +206,6 @@ msgctxt ""
msgid "The SANE interface could not be initialized. Scanning is not possible."
msgstr "SANE-ის ინტერფეისის ინიციალიზაცია არ მოხერხდა. სკანირება შეუძლებელია."
-#. PgQe
#: grid.src
msgctxt ""
"grid.src\n"
@@ -236,7 +215,6 @@ msgctxt ""
msgid "Set"
msgstr "დაყენება"
-#. d)D;
#: grid.src
msgctxt ""
"grid.src\n"
@@ -246,7 +224,6 @@ msgctxt ""
msgid "Linear ascending"
msgstr "წრფივი აღმავლობა"
-#. HyhL
#: grid.src
msgctxt ""
"grid.src\n"
@@ -256,7 +233,6 @@ msgctxt ""
msgid "Linear descending"
msgstr "წრფივი დაღმავლობა"
-#. ]{CR
#: grid.src
msgctxt ""
"grid.src\n"
@@ -266,7 +242,6 @@ msgctxt ""
msgid "Original values"
msgstr "საწყისი მნიშვნელობა"
-#. (](f
#: grid.src
msgctxt ""
"grid.src\n"
diff --git a/source/ka/extensions/source/update/check.po b/source/ka/extensions/source/update/check.po
index dbddde289d3..498ba0ae47d 100644
--- a/source/ka/extensions/source/update/check.po
+++ b/source/ka/extensions/source/update/check.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. g*Z4
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Checking..."
msgstr ""
-#. Xj;\
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Checking for an update failed."
msgstr ""
-#. 7^\Y
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "%PRODUCTNAME %PRODUCTVERSION is up to date."
msgstr ""
-#. dxD7
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -57,7 +53,6 @@ msgid ""
"A password, usually the administrator's or root password, may be required."
msgstr ""
-#. wfY$
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -66,7 +61,6 @@ msgctxt ""
msgid "Check for Updates"
msgstr "~განახლებაზე შემოწმება..."
-#. kH/w
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "Downloading %PRODUCTNAME %NEXTVERSION paused at..."
msgstr ""
-#. 7.2#
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -84,7 +77,6 @@ msgctxt ""
msgid "Downloading %PRODUCTNAME %NEXTVERSION stalled at"
msgstr ""
-#. ~11K
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -96,7 +88,6 @@ msgid ""
"Under Tools – Options... - %PRODUCTNAME – Online Update you can change the download location."
msgstr ""
-#. tkv_
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "%FILE_NAME has been downloaded to %DOWNLOAD_PATH."
msgstr ""
-#. g+Lt
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -117,7 +107,6 @@ msgid ""
"Click 'Download...' to download %PRODUCTNAME %NEXTVERSION manually from the web site."
msgstr ""
-#. RJN8
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -126,7 +115,6 @@ msgctxt ""
msgid "Downloading %PRODUCTNAME %NEXTVERSION..."
msgstr ""
-#. 3Dm9
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -135,7 +123,6 @@ msgctxt ""
msgid "Download of %PRODUCTNAME %NEXTVERSION completed. Ready for installation."
msgstr ""
-#. `eI9
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -144,7 +131,6 @@ msgctxt ""
msgid "%PRODUCTNAME %PRODUCTVERSION"
msgstr "%PRODUCTNAME %PRODUCTVERSION"
-#. I;J,
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -153,7 +139,6 @@ msgctxt ""
msgid "Do you really want to cancel the download?"
msgstr ""
-#. B9|/
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -162,7 +147,6 @@ msgctxt ""
msgid "To install the update, %PRODUCTNAME %PRODUCTVERSION needs to be closed. Do you want to install the update now?"
msgstr ""
-#. v:FP
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -171,7 +155,6 @@ msgctxt ""
msgid "Install ~now"
msgstr ""
-#. QN)o
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -180,7 +163,6 @@ msgctxt ""
msgid "Install ~later"
msgstr ""
-#. t4,V
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -189,7 +171,6 @@ msgctxt ""
msgid "Could not run the installer application, please run %FILE_NAME in %DOWNLOAD_PATH manually."
msgstr ""
-#. iC9T
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -198,7 +179,6 @@ msgctxt ""
msgid "A file with that name already exists! Do you want to overwrite the existing file?"
msgstr ""
-#. w.]7
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -207,7 +187,6 @@ msgctxt ""
msgid "A file with the name '%FILENAME' already exists in '%DOWNLOAD_PATH'! Do you want to continue with the download or delete and reload the file?"
msgstr ""
-#. 7N7V
#: updatehdl.src
#, fuzzy
msgctxt ""
@@ -217,7 +196,6 @@ msgctxt ""
msgid "Reload File"
msgstr "გადატვირთვის ჩარჩო"
-#. 8qG,
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -226,7 +204,6 @@ msgctxt ""
msgid "Continue"
msgstr "გაგრძელება"
-#. MT,p
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -235,7 +212,6 @@ msgctxt ""
msgid "%PERCENT%"
msgstr ""
-#. K}OW
#: updatehdl.src
#, fuzzy
msgctxt ""
@@ -255,7 +231,6 @@ msgstr ""
"#-#-#-#-# textconversiondlgs.po (PACKAGE VERSION) #-#-#-#-#\n"
"სტატუსი"
-#. /hQk
#: updatehdl.src
#, fuzzy
msgctxt ""
@@ -279,7 +254,6 @@ msgstr ""
"#-#-#-#-# contnr.po (PACKAGE VERSION) #-#-#-#-#\n"
"აღწერილობა"
-#. CqPi
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -288,7 +262,6 @@ msgctxt ""
msgid "Close"
msgstr "დახურვა"
-#. Wb-C
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -297,7 +270,6 @@ msgctxt ""
msgid "~Download"
msgstr ""
-#. ^ZR3
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -306,7 +278,6 @@ msgctxt ""
msgid "~Install"
msgstr ""
-#. `svJ
#: updatehdl.src
#, fuzzy
msgctxt ""
@@ -316,7 +287,6 @@ msgctxt ""
msgid "~Pause"
msgstr "პაუზა"
-#. Fypk
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -325,7 +295,6 @@ msgctxt ""
msgid "~Resume"
msgstr ""
-#. }D@S
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -334,7 +303,6 @@ msgctxt ""
msgid "Cancel"
msgstr "გაუქმება"
-#. -L!;
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -343,7 +311,6 @@ msgctxt ""
msgid "%PRODUCTNAME update available"
msgstr ""
-#. 0#nw
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -352,7 +319,6 @@ msgctxt ""
msgid "Click the icon to start the download."
msgstr ""
-#. 7D`X
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -361,7 +327,6 @@ msgctxt ""
msgid "%PRODUCTNAME update available"
msgstr ""
-#. M?%A
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -370,7 +335,6 @@ msgctxt ""
msgid "Click the icon for more information."
msgstr ""
-#. +?c+
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -379,7 +343,6 @@ msgctxt ""
msgid "%PRODUCTNAME update available"
msgstr ""
-#. 5xVs
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -388,7 +351,6 @@ msgctxt ""
msgid "Download of update begins."
msgstr ""
-#. S:I4
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -397,7 +359,6 @@ msgctxt ""
msgid "Download of update in progress"
msgstr ""
-#. vX:u
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -406,7 +367,6 @@ msgctxt ""
msgid "Download of update paused"
msgstr ""
-#. Vi?J
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -415,7 +375,6 @@ msgctxt ""
msgid "Click the icon to resume."
msgstr ""
-#. aWS!
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -424,7 +383,6 @@ msgctxt ""
msgid "Download of update stalled"
msgstr ""
-#. y4,B
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -433,7 +391,6 @@ msgctxt ""
msgid "Click the icon for more information."
msgstr ""
-#. wpWK
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -442,7 +399,6 @@ msgctxt ""
msgid "Download of update completed"
msgstr ""
-#. 8NG0
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -451,7 +407,6 @@ msgctxt ""
msgid "Click the icon to start the installation."
msgstr ""
-#. U-cB
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -460,7 +415,6 @@ msgctxt ""
msgid "Updates for extensions available"
msgstr ""
-#. oo*[
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
diff --git a/source/ka/extensions/source/update/check/org/openoffice/Office.po b/source/ka/extensions/source/update/check/org/openoffice/Office.po
index 59f2310a9bf..93874b9bc09 100644
--- a/source/ka/extensions/source/update/check/org/openoffice/Office.po
+++ b/source/ka/extensions/source/update/check/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: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. QCbR
#: Addons.xcu
msgctxt ""
"Addons.xcu\n"
diff --git a/source/ka/filter/source/config/fragments/filters.po b/source/ka/filter/source/config/fragments/filters.po
index 3cb6f33c90c..abd8a666dbb 100644
--- a/source/ka/filter/source/config/fragments/filters.po
+++ b/source/ka/filter/source/config/fragments/filters.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-06-16 14:28+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. tluj
#: StarOffice_XML__Draw__ui.xcu
msgctxt ""
"StarOffice_XML__Draw__ui.xcu\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "%productname% %formatversion% Drawing"
msgstr "%productname% %formatversion% ნახატი"
-#. FSla
#: Text__encoded__ui.xcu
msgctxt ""
"Text__encoded__ui.xcu\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Text Encoded"
msgstr "კოდირებული ტექსტი"
-#. 1jf\
#: UOF_presentation_ui.xcu
msgctxt ""
"UOF_presentation_ui.xcu\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Unified Office Format presentation"
msgstr ""
-#. ``SF
#: Text__encoded___StarWriter_Web__ui.xcu
msgctxt ""
"Text__encoded___StarWriter_Web__ui.xcu\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Text Encoded (Writer/Web)"
msgstr ""
-#. WZVM
#: HTML__StarCalc__ui.xcu
msgctxt ""
"HTML__StarCalc__ui.xcu\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "HTML Document (Calc)"
msgstr ""
-#. h9p-
#: Text__encoded___StarWriter_GlobalDocument__ui.xcu
msgctxt ""
"Text__encoded___StarWriter_GlobalDocument__ui.xcu\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "Text Encoded (Master Document)"
msgstr ""
-#. 90^8
#: HTML__StarWriter__ui.xcu
msgctxt ""
"HTML__StarWriter__ui.xcu\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "HTML Document (Writer)"
msgstr ""
-#. eje)
#: UOF_text_ui.xcu
msgctxt ""
"UOF_text_ui.xcu\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "Unified Office Format text"
msgstr ""
-#. jWC2
#: MS_Word_2003_XML_ui.xcu
msgctxt ""
"MS_Word_2003_XML_ui.xcu\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "Microsoft Word 2003 XML"
msgstr "Microsoft Word 2003 XML"
-#. g,/e
#: MS_Excel_4_0_Vorlage_Template_ui.xcu
msgctxt ""
"MS_Excel_4_0_Vorlage_Template_ui.xcu\n"
@@ -115,7 +105,6 @@ msgctxt ""
msgid "Microsoft Excel 4.0 Template"
msgstr "Microsoft Excel 4.0 შაბლონი"
-#. x6dO
#: impress_MS_PowerPoint_2007_XML_AutoPlay.xcu
#, fuzzy
msgctxt ""
@@ -126,7 +115,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 2007/2010 XML AutoPlay"
msgstr "Microsoft PowerPoint 97/2000/XP შაბლონი"
-#. 877d
#: MS_Word_2007_XML_Template.xcu
#, fuzzy
msgctxt ""
@@ -137,7 +125,6 @@ msgctxt ""
msgid "Microsoft Word 2007/2010 XML Template"
msgstr "Microsoft Word 97/2000/XP შაბლონი"
-#. cx]J
#: MS_Excel_95_Vorlage_Template_ui.xcu
msgctxt ""
"MS_Excel_95_Vorlage_Template_ui.xcu\n"
@@ -147,7 +134,6 @@ msgctxt ""
msgid "Microsoft Excel 95 Template"
msgstr "Microsoft Excel 95 შაბლონი"
-#. EEc%
#: calc8_template_ui.xcu
#, fuzzy
msgctxt ""
@@ -158,7 +144,6 @@ msgctxt ""
msgid "ODF Spreadsheet Template"
msgstr "ელექტრონული ცხრილის შაბლონი"
-#. MVN`
#: impress8_template_ui.xcu
msgctxt ""
"impress8_template_ui.xcu\n"
@@ -168,7 +153,6 @@ msgctxt ""
msgid "ODF Presentation Template"
msgstr ""
-#. |H*2
#: chart8_ui.xcu
msgctxt ""
"chart8_ui.xcu\n"
@@ -178,7 +162,6 @@ msgctxt ""
msgid "ODF Chart"
msgstr ""
-#. 3K~!
#: calc_MS_Excel_2007_Binary_ui.xcu
msgctxt ""
"calc_MS_Excel_2007_Binary_ui.xcu\n"
@@ -188,7 +171,6 @@ msgctxt ""
msgid "Microsoft Excel 2007 Binary"
msgstr "Microsoft Excel 2003 XML"
-#. o?NG
#: impress_MS_PowerPoint_2007_XML_Template.xcu
#, fuzzy
msgctxt ""
@@ -199,7 +181,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 2007/2010 XML Template"
msgstr "Microsoft PowerPoint 97/2000/XP შაბლონი"
-#. ?Kb,
#: impress_OOXML_ui.xcu
msgctxt ""
"impress_OOXML_ui.xcu\n"
@@ -209,7 +190,6 @@ msgctxt ""
msgid "Office Open XML Presentation"
msgstr ""
-#. %(ni
#: draw8_template_ui.xcu
msgctxt ""
"draw8_template_ui.xcu\n"
@@ -219,7 +199,6 @@ msgctxt ""
msgid "ODF Drawing Template"
msgstr ""
-#. Y5_V
#: StarOffice_XML__Math__ui.xcu
msgctxt ""
"StarOffice_XML__Math__ui.xcu\n"
@@ -229,7 +208,6 @@ msgctxt ""
msgid "%productname% %formatversion% Formula"
msgstr "%productname% %formatversion% ფორმულა"
-#. Z?OM
#: MS_Word_97_Vorlage_ui.xcu
#, fuzzy
msgctxt ""
@@ -240,7 +218,6 @@ msgctxt ""
msgid "Microsoft Word 97/2000/XP/2003 Template"
msgstr "Microsoft Word 97/2000/XP შაბლონი"
-#. #2bU
#: impress_StarOffice_XML_Draw_ui.xcu
#, fuzzy
msgctxt ""
@@ -251,7 +228,6 @@ msgctxt ""
msgid "%productname% %formatversion% Drawing (Impress)"
msgstr "%productname% %formatversion% ნახატის შაბლონი"
-#. ?G4t
#: MS_Word_2007_XML_Template_ui.xcu
#, fuzzy
msgctxt ""
@@ -262,7 +238,6 @@ msgctxt ""
msgid "Microsoft Word 2007/2010 XML Template"
msgstr "Microsoft Word 97/2000/XP შაბლონი"
-#. 8*:[
#: impress_OOXML_Template_ui.xcu
msgctxt ""
"impress_OOXML_Template_ui.xcu\n"
@@ -272,7 +247,6 @@ msgctxt ""
msgid "Office Open XML Presentation Template"
msgstr ""
-#. r=7Q
#: calc_OOXML_Template_ui.xcu
msgctxt ""
"calc_OOXML_Template_ui.xcu\n"
@@ -282,7 +256,6 @@ msgctxt ""
msgid "Office Open XML Spreadsheet Template"
msgstr ""
-#. 7,nr
#: UOF_spreadsheet_ui.xcu
msgctxt ""
"UOF_spreadsheet_ui.xcu\n"
@@ -292,7 +265,6 @@ msgctxt ""
msgid "Unified Office Format spreadsheet"
msgstr ""
-#. p]gv
#: calc_MS_Excel_2007_XML_ui.xcu
#, fuzzy
msgctxt ""
@@ -303,7 +275,6 @@ msgctxt ""
msgid "Microsoft Excel 2007/2010 XML"
msgstr "Microsoft Excel 2003 XML"
-#. 0M*O
#: writer_web_StarOffice_XML_Writer_Web_Template_ui.xcu
msgctxt ""
"writer_web_StarOffice_XML_Writer_Web_Template_ui.xcu\n"
@@ -313,7 +284,6 @@ msgctxt ""
msgid "%productname% %formatversion% HTML Template"
msgstr "%productname% %formatversion% HTML შაბლონი"
-#. qT6D
#: writerweb8_writer_template_ui.xcu
msgctxt ""
"writerweb8_writer_template_ui.xcu\n"
@@ -323,7 +293,6 @@ msgctxt ""
msgid "HTML Document Template"
msgstr "HTML დოკუმენტის შაბლონი"
-#. yL/+
#: StarOffice_XML__Calc__ui.xcu
msgctxt ""
"StarOffice_XML__Calc__ui.xcu\n"
@@ -333,7 +302,6 @@ msgctxt ""
msgid "%productname% %formatversion% Spreadsheet"
msgstr "%productname% %formatversion% ელექტრონული ცხრილი"
-#. o/GW
#: OOXML_Text_Template_ui.xcu
msgctxt ""
"OOXML_Text_Template_ui.xcu\n"
@@ -343,7 +311,6 @@ msgctxt ""
msgid "Office Open XML Text Template"
msgstr ""
-#. $+;N
#: draw8_ui.xcu
msgctxt ""
"draw8_ui.xcu\n"
@@ -353,7 +320,6 @@ msgctxt ""
msgid "ODF Drawing"
msgstr ""
-#. L3Qs
#: calc_MS_Excel_2007_XML_Template_ui.xcu
#, fuzzy
msgctxt ""
@@ -364,7 +330,6 @@ msgctxt ""
msgid "Microsoft Excel 2007/2010 XML Template"
msgstr "Microsoft Excel 97/2000/XP შაბლონი"
-#. H9?2
#: impress8_ui.xcu
#, fuzzy
msgctxt ""
@@ -375,7 +340,6 @@ msgctxt ""
msgid "ODF Presentation"
msgstr "ახალი პრეზენტაცია"
-#. 6HHU
#: Text__StarWriter_Web__ui.xcu
#, fuzzy
msgctxt ""
@@ -386,7 +350,6 @@ msgctxt ""
msgid "Text (Writer/Web)"
msgstr "ტექსტი (StarWriter/Web)"
-#. 2*9O
#: impress_MS_PowerPoint_2007_XML_ui.xcu
#, fuzzy
msgctxt ""
@@ -397,7 +360,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 2007/2010 XML"
msgstr "Microsoft PowerPoint 97/2000/XP შაბლონი"
-#. pn~s
#: calc8_ui.xcu
msgctxt ""
"calc8_ui.xcu\n"
@@ -407,7 +369,6 @@ msgctxt ""
msgid "ODF Spreadsheet"
msgstr ""
-#. ,MlL
#: calc_HTML_WebQuery_ui.xcu
msgctxt ""
"calc_HTML_WebQuery_ui.xcu\n"
@@ -417,7 +378,6 @@ msgctxt ""
msgid "Web Page Query (Calc)"
msgstr ""
-#. `Atl
#: HTML_MasterDoc_ui.xcu
msgctxt ""
"HTML_MasterDoc_ui.xcu\n"
@@ -427,7 +387,6 @@ msgctxt ""
msgid "HTML Document (Master Document)"
msgstr ""
-#. AJSF
#: writerweb8_writer_ui.xcu
msgctxt ""
"writerweb8_writer_ui.xcu\n"
@@ -437,7 +396,6 @@ msgctxt ""
msgid "%productname% Text (Writer/Web)"
msgstr ""
-#. }t(*
#: Text_ui.xcu
msgctxt ""
"Text_ui.xcu\n"
@@ -447,7 +405,6 @@ msgctxt ""
msgid "Text"
msgstr "ტექსტი"
-#. ,n.B
#: calc_StarOffice_XML_Calc_Template_ui.xcu
msgctxt ""
"calc_StarOffice_XML_Calc_Template_ui.xcu\n"
@@ -457,7 +414,6 @@ msgctxt ""
msgid "%productname% %formatversion% Spreadsheet Template"
msgstr "%productname% %formatversion% ელექრონული ცხრილის შაბლონი"
-#. 7sAm
#: OOXML_Text_ui.xcu
msgctxt ""
"OOXML_Text_ui.xcu\n"
@@ -467,7 +423,6 @@ msgctxt ""
msgid "Office Open XML Text"
msgstr ""
-#. @IUQ
#: HTML_ui.xcu
msgctxt ""
"HTML_ui.xcu\n"
@@ -477,7 +432,6 @@ msgctxt ""
msgid "HTML Document"
msgstr "HTML დოკუმენტი"
-#. ][6X
#: impress_html_Export_ui.xcu
msgctxt ""
"impress_html_Export_ui.xcu\n"
@@ -487,7 +441,6 @@ msgctxt ""
msgid "HTML Document (Impress)"
msgstr ""
-#. 2Nj`
#: writer_StarOffice_XML_Writer_Template_ui.xcu
msgctxt ""
"writer_StarOffice_XML_Writer_Template_ui.xcu\n"
@@ -497,7 +450,6 @@ msgctxt ""
msgid "%productname% %formatversion% Text Document Template"
msgstr "%productname% %formatversion% ტესტური დოკუმენტის შაბლონი"
-#. MOg?
#: MS_Excel_97_Vorlage_Template_ui.xcu
#, fuzzy
msgctxt ""
@@ -508,7 +460,6 @@ msgctxt ""
msgid "Microsoft Excel 97/2000/XP/2003 Template"
msgstr "Microsoft Excel 97/2000/XP შაბლონი"
-#. clCD
#: StarOffice_XML__Writer__ui.xcu
msgctxt ""
"StarOffice_XML__Writer__ui.xcu\n"
@@ -518,7 +469,6 @@ msgctxt ""
msgid "%productname% %formatversion% Text Document"
msgstr "ტექსტური დოკუმენტი"
-#. ZOC6
#: StarOffice_XML__Impress__ui.xcu
msgctxt ""
"StarOffice_XML__Impress__ui.xcu\n"
@@ -528,7 +478,6 @@ msgctxt ""
msgid "%productname% %formatversion% Presentation"
msgstr "%productname% %formatversion% პრეზენტაცია"
-#. ^jXH
#: writerglobal8_ui.xcu
msgctxt ""
"writerglobal8_ui.xcu\n"
@@ -538,7 +487,6 @@ msgctxt ""
msgid "ODF Master Document"
msgstr ""
-#. J@6X
#: MS_Excel_5_0_95_Vorlage_Template_ui.xcu
msgctxt ""
"MS_Excel_5_0_95_Vorlage_Template_ui.xcu\n"
@@ -548,7 +496,6 @@ msgctxt ""
msgid "Microsoft Excel 5.0 Template"
msgstr "Microsoft Excel 5.0 შაბლონი"
-#. 30UV
#: MS_Excel_2003_XML_ui.xcu
msgctxt ""
"MS_Excel_2003_XML_ui.xcu\n"
@@ -558,7 +505,6 @@ msgctxt ""
msgid "Microsoft Excel 2003 XML"
msgstr "Microsoft Excel 2003 XML"
-#. K?ig
#: impress_StarOffice_XML_Impress_Template_ui.xcu
msgctxt ""
"impress_StarOffice_XML_Impress_Template_ui.xcu\n"
@@ -568,7 +514,6 @@ msgctxt ""
msgid "%productname% %formatversion% Presentation Template"
msgstr "%productname% %formatversion% პრეზენტაციის შაბლონი"
-#. tI1@
#: writer_globaldocument_StarOffice_XML_Writer_ui.xcu
msgctxt ""
"writer_globaldocument_StarOffice_XML_Writer_ui.xcu\n"
@@ -578,7 +523,6 @@ msgctxt ""
msgid "%productname% %formatversion% Text Document"
msgstr "ტექსტური დოკუმენტი"
-#. ,(b:
#: impress8_draw_ui.xcu
msgctxt ""
"impress8_draw_ui.xcu\n"
@@ -588,7 +532,6 @@ msgctxt ""
msgid "ODF Drawing (Impress)"
msgstr ""
-#. Mt[;
#: writer_web_StarOffice_XML_Writer_ui.xcu
#, fuzzy
msgctxt ""
@@ -599,7 +542,6 @@ msgctxt ""
msgid "%productname% %formatversion% Text Document (Writer/Web)"
msgstr "%productname% %formatversion% ტესტური დოკუმენტის შაბლონი"
-#. ?H1Y
#: calc_OOXML_ui.xcu
msgctxt ""
"calc_OOXML_ui.xcu\n"
@@ -609,7 +551,6 @@ msgctxt ""
msgid "Office Open XML Spreadsheet"
msgstr ""
-#. yoFo
#: impress_MS_PowerPoint_2007_XML_Template_ui.xcu
#, fuzzy
msgctxt ""
@@ -620,7 +561,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 2007/2010 XML Template"
msgstr "Microsoft PowerPoint 97/2000/XP შაბლონი"
-#. tb):
#: Text___txt___csv__StarCalc__ui.xcu
msgctxt ""
"Text___txt___csv__StarCalc__ui.xcu\n"
@@ -630,7 +570,6 @@ msgctxt ""
msgid "Text CSV"
msgstr "ტექსტი CSV"
-#. 9B3M
#: writer_globaldocument_StarOffice_XML_Writer_GlobalDocument_ui.xcu
msgctxt ""
"writer_globaldocument_StarOffice_XML_Writer_GlobalDocument_ui.xcu\n"
@@ -640,7 +579,6 @@ msgctxt ""
msgid "%productname% %formatversion% Master Document"
msgstr "%productname% %formatversion% ძირითადი დოკუმენტი"
-#. W^dl
#: writer8_ui.xcu
#, fuzzy
msgctxt ""
@@ -651,7 +589,6 @@ msgctxt ""
msgid "ODF Text Document"
msgstr "ტექსტური დოკუმენტი"
-#. jmL)
#: MS_Word_95_Vorlage_ui.xcu
msgctxt ""
"MS_Word_95_Vorlage_ui.xcu\n"
@@ -661,7 +598,6 @@ msgctxt ""
msgid "Microsoft Word 95 Template"
msgstr "Microsoft Word 95 შაბლონი"
-#. l,@_
#: writer8_template_ui.xcu
msgctxt ""
"writer8_template_ui.xcu\n"
@@ -671,7 +607,6 @@ msgctxt ""
msgid "ODF Text Document Template"
msgstr ""
-#. #3,N
#: draw_html_Export_ui.xcu
msgctxt ""
"draw_html_Export_ui.xcu\n"
@@ -681,7 +616,6 @@ msgctxt ""
msgid "HTML Document (Draw)"
msgstr ""
-#. 3]]=
#: draw_StarOffice_XML_Draw_Template_ui.xcu
msgctxt ""
"draw_StarOffice_XML_Draw_Template_ui.xcu\n"
@@ -691,7 +625,6 @@ msgctxt ""
msgid "%productname% %formatversion% Drawing Template"
msgstr "%productname% %formatversion% ნახატის შაბლონი"
-#. H=YU
#: writerglobal8_writer_ui.xcu
#, fuzzy
msgctxt ""
@@ -702,7 +635,6 @@ msgctxt ""
msgid "ODF Text Document"
msgstr "ტექსტური დოკუმენტი"
-#. 2[!X
#: StarOffice_XML__Base__ui.xcu
#, fuzzy
msgctxt ""
@@ -713,7 +645,6 @@ msgctxt ""
msgid "ODF Database"
msgstr "ახალი მონაცემთა ბაზა"
-#. ]m0?
#: MS_Word_2007_XML_ui.xcu
#, fuzzy
msgctxt ""
@@ -724,7 +655,6 @@ msgctxt ""
msgid "Microsoft Word 2007/2010 XML"
msgstr "Microsoft Word 2003 XML"
-#. @w`5
#: MS_PowerPoint_97_Vorlage_ui.xcu
#, fuzzy
msgctxt ""
@@ -735,7 +665,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 97/2000/XP/2003 Template"
msgstr "Microsoft PowerPoint 97/2000/XP შაბლონი"
-#. _bE!
#: StarOffice_XML__Chart__ui.xcu
msgctxt ""
"StarOffice_XML__Chart__ui.xcu\n"
@@ -745,7 +674,6 @@ msgctxt ""
msgid "%productname% %formatversion% Chart"
msgstr "%productname% %formatversion% Chart"
-#. 8O3T
#: math8_ui.xcu
msgctxt ""
"math8_ui.xcu\n"
diff --git a/source/ka/filter/source/config/fragments/internalgraphicfilters.po b/source/ka/filter/source/config/fragments/internalgraphicfilters.po
index 96230ac12f6..4c47f5fa243 100644
--- a/source/ka/filter/source/config/fragments/internalgraphicfilters.po
+++ b/source/ka/filter/source/config/fragments/internalgraphicfilters.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:13+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. WH%g
#: svg_Import.xcu
msgctxt ""
"svg_Import.xcu\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics"
msgstr ""
-#. rk[w
#: psd_Import.xcu
msgctxt ""
"psd_Import.xcu\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. nN9M
#: jpg_Export.xcu
msgctxt ""
"jpg_Export.xcu\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. $180
#: dxf_Import.xcu
msgctxt ""
"dxf_Import.xcu\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. !1co
#: bmp_Import.xcu
msgctxt ""
"bmp_Import.xcu\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "BMP - Windows Bitmap"
msgstr ""
-#. kltH
#: tif_Import.xcu
msgctxt ""
"tif_Import.xcu\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. cK7s
#: xpm_Export.xcu
msgctxt ""
"xpm_Export.xcu\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "XPM - X PixMap"
msgstr ""
-#. LBZQ
#: pcd_Import_Base16.xcu
msgctxt ""
"pcd_Import_Base16.xcu\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "PCD - Kodak Photo CD (192x128)"
msgstr ""
-#. Qb,j
#: ras_Import.xcu
msgctxt ""
"ras_Import.xcu\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. Co!+
#: ppm_Import.xcu
msgctxt ""
"ppm_Import.xcu\n"
@@ -115,7 +105,6 @@ msgctxt ""
msgid "PPM - Portable Pixelmap"
msgstr ""
-#. MoeF
#: png_Export.xcu
msgctxt ""
"png_Export.xcu\n"
@@ -125,7 +114,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. :=wc
#: sgv_Import.xcu
msgctxt ""
"sgv_Import.xcu\n"
@@ -135,7 +123,6 @@ msgctxt ""
msgid "SGV - StarDraw 2.0"
msgstr ""
-#. 7gT1
#: wmf_Import.xcu
msgctxt ""
"wmf_Import.xcu\n"
@@ -145,7 +132,6 @@ msgctxt ""
msgid "WMF - Windows Metafile"
msgstr ""
-#. ]?[k
#: pcx_Import.xcu
msgctxt ""
"pcx_Import.xcu\n"
@@ -155,7 +141,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. $(nB
#: sgf_Import.xcu
msgctxt ""
"sgf_Import.xcu\n"
@@ -165,7 +150,6 @@ msgctxt ""
msgid "SGF - StarWriter Graphics Format"
msgstr ""
-#. M]4B
#: met_Export.xcu
msgctxt ""
"met_Export.xcu\n"
@@ -175,7 +159,6 @@ msgctxt ""
msgid "MET - OS/2 Metafile"
msgstr ""
-#. 6o+b
#: eps_Import.xcu
msgctxt ""
"eps_Import.xcu\n"
@@ -185,7 +168,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. @ZOn
#: bmp_Export.xcu
msgctxt ""
"bmp_Export.xcu\n"
@@ -195,7 +177,6 @@ msgctxt ""
msgid "BMP - Windows Bitmap"
msgstr ""
-#. P}G7
#: jpg_Import.xcu
msgctxt ""
"jpg_Import.xcu\n"
@@ -205,7 +186,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. K_`5
#: ppm_Export.xcu
msgctxt ""
"ppm_Export.xcu\n"
@@ -215,7 +195,6 @@ msgctxt ""
msgid "PPM - Portable Pixelmap"
msgstr ""
-#. )`ND
#: pbm_Export.xcu
msgctxt ""
"pbm_Export.xcu\n"
@@ -225,7 +204,6 @@ msgctxt ""
msgid "PBM - Portable Bitmap"
msgstr ""
-#. aA?q
#: gif_Export.xcu
msgctxt ""
"gif_Export.xcu\n"
@@ -235,7 +213,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange Format"
msgstr ""
-#. :zU2
#: ras_Export.xcu
msgctxt ""
"ras_Export.xcu\n"
@@ -245,7 +222,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. Ga7:
#: tif_Export.xcu
msgctxt ""
"tif_Export.xcu\n"
@@ -255,7 +231,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. VNR8
#: pct_Import.xcu
msgctxt ""
"pct_Import.xcu\n"
@@ -265,7 +240,6 @@ msgctxt ""
msgid "PCT - Mac Pict"
msgstr ""
-#. B`\~
#: xbm_Import.xcu
msgctxt ""
"xbm_Import.xcu\n"
@@ -275,7 +249,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. %Z(;
#: emf_Export.xcu
msgctxt ""
"emf_Export.xcu\n"
@@ -285,7 +258,6 @@ msgctxt ""
msgid "EMF - Enhanced Metafile"
msgstr ""
-#. ]\SO
#: svm_Import.xcu
msgctxt ""
"svm_Import.xcu\n"
@@ -295,7 +267,6 @@ msgctxt ""
msgid "SVM - StarView Metafile"
msgstr ""
-#. llig
#: svg_Export.xcu
msgctxt ""
"svg_Export.xcu\n"
@@ -305,7 +276,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics"
msgstr ""
-#. :[\\
#: xpm_Import.xcu
msgctxt ""
"xpm_Import.xcu\n"
@@ -315,7 +285,6 @@ msgctxt ""
msgid "XPM - X PixMap"
msgstr ""
-#. IJmO
#: pcd_Import_Base4.xcu
msgctxt ""
"pcd_Import_Base4.xcu\n"
@@ -325,7 +294,6 @@ msgctxt ""
msgid "PCD - Kodak Photo CD (384x256)"
msgstr ""
-#. JU6T
#: pcd_Import_Base.xcu
msgctxt ""
"pcd_Import_Base.xcu\n"
@@ -335,7 +303,6 @@ msgctxt ""
msgid "PCD - Kodak Photo CD (768x512)"
msgstr ""
-#. y+w+
#: pgm_Import.xcu
msgctxt ""
"pgm_Import.xcu\n"
@@ -345,7 +312,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. UlYg
#: svm_Export.xcu
msgctxt ""
"svm_Export.xcu\n"
@@ -355,7 +321,6 @@ msgctxt ""
msgid "SVM - StarView Metafile"
msgstr ""
-#. 9+j;
#: met_Import.xcu
msgctxt ""
"met_Import.xcu\n"
@@ -365,7 +330,6 @@ msgctxt ""
msgid "MET - OS/2 Metafile"
msgstr ""
-#. ;~S:
#: pct_Export.xcu
msgctxt ""
"pct_Export.xcu\n"
@@ -375,7 +339,6 @@ msgctxt ""
msgid "PCT - Mac Pict"
msgstr ""
-#. @A~4
#: png_Import.xcu
msgctxt ""
"png_Import.xcu\n"
@@ -385,7 +348,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. WB2s
#: gif_Import.xcu
msgctxt ""
"gif_Import.xcu\n"
@@ -395,7 +357,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange Format"
msgstr ""
-#. sIoS
#: pbm_Import.xcu
msgctxt ""
"pbm_Import.xcu\n"
@@ -405,7 +366,6 @@ msgctxt ""
msgid "PBM - Portable Bitmap"
msgstr ""
-#. }4lG
#: eps_Export.xcu
msgctxt ""
"eps_Export.xcu\n"
@@ -415,7 +375,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. 62U|
#: tga_Import.xcu
msgctxt ""
"tga_Import.xcu\n"
@@ -425,7 +384,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. zj\*
#: emf_Import.xcu
msgctxt ""
"emf_Import.xcu\n"
@@ -435,7 +393,6 @@ msgctxt ""
msgid "EMF - Enhanced Metafile"
msgstr ""
-#. N-6v
#: wmf_Export.xcu
msgctxt ""
"wmf_Export.xcu\n"
@@ -445,7 +402,6 @@ msgctxt ""
msgid "WMF - Windows Metafile"
msgstr ""
-#. \c6#
#: pgm_Export.xcu
msgctxt ""
"pgm_Export.xcu\n"
diff --git a/source/ka/filter/source/config/fragments/types.po b/source/ka/filter/source/config/fragments/types.po
index a6ac087ff0a..16bb419f41c 100644
--- a/source/ka/filter/source/config/fragments/types.po
+++ b/source/ka/filter/source/config/fragments/types.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-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-11-26 02:59+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. x3d`
#: writer8_template.xcu
msgctxt ""
"writer8_template.xcu\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "Writer 8 Template"
msgstr ""
-#. D[gE
#: MS_PowerPoint_2007_XML_AutoPlay.xcu
#, fuzzy
msgctxt ""
@@ -36,7 +34,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 2007/2010 XML"
msgstr "Microsoft Word 2003 XML"
-#. sm8]
#: math8.xcu
msgctxt ""
"math8.xcu\n"
@@ -46,7 +43,6 @@ msgctxt ""
msgid "Math 8"
msgstr ""
-#. Bgkg
#: draw8.xcu
msgctxt ""
"draw8.xcu\n"
@@ -56,7 +52,6 @@ msgctxt ""
msgid "Draw 8"
msgstr ""
-#. !^^%
#: writer8.xcu
msgctxt ""
"writer8.xcu\n"
@@ -66,7 +61,6 @@ msgctxt ""
msgid "Writer 8"
msgstr ""
-#. U;W8
#: StarBase.xcu
#, fuzzy
msgctxt ""
@@ -83,7 +77,6 @@ msgstr ""
"#-#-#-#-# base.po (PACKAGE VERSION) #-#-#-#-#\n"
"OpenDocument Database"
-#. {6WL
#: MS_PowerPoint_2007_XML_Template.xcu
#, fuzzy
msgctxt ""
@@ -94,7 +87,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 2007/2010 XML Template"
msgstr "Microsoft Word 2003 XML"
-#. jQ8A
#: impress8_template.xcu
msgctxt ""
"impress8_template.xcu\n"
@@ -104,7 +96,6 @@ msgctxt ""
msgid "Impress 8 Template"
msgstr ""
-#. $TR?
#: calc8_template.xcu
msgctxt ""
"calc8_template.xcu\n"
@@ -114,7 +105,6 @@ msgctxt ""
msgid "Calc 8 Template"
msgstr ""
-#. qwTC
#: writer_MS_Word_2007_XML.xcu
#, fuzzy
msgctxt ""
@@ -125,7 +115,6 @@ msgctxt ""
msgid "Microsoft Word 2007/2010 XML"
msgstr "Microsoft Word 2003 XML"
-#. 6gQv
#: calc_MS_Excel_2003_XML.xcu
msgctxt ""
"calc_MS_Excel_2003_XML.xcu\n"
@@ -135,7 +124,6 @@ msgctxt ""
msgid "Microsoft Excel 2003 XML"
msgstr "Microsoft Excel 2003 XML"
-#. w7!h
#: MS_Excel_2007_Binary.xcu
msgctxt ""
"MS_Excel_2007_Binary.xcu\n"
@@ -145,7 +133,6 @@ msgctxt ""
msgid "Microsoft Excel 2007 Binary"
msgstr "Microsoft Excel 2003 XML"
-#. zY[|
#: writer_MS_Word_2003_XML.xcu
msgctxt ""
"writer_MS_Word_2003_XML.xcu\n"
@@ -155,7 +142,6 @@ msgctxt ""
msgid "Microsoft Word 2003 XML"
msgstr "Microsoft Word 2003 XML"
-#. GB)m
#: MS_Excel_2007_XML_Template.xcu
#, fuzzy
msgctxt ""
@@ -166,7 +152,6 @@ msgctxt ""
msgid "Microsoft Excel 2007/2010 XML Template"
msgstr "Microsoft Excel 2003 XML"
-#. ;Fv(
#: chart8.xcu
msgctxt ""
"chart8.xcu\n"
@@ -176,7 +161,6 @@ msgctxt ""
msgid "Chart 8"
msgstr ""
-#. TTlL
#: writerweb8_writer_template.xcu
msgctxt ""
"writerweb8_writer_template.xcu\n"
@@ -186,7 +170,6 @@ msgctxt ""
msgid "Writer/Web 8 Template"
msgstr ""
-#. x9Oe
#: draw8_template.xcu
msgctxt ""
"draw8_template.xcu\n"
@@ -196,7 +179,6 @@ msgctxt ""
msgid "Draw 8 Template"
msgstr ""
-#. U@|E
#: writer_MS_Word_2007_XML_Template.xcu
#, fuzzy
msgctxt ""
@@ -207,7 +189,6 @@ msgctxt ""
msgid "Microsoft Word 2007/2010 XML Template"
msgstr "Microsoft Word 2003 XML"
-#. Eu9!
#: calc8.xcu
msgctxt ""
"calc8.xcu\n"
@@ -217,7 +198,6 @@ msgctxt ""
msgid "Calc 8"
msgstr ""
-#. 3P||
#: impress8.xcu
msgctxt ""
"impress8.xcu\n"
@@ -227,7 +207,6 @@ msgctxt ""
msgid "Impress 8"
msgstr ""
-#. MGe)
#: writerglobal8.xcu
#, fuzzy
msgctxt ""
@@ -238,7 +217,6 @@ msgctxt ""
msgid "Writer 8 Master Document"
msgstr "StarWriter 5.0 ძირითადი დოკუმენტი"
-#. .k,:
#: MS_PowerPoint_2007_XML.xcu
#, fuzzy
msgctxt ""
@@ -249,7 +227,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 2007/2010 XML"
msgstr "Microsoft Word 2003 XML"
-#. a[Qh
#: MS_Excel_2007_XML.xcu
#, fuzzy
msgctxt ""
diff --git a/source/ka/filter/source/flash.po b/source/ka/filter/source/flash.po
index 8b532a2d4ca..57eeac9a217 100644
--- a/source/ka/filter/source/flash.po
+++ b/source/ka/filter/source/flash.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:14+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. SaUo
#: impswfdialog.src
msgctxt ""
"impswfdialog.src\n"
@@ -29,7 +28,6 @@ msgstr ""
"1: მინ. ხარისხი\n"
"100: მაქს. ხარისხი"
-#. \Qfh
#: impswfdialog.src
msgctxt ""
"impswfdialog.src\n"
diff --git a/source/ka/filter/source/graphicfilter/eps.po b/source/ka/filter/source/graphicfilter/eps.po
index 02f56b5f13b..b6b89dba556 100644
--- a/source/ka/filter/source/graphicfilter/eps.po
+++ b/source/ka/filter/source/graphicfilter/eps.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:14+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. \|.i
#: epsstr.src
msgctxt ""
"epsstr.src\n"
diff --git a/source/ka/filter/source/pdf.po b/source/ka/filter/source/pdf.po
index 861b82ece52..3ec72e255fe 100644
--- a/source/ka/filter/source/pdf.po
+++ b/source/ka/filter/source/pdf.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-11 23:18+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. LY5v
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "E~xport"
msgstr "ე~ქსპორტი"
-#. AQU:
#: impdialog.src
#, fuzzy
msgctxt ""
@@ -34,7 +32,6 @@ msgctxt ""
msgid "Set open password"
msgstr "დააყენე ღ~ია პაროლი..."
-#. Z2)V
#: impdialog.src
#, fuzzy
msgctxt ""
@@ -44,7 +41,6 @@ msgctxt ""
msgid "Set permission password"
msgstr "დააყენე ს~ანებართვო პაროლი..."
-#. 4S[C
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "Range"
msgstr "დიაპაზონი"
-#. W0[B
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -64,7 +59,6 @@ msgctxt ""
msgid "~All"
msgstr "ყ~ველა"
-#. 0#QB
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -74,7 +68,6 @@ msgctxt ""
msgid "~Pages"
msgstr "~გვერდები"
-#. (QN6
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -84,7 +77,6 @@ msgctxt ""
msgid "~Selection"
msgstr "~მონიშვნა"
-#. TDTP
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -94,7 +86,6 @@ msgctxt ""
msgid "Images"
msgstr "ნახატები"
-#. W0pN
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -104,7 +95,6 @@ msgctxt ""
msgid "~Lossless compression"
msgstr "შეკუმშვა ~დანაკარგების გარეშე"
-#. (reK
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -114,7 +104,6 @@ msgctxt ""
msgid "~JPEG compression"
msgstr "~JPEG შეკუმშვა"
-#. !YT5
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -124,7 +113,6 @@ msgctxt ""
msgid "~Quality"
msgstr "ხ~არისხი"
-#. w1Y:
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -134,7 +122,6 @@ msgctxt ""
msgid "~Reduce image resolution"
msgstr "ნახატის გარჩევადობის შ~ემცირება"
-#. wK|)
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -143,7 +130,6 @@ msgctxt ""
msgid "General"
msgstr "ზოგადი"
-#. O__/
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -152,7 +138,6 @@ msgctxt ""
msgid "Watermark"
msgstr "წყლის ნიშანი"
-#. m%~K
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -161,7 +146,6 @@ msgctxt ""
msgid "Sign with Watermark"
msgstr ""
-#. Z:i#
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -170,7 +154,6 @@ msgctxt ""
msgid "Watermark Text"
msgstr ""
-#. ]h9H
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -179,7 +162,6 @@ msgctxt ""
msgid "General"
msgstr "ზოგადი"
-#. znbP
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -188,7 +170,6 @@ msgctxt ""
msgid "Em~bed OpenDocument file"
msgstr ""
-#. }Y+-
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -197,7 +178,6 @@ msgctxt ""
msgid "Makes this PDF easily editable in %PRODUCTNAME"
msgstr ""
-#. .Dg$
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -206,7 +186,6 @@ msgctxt ""
msgid "P~DF/A-1a"
msgstr ""
-#. :CRm
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -215,7 +194,6 @@ msgctxt ""
msgid "~Tagged PDF"
msgstr "~Tagged PDF"
-#. t8Q0
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -224,7 +202,6 @@ msgctxt ""
msgid "~Create PDF form"
msgstr ""
-#. Om4N
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -233,7 +210,6 @@ msgctxt ""
msgid "Submit ~format"
msgstr ""
-#. -R[=
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -242,7 +218,6 @@ msgctxt ""
msgid "Allow duplicate field ~names"
msgstr ""
-#. K~#|
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -251,7 +226,6 @@ msgctxt ""
msgid "Export ~bookmarks"
msgstr ""
-#. o}Se
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -260,7 +234,6 @@ msgctxt ""
msgid "~Export comments"
msgstr ""
-#. {wNC
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -269,7 +242,6 @@ msgctxt ""
msgid "Export ~notes pages"
msgstr ""
-#. al{^
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -278,7 +250,6 @@ msgctxt ""
msgid "Export ~hidden pages"
msgstr ""
-#. p-BB
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -287,7 +258,6 @@ msgctxt ""
msgid "Exp~ort automatically inserted blank pages"
msgstr "ჩასმული ს~უფთა გვერდების ავტომატური ექსპორტი"
-#. V{m/
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -296,7 +266,6 @@ msgctxt ""
msgid "E~mbed standard fonts"
msgstr ""
-#. cfF8
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -305,7 +274,6 @@ msgctxt ""
msgid "PDF/A does not allow encryption. The exported PDF file will not be password protected."
msgstr ""
-#. LT;O
#: impdialog.src
#, fuzzy
msgctxt ""
@@ -315,7 +283,6 @@ msgctxt ""
msgid "PDF/A Export"
msgstr "ექსპორტი"
-#. S8jQ
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -325,7 +292,6 @@ msgctxt ""
msgid "Panes"
msgstr "არეები"
-#. -\#!
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -335,7 +301,6 @@ msgctxt ""
msgid "~Page only"
msgstr "~მხოლოდ გვერდი"
-#. w.:v
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -345,7 +310,6 @@ msgctxt ""
msgid "~Bookmarks and page"
msgstr "ს~ანიშნეები და გვერდები"
-#. 2l@$
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -355,7 +319,6 @@ msgctxt ""
msgid "~Thumbnails and page"
msgstr "~ესკიზები და გვერდი"
-#. $I2H
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -365,7 +328,6 @@ msgctxt ""
msgid "Open on page"
msgstr ""
-#. W[ik
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -375,7 +337,6 @@ msgctxt ""
msgid "Magnification"
msgstr "გადიდება"
-#. 6D(S
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -385,7 +346,6 @@ msgctxt ""
msgid "~Default"
msgstr "~სტანდარტი"
-#. teE,
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -395,7 +355,6 @@ msgctxt ""
msgid "~Fit in window"
msgstr "~მოარგე ფანჯარას"
-#. K\UE
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -405,7 +364,6 @@ msgctxt ""
msgid "Fit ~width"
msgstr "მოარგე ~სიგანე"
-#. Xr2t
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -415,7 +373,6 @@ msgctxt ""
msgid "Fit ~visible"
msgstr "~მოარგე ისე რომ ჩანდეს"
-#. {USU
#: impdialog.src
#, fuzzy
msgctxt ""
@@ -426,7 +383,6 @@ msgctxt ""
msgid "~Zoom factor"
msgstr "მაშტაბირების ფაქტორი"
-#. Fz2T
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -436,7 +392,6 @@ msgctxt ""
msgid "Page layout"
msgstr "არის განლაგება"
-#. _DAp
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -446,7 +401,6 @@ msgctxt ""
msgid "D~efault"
msgstr "სტ~ანდარტული"
-#. PZ);
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -456,7 +410,6 @@ msgctxt ""
msgid "~Single page"
msgstr "~ერთი გვერდი"
-#. -^sP
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -466,7 +419,6 @@ msgctxt ""
msgid "~Continuous"
msgstr "~უწყვეტი"
-#. Nt(1
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -476,7 +428,6 @@ msgctxt ""
msgid "C~ontinuous facing"
msgstr "~უწყვეტი მომიჯნავე"
-#. {3So
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -486,7 +437,6 @@ msgctxt ""
msgid "First page is ~left"
msgstr "პირველი გვერდი ~მარცხნივ"
-#. CoFE
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -495,7 +445,6 @@ msgctxt ""
msgid "Initial View"
msgstr "საწყისი ხედი"
-#. s|1u
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -505,7 +454,6 @@ msgctxt ""
msgid "Window options"
msgstr "ფანჯრის პარამეტრები"
-#. %(k;
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -515,7 +463,6 @@ msgctxt ""
msgid "~Resize window to initial page"
msgstr "მ~იუსადაგე ფანჯარა საწყის გვერდს"
-#. u,vy
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -525,7 +472,6 @@ msgctxt ""
msgid "~Center window on screen"
msgstr "ფანჯრის ეკრანის ცენტრში ~მოთავსება"
-#. y,,T
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -535,7 +481,6 @@ msgctxt ""
msgid "~Open in full screen mode"
msgstr "მთელ ეკრანზე ~გახსნა"
-#. NuCV
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -545,7 +490,6 @@ msgctxt ""
msgid "~Display document title"
msgstr "~გამოაჩინე დოკუმენტის სათაური"
-#. nOuk
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -555,7 +499,6 @@ msgctxt ""
msgid "User interface options"
msgstr "მომხმარებლის ინტერფეისის პარამეტრები"
-#. kNB;
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -565,7 +508,6 @@ msgctxt ""
msgid "Hide ~menubar"
msgstr "მენიუს ზოლის ~დამალვა"
-#. I/hA
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -575,7 +517,6 @@ msgctxt ""
msgid "Hide ~toolbar"
msgstr "ხ~ელსაწყოთა ზოლის დამალვა"
-#. HX(V
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -585,7 +526,6 @@ msgctxt ""
msgid "Hide ~window controls"
msgstr "~ფანჯრის საკონტროლო ელემენტების დამალვა"
-#. 9H/u
#: impdialog.src
#, fuzzy
msgctxt ""
@@ -596,7 +536,6 @@ msgctxt ""
msgid "Transitions"
msgstr "ტრანზაქციები"
-#. ccsb
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -606,7 +545,6 @@ msgctxt ""
msgid "~Use transition effects"
msgstr ""
-#. ={F=
#: impdialog.src
#, fuzzy
msgctxt ""
@@ -625,7 +563,6 @@ msgstr ""
"#-#-#-#-# appl.po (PACKAGE VERSION) #-#-#-#-#\n"
"სანიშნები"
-#. OKp0
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -635,7 +572,6 @@ msgctxt ""
msgid "All bookmark levels"
msgstr ""
-#. SKf5
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -645,7 +581,6 @@ msgctxt ""
msgid "Visible bookmark levels"
msgstr ""
-#. fE4=
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -654,7 +589,6 @@ msgctxt ""
msgid "User Interface"
msgstr "მომხმარებლის ინტერფეისი"
-#. RxVa
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -664,7 +598,6 @@ msgctxt ""
msgid "File encryption and permission"
msgstr ""
-#. 8O\m
#: impdialog.src
#, fuzzy
msgctxt ""
@@ -675,7 +608,6 @@ msgctxt ""
msgid "Set ~passwords..."
msgstr "დააყენე ღ~ია პაროლი..."
-#. C5/P
#: impdialog.src
#, fuzzy
msgctxt ""
@@ -686,7 +618,6 @@ msgctxt ""
msgid "Set passwords"
msgstr "ღია პაროლის დაყენება"
-#. 7#Y[
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -696,7 +627,6 @@ msgctxt ""
msgid "Open password set"
msgstr ""
-#. {Y5j
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -706,7 +636,6 @@ msgctxt ""
msgid "PDF document will be encrypted"
msgstr ""
-#. ^5F;
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -716,7 +645,6 @@ msgctxt ""
msgid "No open password set"
msgstr ""
-#. _,dq
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -726,7 +654,6 @@ msgctxt ""
msgid "PDF document will not be encrypted"
msgstr ""
-#. Vl%G
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -736,7 +663,6 @@ msgctxt ""
msgid "PDF document will not be encrypted due to PDF/A export."
msgstr ""
-#. 6eL*
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -746,7 +672,6 @@ msgctxt ""
msgid "Permission password set"
msgstr ""
-#. EOgG
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -756,7 +681,6 @@ msgctxt ""
msgid "PDF document will be restricted"
msgstr ""
-#. :#af
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -766,7 +690,6 @@ msgctxt ""
msgid "No permission password set"
msgstr ""
-#. uyXD
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -776,7 +699,6 @@ msgctxt ""
msgid "PDF document will be unrestricted"
msgstr ""
-#. ]v4}
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -786,7 +708,6 @@ msgctxt ""
msgid "PDF document will not be restricted due to PDF/A export."
msgstr ""
-#. 7B4x
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -796,7 +717,6 @@ msgctxt ""
msgid "Printing"
msgstr "ბეჭდვა"
-#. SQO\
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -806,7 +726,6 @@ msgctxt ""
msgid "~Not permitted"
msgstr "~არ არის ნებადართული"
-#. 5JyD
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -816,7 +735,6 @@ msgctxt ""
msgid "~Low resolution (150 dpi)"
msgstr "~დაბალი გარჩევადობა (150dpi)"
-#. !_.;
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -826,7 +744,6 @@ msgctxt ""
msgid "~High resolution"
msgstr "~მაღალი გარჩევადობა"
-#. ;S*M
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -836,7 +753,6 @@ msgctxt ""
msgid "Changes"
msgstr "ცვლილებები"
-#. K9`=
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -846,7 +762,6 @@ msgctxt ""
msgid "No~t permitted"
msgstr "ა~რ არის ნებადართული"
-#. 1C6j
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -856,7 +771,6 @@ msgctxt ""
msgid "~Inserting, deleting, and rotating pages"
msgstr "გვერდების ჩ~ამატება, წაშლა და ბრუნვა"
-#. rN$F
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -866,7 +780,6 @@ msgctxt ""
msgid "~Filling in form fields"
msgstr "ფორმის ველების შ~ევსება"
-#. k~9D
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -876,7 +789,6 @@ msgctxt ""
msgid "~Commenting, filling in form fields"
msgstr "ფორმის ველების ~კომენტირება, შევსება"
-#. i#x!
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -886,7 +798,6 @@ msgctxt ""
msgid "~Any except extracting pages"
msgstr ""
-#. SM5,
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -896,7 +807,6 @@ msgctxt ""
msgid "Ena~ble copying of content"
msgstr "შ~ესაძლებელი გახადე შინაარსის გადაწერა"
-#. 2,%}
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -906,7 +816,6 @@ msgctxt ""
msgid "Enable text access for acce~ssibility tools"
msgstr "ტექსტის წვდომის ჩართვა დამხმარე საშუალებების ინსტრუმენტებისათვის"
-#. ?H~_
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -915,7 +824,6 @@ msgctxt ""
msgid "Security"
msgstr "უსაფრთხოება"
-#. Z6B?
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -925,7 +833,6 @@ msgctxt ""
msgid "Use this certificate to digitally sign PDF documents:"
msgstr ""
-#. *h@_
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -935,7 +842,6 @@ msgctxt ""
msgid "~Select..."
msgstr "~არჩევა..."
-#. I6O/
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -945,7 +851,6 @@ msgctxt ""
msgid "Clear"
msgstr ""
-#. (ErU
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -955,7 +860,6 @@ msgctxt ""
msgid "Certificate Password"
msgstr ""
-#. G7-[
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -965,7 +869,6 @@ msgctxt ""
msgid "Location"
msgstr "ადგილმდებარეობა"
-#. 7Auq
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -975,7 +878,6 @@ msgctxt ""
msgid "Contact Information"
msgstr ""
-#. \EMs
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -985,7 +887,6 @@ msgctxt ""
msgid "Reason"
msgstr ""
-#. dFjJ
#: impdialog.src
#, fuzzy
msgctxt ""
@@ -995,7 +896,6 @@ msgctxt ""
msgid "Digital Signatures"
msgstr "ციფრული ხელმოწერები"
-#. OX?3
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1005,7 +905,6 @@ msgctxt ""
msgid "Export bookmarks as named destinations"
msgstr ""
-#. HS$N
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1015,7 +914,6 @@ msgctxt ""
msgid "Convert document references to PDF targets"
msgstr ""
-#. !$!B
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1025,7 +923,6 @@ msgctxt ""
msgid "Export URLs relative to file system"
msgstr ""
-#. O?7X
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1035,7 +932,6 @@ msgctxt ""
msgid "Cross-document links"
msgstr ""
-#. )[ir
#: impdialog.src
#, fuzzy
msgctxt ""
@@ -1046,7 +942,6 @@ msgctxt ""
msgid "Default mode"
msgstr "სტანდარტული თარიღი"
-#. 9P;G
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1056,7 +951,6 @@ msgctxt ""
msgid "Open with PDF reader application"
msgstr ""
-#. \*C~
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1066,7 +960,6 @@ msgctxt ""
msgid "Open with Internet browser"
msgstr ""
-#. +lJ3
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1075,7 +968,6 @@ msgctxt ""
msgid "---"
msgstr ""
-#. s1;s
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1085,7 +977,6 @@ msgctxt ""
msgid "General"
msgstr "ზოგადი"
-#. $S11
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1095,7 +986,6 @@ msgctxt ""
msgid "Initial View"
msgstr "საწყისი ხედი"
-#. 2{JW
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1105,7 +995,6 @@ msgctxt ""
msgid "User Interface"
msgstr "მომხმარებლის ინტერფეისი"
-#. kGN8
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1115,7 +1004,6 @@ msgctxt ""
msgid "Links"
msgstr "ბმულები"
-#. _Lk_
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1125,7 +1013,6 @@ msgctxt ""
msgid "Security"
msgstr "უსაფრთხოება"
-#. 50V0
#: impdialog.src
#, fuzzy
msgctxt ""
@@ -1136,7 +1023,6 @@ msgctxt ""
msgid "Digital Signatures"
msgstr "ციფრული ხელმოწერები"
-#. \^dH
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1145,7 +1031,6 @@ msgctxt ""
msgid "PDF Options"
msgstr "PDF-ის პარამეტრები"
-#. %CF.
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1155,7 +1040,6 @@ msgctxt ""
msgid "During PDF export the following problems occurred:"
msgstr ""
-#. (@3I
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1165,7 +1049,6 @@ msgctxt ""
msgid "PDF/A transparency"
msgstr ""
-#. .z0;
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1175,7 +1058,6 @@ msgctxt ""
msgid "PDF/A forbids transparency. A transparent object was painted opaque instead."
msgstr ""
-#. Qmv-
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1185,7 +1067,6 @@ msgctxt ""
msgid "PDF version conflict"
msgstr ""
-#. oWot
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1195,7 +1076,6 @@ msgctxt ""
msgid "Transparency is not supported in PDF versions earlier than PDF 1.4. A transparent object was painted opaque instead"
msgstr ""
-#. =SfZ
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1205,7 +1085,6 @@ msgctxt ""
msgid "PDF/A form action"
msgstr ""
-#. ^wB8
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1215,7 +1094,6 @@ msgctxt ""
msgid "A form control contained an action not supported by the PDF/A standard. The action was skipped"
msgstr ""
-#. qjQx
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1225,7 +1103,6 @@ msgctxt ""
msgid "Some objects were converted to an image in order to remove transparencies, because the target PDF format does not support transparencies. Possibly better results can be achieved if you remove the transparent objects before exporting."
msgstr ""
-#. {s)$
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1235,7 +1112,6 @@ msgctxt ""
msgid "Transparencies removed"
msgstr ""
-#. _2f%
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1244,7 +1120,6 @@ msgctxt ""
msgid "Problems during PDF export"
msgstr ""
-#. emFd
#: pdf.src
msgctxt ""
"pdf.src\n"
diff --git a/source/ka/filter/source/t602.po b/source/ka/filter/source/t602.po
index cebde2cc8de..e3f8033b3e2 100644
--- a/source/ka/filter/source/t602.po
+++ b/source/ka/filter/source/t602.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-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:14+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. !97#
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Settings for T602 import"
msgstr ""
-#. bS;E
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Encoding"
msgstr ""
-#. #}]Z
#: t602filter.src
#, fuzzy
msgctxt ""
@@ -59,7 +56,6 @@ msgstr ""
"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
"ავტომატური"
-#. q39x
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -68,7 +64,6 @@ msgctxt ""
msgid "CP852 (Latin2)"
msgstr ""
-#. Z:#0
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -77,7 +72,6 @@ msgctxt ""
msgid "CP895 (KEYB2CS, Kamenicky)"
msgstr ""
-#. tnRz
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -86,7 +80,6 @@ msgctxt ""
msgid "KOI8 CS2"
msgstr ""
-#. xm\=
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -95,7 +88,6 @@ msgctxt ""
msgid "Mode for Russian language (Cyrillic)"
msgstr ""
-#. g]SZ
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -104,7 +96,6 @@ msgctxt ""
msgid "Reformat the text"
msgstr ""
-#. 7*\q
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -113,7 +104,6 @@ msgctxt ""
msgid "Display dot commands"
msgstr ""
-#. 3HiO
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -122,7 +112,6 @@ msgctxt ""
msgid "Cancel"
msgstr "გაუქმება"
-#. Tk%E
#: t602filter.src
msgctxt ""
"t602filter.src\n"
diff --git a/source/ka/filter/source/xsltdialog.po b/source/ka/filter/source/xsltdialog.po
index d7e9513c9a4..c0ee587f83a 100644
--- a/source/ka/filter/source/xsltdialog.po
+++ b/source/ka/filter/source/xsltdialog.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-06-16 14:28+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,165 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. V%R@
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"FL_EXPORT\n"
-"fixedline.text"
-msgid "Export"
-msgstr "ექსპორტი"
-
-#. R\VB
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"FT_EXPORT_XSLT\n"
-"fixedtext.text"
-msgid "XSLT for export"
-msgstr "XSLT ექსპორტისთვის"
-
-#. 6Zh[
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"FT_TRANSFORM_DOCUMENT\n"
-"fixedtext.text"
-msgid "Transform document"
-msgstr "დოკუმენტის გარდაქმნა"
-
-#. 3kwV
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"PB_EXPORT_BROWSE\n"
-"pushbutton.text"
-msgid "~Browse..."
-msgstr "ძი~ება..."
-
-#. 4pQX
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"PB_CURRENT_DOCUMENT\n"
-"pushbutton.text"
-msgid "~Current Document"
-msgstr "~მიმიდნარე დოკუმენტი"
-
-#. m1(#
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"FL_IMPORT\n"
-"fixedline.text"
-msgid "Import"
-msgstr "იმპორტი"
-
-#. ;V8@
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"FT_IMPORT_XSLT\n"
-"fixedtext.text"
-msgid "XSLT for import"
-msgstr "XSLT იმპორტისთვის"
-
-#. *m//
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"FT_IMPORT_TEMPLATE\n"
-"fixedtext.text"
-msgid "Template for import"
-msgstr "შაბლონი იმპორტისთვის"
-
-#. 6|G?
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"FT_TRANSFORM_FILE\n"
-"fixedtext.text"
-msgid "Transform file"
-msgstr "ფაილის გარდაქმნა"
-
-#. j[dR
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"CBX_DISPLAY_SOURCE\n"
-"checkbox.text"
-msgid "~Display source"
-msgstr "~დისპლეის წყარო"
-
-#. !P/u
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"PB_IMPORT_BROWSE\n"
-"pushbutton.text"
-msgid "B~rowse..."
-msgstr "ძი~ება..."
-
-#. ,p_v
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"PB_RECENT_DOCUMENT\n"
-"pushbutton.text"
-msgid "~Recent File"
-msgstr "~ბოლო ფაილი"
-
-#. /}Y\
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"PB_CLOSE\n"
-"pushbutton.text"
-msgid "~Close"
-msgstr "~დახურვა"
-
-#. Xv;y
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"modaldialog.text"
-msgid "Test XML Filter: %s"
-msgstr "XML ფილსტრის შემოწმება: %s"
-
-#. 44Ax
-#: xmlfileview.src
-msgctxt ""
-"xmlfileview.src\n"
-"DLG_XML_SOURCE_FILE_DIALOG\n"
-"PB_VALIDATE\n"
-"pushbutton.text"
-msgid "~Validate"
-msgstr "~მართებულობის შემოწმება"
-
-#. /)Cm
-#: xmlfileview.src
-msgctxt ""
-"xmlfileview.src\n"
-"DLG_XML_SOURCE_FILE_DIALOG\n"
-"workwindow.text"
-msgid "XML Filter output"
-msgstr "XML ფილტრის გამოტანა"
-
-#. 6U=`
#: xmlfiltertabpagebasic.src
msgctxt ""
"xmlfiltertabpagebasic.src\n"
@@ -183,7 +24,6 @@ msgctxt ""
msgid "Filter name"
msgstr "ფილტრის სახელი"
-#. RR@b
#: xmlfiltertabpagebasic.src
msgctxt ""
"xmlfiltertabpagebasic.src\n"
@@ -193,7 +33,6 @@ msgctxt ""
msgid "Application"
msgstr "პროგრამა"
-#. !HS[
#: xmlfiltertabpagebasic.src
msgctxt ""
"xmlfiltertabpagebasic.src\n"
@@ -207,7 +46,6 @@ msgstr ""
"ფაილის ტიპის\n"
"სახელი"
-#. a@$t
#: xmlfiltertabpagebasic.src
msgctxt ""
"xmlfiltertabpagebasic.src\n"
@@ -217,7 +55,6 @@ msgctxt ""
msgid "File extension"
msgstr "ფაილის გაფართოება"
-#. ui6:
#: xmlfiltertabpagebasic.src
msgctxt ""
"xmlfiltertabpagebasic.src\n"
@@ -227,7 +64,6 @@ msgctxt ""
msgid "Comments"
msgstr "კომენტარები"
-#. uJhC
#: xmlfiltertabpagebasic.src
msgctxt ""
"xmlfiltertabpagebasic.src\n"
@@ -236,7 +72,6 @@ msgctxt ""
msgid "General"
msgstr "ზოგადი"
-#. `qZZ
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -246,27 +81,6 @@ msgctxt ""
msgid "DocType"
msgstr "დოკუმენტის ტიპი"
-#. 26?n
-#: xmlfiltertabpagexslt.src
-msgctxt ""
-"xmlfiltertabpagexslt.src\n"
-"RID_XML_FILTER_TABPAGE_XSLT\n"
-"FT_XML_DTD_SCHEMA\n"
-"fixedtext.text"
-msgid "DTD"
-msgstr "DTD"
-
-#. eh}M
-#: xmlfiltertabpagexslt.src
-msgctxt ""
-"xmlfiltertabpagexslt.src\n"
-"RID_XML_FILTER_TABPAGE_XSLT\n"
-"ED_XML_DTD_SCHEMA_BROWSE\n"
-"pushbutton.text"
-msgid "Browse..."
-msgstr "მოძიება..."
-
-#. HvP0
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -276,7 +90,6 @@ msgctxt ""
msgid "XSLT for export"
msgstr "XSLT ექსპორტისთვის"
-#. ihb7
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -286,7 +99,6 @@ msgctxt ""
msgid "Browse..."
msgstr "მოძიება..."
-#. kUl.
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -296,7 +108,6 @@ msgctxt ""
msgid "XSLT for import"
msgstr "XSLT იმპორტისთვის"
-#. *3QN
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -306,7 +117,6 @@ msgctxt ""
msgid "Browse..."
msgstr "მოძიება..."
-#. J~CV
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -316,7 +126,6 @@ msgctxt ""
msgid "Template for import"
msgstr "შაბლონი იმპორტისთვის"
-#. xdF,
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -326,7 +135,6 @@ msgctxt ""
msgid "Browse..."
msgstr "მოძიება..."
-#. PrLq
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -336,7 +144,6 @@ msgctxt ""
msgid "The filter needs XSLT 2.0 processor"
msgstr ""
-#. 7oY]
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -345,7 +152,6 @@ msgctxt ""
msgid "Transformation"
msgstr "გარდაქმნა"
-#. c)%c
#: xmlfiltertabdialog.src
msgctxt ""
"xmlfiltertabdialog.src\n"
@@ -355,7 +161,6 @@ msgctxt ""
msgid "General"
msgstr "ზოგადი"
-#. ~YIV
#: xmlfiltertabdialog.src
msgctxt ""
"xmlfiltertabdialog.src\n"
@@ -365,7 +170,6 @@ msgctxt ""
msgid "Transformation"
msgstr "გარდაქმნა"
-#. Bi34
#: xmlfiltertabdialog.src
msgctxt ""
"xmlfiltertabdialog.src\n"
@@ -374,97 +178,6 @@ msgctxt ""
msgid "XML Filter: %s"
msgstr "XML ფილტრი: %s"
-#. mC7)
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"PB_XML_FILTER_NEW\n"
-"pushbutton.text"
-msgid "~New..."
-msgstr "~ახალი..."
-
-#. hk8C
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"PB_XML_FILTER_EDIT\n"
-"pushbutton.text"
-msgid "~Edit..."
-msgstr "~რედაქტირება..."
-
-#. o=9H
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"PB_XML_FILTER_TEST\n"
-"pushbutton.text"
-msgid "~Test XSLTs..."
-msgstr "XSLT-ს შე~მოწმება..."
-
-#. *B]g
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"PB_XML_FILTER_DELETE\n"
-"pushbutton.text"
-msgid "~Delete..."
-msgstr "~წაშლა..."
-
-#. -Y?U
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"PB_XML_FILTER_SAVE\n"
-"pushbutton.text"
-msgid "~Save as Package..."
-msgstr "შეი&ნახე როგორც პაკეტი..."
-
-#. TSeo
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"PB_XML_FILTER_OPEN\n"
-"pushbutton.text"
-msgid "~Open Package..."
-msgstr "პაკეტის ~გახსნა..."
-
-#. r`v9
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"PB_XML_FILTER_CLOSE\n"
-"pushbutton.text"
-msgid "~Close"
-msgstr "~დახურვა"
-
-#. k_8k
-#: xmlfiltersettingsdialog.src
-#, fuzzy
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"STR_XML_FILTER_LISTBOX\n"
-"string.text"
-msgid "XML Filter List"
-msgstr "XML ფილტრი: %s"
-
-#. Bx3g
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"workwindow.text"
-msgid "XML Filter Settings"
-msgstr "XML ფილტრის პარამეტრები"
-
-#. 8k_g
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -473,7 +186,6 @@ msgctxt ""
msgid "Name"
msgstr "სახელი"
-#. %-T^
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -482,7 +194,6 @@ msgctxt ""
msgid "Type"
msgstr "ტიპი"
-#. ~qjq
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -491,7 +202,6 @@ msgctxt ""
msgid "Unknown"
msgstr "უცნობი"
-#. YY?z
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -500,7 +210,6 @@ msgctxt ""
msgid "import filter"
msgstr "ფილტრის იმპორტი"
-#. _D4M
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -509,7 +218,6 @@ msgctxt ""
msgid "import/export filter"
msgstr "ფილტრის იმპორტი/ექსპორტი"
-#. %m6@
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -518,7 +226,6 @@ msgctxt ""
msgid "export filter"
msgstr "ფილტრის ექსპორტი"
-#. P0XA
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -527,7 +234,6 @@ msgctxt ""
msgid "Do you really want to delete the XML Filter '%s'? This action cannot be undone."
msgstr "ნამდვილად გსურთ XML '%s' ფილტრის წაშლა? ეს მოქმედება უკან არ დაბრუნდება."
-#. L*7(
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -536,7 +242,6 @@ msgctxt ""
msgid "An XML filter with the name '%s' already exists. Please enter a different name."
msgstr "XML ფილტრი '%s' სახელით უკვე არსებობს. გთხოვთ შეიყვანოთ სხვა სახელი. "
-#. M;HY
#: xmlfilterdialogstrings.src
#, fuzzy
msgctxt ""
@@ -546,16 +251,6 @@ msgctxt ""
msgid "The name for the user interface '%s1' is already used by the XML filter '%s2'. Please enter a different name."
msgstr "მომხმარებლის '%s1' ინტერფეისის სახელი უკვე გამოყენებულია XML '%s2' ფილტრის მიერ. გთხოვთ შეიყვანოთ სხვა სახელი."
-#. V7TL
-#: xmlfilterdialogstrings.src
-msgctxt ""
-"xmlfilterdialogstrings.src\n"
-"STR_ERROR_DTD_NOT_FOUND\n"
-"string.text"
-msgid "The DTD could not be found. Please enter a valid path."
-msgstr "DTD ვერ იქნა ნაპოვნი. გთხოვთ შეიტანოთ სწორი მდებარეობა."
-
-#. *exW
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -564,7 +259,6 @@ msgctxt ""
msgid "The XSLT for export cannot be found. Please enter a valid path."
msgstr "ექსპორტისათვის XSLT ვერ იქნა ნაპოვნი. გთხოვთ შეიტანოთ სწორი მდებარეობა."
-#. }JWy
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -573,7 +267,6 @@ msgctxt ""
msgid "The XSLT for import cannot be found. Please enter a valid path."
msgstr "იმპორტისათვის XSLT ვერ იქნა ნაპოვნი. გთხოვთ შეიტანოთ სწორი მდებარეობა."
-#. F]Q[
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -582,7 +275,6 @@ msgctxt ""
msgid "The given import template cannot be found. Please enter a valid path."
msgstr "მოცემული იმპორტის შაბლონი ვერ იქნა ნაპოვნი. გთხოვთ შეიტანოთ სწორი მდებარეობა."
-#. d7wd
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -591,7 +283,6 @@ msgctxt ""
msgid "Not specified"
msgstr "განუსაზღვრელი"
-#. 4On}
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -600,7 +291,6 @@ msgctxt ""
msgid "New Filter"
msgstr "ახალი ფილტრი"
-#. :~$h
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -609,7 +299,6 @@ msgctxt ""
msgid "Untitled"
msgstr "უათაურო"
-#. U7)s
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -618,7 +307,6 @@ msgctxt ""
msgid "undefined filter"
msgstr "განუსაზღვრელი ფილტრი"
-#. 1KTV
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -627,7 +315,6 @@ msgctxt ""
msgid "The XML filter '%s' has been saved as package '%s'. "
msgstr "XML '%s' ფილტრი შეინახა როგორც '%s' პაკეტი."
-#. Sn(,
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -636,7 +323,6 @@ msgctxt ""
msgid "%s XML filters have been saved in the package '%s'."
msgstr "%s XML ფილტრები შეინახა '%s' პაკეტში."
-#. dW^I
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -645,7 +331,6 @@ msgctxt ""
msgid "XSLT filter package"
msgstr "XSLT ფილტრის პაკეტი"
-#. T][`
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -654,7 +339,6 @@ msgctxt ""
msgid "The XML filter '%s' has been installed successfully."
msgstr "XML '%s' ფილტრი წარმატებით დაინსტალირდა."
-#. iaY+
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -663,7 +347,6 @@ msgctxt ""
msgid "%s XML filters have been installed successfully."
msgstr "'%s' XML ფილტრები წარმატებით დაინსტალირდნენ."
-#. FwPH
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -671,3 +354,11 @@ msgctxt ""
"string.text"
msgid "No XML filter could be installed because the package '%s' does not contain any XML filters."
msgstr "XML ფილტრი ვერ დაინსტალირდა, რადგან პაკეტი '%s' არ შეიცავს არანაირ XML ფილტრს."
+
+#: xmlfilterdialogstrings.src
+msgctxt ""
+"xmlfilterdialogstrings.src\n"
+"STR_XML_FILTER_LISTBOX\n"
+"string.text"
+msgid "XML Filter List"
+msgstr ""
diff --git a/source/ka/filter/uiconfig/ui.po b/source/ka/filter/uiconfig/ui.po
index a13b0ec7efd..dec1baa8f11 100644
--- a/source/ka/filter/uiconfig/ui.po
+++ b/source/ka/filter/uiconfig/ui.po
@@ -3,17 +3,17 @@ 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-11-20 18:13+0100\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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: ka\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"
-#. 8lI@
#: xmlfiltersettings.ui
msgctxt ""
"xmlfiltersettings.ui\n"
@@ -22,3 +22,120 @@ msgctxt ""
"string.text"
msgid "XML Filter Settings"
msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"TestXMLFilterDialog\n"
+"title\n"
+"string.text"
+msgid "Test XML Filter: %s"
+msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"label3\n"
+"label\n"
+"string.text"
+msgid "XSLT for export"
+msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"label4\n"
+"label\n"
+"string.text"
+msgid "Transform document"
+msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"exportbrowse\n"
+"label\n"
+"string.text"
+msgid "Browse..."
+msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"currentdocument\n"
+"label\n"
+"string.text"
+msgid "Current Document"
+msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"label1\n"
+"label\n"
+"string.text"
+msgid "Export"
+msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"label5\n"
+"label\n"
+"string.text"
+msgid "XSLT for import"
+msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"importbrowse\n"
+"label\n"
+"string.text"
+msgid "Browse..."
+msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"recentfile\n"
+"label\n"
+"string.text"
+msgid "Recent File"
+msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"templateimport\n"
+"label\n"
+"string.text"
+msgid "Template for import"
+msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"displaysource\n"
+"label\n"
+"string.text"
+msgid "Display source"
+msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"label6\n"
+"label\n"
+"string.text"
+msgid "Transform file"
+msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"label2\n"
+"label\n"
+"string.text"
+msgid "Import"
+msgstr ""
diff --git a/source/ka/forms/source/resource.po b/source/ka/forms/source/resource.po
index 9c61c0dad73..69bb25e0be7 100644
--- a/source/ka/forms/source/resource.po
+++ b/source/ka/forms/source/resource.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\n"
"PO-Revision-Date: 2011-04-05 23:14+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. +QYe
#: strings.src
msgctxt ""
"strings.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "The contents of a combo box or list field could not be determined."
msgstr "კომბო ველის შეგთავსი ან ცხრილი ვერ განისაზღვრა."
-#. #vZY
#: strings.src
msgctxt ""
"strings.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Insert graphics"
msgstr "გრაპიკების ჩასმა"
-#. vk|m
#: strings.src
msgctxt ""
"strings.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "substituted"
msgstr "შეცვლილია"
-#. .jR@
#: strings.src
msgctxt ""
"strings.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "An error occurred while this control was being loaded. It was therefore replaced with a placeholder."
msgstr "შეცდომა წარმოიქმნა, როცა მიმდინარე ელემენტმა დაიწყო ჩატვირთვა.!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
-#. G8hN
#: strings.src
msgctxt ""
"strings.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Error reading data from database"
msgstr "შეცდომა მონაცემთა ბაზაში , მონაცემთა წაკითხბვისას"
-#. 4jLM
#: strings.src
msgctxt ""
"strings.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Connection failed"
msgstr "კავშირი ვერ შედგა"
-#. 9aqb
#: strings.src
msgctxt ""
"strings.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "The data content could not be loaded."
msgstr "მონაცემთა შიგთავსი ვერ ჩაიტვირთება."
-#. Fj5.
#: strings.src
msgctxt ""
"strings.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "The data content could not be updated"
msgstr "მონაცემთა შიგთავსი ვერ განახლდება"
-#. v_cg
#: strings.src
msgctxt ""
"strings.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Error inserting the new record"
msgstr "შეცდომა ახალი ჩანაწერის ჩასმის დროს."
-#. Pby/
#: strings.src
msgctxt ""
"strings.src\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Error updating the current record"
msgstr "შეცდომა მიმდინარე ჩანაწერის განახლების დროს"
-#. Gb4h
#: strings.src
msgctxt ""
"strings.src\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "Error deleting the current record"
msgstr "შეცდომა მიმდინარე ჩანაწერის წაშლის დროს"
-#. 2.)M
#: strings.src
msgctxt ""
"strings.src\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "Error deleting the specified records"
msgstr "შეცდომა სპეციალური ჩანაწერების წაშლის დროს"
-#. =dhV
#: strings.src
msgctxt ""
"strings.src\n"
@@ -132,7 +119,6 @@ msgctxt ""
msgid "The object cannot be NULL."
msgstr "ობიექტს ვერ ექნება ნულის მნიშვნელობა."
-#. P]bw
#: strings.src
msgctxt ""
"strings.src\n"
@@ -141,7 +127,6 @@ msgctxt ""
msgid "Insert graphics from..."
msgstr "გრაფიკების არჩევა..."
-#. [$;*
#: strings.src
msgctxt ""
"strings.src\n"
@@ -150,7 +135,6 @@ msgctxt ""
msgid "Remove graphics"
msgstr "გრაპიკების ამოშლა"
-#. cU6U
#: strings.src
msgctxt ""
"strings.src\n"
@@ -159,7 +143,6 @@ msgctxt ""
msgid "The given stream is invalid."
msgstr "მინიჭებული წყარო არასწორია."
-#. :TaJ
#: strings.src
msgctxt ""
"strings.src\n"
@@ -168,7 +151,6 @@ msgctxt ""
msgid "Syntax error in query expression"
msgstr "სინტაქსური შეცდომა მოთხოვნაში"
-#. `A/s
#: strings.src
msgctxt ""
"strings.src\n"
@@ -177,7 +159,6 @@ msgctxt ""
msgid "The value types supported by the binding cannot be used for exchanging data with this control."
msgstr "მნიშვნელობათა ტიპები აღქმულია, ამკინძავი ვერ გამოიყენება მონაცემთა მიმოცვისთვის ამ ელემენტისთვის."
-#. hS|Q
#: strings.src
msgctxt ""
"strings.src\n"
@@ -186,7 +167,6 @@ msgctxt ""
msgid "Record"
msgstr "ჩაწერა"
-#. \hkl
#: strings.src
msgctxt ""
"strings.src\n"
@@ -195,7 +175,6 @@ msgctxt ""
msgid "The control is connected to an external value binding, which at the same time acts as validator. You need to revoke the value binding, before you can set a new validator."
msgstr "ეს ელემენტი დაუკავშირდა გარე საკინძის მნიშვნელობას,რაც იგივეა..."
-#. eI8L
#: strings.src
#, fuzzy
msgctxt ""
@@ -209,7 +188,6 @@ msgstr ""
"#-#-#-#-# form.po (PACKAGE VERSION) #-#-#-#-#\n"
"-"
-#. RQ:o
#: strings.src
msgctxt ""
"strings.src\n"
@@ -222,7 +200,6 @@ msgstr ""
"მიმდინარე ფორმის შიგთავსი ჩასწორებულია.\n"
"გსურთ ცვლილებების შენახვა?"
-#. UDgo
#: strings.src
msgctxt ""
"strings.src\n"
@@ -231,7 +208,6 @@ msgctxt ""
msgid "Error setting the sort criteria"
msgstr "დახარისხების კრიტერიუმის დაყენებისას წარმოიქმნა შეცდომა"
-#. 6MAG
#: strings.src
msgctxt ""
"strings.src\n"
@@ -240,7 +216,6 @@ msgctxt ""
msgid "Error setting the filter criteria"
msgstr "ფილტრის კრიტერიუმის დაყენებისას წარმოიქმნა შეცდომა"
-#. )2J[
#: strings.src
msgctxt ""
"strings.src\n"
@@ -249,7 +224,6 @@ msgctxt ""
msgid "To execute this function, parameters are needed."
msgstr ""
-#. `9#J
#: strings.src
msgctxt ""
"strings.src\n"
@@ -258,7 +232,6 @@ msgctxt ""
msgid "This function cannot be executed, but is only for status queries."
msgstr ""
-#. 2Jm9
#: strings.src
msgctxt ""
"strings.src\n"
@@ -267,7 +240,6 @@ msgctxt ""
msgid "Unknown function."
msgstr ""
-#. Pi1%
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -276,7 +248,6 @@ msgctxt ""
msgid "Please enter a binding expression."
msgstr "გთხოვთ შეიყვანოთ გამოსახულებათა კომბინაცია."
-#. FDCA
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -285,7 +256,6 @@ msgctxt ""
msgid "This is an invalid binding expression."
msgstr "ეს გამოსახულებათა არასწორი კომბინაციაა."
-#. U*B_
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -294,7 +264,6 @@ msgctxt ""
msgid "Value is invalid."
msgstr "მნიშვნელობა არასწორია."
-#. #Y_Y
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -303,7 +272,6 @@ msgctxt ""
msgid "A value is required."
msgstr "მნიშვნელობა აუცილებელია."
-#. zi(D
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -312,7 +280,6 @@ msgctxt ""
msgid "The constraint '$1' not validated."
msgstr "'$1' შეზღუდვა არ არის დამოწმებული."
-#. _$9C
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -321,7 +288,6 @@ msgctxt ""
msgid "The value is not of the type '$2'."
msgstr "მნიშვნელობა არ არის '$2'-ის ტიპის."
-#. SFil
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -330,7 +296,6 @@ msgctxt ""
msgid "The value must be smaller than or equal to $2."
msgstr "მნიშვნელობა უნდა იყოს ნაკლები ან ტოლი $2-ის."
-#. XyW3
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -339,7 +304,6 @@ msgctxt ""
msgid "The value must be smaller than $2."
msgstr "მნიშვნელობა უფრო ნაკლები უნდა იყვეს ვიდრე $2."
-#. e7+c
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -348,7 +312,6 @@ msgctxt ""
msgid "The value must be greater than or equal to $2."
msgstr "მნიშვნელობა უნდა იყოს მეტი ან ტოლი $2-ის."
-#. ^|1O
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -357,7 +320,6 @@ msgctxt ""
msgid "The value must be greater than $2."
msgstr "მნიშვნელობა უნდა იყვეს $2-ზე მეტი."
-#. pT8q
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -366,7 +328,6 @@ msgctxt ""
msgid "The value does not match the pattern '$2'."
msgstr "მნიშვნელობა არ ემთხვევა $2 შაბლონს."
-#. lTio
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -375,7 +336,6 @@ msgctxt ""
msgid "$2 digits allowed at most."
msgstr "$2 ნიშნები დაშვებულია უმეტესად."
-#. HqUH
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -384,7 +344,6 @@ msgctxt ""
msgid "$2 fraction digits allowed at most."
msgstr "$2 ფუნქციური ნიშნები დაშვებულია უმეტესად."
-#. M?=5
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -393,7 +352,6 @@ msgctxt ""
msgid "The string must be $2 characters long."
msgstr "სტრიქონი უნდა იყვეს $2 სიმბოლოს სიგრძის."
-#. WrdA
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -402,7 +360,6 @@ msgctxt ""
msgid "The string must be at least $2 characters long."
msgstr "სტრიქონი უნდა იყვეს არანაკლებ $2 სიმბოლოს სიგრძის."
-#. @4hv
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -411,7 +368,6 @@ msgctxt ""
msgid "The string can only be $2 characters long at most."
msgstr "სტრიქონი შეიძლება იყვეს ხშირად $2 სომბოლოიანი."
-#. rbes
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -420,7 +376,6 @@ msgctxt ""
msgid "String"
msgstr "სტრიქონი"
-#. rXuQ
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -429,7 +384,6 @@ msgctxt ""
msgid "Hyperlink"
msgstr "ჰიპერტექსტი"
-#. u~~U
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -438,7 +392,6 @@ msgctxt ""
msgid "True/False (Boolean)"
msgstr "ჭეშმარიტი/მცდარი"
-#. 0Sac
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -447,7 +400,6 @@ msgctxt ""
msgid "Decimal"
msgstr "ათობითი"
-#. CmEF
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -456,7 +408,6 @@ msgctxt ""
msgid "Floating point"
msgstr "მცერავი წერტილი"
-#. 1qG)
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -465,7 +416,6 @@ msgctxt ""
msgid "Double"
msgstr "ორმაგი"
-#. f~uq
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -474,7 +424,6 @@ msgctxt ""
msgid "Date"
msgstr "თარიღი"
-#. P)O)
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -483,7 +432,6 @@ msgctxt ""
msgid "Time"
msgstr "დრო"
-#. )=bo
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -492,7 +440,6 @@ msgctxt ""
msgid "Date and Time"
msgstr "თარიღი და დრო"
-#. ;c9I
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -501,7 +448,6 @@ msgctxt ""
msgid "Month and year"
msgstr "თვე და წელი"
-#. {/\k
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -510,7 +456,6 @@ msgctxt ""
msgid "Year"
msgstr "წელი"
-#. `|l(
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -519,7 +464,6 @@ msgctxt ""
msgid "Month and day"
msgstr "თვე და რიცხვი"
-#. DD08
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -528,7 +472,6 @@ msgctxt ""
msgid "Month"
msgstr "თვე"
-#. D866
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -537,7 +480,6 @@ msgctxt ""
msgid "Day"
msgstr "დღე"
-#. q08I
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -546,7 +488,6 @@ msgctxt ""
msgid "Error during evaluation"
msgstr "შეცდომა დამუშავების დროს"
-#. dgoc
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -555,7 +496,6 @@ msgctxt ""
msgid "The string '$1' does not match the required regular expression '$2'."
msgstr "'$1' სტრინგი არ ემთხვევა მოთხოვნილ '$2' რეგულარულ გამოსახულებას."
-#. C]\5
#: xforms.src
msgctxt ""
"xforms.src\n"
diff --git a/source/ka/formula/source/core/resource.po b/source/ka/formula/source/core/resource.po
index 56888fde2d1..96959e44b94 100644
--- a/source/ka/formula/source/core/resource.po
+++ b/source/ka/formula/source/core/resource.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:14+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. cjBl
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "IF"
msgstr ""
-#. Vc$S
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "CHOOSE"
msgstr ""
-#. mP7x
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "AND"
msgstr "AND"
-#. 2J3O
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "OR"
msgstr "OR"
-#. /mhn
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "XOR"
msgstr ""
-#. ^$C=
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "NOT"
msgstr ""
-#. Xn\o
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "NEG"
msgstr ""
-#. 4Nri
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "PI"
msgstr "PI"
-#. FG^j
#: core_resource.src
#, fuzzy
msgctxt ""
@@ -106,7 +97,6 @@ msgctxt ""
msgid "RAND"
msgstr "AND"
-#. m^ND
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -116,7 +106,6 @@ msgctxt ""
msgid "TRUE"
msgstr "TRUE"
-#. E+:h
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -126,7 +115,6 @@ msgctxt ""
msgid "FALSE"
msgstr "FALSE"
-#. [[kV
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -136,7 +124,6 @@ msgctxt ""
msgid "TODAY"
msgstr ""
-#. ,50T
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -146,7 +133,6 @@ msgctxt ""
msgid "NOW"
msgstr ""
-#. U/JS
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -156,7 +142,6 @@ msgctxt ""
msgid "NA"
msgstr ""
-#. lMaX
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -166,7 +151,6 @@ msgctxt ""
msgid "CURRENT"
msgstr ""
-#. R@HZ
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -176,7 +160,6 @@ msgctxt ""
msgid "DEGREES"
msgstr ""
-#. Mr~v
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -186,7 +169,6 @@ msgctxt ""
msgid "RADIANS"
msgstr ""
-#. IG@C
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -196,7 +178,6 @@ msgctxt ""
msgid "SIN"
msgstr ""
-#. QRgx
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -206,7 +187,6 @@ msgctxt ""
msgid "COS"
msgstr ""
-#. /pOK
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -216,7 +196,6 @@ msgctxt ""
msgid "TAN"
msgstr ""
-#. x\9W
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -226,7 +205,6 @@ msgctxt ""
msgid "COT"
msgstr ""
-#. l?U)
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -236,7 +214,6 @@ msgctxt ""
msgid "ASIN"
msgstr ""
-#. VDQS
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -246,7 +223,6 @@ msgctxt ""
msgid "ACOS"
msgstr ""
-#. Y?JM
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -256,7 +232,6 @@ msgctxt ""
msgid "ATAN"
msgstr ""
-#. ,k?^
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -266,7 +241,6 @@ msgctxt ""
msgid "ACOT"
msgstr ""
-#. J8\|
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -276,7 +250,6 @@ msgctxt ""
msgid "SINH"
msgstr ""
-#. 13E8
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -286,7 +259,6 @@ msgctxt ""
msgid "COSH"
msgstr ""
-#. X5,.
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -296,7 +268,6 @@ msgctxt ""
msgid "TANH"
msgstr ""
-#. mERq
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -306,7 +277,6 @@ msgctxt ""
msgid "COTH"
msgstr ""
-#. GR)j
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -316,7 +286,6 @@ msgctxt ""
msgid "ASINH"
msgstr ""
-#. Jz,L
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -326,7 +295,6 @@ msgctxt ""
msgid "ACOSH"
msgstr ""
-#. Pe+Z
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -336,7 +304,6 @@ msgctxt ""
msgid "ATANH"
msgstr ""
-#. ppm0
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -346,7 +313,6 @@ msgctxt ""
msgid "ACOTH"
msgstr ""
-#. iVv8
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -356,7 +322,6 @@ msgctxt ""
msgid "CSC"
msgstr ""
-#. B;/]
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -366,7 +331,6 @@ msgctxt ""
msgid "SEC"
msgstr ""
-#. g0x@
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -376,7 +340,6 @@ msgctxt ""
msgid "CSCH"
msgstr ""
-#. jX!b
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -386,7 +349,6 @@ msgctxt ""
msgid "SECH"
msgstr ""
-#. $3PN
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -396,7 +358,6 @@ msgctxt ""
msgid "EXP"
msgstr ""
-#. Od!d
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -406,7 +367,6 @@ msgctxt ""
msgid "LN"
msgstr ""
-#. 9;=d
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -416,7 +376,6 @@ msgctxt ""
msgid "SQRT"
msgstr ""
-#. 5q(s
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -426,7 +385,6 @@ msgctxt ""
msgid "FACT"
msgstr ""
-#. A0GS
#: core_resource.src
#, fuzzy
msgctxt ""
@@ -437,7 +395,6 @@ msgctxt ""
msgid "YEAR"
msgstr "YEARS"
-#. $9fa
#: core_resource.src
#, fuzzy
msgctxt ""
@@ -448,7 +405,6 @@ msgctxt ""
msgid "MONTH"
msgstr "MONTHS"
-#. 3#lj
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -458,7 +414,6 @@ msgctxt ""
msgid "DAY"
msgstr ""
-#. /+$;
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -468,7 +423,6 @@ msgctxt ""
msgid "HOUR"
msgstr ""
-#. */yO
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -478,7 +432,6 @@ msgctxt ""
msgid "MINUTE"
msgstr ""
-#. x8*Z
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -488,7 +441,6 @@ msgctxt ""
msgid "SECOND"
msgstr ""
-#. ;h+?
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -498,7 +450,6 @@ msgctxt ""
msgid "SIGN"
msgstr ""
-#. \[#g
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -508,7 +459,6 @@ msgctxt ""
msgid "ABS"
msgstr ""
-#. -x3}
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -518,7 +468,6 @@ msgctxt ""
msgid "INT"
msgstr ""
-#. `[`,
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -528,7 +477,6 @@ msgctxt ""
msgid "PHI"
msgstr "PHI"
-#. iLL#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -538,7 +486,6 @@ msgctxt ""
msgid "GAUSS"
msgstr ""
-#. W#m=
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -548,7 +495,6 @@ msgctxt ""
msgid "ISBLANK"
msgstr ""
-#. h@5#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -558,7 +504,6 @@ msgctxt ""
msgid "ISTEXT"
msgstr ""
-#. 4-0T
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -568,7 +513,6 @@ msgctxt ""
msgid "ISNONTEXT"
msgstr ""
-#. ^dn3
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -578,7 +522,6 @@ msgctxt ""
msgid "ISLOGICAL"
msgstr ""
-#. CMiG
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -588,7 +531,6 @@ msgctxt ""
msgid "TYPE"
msgstr ""
-#. 4[o9
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -598,7 +540,6 @@ msgctxt ""
msgid "CELL"
msgstr ""
-#. :~9k
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -608,7 +549,6 @@ msgctxt ""
msgid "ISREF"
msgstr ""
-#. Q^JJ
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -618,7 +558,6 @@ msgctxt ""
msgid "ISNUMBER"
msgstr ""
-#. [h|0
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -628,7 +567,6 @@ msgctxt ""
msgid "ISFORMULA"
msgstr ""
-#. M`V(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -638,7 +576,6 @@ msgctxt ""
msgid "ISNA"
msgstr ""
-#. U-xd
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -648,7 +585,6 @@ msgctxt ""
msgid "ISERR"
msgstr ""
-#. +$]+
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -658,7 +594,6 @@ msgctxt ""
msgid "ISERROR"
msgstr ""
-#. 95R\
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -668,7 +603,6 @@ msgctxt ""
msgid "ISEVEN"
msgstr "ISEVEN"
-#. /dJH
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -678,7 +612,6 @@ msgctxt ""
msgid "ISODD"
msgstr "ISODD"
-#. g:yn
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -688,7 +621,6 @@ msgctxt ""
msgid "N"
msgstr "ა"
-#. Bf]2
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -698,7 +630,6 @@ msgctxt ""
msgid "DATEVALUE"
msgstr ""
-#. };uD
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -708,7 +639,6 @@ msgctxt ""
msgid "TIMEVALUE"
msgstr ""
-#. C,O;
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -718,7 +648,6 @@ msgctxt ""
msgid "CODE"
msgstr ""
-#. iTbH
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -728,7 +657,6 @@ msgctxt ""
msgid "TRIM"
msgstr ""
-#. rUJT
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -738,7 +666,6 @@ msgctxt ""
msgid "UPPER"
msgstr ""
-#. QS)*
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -748,7 +675,6 @@ msgctxt ""
msgid "PROPER"
msgstr ""
-#. =E`*
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -758,7 +684,6 @@ msgctxt ""
msgid "LOWER"
msgstr ""
-#. BgE_
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -768,7 +693,6 @@ msgctxt ""
msgid "LEN"
msgstr ""
-#. K;q#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -778,7 +702,6 @@ msgctxt ""
msgid "T"
msgstr "T"
-#. T:Tj
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -788,7 +711,6 @@ msgctxt ""
msgid "VALUE"
msgstr ""
-#. #s{|
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -798,7 +720,6 @@ msgctxt ""
msgid "CLEAN"
msgstr ""
-#. x+76
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -808,7 +729,6 @@ msgctxt ""
msgid "CHAR"
msgstr ""
-#. 3(uz
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -818,7 +738,6 @@ msgctxt ""
msgid "JIS"
msgstr ""
-#. V*1?
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -828,7 +747,6 @@ msgctxt ""
msgid "ASC"
msgstr ""
-#. /FU`
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -838,7 +756,6 @@ msgctxt ""
msgid "UNICODE"
msgstr ""
-#. S#.r
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -848,7 +765,6 @@ msgctxt ""
msgid "UNICHAR"
msgstr ""
-#. DqY,
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -858,7 +774,6 @@ msgctxt ""
msgid "LOG10"
msgstr ""
-#. P0SO
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -868,7 +783,6 @@ msgctxt ""
msgid "EVEN"
msgstr ""
-#. ;X.V
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -878,7 +792,6 @@ msgctxt ""
msgid "ODD"
msgstr ""
-#. m}`N
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -888,7 +801,6 @@ msgctxt ""
msgid "NORMSDIST"
msgstr ""
-#. g@_F
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -898,7 +810,6 @@ msgctxt ""
msgid "FISHER"
msgstr ""
-#. E8y6
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -908,7 +819,6 @@ msgctxt ""
msgid "FISHERINV"
msgstr ""
-#. ReL]
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -918,7 +828,6 @@ msgctxt ""
msgid "NORMSINV"
msgstr ""
-#. q{O:
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -928,7 +837,6 @@ msgctxt ""
msgid "GAMMALN"
msgstr ""
-#. $?cw
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -938,7 +846,6 @@ msgctxt ""
msgid "ERRORTYPE"
msgstr ""
-#. JQE\
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -948,7 +855,6 @@ msgctxt ""
msgid "FORMULA"
msgstr ""
-#. )e8{
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -958,7 +864,6 @@ msgctxt ""
msgid "ARABIC"
msgstr ""
-#. [Z@V
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -968,7 +873,6 @@ msgctxt ""
msgid "ATAN2"
msgstr ""
-#. jdzi
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -978,7 +882,6 @@ msgctxt ""
msgid "CEILING"
msgstr ""
-#. m+T#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -988,7 +891,6 @@ msgctxt ""
msgid "FLOOR"
msgstr ""
-#. G%ac
#: core_resource.src
#, fuzzy
msgctxt ""
@@ -999,7 +901,6 @@ msgctxt ""
msgid "ROUND"
msgstr "MROUND"
-#. 5%D*
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1009,7 +910,6 @@ msgctxt ""
msgid "ROUNDUP"
msgstr ""
-#. U;+9
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1019,7 +919,6 @@ msgctxt ""
msgid "ROUNDDOWN"
msgstr ""
-#. acvR
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1029,7 +928,6 @@ msgctxt ""
msgid "TRUNC"
msgstr ""
-#. %2BT
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1039,7 +937,6 @@ msgctxt ""
msgid "LOG"
msgstr ""
-#. ,gec
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1049,7 +946,6 @@ msgctxt ""
msgid "POWER"
msgstr ""
-#. KTQ5
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1059,7 +955,6 @@ msgctxt ""
msgid "GCD"
msgstr "GCD"
-#. xY1Q
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1069,7 +964,6 @@ msgctxt ""
msgid "LCM"
msgstr "LCM"
-#. QmsM
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1079,7 +973,6 @@ msgctxt ""
msgid "MOD"
msgstr ""
-#. y\!5
#: core_resource.src
#, fuzzy
msgctxt ""
@@ -1090,7 +983,6 @@ msgctxt ""
msgid "SUMPRODUCT"
msgstr "IMPRODUCT"
-#. bWw(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1100,7 +992,6 @@ msgctxt ""
msgid "SUMSQ"
msgstr ""
-#. p2-M
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1110,7 +1001,6 @@ msgctxt ""
msgid "SUMX2MY2"
msgstr ""
-#. h!||
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1120,7 +1010,6 @@ msgctxt ""
msgid "SUMX2PY2"
msgstr ""
-#. VX!5
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1130,7 +1019,6 @@ msgctxt ""
msgid "SUMXMY2"
msgstr ""
-#. I!~Y
#: core_resource.src
#, fuzzy
msgctxt ""
@@ -1141,7 +1029,6 @@ msgctxt ""
msgid "DATE"
msgstr "EDATE"
-#. o(bC
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1151,7 +1038,6 @@ msgctxt ""
msgid "TIME"
msgstr ""
-#. uJqB
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1161,7 +1047,6 @@ msgctxt ""
msgid "DAYS"
msgstr ""
-#. ]I2$
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1171,7 +1056,6 @@ msgctxt ""
msgid "DAYS360"
msgstr ""
-#. dwaI
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1181,7 +1065,6 @@ msgctxt ""
msgid "DATEDIF"
msgstr ""
-#. d,kb
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1191,7 +1074,6 @@ msgctxt ""
msgid "MIN"
msgstr ""
-#. 9VV1
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1201,7 +1083,6 @@ msgctxt ""
msgid "MINA"
msgstr ""
-#. Pjby
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1211,7 +1092,6 @@ msgctxt ""
msgid "MAX"
msgstr ""
-#. EXm0
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1221,7 +1101,6 @@ msgctxt ""
msgid "MAXA"
msgstr ""
-#. kYY;
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1231,7 +1110,6 @@ msgctxt ""
msgid "SUM"
msgstr ""
-#. vIN,
#: core_resource.src
#, fuzzy
msgctxt ""
@@ -1242,7 +1120,6 @@ msgctxt ""
msgid "PRODUCT"
msgstr "IMPRODUCT"
-#. D!nm
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1252,7 +1129,6 @@ msgctxt ""
msgid "AVERAGE"
msgstr ""
-#. n]XY
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1262,7 +1138,6 @@ msgctxt ""
msgid "AVERAGEA"
msgstr ""
-#. b4se
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1272,7 +1147,6 @@ msgctxt ""
msgid "COUNT"
msgstr ""
-#. G;:H
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1282,7 +1156,6 @@ msgctxt ""
msgid "COUNTA"
msgstr ""
-#. *@eF
#: core_resource.src
#, fuzzy
msgctxt ""
@@ -1293,7 +1166,6 @@ msgctxt ""
msgid "NPV"
msgstr "XNPV"
-#. [.O@
#: core_resource.src
#, fuzzy
msgctxt ""
@@ -1304,7 +1176,6 @@ msgctxt ""
msgid "IRR"
msgstr "XIRR"
-#. NC,e
#: core_resource.src
#, fuzzy
msgctxt ""
@@ -1315,7 +1186,6 @@ msgctxt ""
msgid "MIRR"
msgstr "XIRR"
-#. }{EG
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1325,7 +1195,6 @@ msgctxt ""
msgid "ISPMT"
msgstr ""
-#. sz\Q
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1335,7 +1204,6 @@ msgctxt ""
msgid "VAR"
msgstr ""
-#. :Uz?
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1345,7 +1213,6 @@ msgctxt ""
msgid "VARA"
msgstr ""
-#. (n^W
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1355,7 +1222,6 @@ msgctxt ""
msgid "VARP"
msgstr ""
-#. Rffd
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1365,7 +1231,6 @@ msgctxt ""
msgid "VARPA"
msgstr ""
-#. #X]Z
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1375,7 +1240,6 @@ msgctxt ""
msgid "STDEV"
msgstr ""
-#. YP,U
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1385,7 +1249,6 @@ msgctxt ""
msgid "STDEVA"
msgstr ""
-#. k==L
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1395,7 +1258,6 @@ msgctxt ""
msgid "STDEVP"
msgstr ""
-#. ^_9?
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1405,7 +1267,6 @@ msgctxt ""
msgid "STDEVPA"
msgstr ""
-#. i!c6
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1415,7 +1276,6 @@ msgctxt ""
msgid "B"
msgstr ""
-#. E?A`
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1425,7 +1285,6 @@ msgctxt ""
msgid "NORMDIST"
msgstr ""
-#. H8(s
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1435,7 +1294,6 @@ msgctxt ""
msgid "EXPONDIST"
msgstr ""
-#. 8_m#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1445,7 +1303,6 @@ msgctxt ""
msgid "BINOMDIST"
msgstr ""
-#. XcTN
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1455,7 +1312,6 @@ msgctxt ""
msgid "POISSON"
msgstr ""
-#. O{vk
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1465,7 +1321,6 @@ msgctxt ""
msgid "COMBIN"
msgstr ""
-#. r,Da
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1475,7 +1330,6 @@ msgctxt ""
msgid "COMBINA"
msgstr ""
-#. 8pwJ
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1485,7 +1339,6 @@ msgctxt ""
msgid "PERMUT"
msgstr ""
-#. C~E_
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1495,7 +1348,6 @@ msgctxt ""
msgid "PERMUTATIONA"
msgstr ""
-#. $qaM
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1505,7 +1357,6 @@ msgctxt ""
msgid "PV"
msgstr ""
-#. B}%j
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1515,7 +1366,6 @@ msgctxt ""
msgid "SYD"
msgstr ""
-#. M!(#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1525,7 +1375,6 @@ msgctxt ""
msgid "DDB"
msgstr ""
-#. gd.N
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1535,7 +1384,6 @@ msgctxt ""
msgid "DB"
msgstr ""
-#. Fk.$
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1545,7 +1393,6 @@ msgctxt ""
msgid "VDB"
msgstr ""
-#. ;cmf
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1555,7 +1402,6 @@ msgctxt ""
msgid "DURATION"
msgstr "DURATION"
-#. @5X\
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1565,7 +1411,6 @@ msgctxt ""
msgid "SLN"
msgstr ""
-#. 7ADN
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1575,7 +1420,6 @@ msgctxt ""
msgid "PMT"
msgstr ""
-#. TnuR
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1585,7 +1429,6 @@ msgctxt ""
msgid "COLUMNS"
msgstr ""
-#. gg|p
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1595,7 +1438,6 @@ msgctxt ""
msgid "ROWS"
msgstr ""
-#. X?;`
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1605,7 +1447,6 @@ msgctxt ""
msgid "SHEETS"
msgstr ""
-#. T0Oh
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1615,7 +1456,6 @@ msgctxt ""
msgid "COLUMN"
msgstr ""
-#. qT,(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1625,7 +1465,6 @@ msgctxt ""
msgid "ROW"
msgstr ""
-#. ,K0c
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1635,7 +1474,6 @@ msgctxt ""
msgid "SHEET"
msgstr ""
-#. 4PFm
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1645,7 +1483,6 @@ msgctxt ""
msgid "RRI"
msgstr ""
-#. (*dv
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1655,7 +1492,6 @@ msgctxt ""
msgid "FV"
msgstr ""
-#. 7!c6
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1665,7 +1501,6 @@ msgctxt ""
msgid "NPER"
msgstr ""
-#. |ncs
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1675,7 +1510,6 @@ msgctxt ""
msgid "RATE"
msgstr ""
-#. D*#a
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1685,7 +1519,6 @@ msgctxt ""
msgid "IPMT"
msgstr ""
-#. N9g.
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1695,7 +1528,6 @@ msgctxt ""
msgid "PPMT"
msgstr ""
-#. [Wns
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1705,7 +1537,6 @@ msgctxt ""
msgid "CUMIPMT"
msgstr "CUMIPMT"
-#. ek~l
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1715,7 +1546,6 @@ msgctxt ""
msgid "CUMPRINC"
msgstr "CUMPRINC"
-#. e2hf
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1725,7 +1555,6 @@ msgctxt ""
msgid "EFFECTIVE"
msgstr ""
-#. $o9`
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1735,7 +1564,6 @@ msgctxt ""
msgid "NOMINAL"
msgstr "NOMINAL"
-#. .H+F
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1745,7 +1573,6 @@ msgctxt ""
msgid "SUBTOTAL"
msgstr ""
-#. Z(n2
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1755,7 +1582,6 @@ msgctxt ""
msgid "DSUM"
msgstr ""
-#. E@77
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1765,7 +1591,6 @@ msgctxt ""
msgid "DCOUNT"
msgstr ""
-#. ~S?:
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1775,7 +1600,6 @@ msgctxt ""
msgid "DCOUNTA"
msgstr ""
-#. EuvL
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1785,7 +1609,6 @@ msgctxt ""
msgid "DAVERAGE"
msgstr ""
-#. Thmd
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1795,7 +1618,6 @@ msgctxt ""
msgid "DGET"
msgstr ""
-#. `Yn@
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1805,7 +1627,6 @@ msgctxt ""
msgid "DMAX"
msgstr ""
-#. @Y=\
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1815,7 +1636,6 @@ msgctxt ""
msgid "DMIN"
msgstr ""
-#. r=lc
#: core_resource.src
#, fuzzy
msgctxt ""
@@ -1826,7 +1646,6 @@ msgctxt ""
msgid "DPRODUCT"
msgstr "IMPRODUCT"
-#. l;EA
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1836,7 +1655,6 @@ msgctxt ""
msgid "DSTDEV"
msgstr ""
-#. PB9d
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1846,7 +1664,6 @@ msgctxt ""
msgid "DSTDEVP"
msgstr ""
-#. =]D,
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1856,7 +1673,6 @@ msgctxt ""
msgid "DVAR"
msgstr ""
-#. l.$)
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1866,7 +1682,6 @@ msgctxt ""
msgid "DVARP"
msgstr ""
-#. qcU#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1876,7 +1691,6 @@ msgctxt ""
msgid "INDIRECT"
msgstr ""
-#. bdnL
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1886,7 +1700,6 @@ msgctxt ""
msgid "ADDRESS"
msgstr ""
-#. F:u*
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1896,7 +1709,6 @@ msgctxt ""
msgid "MATCH"
msgstr ""
-#. G*]k
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1906,7 +1718,6 @@ msgctxt ""
msgid "COUNTBLANK"
msgstr ""
-#. rl!)
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1916,7 +1727,6 @@ msgctxt ""
msgid "COUNTIF"
msgstr ""
-#. dP[c
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1926,7 +1736,6 @@ msgctxt ""
msgid "SUMIF"
msgstr ""
-#. X-d{
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1936,7 +1745,6 @@ msgctxt ""
msgid "LOOKUP"
msgstr ""
-#. _DRq
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1946,7 +1754,6 @@ msgctxt ""
msgid "VLOOKUP"
msgstr ""
-#. ?}]%
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1956,7 +1763,6 @@ msgctxt ""
msgid "HLOOKUP"
msgstr ""
-#. _\%7
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1966,7 +1772,6 @@ msgctxt ""
msgid "MULTIRANGE"
msgstr ""
-#. ?eU1
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1976,7 +1781,6 @@ msgctxt ""
msgid "OFFSET"
msgstr ""
-#. Jz5#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1986,7 +1790,6 @@ msgctxt ""
msgid "INDEX"
msgstr ""
-#. +qQ8
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1996,7 +1799,6 @@ msgctxt ""
msgid "AREAS"
msgstr ""
-#. F_]z
#: core_resource.src
#, fuzzy
msgctxt ""
@@ -2007,7 +1809,6 @@ msgctxt ""
msgid "DOLLAR"
msgstr "DOLLARFR"
-#. =AV.
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2017,7 +1818,6 @@ msgctxt ""
msgid "REPLACE"
msgstr ""
-#. GD+x
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2027,7 +1827,6 @@ msgctxt ""
msgid "FIXED"
msgstr ""
-#. `V[a
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2037,7 +1836,6 @@ msgctxt ""
msgid "FIND"
msgstr ""
-#. re$@
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2047,7 +1845,6 @@ msgctxt ""
msgid "EXACT"
msgstr ""
-#. KZf]
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2057,7 +1854,6 @@ msgctxt ""
msgid "LEFT"
msgstr ""
-#. 0rPe
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2067,7 +1863,6 @@ msgctxt ""
msgid "RIGHT"
msgstr ""
-#. ]3[S
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2077,7 +1872,6 @@ msgctxt ""
msgid "SEARCH"
msgstr ""
-#. r]IN
#: core_resource.src
#, fuzzy
msgctxt ""
@@ -2088,7 +1882,6 @@ msgctxt ""
msgid "MID"
msgstr "MIDI"
-#. KrZV
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2098,7 +1891,6 @@ msgctxt ""
msgid "TEXT"
msgstr ""
-#. Dri6
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2108,7 +1900,6 @@ msgctxt ""
msgid "SUBSTITUTE"
msgstr ""
-#. @=si
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2118,7 +1909,6 @@ msgctxt ""
msgid "REPT"
msgstr ""
-#. b27s
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2128,7 +1918,6 @@ msgctxt ""
msgid "CONCATENATE"
msgstr ""
-#. \7ZC
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2138,7 +1927,6 @@ msgctxt ""
msgid "MVALUE"
msgstr ""
-#. $jQA
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2148,7 +1936,6 @@ msgctxt ""
msgid "MDETERM"
msgstr ""
-#. p\Zh
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2158,7 +1945,6 @@ msgctxt ""
msgid "MINVERSE"
msgstr ""
-#. x?y^
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2168,7 +1954,6 @@ msgctxt ""
msgid "MMULT"
msgstr ""
-#. M:e(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2178,7 +1963,6 @@ msgctxt ""
msgid "TRANSPOSE"
msgstr ""
-#. xyM5
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2188,7 +1972,6 @@ msgctxt ""
msgid "MUNIT"
msgstr ""
-#. qF^k
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2198,7 +1981,6 @@ msgctxt ""
msgid "GOALSEEK"
msgstr ""
-#. 8\V7
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2208,7 +1990,6 @@ msgctxt ""
msgid "HYPGEOMDIST"
msgstr ""
-#. $a)3
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2218,7 +1999,6 @@ msgctxt ""
msgid "LOGNORMDIST"
msgstr ""
-#. S]Ef
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2228,7 +2008,6 @@ msgctxt ""
msgid "TDIST"
msgstr ""
-#. 3#9(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2238,7 +2017,6 @@ msgctxt ""
msgid "FDIST"
msgstr ""
-#. Kff1
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2248,7 +2026,6 @@ msgctxt ""
msgid "CHIDIST"
msgstr ""
-#. _R.J
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2258,7 +2035,6 @@ msgctxt ""
msgid "WEIBULL"
msgstr ""
-#. To7B
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2268,7 +2044,6 @@ msgctxt ""
msgid "NEGBINOMDIST"
msgstr ""
-#. 1]Bv
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2278,7 +2053,6 @@ msgctxt ""
msgid "CRITBINOM"
msgstr ""
-#. @Km^
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2288,7 +2062,6 @@ msgctxt ""
msgid "KURT"
msgstr ""
-#. ,wlP
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2298,7 +2071,6 @@ msgctxt ""
msgid "HARMEAN"
msgstr ""
-#. `p*C
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2308,7 +2080,6 @@ msgctxt ""
msgid "GEOMEAN"
msgstr ""
-#. qM)N
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2318,7 +2089,6 @@ msgctxt ""
msgid "STANDARDIZE"
msgstr ""
-#. #Ce(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2328,7 +2098,6 @@ msgctxt ""
msgid "AVEDEV"
msgstr ""
-#. I+ZX
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2338,7 +2107,6 @@ msgctxt ""
msgid "SKEW"
msgstr ""
-#. u;Z(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2348,7 +2116,6 @@ msgctxt ""
msgid "DEVSQ"
msgstr ""
-#. WOM2
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2358,7 +2125,6 @@ msgctxt ""
msgid "MEDIAN"
msgstr ""
-#. cY%B
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2368,7 +2134,6 @@ msgctxt ""
msgid "MODE"
msgstr ""
-#. mki,
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2378,7 +2143,6 @@ msgctxt ""
msgid "ZTEST"
msgstr ""
-#. G5!Y
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2388,7 +2152,6 @@ msgctxt ""
msgid "TTEST"
msgstr ""
-#. )6^A
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2398,7 +2161,6 @@ msgctxt ""
msgid "RANK"
msgstr ""
-#. 1ZUU
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2408,7 +2170,6 @@ msgctxt ""
msgid "PERCENTILE"
msgstr ""
-#. -`uX
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2418,7 +2179,6 @@ msgctxt ""
msgid "PERCENTRANK"
msgstr ""
-#. B3)6
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2428,7 +2188,6 @@ msgctxt ""
msgid "LARGE"
msgstr ""
-#. `^/,
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2438,7 +2197,6 @@ msgctxt ""
msgid "SMALL"
msgstr ""
-#. F0yF
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2448,7 +2206,6 @@ msgctxt ""
msgid "FREQUENCY"
msgstr ""
-#. 44gA
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2458,7 +2215,6 @@ msgctxt ""
msgid "QUARTILE"
msgstr ""
-#. $\Os
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2468,7 +2224,6 @@ msgctxt ""
msgid "NORMINV"
msgstr ""
-#. .LzE
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2478,7 +2233,6 @@ msgctxt ""
msgid "CONFIDENCE"
msgstr ""
-#. cM67
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2488,7 +2242,6 @@ msgctxt ""
msgid "FTEST"
msgstr ""
-#. k.|9
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2498,7 +2251,6 @@ msgctxt ""
msgid "TRIMMEAN"
msgstr ""
-#. .Bua
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2508,7 +2260,6 @@ msgctxt ""
msgid "PROB"
msgstr ""
-#. mLn^
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2518,7 +2269,6 @@ msgctxt ""
msgid "CORREL"
msgstr ""
-#. @-w~
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2528,7 +2278,6 @@ msgctxt ""
msgid "COVAR"
msgstr ""
-#. JSkE
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2538,7 +2287,6 @@ msgctxt ""
msgid "PEARSON"
msgstr ""
-#. (tCP
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2548,7 +2296,6 @@ msgctxt ""
msgid "RSQ"
msgstr ""
-#. 4heE
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2558,7 +2305,6 @@ msgctxt ""
msgid "STEYX"
msgstr ""
-#. I7m3
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2568,7 +2314,6 @@ msgctxt ""
msgid "SLOPE"
msgstr ""
-#. {p,-
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2578,7 +2323,6 @@ msgctxt ""
msgid "INTERCEPT"
msgstr ""
-#. v#n|
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2588,7 +2332,6 @@ msgctxt ""
msgid "TREND"
msgstr ""
-#. Qf]v
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2598,7 +2341,6 @@ msgctxt ""
msgid "GROWTH"
msgstr ""
-#. -EP8
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2608,7 +2350,6 @@ msgctxt ""
msgid "LINEST"
msgstr ""
-#. Gsz[
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2618,7 +2359,6 @@ msgctxt ""
msgid "LOGEST"
msgstr ""
-#. o0iV
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2628,7 +2368,6 @@ msgctxt ""
msgid "FORECAST"
msgstr ""
-#. M?3F
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2638,7 +2377,6 @@ msgctxt ""
msgid "CHIINV"
msgstr ""
-#. 1ny?
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2648,7 +2386,6 @@ msgctxt ""
msgid "GAMMADIST"
msgstr ""
-#. A(nJ
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2658,7 +2395,6 @@ msgctxt ""
msgid "GAMMAINV"
msgstr ""
-#. )T9W
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2668,7 +2404,6 @@ msgctxt ""
msgid "TINV"
msgstr ""
-#. X/)S
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2678,7 +2413,6 @@ msgctxt ""
msgid "FINV"
msgstr ""
-#. ;Q,}
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2688,7 +2422,6 @@ msgctxt ""
msgid "CHITEST"
msgstr ""
-#. A$e/
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2698,7 +2431,6 @@ msgctxt ""
msgid "LOGINV"
msgstr ""
-#. F}DZ
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2708,7 +2440,6 @@ msgctxt ""
msgid "MULTIPLE.OPERATIONS"
msgstr ""
-#. *2sm
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2718,7 +2449,6 @@ msgctxt ""
msgid "BETADIST"
msgstr ""
-#. .f*\
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2728,7 +2458,6 @@ msgctxt ""
msgid "BETAINV"
msgstr ""
-#. 7_Jr
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2738,7 +2467,6 @@ msgctxt ""
msgid "WEEKNUM"
msgstr "WEEKNUM"
-#. huqp
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2748,7 +2476,6 @@ msgctxt ""
msgid "EASTERSUNDAY"
msgstr ""
-#. n~Zf
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2758,7 +2485,6 @@ msgctxt ""
msgid "WEEKDAY"
msgstr ""
-#. M3m.
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2768,7 +2494,6 @@ msgctxt ""
msgid "#NAME!"
msgstr ""
-#. cdty
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2778,7 +2503,6 @@ msgctxt ""
msgid "STYLE"
msgstr ""
-#. l([n
#: core_resource.src
#, fuzzy
msgctxt ""
@@ -2789,7 +2513,6 @@ msgctxt ""
msgid "DDE"
msgstr "DD~E"
-#. g/Em
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2799,7 +2522,6 @@ msgctxt ""
msgid "BASE"
msgstr ""
-#. PBBY
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2809,7 +2531,6 @@ msgctxt ""
msgid "DECIMAL"
msgstr ""
-#. 1m0+
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2819,7 +2540,6 @@ msgctxt ""
msgid "CONVERT"
msgstr "CONVERT"
-#. bi_(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2829,7 +2549,6 @@ msgctxt ""
msgid "ROMAN"
msgstr ""
-#. (a}=
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2839,7 +2558,6 @@ msgctxt ""
msgid "HYPERLINK"
msgstr ""
-#. .j,H
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2849,7 +2567,6 @@ msgctxt ""
msgid "INFO"
msgstr ""
-#. ]:og
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2859,7 +2576,6 @@ msgctxt ""
msgid "BAHTTEXT"
msgstr ""
-#. V_p5
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2869,7 +2585,6 @@ msgctxt ""
msgid "GETPIVOTDATA"
msgstr ""
-#. v_m^
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2879,7 +2594,6 @@ msgctxt ""
msgid "EUROCONVERT"
msgstr ""
-#. q{4P
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2889,7 +2603,6 @@ msgctxt ""
msgid "NUMBERVALUE"
msgstr ""
-#. YqfY
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2899,7 +2612,6 @@ msgctxt ""
msgid "GAMMA"
msgstr "GAMMA"
-#. c?p*
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2909,7 +2621,6 @@ msgctxt ""
msgid "CHISQDIST"
msgstr ""
-#. s,k=
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2919,7 +2630,6 @@ msgctxt ""
msgid "CHISQINV"
msgstr ""
-#. S(m8
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2929,7 +2639,6 @@ msgctxt ""
msgid "BITAND"
msgstr ""
-#. %ToX
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2939,7 +2648,6 @@ msgctxt ""
msgid "BITOR"
msgstr ""
-#. 6_pV
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2949,7 +2657,6 @@ msgctxt ""
msgid "BITXOR"
msgstr ""
-#. .~dm
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2959,7 +2666,6 @@ msgctxt ""
msgid "BITRSHIFT"
msgstr ""
-#. ]fP+
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2969,7 +2675,6 @@ msgctxt ""
msgid "BITLSHIFT"
msgstr ""
-#. 5HqI
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2979,7 +2684,6 @@ msgctxt ""
msgid "#NULL!"
msgstr ""
-#. 2U]$
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2989,7 +2693,6 @@ msgctxt ""
msgid "#DIV/0!"
msgstr ""
-#. $a}i
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2999,7 +2702,6 @@ msgctxt ""
msgid "#VALUE!"
msgstr ""
-#. (T^C
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -3009,7 +2711,6 @@ msgctxt ""
msgid "#REF!"
msgstr ""
-#. N[*Z
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -3019,7 +2720,6 @@ msgctxt ""
msgid "#NAME?"
msgstr ""
-#. M-]K
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -3029,7 +2729,6 @@ msgctxt ""
msgid "#NUM!"
msgstr ""
-#. [WhE
#: core_resource.src
msgctxt ""
"core_resource.src\n"
diff --git a/source/ka/formula/source/ui/dlg.po b/source/ka/formula/source/ui/dlg.po
index a066ff3d834..5da68e10468 100644
--- a/source/ka/formula/source/ui/dlg.po
+++ b/source/ka/formula/source/ui/dlg.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-12 00:27+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. H*F=
#: parawin.src
msgctxt ""
"parawin.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. jd0F
#: parawin.src
msgctxt ""
"parawin.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Select"
msgstr "მონიშვნა"
-#. R-Js
#: parawin.src
msgctxt ""
"parawin.src\n"
@@ -43,7 +40,6 @@ msgctxt ""
msgid "Function not known"
msgstr ""
-#. x}mq
#: parawin.src
msgctxt ""
"parawin.src\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "(optional)"
msgstr ""
-#. 8-`p
#: parawin.src
msgctxt ""
"parawin.src\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "(required)"
msgstr ""
-#. 0h1x
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "Last Used"
msgstr "ბოლოს გამოყენებული"
-#. h,@F
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -83,7 +76,6 @@ msgctxt ""
msgid "All"
msgstr "ყველა"
-#. V%02
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -93,7 +85,6 @@ msgctxt ""
msgid "~Category"
msgstr "~კატეგორია"
-#. ]E,m
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -103,7 +94,6 @@ msgctxt ""
msgid "~Function"
msgstr "~ფუნქცია"
-#. W`#G
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -113,7 +103,6 @@ msgctxt ""
msgid "~Structure"
msgstr "~სტრუქტურა"
-#. 229U
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -123,7 +112,6 @@ msgctxt ""
msgid "=?"
msgstr ""
-#. X*;M
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -133,7 +121,6 @@ msgctxt ""
msgid "Error"
msgstr "შეცდომა"
-#. LA-U
#: formdlgs.src
#, fuzzy
msgctxt ""
@@ -144,7 +131,6 @@ msgctxt ""
msgid "Functions"
msgstr "ფუნქციები"
-#. OYX,
#: formdlgs.src
#, fuzzy
msgctxt ""
@@ -155,7 +141,6 @@ msgctxt ""
msgid "Structure"
msgstr "~სტრუქტურა"
-#. f:ni
#: formdlgs.src
#, fuzzy
msgctxt ""
@@ -166,7 +151,6 @@ msgctxt ""
msgid "For~mula"
msgstr "ფორმულა"
-#. v%!v
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -176,7 +160,6 @@ msgctxt ""
msgid "Function result"
msgstr ""
-#. HON9
#: formdlgs.src
#, fuzzy
msgctxt ""
@@ -187,7 +170,6 @@ msgctxt ""
msgid "Result"
msgstr "შედეგები"
-#. U\w!
#: formdlgs.src
#, fuzzy
msgctxt ""
@@ -198,7 +180,6 @@ msgctxt ""
msgid "Array"
msgstr "მასივი"
-#. qW~Y
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -208,7 +189,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. CQ+I
#: formdlgs.src
#, fuzzy
msgctxt ""
@@ -219,7 +199,6 @@ msgctxt ""
msgid "Maximize"
msgstr "გაშლა"
-#. bG0S
#: formdlgs.src
#, fuzzy
msgctxt ""
@@ -230,7 +209,6 @@ msgctxt ""
msgid "<< ~Back"
msgstr "< ~უკან"
-#. $,KF
#: formdlgs.src
#, fuzzy
msgctxt ""
@@ -241,7 +219,6 @@ msgctxt ""
msgid "~Next >>"
msgstr "~წინ >"
-#. h?Ds
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -251,7 +228,6 @@ msgctxt ""
msgid "Function Wizard"
msgstr ""
-#. ${X$
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -261,7 +237,6 @@ msgctxt ""
msgid "Function Wizard -"
msgstr ""
-#. PtZx
#: formdlgs.src
#, fuzzy
msgctxt ""
@@ -272,7 +247,6 @@ msgctxt ""
msgid "~End"
msgstr "დ~ასასრული"
-#. 5GA-
#: formdlgs.src
#, fuzzy
msgctxt ""
@@ -283,7 +257,6 @@ msgctxt ""
msgid "Functions"
msgstr "ფუნქციები"
-#. vdc,
#: formdlgs.src
#, fuzzy
msgctxt ""
@@ -294,7 +267,6 @@ msgctxt ""
msgid "Structure"
msgstr "~სტრუქტურა"
-#. cJ45
#: formdlgs.src
#, fuzzy
msgctxt ""
@@ -305,7 +277,6 @@ msgctxt ""
msgid "For~mula"
msgstr "ფორმულა"
-#. !f`w
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -315,7 +286,6 @@ msgctxt ""
msgid "Function result"
msgstr ""
-#. mTa6
#: formdlgs.src
#, fuzzy
msgctxt ""
@@ -326,7 +296,6 @@ msgctxt ""
msgid "Result"
msgstr "შედეგები"
-#. k;$r
#: formdlgs.src
#, fuzzy
msgctxt ""
@@ -337,7 +306,6 @@ msgctxt ""
msgid "Array"
msgstr "მასივი"
-#. 5r,t
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -347,7 +315,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. nVL#
#: formdlgs.src
#, fuzzy
msgctxt ""
@@ -358,7 +325,6 @@ msgctxt ""
msgid "Maximize"
msgstr "გაშლა"
-#. ;:RX
#: formdlgs.src
#, fuzzy
msgctxt ""
@@ -369,7 +335,6 @@ msgctxt ""
msgid "<< ~Back"
msgstr "< ~უკან"
-#. O1up
#: formdlgs.src
#, fuzzy
msgctxt ""
@@ -380,7 +345,6 @@ msgctxt ""
msgid "~Next >>"
msgstr "~წინ >"
-#. ?k]\
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -390,7 +354,6 @@ msgctxt ""
msgid "Function Wizard"
msgstr ""
-#. 2~aH
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -400,7 +363,6 @@ msgctxt ""
msgid "Function Wizard -"
msgstr ""
-#. )ol`
#: formdlgs.src
#, fuzzy
msgctxt ""
diff --git a/source/ka/fpicker/source/office.po b/source/ka/fpicker/source/office.po
index 0f02c534c57..d61256e4cba 100644
--- a/source/ka/fpicker/source/office.po
+++ b/source/ka/fpicker/source/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: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-06-16 14:28+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 4ULj
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "~Automatic file name extension"
msgstr "~ავტომატური ფაილის გაფართოება"
-#. Dj/:
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Save with pass~word"
msgstr "შენახვა პაროლით"
-#. 9N|P
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "~Edit filter settings"
msgstr "ჩაასწორე ფილტრის პარამეტრები"
-#. lbNM
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "~Read-only"
msgstr "~მხოლოდ წაკითხვადი"
-#. !:SR
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "~Link"
msgstr "~ბმული"
-#. ~{h[
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Pr~eview"
msgstr "გა~დახედვა"
-#. kNTP
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "~Play"
msgstr "~დაკვრა"
-#. %P4+
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "~Version:"
msgstr "~ვერსია:"
-#. p(Uq
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "S~tyles:"
msgstr "ს~ტილები:"
-#. )yE=
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Style:"
msgstr "სტილი:"
-#. LqbU
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "~Selection"
msgstr "~მონიშნული"
-#. o3;O
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "File ~type:"
msgstr "ფაილის ტ~იპი"
-#. 1bv8
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -132,7 +119,6 @@ msgctxt ""
msgid "Select Path"
msgstr "მდებარეობის არჩევა"
-#. D07^
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -141,7 +127,6 @@ msgctxt ""
msgid "Please select a folder."
msgstr "გთხოვთ აირჩიოთ დირექტორია"
-#. ]Vv@
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -151,7 +136,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. ;Y*U
#: iodlg.src
#, fuzzy
msgctxt ""
@@ -162,7 +146,6 @@ msgctxt ""
msgid "Create New Folder"
msgstr "ახალი დირექტორიის შექმნა"
-#. 4H%k
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -172,7 +155,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. /)2a
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -182,7 +164,6 @@ msgctxt ""
msgid "Up One Level"
msgstr "ერთი დონით მაღლა"
-#. -eE@
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -192,7 +173,6 @@ msgctxt ""
msgid "..."
msgstr "..."
-#. JY_L
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -202,7 +182,6 @@ msgctxt ""
msgid "Connect To Server"
msgstr ""
-#. gtrg
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -212,7 +191,6 @@ msgctxt ""
msgid "File ~name:"
msgstr "ფაილის ს~ახელი"
-#. 3oFW
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -222,7 +200,6 @@ msgctxt ""
msgid "File ~type:"
msgstr "ფაილის ტ~იპი"
-#. 0IUA
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -232,7 +209,6 @@ msgctxt ""
msgid "~Read-only"
msgstr "~მხოლოდ წაკითხვადი"
-#. f3pW
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -242,7 +218,6 @@ msgctxt ""
msgid "Save with password"
msgstr "შენახვა პაროლით"
-#. !;B:
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -252,7 +227,6 @@ msgctxt ""
msgid "~Automatic file name extension"
msgstr "~ავტომატური ფაილის გაფართოება"
-#. NSiC
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -262,7 +236,6 @@ msgctxt ""
msgid "Edit ~filter settings"
msgstr "~ფილტრის პარამეტრების ჩასწორება"
-#. Tfb=
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -272,7 +245,6 @@ msgctxt ""
msgid "~Open"
msgstr "~გახსნა"
-#. !Wl]
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -282,7 +254,6 @@ msgctxt ""
msgid "Open"
msgstr "გახსნა"
-#. vzL/
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -292,7 +263,6 @@ msgctxt ""
msgid "Save as"
msgstr "შეინახე როგორც..."
-#. +C2x
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -302,7 +272,6 @@ msgctxt ""
msgid "~Save"
msgstr "~შენახვა"
-#. 597d
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -312,7 +281,6 @@ msgctxt ""
msgid "~Path:"
msgstr "~ადგილმდებარეობა:"
-#. |qgQ
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -322,7 +290,6 @@ msgctxt ""
msgid "Select path"
msgstr "ადგილმდებარეობის არჩევა"
-#. .EW)
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -332,7 +299,6 @@ msgctxt ""
msgid "~Select"
msgstr "~მონიშვნა"
-#. +TS2
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -342,7 +308,6 @@ msgctxt ""
msgid "Current version"
msgstr "მიმდინარე ვერსია"
-#. 8Um~
#: iodlg.src
#, fuzzy
msgctxt ""
@@ -353,7 +318,6 @@ msgctxt ""
msgid "File Preview"
msgstr "გადახედვის გათიშვა"
-#. k{IY
#: iodlg.src
#, fuzzy
msgctxt ""
@@ -364,7 +328,6 @@ msgctxt ""
msgid "My Documents"
msgstr "დოკუმენტები"
-#. \sF-
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -374,7 +337,6 @@ msgctxt ""
msgid "Places"
msgstr "წილადები"
-#. 5j@s
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -384,7 +346,6 @@ msgctxt ""
msgid "Na~me"
msgstr "სახე~ლი"
-#. FB6m
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -394,7 +355,6 @@ msgctxt ""
msgid "Create new folder"
msgstr "ახალი დირექტორიის შექმნა"
-#. ,U8x
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -403,7 +363,6 @@ msgctxt ""
msgid "$name$ does not exist."
msgstr "$name$ არ არსებობს."
-#. @`7(
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -416,7 +375,6 @@ msgstr ""
"ფაილი $name$ არ არსებობს.\n"
"დარწმუნდით რომ ფაილის სახელი სწორად არის შეყვანილი."
-#. Zl^@
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -425,7 +383,6 @@ msgctxt ""
msgid "All files"
msgstr ""
-#. {30k
#: iodlg.src
#, fuzzy
msgctxt ""
@@ -440,7 +397,6 @@ msgstr ""
"დიზაინი ამ სახელით უკვე არსებობს.\n"
"გსურთ მისი ჩანაცვლება?"
-#. sG][
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -449,7 +405,6 @@ msgctxt ""
msgid "Folder"
msgstr "დირექტორია"
-#. 3usx
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -462,7 +417,6 @@ msgstr ""
"ამოღებადი დაგროვების მოწყობილებები ვერ მოიძებნა.\n"
"დარწმუნდით, რომ ის სწორად არის შეერთებული და სცადეთ კვლავ ."
-#. qSJd
#: iodlg.src
#, fuzzy
msgctxt ""
diff --git a/source/ka/framework/source/classes.po b/source/ka/framework/source/classes.po
index f47d2b8f03a..10bf5eb7ea5 100644
--- a/source/ka/framework/source/classes.po
+++ b/source/ka/framework/source/classes.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:14+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. +x#`
#: resource.src
msgctxt ""
"resource.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Add-Ons"
msgstr "დამატებები"
-#. J7v!
#: resource.src
msgctxt ""
"resource.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Add-~On Help"
msgstr "დამატებების დახმარება"
-#. =X1Z
#: resource.src
msgctxt ""
"resource.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "All"
msgstr "ყველა"
-#. mL;x
#: resource.src
msgctxt ""
"resource.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "~Update"
msgstr "~განახლება"
-#. }FiV
#: resource.src
msgctxt ""
"resource.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "~Close & Return to "
msgstr "~დახურვა და დაბრუნება:"
-#. _J\Z
#: resource.src
msgctxt ""
"resource.src\n"
@@ -70,7 +64,6 @@ msgctxt ""
msgid "Visible ~Buttons"
msgstr "ხილული ~ღილაკები"
-#. .__I
#: resource.src
msgctxt ""
"resource.src\n"
@@ -80,7 +73,6 @@ msgctxt ""
msgid "~Customize Toolbar..."
msgstr "~ხელსაწყოთა ზოლის მორგება"
-#. Mz%D
#: resource.src
msgctxt ""
"resource.src\n"
@@ -90,7 +82,6 @@ msgctxt ""
msgid "~Dock Toolbar"
msgstr "ხელსაწყოთა ზოლის ~დამაგრება"
-#. #bq-
#: resource.src
msgctxt ""
"resource.src\n"
@@ -100,7 +91,6 @@ msgctxt ""
msgid "Dock ~All Toolbars"
msgstr "ხელსაწყოთა ~ყველა ზოლის დამაგრება"
-#. ;Sdo
#: resource.src
msgctxt ""
"resource.src\n"
@@ -110,7 +100,6 @@ msgctxt ""
msgid "~Lock Toolbar Position"
msgstr "~ხელსაწყოთა ზოლის მდებარეობის გაყინვა"
-#. X1|H
#: resource.src
msgctxt ""
"resource.src\n"
@@ -120,7 +109,6 @@ msgctxt ""
msgid "Close ~Toolbar"
msgstr "ხელსაწყოთა ზოლის დახურვა"
-#. JT^K
#: resource.src
msgctxt ""
"resource.src\n"
@@ -129,7 +117,6 @@ msgctxt ""
msgid "Save Copy ~as..."
msgstr "ასლის შენახვა სახელით..."
-#. jC/t
#: resource.src
#, fuzzy
msgctxt ""
@@ -139,7 +126,6 @@ msgctxt ""
msgid "No Documents"
msgstr "დოკუმენტისკენ"
-#. VbG3
#: resource.src
msgctxt ""
"resource.src\n"
@@ -148,7 +134,6 @@ msgctxt ""
msgid "Add-On %num%"
msgstr "დამატებების %num%"
-#. Rbv~
#: resource.src
msgctxt ""
"resource.src\n"
@@ -157,7 +142,6 @@ msgctxt ""
msgid "A %PRODUCTNAME product by %OOOVENDOR"
msgstr ""
-#. 5{4l
#: resource.src
msgctxt ""
"resource.src\n"
@@ -167,7 +151,6 @@ msgctxt ""
msgid "Please follow these steps to proceed with the installation:"
msgstr "ინსტალაციის გასაგრძელებლად გთხოვთ,გაიაროთ შემდეგი საფეხურები:"
-#. 1L2:
#: resource.src
msgctxt ""
"resource.src\n"
@@ -177,7 +160,6 @@ msgctxt ""
msgid "1."
msgstr "1."
-#. R$W\
#: resource.src
msgctxt ""
"resource.src\n"
@@ -187,7 +169,6 @@ msgctxt ""
msgid "View the complete License Agreement. Please use the scroll bar or the '%PAGEDOWN' button in this dialog to view the entire license text."
msgstr "სრული სალიცენზიო შეთანხმების ნახვა. ლიცენზიის სრული ტექსტისათვის გთხოვთ გამოიყენოთ სრიალის ზოლი ან '%PAGEDOWN' ღილაკი ამ დიალოგში."
-#. RB$j
#: resource.src
msgctxt ""
"resource.src\n"
@@ -197,7 +178,6 @@ msgctxt ""
msgid "Scroll Down"
msgstr "ჩამოსრიალება"
-#. U}jG
#: resource.src
msgctxt ""
"resource.src\n"
@@ -207,7 +187,6 @@ msgctxt ""
msgid "2."
msgstr "2."
-#. FEdQ
#: resource.src
msgctxt ""
"resource.src\n"
@@ -217,7 +196,6 @@ msgctxt ""
msgid "Accept the License Agreement."
msgstr "თანხმობა სალიცენზიო შეთანხმებაზე."
-#. R_iD
#: resource.src
msgctxt ""
"resource.src\n"
@@ -227,7 +205,6 @@ msgctxt ""
msgid "~Accept"
msgstr "~თანხმობა"
-#. j~Je
#: resource.src
msgctxt ""
"resource.src\n"
@@ -237,7 +214,6 @@ msgctxt ""
msgid "Decline"
msgstr "უარყოფა"
-#. V{V{
#: resource.src
msgctxt ""
"resource.src\n"
@@ -246,7 +222,6 @@ msgctxt ""
msgid "License Agreement"
msgstr "სალიცენზიო შეთანხმება"
-#. WzdP
#: resource.src
msgctxt ""
"resource.src\n"
@@ -255,7 +230,6 @@ msgctxt ""
msgid "Retry"
msgstr "თავიდან ცდა"
-#. 7aH6
#: resource.src
msgctxt ""
"resource.src\n"
@@ -278,7 +252,6 @@ msgstr ""
"თავისუფალი სივრცის დამატების შემდეგ დააწკაპუნეთ 'ხელახალი ცდის' ღილაკს.\n"
"\n"
-#. kJ]/
#: resource.src
msgctxt ""
"resource.src\n"
@@ -287,7 +260,6 @@ msgctxt ""
msgid "~Reset"
msgstr "~ხელახალი კონფიგურაცია"
-#. gI|E
#: resource.src
msgctxt ""
"resource.src\n"
@@ -298,7 +270,6 @@ msgid ""
"Please try to reinstall the application."
msgstr ""
-#. :KT~
#: resource.src
msgctxt ""
"resource.src\n"
@@ -309,7 +280,6 @@ msgid ""
"Please try to remove your user profile for the application."
msgstr ""
-#. %iT9
#: resource.src
msgctxt ""
"resource.src\n"
@@ -320,7 +290,6 @@ msgid ""
"Please try to remove your user profile for the application first or try to reinstall the application."
msgstr ""
-#. tgC]
#: resource.src
#, fuzzy
msgctxt ""
@@ -338,7 +307,6 @@ msgstr ""
"#-#-#-#-# xsltdialog.po (PACKAGE VERSION) #-#-#-#-#\n"
"უათაურო"
-#. ^E1@
#: resource.src
msgctxt ""
"resource.src\n"
@@ -347,7 +315,6 @@ msgctxt ""
msgid "Multiple Languages"
msgstr ""
-#. y-I{
#: resource.src
msgctxt ""
"resource.src\n"
@@ -356,7 +323,6 @@ msgctxt ""
msgid "None (Do not check spelling)"
msgstr ""
-#. J)Ua
#: resource.src
msgctxt ""
"resource.src\n"
@@ -365,7 +331,6 @@ msgctxt ""
msgid "Reset to Default Language"
msgstr ""
-#. L=+w
#: resource.src
msgctxt ""
"resource.src\n"
@@ -374,7 +339,6 @@ msgctxt ""
msgid "More..."
msgstr "დამატებით..."
-#. \Q`Z
#: resource.src
msgctxt ""
"resource.src\n"
@@ -383,7 +347,6 @@ msgctxt ""
msgid "Set Language for Selection"
msgstr ""
-#. @?yf
#: resource.src
msgctxt ""
"resource.src\n"
@@ -392,7 +355,6 @@ msgctxt ""
msgid "Set Language for Paragraph"
msgstr ""
-#. YA!N
#: resource.src
msgctxt ""
"resource.src\n"
diff --git a/source/ka/framework/source/services.po b/source/ka/framework/source/services.po
index fda42dac623..b70186e6664 100644
--- a/source/ka/framework/source/services.po
+++ b/source/ka/framework/source/services.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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:14+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. v1C5
#: fwk_services.src
#, fuzzy
msgctxt ""
@@ -26,7 +25,6 @@ msgctxt ""
msgid "Create a new document"
msgstr "ა~ხალი დოკუმენტის შექმნა"
-#. ]WRA
#: fwk_services.src
#, fuzzy
msgctxt ""
@@ -37,7 +35,6 @@ msgctxt ""
msgid "~Templates..."
msgstr "შ~აბლონები"
-#. 28zC
#: fwk_services.src
msgctxt ""
"fwk_services.src\n"
@@ -47,7 +44,6 @@ msgctxt ""
msgid "~Open..."
msgstr "~გახსნა..."
-#. 4bp*
#: fwk_services.src
msgctxt ""
"fwk_services.src\n"
@@ -57,7 +53,6 @@ msgctxt ""
msgid "Add new features to %PRODUCTNAME"
msgstr ""
-#. !BQ^
#: fwk_services.src
msgctxt ""
"fwk_services.src\n"
@@ -67,7 +62,6 @@ msgctxt ""
msgid "Get more information about %PRODUCTNAME"
msgstr ""
-#. #_21
#: fwk_services.src
msgctxt ""
"fwk_services.src\n"
diff --git a/source/ka/helpcontent2/source/auxiliary.po b/source/ka/helpcontent2/source/auxiliary.po
new file mode 100644
index 00000000000..bb0d38bc2b4
--- /dev/null
+++ b/source/ka/helpcontent2/source/auxiliary.po
@@ -0,0 +1,831 @@
+#. extracted from helpcontent2/source/auxiliary
+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-11-30 12:18+0100\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: ka\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"
+
+#: sbasic.tree
+msgctxt ""
+"sbasic.tree\n"
+"07\n"
+"help_section.text"
+msgid "Macros and Programming"
+msgstr ""
+
+#: sbasic.tree
+msgctxt ""
+"sbasic.tree\n"
+"0701\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sbasic.tree
+msgctxt ""
+"sbasic.tree\n"
+"0702\n"
+"node.text"
+msgid "Command Reference"
+msgstr ""
+
+#: sbasic.tree
+msgctxt ""
+"sbasic.tree\n"
+"070202\n"
+"node.text"
+msgid "Run-Time Functions, Statements, and Operators"
+msgstr ""
+
+#: sbasic.tree
+msgctxt ""
+"sbasic.tree\n"
+"070201\n"
+"node.text"
+msgid "Alphabetic List of Functions, Statements, and Operators"
+msgstr ""
+
+#: sbasic.tree
+msgctxt ""
+"sbasic.tree\n"
+"0703\n"
+"node.text"
+msgid "Guides"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"04\n"
+"help_section.text"
+msgid "Presentations and Drawings"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0401\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0402\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"040201\n"
+"node.text"
+msgid "Presentations (%PRODUCTNAME Impress)"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"04020101\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"04020102\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"040202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"04020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"04020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0403\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0404\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0405\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0406\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0407\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0408\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0409\n"
+"node.text"
+msgid "Text in Presentations and Drawings"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0410\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
+#: schart.tree
+msgctxt ""
+"schart.tree\n"
+"05\n"
+"help_section.text"
+msgid "Charts and Diagrams"
+msgstr ""
+
+#: schart.tree
+msgctxt ""
+"schart.tree\n"
+"0501\n"
+"node.text"
+msgid "General Information"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"02\n"
+"help_section.text"
+msgid "Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0201\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0202\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0203\n"
+"node.text"
+msgid "Creating Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0204\n"
+"node.text"
+msgid "Graphics in Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0205\n"
+"node.text"
+msgid "Tables in Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0206\n"
+"node.text"
+msgid "Objects in Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0207\n"
+"node.text"
+msgid "Sections and Frames in Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0208\n"
+"node.text"
+msgid "Tables of Contents and Indexes"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0209\n"
+"node.text"
+msgid "Fields in Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0210\n"
+"node.text"
+msgid "Navigating Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0211\n"
+"node.text"
+msgid "Calculating in Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0212\n"
+"node.text"
+msgid "Formatting Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"021201\n"
+"node.text"
+msgid "Templates and Styles"
+msgstr ""
+
+#: swriter.tree
+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"
+"01\n"
+"help_section.text"
+msgid "Installation"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"10\n"
+"help_section.text"
+msgid "Common Help Topics"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1001\n"
+"node.text"
+msgid "General Information"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1002\n"
+"node.text"
+msgid "%PRODUCTNAME and Microsoft Office"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1004\n"
+"node.text"
+msgid "%PRODUCTNAME Options"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1005\n"
+"node.text"
+msgid "Wizards"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"100501\n"
+"node.text"
+msgid "Letter Wizard"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"100502\n"
+"node.text"
+msgid "Fax Wizard"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"100504\n"
+"node.text"
+msgid "Agenda Wizard"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"100505\n"
+"node.text"
+msgid "Presentation Wizard"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"100506\n"
+"node.text"
+msgid "HTML Export Wizard"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"100510\n"
+"node.text"
+msgid "Document Converter Wizard"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1006\n"
+"node.text"
+msgid "Configuring %PRODUCTNAME"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1007\n"
+"node.text"
+msgid "Working with the User Interface"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1008\n"
+"node.text"
+msgid "Printing, Faxing, Sending"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1009\n"
+"node.text"
+msgid "Drag & Drop"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1010\n"
+"node.text"
+msgid "Copy and Paste"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1012\n"
+"node.text"
+msgid "Charts and Diagrams"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1013\n"
+"node.text"
+msgid "Load, Save, Import, Export"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1014\n"
+"node.text"
+msgid "Links and References"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1015\n"
+"node.text"
+msgid "Document Version Tracking"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1016\n"
+"node.text"
+msgid "Labels and Business Cards"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1018\n"
+"node.text"
+msgid "Inserting External Data"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1019\n"
+"node.text"
+msgid "Automatic Functions"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1020\n"
+"node.text"
+msgid "Searching and Replacing"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1021\n"
+"node.text"
+msgid "Guides"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"09\n"
+"help_section.text"
+msgid "Database Functionality"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"0901\n"
+"node.text"
+msgid "General Information"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"08\n"
+"help_section.text"
+msgid "Spreadsheets"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0801\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0802\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"080201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"080202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0803\n"
+"node.text"
+msgid "Functions Types and Operators"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0804\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0805\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0806\n"
+"node.text"
+msgid "Filtering and Sorting"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0807\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0808\n"
+"node.text"
+msgid "Data Ranges"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0809\n"
+"node.text"
+msgid "Pivot Table"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0810\n"
+"node.text"
+msgid "Scenarios"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0811\n"
+"node.text"
+msgid "References"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0812\n"
+"node.text"
+msgid "Viewing, Selecting, Copying"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0813\n"
+"node.text"
+msgid "Formulas and Calculations"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0814\n"
+"node.text"
+msgid "Protection"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0815\n"
+"node.text"
+msgid "Miscellaneous"
+msgstr ""
diff --git a/source/ka/helpcontent2/source/text/sbasic/guide.po b/source/ka/helpcontent2/source/text/sbasic/guide.po
index 32c957b4a04..9c0442f1c5f 100644
--- a/source/ka/helpcontent2/source/text/sbasic/guide.po
+++ b/source/ka/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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:51+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. lyK]
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Creating a Basic Dialog"
msgstr "ძირითადი დიალოგის შექმნა"
-#. 5QGj
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "<bookmark_value>dialogs;creating Basic dialogs</bookmark_value>"
msgstr ""
-#. 7/Gq
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -43,7 +40,6 @@ msgctxt ""
msgid "<variable id=\"create_dialog\"><link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Creating a Basic Dialog\">Creating a Basic Dialog</link></variable>"
msgstr ""
-#. I[pj
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "Choose <emph>Tools - Macros - Organize Dialogs</emph>, and then click <emph>New</emph>."
msgstr ""
-#. i4iR
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "Enter a name for the dialog, and click OK. To rename the dialog later, right-click the name on the tab, and choose <emph>Rename</emph>."
msgstr ""
-#. g4sC
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -72,7 +66,6 @@ msgctxt ""
msgid "Click <emph>Edit</emph>. The Basic dialog editor opens and contains a blank dialog."
msgstr ""
-#. G]H:
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -82,7 +75,6 @@ msgctxt ""
msgid "If you do not see the <emph>Toolbox</emph> bar, click the arrow next to the <emph>Insert Controls </emph>icon to open the <emph>Toolbox</emph> bar."
msgstr "თუ ვერ ხედავთ <emph>ხელსაწყოების</emph> პანელს, დააწკაპუნეთ <emph>საკონტროლო ელემენტების ჩამატების</emph> ხატულას გვერდით ისარს <emph>ხელსაწყოების ზოლის</emph> გასახსნელად."
-#. R#P.
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -92,7 +84,6 @@ msgctxt ""
msgid "Click a tool and then drag in the dialog to create the control."
msgstr "კონტროლის შესაქმნელად დააწკაპუნე ხელსაწყოზე და შემდეგ გადაათრიე დიალოგში."
-#. pa$)
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -101,7 +92,6 @@ msgctxt ""
msgid "Creating Controls in the Dialog Editor"
msgstr "დიალოგის რედაქტორში საკონტროლო ელემენტების შექმნა"
-#. =H+1
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -110,7 +100,6 @@ msgctxt ""
msgid "<bookmark_value>controls; creating in the dialog editor</bookmark_value><bookmark_value>dialog editor;creating controls</bookmark_value>"
msgstr ""
-#. Z:9c
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -120,7 +109,6 @@ msgctxt ""
msgid "<variable id=\"insert_control\"><link href=\"text/sbasic/guide/insert_control.xhp\" name=\"Creating Controls in the Dialog Editor\">Creating Controls in the Dialog Editor</link></variable>"
msgstr "<variable id=\"insert_control\"><link href=\"text/sbasic/guide/insert_control.xhp\" name=\"Creating Controls in the Dialog Editor\">დიალოგის რედაქტორში საკონტროლო ელემენტების შექმნა</link></variable>"
-#. b]H\
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -130,7 +118,6 @@ msgctxt ""
msgid "Use the tools on the <emph>Toolbox </emph>of the BASIC dialog editor to add controls to your dialog."
msgstr ""
-#. (q+q
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -140,7 +127,6 @@ msgctxt ""
msgid "To open the <emph>Toolbox</emph>, click the arrow next to the <emph>Insert Controls</emph> icon on the <emph>Macro</emph> toolbar."
msgstr "თუ ვერ ხედავთ <emph>ხელსაწყოების</emph> პანელს, დააწკაპუნეთ <emph>საკონტროლო ელემენტების ჩამატების</emph> ხატულას გვერდით ისარს <emph>ხელსაწყოების ზოლის</emph> გასახსნელად."
-#. CTqE
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -150,7 +136,6 @@ msgctxt ""
msgid "Click a tool on the toolbar, for example, <emph>Button</emph>."
msgstr "დააწკაპუნეთ ხელსაწყოზე ინსტრუმენტების ზოლში, მაგალითად <emph>ღილაკი</emph>."
-#. Z$eA
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -160,7 +145,6 @@ msgctxt ""
msgid "On the dialog, drag the button to the size you want."
msgstr "დიალოგში გადაათრიეთ ღილაკი სასურველ ზომაზე."
-#. :3jB
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -169,7 +153,6 @@ msgctxt ""
msgid "Programming Examples for Controls in the Dialog Editor"
msgstr "დიალოგის რედაქტორის საკონტროლო ელემენტების პროგრამირების მაგალითები"
-#. 4OU5
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -178,7 +161,6 @@ msgctxt ""
msgid "<bookmark_value>programming examples for controls</bookmark_value><bookmark_value>dialogs;loading (example)</bookmark_value><bookmark_value>dialogs;displaying (example)</bookmark_value><bookmark_value>controls;reading or editing properties (example)</bookmark_value><bookmark_value>list boxes;removing entries from (example)</bookmark_value><bookmark_value>list boxes;adding entries to (example)</bookmark_value><bookmark_value>examples; programming controls</bookmark_value><bookmark_value>dialog editor;programming examples for controls</bookmark_value>"
msgstr ""
-#. ,1-3
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -188,7 +170,6 @@ msgctxt ""
msgid "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programming Examples for Controls in the Dialog Editor\">Programming Examples for Controls in the Dialog Editor</link></variable>"
msgstr "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programming Examples for Controls in the Dialog Editor\">დიალოგის რედაქტორის საკონტროლო ელემენტების პროგრამირების მაგალითები</link></variable>"
-#. gNsl
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -198,7 +179,6 @@ msgctxt ""
msgid "The following examples are for a new <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"dialog\">dialog</link> called \"Dialog1\". Use the tools on the <emph>Toolbox</emph> bar in the dialog editor to create the dialog and add the following controls: a <emph>Check Box</emph> called \"CheckBox1\", a <emph>Label Field</emph> called \"Label1\", a <emph>Button</emph> called \"CommandButton1\", and a <emph>List Box</emph> called \"ListBox1\"."
msgstr ""
-#. @VQ#
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -208,7 +188,6 @@ msgctxt ""
msgid "Be consistent with uppercase and lowercase letter when you attach a control to an object variable."
msgstr "ყურადღებით იყავით მთავრულ და ქვედა რეგისტრის ასოებთან როცა აბავთ საკონტროლო ელემენტებს ობიექტის ცვლადებს."
-#. ;Zv/
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -218,7 +197,6 @@ msgctxt ""
msgid "Global Function for Loading Dialogs"
msgstr "ჩატვირთვის დიალოგების გლობალური ფუნქციები"
-#. $.c[
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -228,7 +206,6 @@ msgctxt ""
msgid "Displaying a Dialog"
msgstr "დიალოგის ჩვენება"
-#. o@5@
#: sample_code.xhp
#, fuzzy
msgctxt ""
@@ -238,7 +215,6 @@ msgctxt ""
msgid "REM global definition of variables"
msgstr "rem ცვლადების გლობალური განსაზღვრა"
-#. r0wJ
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -248,7 +224,6 @@ msgctxt ""
msgid "Read or Edit Properties of Controls in the Program"
msgstr "პროგრამაში საკონტროლო ელემენტების წაკითხვა ან რედაქტირება"
-#. ]6.1
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -257,7 +232,6 @@ msgctxt ""
msgid "REM get dialog model"
msgstr "REM დიალოგის მოდელის მიღება"
-#. [noW
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -266,7 +240,6 @@ msgctxt ""
msgid "REM display text of Label1"
msgstr "REM Label1-ის ტექსტის ჩვენება"
-#. I:c%
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -275,7 +248,6 @@ msgctxt ""
msgid "REM set new text for control Label1"
msgstr "REM Label1 კონტროლისთვის ახალი ტექსტის შექმნა"
-#. ^f!;
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -284,7 +256,6 @@ msgctxt ""
msgid "oLabel1.Text = \"New Files\""
msgstr "oLabel1.Text = \"New Files\""
-#. j+5q
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -293,7 +264,6 @@ msgctxt ""
msgid "REM display model properties for the control CheckBox1"
msgstr "REM CheckBox1 კონტროლის მოდელის თვისებების ჩვენება"
-#. 0K/R
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -302,7 +272,6 @@ msgctxt ""
msgid "REM set new state for CheckBox1 for model of control"
msgstr "REM CheckBox1 კონტროლის მოდელისათვის ახალი მდგომარეობის მინიჭება"
-#. t-.)
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -311,7 +280,6 @@ msgctxt ""
msgid "REM display model properties for control CommandButton1"
msgstr "REM CommandButton1 კონტროლის მოდელის თვისებების ჩვენება"
-#. MW#z
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -320,7 +288,6 @@ msgctxt ""
msgid "REM display properties of control CommandButton1"
msgstr "REM CommandButton1 კონტროლის თვისებების ჩვენება"
-#. #1@t
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -329,7 +296,6 @@ msgctxt ""
msgid "REM execute dialog"
msgstr "REM დიალოგის გაშვება"
-#. SQ;/
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -338,7 +304,6 @@ msgctxt ""
msgid "End Sub"
msgstr ""
-#. oZMn
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -348,7 +313,6 @@ msgctxt ""
msgid "Add an Entry to a ListBox"
msgstr "სიის ველში ჩანაწერის დამატება"
-#. NVlH
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -357,7 +321,6 @@ msgctxt ""
msgid "REM adds a new entry to the ListBox"
msgstr "REM დაამატე ახალი ჩანაწერი ListBox-ში"
-#. !R)S
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -366,7 +329,6 @@ msgctxt ""
msgid "oListbox.additem(\"New Item\" & iCount,0)"
msgstr "oListbox.additem(\"New Item\" & iCount,0)"
-#. []3y
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -376,7 +338,6 @@ msgctxt ""
msgid "Remove an Entry from a ListBox"
msgstr "მოაშორე ჩანაწერი ListBox-დან"
-#. W\?P
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -385,7 +346,6 @@ msgctxt ""
msgid "REM remove the first entry from the ListBox"
msgstr "REM მოაშორე პირველი ჩანაწერი ListBox-დან"
-#. T)mS
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -394,7 +354,6 @@ msgctxt ""
msgid "Changing the Properties of Controls in the Dialog Editor"
msgstr "დიალოგის რედაქტორის საკონტროლო ელემენტების თვისებების ცვლილება"
-#. ?XnX
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -403,7 +362,6 @@ msgctxt ""
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 ""
-#. r0LQ
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -413,7 +371,6 @@ msgctxt ""
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 ""
-#. mlL^
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -423,7 +380,6 @@ msgctxt ""
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 ""
-#. YrC3
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -433,7 +389,6 @@ msgctxt ""
msgid "To change the properties of a control in design mode, right-click the control, and then choose <emph>Properties</emph>."
msgstr ""
-#. 6c:g
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -442,7 +397,6 @@ msgctxt ""
msgid "Translation of Controls in the Dialog Editor"
msgstr "დიალოგის რედაქტორში საკონტროლო ელემენტების შექმნა"
-#. I%m*
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -451,7 +405,6 @@ msgctxt ""
msgid "<bookmark_value>dialogs;translating</bookmark_value><bookmark_value>localizing dialogs</bookmark_value><bookmark_value>translating dialogs</bookmark_value>"
msgstr ""
-#. Zv\6
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -460,7 +413,6 @@ msgctxt ""
msgid "<variable id=\"translation\"><link href=\"text/sbasic/guide/translation.xhp\">Translation of Controls in the Dialog Editor</link></variable>"
msgstr ""
-#. ]%ki
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -469,7 +421,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">The Language toolbar in the Basic IDE dialog editor shows controls to enable and manage localizable dialogs.</ahelp>"
msgstr ""
-#. w39E
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -478,7 +429,6 @@ msgctxt ""
msgid "By default, any dialog that you create only contains string resources for one language. You may want to create dialogs that automatically show localized strings according to the user's language settings."
msgstr ""
-#. HsTg
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -487,7 +437,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the language for the strings that you want to edit. Click the Manage Languages icon to add languages.</ahelp>"
msgstr ""
-#. k_)8
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -496,7 +445,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click a language, then click Default to set the language as default, or click Delete to remove the language from the list.</ahelp>"
msgstr ""
-#. `vfU
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -505,7 +453,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog where you can add a language to the list.</ahelp>"
msgstr ""
-#. |z,=
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -514,7 +461,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a language in the list and click Delete to remove that language. When you remove all languages, the string resources for localizable dialogs are removed from all dialogs in the current library.</ahelp>"
msgstr ""
-#. trE)
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -523,7 +469,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a language in the list and click Default to set the language as default language.</ahelp>"
msgstr ""
-#. :o/z
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -532,7 +477,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">The default language will be used as a source for all other language strings.</ahelp>"
msgstr ""
-#. lOW%
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -541,7 +485,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Add UI languages for your dialog strings.</ahelp>"
msgstr ""
-#. [+~9
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -550,7 +493,6 @@ msgctxt ""
msgid "To enable localizable dialogs"
msgstr ""
-#. 4GEp
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -559,7 +501,6 @@ msgctxt ""
msgid "In the Basic IDE dialog editor, open the Language toolbar choosing <item type=\"menuitem\">View - Toolbars - Language</item>."
msgstr ""
-#. x)fS
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -568,7 +509,6 @@ msgctxt ""
msgid "If the current library already contains a localizable dialog, the Language toolbar is shown automatically."
msgstr ""
-#. P?77
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -577,7 +517,6 @@ msgctxt ""
msgid "Click the <emph>Manage Languages</emph> icon <image id=\"img_id2526017\" src=\"cmd/sc_managelanguage.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2526017\">Manage Language icon</alt></image> on the Language toolbar or on the Toolbox bar."
msgstr ""
-#. GIYx
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -586,7 +525,6 @@ msgctxt ""
msgid "You see the Manage User Interface Language dialog. The dialog manages languages for the current library. The name of the current library is shown on the title bar."
msgstr ""
-#. b]RP
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -595,7 +533,6 @@ msgctxt ""
msgid "Click Add in the dialog to add a language entry."
msgstr ""
-#. )oH3
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -604,7 +541,6 @@ msgctxt ""
msgid "This step enables all new dialogs to contain localizable string resources."
msgstr ""
-#. CrnQ
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -613,7 +549,6 @@ msgctxt ""
msgid "The first time you click Add, you see the Set Default User Interface Language dialog. The following times you click Add, this dialog has the name Add User Interface Language."
msgstr ""
-#. D-0^
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -622,7 +557,6 @@ msgctxt ""
msgid "You can also change the default language in the Manage User Interface Language dialog."
msgstr ""
-#. +NiO
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -631,7 +565,6 @@ msgctxt ""
msgid "Select a language."
msgstr ""
-#. 0X5h
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -640,7 +573,6 @@ msgctxt ""
msgid "This adds string resources to contain the translated versions of all strings to the dialog properties. The set of dialog strings of the default language is copied to the new set of strings. Later, you can switch to the new language and then translate the strings."
msgstr ""
-#. Ks?r
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -649,7 +581,6 @@ msgctxt ""
msgid "Close the dialog or add additional languages."
msgstr ""
-#. +}jW
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -658,7 +589,6 @@ msgctxt ""
msgid "To edit localizable controls in your dialog"
msgstr ""
-#. [%BK
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -667,7 +597,6 @@ msgctxt ""
msgid "Once you have added the resources for localizable strings in your dialogs, you can select the current language from the Current Language listbox on the Language toolbar."
msgstr ""
-#. A%({
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -676,7 +605,6 @@ msgctxt ""
msgid "Switch the Current Language listbox to display the default language."
msgstr ""
-#. *][@
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -685,7 +613,6 @@ msgctxt ""
msgid "Insert any number of controls to your dialog and enter all strings you want."
msgstr ""
-#. NwKw
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -694,7 +621,6 @@ msgctxt ""
msgid "Select another language in the Current Language listbox."
msgstr ""
-#. 6c@g
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -703,7 +629,6 @@ msgctxt ""
msgid "Using the control's property dialogs, edit all strings to the other language."
msgstr ""
-#. pm!y
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -712,7 +637,6 @@ msgctxt ""
msgid "Repeat for all languages that you added."
msgstr ""
-#. )W13
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -721,7 +645,6 @@ msgctxt ""
msgid "The user of your dialog will see the strings of the user interface language of the user's version of %PRODUCTNAME, if you did provide strings in that language."
msgstr ""
-#. !aKh
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -730,7 +653,6 @@ msgctxt ""
msgid "If no language matches the user's version, the user will see the default language strings."
msgstr ""
-#. TADC
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -739,7 +661,6 @@ msgctxt ""
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 ""
-#. lK5B
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
@@ -748,7 +669,6 @@ msgctxt ""
msgid "Opening a Dialog With Program Code"
msgstr "დიალოგის გახსნა პროგრამული კოდით"
-#. %+,9
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
@@ -757,7 +677,6 @@ msgctxt ""
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 ""
-#. Z#rJ
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
@@ -767,7 +686,6 @@ msgctxt ""
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 ""
-#. 9W_=
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
@@ -777,7 +695,6 @@ msgctxt ""
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 ""
-#. m$G5
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
@@ -787,7 +704,6 @@ msgctxt ""
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 ""
-#. .gr9
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
@@ -797,7 +713,6 @@ msgctxt ""
msgid "Without using \"LoadDialog\" you can call the code as follows:"
msgstr "\"LoadDialog\"-ის გამოყენების გარეშე თქვენ შეგიძლიათ გამოიძახოთ კოდი შემდეგნაირად:"
-#. 9mG;
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
diff --git a/source/ka/helpcontent2/source/text/sbasic/shared.po b/source/ka/helpcontent2/source/text/sbasic/shared.po
index 0573b24ceb8..a8f82bceea0 100644
--- a/source/ka/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ka/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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-07-28 12:40+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. .7pA
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "General"
msgstr "მთავარი"
-#. XWZl
#: 01170101.xhp
#, fuzzy
msgctxt ""
@@ -35,7 +33,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/01170101.xhp\" name=\"General\">General</link>"
msgstr "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"მაკრო\">მაკრო</link>"
-#. 5vRd
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Define the properties for the selected control or dialog. The available properties depend on the type of control selected. The following properties therefore are not available for every type of control."
msgstr ""
-#. c$Bu
#: 01170101.xhp
#, fuzzy
msgctxt ""
@@ -56,7 +52,6 @@ msgctxt ""
msgid "Alignment"
msgstr "#-#-#-#-# optionen.po (PACKAGE VERSION) #-#-#-#-#\\nგასწორება\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nგასწორება\\n#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\nგანლაგება"
-#. O@L;
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -66,7 +61,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_PROP_IMAGE_ALIGN\">Specify the alignment option for the selected control.</ahelp>"
msgstr ""
-#. |T2L
#: 01170101.xhp
#, fuzzy
msgctxt ""
@@ -77,7 +71,6 @@ msgctxt ""
msgid "AutoFill"
msgstr "#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\\nავტომატური შევსება\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nავტოშევსება"
-#. rkR3
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -87,7 +80,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to enable the AutoFill function for the selected control. </ahelp>"
msgstr ""
-#. ZYQm
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -97,7 +89,6 @@ msgctxt ""
msgid "Background color"
msgstr "ფონის ფერი"
-#. ^Q2u
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -107,7 +98,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the background color for the current control.</ahelp>"
msgstr ""
-#. D;jl
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -117,7 +107,6 @@ msgctxt ""
msgid "Large change"
msgstr ""
-#. Fl}t
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -127,7 +116,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the number of units to scroll when a user clicks in the area between the slider and the arrows on a scrollbar.</ahelp>"
msgstr ""
-#. kCE$
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -137,7 +125,6 @@ msgctxt ""
msgid "Border"
msgstr ""
-#. %2RN
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -147,7 +134,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the border type for the current control.</ahelp>"
msgstr ""
-#. wCm5
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -157,7 +143,6 @@ msgctxt ""
msgid "Button type"
msgstr ""
-#. ybwY
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -167,7 +152,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select a button type. Button types determine what type of action is initiated.</ahelp>"
msgstr ""
-#. ,G\Z
#: 01170101.xhp
#, fuzzy
msgctxt ""
@@ -178,7 +162,6 @@ msgctxt ""
msgid "Character set"
msgstr "#-#-#-#-# database.po (PACKAGE VERSION) #-#-#-#-#\\nსიმბოლოთა წყება\\n#-#-#-#-# optionen.po (PACKAGE VERSION) #-#-#-#-#\\nსიმბოლოს მინიჭება"
-#. 4h]P
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -188,7 +171,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select the font to be used for displaying the contents of the current control.</ahelp>"
msgstr ""
-#. pQC6
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -198,7 +180,6 @@ msgctxt ""
msgid "Currency symbol"
msgstr ""
-#. 7ySZ
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -208,7 +189,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enter the currency symbol to be used for currency controls.</ahelp>"
msgstr ""
-#. n7=T
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -217,7 +197,6 @@ msgctxt ""
msgid "Date"
msgstr ""
-#. Ca`/
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -226,7 +205,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the default date to be shown in the Date control.</ahelp>"
msgstr ""
-#. LTEm
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -236,7 +214,6 @@ msgctxt ""
msgid "Date format"
msgstr "თარიღის ფორმატი"
-#. /;J9
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -246,7 +223,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the desired format for a date control. A date control interprets the user input depending on this format setting.</ahelp>"
msgstr ""
-#. 9BJ[
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -256,7 +232,6 @@ msgctxt ""
msgid "Date max."
msgstr ""
-#. RcPV
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -266,7 +241,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the upper limit for a date control.</ahelp>"
msgstr ""
-#. }`dD
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -276,7 +250,6 @@ msgctxt ""
msgid "Date min."
msgstr ""
-#. ~Zl=
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -286,7 +259,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the lower limit for a date control.</ahelp>"
msgstr ""
-#. `dgE
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -296,7 +268,6 @@ msgctxt ""
msgid "Decimal accuracy"
msgstr ""
-#. 3|+-
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -306,7 +277,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the number of decimal places displayed for a numerical or currency control.</ahelp>"
msgstr ""
-#. C4CH
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -316,7 +286,6 @@ msgctxt ""
msgid "Default button"
msgstr ""
-#. G,NM
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -326,7 +295,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to make the current button control the default selection. Pressing <emph>Return</emph> in the dialog activates the default button.</ahelp>"
msgstr ""
-#. 1;cZ
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -335,7 +303,6 @@ msgctxt ""
msgid "Delay"
msgstr ""
-#. #bM1
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -344,7 +311,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies the delay in milliseconds between scrollbar trigger events.</ahelp> A trigger event occurs when you click a scrollbar arrow or click the background area in a scrollbar. Repeated trigger events occur if you keep the mouse button pressed when you click a scrollbar arrow or background area in a scrollbar. If you want, you can include valid time units with the number that you enter, for example, 2 s or 500 ms."
msgstr ""
-#. MCW+
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -354,7 +320,6 @@ msgctxt ""
msgid "Dropdown"
msgstr "ჩამოშლა"
-#. @^hH
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -364,7 +329,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to enable the dropdown option for list or combo box controls. A dropdown control field has an arrow button which you can click to open a list of the existing form entries.</ahelp>"
msgstr ""
-#. dYO.
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -374,7 +338,6 @@ msgctxt ""
msgid "Enabled"
msgstr "აქტივირებული"
-#. Uk81
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -384,7 +347,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to enable the control. If the control is disabled, it is grayed out in the dialog.</ahelp>"
msgstr ""
-#. c#Ib
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -394,7 +356,6 @@ msgctxt ""
msgid "Edit mask"
msgstr "რედაქტირების ნიღაბი"
-#. .{W?
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -404,7 +365,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the edit mask for a pattern control. This is a character code that defines the input format for the control.</ahelp>"
msgstr ""
-#. 35~5
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -414,7 +374,6 @@ msgctxt ""
msgid "You need to specify a masking character for each input character of the edit mask to restrict the input to the values that are listed in the following table:"
msgstr ""
-#. G*#j
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -424,7 +383,6 @@ msgctxt ""
msgid "Character"
msgstr "სიმბოლო"
-#. `]CP
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -434,7 +392,6 @@ msgctxt ""
msgid "Meaning"
msgstr "მნიშვნელობა"
-#. v:x(
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -444,7 +401,6 @@ msgctxt ""
msgid "L"
msgstr "L"
-#. MYiQ
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -454,7 +410,6 @@ msgctxt ""
msgid "A text constant. This character cannot be modified by the user."
msgstr ""
-#. Q`?z
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -464,7 +419,6 @@ msgctxt ""
msgid "a"
msgstr "a"
-#. %__%
#: 01170101.xhp
#, fuzzy
msgctxt ""
@@ -475,7 +429,6 @@ msgctxt ""
msgid "The characters a-z can be entered here. If a capital letter is entered, it is automatically converted to a lowercase letter."
msgstr "შესაძლებელია ყველა ბეჭდვადი სიმბოლოს შეყვანა. პატარა ასოს შეყვანისას იგი ავტომატურად გარდაიქმნება მთავრულ ასოდ."
-#. (skl
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -485,7 +438,6 @@ msgctxt ""
msgid "A"
msgstr "A"
-#. O\iW
#: 01170101.xhp
#, fuzzy
msgctxt ""
@@ -496,7 +448,6 @@ msgctxt ""
msgid "The characters A-Z can be entered here. If a lowercase letter is entered, it is automatically converted to a capital letter"
msgstr "შესაძლებელია ყველა ბეჭდვადი სიმბოლოს შეყვანა. პატარა ასოს შეყვანისას იგი ავტომატურად გარდაიქმნება მთავრულ ასოდ."
-#. ^eoK
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -506,7 +457,6 @@ msgctxt ""
msgid "c"
msgstr "c"
-#. dUKL
#: 01170101.xhp
#, fuzzy
msgctxt ""
@@ -517,7 +467,6 @@ msgctxt ""
msgid "The characters a-z and 0-9 can be entered here. If a capital letter is entered, it is automatically converted to a lowercase letter."
msgstr "შესაძლებელია ყველა ბეჭდვადი სიმბოლოს შეყვანა. პატარა ასოს შეყვანისას იგი ავტომატურად გარდაიქმნება მთავრულ ასოდ."
-#. O.$_
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -527,7 +476,6 @@ msgctxt ""
msgid "C"
msgstr "C"
-#. 3gnh
#: 01170101.xhp
#, fuzzy
msgctxt ""
@@ -538,7 +486,6 @@ msgctxt ""
msgid "The characters a-z and 0-9 can be entered here. If a lowercase letter is entered, it is automatically converted to a capital letter"
msgstr "შესაძლებელია ყველა ბეჭდვადი სიმბოლოს შეყვანა. პატარა ასოს შეყვანისას იგი ავტომატურად გარდაიქმნება მთავრულ ასოდ."
-#. =Bz.
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -548,7 +495,6 @@ msgctxt ""
msgid "N"
msgstr "N"
-#. U@jb
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -558,7 +504,6 @@ msgctxt ""
msgid "Only the characters 0-9 can be entered."
msgstr "შესაძლებელია მხოლოდ 0-9 სიმბოლოების შეყვანა."
-#. w`$|
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -568,7 +513,6 @@ msgctxt ""
msgid "x"
msgstr ""
-#. 0/%P
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -578,7 +522,6 @@ msgctxt ""
msgid "All printable characters can be entered."
msgstr "შესაძლებელია ყველა ბეჭდვადი სიმბოლოს შეყვანა."
-#. KT/f
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -588,7 +531,6 @@ msgctxt ""
msgid "X"
msgstr "X"
-#. aR(m
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -598,7 +540,6 @@ msgctxt ""
msgid "All printable characters can be entered. If a lowercase letter is used, it is automatically converted to a capital letter."
msgstr "შესაძლებელია ყველა ბეჭდვადი სიმბოლოს შეყვანა. პატარა ასოს შეყვანისას იგი ავტომატურად გარდაიქმნება მთავრულ ასოდ."
-#. ^6$p
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -607,7 +548,6 @@ msgctxt ""
msgid "Editable"
msgstr ""
-#. H%KR
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -616,7 +556,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies whether the nodes of the tree control are editable.</ahelp>"
msgstr ""
-#. 4Y{A
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -625,7 +564,6 @@ msgctxt ""
msgid "The default value is FALSE."
msgstr ""
-#. /nmC
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -635,7 +573,6 @@ msgctxt ""
msgid "Graphics"
msgstr ""
-#. Ouj)
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -645,7 +582,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the source of the graphics for a button or an image control. Click \"...\" to select a file.</ahelp>"
msgstr ""
-#. M4Qq
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -655,7 +591,6 @@ msgctxt ""
msgid "Height"
msgstr ""
-#. hDlS
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -665,7 +600,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the height of the current control or the dialog.</ahelp>"
msgstr ""
-#. ibPC
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -675,7 +609,6 @@ msgctxt ""
msgid "Help text"
msgstr ""
-#. ^a##
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -685,7 +618,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enter a help text that is displayed as a tip (bubble help) when the mouse rests over the control.</ahelp>"
msgstr ""
-#. i^|d
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -695,7 +627,6 @@ msgctxt ""
msgid "Help URL"
msgstr "დახმარების URL მისამართი"
-#. eT*L
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -705,7 +636,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the help URL that is called when you press F1 while the focus is on a particular control. For example, use the format HID:1234 to call the Help-ID with the number 1234.</ahelp>"
msgstr ""
-#. xXrC
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -714,7 +644,6 @@ msgctxt ""
msgid "Set the environment variable HELP_DEBUG to 1 to view the Help-IDs as extended help tips."
msgstr ""
-#. y.\=
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -724,7 +653,6 @@ msgctxt ""
msgid "Incr./decrement value"
msgstr "ზრდადი/კლებადი მნიშვნელობა"
-#. JeK#
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -734,7 +662,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the increment and decrement interval for spin button controls.</ahelp>"
msgstr ""
-#. b@8M
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -743,7 +670,6 @@ msgctxt ""
msgid "Invokes stop mode editing"
msgstr ""
-#. $*#h
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -752,7 +678,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies what happens when editing is interrupted by selecting another node in the tree, a change in the tree's data, or by some other means.</ahelp>"
msgstr ""
-#. ms=;
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -761,7 +686,6 @@ msgctxt ""
msgid "Setting this property to TRUE causes the changes to be automatically saved when editing is interrupted. FALSE means that editing is canceled and changes are lost."
msgstr ""
-#. bZ.~
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -770,7 +694,6 @@ msgctxt ""
msgid "The default value is FALSE."
msgstr ""
-#. 5-?o
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -780,7 +703,6 @@ msgctxt ""
msgid "Label"
msgstr ""
-#. -4:w
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -790,7 +712,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies the label of the current control. The label is displayed along with the control.</ahelp>"
msgstr ""
-#. ,pBi
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -800,7 +721,6 @@ msgctxt ""
msgid "You can create multi-line <emph>labels</emph> by inserting manual line breaks in the label using <emph>Shift+Enter</emph>."
msgstr ""
-#. Ub9l
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -810,7 +730,6 @@ msgctxt ""
msgid "Line Count"
msgstr ""
-#. wv_a
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -820,7 +739,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enter the number of lines to be displayed for a list control. For combo boxes, this setting is only active if the dropdown option is enabled. </ahelp>"
msgstr ""
-#. y#FX
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -829,7 +747,6 @@ msgctxt ""
msgid "Scrollbar"
msgstr ""
-#. %IZA
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -838,7 +755,6 @@ msgctxt ""
msgid "Adds the scrollbar type that you specify to a text box."
msgstr ""
-#. Yj5D
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -848,7 +764,6 @@ msgctxt ""
msgid "Small change"
msgstr ""
-#. o#dN
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -858,7 +773,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the number of units to scroll when a user clicks an arrow on a scrollbar.</ahelp>"
msgstr ""
-#. d:a\
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -868,7 +782,6 @@ msgctxt ""
msgid "List entries"
msgstr ""
-#. $i_{
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -878,7 +791,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the entries for a list control. One line takes one list entry. Press <emph>Shift+Enter</emph> to insert a new line.</ahelp>"
msgstr ""
-#. bKmu
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -888,7 +800,6 @@ msgctxt ""
msgid "Literal mask"
msgstr ""
-#. (d(*
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -898,7 +809,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the initial values to be displayed in a pattern control. This helps the user to identify which values are allowed in a pattern control. The literal mask is restricted by the format specified by the edit mask.</ahelp>"
msgstr ""
-#. ?ft9
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -908,7 +818,6 @@ msgctxt ""
msgid "Manual line break"
msgstr ""
-#. KU5W
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -918,7 +827,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to allow manual line breaks inside multiline controls.</ahelp>"
msgstr ""
-#. -E51
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -928,7 +836,6 @@ msgctxt ""
msgid "Max. text length"
msgstr ""
-#. wc-1
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -938,7 +845,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the maximum number of characters that the user can enter.</ahelp>"
msgstr ""
-#. y9h.
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -948,7 +854,6 @@ msgctxt ""
msgid "Multiline Input"
msgstr ""
-#. gjla
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -958,7 +863,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to allow the input of multiple lines in the control. Press Enter to insert a manual line break in the control.</ahelp>"
msgstr ""
-#. GQ8#
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -968,7 +872,6 @@ msgctxt ""
msgid "Multiselection"
msgstr ""
-#. 86Q`
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -978,7 +881,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to allow the selection of multiple entries in list controls.</ahelp>"
msgstr ""
-#. 1;2b
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -988,7 +890,6 @@ msgctxt ""
msgid "Name"
msgstr "სახელი"
-#. lCVG
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -998,7 +899,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Insert a name for the current control. This name is used to identify the control.</ahelp>"
msgstr ""
-#. +]f#
#: 01170101.xhp
#, fuzzy
msgctxt ""
@@ -1009,7 +909,6 @@ msgctxt ""
msgid "Order"
msgstr "#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nბრძანება\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nრიგი"
-#. :Pd\
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1019,7 +918,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the order in which the controls receive the focus when the Tab key is pressed in the dialog.</ahelp> On entering a dialog, the control with the lowest order (0) receives the focus. Pressing the <emph>Tab</emph> key the successively focusses the other controls as specified by their order number."
msgstr ""
-#. [;q$
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1029,7 +927,6 @@ msgctxt ""
msgid "Initially, the controls receive numbers in the order they are added to the dialog. You can change the order numbers for controls. $[officename] Basic updates the order numbers automatically to avoid duplicate numbers. Controls that cannot be focused are also assigned a value but these controls are skipped when using the Tab key."
msgstr ""
-#. :GC?
#: 01170101.xhp
#, fuzzy
msgctxt ""
@@ -1040,7 +937,6 @@ msgctxt ""
msgid "Orientation"
msgstr "#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nპრეზენტაცია\\n#-#-#-#-# autopi.po (PACKAGE VERSION) #-#-#-#-#\\nორიენტაცია"
-#. D6!3
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1050,7 +946,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the orientation for a scrollbar control.</ahelp>"
msgstr ""
-#. O]U6
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1060,7 +955,6 @@ msgctxt ""
msgid "Page (step)"
msgstr ""
-#. ;UH9
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1070,7 +964,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the number of the dialog page to which the current control is assigned or the page number of the dialog you want to edit.</ahelp> If a dialog has only one page set its <emph>Page (Step)</emph> value to <emph>0</emph>."
msgstr ""
-#. :NV?
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1080,7 +973,6 @@ msgctxt ""
msgid "Select <emph>Page (Step)</emph> = 0 to make a control visible on every dialog page."
msgstr ""
-#. 7C65
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1090,7 +982,6 @@ msgctxt ""
msgid "To switch between dialog pages at run time, you need to create a macro that changes the value of <emph>Page (Step)</emph>."
msgstr ""
-#. sc@d
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1100,7 +991,6 @@ msgctxt ""
msgid "Password characters"
msgstr ""
-#. Mx4n
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1110,7 +1000,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enter a character to be displayed instead of the characters that are typed. This can be used for entering passwords in text controls.</ahelp>"
msgstr ""
-#. /OEi
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1120,7 +1009,6 @@ msgctxt ""
msgid "PositionX"
msgstr ""
-#. f]jA
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1130,7 +1018,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the distance of the current control from the left side of the dialog.</ahelp>"
msgstr ""
-#. C#UB
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1140,7 +1027,6 @@ msgctxt ""
msgid "PositionY"
msgstr ""
-#. ^ybM
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1150,7 +1036,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the distance of the current control from the top of the dialog.</ahelp>"
msgstr ""
-#. WB1z
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1160,7 +1045,6 @@ msgctxt ""
msgid "Prefix symbol"
msgstr ""
-#. t%Kc
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1170,7 +1054,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to display the currency symbol prefix in currency controls when a number was entered.</ahelp>"
msgstr ""
-#. ^gf5
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1180,7 +1063,6 @@ msgctxt ""
msgid "Print"
msgstr "ბეჭდვა"
-#. ?x=F
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1190,7 +1072,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to include the current control in a document's printout.</ahelp>"
msgstr ""
-#. H??@
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1200,7 +1081,6 @@ msgctxt ""
msgid "Progress value"
msgstr ""
-#. kmaZ
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1210,7 +1090,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify a progress value for a progress bar control.</ahelp>"
msgstr ""
-#. p9T|
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1220,7 +1099,6 @@ msgctxt ""
msgid "Progress value max."
msgstr ""
-#. F0HI
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1230,7 +1108,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the maximum value of a progress bar control.</ahelp>"
msgstr ""
-#. ##O:
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1240,7 +1117,6 @@ msgctxt ""
msgid "Progress value min."
msgstr ""
-#. E819
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1250,7 +1126,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the minimum value of a progress bar control.</ahelp>"
msgstr ""
-#. Rt:9
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1260,7 +1135,6 @@ msgctxt ""
msgid "Read-only"
msgstr ""
-#. l2Kb
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1270,7 +1144,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to prevent the user from editing the value of the current control. The control is enabled and can be focussed but not modified.</ahelp>"
msgstr ""
-#. +WTD
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1279,7 +1152,6 @@ msgctxt ""
msgid "Repeat"
msgstr "გამეორება"
-#. tWr0
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1288,7 +1160,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Repeats trigger events when you keep the mouse button pressed on a control such as a spin button.</ahelp>"
msgstr ""
-#. i|T9
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1297,7 +1168,6 @@ msgctxt ""
msgid "Root displayed"
msgstr ""
-#. BVN9
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1306,7 +1176,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies if the root node of the tree control is displayed.</ahelp>"
msgstr ""
-#. !M#:
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1315,7 +1184,6 @@ msgctxt ""
msgid "If Root displayed is set to FALSE, the root node of a model is no longer a valid node for the tree control and can't be used with any method of XTreeControl."
msgstr ""
-#. GO^^
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1324,7 +1192,6 @@ msgctxt ""
msgid "The default value is TRUE."
msgstr ""
-#. WST[
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1333,7 +1200,6 @@ msgctxt ""
msgid "Row height"
msgstr ""
-#. uOs5
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1342,7 +1208,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies the height of each row of a tree control, in pixels.</ahelp>"
msgstr ""
-#. CV(}
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1351,7 +1216,6 @@ msgctxt ""
msgid "If the specified value is less than or equal to zero, the row height is the maximum height of all rows."
msgstr ""
-#. =%J:
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1360,7 +1224,6 @@ msgctxt ""
msgid "The default value is 0."
msgstr ""
-#. 77_|
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1370,7 +1233,6 @@ msgctxt ""
msgid "Scale"
msgstr "მასშტაბირება"
-#. 0|#O
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1380,7 +1242,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Scales the image to fit the control size.</ahelp>"
msgstr ""
-#. P8oK
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1389,7 +1250,6 @@ msgctxt ""
msgid "Scrollbar"
msgstr ""
-#. %5K)
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1398,7 +1258,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Adds the scrollbar type that you specify to a text box.</ahelp>"
msgstr ""
-#. _.zK
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1408,7 +1267,6 @@ msgctxt ""
msgid "Scroll value"
msgstr ""
-#. g1(Z
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1418,7 +1276,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the initial value of a scrollbar control. This determines the position of the scrollbar slider.</ahelp>"
msgstr ""
-#. [a1p
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1428,7 +1285,6 @@ msgctxt ""
msgid "Scroll value max."
msgstr "გადაადგილების ზოლის მნიშვნელობის მაქსიმუმი"
-#. Dg7K
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1438,7 +1294,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the maximum value of a scrollbar control.</ahelp>"
msgstr ""
-#. H8$W
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1447,7 +1302,6 @@ msgctxt ""
msgid "Scroll value min."
msgstr "გადაადგილების ზოლის მნიშვნელობის მინიმუმი"
-#. @9F{
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1456,7 +1310,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the minimum value of a scrollbar control.</ahelp>"
msgstr ""
-#. E_7-
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1465,7 +1318,6 @@ msgctxt ""
msgid "Show handles"
msgstr ""
-#. PT-2
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1474,7 +1326,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies whether the handles of the nodes should be displayed.</ahelp>"
msgstr ""
-#. v%?Z
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1483,7 +1334,6 @@ msgctxt ""
msgid "The handles are dotted lines that visualize the hierarchy of the tree control."
msgstr ""
-#. Q-:]
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1492,7 +1342,6 @@ msgctxt ""
msgid "The default value is TRUE."
msgstr ""
-#. H(1\
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1501,7 +1350,6 @@ msgctxt ""
msgid "Show root handles"
msgstr ""
-#. (}+q
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1510,7 +1358,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies whether the handles of the nodes should also be displayed at root level.</ahelp>"
msgstr ""
-#. rqs$
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1519,7 +1366,6 @@ msgctxt ""
msgid "The default value is TRUE."
msgstr ""
-#. /%nh
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1528,7 +1374,6 @@ msgctxt ""
msgid "Selection"
msgstr "მონიშვნა"
-#. 4.`(
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1537,7 +1382,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies the sequence of the selected items, where \"0\" corresponds to the first item. To select more than one item, Multiselection must be enabled.</ahelp>"
msgstr ""
-#. S=eZ
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1546,7 +1390,6 @@ msgctxt ""
msgid "Click the <emph>...</emph> button to open the <emph>Selection</emph> dialog."
msgstr ""
-#. qtTg
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1555,7 +1398,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Click the item or items that you want to select. To select more than one item, ensure that the Multiselection option is selected.</ahelp>"
msgstr ""
-#. MK0A
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1564,7 +1406,6 @@ msgctxt ""
msgid "Selection type"
msgstr ""
-#. AMKs
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1573,7 +1414,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies the selection mode that is enabled for this tree control.</ahelp>"
msgstr ""
-#. +wE2
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1583,7 +1423,6 @@ msgctxt ""
msgid "Spin Button"
msgstr ""
-#. (DiD
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1593,7 +1432,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to add spin buttons to a numerical, currency, date, or time control to allow increasing and decreasing the input value using arrow buttons.</ahelp>"
msgstr ""
-#. .VqC
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1603,7 +1441,6 @@ msgctxt ""
msgid "State"
msgstr "შტატი"
-#. PO|T
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1613,7 +1450,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select the selection state of the current control.</ahelp>"
msgstr ""
-#. z1WB
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1623,7 +1459,6 @@ msgctxt ""
msgid "Strict format"
msgstr "მკაცრი ფორმატი"
-#. gAV`
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1633,7 +1468,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to only allow valid characters to be entered in a numerical, currency, date, or time control.</ahelp>"
msgstr ""
-#. KjPb
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1643,7 +1477,6 @@ msgctxt ""
msgid "Tabstop"
msgstr ""
-#. X*Q/
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1653,7 +1486,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select the focus behavior of the current control when using the <emph>Tab</emph> key.</ahelp>"
msgstr ""
-#. bBe=
#: 01170101.xhp
#, fuzzy
msgctxt ""
@@ -1664,7 +1496,6 @@ msgctxt ""
msgid "Default"
msgstr "#-#-#-#-# autopi.po (PACKAGE VERSION) #-#-#-#-#\\nსტანდარტული\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nნაგულისხმები\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nნაგულისხმევი\\n#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\\nსაწყისი"
-#. iv8U
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1674,7 +1505,6 @@ msgctxt ""
msgid "Only input controls receive the focus when using the <emph>Tab</emph> key. Controls without input like caption controls are omitted."
msgstr ""
-#. !/Xp
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1684,7 +1514,6 @@ msgctxt ""
msgid "No"
msgstr "არა"
-#. rjWw
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1694,7 +1523,6 @@ msgctxt ""
msgid "When using the tab key focusing skips the control."
msgstr ""
-#. pYmP
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1704,7 +1532,6 @@ msgctxt ""
msgid "Yes"
msgstr "დიახ"
-#. }o{U
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1714,7 +1541,6 @@ msgctxt ""
msgid "The control can be selected with the Tab key."
msgstr ""
-#. P5n1
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1724,7 +1550,6 @@ msgctxt ""
msgid "Thousands Separator"
msgstr ""
-#. qPkC
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1734,7 +1559,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to display thousands separator characters in numerical and currency controls.</ahelp>"
msgstr ""
-#. (_M_
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1744,7 +1568,6 @@ msgctxt ""
msgid "Time Format"
msgstr ""
-#. E`QZ
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1754,7 +1577,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select the format to be used for time controls.</ahelp>"
msgstr ""
-#. zhn6
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1764,7 +1586,6 @@ msgctxt ""
msgid "Time max."
msgstr ""
-#. 1[{r
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1774,7 +1595,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the maximum time value for a time control.</ahelp>"
msgstr ""
-#. ZnC}
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1784,7 +1604,6 @@ msgctxt ""
msgid "Time min."
msgstr ""
-#. q]^`
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1794,7 +1613,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the minimum time value for a time control.</ahelp>"
msgstr ""
-#. ~#YA
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1804,7 +1622,6 @@ msgctxt ""
msgid "Title"
msgstr "სათაური"
-#. B|ia
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1814,7 +1631,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the title of the dialog. Click the border of the dialog to select the dialog.</ahelp>"
msgstr ""
-#. i)c;
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1824,7 +1640,6 @@ msgctxt ""
msgid "<emph>Titles</emph> are only used for labeling a dialog and can only contain one line. Please note that if you work with macros, controls are only called through their <emph>Name</emph> property."
msgstr ""
-#. T=V4
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1834,7 +1649,6 @@ msgctxt ""
msgid "Tristate"
msgstr "ტრისტატი"
-#. +9aB
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1844,7 +1658,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to allow a check box to have three states (checked, unchecked, and grayed out) instead of two (checked and unchecked).</ahelp>"
msgstr ""
-#. aLGH
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1854,7 +1667,6 @@ msgctxt ""
msgid "Value"
msgstr ""
-#. `=;J
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1864,7 +1676,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the value for the current control.</ahelp>"
msgstr ""
-#. Ca`]
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1874,7 +1685,6 @@ msgctxt ""
msgid "Value max."
msgstr ""
-#. k]B\
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1884,7 +1694,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the maximum value for the current control.</ahelp>"
msgstr ""
-#. 3f7{
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1894,7 +1703,6 @@ msgctxt ""
msgid "Value min."
msgstr ""
-#. \xHZ
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1904,7 +1712,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the minimum value for the current control.</ahelp>"
msgstr ""
-#. =R1W
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1914,7 +1721,6 @@ msgctxt ""
msgid "Visible size"
msgstr "ხილული ზომა"
-#. :/7!
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1924,7 +1730,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the length of the slider of a scrollbar control.</ahelp>"
msgstr ""
-#. G;jd
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1934,7 +1739,6 @@ msgctxt ""
msgid "Width"
msgstr "სიგანე"
-#. 6bKw
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1944,7 +1748,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the width of the current control or dialog.</ahelp>"
msgstr ""
-#. XoGR
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -1953,7 +1756,6 @@ msgctxt ""
msgid "Blue Function [Runtime]"
msgstr "Split Function [Runtime]"
-#. =Cl5
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -1962,7 +1764,6 @@ msgctxt ""
msgid "<bookmark_value>Blue function</bookmark_value>"
msgstr "<bookmark_value>CCur ფუნქცია</bookmark_value>"
-#. !(8.
#: 03010301.xhp
#, fuzzy
msgctxt ""
@@ -1973,7 +1774,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03010301.xhp\" name=\"Blue Function [Runtime]\">Blue Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-#. DAQN
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -1983,7 +1783,6 @@ msgctxt ""
msgid "Returns the blue component of the specified color code."
msgstr ""
-#. 94UH
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -1993,7 +1792,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. \d#d
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2003,7 +1801,6 @@ msgctxt ""
msgid "Blue (Color As Long)"
msgstr ""
-#. `T;0
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2013,7 +1810,6 @@ msgctxt ""
msgid "Return value:"
msgstr "დაბრუნებული მნიშვნელობა:"
-#. MF^g
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2023,7 +1819,6 @@ msgctxt ""
msgid "Integer"
msgstr ""
-#. kNc=
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2033,7 +1828,6 @@ msgctxt ""
msgid "Parameter:"
msgstr ""
-#. ^bG2
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2043,7 +1837,6 @@ msgctxt ""
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 ""
-#. e)}(
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2053,7 +1846,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. 8;~O
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2063,7 +1855,6 @@ msgctxt ""
msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
msgstr ""
-#. t?#N
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2073,7 +1864,6 @@ msgctxt ""
msgid "\"red= \" & Red(lVar) & Chr(13)&_"
msgstr ""
-#. 9f3.
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2083,7 +1873,6 @@ msgctxt ""
msgid "\"green= \" & Green(lVar) & Chr(13)&_"
msgstr ""
-#. 3%A,
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2093,7 +1882,6 @@ msgctxt ""
msgid "\"blue= \" & Blue(lVar) & Chr(13) , 64,\"colors\""
msgstr ""
-#. QSX4
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2102,7 +1890,6 @@ msgctxt ""
msgid "Comparison Operators [Runtime]"
msgstr ""
-#. I_Ld
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2111,7 +1898,6 @@ msgctxt ""
msgid "<bookmark_value>comparison operators;%PRODUCTNAME Basic</bookmark_value><bookmark_value>operators;comparisons</bookmark_value>"
msgstr "<bookmark_value>შედარების ოპერატორები;%PRODUCTNAME ძირითადი</bookmark_value><bookmark_value>ოპერატორები;შედარრების</bookmark_value>"
-#. l#An
#: 03110100.xhp
#, fuzzy
msgctxt ""
@@ -2122,7 +1908,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Comparison Operators [Runtime]\">Comparison Operators [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-#. DU^=
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2132,7 +1917,6 @@ msgctxt ""
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 ""
-#. 2bxe
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2142,7 +1926,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. 7Z7p
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2152,7 +1935,6 @@ msgctxt ""
msgid "Result = Expression1 { = | < | > | <= | >= } Expression2"
msgstr "რეზულტატი = გამოსახულება1 { = | < | > | <= | >= } გამოსახულება2"
-#. U$L@
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2162,7 +1944,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. G.US
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2172,7 +1953,6 @@ msgctxt ""
msgid "<emph>Result:</emph> Boolean expression that specifies the result of the comparison (True, or False)"
msgstr "<emph>Result:</emph>ბულევური გამოსახულება, რომელიც განსაზღვავს შედარების რეზულტატს (ჭეშმარიტი, ან მცდარი)"
-#. rr*J
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2182,7 +1962,6 @@ msgctxt ""
msgid "<emph>Expression1, Expression2:</emph> Any numeric values or strings that you want to compare."
msgstr "<emph>Expression1, Expression2:</emph> ნებისმიერი ციფრული სიდიდეები ან სტრიქონები, რომლებიც გინდათ შეადაროთ."
-#. `5qH
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2192,7 +1971,6 @@ msgctxt ""
msgid "Comparison operators"
msgstr "შედარების ოპერატორები"
-#. pREl
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2202,7 +1980,6 @@ msgctxt ""
msgid "= : Equal to"
msgstr "= : ექვივალენტურია"
-#. +J3]
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2212,7 +1989,6 @@ msgctxt ""
msgid "< : Less than"
msgstr "< : ნაკლებია ვიდრე"
-#. BEZR
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2222,7 +1998,6 @@ msgctxt ""
msgid "> : Greater than"
msgstr "> : მეტია ვიდრე"
-#. $uCg
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2232,7 +2007,6 @@ msgctxt ""
msgid "<= : Less than or equal to"
msgstr "<= : ნაკლებია ან ექვივალენრურია ვიდრე"
-#. __DJ
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2242,7 +2016,6 @@ msgctxt ""
msgid ">= : Greater than or equal to"
msgstr ">= : მეტია ან ექვივალენრურია ვიდრე"
-#. 15\S
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2252,7 +2025,6 @@ msgctxt ""
msgid "<> : Not equal to"
msgstr "<> : არ არის ექვივალენტური"
-#. Tw#9
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2262,7 +2034,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. gma+
#: 03110100.xhp
#, fuzzy
msgctxt ""
@@ -2273,7 +2044,6 @@ msgctxt ""
msgid "Dim sRoot As String ' Root directory for file in and output"
msgstr "DIM sRoot როგორც სტრიქონი REM ' ძირეული დირექტორია ფაილისთვის და კატალოგისთვის"
-#. bS?S
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2282,7 +2052,6 @@ msgctxt ""
msgid "Timer Function [Runtime]"
msgstr "Split Function [Runtime]"
-#. h22Q
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2291,7 +2060,6 @@ msgctxt ""
msgid "<bookmark_value>Timer function</bookmark_value>"
msgstr "<bookmark_value>Trim ფუნქცია</bookmark_value>"
-#. vpGo
#: 03030303.xhp
#, fuzzy
msgctxt ""
@@ -2302,7 +2070,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03030303.xhp\" name=\"Timer Function [Runtime]\">Timer Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-#. ;9X`
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2312,7 +2079,6 @@ msgctxt ""
msgid "Returns a value that specifies the number of seconds that have elapsed since midnight."
msgstr ""
-#. 2?:K
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2322,7 +2088,6 @@ msgctxt ""
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 ""
-#. EypB
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2332,7 +2097,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. I[2Z
#: 03030303.xhp
#, fuzzy
msgctxt ""
@@ -2343,7 +2107,6 @@ msgctxt ""
msgid "Timer"
msgstr "დრო"
-#. n#?n
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2353,7 +2116,6 @@ msgctxt ""
msgid "Return value:"
msgstr "დაბრუნებული მნიშვნელობა:"
-#. 9s5}
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2363,7 +2125,6 @@ msgctxt ""
msgid "Date"
msgstr ""
-#. APE`
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2373,7 +2134,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. 0acV
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2383,7 +2143,6 @@ msgctxt ""
msgid "MsgBox lSec,0,\"Seconds since midnight\""
msgstr ""
-#. qX*3
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2393,7 +2152,6 @@ msgctxt ""
msgid "MsgBox Right(\"00\" & lHour , 2) & \":\"& Right(\"00\" & lMin , 2) & \":\" & Right(\"00\" & lSec , 2) ,0,\"The time is\""
msgstr ""
-#. K3ma
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2402,7 +2160,6 @@ msgctxt ""
msgid "Dir Function [Runtime]"
msgstr "Split Function [Runtime]"
-#. d!$b
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2411,7 +2168,6 @@ msgctxt ""
msgid "<bookmark_value>Dir function</bookmark_value>"
msgstr "<bookmark_value>Chr ფუნქცია</bookmark_value>"
-#. 50[7
#: 03020404.xhp
#, fuzzy
msgctxt ""
@@ -2422,7 +2178,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020404.xhp\" name=\"Dir Function [Runtime]\">Dir Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-#. \h)B
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2432,7 +2187,6 @@ msgctxt ""
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 ""
-#. $=N|
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2442,7 +2196,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. g;2J
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2452,7 +2205,6 @@ msgctxt ""
msgid "Dir [(Text As String) [, Attrib As Integer]]"
msgstr ""
-#. L9k(
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2462,7 +2214,6 @@ msgctxt ""
msgid "Return value:"
msgstr "დაბრუნებული მნიშვნელობა:"
-#. L5WV
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2472,7 +2223,6 @@ msgctxt ""
msgid "String"
msgstr "სტრიქონები"
-#. #J[c
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2482,7 +2232,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. 58@D
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2492,7 +2241,6 @@ msgctxt ""
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 ""
-#. [d6[
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2502,7 +2250,6 @@ msgctxt ""
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 ""
-#. pSkB
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2512,7 +2259,6 @@ msgctxt ""
msgid "0 : Normal files."
msgstr ""
-#. m\l(
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2522,7 +2268,6 @@ msgctxt ""
msgid "16 : Returns the name of the directory only."
msgstr ""
-#. hfrM
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2532,7 +2277,6 @@ msgctxt ""
msgid "Use this attribute to check if a file or directory exists, or to determine all files and folders in a specific directory."
msgstr ""
-#. :*Th
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2542,7 +2286,6 @@ msgctxt ""
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 ""
-#. ]S9T
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2552,7 +2295,6 @@ msgctxt ""
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 ""
-#. ^M5.
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2562,7 +2304,6 @@ msgctxt ""
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 ""
-#. ),T!
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2572,7 +2313,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. EHQ`
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2582,7 +2322,6 @@ msgctxt ""
msgid "' Displays all files and directories"
msgstr ""
-#. Vf8!
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2592,7 +2331,6 @@ msgctxt ""
msgid "sDir=\"Directories:\""
msgstr ""
-#. 9)..
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2602,7 +2340,6 @@ msgctxt ""
msgid "' Get the directories"
msgstr ""
-#. )?Iv
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2611,7 +2348,6 @@ msgctxt ""
msgid "\"^\" Operator [Runtime]"
msgstr ""
-#. ;TFR
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2620,7 +2356,6 @@ msgctxt ""
msgid "<bookmark_value>\"^\" operator (mathematical)</bookmark_value>"
msgstr ""
-#. PO`7
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2630,7 +2365,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03070500.xhp\">\"^\" Operator [Runtime]</link>"
msgstr ""
-#. 0ml!
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2640,7 +2374,6 @@ msgctxt ""
msgid "Raises a number to a power."
msgstr ""
-#. 7:7?
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2650,7 +2383,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. x/-8
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2660,7 +2392,6 @@ msgctxt ""
msgid "Result = Expression ^ Exponent"
msgstr ""
-#. qr`@
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2670,7 +2401,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. eFhL
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2680,7 +2410,6 @@ msgctxt ""
msgid "<emph>Result:</emph> Any numerical expression that contains the result of the number raised to a power."
msgstr ""
-#. sf1J
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2690,7 +2419,6 @@ msgctxt ""
msgid "<emph>Expression:</emph> Numerical value that you want to raise to a power."
msgstr ""
-#. W@nm
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2700,7 +2428,6 @@ msgctxt ""
msgid "<emph>Exponent:</emph> The value of the power that you want to raise the expression to."
msgstr ""
-#. Xl0I
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2710,7 +2437,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. Een*
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2720,7 +2446,6 @@ msgctxt ""
msgid "Print Exp ( 23 * Log( 12.345 ) ) ' Raises by forming a logarithm"
msgstr ""
-#. J2U~
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2729,7 +2454,6 @@ msgctxt ""
msgid "Sgn Function [Runtime]"
msgstr "Split Function [Runtime]"
-#. g}_;
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2738,7 +2462,6 @@ msgctxt ""
msgid "<bookmark_value>Sgn function</bookmark_value>"
msgstr "<bookmark_value>Str ფუნქცია</bookmark_value>"
-#. =pP}
#: 03080701.xhp
#, fuzzy
msgctxt ""
@@ -2749,7 +2472,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03080701.xhp\" name=\"Sgn Function [Runtime]\">Sgn Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-#. $EB%
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2759,7 +2481,6 @@ msgctxt ""
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 ""
-#. LDj/
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2769,7 +2490,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. !*t*
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2779,7 +2499,6 @@ msgctxt ""
msgid "Sgn (Number)"
msgstr ""
-#. V|mw
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2789,7 +2508,6 @@ msgctxt ""
msgid "Return value:"
msgstr "დაბრუნებული მნიშვნელობა:"
-#. y\C:
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2799,7 +2517,6 @@ msgctxt ""
msgid "Integer"
msgstr ""
-#. g_S:
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2809,7 +2526,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. yUgV
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2819,7 +2535,6 @@ msgctxt ""
msgid "<emph>Number:</emph> Numeric expression that determines the value that is returned by the function."
msgstr ""
-#. F^)(
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2829,7 +2544,6 @@ msgctxt ""
msgid "NumExpression"
msgstr ""
-#. 53x/
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2839,7 +2553,6 @@ msgctxt ""
msgid "Return value"
msgstr "დაბრუნებული მნიშვნელობა:"
-#. LVHP
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2849,7 +2562,6 @@ msgctxt ""
msgid "negative"
msgstr ""
-#. Eg9+
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2859,7 +2571,6 @@ msgctxt ""
msgid "Sgn returns -1."
msgstr ""
-#. WS)T
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2869,7 +2580,6 @@ msgctxt ""
msgid "0"
msgstr ""
-#. 9J?Y
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2879,7 +2589,6 @@ msgctxt ""
msgid "Sgn returns 0."
msgstr ""
-#. j[\j
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2889,7 +2598,6 @@ msgctxt ""
msgid "positive"
msgstr ""
-#. 5G}l
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2899,7 +2607,6 @@ msgctxt ""
msgid "Sgn returns 1."
msgstr ""
-#. m`V3
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2909,7 +2616,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. 9Ej\
#: 03080701.xhp
#, fuzzy
msgctxt ""
@@ -2920,7 +2626,6 @@ msgctxt ""
msgid "Print sgn(-10) ' returns -1"
msgstr "Print ASC(\"Z\") REM აბრუნებს 90"
-#. {4m~
#: 03080701.xhp
#, fuzzy
msgctxt ""
@@ -2931,7 +2636,6 @@ msgctxt ""
msgid "Print sgn(0) ' returns 0"
msgstr "Print ASC(\"Z\") REM აბრუნებს 90"
-#. r:k{
#: 03080701.xhp
#, fuzzy
msgctxt ""
@@ -2942,7 +2646,6 @@ msgctxt ""
msgid "Print sgn(10) ' returns 1"
msgstr "Print ASC(\"Z\") REM აბრუნებს 90"
-#. IqOm
#: 03090400.xhp
msgctxt ""
"03090400.xhp\n"
@@ -2951,7 +2654,6 @@ msgctxt ""
msgid "Further Statements"
msgstr ""
-#. u*9X
#: 03090400.xhp
#, fuzzy
msgctxt ""
@@ -2962,7 +2664,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"Further Statements\">Further Statements</link>"
msgstr "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"სხვა ბრძენებები\">სხვა ბრძენებები</link>"
-#. 0tqr
#: 03090400.xhp
msgctxt ""
"03090400.xhp\n"
@@ -2972,7 +2673,6 @@ msgctxt ""
msgid "Statements that do not belong to any of the other runtime categories are described here."
msgstr ""
-#. fShM
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -2981,7 +2681,6 @@ msgctxt ""
msgid "LBound Function [Runtime]"
msgstr "Split Function [Runtime]"
-#. $U(5
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -2990,7 +2689,6 @@ msgctxt ""
msgid "<bookmark_value>LBound function</bookmark_value>"
msgstr "<bookmark_value>Len ფუნქცია</bookmark_value>"
-#. az{9
#: 03102900.xhp
#, fuzzy
msgctxt ""
@@ -3001,7 +2699,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"LBound Function [Runtime]\">LBound Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-#. vG?)
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3011,7 +2708,6 @@ msgctxt ""
msgid "Returns the lower boundary of an array."
msgstr ""
-#. ,i\]
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3021,7 +2717,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. Ya;V
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3031,7 +2726,6 @@ msgctxt ""
msgid "LBound (ArrayName [, Dimension])"
msgstr ""
-#. 7D-M
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3041,7 +2735,6 @@ msgctxt ""
msgid "Return value:"
msgstr "დაბრუნებული მნიშვნელობა:"
-#. fx9)
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3051,7 +2744,6 @@ msgctxt ""
msgid "Integer"
msgstr ""
-#. RTlQ
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3061,7 +2753,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. M$WD
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3071,7 +2762,6 @@ msgctxt ""
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 ""
-#. mck}
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3081,7 +2771,6 @@ msgctxt ""
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 ""
-#. 9@:o
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3091,7 +2780,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. g@Og
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3101,7 +2789,6 @@ msgctxt ""
msgid "Print LBound(sVar()) ' Returns 10"
msgstr ""
-#. Ll%f
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3111,7 +2798,6 @@ msgctxt ""
msgid "Print UBound(sVar()) ' Returns 20"
msgstr ""
-#. ?P@L
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3121,7 +2807,6 @@ msgctxt ""
msgid "Print LBound(sVar(),2) ' Returns 5"
msgstr ""
-#. X%Di
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3131,7 +2816,6 @@ msgctxt ""
msgid "Print UBound(sVar(),2) ' Returns 70"
msgstr ""
-#. (?7:
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3140,7 +2824,6 @@ msgctxt ""
msgid "UBound Function [Runtime]"
msgstr "Split Function [Runtime]"
-#. S/!!
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3149,7 +2832,6 @@ msgctxt ""
msgid "<bookmark_value>UBound function</bookmark_value>"
msgstr "<bookmark_value>Join ფუნქცია</bookmark_value>"
-#. ,$5Y
#: 03103000.xhp
#, fuzzy
msgctxt ""
@@ -3160,7 +2842,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03103000.xhp\" name=\"UBound Function [Runtime]\">UBound Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-#. P!ad
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3170,7 +2851,6 @@ msgctxt ""
msgid "Returns the upper boundary of an array."
msgstr ""
-#. =5fw
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3180,7 +2860,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. ?%eL
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3190,7 +2869,6 @@ msgctxt ""
msgid "UBound (ArrayName [, Dimension])"
msgstr ""
-#. O0yV
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3200,7 +2878,6 @@ msgctxt ""
msgid "Return value:"
msgstr "დაბრუნებული მნიშვნელობა:"
-#. q$xu
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3210,7 +2887,6 @@ msgctxt ""
msgid "Integer"
msgstr ""
-#. +[T8
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3220,7 +2896,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. 4.O/
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3230,7 +2905,6 @@ msgctxt ""
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 ""
-#. 3l-3
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3240,7 +2914,6 @@ msgctxt ""
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 ""
-#. #CKR
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3250,7 +2923,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. -clZ
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3260,7 +2932,6 @@ msgctxt ""
msgid "Print LBound(sVar()) ' Returns 10"
msgstr ""
-#. X[Q3
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3270,7 +2941,6 @@ msgctxt ""
msgid "Print UBound(sVar()) ' Returns 20"
msgstr ""
-#. k:fN
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3280,7 +2950,6 @@ msgctxt ""
msgid "Print LBound(sVar(),2) ' Returns 5"
msgstr ""
-#. ;+)/
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3290,7 +2959,6 @@ msgctxt ""
msgid "Print UBound(sVar(),2) ' Returns 70"
msgstr ""
-#. 7XzF
#: 03103400.xhp
msgctxt ""
"03103400.xhp\n"
@@ -3299,7 +2967,6 @@ msgctxt ""
msgid "Public Statement [Runtime]"
msgstr ""
-#. PF3h
#: 03103400.xhp
msgctxt ""
"03103400.xhp\n"
@@ -3308,7 +2975,6 @@ msgctxt ""
msgid "<bookmark_value>Public statement</bookmark_value>"
msgstr "<bookmark_value>Wait განცხადება</bookmark_value>"
-#. _2lr
#: 03103400.xhp
#, fuzzy
msgctxt ""
@@ -3319,7 +2985,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03103400.xhp\" name=\"Public Statement [Runtime]\">Public Statement [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-#. ]qAA
#: 03103400.xhp
msgctxt ""
"03103400.xhp\n"
@@ -3329,7 +2994,6 @@ msgctxt ""
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 ""
-#. Nm8f
#: 03103400.xhp
msgctxt ""
"03103400.xhp\n"
@@ -3339,7 +3003,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. ypk$
#: 03103400.xhp
msgctxt ""
"03103400.xhp\n"
@@ -3349,7 +3012,6 @@ msgctxt ""
msgid "Public VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
msgstr ""
-#. UqOq
#: 03103400.xhp
msgctxt ""
"03103400.xhp\n"
@@ -3359,7 +3021,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. .l95
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3368,7 +3029,6 @@ msgctxt ""
msgid "CreateUnoValue Function [Runtime]"
msgstr "Split Function [Runtime]"
-#. `,o4
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3377,7 +3037,6 @@ msgctxt ""
msgid "<bookmark_value>CreateUnoValue function</bookmark_value>"
msgstr "<bookmark_value>CreateUnoValue ფუნქცია</bookmark_value>"
-#. qAD*
#: 03132300.xhp
#, fuzzy
msgctxt ""
@@ -3388,7 +3047,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"CreateUnoValue Function [Runtime]\">CreateUnoValue Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-#. .rjF
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3398,7 +3056,6 @@ msgctxt ""
msgid "Returns an object that represents a strictly typed value referring to the Uno type system."
msgstr "აბრუნებს ობიექტს, რომელიც წარმოადგენს პირდაპირ ჩაწერილ მნიშვნელობას, რომელიც მიუთითებს Uno ტიპის სისტემას."
-#. cvK%
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3408,7 +3065,6 @@ msgctxt ""
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 "ობიექტი ავტომატურად გადადის ნებისმიერ შესაბამის ტიპში, როდესაც გადაეცემა Uno-ს. ტიპი უნდა მიეთითოს Uno-ის სრული ტიპით."
-#. F$Xg
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3418,7 +3074,6 @@ msgctxt ""
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 ""
-#. -43$
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3428,7 +3083,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. /_:b
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3438,7 +3092,6 @@ msgctxt ""
msgid "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) to get a byte sequence."
msgstr "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) ბაიტების მიმდევრობის მისაღებად."
-#. cx#[
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3448,7 +3101,6 @@ msgctxt ""
msgid "If CreateUnoValue cannot be converted to the specified Uno type, and error occurs. For the conversion, the TypeConverter service is used."
msgstr "თუ CreateUnoValue-ს გადაყვანა მითითებულ Uno-ს ტიპში ვერ მოხერხდება, მოხდება შეცდომა. გადაყვანისთვის გამოიყენება TypeConverter სერვიზი."
-#. YC6#
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3458,7 +3110,6 @@ msgctxt ""
msgid "This function is intended for use in situations where the default Basic to Uno type converting mechanism is insufficient. This can happen when you try to access generic Any based interfaces, such as XPropertySet::setPropertyValue( Name, Value ) or X???Container::insertBy???( ???, Value ), from $[officename] Basic. The Basic runtime does not recognize these types as they are only defined in the corresponding service."
msgstr "ფუნქცია განკუთვნილია ისეთ სიტუაციებში გამოსაყენებლად, სადაც საწყისი Basic დან Uno ტიპში გადაყვანის მეთოდი არასაკმარისია. ეს შეიძლება მოხდეს მაშინ, როდესაც თქვენ ცდით მიმართოთ ზოგადათ ნებისმიერ ინტერფეისს, როგორიც XPropertySet::setPropertyValue( Name, Value ) ან X???Container::insertBy???( ???, Value ), $[officename] Basic -დან. Basic გაშვება ვერ გამოიცნობს ამ ტიპებს, რადგანაც ისინი არიან განსაზღვრულები მხოლოდ შესაბამის სერვისში."
-#. RU/F
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3468,7 +3119,6 @@ msgctxt ""
msgid "In this type of situation, $[officename] Basic chooses the best matching type for the Basic type that you want to convert. However, if the wrong type is selected, an error occurs. You use the CreateUnoValue() function to create a value for the unknown Uno type."
msgstr "ამ სიტუაციაში, $[officename] Basic-ი ირჩევს საუკეთესო დამთხვევის ტიპს Basic-ის ტიპისთვის, რომლის გადაყვანაც გსურთ. მაგრამ თუ აირჩევთ არასწორ ტიპს, მოხდება შეცდომა. უცნობი Uno ტიპების მნიშვნელობების შესაქმნელად გამოიყენეთ CreateUnoValue() ფუნქცია."
-#. u4hQ
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3478,7 +3128,6 @@ msgctxt ""
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 "თქვენ შეგიძლიათ გამოიყენოთ ეს ფუნქცია non-Any მნიშვნელობების გადასაცემად, მაგრამ ეს რეკომნდირებული არ არის. თუ Basic-მა უკვე იცის სამიზნე ტიპი. reateUnoValue() ფუნქცია მიგიყვანთ დამატებით გადაყვანის ოპერაციებამდე, რომელიც შეანელებს Basic-ის გაშვებას."
-#. 9l0^
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3487,7 +3136,6 @@ msgctxt ""
msgid "Left Function [Runtime]"
msgstr "Split Function [Runtime]"
-#. Vi+b
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3496,7 +3144,6 @@ msgctxt ""
msgid "<bookmark_value>Left function</bookmark_value>"
msgstr "<bookmark_value>მარცხენა ფუნქცია</bookmark_value>"
-#. n=BZ
#: 03120303.xhp
#, fuzzy
msgctxt ""
@@ -3507,7 +3154,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function [Runtime]\">Left Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-#. ba2?
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3517,7 +3163,6 @@ msgctxt ""
msgid "Returns the number of leftmost characters that you specify of a string expression."
msgstr ""
-#. 3yR:
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3527,7 +3172,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. )?m~
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3537,7 +3181,6 @@ msgctxt ""
msgid "Left (Text As String, n As Long)"
msgstr "მარცხენა (ტექსტი როგორც სტრიქონი, n როგორც გრძელი)"
-#. 0m-[
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3547,7 +3190,6 @@ msgctxt ""
msgid "Return value:"
msgstr "დაბრუნებული მნიშვნელობა:"
-#. .(s,
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3557,7 +3199,6 @@ msgctxt ""
msgid "String"
msgstr "სტრიქონები"
-#. 7LzP
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3567,7 +3208,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. GQq^
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3577,7 +3217,6 @@ msgctxt ""
msgid "<emph>Text:</emph> Any string expression that you want to return the leftmost characters from."
msgstr "<emph>ტექსტი:</emph> ნებისმიერი სტრინგული გამოსახულება, რომლიც ყველაზე მარჯვენა ასო-ნიშნების დაბრუნებაც გსურთ."
-#. 5|J)
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3587,7 +3226,6 @@ msgctxt ""
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>ციფრული გამოსახულება, რომელიც განსაზღვრავს სიმბოლოთა რიცხვს, რომლებიც გინდათ დააბრუნოთ. If <emph>n</emph> = 0, ნოლი-სიგრძის სტრიქონი არის დაბრუნებული. მაქსიმუმ დასაშვები მნიშვნელობაა 65535."
-#. (peG
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3597,7 +3235,6 @@ msgctxt ""
msgid "The following example converts a date in YYYY.MM.DD format to MM/DD/YYYY format."
msgstr "შემდეგი მაგალით ი გარდაქმნის თარიღს ფორმატში YYYY.MM.DD ფორმატს MM/DD/YYYY ფორმატში."
-#. P(22
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3607,7 +3244,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. ,C]9
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3617,7 +3253,6 @@ msgctxt ""
msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
msgstr ""
-#. ?4LT
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3626,7 +3261,6 @@ msgctxt ""
msgid "Name Statement [Runtime]"
msgstr ""
-#. NTgW
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3635,7 +3269,6 @@ msgctxt ""
msgid "<bookmark_value>Name statement</bookmark_value>"
msgstr "<bookmark_value>Wait განცხადება</bookmark_value>"
-#. )[6r
#: 03020412.xhp
#, fuzzy
msgctxt ""
@@ -3646,7 +3279,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020412.xhp\" name=\"Name Statement [Runtime]\">Name Statement [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-#. [-i[
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3656,7 +3288,6 @@ msgctxt ""
msgid "Renames an existing file or directory."
msgstr ""
-#. R5Q@
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3666,7 +3297,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. nEQQ
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3676,7 +3306,6 @@ msgctxt ""
msgid "Name OldName As String As NewName As String"
msgstr ""
-#. $\Ul
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3686,7 +3315,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. q]t\
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3696,7 +3324,6 @@ msgctxt ""
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 ""
-#. CVw=
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3706,7 +3333,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. +:6V
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3716,7 +3342,6 @@ msgctxt ""
msgid "MsgBox \"File already exists\""
msgstr ""
-#. @4%H
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3725,7 +3350,6 @@ msgctxt ""
msgid "EqualUnoObjects Function [Runtime]"
msgstr "Split Function [Runtime]"
-#. unM\
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3734,7 +3358,6 @@ msgctxt ""
msgid "<bookmark_value>EqualUnoObjects function</bookmark_value>"
msgstr "<bookmark_value>EqualUnoObjects ფუნქცია</bookmark_value>"
-#. 3e/Q
#: 03104600.xhp
#, fuzzy
msgctxt ""
@@ -3745,7 +3368,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function [Runtime]\">EqualUnoObjects Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-#. =\Xa
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3755,7 +3377,6 @@ msgctxt ""
msgid "Returns True if the two specified Basic Uno objects represent the same Uno object instance."
msgstr "აბრუნებს ჭეშმარიტ მნიშვნელობას, თუ ორ აღნიშნული ძირითადი ობიექტი Uno წარმოდგენენ Uno-ს ერთი და იგივე შემთხვევას."
-#. )Hn^
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3765,7 +3386,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. ;;7P
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3775,7 +3395,6 @@ msgctxt ""
msgid "EqualUnoObjects( oObj1, oObj2 )"
msgstr "EqualUnoObjects( oObj1, oObj2 )"
-#. _g7n
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3785,7 +3404,6 @@ msgctxt ""
msgid "Return value:"
msgstr "დაბრუნებული მნიშვნელობა:"
-#. `oJI
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3795,7 +3413,6 @@ msgctxt ""
msgid "Bool"
msgstr ""
-#. 9vf)
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3805,7 +3422,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. /qDZ
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3815,7 +3431,6 @@ msgctxt ""
msgid "// Copy of objects -> same instance"
msgstr "// ობიექტების ასლები -> იგივე შემთხვევა"
-#. Qi~Q
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3825,7 +3440,6 @@ msgctxt ""
msgid "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
msgstr "oIntrospection = CreateUnoService(\"com.sun.star.beans.Introspection\")"
-#. ?c?!
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3835,7 +3449,6 @@ msgctxt ""
msgid "oIntro2 = oIntrospection"
msgstr "oIntro2 = oIntrospection"
-#. C9[!
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3845,7 +3458,6 @@ msgctxt ""
msgid "print EqualUnoObjects( oIntrospection, oIntro2 )"
msgstr "print EqualUnoObjects( oIntrospection, oIntro2 )"
-#. (WP_
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3855,7 +3467,6 @@ msgctxt ""
msgid "// Copy of structs as value -> new instance"
msgstr "// structs-ს ასლი , როგორც მნიშვნელობა -> ახალი შემთხვევა"
-#. YUL4
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3865,7 +3476,6 @@ msgctxt ""
msgid "Dim Struct1 as new com.sun.star.beans.Property"
msgstr "Dim Struct1 როგორც ახალი com.sun.star.beans.თვისება"
-#. kRos
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3875,7 +3485,6 @@ msgctxt ""
msgid "Struct2 = Struct1"
msgstr "Struct2 = Struct1"
-#. 8iE_
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3885,7 +3494,6 @@ msgctxt ""
msgid "print EqualUnoObjects( Struct1, Struct2 )"
msgstr "print EqualUnoObjects( Struct1, Struct2 )"
-#. ;A.4
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3894,7 +3502,6 @@ msgctxt ""
msgid "FileAttr-Function [Runtime]"
msgstr "Split Function [Runtime]"
-#. 2%k9
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3903,7 +3510,6 @@ msgctxt ""
msgid "<bookmark_value>FileAttr function</bookmark_value>"
msgstr "<bookmark_value>Str ფუნქცია</bookmark_value>"
-#. ={4K
#: 03020405.xhp
#, fuzzy
msgctxt ""
@@ -3914,7 +3520,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020405.xhp\" name=\"FileAttr-Function [Runtime]\">FileAttr Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-#. !]o)
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3924,7 +3529,6 @@ msgctxt ""
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 ""
-#. .@pU
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3934,7 +3538,6 @@ msgctxt ""
msgid "If you use a 32-Bit operating system, you cannot use the FileAttr-Function to determine the file access number."
msgstr ""
-#. ]=r@
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3944,7 +3547,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr ""
-#. e_.0
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3954,7 +3556,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. `(9^
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3964,7 +3565,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr ""
-#. W|-~
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3974,7 +3574,6 @@ msgctxt ""
msgid "Return value:"
msgstr "დაბრუნებული მნიშვნელობა:"
-#. ihPc
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3984,7 +3583,6 @@ msgctxt ""
msgid "Integer"
msgstr ""
-#. JBlI
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3994,7 +3592,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. #ulr
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4004,7 +3601,6 @@ msgctxt ""
msgid "<emph>FileNumber:</emph> The number of the file that was opened with the Open statement."
msgstr ""
-#. lNet
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4014,7 +3610,6 @@ msgctxt ""
msgid "<emph>Attribute:</emph> Integer expression that indicates the type of file information that you want to return. The following values are possible:"
msgstr ""
-#. (R).
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4024,7 +3619,6 @@ msgctxt ""
msgid "1: The FileAttr-Function indicates the access mode of the file."
msgstr ""
-#. ),R7
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4034,7 +3628,6 @@ msgctxt ""
msgid "2: The FileAttr-Function returns the file access number of the operating system."
msgstr ""
-#. M/|;
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4044,7 +3637,6 @@ msgctxt ""
msgid "If you specify a parameter attribute with a value of 1, the following return values apply:"
msgstr ""
-#. 0MhK
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4054,7 +3646,6 @@ msgctxt ""
msgid "1 - INPUT (file open for input)"
msgstr ""
-#. I(+L
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4064,7 +3655,6 @@ msgctxt ""
msgid "2 - OUTPUT (file open for output)"
msgstr ""
-#. n5WO
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4074,7 +3664,6 @@ msgctxt ""
msgid "4 - RANDOM (file open for random access)"
msgstr ""
-#. ^ULb
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4084,7 +3673,6 @@ msgctxt ""
msgid "8 - APPEND (file open for appending)"
msgstr ""
-#. jr;E
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4094,7 +3682,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr ""
-#. B$V4
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4104,7 +3691,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. mB.]
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4114,7 +3700,6 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr ""
-#. Bmbe
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4124,7 +3709,6 @@ msgctxt ""
msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
msgstr ""
-#. xk4N
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4134,7 +3718,6 @@ msgctxt ""
msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
msgstr ""
-#. E0%9
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4143,7 +3726,6 @@ msgctxt ""
msgid "Randomize Statement [Runtime]"
msgstr ""
-#. VfN3
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4152,7 +3734,6 @@ msgctxt ""
msgid "<bookmark_value>Randomize statement</bookmark_value>"
msgstr "<bookmark_value>Wait განცხადება</bookmark_value>"
-#. Q*;%
#: 03080301.xhp
#, fuzzy
msgctxt ""
@@ -4163,7 +3744,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03080301.xhp\" name=\"Randomize Statement [Runtime]\">Randomize Statement [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-#. Tyy6
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4173,7 +3753,6 @@ msgctxt ""
msgid "Initializes the random-number generator."
msgstr ""
-#. HF,Y
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4183,7 +3762,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. 6v=g
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4193,7 +3771,6 @@ msgctxt ""
msgid "Randomize [Number]"
msgstr ""
-#. 622S
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4203,7 +3780,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. EP_^
#: 03080301.xhp
#, fuzzy
msgctxt ""
@@ -4214,7 +3790,6 @@ msgctxt ""
msgid "<emph>Number:</emph> Any integer value that initializes the random-number generator."
msgstr "<emph>რიცხვი</emph> არის თარიღის შიდა რიცხვი."
-#. Q.O*
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4224,7 +3799,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. #$Bb
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4234,7 +3808,6 @@ msgctxt ""
msgid "iVar = Int((10 * Rnd) ) ' Range from 0 To 9"
msgstr ""
-#. (i,2
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4244,7 +3817,6 @@ msgctxt ""
msgid "MsgBox sText,0,\"Spectral Distribution\""
msgstr ""
-#. qaF-
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4253,7 +3825,6 @@ msgctxt ""
msgid "DimArray Function [Runtime]"
msgstr "Split Function [Runtime]"
-#. Qfd|
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4262,7 +3833,6 @@ msgctxt ""
msgid "<bookmark_value>DimArray function</bookmark_value>"
msgstr "<bookmark_value>CVErr ფუნქცია</bookmark_value>"
-#. 0FBv
#: 03104300.xhp
#, fuzzy
msgctxt ""
@@ -4273,7 +3843,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray Function [Runtime]\">DimArray Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-#. Shnq
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4283,7 +3852,6 @@ msgctxt ""
msgid "Returns a Variant array."
msgstr ""
-#. wL0y
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4293,7 +3861,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. EP#8
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4303,7 +3870,6 @@ msgctxt ""
msgid "DimArray ( Argument list)"
msgstr ""
-#. .TvI
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4313,7 +3879,6 @@ msgctxt ""
msgid "See also <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">Array</link>"
msgstr ""
-#. fP[Q
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4323,7 +3888,6 @@ msgctxt ""
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 ""
-#. Fs%H
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4333,7 +3897,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. vpqI
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4343,7 +3906,6 @@ msgctxt ""
msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
msgstr ""
-#. ^^_[
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4353,7 +3915,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. UiOy
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4363,7 +3924,6 @@ msgctxt ""
msgid "DimArray( 2, 2, 4 ) is the same as DIM a( 2, 2, 4 )"
msgstr ""
-#. sRD\
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4372,7 +3932,6 @@ msgctxt ""
msgid "TypeName Function; VarType Function[Runtime]"
msgstr ""
-#. ?G{^
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4381,7 +3940,6 @@ msgctxt ""
msgid "<bookmark_value>TypeName function</bookmark_value><bookmark_value>VarType function</bookmark_value>"
msgstr "<bookmark_value>Mid ფუნქცია</bookmark_value><bookmark_value>Mid დებულება</bookmark_value>"
-#. SyVt
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4391,7 +3949,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function[Runtime]\">TypeName Function; VarType Function[Runtime]</link>"
msgstr ""
-#. O.^c
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4401,7 +3958,6 @@ msgctxt ""
msgid "Returns a string (TypeName) or a numeric value (VarType) that contains information for a variable."
msgstr ""
-#. 1(0h
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4411,7 +3967,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. +*hA
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4421,7 +3976,6 @@ msgctxt ""
msgid "TypeName (Variable)VarType (Variable)"
msgstr ""
-#. 0Ydn
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4431,7 +3985,6 @@ msgctxt ""
msgid "Return value:"
msgstr "დაბრუნებული მნიშვნელობა:"
-#. E6aC
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4441,7 +3994,6 @@ msgctxt ""
msgid "String; Integer"
msgstr ""
-#. aoC_
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4451,7 +4003,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. x?rb
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4461,7 +4012,6 @@ msgctxt ""
msgid "<emph>Variable:</emph> The variable that you want to determine the type of. You can use the following values:"
msgstr ""
-#. mcd7
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4471,7 +4021,6 @@ msgctxt ""
msgid "key word"
msgstr ""
-#. Yx:-
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4481,7 +4030,6 @@ msgctxt ""
msgid "VarType"
msgstr ""
-#. i698
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4491,7 +4039,6 @@ msgctxt ""
msgid "Variable type"
msgstr ""
-#. TxUT
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4501,7 +4048,6 @@ msgctxt ""
msgid "Boolean"
msgstr ""
-#. !,V6
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4511,7 +4057,6 @@ msgctxt ""
msgid "11"
msgstr ""
-#. G~4(
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4521,7 +4066,6 @@ msgctxt ""
msgid "Boolean variable"
msgstr ""
-#. *O9O
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4531,7 +4075,6 @@ msgctxt ""
msgid "Date"
msgstr ""
-#. uLaD
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4541,7 +4084,6 @@ msgctxt ""
msgid "7"
msgstr ""
-#. 25)e
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4551,7 +4093,6 @@ msgctxt ""
msgid "Date variable"
msgstr ""
-#. CPLZ
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4561,7 +4102,6 @@ msgctxt ""
msgid "Double"
msgstr ""
-#. p3EX
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4571,7 +4111,6 @@ msgctxt ""
msgid "5"
msgstr ""
-#. WsVl
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4581,7 +4120,6 @@ msgctxt ""
msgid "Double floating point variable"
msgstr ""
-#. SIw-
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4591,7 +4129,6 @@ msgctxt ""
msgid "Integer"
msgstr ""
-#. 9rRf
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4601,7 +4138,6 @@ msgctxt ""
msgid "2"
msgstr ""
-#. \apP
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4611,7 +4147,6 @@ msgctxt ""
msgid "Integer variable"
msgstr ""
-#. L^Wp
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4621,7 +4156,6 @@ msgctxt ""
msgid "Long"
msgstr ""
-#. cft#
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4631,7 +4165,6 @@ msgctxt ""
msgid "3"
msgstr ""
-#. 4gq7
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4641,7 +4174,6 @@ msgctxt ""
msgid "Long integer variable"
msgstr ""
-#. \aBX
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4651,7 +4183,6 @@ msgctxt ""
msgid "Object"
msgstr "ობიექტი"
-#. 7(6i
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4661,7 +4192,6 @@ msgctxt ""
msgid "9"
msgstr ""
-#. pz-!
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4671,7 +4201,6 @@ msgctxt ""
msgid "Object variable"
msgstr ""
-#. T/r,
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4681,7 +4210,6 @@ msgctxt ""
msgid "Single"
msgstr ""
-#. Hp\v
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4691,7 +4219,6 @@ msgctxt ""
msgid "4"
msgstr ""
-#. )j\w
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4701,7 +4228,6 @@ msgctxt ""
msgid "Single floating-point variable"
msgstr ""
-#. /J!v
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4711,7 +4237,6 @@ msgctxt ""
msgid "String"
msgstr "სტრიქონები"
-#. nf,l
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4721,7 +4246,6 @@ msgctxt ""
msgid "8"
msgstr "8"
-#. mnx_
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4731,7 +4255,6 @@ msgctxt ""
msgid "String variable"
msgstr ""
-#. l!]e
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4741,7 +4264,6 @@ msgctxt ""
msgid "Variant"
msgstr ""
-#. PcCp
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4751,7 +4273,6 @@ msgctxt ""
msgid "12"
msgstr ""
-#. a,^Q
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4761,7 +4282,6 @@ msgctxt ""
msgid "Variant variable (can contain all types specified by the definition)"
msgstr ""
-#. xyd9
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4771,7 +4291,6 @@ msgctxt ""
msgid "Empty"
msgstr ""
-#. m(+\
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4781,7 +4300,6 @@ msgctxt ""
msgid "0"
msgstr ""
-#. J%N!
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4791,7 +4309,6 @@ msgctxt ""
msgid "Variable is not initialized"
msgstr ""
-#. _]}]
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4801,7 +4318,6 @@ msgctxt ""
msgid "Null"
msgstr "ნული"
-#. *8BY
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4811,7 +4327,6 @@ msgctxt ""
msgid "1"
msgstr ""
-#. QRtd
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4821,7 +4336,6 @@ msgctxt ""
msgid "No valid data"
msgstr ""
-#. FyQa
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4831,7 +4345,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. n/Dl
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4841,7 +4354,6 @@ msgctxt ""
msgid "TypeName(lVar) & \" \" & VarType(lVar),0,\"Some types In $[officename] Basic\""
msgstr ""
-#. OMUH
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4850,7 +4362,6 @@ msgctxt ""
msgid "Hour Function [Runtime]"
msgstr "Split Function [Runtime]"
-#. /\`E
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4859,7 +4370,6 @@ msgctxt ""
msgid "<bookmark_value>Hour function</bookmark_value>"
msgstr "<bookmark_value>CCur ფუნქცია</bookmark_value>"
-#. e:[[
#: 03030201.xhp
#, fuzzy
msgctxt ""
@@ -4870,7 +4380,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour Function [Runtime]\">Hour Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-#. 1Gq2
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4880,7 +4389,6 @@ msgctxt ""
msgid "Returns the hour from a time value that is generated by the TimeSerial or the TimeValue function."
msgstr ""
-#. J*+}
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4890,7 +4398,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. k4,E
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4900,7 +4407,6 @@ msgctxt ""
msgid "Hour (Number)"
msgstr ""
-#. @gPA
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4910,7 +4416,6 @@ msgctxt ""
msgid "Return value:"
msgstr "დაბრუნებული მნიშვნელობა:"
-#. S]R`
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4920,7 +4425,6 @@ msgctxt ""
msgid "Integer"
msgstr ""
-#. llUh
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4930,7 +4434,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. *JmV
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4940,7 +4443,6 @@ msgctxt ""
msgid "<emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the hour value."
msgstr ""
-#. ~VeE
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4950,7 +4452,6 @@ msgctxt ""
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 ""
-#. [sR.
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4960,7 +4461,6 @@ msgctxt ""
msgid "Print Hour(TimeSerial(12,30,41))"
msgstr ""
-#. q]+)
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4970,7 +4470,6 @@ msgctxt ""
msgid "returns the value 12."
msgstr ""
-#. TAk)
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4980,7 +4479,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. I8]m
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4990,7 +4488,6 @@ msgctxt ""
msgid "Sub ExampleHour"
msgstr "Sub ExampleStr"
-#. Cpi-
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4999,36897 +4496,3 @@ msgctxt ""
"help.text"
msgid "Print \"The current hour is \" & Hour( Now )"
msgstr ""
-
-#. D]#~
-#: 03030201.xhp
-msgctxt ""
-"03030201.xhp\n"
-"par_id3153145\n"
-"15\n"
-"help.text"
-msgid "End Sub"
-msgstr ""
-
-#. j%qT
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"tit\n"
-"help.text"
-msgid "End Statement [Runtime]"
-msgstr ""
-
-#. K~rM
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"bm_id3150771\n"
-"help.text"
-msgid "<bookmark_value>End statement</bookmark_value>"
-msgstr "<bookmark_value>LSet განაცხადი</bookmark_value>"
-
-#. %@Kc
-#: 03090404.xhp
-#, fuzzy
-msgctxt ""
-"03090404.xhp\n"
-"hd_id3150771\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. tIn\
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3153126\n"
-"2\n"
-"help.text"
-msgid "Ends a procedure or block."
-msgstr ""
-
-#. *P3P
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"hd_id3147264\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. SO;+
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3148552\n"
-"4\n"
-"help.text"
-msgid "End, End Function, End If, End Select, End Sub"
-msgstr ""
-
-#. A/2Q
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"hd_id3149456\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. g-$S
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3150398\n"
-"6\n"
-"help.text"
-msgid "Use the End statement as follows:"
-msgstr ""
-
-#. j}Im
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"hd_id3154366\n"
-"7\n"
-"help.text"
-msgid "Statement"
-msgstr ""
-
-#. K]c7
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3151043\n"
-"8\n"
-"help.text"
-msgid "End: Is not required, but can be entered anywhere within a procedure to end the program execution."
-msgstr ""
-
-#. [`6q
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3145171\n"
-"9\n"
-"help.text"
-msgid "End Function: Ends a <emph>Function</emph> statement."
-msgstr ""
-
-#. 0@vs
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3153192\n"
-"10\n"
-"help.text"
-msgid "End If: Marks the end of a <emph>If...Then...Else</emph> block."
-msgstr ""
-
-#. `kN?
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3148451\n"
-"11\n"
-"help.text"
-msgid "End Select: Marks the end of a <emph>Select Case</emph> block."
-msgstr ""
-
-#. n],8
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3155131\n"
-"12\n"
-"help.text"
-msgid "End Sub: Ends a <emph>Sub</emph> statement."
-msgstr ""
-
-#. k;j]
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"hd_id3146120\n"
-"13\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. [TtR
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3152887\n"
-"19\n"
-"help.text"
-msgid "Print \"Number from 1 to 5\""
-msgstr ""
-
-#. ZkTf
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3148618\n"
-"21\n"
-"help.text"
-msgid "Print \"Number from 6 to 8\""
-msgstr ""
-
-#. jKo:
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3147436\n"
-"23\n"
-"help.text"
-msgid "Print \"Greater than 8\""
-msgstr ""
-
-#. fKkS
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3150418\n"
-"25\n"
-"help.text"
-msgid "Print \"Outside range 1 to 10\""
-msgstr ""
-
-#. CnCT
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"tit\n"
-"help.text"
-msgid "HasUnoInterfaces Function [Runtime]"
-msgstr ""
-
-#. I@SF
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"bm_id3149987\n"
-"help.text"
-msgid "<bookmark_value>HasUnoInterfaces function</bookmark_value>"
-msgstr "<bookmark_value>IsUnoStruct ფუნქცია</bookmark_value>"
-
-#. KdX[
-#: 03104400.xhp
-#, fuzzy
-msgctxt ""
-"03104400.xhp\n"
-"hd_id3149987\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"HasUnoInterfaces Function [Runtime]\">HasUnoInterfaces Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. -S+W
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"par_id3151262\n"
-"2\n"
-"help.text"
-msgid "Tests if a Basic Uno object supports certain Uno interfaces."
-msgstr ""
-
-#. 0fNv
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"par_id3154232\n"
-"3\n"
-"help.text"
-msgid "Returns True, if <emph>all</emph> stated Uno interfaces are supported, otherwise False is returned."
-msgstr ""
-
-#. J1Ui
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"hd_id3150040\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. ApR+
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"par_id3155555\n"
-"5\n"
-"help.text"
-msgid "HasUnoInterfaces( oTest, Uno-Interface-Name 1 [, Uno-Interface-Name 2, ...])"
-msgstr ""
-
-#. Ynf?
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"hd_id3153345\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. xYhO
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"par_id3148538\n"
-"7\n"
-"help.text"
-msgid "Bool"
-msgstr ""
-
-#. @\`M
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"hd_id3159157\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. ]W)}
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"par_id3155419\n"
-"9\n"
-"help.text"
-msgid "<emph>oTest:</emph> the Basic Uno object that you want to test."
-msgstr ""
-
-#. _~xO
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"par_id3149236\n"
-"10\n"
-"help.text"
-msgid "<emph>Uno-Interface-Name:</emph> list of Uno interface names."
-msgstr ""
-
-#. c`dZ
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"hd_id3147574\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. -0KX
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"par_id3149580\n"
-"12\n"
-"help.text"
-msgid "bHas = HasUnoInterfaces( oTest, \"com.sun.star.beans.XIntrospection\" )"
-msgstr "bHas = HasUnoInterfaces( oTest, \"com.sun.star.beans.XIntrospection\" )"
-
-#. 7(of
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"tit\n"
-"help.text"
-msgid "Choose Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. ],sC
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"bm_id3143271\n"
-"help.text"
-msgid "<bookmark_value>Choose function</bookmark_value>"
-msgstr "<bookmark_value>Chr ფუნქცია</bookmark_value>"
-
-#. 5c$.
-#: 03090402.xhp
-#, fuzzy
-msgctxt ""
-"03090402.xhp\n"
-"hd_id3143271\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. #)#q
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"par_id3149234\n"
-"2\n"
-"help.text"
-msgid "Returns a selected value from a list of arguments."
-msgstr ""
-
-#. RP,+
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"hd_id3148943\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. N@%}
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"par_id3147560\n"
-"4\n"
-"help.text"
-msgid "Choose (Index, Selection1[, Selection2, ... [,Selection_n]])"
-msgstr ""
-
-#. 177C
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"hd_id3154346\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. }-{$
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"par_id3148664\n"
-"6\n"
-"help.text"
-msgid "<emph>Index:</emph> A numeric expression that specifies the value to return."
-msgstr ""
-
-#. l4%N
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"par_id3150791\n"
-"7\n"
-"help.text"
-msgid "<emph>Selection1:</emph> Any expression that contains one of the possible choices."
-msgstr ""
-
-#. gga6
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"par_id3151043\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 ""
-
-#. arD[
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"par_id3153192\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 ""
-
-#. KpE;
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"par_id3156281\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 ""
-
-#. p|(}
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"hd_id3150439\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. i(XK
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"par_id3156443\n"
-"20\n"
-"help.text"
-msgid "ChooseMenu = Choose(Index, \"Quick Format\", \"Save Format\", \"System Format\")"
-msgstr ""
-
-#. w\%=
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"tit\n"
-"help.text"
-msgid "Line Input # Statement [Runtime]"
-msgstr ""
-
-#. 4%%U
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"bm_id3153361\n"
-"help.text"
-msgid "<bookmark_value>Line Input statement</bookmark_value>"
-msgstr "<bookmark_value>LSet განაცხადი</bookmark_value>"
-
-#. 3F2G
-#: 03020203.xhp
-#, fuzzy
-msgctxt ""
-"03020203.xhp\n"
-"hd_id3153361\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020203.xhp\" name=\"Line Input # Statement [Runtime]\">Line Input # Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. Sj,.
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"par_id3156280\n"
-"2\n"
-"help.text"
-msgid "Reads strings from a sequential file into a variable."
-msgstr ""
-
-#. WG9N
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"hd_id3150447\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. g6^P
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"par_id3147229\n"
-"4\n"
-"help.text"
-msgid "Line Input #FileNumber As Integer, Var As String"
-msgstr ""
-
-#. NR%i
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"hd_id3145173\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. 4d2(
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"par_id3161832\n"
-"6\n"
-"help.text"
-msgid "<emph>FileNumber: </emph>Number of the file that contains the data that you want to read. The file must have been opened in advance with the Open statement using the key word INPUT."
-msgstr ""
-
-#. x`yP
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"par_id3151119\n"
-"7\n"
-"help.text"
-msgid "<emph>var:</emph> The name of the variable that stores the result."
-msgstr ""
-
-#. QZLF
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"par_id3150010\n"
-"8\n"
-"help.text"
-msgid "With the <emph>Line Input#</emph> statement, you can read strings from an open file into a variable. String variables are read line-by-line up to the first carriage return (Asc=13) or linefeed (Asc=10). Line end marks are not included in the resulting string."
-msgstr ""
-
-#. 5f5D
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"hd_id3163711\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. z2G,
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"par_id3147124\n"
-"18\n"
-"help.text"
-msgid "Print #iNumber, \"This is a line of text\""
-msgstr ""
-
-#. NqRB
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"par_id3153415\n"
-"19\n"
-"help.text"
-msgid "Print #iNumber, \"This is another line of text\""
-msgstr ""
-
-#. D^+l
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Xor-Operator [Runtime]"
-msgstr ""
-
-#. pN|r
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"bm_id3156024\n"
-"help.text"
-msgid "<bookmark_value>Xor operator (logical)</bookmark_value>"
-msgstr ""
-
-#. ~:h!
-#: 03060600.xhp
-#, fuzzy
-msgctxt ""
-"03060600.xhp\n"
-"hd_id3156024\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. )N(K
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"par_id3159414\n"
-"2\n"
-"help.text"
-msgid "Performs a logical Exclusive-Or combination of two expressions."
-msgstr ""
-
-#. dNxb
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"hd_id3153381\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. [ZzC
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"par_id3150400\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 Xor Expression2"
-msgstr ""
-
-#. zk]c
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"hd_id3153968\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. 2;jT
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"par_id3150448\n"
-"6\n"
-"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the combination."
-msgstr ""
-
-#. \P1L
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"par_id3125864\n"
-"7\n"
-"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to combine."
-msgstr "<emph>Expression1, Expression2:</emph> ნებისმიერი ციფრული სიდიდეები ან სტრიქონები, რომლებიც გინდათ შეადაროთ."
-
-#. Al(3
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"par_id3150439\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 ""
-
-#. 5g#d
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"par_id3153770\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 ""
-
-#. ?J_)
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"hd_id3153366\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. CZ/:
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"par_id3156442\n"
-"15\n"
-"help.text"
-msgid "vOut = vA > vB Xor vB > vC ' returns 0"
-msgstr ""
-
-#. !AeU
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"par_id3153191\n"
-"16\n"
-"help.text"
-msgid "vOut = vB > vA Xor vB > vC ' returns -1"
-msgstr ""
-
-#. _oB%
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"par_id3153144\n"
-"17\n"
-"help.text"
-msgid "vOut = vA > vB Xor vB > vD ' returns -1"
-msgstr ""
-
-#. (r9;
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"par_id3154944\n"
-"18\n"
-"help.text"
-msgid "vOut = (vB > vD Xor vB > vA) ' returns 0"
-msgstr ""
-
-#. !q+O
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"par_id3148455\n"
-"19\n"
-"help.text"
-msgid "vOut = vB Xor vA ' returns 2"
-msgstr ""
-
-#. [8xy
-#: 03080600.xhp
-msgctxt ""
-"03080600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Absolute Values"
-msgstr ""
-
-#. CFRg
-#: 03080600.xhp
-msgctxt ""
-"03080600.xhp\n"
-"hd_id3146958\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080600.xhp\" name=\"Absolute Values\">Absolute Values</link>"
-msgstr ""
-
-#. 8[BE
-#: 03080600.xhp
-msgctxt ""
-"03080600.xhp\n"
-"par_id3150771\n"
-"2\n"
-"help.text"
-msgid "This function returns absolute values."
-msgstr ""
-
-#. A\R;
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefLng Statement [Runtime]"
-msgstr ""
-
-#. 3p/6
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"bm_id3148538\n"
-"help.text"
-msgid "<bookmark_value>DefLng statement</bookmark_value>"
-msgstr "<bookmark_value>DefSng განცხადება</bookmark_value>"
-
-#. DoPV
-#: 03101600.xhp
-#, fuzzy
-msgctxt ""
-"03101600.xhp\n"
-"hd_id3148538\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. 1@1o
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"par_id3149514\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 ""
-
-#. f3F7
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"hd_id3150504\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. rnc^
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"par_id3145609\n"
-"4\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr ""
-
-#. .M8j
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"hd_id3154760\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. G0oR
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"par_id3145069\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 ""
-
-#. RXhJ
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"par_id3150791\n"
-"7\n"
-"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr ""
-
-#. z:PX
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"par_id3148798\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr ""
-
-#. S)|I
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"par_id3154686\n"
-"9\n"
-"help.text"
-msgid "<emph>DefLng:</emph> Long"
-msgstr "<emph>DefStr:</emph> სტრინგი"
-
-#. oV$?
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"hd_id3153192\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. zOm(
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"par_id3154124\n"
-"12\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr ""
-
-#. $FJP
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"par_id3145273\n"
-"22\n"
-"help.text"
-msgid "lCount=123456789 ' lCount is an implicit long integer variable"
-msgstr ""
-
-#. 7iSf
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Using Variables"
-msgstr ""
-
-#. *_Q0
-#: 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 ""
-
-#. vWaT
-#: 01020100.xhp
-#, fuzzy
-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/05060700.xhp\" name=\"მაკრო\">მაკრო</link>"
-
-#. B(#a
-#: 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 ""
-
-#. ?r1z
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3153361\n"
-"4\n"
-"help.text"
-msgid "Naming Conventions for Variable Identifiers"
-msgstr ""
-
-#. ]zOw
-#: 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 ""
-
-#. t=1?
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3156422\n"
-"6\n"
-"help.text"
-msgid "Examples for variable identifiers:"
-msgstr ""
-
-#. K9H=
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3156441\n"
-"126\n"
-"help.text"
-msgid "Correct"
-msgstr ""
-
-#. 5mq*
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3149664\n"
-"127\n"
-"help.text"
-msgid "Correct"
-msgstr ""
-
-#. (r(r
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3146119\n"
-"128\n"
-"help.text"
-msgid "Correct"
-msgstr ""
-
-#. oz,B
-#: 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 ""
-
-#. *!V7
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3154510\n"
-"15\n"
-"help.text"
-msgid "Correct"
-msgstr ""
-
-#. 7OMI
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3150330\n"
-"129\n"
-"help.text"
-msgid "Not valid, special characters are not allowed"
-msgstr ""
-
-#. pfz+
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3154254\n"
-"130\n"
-"help.text"
-msgid "Not valid, variable may not begin with a number"
-msgstr ""
-
-#. WV@O
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3149256\n"
-"131\n"
-"help.text"
-msgid "Not valid, punctuation marks are not allowed"
-msgstr ""
-
-#. Chom
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3146317\n"
-"17\n"
-"help.text"
-msgid "Declaring Variables"
-msgstr ""
-
-#. sQ)3
-#: 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 ""
-
-#. BWL/
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3154118\n"
-"140\n"
-"help.text"
-msgid "Examples for variable declarations:"
-msgstr ""
-
-#. Gv^n
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3150982\n"
-"132\n"
-"help.text"
-msgid "Declares the variable \"a\" as a String"
-msgstr ""
-
-#. 5b;?
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3150343\n"
-"133\n"
-"help.text"
-msgid "Declares the variable \"a\" as a String"
-msgstr ""
-
-#. A)ZY
-#: 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 ""
-
-#. rA]-
-#: 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 ""
-
-#. Em/U
-#: 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 ""
-
-#. yxDI
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3154527\n"
-"134\n"
-"help.text"
-msgid "Declares \"a\" as a String"
-msgstr ""
-
-#. X#o[
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3153064\n"
-"135\n"
-"help.text"
-msgid "Type-declaration missing: \"a$=\""
-msgstr ""
-
-#. lsZ,
-#: 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 ""
-
-#. .1oZ
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3149331\n"
-"27\n"
-"help.text"
-msgid "Forcing Variable Declarations"
-msgstr ""
-
-#. ~Ahq
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3149443\n"
-"28\n"
-"help.text"
-msgid "To force declaration of variables, use the following command:"
-msgstr ""
-
-#. pn/d
-#: 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 ""
-
-#. J)%h
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3154614\n"
-"34\n"
-"help.text"
-msgid "Variable Types"
-msgstr ""
-
-#. v{i?
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3155383\n"
-"35\n"
-"help.text"
-msgid "$[officename] Basic supports four variable classes:"
-msgstr ""
-
-#. ?Jp$
-#: 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 ""
-
-#. oZ8_
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3159226\n"
-"37\n"
-"help.text"
-msgid "<emph>String</emph> variables contain character strings."
-msgstr ""
-
-#. N5Du
-#: 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 ""
-
-#. @S^l
-#: 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 ""
-
-#. xdv@
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3153805\n"
-"40\n"
-"help.text"
-msgid "Integer Variables"
-msgstr ""
-
-#. Ja/?
-#: 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 ""
-
-#. b_wk
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3147546\n"
-"45\n"
-"help.text"
-msgid "Long Integer Variables"
-msgstr ""
-
-#. Ya\^
-#: 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 ""
-
-#. f60_
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id7596972\n"
-"help.text"
-msgid "Decimal Variables"
-msgstr ""
-
-#. [?[O
-#: 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 ""
-
-#. Wpq_
-#: 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 ""
-
-#. F+^9
-#: 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 ""
-
-#. xW{R
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3147500\n"
-"50\n"
-"help.text"
-msgid "Single Variables"
-msgstr ""
-
-#. j]p#
-#: 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 ""
-
-#. Szb]
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3155753\n"
-"54\n"
-"help.text"
-msgid "Double Variables"
-msgstr ""
-
-#. pk`~
-#: 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 ""
-
-#. ?iH/
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3155747\n"
-"95\n"
-"help.text"
-msgid "Currency Variables"
-msgstr ""
-
-#. %}.a
-#: 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 ""
-
-#. YRb5
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3148742\n"
-"58\n"
-"help.text"
-msgid "String Variables"
-msgstr ""
-
-#. %l5[
-#: 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 ""
-
-#. o)nB
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3150534\n"
-"62\n"
-"help.text"
-msgid "Boolean Variables"
-msgstr ""
-
-#. G4Id
-#: 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 ""
-
-#. WnT|
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3149722\n"
-"65\n"
-"help.text"
-msgid "Date Variables"
-msgstr ""
-
-#. U_I^
-#: 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 ""
-
-#. SN6t
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3148732\n"
-"68\n"
-"help.text"
-msgid "Initial Variable Values"
-msgstr ""
-
-#. s^lU
-#: 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 ""
-
-#. }UFk
-#: 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 ""
-
-#. KW#C
-#: 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 ""
-
-#. ?[2V
-#: 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 ""
-
-#. kz=I
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3153936\n"
-"83\n"
-"help.text"
-msgid "Arrays"
-msgstr ""
-
-#. 5kH+
-#: 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 ""
-
-#. 3l+-
-#: 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 ""
-
-#. QEV+
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3154567\n"
-"136\n"
-"help.text"
-msgid "21 elements numbered from 0 to 20"
-msgstr ""
-
-#. VNpI
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3154397\n"
-"137\n"
-"help.text"
-msgid "30 elements (a matrix of 6 x 5 elements)"
-msgstr ""
-
-#. l:~!
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3149690\n"
-"138\n"
-"help.text"
-msgid "21 elements numbered from 5 to 25"
-msgstr ""
-
-#. =$V\
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3153113\n"
-"89\n"
-"help.text"
-msgid "21 elements (including 0), numbered from -15 to 5"
-msgstr ""
-
-#. DH\j
-#: 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 ""
-
-#. uG-I
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3154507\n"
-"91\n"
-"help.text"
-msgid "Constants"
-msgstr ""
-
-#. GHjG
-#: 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 ""
-
-#. V=3Z
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefObj Statement [Runtime]"
-msgstr ""
-
-#. 2}^e
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"bm_id3149811\n"
-"help.text"
-msgid "<bookmark_value>DefObj statement</bookmark_value>"
-msgstr "<bookmark_value>DefCur განცხადება</bookmark_value>"
-
-#. 0,G/
-#: 03101700.xhp
-#, fuzzy
-msgctxt ""
-"03101700.xhp\n"
-"hd_id3149811\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"DefObj Statement [Runtime]\">DefObj Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. 2eMY
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3147573\n"
-"2\n"
-"help.text"
-msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
-msgstr ""
-
-#. 4buU
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"hd_id3150504\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 9rmz
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3147530\n"
-"4\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr ""
-
-#. RO1W
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"hd_id3153896\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. -.hY
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3148552\n"
-"6\n"
-"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
-msgstr ""
-
-#. tKg+
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3150358\n"
-"7\n"
-"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr ""
-
-#. p=G|
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3148798\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr ""
-
-#. F/41
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3150769\n"
-"9\n"
-"help.text"
-msgid "<emph>DefObj:</emph> Object"
-msgstr ""
-
-#. iQKO
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"hd_id3156212\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. bGmG
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3153969\n"
-"12\n"
-"help.text"
-msgid "REM Prefix definitions for variable types:"
-msgstr ""
-
-#. I.%M
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3156424\n"
-"13\n"
-"help.text"
-msgid "DefBool b"
-msgstr ""
-
-#. 9ok(
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3159254\n"
-"14\n"
-"help.text"
-msgid "DefDate t"
-msgstr ""
-
-#. 0U5I
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3150440\n"
-"15\n"
-"help.text"
-msgid "DefDbL d"
-msgstr ""
-
-#. !ajZ
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3161832\n"
-"16\n"
-"help.text"
-msgid "DefInt i"
-msgstr ""
-
-#. _``1
-#: 03101700.xhp
-#, fuzzy
-msgctxt ""
-"03101700.xhp\n"
-"par_id3145365\n"
-"17\n"
-"help.text"
-msgid "DefLng l"
-msgstr "DefSng s"
-
-#. 5tub
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3149481\n"
-"18\n"
-"help.text"
-msgid "DefObj o"
-msgstr ""
-
-#. [EE4
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3152886\n"
-"19\n"
-"help.text"
-msgid "DefVar v"
-msgstr ""
-
-#. LpU|
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Let Statement [Runtime]"
-msgstr ""
-
-#. JP!%
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"bm_id3147242\n"
-"help.text"
-msgid "<bookmark_value>Let statement</bookmark_value>"
-msgstr "<bookmark_value>LSet განაცხადი</bookmark_value>"
-
-#. UW)@
-#: 03103100.xhp
-#, fuzzy
-msgctxt ""
-"03103100.xhp\n"
-"hd_id3147242\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. %B.X
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"par_id3149233\n"
-"2\n"
-"help.text"
-msgid "Assigns a value to a variable."
-msgstr ""
-
-#. *AiS
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"hd_id3153127\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. g:~C
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"par_id3154285\n"
-"4\n"
-"help.text"
-msgid "[Let] VarName=Expression"
-msgstr ""
-
-#. fkYg
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"hd_id3148944\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. 3*j%
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"par_id3147560\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 ""
-
-#. xgrr
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"par_id3148451\n"
-"7\n"
-"help.text"
-msgid "As in most BASIC dialects, the keyword <emph>Let</emph> is optional."
-msgstr ""
-
-#. 3AA_
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"hd_id3145785\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. {TLR
-#: 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"
-
-#. LVS9
-#: 03010000.xhp
-msgctxt ""
-"03010000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Screen I/O Functions"
-msgstr ""
-
-#. !9t?
-#: 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 ""
-
-#. pL.R
-#: 03010000.xhp
-msgctxt ""
-"03010000.xhp\n"
-"par_id3153770\n"
-"2\n"
-"help.text"
-msgid "This section describes the Runtime Functions used to call dialogs for the input and output of user entries."
-msgstr ""
-
-#. HJTA
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"tit\n"
-"help.text"
-msgid "CreateUnoService Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. T`0z
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"bm_id3150682\n"
-"help.text"
-msgid "<bookmark_value>CreateUnoService function</bookmark_value>"
-msgstr "<bookmark_value>CreateUnoService ფუნქცია</bookmark_value>"
-
-#. zlm6
-#: 03131600.xhp
-#, fuzzy
-msgctxt ""
-"03131600.xhp\n"
-"hd_id3150682\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. FJsP
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"par_id3152924\n"
-"2\n"
-"help.text"
-msgid "Instantiates a Uno service with the ProcessServiceManager."
-msgstr "ინიციალიზაციას უკეთებს Uno სერვიზს ProcessServiceManager-ით."
-
-#. rpp?
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"hd_id3152801\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. $T?e
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"par_id3153346\n"
-"4\n"
-"help.text"
-msgid "oService = CreateUnoService( Uno service name )"
-msgstr "oService = CreateUnoService( Uno service name )"
-
-#. ,Go$
-#: 03131600.xhp
-#, fuzzy
-msgctxt ""
-"03131600.xhp\n"
-"par_idN1060F\n"
-"help.text"
-msgid "For a list of available services, go to: http://api.libreoffice.org/docs/common/ref/com/sun/star/module-ix.html"
-msgstr "არსებული სერვისების სიის სანახავად ეწვიეთ: http://api.openoffice.org/docs/common/ref/com/sun/star/module-ix.html"
-
-#. .j-A
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"hd_id3151111\n"
-"5\n"
-"help.text"
-msgid "Examples:"
-msgstr ""
-
-#. g#Au
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"par_id3154046\n"
-"6\n"
-"help.text"
-msgid "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
-msgstr "oIntrospection = CreateUnoService(\"com.sun.star.beans.Introspection\")"
-
-#. o1Ol
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"bm_id8334604\n"
-"help.text"
-msgid "<bookmark_value>filepicker;API service</bookmark_value>"
-msgstr "<bookmark_value>filepicker;API სერვისი</bookmark_value>"
-
-#. cG5h
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"par_idN10625\n"
-"help.text"
-msgid "The following code uses a service to open a file open dialog:"
-msgstr "შემდეგი კოდი დიალოგური ფანჯრის გასახსნელად იყენებს სერვიზს."
-
-#. D`n4
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"par_idN1062B\n"
-"help.text"
-msgid "fName = FileOpenDialog (\"Please select a file\")"
-msgstr "fName = FileOpenDialog (\"გთხოვთ აირჩიოთ ფაილი\")"
-
-#. VE1e
-#: 03131600.xhp
-#, fuzzy
-msgctxt ""
-"03131600.xhp\n"
-"par_idN10630\n"
-"help.text"
-msgid "Print \"file chosen: \"+fName"
-msgstr "print \"file chosen: \"+fName"
-
-#. {);3
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"tit\n"
-"help.text"
-msgid "Month Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. K:Be
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"bm_id3153127\n"
-"help.text"
-msgid "<bookmark_value>Month function</bookmark_value>"
-msgstr "<bookmark_value>Str ფუნქცია</bookmark_value>"
-
-#. /\J|
-#: 03030104.xhp
-#, fuzzy
-msgctxt ""
-"03030104.xhp\n"
-"hd_id3153127\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month Function [Runtime]\">Month Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. .1^_
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"par_id3148550\n"
-"2\n"
-"help.text"
-msgid "Returns the month of a year from a serial date that is generated by the DateSerial or the DateValue function."
-msgstr ""
-
-#. j{O,
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"hd_id3145068\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. GAF\
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"par_id3150398\n"
-"4\n"
-"help.text"
-msgid "Month (Number)"
-msgstr ""
-
-#. 9s-q
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"hd_id3154366\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. p9KR
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"par_id3154125\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr ""
-
-#. R!ih
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"hd_id3150768\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. Sa{1
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"par_id3156423\n"
-"8\n"
-"help.text"
-msgid "<emph>Number:</emph> Numeric expression that contains the serial date number that is used to determine the month of the year."
-msgstr ""
-
-#. 0Xg1
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"par_id3153770\n"
-"9\n"
-"help.text"
-msgid "This function is the opposite of the <emph>DateSerial </emph>function. It returns the month in the year that corresponds to the serial date that is generated by <emph>DateSerial</emph> or <emph>DateValue</emph>. For example, the expression"
-msgstr ""
-
-#. ;aol
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"par_id3145366\n"
-"11\n"
-"help.text"
-msgid "returns the value 12."
-msgstr ""
-
-#. WX|`
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"hd_id3146923\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 8fN[
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"par_id3149664\n"
-"14\n"
-"help.text"
-msgid "MsgBox \"\" & Month(Now) ,64,\"The current month\""
-msgstr ""
-
-#. v9ET
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"tit\n"
-"help.text"
-msgid "GoSub...Return Statement [Runtime]"
-msgstr ""
-
-#. m`+2
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"bm_id3147242\n"
-"help.text"
-msgid "<bookmark_value>GoSub...Return statement</bookmark_value>"
-msgstr "<bookmark_value>LSet განაცხადი</bookmark_value>"
-
-#. IL\]
-#: 03090301.xhp
-#, fuzzy
-msgctxt ""
-"03090301.xhp\n"
-"hd_id3147242\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. -khL
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3145316\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 ""
-
-#. g=V;
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"hd_id3145609\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. r,Mz
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3145069\n"
-"4\n"
-"help.text"
-msgid "see Parameters"
-msgstr ""
-
-#. N)@v
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"hd_id3147265\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. NZi;
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3148664\n"
-"6\n"
-"help.text"
-msgid "Sub/Function"
-msgstr "End function"
-
-#. h^c@
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3150400\n"
-"7\n"
-"help.text"
-msgid "statement block"
-msgstr ""
-
-#. s5{;
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3154140\n"
-"8\n"
-"help.text"
-msgid "Label"
-msgstr ""
-
-#. $\cJ
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3150869\n"
-"9\n"
-"help.text"
-msgid "statement block"
-msgstr ""
-
-#. l+Ce
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3154909\n"
-"10\n"
-"help.text"
-msgid "GoSub Label"
-msgstr ""
-
-#. +MY2
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3153969\n"
-"11\n"
-"help.text"
-msgid "Exit Sub/Function"
-msgstr "End function"
-
-#. /Elh
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3154685\n"
-"12\n"
-"help.text"
-msgid "Label:"
-msgstr ""
-
-#. !:4(
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3145786\n"
-"13\n"
-"help.text"
-msgid "statement block"
-msgstr ""
-
-#. [5lC
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3159252\n"
-"14\n"
-"help.text"
-msgid "Return"
-msgstr ""
-
-#. Q?*l
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3154321\n"
-"15\n"
-"help.text"
-msgid "End Sub/Function"
-msgstr "End function"
-
-#. rTVx
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3147318\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 ""
-
-#. O,Aj
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3153190\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 ""
-
-#. $l2Z
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3145799\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 ""
-
-#. @q^9
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"hd_id3156284\n"
-"20\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. rvNV
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3146970\n"
-"25\n"
-"help.text"
-msgid "iInputa = Int(InputBox$ \"Enter the first number: \",\"NumberInput\"))"
-msgstr ""
-
-#. +/PP
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3150329\n"
-"26\n"
-"help.text"
-msgid "iInputb = Int(InputBox$ \"Enter the second number: \",\"NumberInput\"))"
-msgstr ""
-
-#. 7T}D
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3154756\n"
-"29\n"
-"help.text"
-msgid "Print \"The square root of\";iInputa;\" is\";iInputc"
-msgstr ""
-
-#. DVmo
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3147340\n"
-"32\n"
-"help.text"
-msgid "Print \"The square root of\";iInputb;\" is\";iInputc"
-msgstr ""
-
-#. R#O|
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"tit\n"
-"help.text"
-msgid "Stop Statement [Runtime]"
-msgstr ""
-
-#. oQ=*
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"bm_id3153311\n"
-"help.text"
-msgid "<bookmark_value>Stop statement</bookmark_value>"
-msgstr "<bookmark_value>Beep მტკიცებულება</bookmark_value>"
-
-#. !]1g
-#: 03090408.xhp
-#, fuzzy
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153311\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. AKbS
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"par_id3154142\n"
-"2\n"
-"help.text"
-msgid "Stops the execution of the Basic program."
-msgstr ""
-
-#. KL+x
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. JqKE
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"par_id3156023\n"
-"4\n"
-"help.text"
-msgid "Stop"
-msgstr ""
-
-#. R`wE
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3156344\n"
-"5\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. +R]U
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"tit\n"
-"help.text"
-msgid "RGB Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. Kr,C
-#: 03010305.xhp
-#, fuzzy
-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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. 5%dE
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3150447\n"
-"2\n"
-"help.text"
-msgid "Returns a <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"long integer color value\">long integer color value</link> consisting of red, green, and blue components."
-msgstr ""
-
-#. 3MXR
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"hd_id3147229\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. `dC1
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3155132\n"
-"4\n"
-"help.text"
-msgid "RGB (Red, Green, Blue)"
-msgstr ""
-
-#. K:?4
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"hd_id3156442\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. cpy,
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3159153\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr ""
-
-#. {#Nu
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"hd_id3154013\n"
-"7\n"
-"help.text"
-msgid "Parameter:"
-msgstr ""
-
-#. bQra
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3152597\n"
-"8\n"
-"help.text"
-msgid "<emph>Red</emph>: Any integer expression that represents the red component (0-255) of the composite color."
-msgstr ""
-
-#. Xc##
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3146974\n"
-"9\n"
-"help.text"
-msgid "<emph>Green</emph>: Any integer expression that represents the green component (0-255) of the composite color."
-msgstr ""
-
-#. .j@o
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3151113\n"
-"10\n"
-"help.text"
-msgid "<emph>Blue</emph>: Any integer expression that represents the blue component (0-255) of the composite color."
-msgstr ""
-
-#. 3P{K
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"hd_id3147435\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. vcX,
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3145647\n"
-"15\n"
-"help.text"
-msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
-msgstr ""
-
-#. k~*r
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3154491\n"
-"16\n"
-"help.text"
-msgid "\"red= \" & red(lVar) & Chr(13)&_"
-msgstr ""
-
-#. UW.U
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3149401\n"
-"17\n"
-"help.text"
-msgid "\"green= \" & green(lVar) & Chr(13)&_"
-msgstr ""
-
-#. M3|T
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3150716\n"
-"18\n"
-"help.text"
-msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
-msgstr ""
-
-#. KzPt
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsNull Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. pV7J
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"bm_id3155555\n"
-"help.text"
-msgid "<bookmark_value>IsNull function</bookmark_value><bookmark_value>Null value</bookmark_value>"
-msgstr "<bookmark_value>Mid ფუნქცია</bookmark_value><bookmark_value>Mid დებულება</bookmark_value>"
-
-#. -89b
-#: 03102600.xhp
-#, fuzzy
-msgctxt ""
-"03102600.xhp\n"
-"hd_id3155555\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. WLEP
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"par_id3146957\n"
-"2\n"
-"help.text"
-msgid "Tests if a Variant contains the special Null value, indicating that the variable does not contain data."
-msgstr ""
-
-#. nC;n
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"hd_id3150670\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. ?W.r
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"par_id3150984\n"
-"4\n"
-"help.text"
-msgid "IsNull (Var)"
-msgstr ""
-
-#. =_kG
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"hd_id3149514\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. Z|G*
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"par_id3145609\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr ""
-
-#. @j8$
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"hd_id3149669\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. QKst
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"par_id3159414\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 ""
-
-#. =\zw
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"par_idN1062A\n"
-"help.text"
-msgid "<emph>Null</emph> - This value is used for a variant data sub type without valid contents."
-msgstr ""
-
-#. (#+S
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"hd_id3153381\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. %fYR
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"tit\n"
-"help.text"
-msgid "\"+\" Operator [Runtime]"
-msgstr ""
-
-#. 8E|G
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"bm_id3145316\n"
-"help.text"
-msgid "<bookmark_value>\"+\" operator (mathematical)</bookmark_value>"
-msgstr ""
-
-#. 4I-6
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"hd_id3145316\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03070300.xhp\">\"+\" Operator [Runtime]</link>"
-msgstr ""
-
-#. ]X.;
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"par_id3145068\n"
-"2\n"
-"help.text"
-msgid "Adds or combines two expressions."
-msgstr ""
-
-#. ]SUO
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"hd_id3144500\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. v*Xr
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"par_id3150358\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 + Expression2"
-msgstr ""
-
-#. AM~E
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"hd_id3150400\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. v*.C
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"par_id3154123\n"
-"6\n"
-"help.text"
-msgid "<emph>Result:</emph> Any numerical expression that contains the result of the addition."
-msgstr ""
-
-#. X(k}
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"par_id3150870\n"
-"7\n"
-"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to combine or to add."
-msgstr "<emph>Expression1, Expression2:</emph> ნებისმიერი ციფრული სიდიდეები ან სტრიქონები, რომლებიც გინდათ შეადაროთ."
-
-#. Di)B
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"hd_id3153969\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 0IUo
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"tit\n"
-"help.text"
-msgid "Trim Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. wg;!
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"bm_id3150616\n"
-"help.text"
-msgid "<bookmark_value>Trim function</bookmark_value>"
-msgstr "<bookmark_value>Trim ფუნქცია</bookmark_value>"
-
-#. Q~P7
-#: 03120311.xhp
-#, fuzzy
-msgctxt ""
-"03120311.xhp\n"
-"hd_id3150616\n"
-"1\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. XmKB
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"par_id3149177\n"
-"2\n"
-"help.text"
-msgid "Removes all leading and trailing spaces from a string expression."
-msgstr "წაშლის ყველა"
-
-#. wO,N
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"hd_id3159157\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. XgN9
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"par_id3155341\n"
-"4\n"
-"help.text"
-msgid "Trim( Text As String )"
-msgstr "Trim( Text As String )"
-
-#. |/U9
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"hd_id3155388\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. Y\lo
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"par_id3143228\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "სტრიქონები"
-
-#. $K(E
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"hd_id3145609\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. D:!6
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"par_id3159414\n"
-"8\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string expression."
-msgstr "<emph>ტექსტი: </emph>ნებისმიერი სტრინგული გამოსახულება."
-
-#. ^`=5
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"hd_id3148663\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. pdie
-#: 03000000.xhp
-msgctxt ""
-"03000000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Run-Time Functions"
-msgstr ""
-
-#. Um+=
-#: 03000000.xhp
-msgctxt ""
-"03000000.xhp\n"
-"hd_id3152895\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Run-Time Functions\">Run-Time Functions</link></variable>"
-msgstr ""
-
-#. [=O*
-#: 03000000.xhp
-msgctxt ""
-"03000000.xhp\n"
-"par_id3148983\n"
-"2\n"
-"help.text"
-msgid "This section describes the Runtime Functions of <item type=\"productname\">%PRODUCTNAME</item> Basic."
-msgstr ""
-
-#. ^o2k
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"tit\n"
-"help.text"
-msgid "Open Statement[Runtime]"
-msgstr ""
-
-#. oh8p
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"bm_id3150791\n"
-"help.text"
-msgid "<bookmark_value>Open statement</bookmark_value>"
-msgstr "<bookmark_value>LSet განაცხადი</bookmark_value>"
-
-#. C;y%
-#: 03020103.xhp
-#, fuzzy
-msgctxt ""
-"03020103.xhp\n"
-"hd_id3150791\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open Statement[Runtime]\">Open Statement[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. =P.0
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3150769\n"
-"2\n"
-"help.text"
-msgid "Opens a data channel."
-msgstr ""
-
-#. azng
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"hd_id3147230\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. $2J3
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3154124\n"
-"4\n"
-"help.text"
-msgid "Open FileName As String [For Mode] [Access IOMode] [Protected] As [#]FileNumber As Integer [Len = DatasetLength]"
-msgstr ""
-
-#. pi/N
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"hd_id3156280\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. #4l1
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3155132\n"
-"6\n"
-"help.text"
-msgid "<emph>FileName: </emph>Name and path of the file that you wan to open. If you try to read a file that does not exist (Access = Read), an error message appears. If you try to write to a file that does not exist (Access = Write), a new file is created."
-msgstr ""
-
-#. !:(y
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3149262\n"
-"7\n"
-"help.text"
-msgid "<emph>Mode:</emph> Keyword that specifies the file mode. Valid values: Append (append to sequential file), Binary (data can be accessed by bytes using Get and Put), Input (opens data channel for reading), Output (opens data channel for writing), and Random (edits relative files)."
-msgstr ""
-
-#. $@pH
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3154014\n"
-"8\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 ""
-
-#. \S@%
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3150011\n"
-"9\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 ""
-
-#. xfEG
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3153190\n"
-"10\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 ""
-
-#. kEX/
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3151115\n"
-"11\n"
-"help.text"
-msgid "<emph>DatasetLength:</emph> For random access files, set the length of the records."
-msgstr ""
-
-#. .~/,
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3153418\n"
-"12\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 ""
-
-#. ~eP5
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"hd_id3149123\n"
-"13\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. ,gmO
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3154705\n"
-"22\n"
-"help.text"
-msgid "Print #iNumber, \"This is a line of text\""
-msgstr ""
-
-#. \mCg
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3146916\n"
-"23\n"
-"help.text"
-msgid "Print #iNumber, \"This is another line of text\""
-msgstr ""
-
-#. @i*-
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"tit\n"
-"help.text"
-msgid "\"*\" Operator [Runtime]"
-msgstr ""
-
-#. 3Kg2
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"bm_id3147573\n"
-"help.text"
-msgid "<bookmark_value>\"*\" operator (mathematical)</bookmark_value>"
-msgstr ""
-
-#. b{C7
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"hd_id3147573\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03070200.xhp\">\"*\" Operator [Runtime]</link>"
-msgstr ""
-
-#. X^t!
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"par_id3154347\n"
-"2\n"
-"help.text"
-msgid "Multiplies two values."
-msgstr ""
-
-#. D%GK
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"hd_id3148946\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. =?sL
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"par_id3150358\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 * Expression2"
-msgstr ""
-
-#. g(U0
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"hd_id3150400\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. ?Ai]
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"par_id3154365\n"
-"6\n"
-"help.text"
-msgid "<emph>Result:</emph> Any numeric expression that records the result of a multiplication."
-msgstr ""
-
-#. *b=j
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"par_id3154685\n"
-"7\n"
-"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to multiply."
-msgstr "<emph>Expression1, Expression2:</emph> ნებისმიერი ციფრული სიდიდეები ან სტრიქონები, რომლებიც გინდათ შეადაროთ."
-
-#. O?|q
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"hd_id3153968\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. vJHv
-#: 03020000.xhp
-msgctxt ""
-"03020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "File I/O Functions"
-msgstr ""
-
-#. jU8B
-#: 03020000.xhp
-msgctxt ""
-"03020000.xhp\n"
-"hd_id3156344\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020000.xhp\" name=\"File I/O Functions\">File I/O Functions</link>"
-msgstr ""
-
-#. ).GC
-#: 03020000.xhp
-msgctxt ""
-"03020000.xhp\n"
-"par_id3153360\n"
-"2\n"
-"help.text"
-msgid "Use File I/O functions to create and manage user-defined (data) files."
-msgstr ""
-
-#. ZA%2
-#: 03020000.xhp
-msgctxt ""
-"03020000.xhp\n"
-"par_id3150398\n"
-"3\n"
-"help.text"
-msgid "You can use these functions to support the creation of \"relative\" files, so that you can save and reload certain records by specifying their record number. File I/O functions can also help you manage your files by providing you with information such as file size, current path settings, or the creation date of a file or a directory."
-msgstr ""
-
-#. Cak%
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"tit\n"
-"help.text"
-msgid "CStr Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. k6hG
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"bm_id3146958\n"
-"help.text"
-msgid "<bookmark_value>CStr function</bookmark_value>"
-msgstr "<bookmark_value>Str ფუნქცია</bookmark_value>"
-
-#. `*bT
-#: 03101000.xhp
-#, fuzzy
-msgctxt ""
-"03101000.xhp\n"
-"hd_id3146958\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. Yx%M
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3147574\n"
-"2\n"
-"help.text"
-msgid "Converts any numeric expression to a string expression."
-msgstr ""
-
-#. \p[]
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"hd_id3148473\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. t:38
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3145315\n"
-"4\n"
-"help.text"
-msgid "CStr (Expression)"
-msgstr "Str (გამოსახულება)"
-
-#. |HL{
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"hd_id3153062\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. 9Wke
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3153897\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "სტრიქონები"
-
-#. )*p5
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"hd_id3154760\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. K3k;
-#: 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>ტექსტი:</emph> თქვენთვის რედაქტირებისთვის სასურველი ნებისმიერი ტექსტური გამოსახულება."
-
-#. U#^w
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"hd_id3150358\n"
-"9\n"
-"help.text"
-msgid "Expression Types and Conversion Returns"
-msgstr ""
-
-#. %r-Q
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3153192\n"
-"10\n"
-"help.text"
-msgid "Boolean :"
-msgstr ""
-
-#. I8^5
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3156422\n"
-"11\n"
-"help.text"
-msgid "String that evaluates to either <emph>True</emph> or <emph>False</emph>."
-msgstr ""
-
-#. [gqK
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3147287\n"
-"12\n"
-"help.text"
-msgid "Date :"
-msgstr ""
-
-#. 7nG%
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3155411\n"
-"13\n"
-"help.text"
-msgid "String that contains the date and time."
-msgstr ""
-
-#. rVu*
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3147428\n"
-"14\n"
-"help.text"
-msgid "Null :"
-msgstr ""
-
-#. l3xa
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3150486\n"
-"15\n"
-"help.text"
-msgid "Run-time error."
-msgstr ""
-
-#. ;_!0
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3153953\n"
-"16\n"
-"help.text"
-msgid "Empty :"
-msgstr ""
-
-#. cW8`
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3155306\n"
-"17\n"
-"help.text"
-msgid "String without any characters."
-msgstr ""
-
-#. R}9k
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3149260\n"
-"18\n"
-"help.text"
-msgid "Any :"
-msgstr ""
-
-#. kER;
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3152938\n"
-"19\n"
-"help.text"
-msgid "Corresponding number as string."
-msgstr ""
-
-#. 3fo:
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3155738\n"
-"20\n"
-"help.text"
-msgid "Zeros at the end of a floating-point number are not included in the returned string."
-msgstr ""
-
-#. 3G`K
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"hd_id3154729\n"
-"21\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. Kbb9
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"tit\n"
-"help.text"
-msgid "Close Statement [Runtime]"
-msgstr ""
-
-#. ^%-1
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"bm_id3157896\n"
-"help.text"
-msgid "<bookmark_value>Close statement</bookmark_value>"
-msgstr "<bookmark_value>LSet განაცხადი</bookmark_value>"
-
-#. R%Pj
-#: 03020101.xhp
-#, fuzzy
-msgctxt ""
-"03020101.xhp\n"
-"hd_id3157896\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. FBba
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"par_id3147573\n"
-"2\n"
-"help.text"
-msgid "Closes a specified file that was opened with the Open statement."
-msgstr ""
-
-#. AJyg
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"hd_id3156344\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. (ga}
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"par_id3147265\n"
-"4\n"
-"help.text"
-msgid "Close FileNumber As Integer[, FileNumber2 As Integer[,...]]"
-msgstr ""
-
-#. ]]v(
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"hd_id3153379\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. %9vG
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"par_id3150791\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 ""
-
-#. ;OB}
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"hd_id3153192\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. HWS^
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"par_id3153727\n"
-"16\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr ""
-
-#. S^If
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"par_id3147350\n"
-"17\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr ""
-
-#. J-xp
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsObject Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. $_sD
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"bm_id3149346\n"
-"help.text"
-msgid "<bookmark_value>IsObject function</bookmark_value>"
-msgstr "<bookmark_value>CreateObject ფუნქცია</bookmark_value>"
-
-#. 4DMM
-#: 03102800.xhp
-#, fuzzy
-msgctxt ""
-"03102800.xhp\n"
-"hd_id3149346\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function [Runtime]\">IsObject Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. *`Qe
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"par_id3148538\n"
-"2\n"
-"help.text"
-msgid "Tests if an object variable is an OLE object. The function returns True if the variable is an OLE object, otherwise it returns False."
-msgstr ""
-
-#. M}Hd
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"hd_id3149234\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. Ug:7
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"par_id3154285\n"
-"4\n"
-"help.text"
-msgid "IsObject (ObjectVar)"
-msgstr ""
-
-#. U@a\
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"hd_id3148685\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. VXS)
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"par_id3156024\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr ""
-
-#. pE@5
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"hd_id3148947\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. HLT%
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"par_id3148552\n"
-"8\n"
-"help.text"
-msgid "<emph>ObjectVar:</emph> Any variable that you want to test. If the Object variable contains an OLE object, the function returns True."
-msgstr ""
-
-#. 17eZ
-#: 03132500.xhp
-msgctxt ""
-"03132500.xhp\n"
-"tit\n"
-"help.text"
-msgid "GetDefaultContext Function [Runtime]"
-msgstr ""
-
-#. 3DR#
-#: 03132500.xhp
-msgctxt ""
-"03132500.xhp\n"
-"bm_id4761192\n"
-"help.text"
-msgid "<bookmark_value>GetDefaultContext function</bookmark_value>"
-msgstr "<bookmark_value>GetDefaultContext</bookmark_value>"
-
-#. @Fg6
-#: 03132500.xhp
-msgctxt ""
-"03132500.xhp\n"
-"par_idN10580\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03132500.xhp\">GetDefaultContext Function [Runtime]</link>"
-msgstr ""
-
-#. m%?-
-#: 03132500.xhp
-msgctxt ""
-"03132500.xhp\n"
-"par_idN10590\n"
-"help.text"
-msgid "Returns the default context of the process service factory, if existent, else returns a null reference."
-msgstr "არსებობის შემთხვევაში აბრუნებს სერვისის ქარხნის საწყის შინაარს, წინააღმდეგ შემთხვევაში აბრუნებს null მითითებას"
-
-#. PO,p
-#: 03132500.xhp
-#, fuzzy
-msgctxt ""
-"03132500.xhp\n"
-"par_idN10593\n"
-"help.text"
-msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
-msgstr "გაშვების ფუნქცია გამოსაყენებლად აბრუნებს საწყის კომპონენტს,XmultiServiceFactory -ის ინსტანტირების დროს. დამატებითი ინფორმაციისთვის იხილეთ <item type=\"literal\">Professional UNO</item> თავი <item type=\"literal\">პროგრამისტის სახელმძღვანელოში</item> მისამართზე:<link href=\"http://api.openoffice.org\">api.openoffice.org</link>."
-
-#. r/)l
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"tit\n"
-"help.text"
-msgid "Atn Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. q\jk
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"bm_id3150616\n"
-"help.text"
-msgid "<bookmark_value>Atn function</bookmark_value>"
-msgstr "<bookmark_value>Asc ფუნქცია</bookmark_value>"
-
-#. +GH6
-#: 03080101.xhp
-#, fuzzy
-msgctxt ""
-"03080101.xhp\n"
-"hd_id3150616\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. CbCh
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3149346\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 ""
-
-#. D/0U
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3143271\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 ""
-
-#. O7gj
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3145315\n"
-"4\n"
-"help.text"
-msgid "Atn(side opposite the angle/side adjacent to angle)= Alpha"
-msgstr ""
-
-#. 9R-)
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"hd_id3149669\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. .rkX
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3148947\n"
-"6\n"
-"help.text"
-msgid "Atn (Number)"
-msgstr ""
-
-#. L14@
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"hd_id3148664\n"
-"7\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. c0f4
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3150359\n"
-"8\n"
-"help.text"
-msgid "Double"
-msgstr ""
-
-#. +c4n
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"hd_id3148798\n"
-"9\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. ]FX$
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3156212\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 ""
-
-#. a0Xe
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3153192\n"
-"11\n"
-"help.text"
-msgid "To convert radians to degrees, multiply radians by 180/pi."
-msgstr ""
-
-#. _eOA
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3147230\n"
-"12\n"
-"help.text"
-msgid "degree=(radian*180)/pi"
-msgstr ""
-
-#. kVMZ
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3125864\n"
-"13\n"
-"help.text"
-msgid "radian=(degree*pi)/180"
-msgstr ""
-
-#. 5*)~
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3159252\n"
-"14\n"
-"help.text"
-msgid "Pi is here the fixed circle constant with the rounded value 3.14159."
-msgstr ""
-
-#. =vZ*
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"hd_id3153142\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 1e5A
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3146985\n"
-"16\n"
-"help.text"
-msgid "' The following example calculates for a right-angled triangle"
-msgstr ""
-
-#. 3K2Z
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3145750\n"
-"17\n"
-"help.text"
-msgid "' the angle Alpha from the tangent of the angle Alpha:"
-msgstr ""
-
-#. ZNfv
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3151112\n"
-"19\n"
-"help.text"
-msgid "' rounded Pi = 3.14159 Is a predefined constant"
-msgstr ""
-
-#. i|p3
-#: 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 ""
-
-#. i-O:
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3149482\n"
-"23\n"
-"help.text"
-msgid "d2 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"Opposite\")"
-msgstr ""
-
-#. 3QX,
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3155415\n"
-"24\n"
-"help.text"
-msgid "Print \"The Alpha angle is\"; (atn (d2/d1) * 180 / Pi); \" degrees\""
-msgstr ""
-
-#. Y]g,
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"tit\n"
-"help.text"
-msgid "Rnd Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. 9h1a
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"bm_id3148685\n"
-"help.text"
-msgid "<bookmark_value>Rnd function</bookmark_value>"
-msgstr "<bookmark_value>Asc ფუნქცია</bookmark_value>"
-
-#. d_O2
-#: 03080302.xhp
-#, fuzzy
-msgctxt ""
-"03080302.xhp\n"
-"hd_id3148685\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. VJ=E
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3149669\n"
-"2\n"
-"help.text"
-msgid "Returns a random number between 0 and 1."
-msgstr ""
-
-#. =$?*
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"hd_id3153897\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. J]-D
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3150543\n"
-"4\n"
-"help.text"
-msgid "Rnd [(Expression)]"
-msgstr ""
-
-#. b%Be
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"hd_id3149655\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. J.KZ
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3154365\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr ""
-
-#. 8N^h
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"hd_id3154909\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. iT;#
-#: 03080302.xhp
-#, fuzzy
-msgctxt ""
-"03080302.xhp\n"
-"par_id3125864\n"
-"8\n"
-"help.text"
-msgid "<emph>Expression:</emph> Any numeric expression."
-msgstr "<emph>Expression: </emph>ნებისმიერი ციფრული გამოსახულება."
-
-#. lCsH
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3155306\n"
-"12\n"
-"help.text"
-msgid "<emph>Omitted:</emph> Returns the next random number in the sequence."
-msgstr ""
-
-#. 3{CQ
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3147318\n"
-"14\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 ""
-
-#. ldKx
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"hd_id3151118\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. ]a?w
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3147124\n"
-"21\n"
-"help.text"
-msgid "Print \"Number from 1 to 5\""
-msgstr ""
-
-#. #=!1
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3154943\n"
-"23\n"
-"help.text"
-msgid "Print \"Number from 6 to 8\""
-msgstr ""
-
-#. FOsi
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3151074\n"
-"25\n"
-"help.text"
-msgid "Print \"Greater than 8\""
-msgstr ""
-
-#. U2GQ
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3155602\n"
-"27\n"
-"help.text"
-msgid "Print \"Outside range 1 to 10\""
-msgstr ""
-
-#. [n%G
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"tit\n"
-"help.text"
-msgid "Str Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. IOtT
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"bm_id3143272\n"
-"help.text"
-msgid "<bookmark_value>Str function</bookmark_value>"
-msgstr "<bookmark_value>Str ფუნქცია</bookmark_value>"
-
-#. nW)+
-#: 03120103.xhp
-#, fuzzy
-msgctxt ""
-"03120103.xhp\n"
-"hd_id3143272\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. LBCo
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"par_id3155100\n"
-"2\n"
-"help.text"
-msgid "Converts a numeric expression into a string."
-msgstr "ციფრული გამოსახულების სტრიქონში გადაყვანა."
-
-#. ;N(d
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"hd_id3109850\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. ZfkW
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"par_id3149497\n"
-"4\n"
-"help.text"
-msgid "Str (Expression)"
-msgstr "Str (გამოსახულება)"
-
-#. {3YZ
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"hd_id3150040\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. #/[J
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"par_id3146117\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "სტრიქონები"
-
-#. !]6a
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"hd_id3155805\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. ?qvH
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"par_id3149178\n"
-"8\n"
-"help.text"
-msgid "<emph>Expression: </emph>Any numeric expression."
-msgstr "<emph>Expression: </emph>ნებისმიერი ციფრული გამოსახულება."
-
-#. 6\:B
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"par_id3146958\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 ""
-
-#. q,*)
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"hd_id3155419\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. [*^m
-#: 03030300.xhp
-msgctxt ""
-"03030300.xhp\n"
-"tit\n"
-"help.text"
-msgid "System Date and Time"
-msgstr ""
-
-#. 8-^;
-#: 03030300.xhp
-msgctxt ""
-"03030300.xhp\n"
-"hd_id3154923\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030300.xhp\" name=\"System Date and Time\">System Date and Time</link>"
-msgstr ""
-
-#. j,o.
-#: 03030300.xhp
-msgctxt ""
-"03030300.xhp\n"
-"par_id3149457\n"
-"2\n"
-"help.text"
-msgid "The following functions and statements set or return the system date and time."
-msgstr ""
-
-#. ,NB(
-#: 03090200.xhp
-msgctxt ""
-"03090200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Loops"
-msgstr ""
-
-#. .^ji
-#: 03090200.xhp
-#, fuzzy
-msgctxt ""
-"03090200.xhp\n"
-"hd_id3153990\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"Loops\">Loops</link>"
-msgstr "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"მაკრო\">მაკრო</link>"
-
-#. @h#c
-#: 03090200.xhp
-msgctxt ""
-"03090200.xhp\n"
-"par_id3147226\n"
-"2\n"
-"help.text"
-msgid "The following statements execute loops."
-msgstr ""
-
-#. *sgM
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Mathematical Operators"
-msgstr ""
-
-#. 2]J?
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"hd_id3149234\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"Mathematical Operators\">Mathematical Operators</link>"
-msgstr ""
-
-#. .!j@
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"par_id3145068\n"
-"2\n"
-"help.text"
-msgid "The following mathematical operators are supported in $[officename] Basic."
-msgstr ""
-
-#. B`Lr
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"par_id3148552\n"
-"3\n"
-"help.text"
-msgid "This chapter provides a short overview of all of the arithmetical operators that you may need for calculations within a program."
-msgstr ""
-
-#. :/W3
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"tit\n"
-"help.text"
-msgid "Do...Loop Statement [Runtime]"
-msgstr ""
-
-#. e$j,
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"bm_id3156116\n"
-"help.text"
-msgid "<bookmark_value>Do...Loop statement</bookmark_value><bookmark_value>While; Do loop</bookmark_value><bookmark_value>Until</bookmark_value><bookmark_value>loops</bookmark_value>"
-msgstr ""
-
-#. @i,T
-#: 03090201.xhp
-#, fuzzy
-msgctxt ""
-"03090201.xhp\n"
-"hd_id3156116\n"
-"1\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. GJA-
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3109850\n"
-"2\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 ""
-
-#. 9@2U
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"hd_id3149119\n"
-"3\n"
-"help.text"
-msgid "Syntax"
-msgstr ""
-
-#. rZ;L
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3155150\n"
-"4\n"
-"help.text"
-msgid "Do [{While | Until} condition = True]"
-msgstr ""
-
-#. :`Me
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3154422\n"
-"5\n"
-"help.text"
-msgid "statement block"
-msgstr ""
-
-#. ]ZSs
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3150789\n"
-"6\n"
-"help.text"
-msgid "[Exit Do]"
-msgstr ""
-
-#. rpFU
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3155805\n"
-"7\n"
-"help.text"
-msgid "statement block"
-msgstr ""
-
-#. CLjv
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3145090\n"
-"8\n"
-"help.text"
-msgid "Loop"
-msgstr ""
-
-#. AcGd
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3154749\n"
-"9\n"
-"help.text"
-msgid "or"
-msgstr "ან"
-
-#. #x=?
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3150503\n"
-"10\n"
-"help.text"
-msgid "Do"
-msgstr ""
-
-#. lvU~
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149762\n"
-"11\n"
-"help.text"
-msgid "statement block"
-msgstr ""
-
-#. (%+z
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3150984\n"
-"12\n"
-"help.text"
-msgid "[Exit Do]"
-msgstr ""
-
-#. b6i`
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3143228\n"
-"13\n"
-"help.text"
-msgid "statement block"
-msgstr ""
-
-#. +mO!
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149235\n"
-"14\n"
-"help.text"
-msgid "Loop [{While | Until} condition = True]"
-msgstr ""
-
-#. (3f9
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"hd_id3156024\n"
-"15\n"
-"help.text"
-msgid "Parameters/Elements"
-msgstr ""
-
-#. InF[
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3156344\n"
-"16\n"
-"help.text"
-msgid "<emph>Condition:</emph> A comparison, numeric or string expression, that evaluates either True or False."
-msgstr ""
-
-#. x#jG
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149669\n"
-"17\n"
-"help.text"
-msgid "<emph>Statement block:</emph> Statements that you want to repeat while or until the condition is True."
-msgstr ""
-
-#. 2F%_
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3150791\n"
-"18\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 ""
-
-#. IPB[
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"hd_id3154366\n"
-"19\n"
-"help.text"
-msgid "Syntax"
-msgstr ""
-
-#. hX*9
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3145171\n"
-"20\n"
-"help.text"
-msgid "Do While condition = True"
-msgstr ""
-
-#. XMK%
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149203\n"
-"21\n"
-"help.text"
-msgid "...statement block"
-msgstr ""
-
-#. @0)A
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3125864\n"
-"22\n"
-"help.text"
-msgid "Loop"
-msgstr ""
-
-#. hZl_
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3154124\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 ""
-
-#. zT*4
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3153968\n"
-"25\n"
-"help.text"
-msgid "Do Until condition = True"
-msgstr ""
-
-#. lq$s
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3154909\n"
-"26\n"
-"help.text"
-msgid "...statement block"
-msgstr ""
-
-#. C_f7
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3159151\n"
-"27\n"
-"help.text"
-msgid "Loop"
-msgstr ""
-
-#. W$_c
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3150440\n"
-"29\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 ""
-
-#. 6aAC
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3153952\n"
-"30\n"
-"help.text"
-msgid "Do"
-msgstr ""
-
-#. k=.h
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3147349\n"
-"31\n"
-"help.text"
-msgid "...statement block"
-msgstr ""
-
-#. /}7q
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3159153\n"
-"32\n"
-"help.text"
-msgid "Loop While condition = True"
-msgstr ""
-
-#. O+N3
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3146985\n"
-"34\n"
-"help.text"
-msgid "The statement block between the Do and the Loop statements repeats so long as the condition is true."
-msgstr ""
-
-#. J26Q
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3150488\n"
-"35\n"
-"help.text"
-msgid "Do"
-msgstr ""
-
-#. (JAy
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3153189\n"
-"36\n"
-"help.text"
-msgid "...statement block"
-msgstr ""
-
-#. GB=b
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3155411\n"
-"37\n"
-"help.text"
-msgid "Loop Until condition = True"
-msgstr ""
-
-#. ?1C:
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3151117\n"
-"39\n"
-"help.text"
-msgid "The statement block between the Do and the Loop statements repeats until the condition is true."
-msgstr ""
-
-#. C+M4
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149484\n"
-"41\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 ""
-
-#. p3gw
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149262\n"
-"42\n"
-"help.text"
-msgid "Do..."
-msgstr ""
-
-#. 3e]@
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149298\n"
-"43\n"
-"help.text"
-msgid "statements"
-msgstr ""
-
-#. Qb]G
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3145646\n"
-"44\n"
-"help.text"
-msgid "If condition = True Then Exit Do"
-msgstr ""
-
-#. XMQA
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3154490\n"
-"45\n"
-"help.text"
-msgid "statements"
-msgstr ""
-
-#. 5coq
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3153159\n"
-"46\n"
-"help.text"
-msgid "Loop..."
-msgstr ""
-
-#. m9Br
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"hd_id3147396\n"
-"47\n"
-"help.text"
-msgid "Example"
-msgstr ""
-
-#. !\Fi
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"tit\n"
-"help.text"
-msgid "Oct Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. mjyo
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"bm_id3155420\n"
-"help.text"
-msgid "<bookmark_value>Oct function</bookmark_value>"
-msgstr "<bookmark_value>მარცხენა ფუნქცია</bookmark_value>"
-
-#. A~X1
-#: 03080802.xhp
-#, fuzzy
-msgctxt ""
-"03080802.xhp\n"
-"hd_id3155420\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. K\qP
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"par_id3154924\n"
-"2\n"
-"help.text"
-msgid "Returns the octal value of a number."
-msgstr ""
-
-#. lz4$
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"hd_id3148947\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. RI|m
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"par_id3150543\n"
-"4\n"
-"help.text"
-msgid "Oct (Number)"
-msgstr ""
-
-#. =2eN
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"hd_id3153360\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. bm]m
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"par_id3154138\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "სტრიქონები"
-
-#. 93{R
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"hd_id3156422\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. B2SA
-#: 03080802.xhp
-#, fuzzy
-msgctxt ""
-"03080802.xhp\n"
-"par_id3150768\n"
-"8\n"
-"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to convert to an octal value."
-msgstr "<emph>ტექსტი:</emph> თქვენთვის რედაქტირებისთვის სასურველი ნებისმიერი ტექსტური გამოსახულება."
-
-#. qh[G
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"hd_id3148672\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. `u63
-#: 03080400.xhp
-msgctxt ""
-"03080400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Square Root Calculation"
-msgstr ""
-
-#. }c;b
-#: 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 ""
-
-#. 7kF7
-#: 03080400.xhp
-msgctxt ""
-"03080400.xhp\n"
-"par_id3159414\n"
-"2\n"
-"help.text"
-msgid "Use this function to calculate square roots."
-msgstr ""
-
-#. S+*4
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"tit\n"
-"help.text"
-msgid "CDateFromIso Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. in.X
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"bm_id3153127\n"
-"help.text"
-msgid "<bookmark_value>CdateFromIso function</bookmark_value>"
-msgstr "<bookmark_value>ConvertFromURL ფუნქცია</bookmark_value>"
-
-#. }DV7
-#: 03030108.xhp
-#, fuzzy
-msgctxt ""
-"03030108.xhp\n"
-"hd_id3153127\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030108.xhp\" name=\"CDateFromIso Function [Runtime]\">CDateFromIso Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. -?%r
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"par_id3148550\n"
-"2\n"
-"help.text"
-msgid "Returns the internal date number from a string that contains a date in ISO format."
-msgstr ""
-
-#. !IH*
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"hd_id3148947\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. E3il
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"par_id3150400\n"
-"4\n"
-"help.text"
-msgid "CDateFromIso(String)"
-msgstr ""
-
-#. [8nn
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"hd_id3154367\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. _`..
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"par_id3156212\n"
-"6\n"
-"help.text"
-msgid "Internal date number"
-msgstr ""
-
-#. F`a0
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"hd_id3125864\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. n6B$
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"par_id3154685\n"
-"8\n"
-"help.text"
-msgid "<emph>String:</emph> A string that contains a date in ISO format. The year may have two or four digits."
-msgstr ""
-
-#. Y,bJ
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"hd_id3150439\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. GHP4
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"par_id3147318\n"
-"10\n"
-"help.text"
-msgid "dateval = CDateFromIso(\"20021231\")"
-msgstr ""
-
-#. dT5[
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"par_id3146921\n"
-"11\n"
-"help.text"
-msgid "returns 12/31/2002 in the date format of your system"
-msgstr ""
-
-#. [N0}
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"tit\n"
-"help.text"
-msgid "CCur Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. /8-(
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"bm_id8926053\n"
-"help.text"
-msgid "<bookmark_value>CCur function</bookmark_value>"
-msgstr "<bookmark_value>CCur ფუნქცია</bookmark_value>"
-
-#. z8m-
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN10541\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03100050.xhp\">CCur Function [Runtime]</link>"
-msgstr ""
-
-#. 0E|k
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN10545\n"
-"help.text"
-msgid "Converts a string expression or numeric expression to a currency expression. The locale settings are used for decimal separators and currency symbols."
-msgstr "გადაყავს სტრინგული ან რიცხვითი გამოსახულება ვალუტის გამოსახულებაში. ლოკალური პარამეტრიები გამოიყენება მეათედის გამომყოფისა და ვალუტის სიმბოლოებისთვის."
-
-#. A::U
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN10548\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. CP?2
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105E8\n"
-"help.text"
-msgid "CCur(Expression)"
-msgstr "CCur(Expression)"
-
-#. (K]+
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105EB\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. :]F|
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105EF\n"
-"help.text"
-msgid "Currency"
-msgstr "ვალუტა"
-
-#. ^wEW
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105F2\n"
-"help.text"
-msgid "Parameter:"
-msgstr ""
-
-#. gnWA
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105F6\n"
-"help.text"
-msgid "Expression: Any string or numeric expression that you want to convert."
-msgstr "<emph>ტექსტი:</emph> თქვენთვის რედაქტირებისთვის სასურველი ნებისმიერი ტექსტური გამოსახულება."
-
-#. TfF6
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"tit\n"
-"help.text"
-msgid "Tan Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. [S:-
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"bm_id3148550\n"
-"help.text"
-msgid "<bookmark_value>Tan function</bookmark_value>"
-msgstr "<bookmark_value>Va lფუნქცია</bookmark_value>"
-
-#. /r#Z
-#: 03080104.xhp
-#, fuzzy
-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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. }l.o
-#: 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 ""
-
-#. m7{0
-#: 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 ""
-
-#. WssQ
-#: 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 ""
-
-#. %mi1
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"hd_id3145174\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 95\G
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3151042\n"
-"6\n"
-"help.text"
-msgid "Tan (Number)"
-msgstr ""
-
-#. ?1w`
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"hd_id3156214\n"
-"7\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. oh-c
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3156281\n"
-"8\n"
-"help.text"
-msgid "Double"
-msgstr ""
-
-#. ~Uw3
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"hd_id3155132\n"
-"9\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. 1x[M
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3145786\n"
-"10\n"
-"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the tangent for (in radians)."
-msgstr ""
-
-#. K9hI
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3153728\n"
-"11\n"
-"help.text"
-msgid "To convert degrees to radians, multiply by Pi/180. To convert radians to degrees, multiply by 180/Pi."
-msgstr ""
-
-#. N69$
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3155414\n"
-"12\n"
-"help.text"
-msgid "degrees=(radiant*180)/Pi"
-msgstr ""
-
-#. [Fi%
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3146975\n"
-"13\n"
-"help.text"
-msgid "radiant=(degrees*Pi)/180"
-msgstr ""
-
-#. JKbQ
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3147434\n"
-"14\n"
-"help.text"
-msgid "Pi is approximately 3.141593."
-msgstr ""
-
-#. 7d_A
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"hd_id3149483\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 5bIL
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3148646\n"
-"16\n"
-"help.text"
-msgid "' In this example, the following entry is possible for a right-angled triangle:"
-msgstr ""
-
-#. $[De
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3150012\n"
-"17\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 ""
-
-#. ]^13
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3153158\n"
-"19\n"
-"help.text"
-msgid "' Pi = 3.1415926 is a pre-defined variable"
-msgstr ""
-
-#. 6o]0
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3145252\n"
-"22\n"
-"help.text"
-msgid "d1 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"opposite\")"
-msgstr ""
-
-#. *8,+
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3149582\n"
-"23\n"
-"help.text"
-msgid "dAlpha = InputBox$ (\"Enter the Alpha angle (in degrees): \",\"Alpha\")"
-msgstr ""
-
-#. `Q;/
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3154016\n"
-"24\n"
-"help.text"
-msgid "Print \"the length of the side adjacent the angle is\"; (d1 / tan (dAlpha * Pi / 180))"
-msgstr ""
-
-#. gcZ]
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"tit\n"
-"help.text"
-msgid "CDate Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. }Zs(
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"bm_id3150772\n"
-"help.text"
-msgid "<bookmark_value>CDate function</bookmark_value>"
-msgstr "<bookmark_value>CDec ფუნქცია</bookmark_value>"
-
-#. {s,C
-#: 03100300.xhp
-#, fuzzy
-msgctxt ""
-"03100300.xhp\n"
-"hd_id3150772\n"
-"1\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. x7R4
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"par_id3150986\n"
-"2\n"
-"help.text"
-msgid "Converts any string or numeric expression to a date value."
-msgstr "გარდაქმნის სტრიქონს ან ციფრულ გამოსახულებას ბაიტის ტიპისთვის."
-
-#. n(:O
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"hd_id3148944\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. JW1h
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"par_id3148947\n"
-"4\n"
-"help.text"
-msgid "CDate (Expression)"
-msgstr "CDec(Expression)"
-
-#. O?Gd
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"hd_id3148552\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. Jt+q
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"par_id3159414\n"
-"6\n"
-"help.text"
-msgid "Date"
-msgstr ""
-
-#. [k.3
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"hd_id3153525\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. DQkH
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"par_id3150359\n"
-"8\n"
-"help.text"
-msgid "<emph>Expression:</emph> Any string or numeric expression that you want to convert."
-msgstr "<emph>ტექსტი:</emph> თქვენთვის რედაქტირებისთვის სასურველი ნებისმიერი ტექსტური გამოსახულება."
-
-#. Wb)j
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"par_id3125864\n"
-"9\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 ""
-
-#. Z`fK
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"hd_id3156422\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. ~3|D
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"tit\n"
-"help.text"
-msgid "Events"
-msgstr ""
-
-#. Ux5S
-#: 01170103.xhp
-#, fuzzy
-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/05060700.xhp\" name=\"მაკრო\">მაკრო</link>"
-
-#. I?cC
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3146114\n"
-"2\n"
-"help.text"
-msgid "Define event assignments for the selected control or dialog. The available events depend on the type of control selected."
-msgstr ""
-
-#. 8IQ=
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3145387\n"
-"16\n"
-"help.text"
-msgid "When receiving focus"
-msgstr ""
-
-#. E2Wp
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3155090\n"
-"17\n"
-"help.text"
-msgid "<ahelp hid=\"HID_EVT_FOCUSGAINED\">This event takes place if a control receives the focus.</ahelp>"
-msgstr ""
-
-#. IJ5a
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3152892\n"
-"18\n"
-"help.text"
-msgid "When losing focus"
-msgstr ""
-
-#. [y0i
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3153305\n"
-"19\n"
-"help.text"
-msgid "<ahelp hid=\"HID_EVT_FOCUSLOST\">This event takes place if a control loses the focus.</ahelp>"
-msgstr ""
-
-#. F5-`
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3152896\n"
-"20\n"
-"help.text"
-msgid "Key pressed"
-msgstr ""
-
-#. btkI
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3148837\n"
-"21\n"
-"help.text"
-msgid "<ahelp hid=\"HID_EVT_KEYTYPED\">This event occurs when the user presses any key while the control has the focus.</ahelp>"
-msgstr ""
-
-#. 0@=f
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3146869\n"
-"43\n"
-"help.text"
-msgid "Key released"
-msgstr ""
-
-#. Dl4B
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3155267\n"
-"44\n"
-"help.text"
-msgid "<ahelp hid=\"HID_EVT_KEYUP\">This event occurs when the user releases a key while the control has the focus.</ahelp>"
-msgstr ""
-
-#. iIXD
-#: 01170103.xhp
-#, fuzzy
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3159096\n"
-"41\n"
-"help.text"
-msgid "Modified"
-msgstr "#-#-#-#-# autopi.po (PACKAGE VERSION) #-#-#-#-#\\nშეცვლილი\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nშეცვლილია"
-
-#. H}L]
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3156019\n"
-"42\n"
-"help.text"
-msgid "<ahelp hid=\"HID_EVT_CHANGED\">This event takes place, when the control loses the focus and the contents of the control were changed since it lost the focus.</ahelp>"
-msgstr ""
-
-#. gI$B
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3144508\n"
-"10\n"
-"help.text"
-msgid "Text modified"
-msgstr ""
-
-#. s#6o
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3148608\n"
-"11\n"
-"help.text"
-msgid "<ahelp hid=\"HID_EVT_TEXTCHANGED\">This event takes place if you enter or modify a text in an input field.</ahelp>"
-msgstr ""
-
-#. IQ7U
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3159207\n"
-"8\n"
-"help.text"
-msgid "Item status changed"
-msgstr ""
-
-#. |y?q
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3155097\n"
-"9\n"
-"help.text"
-msgid "<ahelp hid=\"HID_EVT_ITEMSTATECHANGED\">This event takes place if the status of the control field is changed, for example, from checked to unchecked.</ahelp>"
-msgstr ""
-
-#. G%=4
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3151304\n"
-"26\n"
-"help.text"
-msgid "Mouse inside"
-msgstr ""
-
-#. @(2r
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3152871\n"
-"27\n"
-"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEENTERED\">This event takes place when the mouse enters the control.</ahelp>"
-msgstr ""
-
-#. n08F
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3146778\n"
-"30\n"
-"help.text"
-msgid "Mouse moved while key pressed"
-msgstr ""
-
-#. w@z.
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3150403\n"
-"31\n"
-"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEDRAGGED\">This event takes place when the mouse is dragged while a key is pressed.</ahelp>"
-msgstr ""
-
-#. LZkk
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3150210\n"
-"32\n"
-"help.text"
-msgid "Mouse moved"
-msgstr ""
-
-#. ~{aF
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3149697\n"
-"33\n"
-"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEMOVED\">This event takes place when the mouse moves over the control.</ahelp>"
-msgstr ""
-
-#. ^-)l
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3145216\n"
-"22\n"
-"help.text"
-msgid "Mouse button pressed"
-msgstr ""
-
-#. ymJi
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3155914\n"
-"23\n"
-"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEPRESSED\">This event takes place when the mouse button is pressed while the mouse pointer is on the control.</ahelp>"
-msgstr ""
-
-#. zyg$
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3148899\n"
-"24\n"
-"help.text"
-msgid "Mouse button released"
-msgstr ""
-
-#. fHfa
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3153812\n"
-"25\n"
-"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSERELEASED\">This event takes place when the mouse button is released while the mouse pointer is on the control.</ahelp>"
-msgstr ""
-
-#. uaC/
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3153556\n"
-"28\n"
-"help.text"
-msgid "Mouse outside"
-msgstr ""
-
-#. S_i.
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3153013\n"
-"29\n"
-"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when the mouse leaves the control.</ahelp>"
-msgstr ""
-
-#. lReL
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3155759\n"
-"45\n"
-"help.text"
-msgid "While adjusting"
-msgstr ""
-
-#. |b/v
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3156364\n"
-"46\n"
-"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when a scrollbar is being dragged.</ahelp>"
-msgstr ""
-
-#. :Hll
-#: 01050200.xhp
-msgctxt ""
-"01050200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Call Stack Window (Calls)"
-msgstr ""
-
-#. edOd
-#: 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 ""
-
-#. j2`X
-#: 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 ""
-
-#. C5SF
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"tit\n"
-"help.text"
-msgid "TwipsPerPixelY Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. qWke
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"bm_id3150040\n"
-"help.text"
-msgid "<bookmark_value>TwipsPerPixelY function</bookmark_value>"
-msgstr "<bookmark_value>TwipsPerPixelY ფუნქცია</bookmark_value>"
-
-#. [w*P
-#: 03131400.xhp
-#, fuzzy
-msgctxt ""
-"03131400.xhp\n"
-"hd_id3150040\n"
-"1\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. h{;+
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"par_id3154186\n"
-"2\n"
-"help.text"
-msgid "Returns the number of twips that represent the height of a pixel."
-msgstr "აბრუნებს twip-ების რაოდენობას, რომელიც განსაზღვრავს პიქსელის სიმაღლეს."
-
-#. bZ,I
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"hd_id3145090\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. @6C%
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"par_id3153681\n"
-"4\n"
-"help.text"
-msgid "n = TwipsPerPixelY"
-msgstr "n = TwipsPerPixelY"
-
-#. jXDd
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"hd_id3148473\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. MU~A
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"par_id3154306\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr ""
-
-#. :!j*
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"hd_id3149235\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. sM03
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"par_id3154142\n"
-"9\n"
-"help.text"
-msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
-msgstr ""
-
-#. $f[{
-#: 03120100.xhp
-msgctxt ""
-"03120100.xhp\n"
-"tit\n"
-"help.text"
-msgid "ASCII/ANSI Conversion in Strings"
-msgstr "ASCII/ANSI შედარება სტრიქონებში"
-
-#. 8U+W
-#: 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 ""
-
-#. 6%oo
-#: 03120100.xhp
-msgctxt ""
-"03120100.xhp\n"
-"par_id3159201\n"
-"2\n"
-"help.text"
-msgid "The following functions convert strings to and from ASCII or ANSI code."
-msgstr "აღნიშნული ფუნქციები გარდაქმნის სტრიქონებს ASCII ან ANSI კოდად."
-
-#. bJmh
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"tit\n"
-"help.text"
-msgid "With Statement [Runtime]"
-msgstr ""
-
-#. ,Z,]
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"bm_id3153311\n"
-"help.text"
-msgid "<bookmark_value>With statement</bookmark_value>"
-msgstr "<bookmark_value>Wait განცხადება</bookmark_value>"
-
-#. Sm9q
-#: 03090411.xhp
-#, fuzzy
-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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. KEC+
-#: 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 ""
-
-#. N)0;
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"hd_id3156153\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 5#@T
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"par_id3145609\n"
-"4\n"
-"help.text"
-msgid "With Object Statement block End With"
-msgstr ""
-
-#. [Was
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"hd_id3154924\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. uqI:
-#: 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 ""
-
-#. !hRV
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"tit\n"
-"help.text"
-msgid "DatePart Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. 1P:_
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"bm_id249946\n"
-"help.text"
-msgid "<bookmark_value>DatePart function</bookmark_value>"
-msgstr "<bookmark_value>DatePart ფუნქცია</bookmark_value>"
-
-#. !yPV
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN10542\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030130.xhp\">DatePart Function [Runtime]</link>"
-msgstr ""
-
-#. 4Ls0
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN10546\n"
-"help.text"
-msgid "The DatePart function returns a specified part of a date."
-msgstr "DatePart ფუნქცია აბრუნებს თარიღის კონკრეტულ ნაწილს."
-
-#. /)oc
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN10549\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. l{?W
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN105E8\n"
-"help.text"
-msgid "DatePart (Add, Date [, Week_start [, Year_start]])"
-msgstr "DatePart (Add, Date [, Week_start [, Year_start]])"
-
-#. %#$1
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN105EB\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. Yb[S
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN105EF\n"
-"help.text"
-msgid "A Variant containing a date."
-msgstr ""
-
-#. b:?M
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN105F2\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. $LDQ
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN105F6\n"
-"help.text"
-msgid "<emph>Add</emph> - A string expression from the following table, specifying the date interval."
-msgstr "Add - სტრინგული გამოსახულება მომდევნო ცხრილიდან, რომელიც მიუთითებს თარიღის ინტერვალს."
-
-#. DL=1
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN10604\n"
-"help.text"
-msgid "<emph>Date</emph> - The date from which the result is calculated."
-msgstr "<emph>Date</emph> - თარიღი, რომლიდანაც გამოიანგარიშება რეზულტატი."
-
-#. NiG(
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN10611\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. j35K
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefSng Statement [Runtime]"
-msgstr ""
-
-#. `I:S
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"bm_id2445142\n"
-"help.text"
-msgid "<bookmark_value>DefSng statement</bookmark_value>"
-msgstr "<bookmark_value>DefSng განცხადება</bookmark_value>"
-
-#. aQb3
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN10577\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03101130.xhp\">DefSng Statement [Runtime]</link>"
-msgstr ""
-
-#. _sNL
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN10587\n"
-"help.text"
-msgid "If no type-declaration character or keyword is specified, the DefSng statement sets the default variable type, according to a letter range."
-msgstr "თუ ტიპის გამოცხადების ასო-ნიშანი ან სიტყვა-გასაღები მითითებული არ არის, DefSng განცხადება საწყისი ცვლადის ტიპს აყენებს ასოთა რანგის მიხედვით."
-
-#. uYgM
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN1058A\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. `k8]
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN1058E\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr ""
-
-#. _2E+
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN10591\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. 0s.8
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN10595\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 ""
-
-#. !%A8
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN1059C\n"
-"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr ""
-
-#. =.wI
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN105A3\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr ""
-
-#. `O\:
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN105AA\n"
-"help.text"
-msgid "<emph>DefSng:</emph> Single"
-msgstr "<emph>DefStr:</emph> სტრინგი"
-
-#. Bq~%
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN105B1\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. Cr3[
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN105B5\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr ""
-
-#. [\`7
-#: 03101130.xhp
-#, fuzzy
-msgctxt ""
-"03101130.xhp\n"
-"par_idN105D3\n"
-"help.text"
-msgid "sSng=Single ' sSng is an implicit single variable"
-msgstr "sSng=Single REM sSng არის ნაგულისხმევი ერთეული ცვლადი"
-
-#. HBzx
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"tit\n"
-"help.text"
-msgid "LTrim Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. zrj8
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"bm_id3147574\n"
-"help.text"
-msgid "<bookmark_value>LTrim function</bookmark_value>"
-msgstr "<bookmark_value>LTrim function</bookmark_value>"
-
-#. I);E
-#: 03120305.xhp
-#, fuzzy
-msgctxt ""
-"03120305.xhp\n"
-"hd_id3147574\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. vYor
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"par_id3145316\n"
-"2\n"
-"help.text"
-msgid "Removes all leading spaces at the start of a string expression."
-msgstr "სტრინგული გამოსახულებიდან ამოიღებს ყველა წამძღვანებულ ჰარს."
-
-#. E=YQ
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"hd_id3154924\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. +|8Z
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"par_id3148552\n"
-"4\n"
-"help.text"
-msgid "LTrim (Text As String)"
-msgstr "LTrim (Text As String)"
-
-#. ;Ze4
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"hd_id3156344\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. Nx^I
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"par_id3151056\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "სტრიქონები"
-
-#. [RQQ
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"hd_id3150543\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. yBn[
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"par_id3150792\n"
-"8\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string expression."
-msgstr "<emph>ტექსტი: </emph>ნებისმიერი სტრინგული გამოსახულება."
-
-#. #/P/
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"par_id3125863\n"
-"9\n"
-"help.text"
-msgid "Use this function to remove spaces at the beginning of a string expression."
-msgstr "გამოიყენეთ ეს ფუნქცია სტრინგული გამოსახულების დასაწყისში ჰარების წასაშლელად."
-
-#. 6dZt
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"hd_id3145419\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. fZPT
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"tit\n"
-"help.text"
-msgid "Print Statement [Runtime]"
-msgstr ""
-
-#. )qPs
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"bm_id3147230\n"
-"help.text"
-msgid "<bookmark_value>Print statement</bookmark_value>"
-msgstr "<bookmark_value>Wait განცხადება</bookmark_value>"
-
-#. UcmK
-#: 03010103.xhp
-#, fuzzy
-msgctxt ""
-"03010103.xhp\n"
-"hd_id3147230\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. tT5t
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"par_id3156281\n"
-"2\n"
-"help.text"
-msgid "Outputs the specified strings or numeric expressions to a dialog or to a file."
-msgstr ""
-
-#. 1hZ.
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"hd_id3145785\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. ,0Np
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"par_id3153188\n"
-"4\n"
-"help.text"
-msgid "Print [#FileName,] Expression1[{;|,} [Spc(Number As Integer);] [Tab(pos As Integer);] [Expression2[...]]"
-msgstr ""
-
-#. bM9_
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"hd_id3147348\n"
-"5\n"
-"help.text"
-msgid "Parameter:"
-msgstr ""
-
-#. E?%J
-#: 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 ""
-
-#. @|3H
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"par_id3163712\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 ""
-
-#. DS.p
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"par_id3153092\n"
-"7\n"
-"help.text"
-msgid "<emph>Number</emph>: Number of spaces to be inserted by the <emph>Spc</emph> function."
-msgstr ""
-
-#. F-+^
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"par_id3145364\n"
-"8\n"
-"help.text"
-msgid "<emph>Pos</emph>: Spaces are inserted until the specified position."
-msgstr ""
-
-#. Z5LL
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"par_id3154319\n"
-"9\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 ""
-
-#. 4b(G
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"par_id3145272\n"
-"10\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 ""
-
-#. ?sPd
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"par_id3154011\n"
-"11\n"
-"help.text"
-msgid "If the expression to be printed exceeds a certain length, the display will automatically wrap to the next line."
-msgstr ""
-
-#. l|{~
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"par_id3146969\n"
-"12\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 ""
-
-#. kCI%
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"hd_id3146912\n"
-"13\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. Q[;^
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Control and Dialog Properties"
-msgstr ""
-
-#. ]#S@
-#: 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 ""
-
-#. l=7M
-#: 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 ""
-
-#. $ABS
-#: 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 ""
-
-#. Umir
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"hd_id3151043\n"
-"20\n"
-"help.text"
-msgid "Entering Data in the Properties Dialog"
-msgstr ""
-
-#. |Txh
-#: 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 ""
-
-#. S\Qj
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3150010\n"
-"18\n"
-"help.text"
-msgid "Keys"
-msgstr "ღილაკები"
-
-#. D`[n
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3147317\n"
-"19\n"
-"help.text"
-msgid "Effects"
-msgstr "ეფექტები"
-
-#. VN5[
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3146121\n"
-"4\n"
-"help.text"
-msgid "Alt+Down Arrow"
-msgstr ""
-
-#. fEOJ
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3149581\n"
-"5\n"
-"help.text"
-msgid "Opens a combo box"
-msgstr ""
-
-#. Cb`/
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3147394\n"
-"6\n"
-"help.text"
-msgid "Alt+Up Arrow"
-msgstr ""
-
-#. K}L}
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3148455\n"
-"7\n"
-"help.text"
-msgid "Closes a combo box"
-msgstr ""
-
-#. +Uv9
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3154511\n"
-"8\n"
-"help.text"
-msgid "Shift+Enter"
-msgstr "Shift+Enter"
-
-#. *0oQ
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3146971\n"
-"9\n"
-"help.text"
-msgid "Inserts a line break in multiline fields."
-msgstr ""
-
-#. W-6i
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3146914\n"
-"10\n"
-"help.text"
-msgid "(UpArrow)"
-msgstr ""
-
-#. Hv1-
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3153714\n"
-"11\n"
-"help.text"
-msgid "Goes to the previous line."
-msgstr ""
-
-#. SLl7
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3159266\n"
-"12\n"
-"help.text"
-msgid "(DownArrow)"
-msgstr ""
-
-#. spSZ
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3146314\n"
-"13\n"
-"help.text"
-msgid "Goes to the next line."
-msgstr ""
-
-#. cbH!
-#: 01170100.xhp
-#, fuzzy
-msgctxt ""
-"01170100.xhp\n"
-"par_id3149255\n"
-"14\n"
-"help.text"
-msgid "Enter"
-msgstr "#-#-#-#-# 04.po (PACKAGE VERSION) #-#-#-#-#\\nშესვლა\\n#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\\nEnter"
-
-#. iQ|)
-#: 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 ""
-
-#. (n`h
-#: 03080100.xhp
-msgctxt ""
-"03080100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Trigonometric Functions"
-msgstr ""
-
-#. BkZp
-#: 03080100.xhp
-msgctxt ""
-"03080100.xhp\n"
-"hd_id3159201\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080100.xhp\" name=\"Trigonometric Functions\">Trigonometric Functions</link>"
-msgstr ""
-
-#. MU,7
-#: 03080100.xhp
-msgctxt ""
-"03080100.xhp\n"
-"par_id3149180\n"
-"2\n"
-"help.text"
-msgid "The following are the trigonometric functions that are supported in $[officename] Basic."
-msgstr ""
-
-#. ^ei1
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"tit\n"
-"help.text"
-msgid "CVErr Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. dCVe
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"bm_id531022\n"
-"help.text"
-msgid "<bookmark_value>CVErr function</bookmark_value>"
-msgstr "<bookmark_value>CVErr ფუნქცია</bookmark_value>"
-
-#. =_Mc
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"par_idN1054B\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03100080.xhp\">CVErr Function [Runtime]</link>"
-msgstr ""
-
-#. +8`V
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"par_idN1055B\n"
-"help.text"
-msgid "Converts a string expression or numeric expression to a variant expression of the sub type \"Error\"."
-msgstr "გარდაქმნის სტრინგულ ან რიცხვით გამოსახულებას \"Error\"-ის ქვე ტიპის ვარიანტულ გამოსახულებად."
-
-#. TN3\
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"par_idN1055E\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. ?[2V
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"par_idN10562\n"
-"help.text"
-msgid "CVErr(Expression)"
-msgstr "CVErr(Expression)"
-
-#. 6j/J
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"par_idN10565\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. R%IE
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"par_idN10569\n"
-"help.text"
-msgid "Variant."
-msgstr ""
-
-#. ?v+)
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"par_idN1056C\n"
-"help.text"
-msgid "Parameter:"
-msgstr ""
-
-#. )W!L
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"par_idN10570\n"
-"help.text"
-msgid "Expression: Any string or numeric expression that you want to convert."
-msgstr "<emph>ტექსტი:</emph> თქვენთვის რედაქტირებისთვის სასურველი ნებისმიერი ტექსტური გამოსახულება."
-
-#. WSFa
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"tit\n"
-"help.text"
-msgid "Fix Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. l$91
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"bm_id3159201\n"
-"help.text"
-msgid "<bookmark_value>Fix function</bookmark_value>"
-msgstr "<bookmark_value>Trim ფუნქცია</bookmark_value>"
-
-#. !$(P
-#: 03080501.xhp
-#, fuzzy
-msgctxt ""
-"03080501.xhp\n"
-"hd_id3159201\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. xJt-
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"par_id3149346\n"
-"2\n"
-"help.text"
-msgid "Returns the integer value of a numeric expression by removing the fractional part of the number."
-msgstr ""
-
-#. irMA
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"hd_id3155419\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 8#o#
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"par_id3156152\n"
-"4\n"
-"help.text"
-msgid "Fix (Expression)"
-msgstr "Str (გამოსახულება)"
-
-#. $(|D
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"hd_id3154923\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. jT:=
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"par_id3148947\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr ""
-
-#. Wqkp
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"hd_id3154760\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. x(eQ
-#: 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 ""
-
-#. e^=*
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"hd_id3150447\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. lYf=
-#: 03080501.xhp
-#, fuzzy
-msgctxt ""
-"03080501.xhp\n"
-"par_id3156214\n"
-"11\n"
-"help.text"
-msgid "Print Fix(3.14159) ' returns 3."
-msgstr "Print ASC(\"Z\") REM აბრუნებს 90"
-
-#. ;Rx(
-#: 03080501.xhp
-#, fuzzy
-msgctxt ""
-"03080501.xhp\n"
-"par_id3154217\n"
-"12\n"
-"help.text"
-msgid "Print Fix(0) ' returns 0."
-msgstr "Print ASC(\"Z\") REM აბრუნებს 90"
-
-#. u26{
-#: 03080501.xhp
-#, fuzzy
-msgctxt ""
-"03080501.xhp\n"
-"par_id3145786\n"
-"13\n"
-"help.text"
-msgid "Print Fix(-3.14159) ' returns -3."
-msgstr "Print ASC(\"Z\") REM აბრუნებს 90"
-
-#. YTKq
-#: 03090300.xhp
-msgctxt ""
-"03090300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Jumps"
-msgstr ""
-
-#. Rv8O
-#: 03090300.xhp
-#, fuzzy
-msgctxt ""
-"03090300.xhp\n"
-"hd_id3151262\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"Jumps\">Jumps</link>"
-msgstr "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"მაკრო\">მაკრო</link>"
-
-#. R#RU
-#: 03090300.xhp
-msgctxt ""
-"03090300.xhp\n"
-"par_id3148983\n"
-"2\n"
-"help.text"
-msgid "The following statements execute jumps."
-msgstr ""
-
-#. n;)I
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"tit\n"
-"help.text"
-msgid "CreateUnoStruct Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. 502o
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"bm_id3150499\n"
-"help.text"
-msgid "<bookmark_value>CreateUnoStruct function</bookmark_value>"
-msgstr "<bookmark_value>CreateUnoStruct ფუნქცია</bookmark_value>"
-
-#. a.bH
-#: 03131500.xhp
-#, fuzzy
-msgctxt ""
-"03131500.xhp\n"
-"hd_id3150499\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"CreateUnoStruct Function [Runtime]\">CreateUnoStruct Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. (C@o
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"par_id3150713\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Creates an instance of a Uno structure type.</ahelp>"
-msgstr "<ahelp hid=\".\">ქმნის Uno სტრუქტურის ტიპის ასლს.</ahelp>"
-
-#. ZwlF
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"par_id3147226\n"
-"3\n"
-"help.text"
-msgid "Use the following structure for your statement:"
-msgstr "თქვენი გამოსახულებისთვის გამოიყენებთ შემდეგი სტრუქტურა:"
-
-#. h\7!
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"par_id3149177\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"
-
-#. z1(L
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"hd_id3156153\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 9E`I
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"par_id3155341\n"
-"6\n"
-"help.text"
-msgid "oStruct = CreateUnoStruct( Uno type name )"
-msgstr "oStruct = CreateUnoStruct( Uno type name )"
-
-#. ]woP
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"hd_id3145316\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. qQvA
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"par_id3149762\n"
-"8\n"
-"help.text"
-msgid "oStruct = CreateUnoStruct( \"com.sun.star.beans.Property\" )"
-msgstr "oStruct = CreateUnoStruct( \"com.sun.star.beans.Property\" )"
-
-#. i=dC
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"tit\n"
-"help.text"
-msgid "Time Statement [Runtime]"
-msgstr ""
-
-#. x*lu
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"bm_id3145090\n"
-"help.text"
-msgid "<bookmark_value>Time statement</bookmark_value>"
-msgstr "<bookmark_value>LSet განაცხადი</bookmark_value>"
-
-#. g}(P
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"hd_id3145090\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030302.xhp\">Time Statement [Runtime]</link>"
-msgstr ""
-
-#. Jak/
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"par_id3150984\n"
-"2\n"
-"help.text"
-msgid "This function returns the current system time as a string in the format \"HH:MM:SS\"."
-msgstr ""
-
-#. a@V8
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"hd_id3154346\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. s2`n
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"par_id3149670\n"
-"4\n"
-"help.text"
-msgid "Time"
-msgstr "დრო"
-
-#. J,)]
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"hd_id3150792\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. b@LT
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"par_id3149656\n"
-"6\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the new time in the format \"HH:MM:SS\"."
-msgstr ""
-
-#. @)s_
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"hd_id3145173\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 7Cq.
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"par_id3150870\n"
-"9\n"
-"help.text"
-msgid "MsgBox Time,0,\"The time is\""
-msgstr ""
-
-#. ]$C(
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"tit\n"
-"help.text"
-msgid "CreateUnoDialog Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. 3*oC
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"bm_id3150040\n"
-"help.text"
-msgid "<bookmark_value>CreateUnoDialog function</bookmark_value>"
-msgstr "<bookmark_value>CreateUnoDialog ფუნქცია</bookmark_value>"
-
-#. g`ed
-#: 03131800.xhp
-#, fuzzy
-msgctxt ""
-"03131800.xhp\n"
-"hd_id3150040\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"CreateUnoDialog Function [Runtime]\">CreateUnoDialog Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. F7Zw
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"par_id3154186\n"
-"2\n"
-"help.text"
-msgid "Creates a Basic Uno object that represents a Uno dialog control during Basic runtime."
-msgstr "ქმნის Basic Uno ობიექტს, რომელიც წარმოადგენს Uno დიალოგის კონტროლს Basic-ის გაშვებისას."
-
-#. Ykf@
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"par_id3153750\n"
-"3\n"
-"help.text"
-msgid "Dialogs are defined in the dialog libraries. To display a dialog, a \"live\" dialog must be created from the library."
-msgstr "დიალოგები განისაზღვრება დიალოგურ ბიბლიოთეკებში. დიალოგის საჩვენებლად ბიბლიოთეკაში უნდა შეიქმნას \"ცოცხალი\" დიალოგი."
-
-#. y5qZ
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"par_id3153681\n"
-"4\n"
-"help.text"
-msgid "See <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
-msgstr "See <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"მაგალითები\">მაგალითები</link>."
-
-#. [K\b
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"hd_id3154286\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. PLCm
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"par_id3159176\n"
-"6\n"
-"help.text"
-msgid "CreateUnoDialog( oDlgDesc )"
-msgstr "CreateUnoDialog( oDlgDesc )"
-
-#. X4@g
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"hd_id3143270\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. hac8
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"par_id3159157\n"
-"8\n"
-"help.text"
-msgid "' Get dialog description from the dialog library"
-msgstr "' დიალოგთა ბიბლიოთეკიდან დიალოგის აღწერილობის მიღება"
-
-#. vCm@
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"par_id3149234\n"
-"9\n"
-"help.text"
-msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
-msgstr ""
-
-#. r3pC
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"par_id3154923\n"
-"10\n"
-"help.text"
-msgid "' generate \"live\" dialog"
-msgstr "' \"ცოცხალი\" დიალოგის გენერაცია"
-
-#. .TL0
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"par_id3149670\n"
-"11\n"
-"help.text"
-msgid "oDlgControl = CreateUnoDialog( oDlgDesc )"
-msgstr "oDlgControl = CreateUnoDialog( oDlgDesc )"
-
-#. @EM$
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"par_id3148550\n"
-"12\n"
-"help.text"
-msgid "' display \"live\" dialog"
-msgstr "' \"ცოცხალი\" დიალოგის ჩვენება"
-
-#. J$1J
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"par_id3154072\n"
-"13\n"
-"help.text"
-msgid "oDlgControl.execute"
-msgstr "oDlgControl.execute"
-
-#. ZVi@
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsEmpty Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. pqV.
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"bm_id3153394\n"
-"help.text"
-msgid "<bookmark_value>IsEmpty function</bookmark_value>"
-msgstr "<bookmark_value>IsError ფუნქცია</bookmark_value>"
-
-#. b:re
-#: 03102400.xhp
-#, fuzzy
-msgctxt ""
-"03102400.xhp\n"
-"hd_id3153394\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. qydL
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"par_id3163045\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 ""
-
-#. }mrZ
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"hd_id3159158\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. x*F2
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"par_id3153126\n"
-"4\n"
-"help.text"
-msgid "IsEmpty (Var)"
-msgstr ""
-
-#. w}(z
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"hd_id3148685\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. r])T
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"par_id3156344\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr ""
-
-#. SphW
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"hd_id3148947\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. ,us0
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"par_id3154347\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> ნებისმიერი გამოსაცდელი ცვლადი. თუ ცვლადი შეიცავს მცდა მნიშვნელობას, ფუნქცია ასბრუნებს True-ს, წინააღმდეგ შემთხვევაში ფუქნცია აბრუნებს False-ს."
-
-#. Fucq
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"hd_id3154138\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 75.3
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"par_id3154863\n"
-"13\n"
-"help.text"
-msgid "Print IsEmpty(sVar) ' Returns True"
-msgstr ""
-
-#. }+5~
-#: 03030200.xhp
-msgctxt ""
-"03030200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Converting Time Values"
-msgstr ""
-
-#. XGNX
-#: 03030200.xhp
-msgctxt ""
-"03030200.xhp\n"
-"hd_id3147226\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030200.xhp\" name=\"Converting Time Values\">Converting Time Values</link>"
-msgstr ""
-
-#. a]fQ
-#: 03030200.xhp
-msgctxt ""
-"03030200.xhp\n"
-"par_id3149415\n"
-"2\n"
-"help.text"
-msgid "The following functions convert time values to calculable numbers."
-msgstr ""
-
-#. lJ[z
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"tit\n"
-"help.text"
-msgid "CLng Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. Oyf~
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"bm_id3153311\n"
-"help.text"
-msgid "<bookmark_value>CLng function</bookmark_value>"
-msgstr "<bookmark_value>Chr ფუნქცია</bookmark_value>"
-
-#. R6CJ
-#: 03100600.xhp
-#, fuzzy
-msgctxt ""
-"03100600.xhp\n"
-"hd_id3153311\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. nVOl
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"par_id3148686\n"
-"2\n"
-"help.text"
-msgid "Converts any string or numeric expression to a long integer."
-msgstr "გარდაქმნის სტრიქონს ან ციფრულ გამოსახულებას ბაიტის ტიპისთვის."
-
-#. .*c}
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"hd_id3145315\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. qL-M
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"par_id3147573\n"
-"4\n"
-"help.text"
-msgid "CLng (Expression)"
-msgstr "CCur(Expression)"
-
-#. ffak
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"hd_id3145610\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. ;d)Q
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"par_id3153897\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr ""
-
-#. =1Th
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"hd_id3154760\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. IOqN
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"par_id3159414\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 ""
-
-#. HVfa
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"par_id3150358\n"
-"9\n"
-"help.text"
-msgid "This function always rounds the fractional part of a number to the nearest integer."
-msgstr ""
-
-#. tiiv
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"hd_id3154216\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. RtH#
-#: main0211.xhp
-msgctxt ""
-"main0211.xhp\n"
-"tit\n"
-"help.text"
-msgid "Macro Toolbar"
-msgstr "მაკროს ხელსაწყოთა ზოლი"
-
-#. XjG*
-#: main0211.xhp
-msgctxt ""
-"main0211.xhp\n"
-"bm_id3150543\n"
-"help.text"
-msgid "<bookmark_value>toolbars; Basic IDE</bookmark_value><bookmark_value>macro toolbar</bookmark_value>"
-msgstr "<bookmark_value>ინსტრუმენთა ზოლი; Basic IDE</bookmark_value><bookmark_value>მაკროს ინსტრუმენტთა ზოლი</bookmark_value>"
-
-#. VE@V
-#: main0211.xhp
-msgctxt ""
-"main0211.xhp\n"
-"hd_id3150543\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\">Macro Toolbar</link>"
-msgstr "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"მაკროს ინსტრუმენტთა ზოლი\">მაკროს ინსტრუმენტთა ზოლი</link>"
-
-#. B\IC
-#: main0211.xhp
-msgctxt ""
-"main0211.xhp\n"
-"par_id3147288\n"
-"2\n"
-"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".uno:MacroBarVisible\">The <emph>Macro Toolbar </emph>contains commands to create, edit, and run macros.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\".uno:MacroBarVisible\">The <emph>მაკროს ინსტრუმენტთა ზოლი </emph>შეიცავს კომანდებს მაკროების შესაქმნელად, დასარედაქტირებლად და გასაშვებად.</ahelp>"
-
-#. ~lN^
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"tit\n"
-"help.text"
-msgid "\"-\" Operator [Runtime]"
-msgstr ""
-
-#. cM=j
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"bm_id3156042\n"
-"help.text"
-msgid "<bookmark_value>\"-\" operator (mathematical)</bookmark_value>"
-msgstr ""
-
-#. a.B$
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"hd_id3156042\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03070100.xhp\">\"-\" Operator [Runtime]</link>"
-msgstr ""
-
-#. k\GP
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"par_id3153345\n"
-"2\n"
-"help.text"
-msgid "Subtracts two values."
-msgstr ""
-
-#. S-,K
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"hd_id3149416\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. ?+88
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"par_id3156023\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 - Expression2"
-msgstr ""
-
-#. f0KK
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"hd_id3154760\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. PS7!
-#: 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 ""
-
-#. KkL9
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"par_id3150398\n"
-"7\n"
-"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to subtract."
-msgstr "<emph>Expression1, Expression2:</emph> ნებისმიერი ციფრული სიდიდეები ან სტრიქონები, რომლებიც გინდათ შეადაროთ."
-
-#. NI[E
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"hd_id3154366\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. G:E@
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"tit\n"
-"help.text"
-msgid "TimeSerial Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. R4*]
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"bm_id3143271\n"
-"help.text"
-msgid "<bookmark_value>TimeSerial function</bookmark_value>"
-msgstr "<bookmark_value>Trim ფუნქცია</bookmark_value>"
-
-#. 0i6+
-#: 03030205.xhp
-#, fuzzy
-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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. 0mXn
-#: 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 ""
-
-#. 57Q3
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"hd_id3146794\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. ?bZl
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3150792\n"
-"5\n"
-"help.text"
-msgid "TimeSerial (hour, minute, second)"
-msgstr ""
-
-#. g{xt
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"hd_id3148797\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. vrWO
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3154908\n"
-"7\n"
-"help.text"
-msgid "Date"
-msgstr ""
-
-#. j*\B
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"hd_id3154124\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. f`c*
-#: 03030205.xhp
-msgctxt ""
-"03030205.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 ""
-
-#. JrL=
-#: 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 ""
-
-#. RS=P
-#: 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 ""
-
-#. F($s
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3155854\n"
-"12\n"
-"help.text"
-msgid "<emph>Examples:</emph>"
-msgstr "<emph>სახელი</emph>"
-
-#. o1Ju
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3153952\n"
-"13\n"
-"help.text"
-msgid "12, -5, 45 corresponds to 11, 55, 45"
-msgstr ""
-
-#. -QK^
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3147349\n"
-"14\n"
-"help.text"
-msgid "12, 61, 45 corresponds to 13, 2, 45"
-msgstr ""
-
-#. `W*s
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3147426\n"
-"15\n"
-"help.text"
-msgid "12, 20, -2 corresponds to 12, 19, 58"
-msgstr ""
-
-#. S[Eb
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3153365\n"
-"16\n"
-"help.text"
-msgid "12, 20, 63 corresponds to 12, 21, 4"
-msgstr ""
-
-#. W\KI
-#: 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 ""
-
-#. YH$!
-#: 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 ""
-
-#. )a6U
-#: 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 ""
-
-#. q14B
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"hd_id3154790\n"
-"20\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. ]G=)
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3155600\n"
-"25\n"
-"help.text"
-msgid "MsgBox dDate,64,\"Time as a number\""
-msgstr ""
-
-#. f=a-
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3153417\n"
-"26\n"
-"help.text"
-msgid "MsgBox sDate,64,\"Formatted time\""
-msgstr ""
-
-#. Hm8-
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "შედარების ოპერატორები"
-
-#. \ez_
-#: 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 ""
-
-#. sZyA
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"2\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "ხელმისაწვდომი შედარების ოპერატორები აღწერილია აქ."
-
-#. E(so
-#: 03090100.xhp
-msgctxt ""
-"03090100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Condition Statements"
-msgstr ""
-
-#. 1rS(
-#: 03090100.xhp
-#, fuzzy
-msgctxt ""
-"03090100.xhp\n"
-"hd_id3154422\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03090100.xhp\" name=\"Condition Statements\">Condition Statements</link>"
-msgstr "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"სხვა ბრძენებები\">სხვა ბრძენებები</link>"
-
-#. (]8=
-#: 03090100.xhp
-msgctxt ""
-"03090100.xhp\n"
-"par_id3153750\n"
-"2\n"
-"help.text"
-msgid "The following statements are based on conditions."
-msgstr ""
-
-#. 1xIk
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"tit\n"
-"help.text"
-msgid "CByte Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. X28J
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"bm_id3156027\n"
-"help.text"
-msgid "<bookmark_value>CByte function</bookmark_value>"
-msgstr "<bookmark_value>Chr ფუნქცია</bookmark_value>"
-
-#. .jV,
-#: 03120105.xhp
-#, fuzzy
-msgctxt ""
-"03120105.xhp\n"
-"hd_id3156027\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120105.xhp\" name=\"CByte Function [Runtime]\">CByte Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. c17K
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"par_id3143267\n"
-"2\n"
-"help.text"
-msgid "Converts a string or a numeric expression to the type Byte."
-msgstr "გარდაქმნის სტრიქონს ან ციფრულ გამოსახულებას ბაიტის ტიპისთვის."
-
-#. TK%f
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"hd_id3149811\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 7dEs
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"par_id3147573\n"
-"4\n"
-"help.text"
-msgid "Cbyte( expression )"
-msgstr "Cbyte( გამოსახულება )"
-
-#. J:K[
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"hd_id3145315\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. H[:U
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"par_id3148473\n"
-"6\n"
-"help.text"
-msgid "Byte"
-msgstr "ბაიტი"
-
-#. ,Auk
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"hd_id3147530\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. sr]N
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"par_id3145068\n"
-"8\n"
-"help.text"
-msgid "<emph>Expression:</emph> A string or a numeric expression."
-msgstr "<emph>Expression:</emph>სტრიქონი ან ციფრული გამოსახულება."
-
-#. ZyC`
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"tit\n"
-"help.text"
-msgid "InputBox Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. PvMt
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"bm_id3148932\n"
-"help.text"
-msgid "<bookmark_value>InputBox function</bookmark_value>"
-msgstr "<bookmark_value>InStr ფუნქცია</bookmark_value>"
-
-#. 2E#Y
-#: 03010201.xhp
-#, fuzzy
-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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. :kQq
-#: 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 ""
-
-#. ul4U
-#: 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 ""
-
-#. EQI3
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"hd_id3152347\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. iHf|
-#: 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 ""
-
-#. _Z[H
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"hd_id3150713\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. AyIy
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3145090\n"
-"7\n"
-"help.text"
-msgid "String"
-msgstr "სტრიქონები"
-
-#. B\A,
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"hd_id3149346\n"
-"8\n"
-"help.text"
-msgid "Parameter:"
-msgstr ""
-
-#. *zE/
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3153311\n"
-"9\n"
-"help.text"
-msgid "<emph>Msg</emph>: String expression displayed as the message in the dialog box."
-msgstr ""
-
-#. %nWs
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3145315\n"
-"10\n"
-"help.text"
-msgid "<emph>Title</emph>: String expression displayed in the title bar of the dialog box."
-msgstr ""
-
-#. FeV(
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3154307\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 ""
-
-#. ixun
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3147573\n"
-"12\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 ""
-
-#. tW]f
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3156024\n"
-"13\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 ""
-
-#. dmaq
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3153897\n"
-"14\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 ""
-
-#. =3xd
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"hd_id3149456\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. -05a
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3154367\n"
-"18\n"
-"help.text"
-msgid "sText = InputBox (\"Please enter a phrase:\",\"Dear User\")"
-msgstr ""
-
-#. duBi
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3151042\n"
-"19\n"
-"help.text"
-msgid "MsgBox ( sText , 64, \"Confirmation of phrase\")"
-msgstr ""
-
-#. I$q,
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"tit\n"
-"help.text"
-msgid "AND Operator [Runtime]"
-msgstr ""
-
-#. /FuX
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"bm_id3146117\n"
-"help.text"
-msgid "<bookmark_value>AND operator (logical)</bookmark_value>"
-msgstr ""
-
-#. ogG0
-#: 03060100.xhp
-#, fuzzy
-msgctxt ""
-"03060100.xhp\n"
-"hd_id3146117\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03060100.xhp\" name=\"AND Operator [Runtime]\">AND Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. SDE%
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"par_id3143268\n"
-"2\n"
-"help.text"
-msgid "Logically combines two expressions."
-msgstr ""
-
-#. ;/X;
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"hd_id3147574\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 6|71
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"par_id3156344\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 And Expression2"
-msgstr ""
-
-#. hfY.
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"hd_id3148946\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. =AJ0
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"par_id3149457\n"
-"6\n"
-"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that records the result of the combination."
-msgstr ""
-
-#. 7a^%
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"par_id3150541\n"
-"7\n"
-"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to combine."
-msgstr "<emph>Expression1, Expression2:</emph> ნებისმიერი ციფრული სიდიდეები ან სტრიქონები, რომლებიც გინდათ შეადაროთ."
-
-#. OP`H
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"par_id3156215\n"
-"8\n"
-"help.text"
-msgid "Boolean expressions combined with AND only return the value <emph>True</emph> if both expressions evaluate to <emph>True</emph>:"
-msgstr ""
-
-#. DvkR
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"par_id3150870\n"
-"9\n"
-"help.text"
-msgid "<emph>True</emph> AND <emph>True</emph> returns <emph>True</emph>; for all other combinations the result is <emph>False</emph>."
-msgstr ""
-
-#. Xgv!
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"par_id3153768\n"
-"10\n"
-"help.text"
-msgid "The AND operator also performs a bitwise comparison of identically positioned bits in two numeric expressions."
-msgstr ""
-
-#. ={l1
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"hd_id3153727\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. ~jZY
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"par_id3146984\n"
-"16\n"
-"help.text"
-msgid "vVarOut = A > B And B > C ' returns -1"
-msgstr ""
-
-#. Ed+s
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"par_id3154014\n"
-"17\n"
-"help.text"
-msgid "vVarOut = B > A And B > C ' returns 0"
-msgstr ""
-
-#. kIr%
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"par_id3149262\n"
-"18\n"
-"help.text"
-msgid "vVarOut = A > B And B > D ' returns 0"
-msgstr ""
-
-#. |BK6
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"par_id3145751\n"
-"19\n"
-"help.text"
-msgid "vVarOut = (B > D And B > A) ' returns 0"
-msgstr ""
-
-#. $e4W
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"par_id3147394\n"
-"20\n"
-"help.text"
-msgid "vVarOut = B And A ' returns 8 due to the bitwise And combination of both arguments"
-msgstr ""
-
-#. Zm?r
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Programming with $[officename] Basic"
-msgstr ""
-
-#. xk.A
-#: 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 ""
-
-#. _P0b
-#: 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 ""
-
-#. Z}m2
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"tit\n"
-"help.text"
-msgid "Declare Statement [Runtime]"
-msgstr ""
-
-#. w28/
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"bm_id3148473\n"
-"help.text"
-msgid "<bookmark_value>Declare statement</bookmark_value>"
-msgstr "<bookmark_value>DefCur განცხადება</bookmark_value>"
-
-#. BHk{
-#: 03090403.xhp
-#, fuzzy
-msgctxt ""
-"03090403.xhp\n"
-"hd_id3148473\n"
-"1\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. Ey:i
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"bm_id3145316\n"
-"help.text"
-msgid "<bookmark_value>DLL (Dynamic Link Library)</bookmark_value>"
-msgstr ""
-
-#. WW;/
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"par_id3145316\n"
-"2\n"
-"help.text"
-msgid "Declares and defines a subroutine in a DLL file that you want to execute from $[officename] Basic."
-msgstr ""
-
-#. W*ZX
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"par_id3146795\n"
-"3\n"
-"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\">FreeLibrary</link>"
-msgstr ""
-
-#. B]YK
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"hd_id3156344\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. mKoU
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"par_id3148664\n"
-"5\n"
-"help.text"
-msgid "Declare {Sub | Function} Name Lib \"Libname\" [Alias \"Aliasname\"] [Parameter] [As Type]"
-msgstr ""
-
-#. ^,Dx
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"hd_id3153360\n"
-"6\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. bGFY
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"par_id3154140\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 ""
-
-#. I}%O
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"par_id3150870\n"
-"9\n"
-"help.text"
-msgid "<emph>Aliasname</emph>: Name of the subroutine as defined in the DLL."
-msgstr ""
-
-#. mi!\
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"par_id3154684\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 ""
-
-#. LPbc
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"par_id3148452\n"
-"11\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 ""
-
-#. aK~A
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"par_id3147289\n"
-"12\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 ""
-
-#. gI@`
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"par_id3146922\n"
-"13\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 ""
-
-#. q%r1
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"hd_id3153951\n"
-"14\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. EP-R
-#: 03120400.xhp
-msgctxt ""
-"03120400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Editing String Length"
-msgstr "სტრინგის სიგრძის რედაქტირება"
-
-#. 5`CZ
-#: 03120400.xhp
-msgctxt ""
-"03120400.xhp\n"
-"hd_id3155150\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"Editing String Length\">Editing String Length</link>"
-msgstr "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"სტრინგის სიგრძის რედაქტირება\">სტრინგის სიგრძის რედაქტირება</link>"
-
-#. s8/E
-#: 03120400.xhp
-msgctxt ""
-"03120400.xhp\n"
-"par_id3159201\n"
-"2\n"
-"help.text"
-msgid "The following functions determine string lengths and compare strings."
-msgstr "შემდეგი ფუნქციები განსაზღვრავენ სტრინგის სიგრძეს და ადარებენ სტრინგებს."
-
-#. /cHw
-#: 03060500.xhp
-msgctxt ""
-"03060500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Or-Operator [Runtime]"
-msgstr ""
-
-#. G6Ja
-#: 03060500.xhp
-msgctxt ""
-"03060500.xhp\n"
-"bm_id3150986\n"
-"help.text"
-msgid "<bookmark_value>Or operator (logical)</bookmark_value>"
-msgstr ""
-
-#. 0`{/
-#: 03060500.xhp
-#, fuzzy
-msgctxt ""
-"03060500.xhp\n"
-"hd_id3150986\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or-Operator [Runtime]\">Or Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. W^5!
-#: 03060500.xhp
-msgctxt ""
-"03060500.xhp\n"
-"par_id3148552\n"
-"2\n"
-"help.text"
-msgid "Performs a logical OR disjunction on two expressions."
-msgstr ""
-
-#. .%ji
-#: 03060500.xhp
-msgctxt ""
-"03060500.xhp\n"
-"hd_id3148664\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. r`l7
-#: 03060500.xhp
-msgctxt ""
-"03060500.xhp\n"
-"par_id3150358\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 Or Expression2"
-msgstr ""
-
-#. Oj6V
-#: 03060500.xhp
-msgctxt ""
-"03060500.xhp\n"
-"hd_id3151211\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. }AM/
-#: 03060500.xhp
-msgctxt ""
-"03060500.xhp\n"
-"par_id3153192\n"
-"6\n"
-"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the disjunction."
-msgstr ""
-
-#. PAi9
-#: 03060500.xhp
-msgctxt ""
-"03060500.xhp\n"
-"par_id3147229\n"
-"7\n"
-"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to compare."
-msgstr "<emph>Expression1, Expression2:</emph> ნებისმიერი ციფრული სიდიდეები ან სტრიქონები, რომლებიც გინდათ შეადაროთ."
-
-#. *-`H
-#: 03060500.xhp
-msgctxt ""
-"03060500.xhp\n"
-"par_id3154684\n"
-"8\n"
-"help.text"
-msgid "A logical OR disjunction of two Boolean expressions returns the value True if at least one comparison expression is True."
-msgstr ""
-
-#. H(in
-#: 03060500.xhp
-msgctxt ""
-"03060500.xhp\n"
-"par_id3153768\n"
-"9\n"
-"help.text"
-msgid "A bit-wise comparison sets a bit in the result if the corresponding bit is set in at least one of the two expressions."
-msgstr ""
-
-#. BZP-
-#: 03060500.xhp
-msgctxt ""
-"03060500.xhp\n"
-"hd_id3161831\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. wkj8
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"tit\n"
-"help.text"
-msgid "Format Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. s@mx
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"bm_id3153539\n"
-"help.text"
-msgid "<bookmark_value>Format function</bookmark_value>"
-msgstr "<bookmark_value>Chr ფუნქცია</bookmark_value>"
-
-#. }I[3
-#: 03120301.xhp
-#, fuzzy
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3153539\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. 3*oD
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3156042\n"
-"2\n"
-"help.text"
-msgid "Converts a number to a string, and then formats it according to the format that you specify."
-msgstr "გარდაქმნის რიცხვებს სტრიქონებად, და შემდეგ აფორმატებს მას თქვენს მიერ განსაზრვრულ ფორმატში."
-
-#. Q[=m
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3145090\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. aJ0U
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3153527\n"
-"5\n"
-"help.text"
-msgid "Format (Number [, Format As String])"
-msgstr "ფორმატი (რიცხვი [, ფორმატი როგორც სტრიქონი])"
-
-#. :9@2
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3149178\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. TC{g
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3148474\n"
-"7\n"
-"help.text"
-msgid "String"
-msgstr "სტრიქონები"
-
-#. U,?I
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3159176\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. d/R0
-#: 03120301.xhp
-#, fuzzy
-msgctxt ""
-"03120301.xhp\n"
-"par_id3149415\n"
-"9\n"
-"help.text"
-msgid "<emph>Number:</emph> Numeric expression that you want to convert to a formatted string."
-msgstr "<emph>ტექსტი:</emph> თქვენთვის რედაქტირებისთვის სასურველი ნებისმიერი ტექსტური გამოსახულება."
-
-#. JX0Y
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3147531\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 ""
-
-#. IOQw
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3147561\n"
-"47\n"
-"help.text"
-msgid "Formatting Codes"
-msgstr "ფორმატირების კოდები"
-
-#. i6t3
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3147265\n"
-"11\n"
-"help.text"
-msgid "The following list describes the codes that you can use for formatting a number:"
-msgstr ""
-
-#. -JSm
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3153380\n"
-"12\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 ""
-
-#. hu*M
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3151210\n"
-"13\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 ""
-
-#. *Lr(
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3151176\n"
-"14\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 ""
-
-#. w]F1
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3154123\n"
-"15\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 ""
-
-#. fQV]
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3148452\n"
-"16\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 ""
-
-#. \WSt
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3159150\n"
-"17\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 ""
-
-#. ]xq#
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3159252\n"
-"18\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 ""
-
-#. 01#`
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3153368\n"
-"19\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 ""
-
-#. )5C{
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3149481\n"
-"20\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 ""
-
-#. aJ+M
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3149262\n"
-"21\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 ""
-
-#. ^DBk
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3148617\n"
-"23\n"
-"help.text"
-msgid "The thousands delimiter is displayed if the format code contains the delimiter enclosed by digit placeholders (0 or #)."
-msgstr ""
-
-#. \M^3
-#: 03120301.xhp
-msgctxt ""
-"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 ""
-
-#. cXjp
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3152887\n"
-"24\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 ""
-
-#. ,lOe
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3148576\n"
-"25\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 ""
-
-#. C5fd
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3153139\n"
-"26\n"
-"help.text"
-msgid "\\ : The backslash displays the next character in the format code."
-msgstr ""
-
-#. NV/q
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3153366\n"
-"27\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 ""
-
-#. Y%gh
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3155411\n"
-"28\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 ""
-
-#. e{9B
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3145749\n"
-"30\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 ""
-
-#. 0Q?g
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3150113\n"
-"31\n"
-"help.text"
-msgid "If you use predefined formats, the name of the format must be enclosed in quotation marks."
-msgstr ""
-
-#. !uN6
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3149377\n"
-"32\n"
-"help.text"
-msgid "Predefined format"
-msgstr "განსაზღვრული ფორმატი"
-
-#. !/4I
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3154730\n"
-"33\n"
-"help.text"
-msgid "<emph>General Number:</emph> Numbers are displayed as entered."
-msgstr "<emph>General Number:</emph> რიცხვები ჩნდება როგორც შეყვანილი."
-
-#. XfUw
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3153158\n"
-"34\n"
-"help.text"
-msgid "<emph>Currency:</emph> Inserts a dollar sign in front of the number and encloses negative numbers in brackets."
-msgstr ""
-
-#. #8;+
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3154490\n"
-"35\n"
-"help.text"
-msgid "<emph>Fixed:</emph> Displays at least one digit in front of the decimal separator."
-msgstr ""
-
-#. T3A@
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3153415\n"
-"36\n"
-"help.text"
-msgid "<emph>Standard:</emph> Displays numbers with a thousands separator."
-msgstr ""
-
-#. FF9T
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3150715\n"
-"37\n"
-"help.text"
-msgid "<emph>Percent:</emph> Multiplies the number by 100 and appends a percent sign to the number."
-msgstr ""
-
-#. \.{p
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3153836\n"
-"38\n"
-"help.text"
-msgid "<emph>Scientific:</emph> Displays numbers in scientific format (for example, 1.00E+03 for 1000)."
-msgstr ""
-
-#. 19{@
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3153707\n"
-"39\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 ""
-
-#. Rz+M
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3149019\n"
-"40\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. VV];
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_idN107A2\n"
-"help.text"
-msgid "' always use a period as decimal delimiter when you enter numbers in Basic source code."
-msgstr ""
-
-#. `8fh
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"par_id3147339\n"
-"46\n"
-"help.text"
-msgid "' displays for example 6,328.20 in English locale, 6.328,20 in German locale."
-msgstr ""
-
-#. rhgh
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"tit\n"
-"help.text"
-msgid "$[officename] Basic IDE"
-msgstr "$[officename] საწყისი დახმარება"
-
-#. #TVI
-#: 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 ""
-
-#. U\^c
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"par_id3153142\n"
-"2\n"
-"help.text"
-msgid "This section describes the structure of the Basic IDE."
-msgstr ""
-
-#. HcTp
-#: 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 ""
-
-#. OjE[
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"hd_id3153188\n"
-"5\n"
-"help.text"
-msgid "Commands From the Context menu of the Module Tabs"
-msgstr ""
-
-#. VY?,
-#: 01050000.xhp
-#, fuzzy
-msgctxt ""
-"01050000.xhp\n"
-"hd_id3154731\n"
-"6\n"
-"help.text"
-msgid "Insert"
-msgstr "#-#-#-#-# autopi.po (PACKAGE VERSION) #-#-#-#-#\\nჩასმა\\n#-#-#-#-# 04.po (PACKAGE VERSION) #-#-#-#-#\\nInsert\\n#-#-#-#-# optionen.po (PACKAGE VERSION) #-#-#-#-#\\nჩამატება\\n#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\nჩასმა\\n#-#-#-#-# sdraw.po (PACKAGE VERSION) #-#-#-#-#\\nჩასმა\\n#-#-#-#-# scalc.po (PACKAGE VERSION) #-#-#-#-#\\nჩასმა\\n#-#-#-#-# 04.po (PACKAGE VERSION) #-#-#-#-#\\nჩასმა"
-
-#. !!P-
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"hd_id3151074\n"
-"8\n"
-"help.text"
-msgid "Module"
-msgstr ""
-
-#. TmVs
-#: 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 ""
-
-#. `76?
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"hd_id3147397\n"
-"10\n"
-"help.text"
-msgid "Dialog"
-msgstr ""
-
-#. 2/37
-#: 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 ""
-
-#. n^7(
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"hd_id3155602\n"
-"12\n"
-"help.text"
-msgid "Delete"
-msgstr ""
-
-#. Dt7o
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"par_id3155064\n"
-"13\n"
-"help.text"
-msgid "<ahelp hid=\".uno:DeleteCurrent\">Deletes the selected module.</ahelp>"
-msgstr ""
-
-#. aX|H
-#: 01050000.xhp
-#, fuzzy
-msgctxt ""
-"01050000.xhp\n"
-"hd_id3149018\n"
-"14\n"
-"help.text"
-msgid "Rename"
-msgstr "#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\nგადარქმევა\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nსახელის გადარქმევა"
-
-#. HgM*
-#: 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 ""
-
-#. 8-.;
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"hd_id3150043\n"
-"16\n"
-"help.text"
-msgid "Hide"
-msgstr "დამალვა"
-
-#. dBWI
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"par_id3145147\n"
-"17\n"
-"help.text"
-msgid "<ahelp hid=\".uno:HideCurPage\">Hides the current module.</ahelp>"
-msgstr ""
-
-#. \/`\
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"hd_id3163805\n"
-"18\n"
-"help.text"
-msgid "Modules"
-msgstr ""
-
-#. o9:L
-#: 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 ""
-
-#. !=:c
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"tit\n"
-"help.text"
-msgid "DateDiff Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. mwyq
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"bm_id6134830\n"
-"help.text"
-msgid "<bookmark_value>DateDiff function</bookmark_value>"
-msgstr "<bookmark_value>DateDiff ფუნქცია</bookmark_value>"
-
-#. ,*de
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10542\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030120.xhp\">DateDiff Function [Runtime]</link>"
-msgstr ""
-
-#. bI%6
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10546\n"
-"help.text"
-msgid "Returns the number of date intervals between two given date values."
-msgstr "ორ მოცემულ თარიღის მნიშვნელობას შორის აბრუნებს თარიღის ინტერვალს."
-
-#. B60f
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10549\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. ;ixa
-#: 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]])"
-
-#. fkQW
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1064B\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. qb0[
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1064F\n"
-"help.text"
-msgid "A number."
-msgstr "რიცხვი."
-
-#. /2X1
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10652\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. nTGj
-#: 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 "Add - სტრინგული გამოსახულება მომდევნო ცხრილიდან, რომელიც მიუთითებს თარიღის ინტერვალს."
-
-#. ):rQ
-#: 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> - ორი თარიღის მნიშვნელობა, რომელიც შეიძლება შედარდეს."
-
-#. J(yF
-#: 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> - არასავადლებულო პარამეტრი, რომელიც უთითებს კვირის საწყისს დღეს."
-
-#. }v1d
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1067A\n"
-"help.text"
-msgid "Week_start value"
-msgstr "Week_start value"
-
-#. [:/@
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10680\n"
-"help.text"
-msgid "Explanation"
-msgstr ""
-
-#. !HLR
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10687\n"
-"help.text"
-msgid "0"
-msgstr ""
-
-#. 32cP
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1068D\n"
-"help.text"
-msgid "Use system default value"
-msgstr ""
-
-#. wcO%
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10694\n"
-"help.text"
-msgid "1"
-msgstr ""
-
-#. :z=8
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1069A\n"
-"help.text"
-msgid "Sunday (default)"
-msgstr "კვირა (საწყისი)"
-
-#. 61AV
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106A1\n"
-"help.text"
-msgid "2"
-msgstr ""
-
-#. dx7G
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106A7\n"
-"help.text"
-msgid "Monday"
-msgstr "ორშაბათი"
-
-#. 3`e!
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106AE\n"
-"help.text"
-msgid "3"
-msgstr ""
-
-#. i(-,
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106B4\n"
-"help.text"
-msgid "Tuesday"
-msgstr "სამშაბათი"
-
-#. ap-Y
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106BB\n"
-"help.text"
-msgid "4"
-msgstr ""
-
-#. DGl/
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106C1\n"
-"help.text"
-msgid "Wednesday"
-msgstr "ოთხშაბათი"
-
-#. 6IYN
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106C8\n"
-"help.text"
-msgid "5"
-msgstr ""
-
-#. vDTZ
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106CE\n"
-"help.text"
-msgid "Thursday"
-msgstr "ხუთშაბათი"
-
-#. 2PVo
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106D5\n"
-"help.text"
-msgid "6"
-msgstr ""
-
-#. nWk,
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106DB\n"
-"help.text"
-msgid "Friday"
-msgstr "პარასკევი"
-
-#. oP_K
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106E2\n"
-"help.text"
-msgid "7"
-msgstr ""
-
-#. :~P=
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106E8\n"
-"help.text"
-msgid "Saturday"
-msgstr "შაბათი"
-
-#. _)Y5
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106EB\n"
-"help.text"
-msgid "<emph>Year_start</emph> - An optional parameter that specifies the starting week of a year."
-msgstr "<emph>Year_start</emph> -არჩევითი პარამეტრი, რომელიც მიუთითებს წლის საწყის კვირას."
-
-#. af3,
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN106FB\n"
-"help.text"
-msgid "Year_start value"
-msgstr "Year_start -ის მნიშვნელობა"
-
-#. LW1#
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10701\n"
-"help.text"
-msgid "Explanation"
-msgstr ""
-
-#. LF06
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10708\n"
-"help.text"
-msgid "0"
-msgstr ""
-
-#. ^JG.
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1070E\n"
-"help.text"
-msgid "Use system default value"
-msgstr ""
-
-#. K^M*
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10715\n"
-"help.text"
-msgid "1"
-msgstr ""
-
-#. yjEK
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1071B\n"
-"help.text"
-msgid "Week 1 is the week with January, 1st (default)"
-msgstr "კვირა 1 არის კვირა იანვრით, პირველი (საწყისად)"
-
-#. RkO3
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10722\n"
-"help.text"
-msgid "2"
-msgstr ""
-
-#. 2oET
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10728\n"
-"help.text"
-msgid "Week 1 is the first week containing four or more days of that year"
-msgstr "კვირა 1 არის პირველი კვირა, რომელიც შეიცავს ამ კვირის ოთხ ან მეტ დღეს"
-
-#. 5C]*
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1072F\n"
-"help.text"
-msgid "3"
-msgstr ""
-
-#. nnjk
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10735\n"
-"help.text"
-msgid "Week 1 is the first week containing only days of the new year"
-msgstr "კვირა 1 არის პირველი კვირა, რომელიც შეიცავს მხოლოდ ახალი წილის დღეებს"
-
-#. Os(u
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10738\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. Jh2j
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"tit\n"
-"help.text"
-msgid "While...Wend Statement[Runtime]"
-msgstr ""
-
-#. Vmlp
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"bm_id3150400\n"
-"help.text"
-msgid "<bookmark_value>While;While...Wend loop</bookmark_value>"
-msgstr ""
-
-#. zB.e
-#: 03090203.xhp
-#, fuzzy
-msgctxt ""
-"03090203.xhp\n"
-"hd_id3150400\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement[Runtime]\">While...Wend Statement[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. T?aW
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3151211\n"
-"2\n"
-"help.text"
-msgid "When a program encounters a While statement, it tests the condition. If the condition is False, the program continues directly following the Wend statement. If the condition is True, the loop is executed until the program finds Wend and then jumps back to the<emph> While </emph>statement. If the condition is still True, the loop is executed again."
-msgstr ""
-
-#. Edzw
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3151041\n"
-"3\n"
-"help.text"
-msgid "Unlike the <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop\">Do...Loop</link> statement, you cannot cancel a <emph>While...Wend</emph> loop with <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link>. Never exit a While...Wend loop with <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link>, since this can cause a run-time error."
-msgstr ""
-
-#. ^v)m
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3145172\n"
-"4\n"
-"help.text"
-msgid "A Do...Loop is more flexible than a While...Wend."
-msgstr ""
-
-#. k\=@
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"hd_id3155133\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. buAW
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3147288\n"
-"6\n"
-"help.text"
-msgid "While Condition [Statement] Wend"
-msgstr ""
-
-#. jmL!
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"hd_id3153139\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 7pZ8
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3159153\n"
-"8\n"
-"help.text"
-msgid "Sub ExampleWhileWend"
-msgstr "Sub ExampleBeep"
-
-#. ZGif
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3151114\n"
-"9\n"
-"help.text"
-msgid "Dim stext As String"
-msgstr "Dim sSep As String"
-
-#. ^?v_
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3153143\n"
-"10\n"
-"help.text"
-msgid "Dim iRun As Integer"
-msgstr "DIm iLen როგორც Integer"
-
-#. NCeQ
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3155306\n"
-"11\n"
-"help.text"
-msgid "sText =\"This Is a short text\""
-msgstr ""
-
-#. Tj*V
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3154011\n"
-"12\n"
-"help.text"
-msgid "iRun = 1"
-msgstr ""
-
-#. u/L0
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3147215\n"
-"13\n"
-"help.text"
-msgid "While iRun < Len(sText)"
-msgstr ""
-
-#. )rN[
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3147427\n"
-"14\n"
-"help.text"
-msgid "If Mid(sText,iRun,1 )<> \" \" Then Mid( sText ,iRun, 1, Chr( 1 + Asc( Mid(sText,iRun,1 )) )"
-msgstr ""
-
-#. 3`((
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3149665\n"
-"15\n"
-"help.text"
-msgid "iRun = iRun + 1"
-msgstr ""
-
-#. n]=+
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3152939\n"
-"16\n"
-"help.text"
-msgid "Wend"
-msgstr ""
-
-#. `ouM
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3153189\n"
-"17\n"
-"help.text"
-msgid "MsgBox sText,0,\"Text encoded\""
-msgstr ""
-
-#. QrEj
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3145251\n"
-"18\n"
-"help.text"
-msgid "End Sub"
-msgstr ""
-
-#. byqU
-#: 03103450.xhp
-msgctxt ""
-"03103450.xhp\n"
-"tit\n"
-"help.text"
-msgid "Global Statement [Runtime]"
-msgstr ""
-
-#. h?4U
-#: 03103450.xhp
-msgctxt ""
-"03103450.xhp\n"
-"bm_id3159201\n"
-"help.text"
-msgid "<bookmark_value>Global statement</bookmark_value>"
-msgstr "<bookmark_value>LSet განაცხადი</bookmark_value>"
-
-#. [\9X
-#: 03103450.xhp
-#, fuzzy
-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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. .+lO
-#: 03103450.xhp
-msgctxt ""
-"03103450.xhp\n"
-"par_id3149177\n"
-"2\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 ""
-
-#. R0V5
-#: 03103450.xhp
-msgctxt ""
-"03103450.xhp\n"
-"hd_id3143270\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. u^M^
-#: 03103450.xhp
-msgctxt ""
-"03103450.xhp\n"
-"par_id3150771\n"
-"4\n"
-"help.text"
-msgid "Global VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
-msgstr ""
-
-#. S$s}
-#: 03103450.xhp
-msgctxt ""
-"03103450.xhp\n"
-"hd_id3156152\n"
-"5\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. ]EH+
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"tit\n"
-"help.text"
-msgid "Const Statement [Runtime]"
-msgstr ""
-
-#. \KxL
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"bm_id3146958\n"
-"help.text"
-msgid "<bookmark_value>Const statement</bookmark_value>"
-msgstr "<bookmark_value>LSet განაცხადი</bookmark_value>"
-
-#. Y2Ii
-#: 03100700.xhp
-#, fuzzy
-msgctxt ""
-"03100700.xhp\n"
-"hd_id3146958\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. f[^b
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"par_id3154143\n"
-"2\n"
-"help.text"
-msgid "Defines a string as a constant."
-msgstr ""
-
-#. lky~
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"hd_id3150670\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. FFIO
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"par_id3150984\n"
-"4\n"
-"help.text"
-msgid "Const Text = Expression"
-msgstr ""
-
-#. X#@O
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"hd_id3147530\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. ,H(Q
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"par_id3153897\n"
-"6\n"
-"help.text"
-msgid "<emph>Text:</emph> Any constant name that follows the standard variable naming conventions."
-msgstr ""
-
-#. r=aB
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"par_id3147264\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 ""
-
-#. K))V
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"par_id3150542\n"
-"8\n"
-"help.text"
-msgid "CONST ConstName=Expression"
-msgstr ""
-
-#. N@p#
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"par_id3150400\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 ""
-
-#. Mgh,
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"hd_id3154366\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. Q/va
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"par_id3153969\n"
-"14\n"
-"help.text"
-msgid "Const sVar = \"Program\", dVar As Double = 1.00"
-msgstr ""
-
-#. d%V_
-#: 01020200.xhp
-msgctxt ""
-"01020200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Using Objects"
-msgstr ""
-
-#. (,:9
-#: 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 ""
-
-#. G.%N
-#: 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 ""
-
-#. La1q
-#: 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 ""
-
-#. r_Y~
-#: 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 ""
-
-#. Vkfw
-#: 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, 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 ""
-
-#. m,cO
-#: 01020200.xhp
-msgctxt ""
-"01020200.xhp\n"
-"par_id3153266\n"
-"81\n"
-"help.text"
-msgid "Click the (X) icon in the title bar to close the object catalog."
-msgstr ""
-
-#. WFqN
-#: 03090405.xhp
-msgctxt ""
-"03090405.xhp\n"
-"tit\n"
-"help.text"
-msgid "FreeLibrary Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. H(i8
-#: 03090405.xhp
-msgctxt ""
-"03090405.xhp\n"
-"bm_id3143270\n"
-"help.text"
-msgid "<bookmark_value>FreeLibrary function</bookmark_value>"
-msgstr "<bookmark_value>DatePart ფუნქცია</bookmark_value>"
-
-#. b;R5
-#: 03090405.xhp
-#, fuzzy
-msgctxt ""
-"03090405.xhp\n"
-"hd_id3143270\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. dn[T
-#: 03090405.xhp
-msgctxt ""
-"03090405.xhp\n"
-"par_id3147559\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 ""
-
-#. *?hV
-#: 03090405.xhp
-msgctxt ""
-"03090405.xhp\n"
-"hd_id3148550\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. O;El
-#: 03090405.xhp
-msgctxt ""
-"03090405.xhp\n"
-"par_id3153361\n"
-"4\n"
-"help.text"
-msgid "FreeLibrary (LibName As String)"
-msgstr ""
-
-#. xxsM
-#: 03090405.xhp
-msgctxt ""
-"03090405.xhp\n"
-"hd_id3153380\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. Z4Vb
-#: 03090405.xhp
-msgctxt ""
-"03090405.xhp\n"
-"par_id3154138\n"
-"6\n"
-"help.text"
-msgid "<emph>LibName:</emph> String expression that specifies the name of the DLL."
-msgstr ""
-
-#. 0K/0
-#: 03090405.xhp
-msgctxt ""
-"03090405.xhp\n"
-"par_id3146923\n"
-"7\n"
-"help.text"
-msgid "FreeLibrary can only release DLLs that are loaded during Basic runtime."
-msgstr ""
-
-#. 8$_%
-#: 03090405.xhp
-msgctxt ""
-"03090405.xhp\n"
-"hd_id3153363\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. q#8w
-#: 03103500.xhp
-msgctxt ""
-"03103500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Static Statement [Runtime]"
-msgstr ""
-
-#. X!gU
-#: 03103500.xhp
-msgctxt ""
-"03103500.xhp\n"
-"bm_id3149798\n"
-"help.text"
-msgid "<bookmark_value>Static statement</bookmark_value>"
-msgstr "<bookmark_value>Wait განცხადება</bookmark_value>"
-
-#. ;fK:
-#: 03103500.xhp
-#, fuzzy
-msgctxt ""
-"03103500.xhp\n"
-"hd_id3149798\n"
-"1\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. }Ls`
-#: 03103500.xhp
-msgctxt ""
-"03103500.xhp\n"
-"par_id3153311\n"
-"2\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 ""
-
-#. -QSP
-#: 03103500.xhp
-msgctxt ""
-"03103500.xhp\n"
-"par_id3147264\n"
-"3\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 ""
-
-#. MD]%
-#: 03103500.xhp
-msgctxt ""
-"03103500.xhp\n"
-"hd_id3149657\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. -rA1
-#: 03103500.xhp
-msgctxt ""
-"03103500.xhp\n"
-"par_id3150400\n"
-"5\n"
-"help.text"
-msgid "Static VarName[(start To end)] [As VarType], VarName2[(start To end)] [As VarType], ..."
-msgstr ""
-
-#. EYIV
-#: 03103500.xhp
-msgctxt ""
-"03103500.xhp\n"
-"hd_id3148452\n"
-"6\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. M5l*
-#: 03103500.xhp
-msgctxt ""
-"03103500.xhp\n"
-"par_id3150870\n"
-"11\n"
-"help.text"
-msgid "MsgBox iResult,0,\"The answer is\""
-msgstr ""
-
-#. .^,U
-#: 03103500.xhp
-msgctxt ""
-"03103500.xhp\n"
-"par_id3151115\n"
-"15\n"
-"help.text"
-msgid "' Function for initialization of the static variable"
-msgstr ""
-
-#. EnDf
-#: 03103500.xhp
-msgctxt ""
-"03103500.xhp\n"
-"par_id1057161\n"
-"help.text"
-msgid "Const iMinimum As Integer = 40 ' minimum return value of this function"
-msgstr ""
-
-#. Ab^$
-#: 03103500.xhp
-msgctxt ""
-"03103500.xhp\n"
-"par_id580462\n"
-"help.text"
-msgid "If iInit = 0 Then ' check if initialized"
-msgstr ""
-
-#. ,3#z
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"tit\n"
-"help.text"
-msgid "For...Next Statement [Runtime]"
-msgstr ""
-
-#. ~Umk
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"bm_id3149205\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 ""
-
-#. `mMQ
-#: 03090202.xhp
-#, fuzzy
-msgctxt ""
-"03090202.xhp\n"
-"hd_id3149205\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. TaqE
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3143267\n"
-"2\n"
-"help.text"
-msgid "Repeats the statements between the For...Next block a specified number of times."
-msgstr ""
-
-#. {Or3
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"hd_id3156153\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. __M)
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3148473\n"
-"4\n"
-"help.text"
-msgid "For counter=start To end [Step step]"
-msgstr ""
-
-#. ^;Bt
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3156024\n"
-"5\n"
-"help.text"
-msgid "statement block"
-msgstr ""
-
-#. }jj%
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3146796\n"
-"6\n"
-"help.text"
-msgid "[Exit For]"
-msgstr ""
-
-#. 12{v
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3159414\n"
-"7\n"
-"help.text"
-msgid "statement block"
-msgstr ""
-
-#. C,Q@
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3153897\n"
-"8\n"
-"help.text"
-msgid "Next [counter]"
-msgstr ""
-
-#. slKh
-#: 03090202.xhp
-#, fuzzy
-msgctxt ""
-"03090202.xhp\n"
-"hd_id3150400\n"
-"9\n"
-"help.text"
-msgid "Variables:"
-msgstr "ცვლადები"
-
-#. ^.O=
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3150358\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 ""
-
-#. `6#)
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3152455\n"
-"11\n"
-"help.text"
-msgid "<emph>Start:</emph> Numeric variable that defines the initial value at the beginning of the loop."
-msgstr ""
-
-#. 8wPC
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3151043\n"
-"12\n"
-"help.text"
-msgid "<emph>End:</emph> Numeric variable that defines the final value at the end of the loop."
-msgstr ""
-
-#. +VJ)
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3156281\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 ""
-
-#. ?;*k
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3154684\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 ""
-
-#. ?+aY
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3147287\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 ""
-
-#. q8f4
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3159154\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 ""
-
-#. {PH[
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3155306\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 ""
-
-#. D4jS
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3155854\n"
-"18\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 ""
-
-#. \*[:
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3145273\n"
-"19\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 ""
-
-#. J09K
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3153190\n"
-"20\n"
-"help.text"
-msgid "For..."
-msgstr ""
-
-#. _9\N
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3149482\n"
-"21\n"
-"help.text"
-msgid "statements"
-msgstr ""
-
-#. ZC`N
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3147124\n"
-"22\n"
-"help.text"
-msgid "If condition = True Then Exit For"
-msgstr ""
-
-#. @k5[
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3153159\n"
-"23\n"
-"help.text"
-msgid "statements"
-msgstr ""
-
-#. 6CCT
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3154096\n"
-"24\n"
-"help.text"
-msgid "Next"
-msgstr "შემდეგი"
-
-#. QB;U
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3156286\n"
-"25\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 ""
-
-#. _T2X
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"hd_id3148457\n"
-"26\n"
-"help.text"
-msgid "Example"
-msgstr ""
-
-#. WB2{
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3151074\n"
-"27\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 ""
-
-#. 2i+H
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3155767\n"
-"42\n"
-"help.text"
-msgid "sEntry(0) = \"Jerry\""
-msgstr ""
-
-#. VU!z
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3153711\n"
-"33\n"
-"help.text"
-msgid "sEntry(1) = \"Patty\""
-msgstr ""
-
-#. m{kB
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3148993\n"
-"34\n"
-"help.text"
-msgid "sEntry(2) = \"Kurt\""
-msgstr ""
-
-#. 2-fN
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3156382\n"
-"35\n"
-"help.text"
-msgid "sEntry(3) = \"Thomas\""
-msgstr ""
-
-#. dxv%
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3155174\n"
-"36\n"
-"help.text"
-msgid "sEntry(4) = \"Michael\""
-msgstr ""
-
-#. ]72:
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3166448\n"
-"37\n"
-"help.text"
-msgid "sEntry(5) = \"David\""
-msgstr ""
-
-#. pj:`
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3149255\n"
-"38\n"
-"help.text"
-msgid "sEntry(6) = \"Cathy\""
-msgstr ""
-
-#. U]~E
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3149565\n"
-"39\n"
-"help.text"
-msgid "sEntry(7) = \"Susie\""
-msgstr ""
-
-#. xd6[
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3145148\n"
-"40\n"
-"help.text"
-msgid "sEntry(8) = \"Edward\""
-msgstr ""
-
-#. 7EOX
-#: 03090202.xhp
-msgctxt ""
-"03090202.xhp\n"
-"par_id3145229\n"
-"41\n"
-"help.text"
-msgid "sEntry(9) = \"Christine\""
-msgstr ""
-
-#. 31_S
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"tit\n"
-"help.text"
-msgid "ChDir Statement [Runtime]"
-msgstr ""
-
-#. +Fs@
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"bm_id3150178\n"
-"help.text"
-msgid "<bookmark_value>ChDir statement</bookmark_value>"
-msgstr "<bookmark_value>Wait განცხადება</bookmark_value>"
-
-#. -PV%
-#: 03020401.xhp
-#, fuzzy
-msgctxt ""
-"03020401.xhp\n"
-"hd_id3150178\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. VXSm
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"par_id3153126\n"
-"2\n"
-"help.text"
-msgid "Changes the current directory or drive."
-msgstr ""
-
-#. 0==h
-#: 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 ""
-
-#. mWxI
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"hd_id3154347\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. vL}!
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"par_id3153897\n"
-"4\n"
-"help.text"
-msgid "ChDir Text As String"
-msgstr "RTrim (Text As String)"
-
-#. D?`]
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"hd_id3148664\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. u6Vr
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"par_id3150543\n"
-"6\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the directory path or drive."
-msgstr ""
-
-#. qP5]
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"par_id3152598\n"
-"7\n"
-"help.text"
-msgid "If you only want to change the current drive, enter the drive letter followed by a colon."
-msgstr ""
-
-#. sMR;
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"hd_id3151116\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. (,Hp
-#: 03130000.xhp
-msgctxt ""
-"03130000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Other Commands"
-msgstr "სხვა ბრძანებები"
-
-#. ,I}~
-#: 03130000.xhp
-msgctxt ""
-"03130000.xhp\n"
-"hd_id3156027\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"Other Commands\">Other Commands</link>"
-msgstr "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"სხვა ბრძენებები\">სხვა ბრძენებები</link>"
-
-#. Y?F_
-#: 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 "აქ მოყვანილია ფუნქციების და დებულებებუს სია, რომლების არ შედის სხვა კატეგორიებში."
-
-#. BBq(
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"tit\n"
-"help.text"
-msgid "Date Statement [Runtime]"
-msgstr ""
-
-#. ?b=N
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"bm_id3156027\n"
-"help.text"
-msgid "<bookmark_value>Date statement</bookmark_value>"
-msgstr "<bookmark_value>Wait განცხადება</bookmark_value>"
-
-#. VzM#
-#: 03030301.xhp
-#, fuzzy
-msgctxt ""
-"03030301.xhp\n"
-"hd_id3156027\n"
-"1\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. 6dX(
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"par_id3147291\n"
-"2\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 ""
-
-#. i=_h
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"hd_id3148686\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. @fcn
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"par_id3146794\n"
-"4\n"
-"help.text"
-msgid "Date ; Date = Text As String"
-msgstr ""
-
-#. zk?6
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"hd_id3154347\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. \Xbe
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"par_id3145069\n"
-"6\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 ""
-
-#. j(;,
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"hd_id3150793\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. `d15
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"par_id3156424\n"
-"9\n"
-"help.text"
-msgid "MsgBox \"The date is \" & Date"
-msgstr ""
-
-#. 3o#{
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"tit\n"
-"help.text"
-msgid "LSet Statement [Runtime]"
-msgstr ""
-
-#. 6c?G
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"bm_id3143268\n"
-"help.text"
-msgid "<bookmark_value>LSet statement</bookmark_value>"
-msgstr "<bookmark_value>LSet განაცხადი</bookmark_value>"
-
-#. 1O%o
-#: 03120304.xhp
-#, fuzzy
-msgctxt ""
-"03120304.xhp\n"
-"hd_id3143268\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. 1Yd5
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"par_id3155419\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 ""
-
-#. D.~5
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"hd_id3145317\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. z$~z
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"par_id3150984\n"
-"4\n"
-"help.text"
-msgid "LSet Var As String = Text or LSet Var1 = Var2"
-msgstr "LSet Var როგორც სტრიქონი = ტექსტი ან LSet Var1 = Var2"
-
-#. asqR
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"hd_id3143271\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. 4M59
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"par_id3145610\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> ნებისმიერი სრიქონის ცვლადი შეიცავს სტრიქონს, რომელიც გინდათ, რომ გადაანაცვლოთ მარცხნივ."
-
-#. Nig?
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"par_id3154346\n"
-"7\n"
-"help.text"
-msgid "<emph>Text:</emph> String that you want to align to the left of the string variable."
-msgstr "<emph>ტექსტი</emph>: სტრინგი, რომელიც გსურთ გაასწოროთ მარჯვნივ სტრინგის ცვლადში."
-
-#. -H%{
-#: 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 ""
-
-#. t@g]
-#: 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 ""
-
-#. J52J
-#: 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 ""
-
-#. kIO8
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"hd_id3156282\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. b1+%
-#: 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 Align \"SBX\" 40 სიმბოლიანი სტრიქონის საზღვრებში"
-
-#. HaY(
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"par_id3148647\n"
-"19\n"
-"help.text"
-msgid "' Replace asterisks with spaces"
-msgstr ""
-
-#. Y_qN
-#: 03120304.xhp
-#, fuzzy
-msgctxt ""
-"03120304.xhp\n"
-"par_id3151075\n"
-"30\n"
-"help.text"
-msgid "' Left-align \"SBX\" within the 40-character reference string"
-msgstr "REM Align \"SBX\" 40 სიმბოლიანი სტრიქონის საზღვრებში"
-
-#. .Y-.
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"tit\n"
-"help.text"
-msgid "CDateToIso Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. T@iq
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"bm_id3150620\n"
-"help.text"
-msgid "<bookmark_value>CdateToIso function</bookmark_value>"
-msgstr "<bookmark_value>DateAdd ფუნქცია</bookmark_value>"
-
-#. G(Pa
-#: 03030107.xhp
-#, fuzzy
-msgctxt ""
-"03030107.xhp\n"
-"hd_id3150620\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. [_2r
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"par_id3151097\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 ""
-
-#. loc}
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"hd_id3159224\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. Frk:
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"par_id3149497\n"
-"4\n"
-"help.text"
-msgid "CDateToIso(Number)"
-msgstr ""
-
-#. ^SX9
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"hd_id3152347\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. P#9f
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"par_id3154422\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "სტრიქონები"
-
-#. Ic5v
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"hd_id3147303\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. u)wq
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"par_id3145136\n"
-"8\n"
-"help.text"
-msgid "<emph>Number:</emph> Integer that contains the serial date number."
-msgstr ""
-
-#. 0l@n
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"hd_id3147243\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. pI*X
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"par_id3153126\n"
-"11\n"
-"help.text"
-msgid "MsgBox \"\" & CDateToIso(Now) ,64,\"ISO Date\""
-msgstr ""
-
-#. 8*mH
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Shell Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. YqY)
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"bm_id3150040\n"
-"help.text"
-msgid "<bookmark_value>Shell function</bookmark_value>"
-msgstr "<bookmark_value>Shell ფუნქცია</bookmark_value>"
-
-#. E4M^
-#: 03130500.xhp
-#, fuzzy
-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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. haWc
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3153394\n"
-"2\n"
-"help.text"
-msgid "Starts another application and defines the respective window style, if necessary."
-msgstr "რთავს პროგრამას და საჭიროების მიხედვით განსაზღვრავს შესაბამისი ფანჯრების სტილს."
-
-#. q2a$
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3153345\n"
-"4\n"
-"help.text"
-msgid "Syntax"
-msgstr ""
-
-#. qW_1
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3147576\n"
-"5\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])"
-
-#. bRF,
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3149235\n"
-"6\n"
-"help.text"
-msgid "Parameter"
-msgstr ""
-
-#. /7eO
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3154306\n"
-"23\n"
-"help.text"
-msgid "Pathname"
-msgstr "Pathname"
-
-#. PFo1
-#: 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 "სასურველი გასაშვები პროგრამის სრული სახელი და გზა."
-
-#. {Z;{
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3150771\n"
-"24\n"
-"help.text"
-msgid "Windowstyle"
-msgstr "Windowstyle"
-
-#. W38j
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3145609\n"
-"8\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 "არჩევითი ინტეგერის გამოსახულება, რომელიც განსაზღვრავს იმ ფანჯრის სტილს, რომელშიც გაეშვება პროგრამა. შესაძლოა შემდეგი მნიშვნელობები:"
-
-#. XqWL
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3148663\n"
-"25\n"
-"help.text"
-msgid "0"
-msgstr ""
-
-#. ]%##
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3153360\n"
-"10\n"
-"help.text"
-msgid "The focus is on the hidden program window."
-msgstr "ფოკუსი არის პროგრამის დამალულ ფანჯარაზე"
-
-#. =Jxf
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3154123\n"
-"26\n"
-"help.text"
-msgid "1"
-msgstr ""
-
-#. ZObQ
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3144760\n"
-"11\n"
-"help.text"
-msgid "The focus is on the program window in standard size."
-msgstr "ფოკუსი არის პროგრამის ფანჯარაზე სტანდარტულ ზომაზე."
-
-#. ldS.
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3156422\n"
-"27\n"
-"help.text"
-msgid "2"
-msgstr ""
-
-#. {=E2
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3148451\n"
-"12\n"
-"help.text"
-msgid "The focus is on the minimized program window."
-msgstr "ფოკუსი არის მინიმიზირებული პროგრამის ფანჯარაზე."
-
-#. _e-7
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3149561\n"
-"28\n"
-"help.text"
-msgid "3"
-msgstr ""
-
-#. er-5
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3146921\n"
-"13\n"
-"help.text"
-msgid "focus is on the maximized program window."
-msgstr "ფოკუსი არის მაქსიმიზირებული პროგრამის ფანჯარაზე."
-
-#. (9TB
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3149481\n"
-"29\n"
-"help.text"
-msgid "4"
-msgstr ""
-
-#. z|?6
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3155854\n"
-"14\n"
-"help.text"
-msgid "Standard size program window, without focus."
-msgstr "პროგრამის ფანჯრის სტანდარტული ზომა, ფოკუსის გარეშე."
-
-#. (d^{
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3145271\n"
-"30\n"
-"help.text"
-msgid "6"
-msgstr ""
-
-#. J#5Z
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3152938\n"
-"15\n"
-"help.text"
-msgid "Minimized program window, focus remains on the active window."
-msgstr "მინიმიზირებული პროგრამის ფანჯარა, ფოკუსი რჩება აქტიურ ფანჯარაზე."
-
-#. 3/yM
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3146119\n"
-"31\n"
-"help.text"
-msgid "10"
-msgstr "10"
-
-#. `^B8
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3151112\n"
-"16\n"
-"help.text"
-msgid "Full-screen display."
-msgstr "ჩვენება მთელს ეკრანზე."
-
-#. .h7[
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3150419\n"
-"33\n"
-"help.text"
-msgid "Param"
-msgstr "Param"
-
-#. b}tk
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3149412\n"
-"17\n"
-"help.text"
-msgid "Any string expression that specifies the command line that want to pass."
-msgstr "ნებისმიერი სტრინგული გამოსახულება, რომელიც მიუთუთებს ბრძანებათა ზოლს რომელსაც სურს გადაცემა."
-
-#. XEdX
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3148456\n"
-"32\n"
-"help.text"
-msgid "bSync"
-msgstr "bSync"
-
-#. L#ft
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"par_id3154096\n"
-"18\n"
-"help.text"
-msgid "If this value is set to <emph>true</emph>, the <emph>Shell</emph> command and all $[officename] tasks wait until the shell process completes. If the value is set to <emph>false</emph>, the shell returns directly. The default value is <emph>false</emph>."
-msgstr "თუ ეს მნიშვნელობა დაყენებულია როგორც <emph>true</emph>, <emph>გარსის</emph> ბრძანება და ყველა $[officename] დავალებები იცდიან, გარსის დამთავრებამდე. თუ მნიშვნელობა დაყენებულია როგორც <emph>false</emph>, მაშინ გარსი პირდაპირ აბრუნებს ბრძანებებს. საწყისი მნიშვნელობა არის <emph>false</emph>."
-
-#. kbg)
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3154270\n"
-"19\n"
-"help.text"
-msgid "Example"
-msgstr ""
-
-#. 3c41
-#: 03131300.xhp
-msgctxt ""
-"03131300.xhp\n"
-"tit\n"
-"help.text"
-msgid "TwipsPerPixelX Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. V+uc
-#: 03131300.xhp
-msgctxt ""
-"03131300.xhp\n"
-"bm_id3153539\n"
-"help.text"
-msgid "<bookmark_value>TwipsPerPixelX function</bookmark_value>"
-msgstr "<bookmark_value>TwipsPerPixelX ფუნქცია</bookmark_value>"
-
-#. yh=N
-#: 03131300.xhp
-#, fuzzy
-msgctxt ""
-"03131300.xhp\n"
-"hd_id3153539\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. `1.R
-#: 03131300.xhp
-msgctxt ""
-"03131300.xhp\n"
-"par_id3153394\n"
-"2\n"
-"help.text"
-msgid "Returns the number of twips that represent the width of a pixel."
-msgstr "აბრუნებს twip-ების რიცხვს. რაც განსაზღვრავს პიქსელის სიგანეს."
-
-#. !(Rz
-#: 03131300.xhp
-msgctxt ""
-"03131300.xhp\n"
-"hd_id3153527\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. b`sH
-#: 03131300.xhp
-msgctxt ""
-"03131300.xhp\n"
-"par_id3151110\n"
-"4\n"
-"help.text"
-msgid "n = TwipsPerPixelX"
-msgstr "n = TwipsPerPixelX"
-
-#. N`d}
-#: 03131300.xhp
-msgctxt ""
-"03131300.xhp\n"
-"hd_id3150669\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. [d~E
-#: 03131300.xhp
-msgctxt ""
-"03131300.xhp\n"
-"par_id3150503\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr ""
-
-#. *I]K
-#: 03131300.xhp
-msgctxt ""
-"03131300.xhp\n"
-"hd_id3159176\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. hT]9
-#: 03131300.xhp
-msgctxt ""
-"03131300.xhp\n"
-"par_id3153061\n"
-"9\n"
-"help.text"
-msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
-msgstr ""
-
-#. NP[f
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"tit\n"
-"help.text"
-msgid "CInt Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. n+F[
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"bm_id3149346\n"
-"help.text"
-msgid "<bookmark_value>CInt function</bookmark_value>"
-msgstr "<bookmark_value>InStr ფუნქცია</bookmark_value>"
-
-#. FFGl
-#: 03100500.xhp
-#, fuzzy
-msgctxt ""
-"03100500.xhp\n"
-"hd_id3149346\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. .sM9
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"par_id3155419\n"
-"2\n"
-"help.text"
-msgid "Converts any string or numeric expression to an integer."
-msgstr "გარდაქმნის სტრიქონს ან ციფრულ გამოსახულებას ბაიტის ტიპისთვის."
-
-#. K;K4
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"hd_id3147573\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. %`LR
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"par_id3154142\n"
-"4\n"
-"help.text"
-msgid "CInt (Expression)"
-msgstr "CCur(Expression)"
-
-#. kldD
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"hd_id3147531\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. V^@N
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"par_id3147560\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr ""
-
-#. Ud9N
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"hd_id3145069\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. 971|
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"par_id3159414\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 ""
-
-#. *Dnw
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"par_id3150358\n"
-"9\n"
-"help.text"
-msgid "This function always rounds the fractional part of a number to the nearest integer."
-msgstr ""
-
-#. uvBz
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"hd_id3145419\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. UZlO
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"tit\n"
-"help.text"
-msgid "DateAdd Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. V]]l
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"bm_id6269417\n"
-"help.text"
-msgid "<bookmark_value>DateAdd function</bookmark_value>"
-msgstr "<bookmark_value>DateAdd ფუნქცია</bookmark_value>"
-
-#. ]XqE
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10548\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030110.xhp\">DateAdd Function [Runtime]</link>"
-msgstr ""
-
-#. z)~C
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "Adds a date interval to a given date a number of times and returns the resulting date."
-msgstr "ამატებს"
-
-#. 6q_g
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN1055B\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. \(L~
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN1055F\n"
-"help.text"
-msgid "DateAdd (Add, Count, Date)"
-msgstr "DateAdd (Add, Count, Date)"
-
-#. +E,*
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN1061E\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. !_?K
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10622\n"
-"help.text"
-msgid "A Variant containing a date."
-msgstr ""
-
-#. =GEL
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10625\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. JiDs
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10629\n"
-"help.text"
-msgid "Add - A string expression from the following table, specifying the date interval."
-msgstr "Add - სტრინგული გამოსახულება მომდევნო ცხრილიდან, რომელიც მიუთითებს თარიღის ინტერვალს."
-
-#. cT:7
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10636\n"
-"help.text"
-msgid "Add (string value)"
-msgstr "Add (string value)"
-
-#. $l_-
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN1063C\n"
-"help.text"
-msgid "Explanation"
-msgstr ""
-
-#. 3ThM
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10643\n"
-"help.text"
-msgid "yyyy"
-msgstr "yyyy"
-
-#. Vtym
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10649\n"
-"help.text"
-msgid "Year"
-msgstr "Year"
-
-#. Omgo
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10650\n"
-"help.text"
-msgid "q"
-msgstr "q"
-
-#. `e-S
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10656\n"
-"help.text"
-msgid "Quarter"
-msgstr "Quarter"
-
-#. an0G
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN1065D\n"
-"help.text"
-msgid "m"
-msgstr "m"
-
-#. XAI~
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10663\n"
-"help.text"
-msgid "Month"
-msgstr "Month"
-
-#. t91k
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN1066A\n"
-"help.text"
-msgid "y"
-msgstr "y"
-
-#. d5_-
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10670\n"
-"help.text"
-msgid "Day of year"
-msgstr "Day of year"
-
-#. L0Z$
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10677\n"
-"help.text"
-msgid "w"
-msgstr "w"
-
-#. )}04
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN1067D\n"
-"help.text"
-msgid "Weekday"
-msgstr "Weekday"
-
-#. ?:NL
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10684\n"
-"help.text"
-msgid "ww"
-msgstr "ww"
-
-#. 2;)Y
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN1068A\n"
-"help.text"
-msgid "Week of year"
-msgstr "Week of year"
-
-#. ||PK
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10691\n"
-"help.text"
-msgid "d"
-msgstr "d"
-
-#. mtM,
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10697\n"
-"help.text"
-msgid "Day"
-msgstr "Day"
-
-#. jmF/
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN1069E\n"
-"help.text"
-msgid "h"
-msgstr "h"
-
-#. eVrI
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN106A4\n"
-"help.text"
-msgid "Hour"
-msgstr "Hour"
-
-#. riBC
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN106AB\n"
-"help.text"
-msgid "n"
-msgstr "n"
-
-#. IsU_
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN106B1\n"
-"help.text"
-msgid "Minute"
-msgstr "Minute"
-
-#. MP61
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN106B8\n"
-"help.text"
-msgid "s"
-msgstr "s"
-
-#. BDMJ
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN106BE\n"
-"help.text"
-msgid "Second"
-msgstr "Second"
-
-#. Ti6X
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN106C1\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 "Count - რიცხვითი გამოსახულება, რომელიც მიუთითებს რამდენად ხშირად დაემატება Add ინტერვალი (Count დადებითია) ან გამოაკლდება subtracted (Count უარყოფითია)."
-
-#. mzN:
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN106C4\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 "Date - თარიღის შემცველი Variant ცვლადისთვის მინიჭებული თარიღი ან სახელი,ამ მნიშვნელობას Add მნიშვნელობა დაემატება Count -ჯერ."
-
-#. s=`S
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN106C7\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 0H}:
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefBool Statement [Runtime]"
-msgstr ""
-
-#. 76_V
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"bm_id3145759\n"
-"help.text"
-msgid "<bookmark_value>DefBool statement</bookmark_value>"
-msgstr "<bookmark_value>DefCur განცხადება</bookmark_value>"
-
-#. q%r8
-#: 03101100.xhp
-#, fuzzy
-msgctxt ""
-"03101100.xhp\n"
-"hd_id3145759\n"
-"1\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. F-\c
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"par_id3153089\n"
-"2\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 "თუ ტიპის გამოცხადების ასო-ნიშანი ან სიტყვა-გასაღები მითითებული არ არის, DefCur განცხადება საწყისი ცვლადის ტიპს აყენებს ასოთა რანგის მიხედვით."
-
-#. 0Kdu
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"hd_id3149495\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. .;d*
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"par_id3150682\n"
-"4\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr ""
-
-#. SZAs
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"hd_id3159201\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. PDN,
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"par_id3147226\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 ""
-
-#. C}!V
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"par_id3149178\n"
-"7\n"
-"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr ""
-
-#. a!OK
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"par_id3150669\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr ""
-
-#. SFDf
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"par_id3149233\n"
-"9\n"
-"help.text"
-msgid "<emph>DefBool:</emph> Boolean"
-msgstr ""
-
-#. -T?9
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"hd_id3149762\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. E7!H
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"par_id3156152\n"
-"12\n"
-"help.text"
-msgid "' Prefix definition for variable types:"
-msgstr ""
-
-#. T;M`
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"par_id3151381\n"
-"22\n"
-"help.text"
-msgid "bOK=TRUE ' bOK is an implicit boolean variable"
-msgstr ""
-
-#. c3sa
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"tit\n"
-"help.text"
-msgid "SetAttr Statement [Runtime]"
-msgstr ""
-
-#. Rsjm
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"bm_id3147559\n"
-"help.text"
-msgid "<bookmark_value>SetAttr statement</bookmark_value>"
-msgstr "<bookmark_value>DefStr განცხადება</bookmark_value>"
-
-#. nEMK
-#: 03020414.xhp
-#, fuzzy
-msgctxt ""
-"03020414.xhp\n"
-"hd_id3147559\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. V9-_
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"par_id3147264\n"
-"2\n"
-"help.text"
-msgid "Sets the attribute information for a specified file."
-msgstr ""
-
-#. V5)K
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"hd_id3150359\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. E6^Z
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"par_id3154365\n"
-"4\n"
-"help.text"
-msgid "SetAttr FileName As String, Attribute As Integer"
-msgstr ""
-
-#. yY(Y
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"hd_id3125863\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. ;*A0
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"par_id3154909\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 ""
-
-#. E$h[
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"par_id3153192\n"
-"7\n"
-"help.text"
-msgid "<emph>Attribute:</emph> Bit pattern defining the attributes that you want to set or to clear:"
-msgstr ""
-
-#. E]dD
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"par_id3145786\n"
-"8\n"
-"help.text"
-msgid "<emph>Value</emph>"
-msgstr ""
-
-#. ~e_9
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"par_id3152596\n"
-"9\n"
-"help.text"
-msgid "0 : Normal files."
-msgstr ""
-
-#. $::0
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"par_id3149262\n"
-"10\n"
-"help.text"
-msgid "1 : Read-only files."
-msgstr ""
-
-#. rhm+
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"par_id3152576\n"
-"13\n"
-"help.text"
-msgid "32 : File was changed since last backup (Archive bit)."
-msgstr ""
-
-#. o=h3
-#: 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 ""
-
-#. h/6N
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"hd_id3147434\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. Zt[h
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"par_id3148645\n"
-"17\n"
-"help.text"
-msgid "On Error GoTo ErrorHandler ' Define target for error handler"
-msgstr ""
-
-#. cAVT
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"tit\n"
-"help.text"
-msgid "GoTo Statement [Runtime]"
-msgstr ""
-
-#. acip
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"bm_id3159413\n"
-"help.text"
-msgid "<bookmark_value>GoTo statement</bookmark_value>"
-msgstr "<bookmark_value>LSet განაცხადი</bookmark_value>"
-
-#. $rSn
-#: 03090302.xhp
-#, fuzzy
-msgctxt ""
-"03090302.xhp\n"
-"hd_id3159413\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo Statement [Runtime]\">GoTo Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. 2T-Q
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3153379\n"
-"2\n"
-"help.text"
-msgid "Continues program execution within a Sub or Function at the procedure line indicated by a label."
-msgstr ""
-
-#. .C$%
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"hd_id3149656\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 6?y5
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3154367\n"
-"4\n"
-"help.text"
-msgid "see Parameters"
-msgstr ""
-
-#. 7~/(
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"hd_id3150870\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. 7hWI
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3156214\n"
-"6\n"
-"help.text"
-msgid "Sub/Function"
-msgstr "End function"
-
-#. -Oy5
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3156424\n"
-"7\n"
-"help.text"
-msgid "statement block"
-msgstr ""
-
-#. +=G6
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3154685\n"
-"8\n"
-"help.text"
-msgid "Label1"
-msgstr ""
-
-#. BTl-
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3145786\n"
-"9\n"
-"help.text"
-msgid "<emph>Label2:</emph>"
-msgstr ""
-
-#. j]iD
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3161832\n"
-"10\n"
-"help.text"
-msgid "statement block"
-msgstr ""
-
-#. qf^i
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3146120\n"
-"11\n"
-"help.text"
-msgid "Exit Sub"
-msgstr ""
-
-#. Getr
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3150010\n"
-"12\n"
-"help.text"
-msgid "<emph>Label1:</emph>"
-msgstr ""
-
-#. f]*s
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3152462\n"
-"13\n"
-"help.text"
-msgid "statement block"
-msgstr ""
-
-#. v(O_
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3149664\n"
-"14\n"
-"help.text"
-msgid "GoTo Label2"
-msgstr ""
-
-#. }(H!
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3152886\n"
-"15\n"
-"help.text"
-msgid "End Sub/Function"
-msgstr "End function"
-
-#. 8Z\;
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3152596\n"
-"16\n"
-"help.text"
-msgid "Use the GoTo statement to instruct $[officename] Basic to continue program execution at another place within the procedure. The position must be indicated by a label. To set a label, assign a name, and then and end it with a colon (\":\")."
-msgstr ""
-
-#. ie`y
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3155416\n"
-"17\n"
-"help.text"
-msgid "You cannot use the GoTo statement to jump out of a Sub or Function."
-msgstr ""
-
-#. qJE0
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"hd_id3154731\n"
-"19\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. oE/4
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id6967035\n"
-"help.text"
-msgid "see Parameters"
-msgstr ""
-
-#. =.T-
-#: 03080700.xhp
-msgctxt ""
-"03080700.xhp\n"
-"tit\n"
-"help.text"
-msgid "Expression Signs"
-msgstr ""
-
-#. ;YpY
-#: 03080700.xhp
-msgctxt ""
-"03080700.xhp\n"
-"hd_id3150702\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080700.xhp\" name=\"Expression Signs\">Expression Signs</link>"
-msgstr ""
-
-#. N8|r
-#: 03080700.xhp
-msgctxt ""
-"03080700.xhp\n"
-"par_id3148668\n"
-"2\n"
-"help.text"
-msgid "This function returns the algebraic sign of a numeric expression."
-msgstr ""
-
-#. 4kcu
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"tit\n"
-"help.text"
-msgid "RSet Statement [Runtime]"
-msgstr ""
-
-#. :3z6
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"bm_id3153345\n"
-"help.text"
-msgid "<bookmark_value>RSet statement</bookmark_value>"
-msgstr "<bookmark_value>RSet დებულება</bookmark_value>"
-
-#. ,;pv
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"hd_id3153345\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 დებულება [გაშვებისას]</link>"
-
-#. ElBc
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"par_id3150503\n"
-"2\n"
-"help.text"
-msgid "Right-aligns a string within a string variable, or copies a user-defined variable type into another."
-msgstr "სტრინგს ასწორებს მარჯვნივ სტრინგის ცვლადში ან აკოპირებს მომხმარებლის მიერ მორგებულ ცვლადის ტიპს სხვაში."
-
-#. 0OU)
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"hd_id3149234\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. :]@*
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"par_id3150669\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"
-
-#. \P=Q
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"hd_id3156024\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. A6PV
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"par_id3148552\n"
-"6\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string variable."
-msgstr "<emph>ტექსტი:</emph> ნებისმიერის სტინგის ცვლადი."
-
-#. ]4A,
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"par_id3154924\n"
-"7\n"
-"help.text"
-msgid "<emph>Text</emph>: String that you want to right-align in the string variable."
-msgstr "<emph>ტექსტი</emph>: სტრინგი, რომელიც გსურთ გაასწოროთ მარჯვნივ სტრინგის ცვლადში."
-
-#. 7@Q:
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"par_id3149456\n"
-"8\n"
-"help.text"
-msgid "<emph>Variable1:</emph> User-defined variable that is the target for the copied variable."
-msgstr "<emph>ცვლადი1:</emph> მომხმარებლის მიერ განსაზღვრული ცვლადი რომელიც არის მიზანი კოპირებული ცვლადისთვის."
-
-#. Q\~#
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"par_id3153381\n"
-"9\n"
-"help.text"
-msgid "<emph>Variable2:</emph> User-defined variable that you want to copy to another variable."
-msgstr "<emph>ცვლადი2:</emph> მომხმარებლის მიერ განსაზღვრული ცვლადი რომელიც გინდათ გადაწეროთ სხვა ცვლადში."
-
-#. {SgW
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"par_id3154140\n"
-"10\n"
-"help.text"
-msgid "If the string is shorter than the string variable, <emph>RSet</emph> aligns the string to the right within the string variable. Any remaining characters in the string variable are replaced with spaces. If the string is longer than the string variable, characters exceeding the length of the variable are truncated, and only the remaining characters are right-aligned within the string variable."
-msgstr "თუ სტრინგი უფრო მოკლეა ვიდრე სტინგის ცვლადი, <emph>RSet</emph> ასწორებს სტრინგს მარჯვნივ. ნებისმიერი დარჩენილი ასო-ნიშანი სტრინგის ცვლადეში ჩანაცვლდება ჰარით. ტუ სტრინგი უფრო გრძელია ვიდრე სტრინგის ცვლდაი, ასო-ნიშნები, რომლების აჭარბებენ ცვლადის ზომას იჭრება, მხოლოდ დარჩენილი ასო-ნიშნები სწორდებიან მარჯვნივ."
-
-#. r+$w
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"par_id3149202\n"
-"11\n"
-"help.text"
-msgid "You can also use the <emph>RSet statement</emph> to assign variables of one user-defined type to another."
-msgstr "თქვენ აგრეთვე შეგიძლიათ გამოიყენოთ <emph>RSet ბრძანება</emph> რათა მიანიჭოთ მომხმარებლის მიერ განსაღვრული ერთი ტიპი მეორეს."
-
-#. 7~B8
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"par_id3151042\n"
-"12\n"
-"help.text"
-msgid "The following example uses the <emph>RSet</emph> and <emph>LSet</emph> statements to modify the left and right alignment of a string."
-msgstr "შემდეგი მაგალითი იყენებს <emph>RSet</emph> და <emph>LSet</emph> ბრძანებებს რათა შეცვალონ სტინგების მარცხენა და მარჯვენა სწორება."
-
-#. C!o:
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"hd_id3154909\n"
-"13\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. iIW.
-#: 03120308.xhp
-#, fuzzy
-msgctxt ""
-"03120308.xhp\n"
-"par_id3155856\n"
-"20\n"
-"help.text"
-msgid "' Right-align \"SBX\" in a 40-character string"
-msgstr "REM მარჯვენა სწორება \"SBX\" 40 ასო-ნიშნიან სტრინგში."
-
-#. bKP^
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"par_id3152577\n"
-"21\n"
-"help.text"
-msgid "' Replace asterisks with spaces"
-msgstr ""
-
-#. _wC/
-#: 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 მარცხენა სწორება \"SBX\" 40 ასო-ნიშნიან სტრინგში."
-
-#. NCZl
-#: 03080200.xhp
-msgctxt ""
-"03080200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Exponential and Logarithmic Functions"
-msgstr ""
-
-#. Olyh
-#: 03080200.xhp
-msgctxt ""
-"03080200.xhp\n"
-"hd_id3154758\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080200.xhp\" name=\"Exponential and Logarithmic Functions\">Exponential and Logarithmic Functions</link>"
-msgstr ""
-
-#. ZEvh
-#: 03080200.xhp
-msgctxt ""
-"03080200.xhp\n"
-"par_id3148550\n"
-"2\n"
-"help.text"
-msgid "$[officename] Basic supports the following exponential and logarithmic functions."
-msgstr ""
-
-#. n,)0
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"tit\n"
-"help.text"
-msgid "The Basic Editor"
-msgstr ""
-
-#. \B6/
-#: 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 ""
-
-#. ZC{6
-#: 01030200.xhp
-#, fuzzy
-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/05060700.xhp\" name=\"მაკრო\">მაკრო</link>"
-
-#. |D3G
-#: 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 ""
-
-#. ec(t
-#: 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 ""
-
-#. vdH$
-#: 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 ""
-
-#. g_pg
-#: 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 ""
-
-#. dn1W
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3125863\n"
-"4\n"
-"help.text"
-msgid "Navigating in a Project"
-msgstr ""
-
-#. TiFW
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3145785\n"
-"6\n"
-"help.text"
-msgid "The Library List"
-msgstr ""
-
-#. R0X+
-#: 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 ""
-
-#. yA,X
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3153190\n"
-"8\n"
-"help.text"
-msgid "The Object Catalog"
-msgstr ""
-
-#. GSD?
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3148647\n"
-"15\n"
-"help.text"
-msgid "Saving and Loading Basic Source Code"
-msgstr ""
-
-#. cb!}
-#: 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 ""
-
-#. .cX8
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3149959\n"
-"25\n"
-"help.text"
-msgid "You cannot save Basic dialogs to a text file."
-msgstr ""
-
-#. mT4=
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3149403\n"
-"17\n"
-"help.text"
-msgid "Saving Source Code to a Text File"
-msgstr ""
-
-#. H,JH
-#: 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 ""
-
-#. oO:R
-#: 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 ""
-
-#. OU4_
-#: 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 ""
-
-#. +9VX
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3159264\n"
-"21\n"
-"help.text"
-msgid "Loading Source Code From a Text File"
-msgstr ""
-
-#. 5ZC+
-#: 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 ""
-
-#. _rN|
-#: 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 ""
-
-#. YFa(
-#: 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 ""
-
-#. hc8q
-#: 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 ""
-
-#. v4~C
-#: 01030200.xhp
-#, fuzzy
-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/05060700.xhp\" name=\"მაკრო\">მაკრო</link>"
-
-#. nW^*
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefVar Statement [Runtime]"
-msgstr ""
-
-#. /%J7
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"bm_id3143267\n"
-"help.text"
-msgid "<bookmark_value>DefVar statement</bookmark_value>"
-msgstr "<bookmark_value>DefCur განცხადება</bookmark_value>"
-
-#. pUNl
-#: 03102000.xhp
-#, fuzzy
-msgctxt ""
-"03102000.xhp\n"
-"hd_id3143267\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. 4Jfd
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3153825\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 ""
-
-#. IsQX
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"hd_id3154143\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. AT^;
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3149514\n"
-"4\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr ""
-
-#. U8t#
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"hd_id3156024\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. kOH3
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3147560\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 ""
-
-#. 2AW7
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3148552\n"
-"7\n"
-"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr ""
-
-#. r9DG
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3153524\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr ""
-
-#. bbX)
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3150767\n"
-"9\n"
-"help.text"
-msgid "<emph>DefVar:</emph> Variant"
-msgstr "<emph>DefStr:</emph> სტრინგი"
-
-#. m+lD
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"hd_id3151041\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. `6[*
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3156214\n"
-"11\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr ""
-
-#. :u^J
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3154012\n"
-"21\n"
-"help.text"
-msgid "vDiv=99 ' vDiv is an implicit variant"
-msgstr ""
-
-#. XOz-
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3146121\n"
-"22\n"
-"help.text"
-msgid "vDiv=\"Hello world\""
-msgstr ""
-
-#. D5%q
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"tit\n"
-"help.text"
-msgid "Information"
-msgstr ""
-
-#. 2=J@
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"hd_id3148550\n"
-"1\n"
-"help.text"
-msgid "Information"
-msgstr ""
-
-#. v5:I
-#: 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 ""
-
-#. )E94
-#: 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 ""
-
-#. L4W`
-#: 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 ""
-
-#. Mcij
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153091\n"
-"3\n"
-"help.text"
-msgid "<emph>Color Value</emph>"
-msgstr ""
-
-#. q\}*
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154319\n"
-"4\n"
-"help.text"
-msgid "<emph>Color Name</emph>"
-msgstr ""
-
-#. }Dk5
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3151112\n"
-"5\n"
-"help.text"
-msgid "0"
-msgstr ""
-
-#. I!b8
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3155854\n"
-"6\n"
-"help.text"
-msgid "Black"
-msgstr ""
-
-#. TC*t
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154942\n"
-"7\n"
-"help.text"
-msgid "128"
-msgstr ""
-
-#. WCbA
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154731\n"
-"8\n"
-"help.text"
-msgid "Blue"
-msgstr "ცისფერი"
-
-#. $Sh@
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3145645\n"
-"9\n"
-"help.text"
-msgid "32768"
-msgstr ""
-
-#. _%Z(
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3149400\n"
-"10\n"
-"help.text"
-msgid "Green"
-msgstr "მწვანე"
-
-#. sV:`
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150753\n"
-"11\n"
-"help.text"
-msgid "32896"
-msgstr ""
-
-#. ]42^
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153765\n"
-"12\n"
-"help.text"
-msgid "Cyan"
-msgstr "ციანი"
-
-#. #;3l
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154756\n"
-"13\n"
-"help.text"
-msgid "8388608"
-msgstr ""
-
-#. cQEh
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3159266\n"
-"14\n"
-"help.text"
-msgid "Red"
-msgstr "წითელი"
-
-#. RuOj
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3163807\n"
-"15\n"
-"help.text"
-msgid "8388736"
-msgstr ""
-
-#. /c`-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3145150\n"
-"16\n"
-"help.text"
-msgid "Magenta"
-msgstr "მაგენტა"
-
-#. ;xAr
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3147002\n"
-"17\n"
-"help.text"
-msgid "8421376"
-msgstr ""
-
-#. gr^E
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3152778\n"
-"18\n"
-"help.text"
-msgid "Yellow"
-msgstr "ყვითელი"
-
-#. %hJi
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150088\n"
-"19\n"
-"help.text"
-msgid "8421504"
-msgstr ""
-
-#. cfZM
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3159239\n"
-"20\n"
-"help.text"
-msgid "White"
-msgstr ""
-
-#. h#l,
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150206\n"
-"21\n"
-"help.text"
-msgid "12632256"
-msgstr ""
-
-#. WDFL
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3149817\n"
-"22\n"
-"help.text"
-msgid "Gray"
-msgstr ""
-
-#. +X^%
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150363\n"
-"23\n"
-"help.text"
-msgid "255"
-msgstr ""
-
-#. X#BR
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154576\n"
-"24\n"
-"help.text"
-msgid "Light blue"
-msgstr ""
-
-#. (7Pd
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150367\n"
-"25\n"
-"help.text"
-msgid "65280"
-msgstr ""
-
-#. ^1j-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150202\n"
-"26\n"
-"help.text"
-msgid "Light green"
-msgstr ""
-
-#. 2Rrw
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154487\n"
-"27\n"
-"help.text"
-msgid "65535"
-msgstr ""
-
-#. ALfv
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3151332\n"
-"28\n"
-"help.text"
-msgid "Light cyan"
-msgstr ""
-
-#. %_:?
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3148702\n"
-"29\n"
-"help.text"
-msgid "16711680"
-msgstr ""
-
-#. OU9]
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153067\n"
-"30\n"
-"help.text"
-msgid "Light red"
-msgstr ""
-
-#. d?GN
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153912\n"
-"31\n"
-"help.text"
-msgid "16711935"
-msgstr ""
-
-#. Lo{.
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3159097\n"
-"32\n"
-"help.text"
-msgid "Light magenta"
-msgstr ""
-
-#. rqcG
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3155266\n"
-"33\n"
-"help.text"
-msgid "16776960"
-msgstr ""
-
-#. zM6S
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3157978\n"
-"34\n"
-"help.text"
-msgid "Light yellow"
-msgstr ""
-
-#. 4kX~
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153286\n"
-"35\n"
-"help.text"
-msgid "16777215"
-msgstr ""
-
-#. ^odu
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3151302\n"
-"36\n"
-"help.text"
-msgid "Transparent white"
-msgstr ""
-
-#. Cdzm
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"hd_id3152869\n"
-"37\n"
-"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"alt_icon\">ხატულა </variable>"
-
-#. l,ep
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id315509599\n"
-"help.text"
-msgid "<variable id=\"err1\">1 An exception occurred</variable>"
-msgstr "<variable id=\"alt_note\">შენიშვნის ხატულა </variable>"
-
-#. Ql/j
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3155095\n"
-"38\n"
-"help.text"
-msgid "<variable id=\"err2\">2 Syntax error</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. Lin-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3149126\n"
-"39\n"
-"help.text"
-msgid "<variable id=\"err3\">3 Return without Gosub</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. 7*5f
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153976\n"
-"40\n"
-"help.text"
-msgid "<variable id=\"err4\">4 Incorrect entry; please retry</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. ^#Mw
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150891\n"
-"41\n"
-"help.text"
-msgid "<variable id=\"err5\">5 Invalid procedure call</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. _Vwy
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3159227\n"
-"42\n"
-"help.text"
-msgid "<variable id=\"err6\">6 Overflow</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. _cq6
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154649\n"
-"43\n"
-"help.text"
-msgid "<variable id=\"err7\">7 Not enough memory</variable>"
-msgstr "<variable id=\"alt_note\">შენიშვნის ხატულა </variable>"
-
-#. #h7u
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150050\n"
-"44\n"
-"help.text"
-msgid "<variable id=\"err8\">8 Array already dimensioned</variable>"
-msgstr "#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">წვდომა ამ ბრძანებაზე...</variable>\\n#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">ბრძანებაზე წვდომისათვის... </variable>"
-
-#. y$A[
-#: 00000003.xhp
-#, fuzzy
-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=\"dbrbf\">არჩევა <emph>მონაცემები - არიალის განსაზღვრა</emph></variable>"
-
-#. R7S(
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153806\n"
-"46\n"
-"help.text"
-msgid "<variable id=\"err10\">10 Duplicate definition</variable>"
-msgstr "#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">ამ ფუნქციასთან დასაკავშირებლად... </variable>\\n#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">ამ ფუნქციის ჩასართავად... </variable>"
-
-#. LbqQ
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3146963\n"
-"47\n"
-"help.text"
-msgid "<variable id=\"err11\">11 Division by zero</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. s^`2
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153013\n"
-"48\n"
-"help.text"
-msgid "<variable id=\"err12\">12 Variable not defined</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. ..Dv
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3155593\n"
-"49\n"
-"help.text"
-msgid "<variable id=\"err13\">13 Data type mismatch</variable>"
-msgstr "#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">წვდომა ამ ბრძანებაზე...</variable>\\n#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">ბრძანებაზე წვდომისათვის... </variable>"
-
-#. O3Wr
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3151197\n"
-"50\n"
-"help.text"
-msgid "<variable id=\"err14\">14 Invalid parameter</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. x]m6
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154710\n"
-"51\n"
-"help.text"
-msgid "<variable id=\"err18\">18 Process interrupted by user</variable>"
-msgstr "<variable id=\"wie\">ამ ბრძანებასთან დაშვებისათვის </variable>"
-
-#. #Gw1
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3147504\n"
-"52\n"
-"help.text"
-msgid "<variable id=\"err20\">20 Resume without error</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. hB64
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3145319\n"
-"53\n"
-"help.text"
-msgid "<variable id=\"err28\">28 Not enough stack memory</variable>"
-msgstr "<variable id=\"alt_note\">შენიშვნის ხატულა </variable>"
-
-#. e$c/
-#: 00000003.xhp
-#, fuzzy
-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 "#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">ამ ფუნქციასთან დასაკავშირებლად... </variable>\\n#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">ამ ფუნქციის ჩასართავად... </variable>"
-
-#. V(;K
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3147246\n"
-"55\n"
-"help.text"
-msgid "<variable id=\"err48\">48 Error loading DLL file</variable>"
-msgstr "<variable id=\"alt_note\">შენიშვნის ხატულა </variable>"
-
-#. r;\/
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3146101\n"
-"56\n"
-"help.text"
-msgid "<variable id=\"err49\">49 Wrong DLL call convention</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგრეთვე შემდეგი ფუნქციები: </variable>"
-
-#. U7sq
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153957\n"
-"57\n"
-"help.text"
-msgid "<variable id=\"err51\">51 Internal error</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. zi^1
-#: 00000003.xhp
-#, fuzzy
-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=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. j[cK
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3151338\n"
-"59\n"
-"help.text"
-msgid "<variable id=\"err53\">53 File not found</variable>"
-msgstr "<variable id=\"alt_note\">შენიშვნის ხატულა </variable>"
-
-#. 0e7m
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3147298\n"
-"60\n"
-"help.text"
-msgid "<variable id=\"err54\">54 Incorrect file mode</variable>"
-msgstr "<variable id=\"alt_note\">შენიშვნის ხატულა </variable>"
-
-#. _1zD
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3148747\n"
-"61\n"
-"help.text"
-msgid "<variable id=\"err55\">55 File already open</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. e=9Z
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3145233\n"
-"62\n"
-"help.text"
-msgid "<variable id=\"err57\">57 Device I/O error</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. EnE;
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3156399\n"
-"63\n"
-"help.text"
-msgid "<variable id=\"err58\">58 File already exists</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. .AX0
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3149324\n"
-"64\n"
-"help.text"
-msgid "<variable id=\"err59\">59 Incorrect record length</variable>"
-msgstr "<variable id=\"alt_note\">შენიშვნის ხატულა </variable>"
-
-#. 7f|2
-#: 00000003.xhp
-#, fuzzy
-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=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. 52oJ
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3149146\n"
-"66\n"
-"help.text"
-msgid "<variable id=\"err62\">62 Reading exceeds EOF</variable>"
-msgstr "<variable id=\"alt_warning\">გავრთხილების ხატულა </variable>"
-
-#. p#qY
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150456\n"
-"67\n"
-"help.text"
-msgid "<variable id=\"err63\">63 Incorrect record number</variable>"
-msgstr "<variable id=\"alt_note\">შენიშვნის ხატულა </variable>"
-
-#. uV39
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3146883\n"
-"68\n"
-"help.text"
-msgid "<variable id=\"err67\">67 Too many files</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. r#U!
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3146818\n"
-"69\n"
-"help.text"
-msgid "<variable id=\"err68\">68 Device not available</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. sbD_
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3145225\n"
-"70\n"
-"help.text"
-msgid "<variable id=\"err70\">70 Access denied</variable>"
-msgstr "<variable id=\"wie\">ამ ბრძანებასთან დაშვებისათვის </variable>"
-
-#. MN.L
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150372\n"
-"71\n"
-"help.text"
-msgid "<variable id=\"err71\">71 Disk not ready</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. RNd%
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3148894\n"
-"72\n"
-"help.text"
-msgid "<variable id=\"err73\">73 Not implemented</variable>"
-msgstr "<variable id=\"alt_note\">შენიშვნის ხატულა </variable>"
-
-#. EUgl
-#: 00000003.xhp
-#, fuzzy
-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=\"moreontop\">მეტი განმარტებისთვის იხილეთ გვერდის დასაწყისი. </variable>"
-
-#. lMhc
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3149355\n"
-"74\n"
-"help.text"
-msgid "<variable id=\"err75\">75 Path/file access error</variable>"
-msgstr "<variable id=\"wie\">ამ ბრძანებასთან დაშვებისათვის </variable>"
-
-#. XVyg
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150477\n"
-"75\n"
-"help.text"
-msgid "<variable id=\"err76\">76 Path not found</variable>"
-msgstr "<variable id=\"alt_note\">შენიშვნის ხატულა </variable>"
-
-#. `?J=
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154678\n"
-"76\n"
-"help.text"
-msgid "<variable id=\"err91\">91 Object variable not set</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. VWo:
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3149890\n"
-"77\n"
-"help.text"
-msgid "<variable id=\"err93\">93 Invalid string pattern</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. 3Q+/
-#: 00000003.xhp
-#, fuzzy
-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=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. Jn9P
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469429\n"
-"help.text"
-msgid "<variable id=\"err250\">250 DDE Error</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. n,QA
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469428\n"
-"help.text"
-msgid "<variable id=\"err280\">280 Awaiting response to DDE connection</variable>"
-msgstr "#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">ამ ფუნქციასთან დასაკავშირებლად... </variable>\\n#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">ამ ფუნქციის ჩასართავად... </variable>"
-
-#. nd#Y
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469427\n"
-"help.text"
-msgid "<variable id=\"err281\">281 No DDE channels available</variable>"
-msgstr "<variable id=\"alt_note\">შენიშვნის ხატულა </variable>"
-
-#. 0F#;
-#: 00000003.xhp
-#, fuzzy
-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=\"moreontop\">მეტი განმარტებისთვის იხილეთ გვერდის დასაწყისი. </variable>"
-
-#. $-P_
-#: 00000003.xhp
-#, fuzzy
-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=\"moreontop\">მეტი განმარტებისთვის იხილეთ გვერდის დასაწყისი. </variable>"
-
-#. njnX
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469424\n"
-"help.text"
-msgid "<variable id=\"err284\">284 DDE channel locked</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. n6-b
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469423\n"
-"help.text"
-msgid "<variable id=\"err285\">285 External application cannot execute DDE operation</variable>"
-msgstr ""
-
-#. /QK.
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469422\n"
-"help.text"
-msgid "<variable id=\"err286\">286 Timeout while waiting for DDE response</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგრეთვე შემდეგი ფუნქციები: </variable>"
-
-#. iq=3
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469421\n"
-"help.text"
-msgid "<variable id=\"err287\">287 user pressed ESCAPE during DDE operation</variable>"
-msgstr ""
-
-#. )Pj2
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469420\n"
-"help.text"
-msgid "<variable id=\"err288\">288 External application busy</variable>"
-msgstr "<variable id=\"alt_note\">შენიშვნის ხატულა </variable>"
-
-#. EYw)
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469419\n"
-"help.text"
-msgid "<variable id=\"err289\">289 DDE operation without data</variable>"
-msgstr "<variable id=\"alt_icon\">ხატულა </variable>"
-
-#. ,bM_
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469418\n"
-"help.text"
-msgid "<variable id=\"err290\">290 Data are in wrong format</variable>"
-msgstr "<variable id=\"dbrbf\">არჩევა <emph>მონაცემები - არიალის განსაზღვრა</emph></variable>"
-
-#. bM_m
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469417\n"
-"help.text"
-msgid "<variable id=\"err291\">291 External application has been terminated</variable>"
-msgstr ""
-
-#. .RT,
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469416\n"
-"help.text"
-msgid "<variable id=\"err292\">292 DDE connection interrupted or modified</variable>"
-msgstr ""
-
-#. S.NC
-#: 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 ""
-
-#. QUO$
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469414\n"
-"help.text"
-msgid "<variable id=\"err294\">294 Invalid DDE link format</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. FO,f
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469413\n"
-"help.text"
-msgid "<variable id=\"err295\">295 DDE message has been lost</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. )lVq
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469412\n"
-"help.text"
-msgid "<variable id=\"err296\">296 Paste link already performed</variable>"
-msgstr "#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">წვდომა ამ ბრძანებაზე...</variable>\\n#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">ბრძანებაზე წვდომისათვის... </variable>"
-
-#. .-3_
-#: 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 ""
-
-#. `}*L
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31469410\n"
-"help.text"
-msgid "<variable id=\"err298\">298 DDE requires the DDEML.DLL file</variable>"
-msgstr ""
-
-#. ?m1b
-#: 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 ""
-
-#. DiPC
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3148434\n"
-"80\n"
-"help.text"
-msgid "<variable id=\"err341\">341 Invalid object index</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. $`Y|
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3143219\n"
-"81\n"
-"help.text"
-msgid "<variable id=\"err366\">366 Object is not available</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. dYj{
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3144744\n"
-"82\n"
-"help.text"
-msgid "<variable id=\"err380\">380 Incorrect property value</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. `IUS
-#: 00000003.xhp
-#, fuzzy
-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=\"wie\">ამ ბრძანებასთან დაშვებისათვის </variable>"
-
-#. kBGr
-#: 00000003.xhp
-#, fuzzy
-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=\"wie\">ამ ბრძანებასთან დაშვებისათვის </variable>"
-
-#. 8}gg
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3148583\n"
-"85\n"
-"help.text"
-msgid "<variable id=\"err420\">420 Invalid object reference</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. 6T*!
-#: 00000003.xhp
-#, fuzzy
-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=\"alt_note\">შენიშვნის ხატულა </variable>"
-
-#. CJ%1
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3148738\n"
-"87\n"
-"help.text"
-msgid "<variable id=\"err424\">424 Object required</variable>"
-msgstr "<variable id=\"alt_note\">შენიშვნის ხატულა </variable>"
-
-#. n;QF
-#: 00000003.xhp
-#, fuzzy
-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=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. [`$m
-#: 00000003.xhp
-#, fuzzy
-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=\"eintraege\">განსაზღვრეთ ჩანაწერების ფორმატი ობიექტების ცხრილში.</variable>"
-
-#. #n5@
-#: 00000003.xhp
-#, fuzzy
-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=\"eintraege\">განსაზღვრეთ ჩანაწერების ფორმატი ობიექტების ცხრილში.</variable>"
-
-#. XF7\
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154374\n"
-"91\n"
-"help.text"
-msgid "<variable id=\"err440\">440 OLE automation error</variable>"
-msgstr "<variable id=\"alt_icon\">ხატულა </variable>"
-
-#. @nkF
-#: 00000003.xhp
-#, fuzzy
-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=\"eintraege\">განსაზღვრეთ ჩანაწერების ფორმატი ობიექტების ცხრილში.</variable>"
-
-#. !Zr[
-#: 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 ""
-
-#. b9P-
-#: 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 ""
-
-#. 2rM[
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3152771\n"
-"95\n"
-"help.text"
-msgid "<variable id=\"err448\">448 Named argument not found</variable>"
-msgstr "<variable id=\"alt_note\">შენიშვნის ხატულა </variable>"
-
-#. rwd_
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3145145\n"
-"96\n"
-"help.text"
-msgid "<variable id=\"err449\">449 Argument is not optional</variable>"
-msgstr "#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">ამ ფუნქციასთან დასაკავშირებლად... </variable>\\n#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">ამ ფუნქციის ჩასართავად... </variable>"
-
-#. Q?KO
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154399\n"
-"97\n"
-"help.text"
-msgid "<variable id=\"err450\">450 Invalid number of arguments</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგრეთვე შემდეგი ფუნქციები: </variable>"
-
-#. %kg^
-#: 00000003.xhp
-#, fuzzy
-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=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. -,W.
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3149507\n"
-"99\n"
-"help.text"
-msgid "<variable id=\"err452\">452 Invalid ordinal number</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. ntuN
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154566\n"
-"100\n"
-"help.text"
-msgid "<variable id=\"err453\">453 Specified DLL function not found</variable>"
-msgstr "#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">ამ ფუნქციასთან დასაკავშირებლად... </variable>\\n#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">ამ ფუნქციის ჩასართავად... </variable>"
-
-#. USqX
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3145595\n"
-"101\n"
-"help.text"
-msgid "<variable id=\"err460\">460 Invalid clipboard format</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. ,Os7
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455951\n"
-"help.text"
-msgid "<variable id=\"err951\">951 Unexpected symbol:</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. KL`3
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455952\n"
-"help.text"
-msgid "<variable id=\"err952\">952 Expected:</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. _/tw
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455953\n"
-"help.text"
-msgid "<variable id=\"err953\">953 Symbol expected</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. +rkV
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455954\n"
-"help.text"
-msgid "<variable id=\"err954\">954 Variable expected</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. yk/l
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455955\n"
-"help.text"
-msgid "<variable id=\"err955\">955 Label expected</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. aWC7
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455956\n"
-"help.text"
-msgid "<variable id=\"err956\">956 Value cannot be applied</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. ;3Rq
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455957\n"
-"help.text"
-msgid "<variable id=\"err957\">957 Variable already defined</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. SCAs
-#: 00000003.xhp
-#, fuzzy
-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=\"wahr\">თუ მოხდა შეცდომა, ფუნქცია დააბრუნებს ლოგიკურ ან ციფრულ მნიშვნელობას. </variable>"
-
-#. Bk_I
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455959\n"
-"help.text"
-msgid "<variable id=\"err959\">959 Label already defined</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. X{@F
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455960\n"
-"help.text"
-msgid "<variable id=\"err960\">960 Variable not found</variable>"
-msgstr "#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">წვდომა ამ ბრძანებაზე...</variable>\\n#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">ბრძანებაზე წვდომისათვის... </variable>"
-
-#. nV}D
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455961\n"
-"help.text"
-msgid "<variable id=\"err961\">961 Array or procedure not found</variable>"
-msgstr "#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">წვდომა ამ ბრძანებაზე...</variable>\\n#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">ბრძანებაზე წვდომისათვის... </variable>"
-
-#. Xqfx
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455962\n"
-"help.text"
-msgid "<variable id=\"err962\">962 Procedure not found</variable>"
-msgstr "#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">წვდომა ამ ბრძანებაზე...</variable>\\n#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">ბრძანებაზე წვდომისათვის... </variable>"
-
-#. lSGJ
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455963\n"
-"help.text"
-msgid "<variable id=\"err963\">963 Label undefined</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. !%td
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455964\n"
-"help.text"
-msgid "<variable id=\"err964\">964 Unknown data type</variable>"
-msgstr "<variable id=\"alt_note\">შენიშვნის ხატულა </variable>"
-
-#. f8YI
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455965\n"
-"help.text"
-msgid "<variable id=\"err965\">965 Exit expected</variable>"
-msgstr "<variable id=\"alt_note\">შენიშვნის ხატულა </variable>"
-
-#. o\J9
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455966\n"
-"help.text"
-msgid "<variable id=\"err966\">966 Statement block still open: missing</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგრეთვე შემდეგი ფუნქციები: </variable>"
-
-#. C[yu
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455967\n"
-"help.text"
-msgid "<variable id=\"err967\">967 Parentheses do not match</variable>"
-msgstr "#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">წვდომა ამ ბრძანებაზე...</variable>\\n#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">ბრძანებაზე წვდომისათვის... </variable>"
-
-#. 6[gq
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455968\n"
-"help.text"
-msgid "<variable id=\"err968\">968 Symbol already defined differently</variable>"
-msgstr ""
-
-#. .9%m
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455969\n"
-"help.text"
-msgid "<variable id=\"err969\">969 Parameters do not correspond to procedure</variable>"
-msgstr ""
-
-#. [lkn
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455970\n"
-"help.text"
-msgid "<variable id=\"err970\">970 Invalid character in number</variable>"
-msgstr "#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">წვდომა ამ ბრძანებაზე...</variable>\\n#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">ბრძანებაზე წვდომისათვის... </variable>"
-
-#. =m(n
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455971\n"
-"help.text"
-msgid "<variable id=\"err971\">971 Array must be dimensioned</variable>"
-msgstr "#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">წვდომა ამ ბრძანებაზე...</variable>\\n#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">ბრძანებაზე წვდომისათვის... </variable>"
-
-#. #@Ps
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455972\n"
-"help.text"
-msgid "<variable id=\"err972\">972 Else/Endif without If</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. C~B/
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455973\n"
-"help.text"
-msgid "<variable id=\"err973\">973 not allowed within a procedure</variable>"
-msgstr "#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">წვდომა ამ ბრძანებაზე...</variable>\\n#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">ბრძანებაზე წვდომისათვის... </variable>"
-
-#. CXl+
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455974\n"
-"help.text"
-msgid "<variable id=\"err974\">974 not allowed outside a procedure</variable>"
-msgstr "#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">წვდომა ამ ბრძანებაზე...</variable>\\n#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">ბრძანებაზე წვდომისათვის... </variable>"
-
-#. 4lh4
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455975\n"
-"help.text"
-msgid "<variable id=\"err975\">975 Dimension specifications do not match</variable>"
-msgstr "#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">ამ ფუნქციასთან დასაკავშირებლად... </variable>\\n#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\n<variable id=\"wie\">ამ ფუნქციის ჩასართავად... </variable>"
-
-#. b.c^
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455976\n"
-"help.text"
-msgid "<variable id=\"err976\">976 Unknown option:</variable>"
-msgstr "<variable id=\"alt_note\">შენიშვნის ხატულა </variable>"
-
-#. h@eF
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455977\n"
-"help.text"
-msgid "<variable id=\"err977\">977 Constant redefined</variable>"
-msgstr "<variable id=\"alt_note\">შენიშვნის ხატულა </variable>"
-
-#. Sfu4
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455978\n"
-"help.text"
-msgid "<variable id=\"err978\">978 Program too large</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. _C?y
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455979\n"
-"help.text"
-msgid "<variable id=\"err979\">979 Strings or arrays not permitted</variable>"
-msgstr "<variable id=\"eintraege\">ფორმატის განსაზღვრა ბიბლიოგრაფიული ჩანაწერებისთვის.</variable>"
-
-#. BMKq
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455980\n"
-"help.text"
-msgid "<variable id=\"err1000\">1000 Object does not have this property</variable>"
-msgstr "<variable id=\"wie\">ამ ბრძანებასთან დაშვებისათვის </variable>"
-
-#. ;2}Q
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455981\n"
-"help.text"
-msgid "<variable id=\"err1001\">1001 Object does not have this method</variable>"
-msgstr "<variable id=\"wie\">ამ ბრძანებასთან დაშვებისათვის </variable>"
-
-#. yuQo
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455982\n"
-"help.text"
-msgid "<variable id=\"err1002\">1002 Required argument lacking</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. abv@
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455983\n"
-"help.text"
-msgid "<variable id=\"err1003\">1003 Invalid number of arguments</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგრეთვე შემდეგი ფუნქციები: </variable>"
-
-#. Iee-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455984\n"
-"help.text"
-msgid "<variable id=\"err1004\">1004 Error executing a method</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. .1Y5
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455985\n"
-"help.text"
-msgid "<variable id=\"err1005\">1005 Unable to set property</variable>"
-msgstr "<variable id=\"siehe\">იხილეთ აგერეთვე... </variable>"
-
-#. n2.P
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455986\n"
-"help.text"
-msgid "<variable id=\"err1006\">1006 Unable to determine property</variable>"
-msgstr "<variable id=\"alt_note\">შენიშვნის ხატულა </variable>"
-
-#. hdnr
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"tit\n"
-"help.text"
-msgid "Mid Function, Mid Statement [Runtime]"
-msgstr ""
-
-#. gA`@
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"bm_id3143268\n"
-"help.text"
-msgid "<bookmark_value>Mid function</bookmark_value><bookmark_value>Mid statement</bookmark_value>"
-msgstr "<bookmark_value>Mid ფუნქცია</bookmark_value><bookmark_value>Mid დებულება</bookmark_value>"
-
-#. Xv,k
-#: 03120306.xhp
-#, fuzzy
-msgctxt ""
-"03120306.xhp\n"
-"hd_id3143268\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. S1_J
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"par_id3148473\n"
-"2\n"
-"help.text"
-msgid "Returns the specified portion of a string expression (<emph>Mid function</emph>), or replaces the portion of a string expression with another string (<emph>Mid statement</emph>)."
-msgstr "აბრუნებს სტრინგული გამოსახულების მითითებულ ნაწილს (<emph>Mid ფუნქცია</emph>), ან ერთი სტრინგული გამოსახულების ნაწილს ჩაანაცვლებს მეორით (<emph>Mid განცხადება</emph>)."
-
-#. H!+j
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"hd_id3154285\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. C:^=
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"par_id3147530\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)"
-
-#. 9:;5
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"hd_id3145068\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. I.?C
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"par_id3149295\n"
-"6\n"
-"help.text"
-msgid "String (only by Function)"
-msgstr "სტრინგი (მხოლოდ ფუნქციით)"
-
-#. z$n\
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"hd_id3154347\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. ]S}\
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"par_id3148664\n"
-"8\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string expression that you want to modify."
-msgstr "<emph>ტექსტი:</emph> თქვენთვის რედაქტირებისთვის სასურველი ნებისმიერი ტექსტური გამოსახულება."
-
-#. g,n;
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"par_id3150359\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>სტარტი: </emph>რიცხვითი გამოსახულება რომელიც აღნიშნავს ასო-ნიშნის მდებარეობას სტრინგში. სადაც სტინგის თქვენთვის ჩანაცვლებისთვის ან დაბრუნებისთვის სასურველი პორცია იწყება. მაქსიმალური დასაშვები მნიშვნელობაა 65535."
-
-#. .oS$
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"par_id3148451\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>სიგრძე:</emph> რიცხვითი გამოსახულება რომელიც აბრუნებს იმ ასო-ნიშნის რაიდებიბას, რომლის ჩანაცვლება ან დაბრუნება გსურთ. მაქსიმალური დასაშვები მნიშვნელობაა 65535."
-
-#. czaA
-#: 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 "თუ სიგრძის პარამეტრი <emph>Mid ფუნქციაში</emph> გამოტოვებულია, სტრინგის გამოსახულებაში ყველა ასო-ნიშანი დაბრუნდება საწყისიდან საბოლოო პოზიციამდე."
-
-#. a0EA
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"par_id3144762\n"
-"12\n"
-"help.text"
-msgid "If the Length parameter in the <emph>Mid statement</emph> is less than the length of the text that you want to replace, the text is reduced to the specified length."
-msgstr "თუ სიგრძის პარამეტრი <emph>Mid დებულებაში</emph> ნაკლებია ჩასანაცვლებელი ტექსტის სიგრძეზე, ტექსტი შემცირდება მითითებულ სიგრძემდე."
-
-#. cFhg
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"par_id3150769\n"
-"13\n"
-"help.text"
-msgid "<emph>Text:</emph> The string to replace the string expression (<emph>Mid statement</emph>)."
-msgstr "<emph>ტექსტი:</emph> სტრინგული გამოსახულების ჩასანაცვლებელი სტრინგი.(<emph>Mid დებულება</emph>)."
-
-#. _{r/
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"hd_id3149560\n"
-"14\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. ge7:
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"par_id3153189\n"
-"18\n"
-"help.text"
-msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
-msgstr ""
-
-#. C{Up
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"tit\n"
-"help.text"
-msgid "Year Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. ]uo@
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"bm_id3148664\n"
-"help.text"
-msgid "<bookmark_value>Year function</bookmark_value>"
-msgstr "<bookmark_value>CVar ფუნქცია</bookmark_value>"
-
-#. mS(g
-#: 03030106.xhp
-#, fuzzy
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3148664\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function [Runtime]\">Year Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. 0N^/
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3149655\n"
-"2\n"
-"help.text"
-msgid "Returns the year from a serial date number that is generated by the DateSerial or the DateValue function."
-msgstr ""
-
-#. .\6V
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3154125\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. )T:Q
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3147229\n"
-"4\n"
-"help.text"
-msgid "Year (Number)"
-msgstr ""
-
-#. US}c
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3154685\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. n|.8
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3153970\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr ""
-
-#. .YT{
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3150440\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. /5NK
-#: 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 ""
-
-#. Y:Ks
-#: 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 ""
-
-#. ]uBU
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3149483\n"
-"11\n"
-"help.text"
-msgid "returns the value 1994."
-msgstr ""
-
-#. f)\0
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3146985\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. cheJ
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3153363\n"
-"14\n"
-"help.text"
-msgid "MsgBox \"\" & Year(Now) ,64,\"Current year\""
-msgstr ""
-
-#. zI)r
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"tit\n"
-"help.text"
-msgid "Abs Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. wWt\
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"bm_id3159201\n"
-"help.text"
-msgid "<bookmark_value>Abs function</bookmark_value>"
-msgstr "<bookmark_value>Asc ფუნქცია</bookmark_value>"
-
-#. okL}
-#: 03080601.xhp
-#, fuzzy
-msgctxt ""
-"03080601.xhp\n"
-"hd_id3159201\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. R,5-
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"par_id3153394\n"
-"2\n"
-"help.text"
-msgid "Returns the absolute value of a numeric expression."
-msgstr ""
-
-#. BME2
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"hd_id3149233\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 5Nd\
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"par_id3147573\n"
-"4\n"
-"help.text"
-msgid "Abs (Number)"
-msgstr ""
-
-#. 9j1k
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"hd_id3156152\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. rAW_
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"par_id3149670\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr ""
-
-#. _XMW
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"hd_id3154924\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. Z-lI
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"par_id3154347\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 ""
-
-#. [3vy
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"par_id3153381\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 ""
-
-#. *5vC
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"hd_id3148451\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. oq\[
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"par_id3145786\n"
-"14\n"
-"help.text"
-msgid "siW1 = Int(InputBox$ (\"Please enter the first amount\",\"Value Input\"))"
-msgstr ""
-
-#. q8H)
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"par_id3149561\n"
-"15\n"
-"help.text"
-msgid "siW2 = Int(InputBox$ (\"Please enter the second amount\",\"Value Input\"))"
-msgstr ""
-
-#. R-c3
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"par_id3145750\n"
-"16\n"
-"help.text"
-msgid "Print \"The difference is \"; Abs(siW1 - siW2)"
-msgstr ""
-
-#. 4Z5a
-#: 03104000.xhp
-msgctxt ""
-"03104000.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsMissing function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. PRE}
-#: 03104000.xhp
-msgctxt ""
-"03104000.xhp\n"
-"bm_id3153527\n"
-"help.text"
-msgid "<bookmark_value>IsMissing function</bookmark_value>"
-msgstr "<bookmark_value>სრტიქონის ფუნქცია</bookmark_value>"
-
-#. |?,.
-#: 03104000.xhp
-#, fuzzy
-msgctxt ""
-"03104000.xhp\n"
-"hd_id3153527\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">IsMissing function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. tJb\
-#: 03104000.xhp
-msgctxt ""
-"03104000.xhp\n"
-"par_id3153825\n"
-"2\n"
-"help.text"
-msgid "Tests if a function is called with an optional parameter."
-msgstr ""
-
-#. (z\Y
-#: 03104000.xhp
-msgctxt ""
-"03104000.xhp\n"
-"par_id3150669\n"
-"3\n"
-"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Optional</link>"
-msgstr ""
-
-#. %^FT
-#: 03104000.xhp
-msgctxt ""
-"03104000.xhp\n"
-"hd_id3145611\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. ]0Sx
-#: 03104000.xhp
-msgctxt ""
-"03104000.xhp\n"
-"par_id3154924\n"
-"5\n"
-"help.text"
-msgid "IsMissing( ArgumentName )"
-msgstr ""
-
-#. ;Hj}
-#: 03104000.xhp
-msgctxt ""
-"03104000.xhp\n"
-"hd_id3145069\n"
-"6\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. !0}m
-#: 03104000.xhp
-msgctxt ""
-"03104000.xhp\n"
-"par_id3149457\n"
-"7\n"
-"help.text"
-msgid "<emph>ArgumentName:</emph> the name of an optional argument."
-msgstr ""
-
-#. aw.V
-#: 03104000.xhp
-msgctxt ""
-"03104000.xhp\n"
-"par_id3150398\n"
-"8\n"
-"help.text"
-msgid "If the IsMissing function is called by the ArgumentName, then True is returned."
-msgstr ""
-
-#. )]64
-#: 03104000.xhp
-msgctxt ""
-"03104000.xhp\n"
-"par_id3148798\n"
-"9\n"
-"help.text"
-msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
-msgstr "See <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"მაგალითები\">მაგალითები</link>."
-
-#. C)RA
-#: main0601.xhp
-msgctxt ""
-"main0601.xhp\n"
-"tit\n"
-"help.text"
-msgid "$[officename] Basic Help"
-msgstr "$[officename] საწყისი დახმარება"
-
-#. cMy#
-#: main0601.xhp
-msgctxt ""
-"main0601.xhp\n"
-"hd_id3154232\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic დახმარება\">%PRODUCTNAME -ის Basic დახმარება</link>"
-
-#. _OYK
-#: main0601.xhp
-#, fuzzy
-msgctxt ""
-"main0601.xhp\n"
-"par_id3153894\n"
-"4\n"
-"help.text"
-msgid "%PRODUCTNAME %PRODUCTVERSION provides an Application Programming Interface (API) that allows controlling the $[officename] components with different programming languages by using the $[officename] Software Development Kit (SDK). For more information about the $[officename] API and the Software Development Kit, visit <link href=\"http://api.libreoffice.org/\" name=\"http://api.libreoffice.org\">http://api.libreoffice.org</link>"
-msgstr "%PRODUCTNAME %PRODUCTVERSION გვაწვდის Application Programming Interface (API)-ს რაც გვაძლევს საშუალებას ვაკონტროლოთ $[officename] კომპონენტები სხვადასხვა პროგრამირების ენით $[officename] Software Development Kit (SDK)-ს გამოყენებით. დამატებითი ინფორმაციის მისაღებად $[officename] API და the Software Development Kit-ს შესახებ, ეწვიეთ <link href=\"http://api.openoffice.org/\" name=\"http://api.openoffice.org\">http://api.openoffice.org</link>"
-
-#. V-4Y
-#: main0601.xhp
-msgctxt ""
-"main0601.xhp\n"
-"par_id3147226\n"
-"10\n"
-"help.text"
-msgid "This help section explains the most common runtime functions of %PRODUCTNAME Basic. For more in-depth information please refer to the <link href=\"http://wiki.documentfoundation.org/Documentation/BASIC_Guide\">OpenOffice.org BASIC Programming Guide</link> on the Wiki."
-msgstr ""
-
-#. ?(vV
-#: main0601.xhp
-msgctxt ""
-"main0601.xhp\n"
-"hd_id3146957\n"
-"9\n"
-"help.text"
-msgid "Working with %PRODUCTNAME Basic"
-msgstr "მუშაობა %PRODUCTNAME Basic-ში"
-
-#. *UgN
-#: main0601.xhp
-msgctxt ""
-"main0601.xhp\n"
-"hd_id3148473\n"
-"7\n"
-"help.text"
-msgid "Help about the Help"
-msgstr "დახმარება დახმარების შესახებ"
-
-#. Dh[M
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
-"tit\n"
-"help.text"
-msgid "Rem Statement [Runtime]"
-msgstr ""
-
-#. HICD
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
-"bm_id3154347\n"
-"help.text"
-msgid "<bookmark_value>Rem statement</bookmark_value><bookmark_value>comments;Rem statement</bookmark_value>"
-msgstr "<bookmark_value>Mid ფუნქცია</bookmark_value><bookmark_value>Mid დებულება</bookmark_value>"
-
-#. 4NqW
-#: 03090407.xhp
-#, fuzzy
-msgctxt ""
-"03090407.xhp\n"
-"hd_id3154347\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03090407.xhp\" name=\"Rem Statement [Runtime]\">Rem Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. #K$2
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
-"par_id3153525\n"
-"2\n"
-"help.text"
-msgid "Specifies that a program line is a comment."
-msgstr ""
-
-#. Y@je
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
-"hd_id3153360\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. LILP
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
-"par_id3154141\n"
-"4\n"
-"help.text"
-msgid "Rem Text"
-msgstr ""
-
-#. (0iJ
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
-"hd_id3151042\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. ^JUq
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
-"par_id3150869\n"
-"6\n"
-"help.text"
-msgid "<emph>Text:</emph> Any text that serves as a comment."
-msgstr ""
-
-#. X=R+
-#: 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 ""
-
-#. .\RT
-#: 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 ""
-
-#. M)O-
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
-"hd_id3150012\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 6{uK
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
-"par_id3153140\n"
-"13\n"
-"help.text"
-msgid "' Nothing occurs here"
-msgstr ""
-
-#. g^o#
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefStr Statement [Runtime]"
-msgstr ""
-
-#. AjX0
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"bm_id6161381\n"
-"help.text"
-msgid "<bookmark_value>DefStr statement</bookmark_value>"
-msgstr "<bookmark_value>DefStr განცხადება</bookmark_value>"
-
-#. *E{=
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN10577\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03101140.xhp\">DefStr Statement [Runtime]</link>"
-msgstr ""
-
-#. ZDuf
-#: 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 "თუ ტიპის გამოცხადების ასო-ნიშანი ან სიტყვა-გასაღები მითითებული არ არის, DefSng განცხადება საწყისი ცვლადის ტიპს აყენებს ასოთა რანგის მიხედვით."
-
-#. h)GP
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN1058A\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. pxE=
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN1058E\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr ""
-
-#. MhE[
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN10591\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. Arqa
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN10595\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 ""
-
-#. \:-{
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN1059C\n"
-"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr ""
-
-#. ,|#-
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN105A3\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr ""
-
-#. q01#
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN105AA\n"
-"help.text"
-msgid "<emph>DefStr:</emph> String"
-msgstr "<emph>DefStr:</emph> სტრინგი"
-
-#. tT\!
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN105B1\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. MVB9
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN105B5\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr ""
-
-#. Vd/z
-#: 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 არის ნაგულიცხმევი სტინგული ცვლადი"
-
-#. hCmr
-#: 03060000.xhp
-msgctxt ""
-"03060000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Logical Operators"
-msgstr ""
-
-#. d(:x
-#: 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 ""
-
-#. ;p_+
-#: 03060000.xhp
-msgctxt ""
-"03060000.xhp\n"
-"par_id3153379\n"
-"2\n"
-"help.text"
-msgid "The following logical operators are supported by $[officename] Basic."
-msgstr ""
-
-#. f;#o
-#: 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 ""
-
-#. )+VZ
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"tit\n"
-"help.text"
-msgid "GlobalScope [Runtime]"
-msgstr ""
-
-#. R.i_
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"bm_id3150682\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 ""
-
-#. +OyK
-#: 03131900.xhp
-#, fuzzy
-msgctxt ""
-"03131900.xhp\n"
-"hd_id3150682\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope [Runtime]\">GlobalScope [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. kO49
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3153345\n"
-"2\n"
-"help.text"
-msgid "Basic source code and dialogs are organized in a library system."
-msgstr "Basic-ის საწყისი კოდი და დიალოგები ორგანიზებულები არიან ბიბლიოთეკის სისტემაში."
-
-#. Cct]
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3145315\n"
-"3\n"
-"help.text"
-msgid "The LibraryContainer contains libraries"
-msgstr "LibraryContainer-ი შეიცავს ბიბლიოთეკებს"
-
-#. D]~/
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3149514\n"
-"4\n"
-"help.text"
-msgid "Libraries can contain modules and dialogs"
-msgstr "ბიბლიოთეკები შეიძლება შეიცავდნენ მოდულებს და დიალოგებს."
-
-#. -CDE
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"hd_id3143271\n"
-"5\n"
-"help.text"
-msgid "In Basic:"
-msgstr "Basic-ში:"
-
-#. ~v},
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3153061\n"
-"6\n"
-"help.text"
-msgid "The LibraryContainer is called <emph>BasicLibraries</emph>."
-msgstr "LibraryContainer-ს ეწოდება <emph>BasicLibraries</emph>."
-
-#. 9*%0
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"hd_id3154346\n"
-"7\n"
-"help.text"
-msgid "In dialogs:"
-msgstr "დიალოგში:"
-
-#. 0OB*
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3148663\n"
-"8\n"
-"help.text"
-msgid "The LibraryContainer is called <emph>DialogLibraries</emph>."
-msgstr "LibraryContainer-ს ეწოდება <emph>DialogLibraries</emph>."
-
-#. u4^5
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3150543\n"
-"9\n"
-"help.text"
-msgid "Both LibraryContainers exist in an application level and within every document. In the document Basic, the document's LibraryContainers are called automatically. If you want to call the global LibraryContainers from within a document, you must use the keyword <emph>GlobalScope</emph>."
-msgstr "ორივე LibraryContainers არსებობს პროგრამულ დონეზე და ყოველ დოკუმენტში. Basic დოკუმენტში, დოკუმენტის LibraryContainers გამოიძახება ავტომატურად. თუ თქვენ გსურთ გამოიძახოთ გლობალური LibraryContainers დოკუმენტიდან, თქვენ უნდა გამოიყენოთ სიტყვა-გასაღები <emph>GlobalScope</emph>."
-
-#. Y%XG
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"hd_id3148920\n"
-"10\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. uR_i
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3149203\n"
-"11\n"
-"help.text"
-msgid "GlobalScope"
-msgstr "GlobalScope"
-
-#. N4G1
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"hd_id3154685\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. JT`B
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3154124\n"
-"13\n"
-"help.text"
-msgid "Example in the document Basic"
-msgstr "მაგალითი დოკუმენტის Basic-ში"
-
-#. L!.l
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3158408\n"
-"14\n"
-"help.text"
-msgid "' calling Dialog1 in the document library Standard"
-msgstr "' calling Dialog1 in the document library Standard"
-
-#. (9r{
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3125865\n"
-"15\n"
-"help.text"
-msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
-msgstr ""
-
-#. I1Il
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3154910\n"
-"16\n"
-"help.text"
-msgid "' calling Dialog2 in the application library Library1"
-msgstr "' calling Dialog2 in the application library Library1"
-
-#. 66;$
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"par_id3156424\n"
-"17\n"
-"help.text"
-msgid "oDlgDesc = GlobalScope.DialogLibraries.Library1.Dialog2"
-msgstr "oDlgDesc = GlobalScope.DialogLibraries.Library1.Dialog2"
-
-#. (\1+
-#: 03030203.xhp
-msgctxt ""
-"03030203.xhp\n"
-"tit\n"
-"help.text"
-msgid "Now Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. @N=M
-#: 03030203.xhp
-msgctxt ""
-"03030203.xhp\n"
-"bm_id3149416\n"
-"help.text"
-msgid "<bookmark_value>Now function</bookmark_value>"
-msgstr "<bookmark_value>Join ფუნქცია</bookmark_value>"
-
-#. )a9d
-#: 03030203.xhp
-#, fuzzy
-msgctxt ""
-"03030203.xhp\n"
-"hd_id3149416\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. =o1h
-#: 03030203.xhp
-msgctxt ""
-"03030203.xhp\n"
-"par_id3149670\n"
-"2\n"
-"help.text"
-msgid "Returns the current system date and time as a <emph>Date</emph> value."
-msgstr ""
-
-#. H[Eb
-#: 03030203.xhp
-msgctxt ""
-"03030203.xhp\n"
-"hd_id3149456\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. a)MK
-#: 03030203.xhp
-msgctxt ""
-"03030203.xhp\n"
-"par_id3149655\n"
-"4\n"
-"help.text"
-msgid "Now"
-msgstr ""
-
-#. 2dZx
-#: 03030203.xhp
-msgctxt ""
-"03030203.xhp\n"
-"hd_id3154366\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. (,,@
-#: 03030203.xhp
-msgctxt ""
-"03030203.xhp\n"
-"par_id3154909\n"
-"6\n"
-"help.text"
-msgid "Date"
-msgstr ""
-
-#. {n0F
-#: 03030203.xhp
-msgctxt ""
-"03030203.xhp\n"
-"hd_id3147229\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. TSD=
-#: 03030203.xhp
-msgctxt ""
-"03030203.xhp\n"
-"par_id3150870\n"
-"9\n"
-"help.text"
-msgid "MsgBox \"It is now \" & Now"
-msgstr ""
-
-#. yRd;
-#: 03100000.xhp
-msgctxt ""
-"03100000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Variables"
-msgstr "ცვლადები"
-
-#. ]4CE
-#: 03100000.xhp
-#, fuzzy
-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/05060700.xhp\" name=\"მაკრო\">მაკრო</link>"
-
-#. /O)(
-#: 03100000.xhp
-msgctxt ""
-"03100000.xhp\n"
-"par_id3147265\n"
-"2\n"
-"help.text"
-msgid "The following statements and functions are for working with variables. You can use these functions to declare or define variables, convert variables from one type to another, or determine the variable type."
-msgstr ""
-
-#. u\:K
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"tit\n"
-"help.text"
-msgid "Sin Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. oJ;Z
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"bm_id3153896\n"
-"help.text"
-msgid "<bookmark_value>Sin function</bookmark_value>"
-msgstr "<bookmark_value>Join ფუნქცია</bookmark_value>"
-
-#. qjm(
-#: 03080103.xhp
-#, fuzzy
-msgctxt ""
-"03080103.xhp\n"
-"hd_id3153896\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. [a:~
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3149456\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 ""
-
-#. im6P
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3153379\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 ""
-
-#. wOLa
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3148798\n"
-"4\n"
-"help.text"
-msgid "Sin(Alpha) = side opposite the angle/hypotenuse"
-msgstr ""
-
-#. Gq16
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"hd_id3147230\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. upcq
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3154909\n"
-"6\n"
-"help.text"
-msgid "Sin (Number)"
-msgstr ""
-
-#. GSEc
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"hd_id3156214\n"
-"7\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. _5~x
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3150870\n"
-"8\n"
-"help.text"
-msgid "Double"
-msgstr ""
-
-#. 3Pda
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"hd_id3155132\n"
-"9\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. $hch
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3145786\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 ""
-
-#. g#4^
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3155413\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 ""
-
-#. RBUJ
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3149664\n"
-"12\n"
-"help.text"
-msgid "grad=(radiant*180)/pi"
-msgstr ""
-
-#. S[CX
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3153143\n"
-"13\n"
-"help.text"
-msgid "radiant=(grad*pi)/180"
-msgstr ""
-
-#. J5b?
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3151112\n"
-"14\n"
-"help.text"
-msgid "Pi is approximately 3.141593."
-msgstr ""
-
-#. m!5E
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"hd_id3163712\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. NeH_
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3149482\n"
-"16\n"
-"help.text"
-msgid "' In this example, the following entry is possible for a right-angled triangle:"
-msgstr ""
-
-#. SULa
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3148577\n"
-"17\n"
-"help.text"
-msgid "' The side opposite the angle and the angle (in degrees) to calculate the length of the hypotenuse:"
-msgstr ""
-
-#. ug_)
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3150011\n"
-"19\n"
-"help.text"
-msgid "' Pi = 3.1415926 is a predefined variable"
-msgstr ""
-
-#. M|UH
-#: 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 ""
-
-#. YG:#
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3148456\n"
-"23\n"
-"help.text"
-msgid "dAlpha = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
-msgstr ""
-
-#. A9@~
-#: 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 ""
-
-#. 6Vkv
-#: 03050000.xhp
-msgctxt ""
-"03050000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Error-Handling Functions"
-msgstr ""
-
-#. `\1#
-#: 03050000.xhp
-#, fuzzy
-msgctxt ""
-"03050000.xhp\n"
-"hd_id3143271\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03050000.xhp\" name=\"Error-Handling Functions\">Error-Handling Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. jNBt
-#: 03050000.xhp
-msgctxt ""
-"03050000.xhp\n"
-"par_id3145068\n"
-"2\n"
-"help.text"
-msgid "Use the following statements and functions to define the way $[officename] Basic reacts to run-time errors."
-msgstr ""
-
-#. I=0J
-#: 03050000.xhp
-msgctxt ""
-"03050000.xhp\n"
-"par_id3148946\n"
-"3\n"
-"help.text"
-msgid "$[officename] Basic offers several methods to prevent the termination of a program when a run-time error occurs."
-msgstr ""
-
-#. 1i)3
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Dim Statement [Runtime]"
-msgstr ""
-
-#. C|FI
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"bm_id3149812\n"
-"help.text"
-msgid "<bookmark_value>Dim statement</bookmark_value><bookmark_value>arrays; dimensioning</bookmark_value><bookmark_value>dimensioning arrays</bookmark_value>"
-msgstr ""
-
-#. h?Fp
-#: 03102100.xhp
-#, fuzzy
-msgctxt ""
-"03102100.xhp\n"
-"hd_id3149812\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. woeW
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3143271\n"
-"2\n"
-"help.text"
-msgid "Declares a variable or an array."
-msgstr ""
-
-#. ]^D]
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3154686\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 ""
-
-#. ~T8H
-#: 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 ""
-
-#. M[6(
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"hd_id3156443\n"
-"8\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. )@J]
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3149412\n"
-"9\n"
-"help.text"
-msgid "[ReDim]Dim VarName [(start To end)] [As VarType][, VarName2 [(start To end)] [As VarType][,...]]"
-msgstr ""
-
-#. ;V!{
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"hd_id3147397\n"
-"10\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. 5mG!
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3154730\n"
-"11\n"
-"help.text"
-msgid "<emph>VarName:</emph> Any variable or array name."
-msgstr ""
-
-#. hXcJ
-#: 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 ""
-
-#. a9\`
-#: 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 ""
-
-#. 8uf8
-#: 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 ""
-
-#. hG8]
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3154015\n"
-"15\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Variable type"
-msgstr ""
-
-#. BuH%
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3153949\n"
-"16\n"
-"help.text"
-msgid "<emph>Bool:</emph> Boolean variable (True, False)"
-msgstr ""
-
-#. 3BLU
-#: 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 ""
-
-#. k}52
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3156057\n"
-"18\n"
-"help.text"
-msgid "<emph>Date:</emph> Date variable"
-msgstr ""
-
-#. J^m2
-#: 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 ""
-
-#. I=DV
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3148916\n"
-"20\n"
-"help.text"
-msgid "<emph>Integer:</emph> Integer variable (-32768 - 32767)"
-msgstr ""
-
-#. ;D)[
-#: 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 ""
-
-#. LC6q
-#: 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 ""
-
-#. o]sk
-#: 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 ""
-
-#. W`Dr
-#: 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 ""
-
-#. lo8D
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3154704\n"
-"25\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 ""
-
-#. M]wm
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3146316\n"
-"26\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 ""
-
-#. %;Aa
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3149924\n"
-"27\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 ""
-
-#. (|1)
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3148488\n"
-"28\n"
-"help.text"
-msgid "Arrays are declared with the Dim statement. There are two methods to define the index range:"
-msgstr ""
-
-#. GHjt
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3154662\n"
-"29\n"
-"help.text"
-msgid "DIM text(20) as String REM 21 elements numbered from 0 to 20"
-msgstr ""
-
-#. 3+0j
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3155604\n"
-"30\n"
-"help.text"
-msgid "DIM text(5 to 25) as String REM 21 elements numbered from 5 to 25"
-msgstr ""
-
-#. _*jd
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3151274\n"
-"31\n"
-"help.text"
-msgid "DIM text(-15 to 5) as String REM 21 elements (including 0)"
-msgstr ""
-
-#. [UC+
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3152774\n"
-"32\n"
-"help.text"
-msgid "REM numbered from -15 to 5"
-msgstr ""
-
-#. 4$_z
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3150829\n"
-"33\n"
-"help.text"
-msgid "Two-dimensional data field"
-msgstr ""
-
-#. RWJ*
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3149529\n"
-"34\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 ""
-
-#. 2$V^
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3159239\n"
-"35\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 ""
-
-#. keI_
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"hd_id3150344\n"
-"36\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. YL8)
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3154657\n"
-"40\n"
-"help.text"
-msgid "sVar = \"Office\""
-msgstr ""
-
-#. BP51
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3149036\n"
-"44\n"
-"help.text"
-msgid "' Two-dimensional data field"
-msgstr ""
-
-#. R)-{
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3153782\n"
-"46\n"
-"help.text"
-msgid "Const sDim As String = \" Dimension:\""
-msgstr ""
-
-#. 46M;
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"tit\n"
-"help.text"
-msgid "FreeFile Function[Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. jM$1
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"bm_id3150400\n"
-"help.text"
-msgid "<bookmark_value>FreeFile function</bookmark_value>"
-msgstr "<bookmark_value>Trim ფუნქცია</bookmark_value>"
-
-#. #zph
-#: 03020102.xhp
-#, fuzzy
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150400\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. zdB]
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3154366\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 ""
-
-#. fT!8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. bPdY
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. n%;8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3150440\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr ""
-
-#. $kHi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. k5|/
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155854\n"
-"8\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 ""
-
-#. 4Z2\
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. !-Ii
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"18\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr ""
-
-#. yn{I
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"19\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr ""
-
-#. hZkp
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"tit\n"
-"help.text"
-msgid "ConvertToURL Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. R#Tc
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"bm_id3152801\n"
-"help.text"
-msgid "<bookmark_value>ConvertToURL function</bookmark_value>"
-msgstr "<bookmark_value>ConvertToURL ფუნქცია</bookmark_value>"
-
-#. 7;C8
-#: 03120312.xhp
-#, fuzzy
-msgctxt ""
-"03120312.xhp\n"
-"hd_id3152801\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"ConvertToURL Function [Runtime]\">ConvertToURL Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. :+Z]
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3148538\n"
-"2\n"
-"help.text"
-msgid "Converts a system file name to a file URL."
-msgstr "გადაყავს სისტემური ფაილის სახელი URL-ში."
-
-#. -rCF
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"hd_id3150669\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. JdF:
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3154285\n"
-"4\n"
-"help.text"
-msgid "ConvertToURL(filename)"
-msgstr "ConvertToURL(filename)"
-
-#. +q(,
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"hd_id3150984\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. ]9LA
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3147530\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "სტრიქონები"
-
-#. ;(0+
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"hd_id3148550\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. b\UX
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3148947\n"
-"8\n"
-"help.text"
-msgid "<emph>Filename:</emph> A file name as string."
-msgstr "<emph>ფაილის სახელი:</emph> ფაილის სახელი, როგოც სტრინგი."
-
-#. QI~-
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"hd_id3153361\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. Img1
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3150792\n"
-"10\n"
-"help.text"
-msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
-msgstr ""
-
-#. ?FyK
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3154365\n"
-"11\n"
-"help.text"
-msgid "url$ = ConvertToURL( systemFile$ )"
-msgstr ""
-
-#. HYYb
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3151042\n"
-"12\n"
-"help.text"
-msgid "print url$"
-msgstr ""
-
-#. 8G@A
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3154909\n"
-"13\n"
-"help.text"
-msgid "systemFileAgain$ = ConvertFromURL( url$ )"
-msgstr ""
-
-#. sZ9?
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3144762\n"
-"14\n"
-"help.text"
-msgid "print systemFileAgain$"
-msgstr ""
-
-#. _=z_
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"tit\n"
-"help.text"
-msgid "Set Statement[Runtime]"
-msgstr ""
-
-#. *`Aq
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"bm_id3154422\n"
-"help.text"
-msgid "<bookmark_value>Set statement</bookmark_value><bookmark_value>Nothing object</bookmark_value>"
-msgstr "<bookmark_value>Mid ფუნქცია</bookmark_value><bookmark_value>Mid დებულება</bookmark_value>"
-
-#. qa]H
-#: 03103700.xhp
-#, fuzzy
-msgctxt ""
-"03103700.xhp\n"
-"hd_id3154422\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. ceeW
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"par_id3159149\n"
-"2\n"
-"help.text"
-msgid "Sets an object reference on a variable or a Property."
-msgstr ""
-
-#. _,fY
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"hd_id3153105\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 9[A8
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"par_id3154217\n"
-"4\n"
-"help.text"
-msgid "Set ObjectVar = Object"
-msgstr ""
-
-#. Rqjn
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"hd_id3154685\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. .r!)
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"par_id3156281\n"
-"6\n"
-"help.text"
-msgid "<emph>ObjectVar:</emph> a variable or a property that requires an object reference."
-msgstr ""
-
-#. yu+W
-#: 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 ""
-
-#. k;3L
-#: 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 ""
-
-#. Y}U?
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"hd_id3159153\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. p^3.
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefDate Statement [Runtime]"
-msgstr ""
-
-#. IU:;
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"bm_id3150504\n"
-"help.text"
-msgid "<bookmark_value>DefDate statement</bookmark_value>"
-msgstr "<bookmark_value>DefStr განცხადება</bookmark_value>"
-
-#. |`bD
-#: 03101300.xhp
-#, fuzzy
-msgctxt ""
-"03101300.xhp\n"
-"hd_id3150504\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. U8Y(
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"par_id3145069\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 "თუ ტიპის გამოცხადების ასო-ნიშანი ან სიტყვა-გასაღები მითითებული არ არის, DefSng განცხადება საწყისი ცვლადის ტიპს აყენებს ასოთა რანგის მიხედვით."
-
-#. S7#=
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"hd_id3154758\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. d(A8
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"par_id3148664\n"
-"4\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr ""
-
-#. sK4}
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"hd_id3150541\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. XMkE
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"par_id3156709\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 ""
-
-#. P7u3
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"par_id3150869\n"
-"7\n"
-"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr ""
-
-#. 5T{P
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"par_id3145171\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr ""
-
-#. #Gt9
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"par_id3150767\n"
-"9\n"
-"help.text"
-msgid "<emph>DefDate:</emph> Date"
-msgstr ""
-
-#. Vd]%
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"hd_id3153768\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. qE-/
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"par_id3145785\n"
-"12\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr ""
-
-#. M|kw
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"par_id3152462\n"
-"22\n"
-"help.text"
-msgid "tDate=Date ' tDate is an implicit date variable"
-msgstr ""
-
-#. Os1M
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Libraries, Modules and Dialogs"
-msgstr ""
-
-#. lbe%
-#: 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 ""
-
-#. Uj0y
-#: 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 ""
-
-#. U}/i
-#: 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 ""
-
-#. Q,QI
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"hd_id3148575\n"
-"5\n"
-"help.text"
-msgid "Libraries"
-msgstr ""
-
-#. _D5L
-#: 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 ""
-
-#. CDHH
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"par_id3151112\n"
-"7\n"
-"help.text"
-msgid "A library can contain up to 16,000 modules."
-msgstr ""
-
-#. Z5RP
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"hd_id3149262\n"
-"8\n"
-"help.text"
-msgid "Modules"
-msgstr ""
-
-#. VEN0
-#: 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 ""
-
-#. Il@(
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"hd_id3152577\n"
-"11\n"
-"help.text"
-msgid "Dialog Modules"
-msgstr ""
-
-#. e%!N
-#: 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 ""
-
-#. _zo4
-#: 03030000.xhp
-msgctxt ""
-"03030000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Date and Time Functions"
-msgstr ""
-
-#. SqTE
-#: 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 ""
-
-#. VRE^
-#: 03030000.xhp
-msgctxt ""
-"03030000.xhp\n"
-"par_id3153255\n"
-"2\n"
-"help.text"
-msgid "Use the statements and functions described here to perform date and time calculations."
-msgstr ""
-
-#. YIn/
-#: 03030000.xhp
-msgctxt ""
-"03030000.xhp\n"
-"par_id3152363\n"
-"3\n"
-"help.text"
-msgid "<item type=\"productname\">%PRODUCTNAME</item> Basic lets you calculate time or date differences by converting the time and date values to continuous numeric values. After the difference is calculated, special functions are used to reconvert the values to the standard time or date formats."
-msgstr ""
-
-#. ?)m#
-#: 03030000.xhp
-msgctxt ""
-"03030000.xhp\n"
-"par_id3151054\n"
-"4\n"
-"help.text"
-msgid "You can combine date and time values into a single floating-decimal number. Dates are converted to integers, and times to decimal values. <item type=\"productname\">%PRODUCTNAME</item> Basic also supports the variable type Date, which can contain a time specification consisting of both a date and time."
-msgstr ""
-
-#. lpe7
-#: 03090000.xhp
-msgctxt ""
-"03090000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Controlling Program Execution"
-msgstr ""
-
-#. :PXQ
-#: 03090000.xhp
-msgctxt ""
-"03090000.xhp\n"
-"hd_id3145136\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03090000.xhp\" name=\"Controlling Program Execution\">Controlling Program Execution</link>"
-msgstr ""
-
-#. I+t,
-#: 03090000.xhp
-msgctxt ""
-"03090000.xhp\n"
-"par_id3143268\n"
-"2\n"
-"help.text"
-msgid "The following statements control the execution of a program."
-msgstr ""
-
-#. 9=+T
-#: 03090000.xhp
-msgctxt ""
-"03090000.xhp\n"
-"par_id3156152\n"
-"3\n"
-"help.text"
-msgid "A program generally executes from the first line of code to the last line of code. You can also execute certain procedures within the program according to specific conditions, or repeat a section of the program within a sub-procedure or function. You can use loops to repeat parts of a program as many times as necessary, or until a certain condition is met. These type of control statements are classified as Condition, Loop, or Jump statements."
-msgstr ""
-
-#. k{eB
-#: 03080000.xhp
-msgctxt ""
-"03080000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Numeric Functions"
-msgstr ""
-
-#. 0(yO
-#: 03080000.xhp
-#, fuzzy
-msgctxt ""
-"03080000.xhp\n"
-"hd_id3153127\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080000.xhp\" name=\"Numeric Functions\">Numeric Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. 0=S:
-#: 03080000.xhp
-msgctxt ""
-"03080000.xhp\n"
-"par_id3148550\n"
-"2\n"
-"help.text"
-msgid "The following numeric functions perform calculations. Mathematical and Boolean operators are described in a separate section. Functions differ from operators in that functions pass arguments and return a result, instead of operators that return a result by combining two numeric expressions."
-msgstr ""
-
-#. +/)N
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"tit\n"
-"help.text"
-msgid "UCase Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. N\]W
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"bm_id3153527\n"
-"help.text"
-msgid "<bookmark_value>UCase function</bookmark_value>"
-msgstr "<bookmark_value>UCase ფუნქცია</bookmark_value>"
-
-#. gv/J
-#: 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 ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. 00[$
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3155420\n"
-"2\n"
-"help.text"
-msgid "Converts lowercase characters in a string to uppercase."
-msgstr "სტრინგში გადაყავს პატარა ასო-ნიშნები დიდში."
-
-#. _J0Q
-#: 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 "აგრეთვე ნახეთ: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase ფუნცია\">LCase ფუნქცია</link>"
-
-#. aLBY
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3149233\n"
-"4\n"
-"help.text"
-msgid "<emph>Syntax</emph>:"
-msgstr "<emph>სინტაქსი</emph>:"
-
-#. 6J(C
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3153061\n"
-"5\n"
-"help.text"
-msgid "UCase (Text As String)"
-msgstr "UCase (Text As String)"
-
-#. +2LT
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3159414\n"
-"6\n"
-"help.text"
-msgid "<emph>Return value</emph>:"
-msgstr "<emph>დაბრუნებული მნიშვნელობა</emph>:"
-
-#. l_.e
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3146795\n"
-"7\n"
-"help.text"
-msgid "String"
-msgstr "სტრიქონები"
-
-#. [a[Z
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"hd_id3149457\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. tosq
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3150791\n"
-"9\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string expression that you want to convert."
-msgstr "<emph>ტექსტი:</emph> თქვენთვის რედაქტირებისთვის სასურველი ნებისმიერი ტექსტური გამოსახულება."
-
-#. )A[c
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"hd_id3154125\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. p}A;
-#: 03120310.xhp
-#, fuzzy
-msgctxt ""
-"03120310.xhp\n"
-"par_id3149204\n"
-"14\n"
-"help.text"
-msgid "Print LCase(sVar) ' returns \"las vegas\""
-msgstr "Print LCase(sVar) REM returns \"las vegas\""
-
-#. fY$#
-#: 03120310.xhp
-#, fuzzy
-msgctxt ""
-"03120310.xhp\n"
-"par_id3156280\n"
-"15\n"
-"help.text"
-msgid "Print UCase(sVar) ' returns \"LAS VEGAS\""
-msgstr "Print UCase(sVar) REM returns \"LAS VEGAS\""
-
-#. V(?6
-#: 03100060.xhp
-msgctxt ""
-"03100060.xhp\n"
-"tit\n"
-"help.text"
-msgid "CDec Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. /)Tf
-#: 03100060.xhp
-msgctxt ""
-"03100060.xhp\n"
-"bm_id863979\n"
-"help.text"
-msgid "<bookmark_value>CDec function</bookmark_value>"
-msgstr "<bookmark_value>CDec ფუნქცია</bookmark_value>"
-
-#. o-3W
-#: 03100060.xhp
-msgctxt ""
-"03100060.xhp\n"
-"par_idN10548\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03100060.xhp\">CDec Function [Runtime]</link>"
-msgstr ""
-
-#. f^2/
-#: 03100060.xhp
-msgctxt ""
-"03100060.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "Converts a string expression or numeric expression to a decimal expression."
-msgstr "გადაყავს სტრინგული ან რიცხვითი გამოსახულება ათობით გამოსახულებაში."
-
-#. fm#3
-#: 03100060.xhp
-msgctxt ""
-"03100060.xhp\n"
-"par_idN1055B\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. LBn,
-#: 03100060.xhp
-msgctxt ""
-"03100060.xhp\n"
-"par_idN105EA\n"
-"help.text"
-msgid "CDec(Expression)"
-msgstr "CDec(Expression)"
-
-#. |Xiz
-#: 03100060.xhp
-msgctxt ""
-"03100060.xhp\n"
-"par_idN105ED\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. i$Rm
-#: 03100060.xhp
-msgctxt ""
-"03100060.xhp\n"
-"par_idN105F1\n"
-"help.text"
-msgid "Decimal number."
-msgstr "ათწილადი რიცხვი."
-
-#. qz(W
-#: 03100060.xhp
-msgctxt ""
-"03100060.xhp\n"
-"par_idN105F4\n"
-"help.text"
-msgid "Parameter:"
-msgstr ""
-
-#. 6S$?
-#: 03100060.xhp
-msgctxt ""
-"03100060.xhp\n"
-"par_idN105F8\n"
-"help.text"
-msgid "Expression: Any string or numeric expression that you want to convert."
-msgstr "<emph>ტექსტი:</emph> თქვენთვის რედაქტირებისთვის სასურველი ნებისმიერი ტექსტური გამოსახულება."
-
-#. T;X[
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Event-Driven Macros"
-msgstr ""
-
-#. (T=Q
-#: 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 ""
-
-#. (j#w
-#: 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 ""
-
-#. lb[R
-#: 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 ""
-
-#. A`=(
-#: 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 ""
-
-#. gw#%
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3148455\n"
-"5\n"
-"help.text"
-msgid "Event"
-msgstr ""
-
-#. 1l;P
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3145799\n"
-"6\n"
-"help.text"
-msgid "An assigned macro is executed..."
-msgstr ""
-
-#. CTDN
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3149379\n"
-"7\n"
-"help.text"
-msgid "Program Start"
-msgstr ""
-
-#. w3RB
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3150715\n"
-"8\n"
-"help.text"
-msgid "... after a $[officename] application is started."
-msgstr ""
-
-#. PB/|
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3146914\n"
-"9\n"
-"help.text"
-msgid "Program End"
-msgstr ""
-
-#. !^;T
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3153765\n"
-"10\n"
-"help.text"
-msgid "...before a $[officename] application is terminated."
-msgstr ""
-
-#. 70d]
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3145150\n"
-"11\n"
-"help.text"
-msgid "Create Document"
-msgstr ""
-
-#. UuSW
-#: 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 ""
-
-#. -}!]
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3145790\n"
-"13\n"
-"help.text"
-msgid "Open Document"
-msgstr ""
-
-#. F:Fk
-#: 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 ""
-
-#. S/B#
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3153266\n"
-"15\n"
-"help.text"
-msgid "Save Document As"
-msgstr ""
-
-#. ;@-*
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3150208\n"
-"16\n"
-"help.text"
-msgid "...before a document is saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or the <emph>Save</emph> icon, if a document name has not yet been specified)."
-msgstr ""
-
-#. T4hc
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3158215\n"
-"43\n"
-"help.text"
-msgid "Document has been saved as"
-msgstr ""
-
-#. Jxd:
-#: 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 ""
-
-#. qd^Q
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3150519\n"
-"17\n"
-"help.text"
-msgid "Save Document"
-msgstr ""
-
-#. TKKL
-#: 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 ""
-
-#. qYmx
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3149404\n"
-"45\n"
-"help.text"
-msgid "Document has been saved"
-msgstr ""
-
-#. MeYz
-#: 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 ""
-
-#. )29f
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3159171\n"
-"19\n"
-"help.text"
-msgid "Document is closing"
-msgstr ""
-
-#. (K@M
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3146868\n"
-"20\n"
-"help.text"
-msgid "...before a document is closed."
-msgstr ""
-
-#. T4#E
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3159097\n"
-"47\n"
-"help.text"
-msgid "Document closed"
-msgstr ""
-
-#. !QKV
-#: 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 ""
-
-#. =Wvo
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3144772\n"
-"21\n"
-"help.text"
-msgid "Activate Document"
-msgstr ""
-
-#. a]ld
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3149442\n"
-"22\n"
-"help.text"
-msgid "...after a document is brought to the foreground."
-msgstr ""
-
-#. D#BZ
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3150888\n"
-"23\n"
-"help.text"
-msgid "Deactivate Document"
-msgstr ""
-
-#. 1+Fm
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3154060\n"
-"24\n"
-"help.text"
-msgid "...after another document is brought to the foreground."
-msgstr ""
-
-#. lJoy
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3152384\n"
-"25\n"
-"help.text"
-msgid "Print Document"
-msgstr ""
-
-#. Xb8*
-#: 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 ""
-
-#. fcbB
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3159227\n"
-"49\n"
-"help.text"
-msgid "JavaScript run-time error"
-msgstr ""
-
-#. V2EQ
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3145362\n"
-"50\n"
-"help.text"
-msgid "...when a JavaScript run-time error occurs."
-msgstr ""
-
-#. 0Fg;
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3154767\n"
-"27\n"
-"help.text"
-msgid "Print Mail Merge"
-msgstr ""
-
-#. f/Im
-#: 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 ""
-
-#. :}z3
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3156366\n"
-"51\n"
-"help.text"
-msgid "Change of the page count"
-msgstr ""
-
-#. FoY(
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3154627\n"
-"52\n"
-"help.text"
-msgid "...when the page count changes."
-msgstr ""
-
-#. D@6.
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3154737\n"
-"53\n"
-"help.text"
-msgid "Message received"
-msgstr ""
-
-#. y(?x
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3150952\n"
-"54\n"
-"help.text"
-msgid "...if a message was received."
-msgstr ""
-
-#. O/)d
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"hd_id3153299\n"
-"30\n"
-"help.text"
-msgid "Assigning a Macro to an Event"
-msgstr ""
-
-#. MIIW
-#: 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 ""
-
-#. JFU-
-#: 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 ""
-
-#. s#SH
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3150431\n"
-"32\n"
-"help.text"
-msgid "Select the event from the <emph>Event</emph> list."
-msgstr ""
-
-#. m90U
-#: 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 ""
-
-#. cCn|
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3146321\n"
-"35\n"
-"help.text"
-msgid "Click <emph>OK</emph> to assign the macro."
-msgstr ""
-
-#. `=2{
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3147414\n"
-"56\n"
-"help.text"
-msgid "Click <emph>OK</emph> to close the dialog."
-msgstr ""
-
-#. C,Q+
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"hd_id3154581\n"
-"36\n"
-"help.text"
-msgid "Removing the Assignment of a Macro to an Event"
-msgstr ""
-
-#. HY]K
-#: 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 ""
-
-#. Is)}
-#: 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 ""
-
-#. [4D9
-#: 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 ""
-
-#. \oqc
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3149143\n"
-"37\n"
-"help.text"
-msgid "Click <emph>Remove</emph>."
-msgstr ""
-
-#. W\e8
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3149351\n"
-"60\n"
-"help.text"
-msgid "Click <emph>OK</emph> to close the dialog."
-msgstr ""
-
-#. KP;M
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Debugging a Basic Program"
-msgstr ""
-
-#. mk9;
-#: 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 ""
-
-#. :f,E
-#: 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 ""
-
-#. 9FPz
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"hd_id3159224\n"
-"4\n"
-"help.text"
-msgid "Breakpoints and Single Step Execution"
-msgstr ""
-
-#. 80qL
-#: 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 ""
-
-#. 7p*o
-#: 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 ""
-
-#. ?dnK
-#: 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 ""
-
-#. W(g-
-#: 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 ""
-
-#. crWD
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"hd_id3153825\n"
-"9\n"
-"help.text"
-msgid "Properties of a Breakpoint"
-msgstr ""
-
-#. 8rd=
-#: 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 ""
-
-#. 14Id
-#: 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 ""
-
-#. HloO
-#: 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 ""
-
-#. \=xn
-#: 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 ""
-
-#. /+d[
-#: 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 ""
-
-#. E$s0
-#: 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 ""
-
-#. `YTC
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"hd_id3150439\n"
-"14\n"
-"help.text"
-msgid "Observing the Value of Variables"
-msgstr ""
-
-#. 6~XN
-#: 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 ""
-
-#. ?xmt
-#: 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 ""
-
-#. ;ZpA
-#: 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 ""
-
-#. Y\3I
-#: 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 ""
-
-#. :Z9k
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"hd_id3148618\n"
-"20\n"
-"help.text"
-msgid "The Call Stack Window"
-msgstr ""
-
-#. Xq=S
-#: 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 ""
-
-#. yyKl
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"hd_id3150594\n"
-"24\n"
-"help.text"
-msgid "List of Run-Time Errors"
-msgstr ""
-
-#. m*2J
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"tit\n"
-"help.text"
-msgid "Keyboard Shortcuts in the Basic IDE"
-msgstr ""
-
-#. Q_5n
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"bm_id3154760\n"
-"help.text"
-msgid "<bookmark_value>keyboard;in IDE</bookmark_value><bookmark_value>shortcut keys;Basic IDE</bookmark_value><bookmark_value>IDE;keyboard shortcuts</bookmark_value>"
-msgstr "<bookmark_value>კლავიატურა;ინტეგრირებული შემუშავებულს შორის</bookmark_value><bookmark_value>მალსახმობი კლავიშები;Basic IDE</bookmark_value><bookmark_value>IDE;კლავიატურული მალსახმობები</bookmark_value>"
-
-#. rALg
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"hd_id3154760\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/keys.xhp\" name=\"Keyboard Shortcuts in the Basic IDE\">Keyboard Shortcuts in the Basic IDE</link>"
-msgstr "<link href=\"text/sbasic/shared/keys.xhp\" name=\"კლავიატურული მალსახმობები Basic IDE-ში\">ლავიატურული მალსახმობები Basic IDE-ში</link>"
-
-#. YdQc
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3149655\n"
-"2\n"
-"help.text"
-msgid "In the Basic IDE you can use the following keyboard shortcuts:"
-msgstr "Basic IDE-ში თქვენ შეგიძლიათ გამოიყენოთ აღნიშნული კლავიატურული მალსახმომები:"
-
-#. _RT!
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3154908\n"
-"3\n"
-"help.text"
-msgid "Action"
-msgstr "მოქმედება"
-
-#. 5AD;
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3153192\n"
-"4\n"
-"help.text"
-msgid "Keyboard shortcut"
-msgstr "კლავიატურული მალსახმობი"
-
-#. P$B)
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3159254\n"
-"5\n"
-"help.text"
-msgid "Run code starting from the first line, or from the current breakpoint, if the program stopped there before"
-msgstr "გაუშვით კოდი პირველი ხაზიდან, ან მიმდინარე წყვეტიდან თუ პროგრამა შეცერდა მანამდე"
-
-#. EBHT
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3163712\n"
-"6\n"
-"help.text"
-msgid "F5"
-msgstr "F5"
-
-#. M8\Y
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3150010\n"
-"7\n"
-"help.text"
-msgid "Stop"
-msgstr ""
-
-#. HBpx
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3154319\n"
-"8\n"
-"help.text"
-msgid "Shift+F5"
-msgstr "Shift+F5"
-
-#. RtL8
-#: 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 ""
-
-#. ^k^y
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3154731\n"
-"12\n"
-"help.text"
-msgid "F7"
-msgstr "F7"
-
-#. 9V{E
-#: 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 "ერთადერთი ნაბიჯი ყველა განაცხადისთვის, დაწყება პირველი ხაზიდან ან განაცხადიდან სადაც პროგრამის შესრულება შეწყდა მანამდე."
-
-#. jV1p
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3150716\n"
-"14\n"
-"help.text"
-msgid "F8"
-msgstr "F8"
-
-#. hoca
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3156275\n"
-"15\n"
-"help.text"
-msgid "Single step as with F8, but a function call is considered to be only <emph>one</emph> statement"
-msgstr "ერთადერთი საფეხური როგორც F8-თან, მაგრამ ფუნქციონალური მოთხოვნა არის მხოლოდ <emph>one</emph> განაცხადი"
-
-#. Hn/Y
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3153764\n"
-"16\n"
-"help.text"
-msgid "Shift+F8"
-msgstr "Shift+F8"
-
-#. s3le
-#: 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 "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"
-
-#. 8opV
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3147339\n"
-"18\n"
-"help.text"
-msgid "F9"
-msgstr "F9"
-
-#. (E*q
-#: 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 ""
-
-#. \2?k
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3155175\n"
-"20\n"
-"help.text"
-msgid "Shift+F9"
-msgstr "Shift+F9"
-
-#. t[7Q
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3154702\n"
-"21\n"
-"help.text"
-msgid "A running macro can be aborted with Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q, also from outside of the Basic IDE. If you are inside the Basic IDE and the macro halts at a breakpoint, Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q stops execution of the macro, but you can recognize this only after the next F5, F8, or Shift+F8."
-msgstr ""
-
-#. EoF]
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsArray Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. ljz2
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"bm_id3154346\n"
-"help.text"
-msgid "<bookmark_value>IsArray function</bookmark_value>"
-msgstr "<bookmark_value>IsError ფუნქცია</bookmark_value>"
-
-#. _:Fn
-#: 03102200.xhp
-#, fuzzy
-msgctxt ""
-"03102200.xhp\n"
-"hd_id3154346\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. ;!KU
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"par_id3159413\n"
-"2\n"
-"help.text"
-msgid "Determines if a variable is a data field in an array."
-msgstr ""
-
-#. srvh
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"hd_id3150792\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. f2MY
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"par_id3153379\n"
-"4\n"
-"help.text"
-msgid "IsArray (Var)"
-msgstr "IsError (Var)"
-
-#. h!la
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"hd_id3154365\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. LVRl
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"par_id3154685\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr ""
-
-#. TqCE
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"hd_id3153969\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. gUCE
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"par_id3145172\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 ""
-
-#. wErW
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"hd_id3155131\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. NzT-
-#: 03080300.xhp
-msgctxt ""
-"03080300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Generating Random Numbers"
-msgstr ""
-
-#. EYSd
-#: 03080300.xhp
-msgctxt ""
-"03080300.xhp\n"
-"hd_id3143270\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080300.xhp\" name=\"Generating Random Numbers\">Generating Random Numbers</link>"
-msgstr ""
-
-#. 5J{2
-#: 03080300.xhp
-msgctxt ""
-"03080300.xhp\n"
-"par_id3154347\n"
-"2\n"
-"help.text"
-msgid "The following statements and functions generate random numbers."
-msgstr ""
-
-#. !#Y#
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"tit\n"
-"help.text"
-msgid "CSng Function[Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. P#xA
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"bm_id3153753\n"
-"help.text"
-msgid "<bookmark_value>CSng function</bookmark_value>"
-msgstr "<bookmark_value>Chr ფუნქცია</bookmark_value>"
-
-#. |IY.
-#: 03100900.xhp
-#, fuzzy
-msgctxt ""
-"03100900.xhp\n"
-"hd_id3153753\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03100900.xhp\" name=\"CSng Function[Runtime]\">CSng Function[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. w%La
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"par_id3149748\n"
-"2\n"
-"help.text"
-msgid "Converts any string or numeric expression to data type Single."
-msgstr "გარდაქმნის სტრიქონს ან ციფრულ გამოსახულებას ბაიტის ტიპისთვის."
-
-#. sC\E
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"hd_id3153255\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. J/0I
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"par_id3148983\n"
-"4\n"
-"help.text"
-msgid "CSng (Expression)"
-msgstr "Str (გამოსახულება)"
-
-#. =C+P
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"hd_id3152347\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. ZP`(
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"par_id3153750\n"
-"6\n"
-"help.text"
-msgid "Single"
-msgstr ""
-
-#. 5pzk
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"hd_id3146957\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. b!A/
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"par_id3153345\n"
-"8\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 ""
-
-#. @@!5
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"hd_id3149514\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. eb[L
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"tit\n"
-"help.text"
-msgid "Int Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. M3(?
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"bm_id3153345\n"
-"help.text"
-msgid "<bookmark_value>Int function</bookmark_value>"
-msgstr "<bookmark_value>InStr ფუნქცია</bookmark_value>"
-
-#. AOXF
-#: 03080502.xhp
-#, fuzzy
-msgctxt ""
-"03080502.xhp\n"
-"hd_id3153345\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. 4M$.
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"par_id3155420\n"
-"2\n"
-"help.text"
-msgid "Returns the integer portion of a number."
-msgstr ""
-
-#. ,,$2
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"hd_id3147559\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. ?~lj
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"par_id3146795\n"
-"4\n"
-"help.text"
-msgid "Int (Number)"
-msgstr ""
-
-#. 4aJC
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"hd_id3149670\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. U+@f
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"par_id3150400\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr ""
-
-#. 0VIB
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"hd_id3149656\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. (_OE
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"par_id3148797\n"
-"8\n"
-"help.text"
-msgid "<emph>Number:</emph> Any valid numeric expression."
-msgstr ""
-
-#. .MT@
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"hd_id3148672\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. ibO~
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"par_id3125864\n"
-"11\n"
-"help.text"
-msgid "Print Int(3.99) ' returns the value 3"
-msgstr ""
-
-#. 02X%
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"par_id3145787\n"
-"12\n"
-"help.text"
-msgid "Print Int(0) ' returns the value 0"
-msgstr ""
-
-#. (4,r
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"par_id3153143\n"
-"13\n"
-"help.text"
-msgid "Print Int(-3.14159) ' returns the value -4"
-msgstr ""
-
-#. /FU|
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"tit\n"
-"help.text"
-msgid "RTrim Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. Bn8^
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"bm_id3154286\n"
-"help.text"
-msgid "<bookmark_value>RTrim function</bookmark_value>"
-msgstr "<bookmark_value>RTrim ფუნქცია</bookmark_value>"
-
-#. yjW+
-#: 03120309.xhp
-#, fuzzy
-msgctxt ""
-"03120309.xhp\n"
-"hd_id3154286\n"
-"1\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. !;-p
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"par_id3153127\n"
-"2\n"
-"help.text"
-msgid "Deletes the spaces at the end of a string expression."
-msgstr "სტრინგული გამოსახულების ბოლოში შლის ჰარებს."
-
-#. hI)8
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"par_id3153062\n"
-"3\n"
-"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">LTrim Function</link>"
-msgstr "აგრეთვე ნახეთ: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim ფუნქცია\">LTrim ფუნქცია</link>"
-
-#. 0_aA
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"hd_id3154924\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. *,~f
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"par_id3154347\n"
-"5\n"
-"help.text"
-msgid "RTrim (Text As String)"
-msgstr "RTrim (Text As String)"
-
-#. 2n9v
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"hd_id3149457\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. }(u#
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"par_id3153381\n"
-"7\n"
-"help.text"
-msgid "String"
-msgstr "სტრიქონები"
-
-#. 4p1@
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"hd_id3148798\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. bzdN
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"par_id3151380\n"
-"9\n"
-"help.text"
-msgid "<emph>Text: </emph>Any string expression."
-msgstr "<emph>ტექსტი: </emph>ნებისმიერი სტრინგული გამოსახულება."
-
-#. 4Lci
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"hd_id3151041\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. `6)O
-#: 03080500.xhp
-msgctxt ""
-"03080500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Integers"
-msgstr ""
-
-#. iTl*
-#: 03080500.xhp
-#, fuzzy
-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/05060700.xhp\" name=\"მაკრო\">მაკრო</link>"
-
-#. YO-D
-#: 03080500.xhp
-msgctxt ""
-"03080500.xhp\n"
-"par_id3156152\n"
-"2\n"
-"help.text"
-msgid "The following functions round values to integers."
-msgstr ""
-
-#. 21!v
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"tit\n"
-"help.text"
-msgid "Chr Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. MA|5
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"bm_id3149205\n"
-"help.text"
-msgid "<bookmark_value>Chr function</bookmark_value>"
-msgstr "<bookmark_value>Chr ფუნქცია</bookmark_value>"
-
-#. Ki)}
-#: 03120102.xhp
-#, fuzzy
-msgctxt ""
-"03120102.xhp\n"
-"hd_id3149205\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. 4QG\
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"par_id3153311\n"
-"2\n"
-"help.text"
-msgid "Returns the character that corresponds to the specified character code."
-msgstr ""
-
-#. eiy7
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"hd_id3149514\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. m^?6
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"par_id3150669\n"
-"4\n"
-"help.text"
-msgid "Chr(Expression As Integer)"
-msgstr "Chr(გამოსახულება როგორც Integer)"
-
-#. kmF*
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"hd_id3143228\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. v`,K
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"par_id3153824\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "სტრიქონები"
-
-#. 8DO7
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"hd_id3148944\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. 47j?
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"par_id3149295\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 ""
-
-#. Dzcd
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"par_id3159414\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 ""
-
-#. U+M(
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"hd_id3154366\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. W*_q
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"par_id3154909\n"
-"12\n"
-"help.text"
-msgid "' This example inserts quotation marks (ASCII value 34) in a string."
-msgstr ""
-
-#. KA+M
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"par_id3151380\n"
-"13\n"
-"help.text"
-msgid "MsgBox \"A \"+ Chr$(34)+\"short\" + Chr$(34)+\" trip.\""
-msgstr "MsgBox \"A \"+ Chr$(34)+\"short\" + Chr$(34)+\" trip.\""
-
-#. JQa]
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"par_id3145174\n"
-"14\n"
-"help.text"
-msgid "' The printout appears in the dialog as: A \"short\" trip."
-msgstr ""
-
-#. UfPW
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
-"par_idN10668\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120101.xhp\">ASC</link>"
-msgstr "<link href=\"text/sbasic/shared/03120101.xhp\">ASC</link>"
-
-#. /d9:
-#: 03131700.xhp
-msgctxt ""
-"03131700.xhp\n"
-"tit\n"
-"help.text"
-msgid "GetProcessServiceManager Function [Runtime]"
-msgstr ""
-
-#. Bg`s
-#: 03131700.xhp
-msgctxt ""
-"03131700.xhp\n"
-"bm_id3153255\n"
-"help.text"
-msgid "<bookmark_value>GetProcessServiceManager function</bookmark_value><bookmark_value>ProcessServiceManager</bookmark_value>"
-msgstr "<bookmark_value>GetProcessServiceManager ფუნქცია</bookmark_value><bookmark_value>ProcessServiceManager</bookmark_value>"
-
-#. *Yec
-#: 03131700.xhp
-#, fuzzy
-msgctxt ""
-"03131700.xhp\n"
-"hd_id3153255\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03131700.xhp\" name=\"GetProcessServiceManager Function [Runtime]\">GetProcessServiceManager Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. il__
-#: 03131700.xhp
-msgctxt ""
-"03131700.xhp\n"
-"par_id3156414\n"
-"2\n"
-"help.text"
-msgid "Returns the ProcessServiceManager (central Uno ServiceManager)."
-msgstr "Returns the ProcessServiceManager (central Uno ServiceManager)."
-
-#. sTlI
-#: 03131700.xhp
-msgctxt ""
-"03131700.xhp\n"
-"par_id3145136\n"
-"3\n"
-"help.text"
-msgid "This function is required when you want to instantiate a service using CreateInstanceWithArguments."
-msgstr "ფუქნცია გამოიყენება იმ შემთხვევაში, როდესაც გსურთ სერვისის ინსტანირება CreateInstanceWithArguments-ის გამოყენებით."
-
-#. \?S6
-#: 03131700.xhp
-msgctxt ""
-"03131700.xhp\n"
-"hd_id3153681\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. NeDQ
-#: 03131700.xhp
-msgctxt ""
-"03131700.xhp\n"
-"par_id3151110\n"
-"5\n"
-"help.text"
-msgid "oServiceManager = GetProcessServiceManager()"
-msgstr ""
-
-#. s:El
-#: 03131700.xhp
-msgctxt ""
-"03131700.xhp\n"
-"hd_id3149516\n"
-"6\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. oLoA
-#: 03131700.xhp
-msgctxt ""
-"03131700.xhp\n"
-"par_id3143270\n"
-"7\n"
-"help.text"
-msgid "oServiceManager = GetProcessServiceManager()"
-msgstr ""
-
-#. g%i;
-#: 03131700.xhp
-msgctxt ""
-"03131700.xhp\n"
-"par_id3153825\n"
-"8\n"
-"help.text"
-msgid "oIntrospection = oServiceManager.createInstance(\"com.sun.star.beans.Introspection\");"
-msgstr "oIntrospection = oServiceManager.createInstance(\"com.sun.star.beans.Introspection\");"
-
-#. GNwu
-#: 03131700.xhp
-msgctxt ""
-"03131700.xhp\n"
-"par_id3148473\n"
-"9\n"
-"help.text"
-msgid "this is the same as the following statement:"
-msgstr "ეს იგივია რაც შემდეგი დებულება:"
-
-#. ?%0c
-#: 03131700.xhp
-msgctxt ""
-"03131700.xhp\n"
-"par_id3145609\n"
-"10\n"
-"help.text"
-msgid "oIntrospection = CreateUnoService(\"com.sun.star.beans.Introspection\")"
-msgstr "oIntrospection = CreateUnoService(\"com.sun.star.beans.Introspection\")"
-
-#. F:kc
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"tit\n"
-"help.text"
-msgid "Asc Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. !!U7
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"bm_id3150499\n"
-"help.text"
-msgid "<bookmark_value>Asc function</bookmark_value>"
-msgstr "<bookmark_value>Asc ფუნქცია</bookmark_value>"
-
-#. hD=[
-#: 03120101.xhp
-#, fuzzy
-msgctxt ""
-"03120101.xhp\n"
-"hd_id3150499\n"
-"1\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. \O?A
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"par_id3151384\n"
-"2\n"
-"help.text"
-msgid "Returns the ASCII (American Standard Code for Information Interchange) value of the first character in a string expression."
-msgstr ""
-
-#. -\6}
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"hd_id3155555\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. gex|
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"par_id3143267\n"
-"4\n"
-"help.text"
-msgid "Asc (Text As String)"
-msgstr "Asc (ტექსტი როგორც სტრიქონი)"
-
-#. Nb:@
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"hd_id3147242\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. Lj+Q
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"par_id3150669\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr ""
-
-#. l$2@
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"hd_id3148473\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. DyA!
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"par_id3149415\n"
-"8\n"
-"help.text"
-msgid "<emph>Text:</emph> Any valid string expression. Only the first character in the string is relevant."
-msgstr "<emph>Text:</emph> ნებისმიერი სწირიგამოსახულება. მხოლოდ პირველი სიმბოლო სტრიქონში არის მართებული"
-
-#. 2*~!
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"par_id3145609\n"
-"9\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 ""
-
-#. $=J]
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"hd_id3159413\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. azgN
-#: 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"
-
-#. Jk5?
-#: 03120101.xhp
-#, fuzzy
-msgctxt ""
-"03120101.xhp\n"
-"par_id3148797\n"
-"13\n"
-"help.text"
-msgid "Print ASC(\"Z\") ' returns 90"
-msgstr "Print ASC(\"Z\") REM აბრუნებს 90"
-
-#. ;06h
-#: 03120101.xhp
-#, fuzzy
-msgctxt ""
-"03120101.xhp\n"
-"par_id3163800\n"
-"14\n"
-"help.text"
-msgid "Print ASC(\"Las Vegas\") ' returns 76, since only the first character is taken into account"
-msgstr "Print ASC(\"ლას ვეგასი\") REM აბრუნებს 76, როგორც კი პირველი სიმბოლო არის მხედველობაი"
-
-#. lHL(
-#: 03120101.xhp
-#, fuzzy
-msgctxt ""
-"03120101.xhp\n"
-"par_idN1067B\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120102.xhp\">CHR</link>"
-msgstr "<link href=\"text/sbasic/shared/03120101.xhp\">ASC</link>"
-
-#. -XN1
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"tit\n"
-"help.text"
-msgid "CDbl Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. pyG4
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"bm_id3153750\n"
-"help.text"
-msgid "<bookmark_value>CDbl function</bookmark_value>"
-msgstr "<bookmark_value>CDec ფუნქცია</bookmark_value>"
-
-#. G\gW
-#: 03100400.xhp
-#, fuzzy
-msgctxt ""
-"03100400.xhp\n"
-"hd_id3153750\n"
-"1\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. GvK+
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"par_id3149233\n"
-"2\n"
-"help.text"
-msgid "Converts any numerical expression or string expression to a double type."
-msgstr ""
-
-#. CU`#
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"hd_id3149516\n"
-"3\n"
-"help.text"
-msgid "Syntax"
-msgstr ""
-
-#. 25NM
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"par_id3156152\n"
-"4\n"
-"help.text"
-msgid "CDbl (Expression)"
-msgstr "CDec(Expression)"
-
-#. 38MF
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"hd_id3153061\n"
-"5\n"
-"help.text"
-msgid "Return value"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. +.[y
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"par_id3145068\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr ""
-
-#. R}R8
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"hd_id3154760\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. rF(9
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"par_id3153897\n"
-"8\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 ""
-
-#. Lw$-
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"hd_id3148797\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. +lCL
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"tit\n"
-"help.text"
-msgid "Cos Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. e!8c
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"bm_id3154923\n"
-"help.text"
-msgid "<bookmark_value>Cos function</bookmark_value>"
-msgstr "<bookmark_value>Chr ფუნქცია</bookmark_value>"
-
-#. ph_M
-#: 03080102.xhp
-#, fuzzy
-msgctxt ""
-"03080102.xhp\n"
-"hd_id3154923\n"
-"1\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. !t.6
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3159413\n"
-"2\n"
-"help.text"
-msgid "Calculates the cosine of an angle. The angle is specified in radians. The result lies between -1 and 1."
-msgstr ""
-
-#. b1\N
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3150358\n"
-"3\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 ""
-
-#. \8,*
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3154141\n"
-"4\n"
-"help.text"
-msgid "Cos(Alpha) = Adjacent/Hypotenuse"
-msgstr ""
-
-#. :cMQ
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"hd_id3154125\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. ]m`/
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3145172\n"
-"6\n"
-"help.text"
-msgid "Cos (Number)"
-msgstr ""
-
-#. avLi
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"hd_id3156214\n"
-"7\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. C=FE
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3150449\n"
-"8\n"
-"help.text"
-msgid "Double"
-msgstr ""
-
-#. v=Sv
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"hd_id3153969\n"
-"9\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. O$x)
-#: 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 ""
-
-#. )mY;
-#: 03080102.xhp
-msgctxt ""
-"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 ""
-
-#. 3.lE
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3149664\n"
-"12\n"
-"help.text"
-msgid "degree=(radian*180)/pi"
-msgstr ""
-
-#. :%Vg
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3146985\n"
-"13\n"
-"help.text"
-msgid "radian=(degree*pi)/180"
-msgstr ""
-
-#. o3[w
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3152885\n"
-"14\n"
-"help.text"
-msgid "Pi is here the fixed circle constant with the rounded value 3.14159..."
-msgstr ""
-
-#. TQNa
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"hd_id3153951\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. [gj,
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3155855\n"
-"16\n"
-"help.text"
-msgid "' The following example allows for a right-angled triangle the input of"
-msgstr ""
-
-#. *_\i
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3149484\n"
-"17\n"
-"help.text"
-msgid "' secant and angle (in degrees) and calculates the length of the hypotenuse:"
-msgstr ""
-
-#. Q!Ai
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3150010\n"
-"19\n"
-"help.text"
-msgid "' rounded Pi = 3.14159"
-msgstr ""
-
-#. `qJo
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3144764\n"
-"21\n"
-"help.text"
-msgid "d1 = InputBox$ (\"\"Enter the length of the adjacent side: \",\"Adjacent\")"
-msgstr ""
-
-#. le=z
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3154491\n"
-"22\n"
-"help.text"
-msgid "dAngle = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
-msgstr ""
-
-#. 5vfN
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3151074\n"
-"23\n"
-"help.text"
-msgid "Print \"The length of the hypothenuse is\"; (d1 / cos (dAngle * Pi / 180))"
-msgstr ""
-
-#. 6ddw
-#: 01050300.xhp
-msgctxt ""
-"01050300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Manage Breakpoints"
-msgstr ""
-
-#. 1o-I
-#: 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 ""
-
-#. _}rF
-#: 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 ""
-
-#. MlDG
-#: 01050300.xhp
-msgctxt ""
-"01050300.xhp\n"
-"hd_id3149670\n"
-"3\n"
-"help.text"
-msgid "Breakpoints"
-msgstr ""
-
-#. rACe
-#: 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 ""
-
-#. Haog
-#: 01050300.xhp
-msgctxt ""
-"01050300.xhp\n"
-"hd_id3156280\n"
-"6\n"
-"help.text"
-msgid "Active"
-msgstr ""
-
-#. @QW4
-#: 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 ""
-
-#. ()DC
-#: 01050300.xhp
-msgctxt ""
-"01050300.xhp\n"
-"hd_id3144500\n"
-"8\n"
-"help.text"
-msgid "Pass Count"
-msgstr ""
-
-#. EFpT
-#: 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 ""
-
-#. Q7bw
-#: 01050300.xhp
-msgctxt ""
-"01050300.xhp\n"
-"hd_id3152579\n"
-"10\n"
-"help.text"
-msgid "New"
-msgstr "ახალი"
-
-#. ~?!5
-#: 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 ""
-
-#. 9#45
-#: 01050300.xhp
-msgctxt ""
-"01050300.xhp\n"
-"hd_id3147319\n"
-"12\n"
-"help.text"
-msgid "Delete"
-msgstr ""
-
-#. ig0R
-#: 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 ""
-
-#. DI}?
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Array Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. ]*}.
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"bm_id3150499\n"
-"help.text"
-msgid "<bookmark_value>Array function</bookmark_value>"
-msgstr "<bookmark_value>Asc ფუნქცია</bookmark_value>"
-
-#. -SRW
-#: 03104200.xhp
-#, fuzzy
-msgctxt ""
-"03104200.xhp\n"
-"hd_id3150499\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array Function [Runtime]\">Array Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. f,7A
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"par_id3155555\n"
-"2\n"
-"help.text"
-msgid "Returns the type Variant with a data field."
-msgstr ""
-
-#. pSl~
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"hd_id3148538\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 6Gb.
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"par_id3153126\n"
-"4\n"
-"help.text"
-msgid "Array ( Argument list)"
-msgstr ""
-
-#. G9K[
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"par_id3155419\n"
-"5\n"
-"help.text"
-msgid "See also <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
-msgstr ""
-
-#. kX_=
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"hd_id3150669\n"
-"6\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. ZphB
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"par_id3145609\n"
-"7\n"
-"help.text"
-msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
-msgstr ""
-
-#. DPx{
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"hd_id3156343\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. =f3O
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"par_id3153897\n"
-"9\n"
-"help.text"
-msgid "Dim A As Variant"
-msgstr "Dim sVar as string"
-
-#. 97hl
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"par_id3153525\n"
-"10\n"
-"help.text"
-msgid "A = Array(\"Fred\",\"Tom\",\"Bill\")"
-msgstr ""
-
-#. *QLX
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"par_id3150792\n"
-"11\n"
-"help.text"
-msgid "Msgbox A(2)"
-msgstr ""
-
-#. oD5(
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"tit\n"
-"help.text"
-msgid "Val Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. `J)\
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"bm_id3149205\n"
-"help.text"
-msgid "<bookmark_value>Val function</bookmark_value>"
-msgstr "<bookmark_value>Va lფუნქცია</bookmark_value>"
-
-#. 9SnG
-#: 03120104.xhp
-#, fuzzy
-msgctxt ""
-"03120104.xhp\n"
-"hd_id3149205\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. 43!H
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"par_id3153345\n"
-"2\n"
-"help.text"
-msgid "Converts a string to a numeric expression."
-msgstr ""
-
-#. X/*7
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"hd_id3159157\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. o1MT
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"par_id3149514\n"
-"4\n"
-"help.text"
-msgid "Val (Text As String)"
-msgstr "Val (ტექსტი როგორც სტრიქონი)"
-
-#. ,Ta\
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"hd_id3150669\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. xv|T
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"par_id3143228\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr ""
-
-#. /TE\
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"hd_id3156024\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. \[@/
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"par_id3154348\n"
-"8\n"
-"help.text"
-msgid "<emph>Text:</emph> String that represents a number."
-msgstr ""
-
-#. rHRM
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"par_id3149670\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 ""
-
-#. *ANs
-#: 03120104.xhp
-msgctxt ""
-"03120104.xhp\n"
-"hd_id3154365\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. p|qT
-#: 03010200.xhp
-msgctxt ""
-"03010200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Functions for Screen Input"
-msgstr ""
-
-#. LFZB
-#: 03010200.xhp
-msgctxt ""
-"03010200.xhp\n"
-"hd_id3149456\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03010200.xhp\" name=\"Functions for Screen Input\">Functions for Screen Input</link>"
-msgstr ""
-
-#. NQ^k
-#: 03010200.xhp
-msgctxt ""
-"03010200.xhp\n"
-"par_id3150398\n"
-"2\n"
-"help.text"
-msgid "This section describes Runtime functions used to control screen input."
-msgstr ""
-
-#. Y,1#
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"tit\n"
-"help.text"
-msgid "MkDir Statement [Runtime]"
-msgstr ""
-
-#. #02k
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"bm_id3156421\n"
-"help.text"
-msgid "<bookmark_value>MkDir statement</bookmark_value>"
-msgstr "<bookmark_value>Wait განცხადება</bookmark_value>"
-
-#. %uwv
-#: 03020411.xhp
-#, fuzzy
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156421\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. :,rD
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3147000\n"
-"2\n"
-"help.text"
-msgid "Creates a new directory on a data medium."
-msgstr ""
-
-#. EW7~
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3148520\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. @+6W
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3155150\n"
-"4\n"
-"help.text"
-msgid "MkDir Text As String"
-msgstr "RTrim (Text As String)"
-
-#. i7db
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. wVO!
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3153750\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 ""
-
-#. isqO
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3153311\n"
-"7\n"
-"help.text"
-msgid "If the path is not determined, the directory is created in the current directory."
-msgstr ""
-
-#. OK-/
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. (p3u
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3149762\n"
-"10\n"
-"help.text"
-msgid "' Example for functions of the file organization"
-msgstr ""
-
-#. cU%T
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3149669\n"
-"13\n"
-"help.text"
-msgid "Const sSubDir1 As String =\"Test\""
-msgstr ""
-
-#. 3X@Q
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3148663\n"
-"14\n"
-"help.text"
-msgid "Const sFile2 As String = \"Copied.tmp\""
-msgstr ""
-
-#. hAO:
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3154071\n"
-"15\n"
-"help.text"
-msgid "Const sFile3 As String = \"Renamed.tmp\""
-msgstr ""
-
-#. m6rk
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3154217\n"
-"19\n"
-"help.text"
-msgid "If Dir(sSubDir1,16)=\"\" Then ' Does the directory exist?"
-msgstr ""
-
-#. Li-a
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3147228\n"
-"21\n"
-"help.text"
-msgid "MsgBox sFile,0,\"Create directory\""
-msgstr ""
-
-#. $,yF
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3153770\n"
-"26\n"
-"help.text"
-msgid "MsgBox fSysURL(CurDir()),0,\"Current directory\""
-msgstr ""
-
-#. +O?P
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3159154\n"
-"27\n"
-"help.text"
-msgid "MsgBox sFile & Chr(13) & FileDateTime( sFile ),0,\"Creation time\""
-msgstr ""
-
-#. Ff0o
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3149484\n"
-"28\n"
-"help.text"
-msgid "MsgBox sFile & Chr(13)& FileLen( sFile ),0,\"File length\""
-msgstr ""
-
-#. ;|gk
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3152885\n"
-"29\n"
-"help.text"
-msgid "MsgBox sFile & Chr(13)& GetAttr( sFile ),0,\"File attributes\""
-msgstr ""
-
-#. r)jU
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3153952\n"
-"31\n"
-"help.text"
-msgid "' Rename in the same directory"
-msgstr ""
-
-#. p)9s
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3147426\n"
-"34\n"
-"help.text"
-msgid "SetAttr( sFile, 0 ) 'Delete all attributes"
-msgstr ""
-
-#. 2-0M
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3148647\n"
-"35\n"
-"help.text"
-msgid "MsgBox sFile & Chr(13) & GetAttr( sFile ),0,\"New file attributes\""
-msgstr ""
-
-#. #5]l
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3150092\n"
-"40\n"
-"help.text"
-msgid "' Converts a system path in URL"
-msgstr ""
-
-#. Vi:T
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3156276\n"
-"49\n"
-"help.text"
-msgid "' the colon with DOS"
-msgstr ""
-
-#. 2ZB.
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"tit\n"
-"help.text"
-msgid "On Error GoTo ... Resume Statement [Runtime]"
-msgstr ""
-
-#. R2ai
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"bm_id3146795\n"
-"help.text"
-msgid "<bookmark_value>Resume Next parameter</bookmark_value><bookmark_value>On Error GoTo ... Resume statement</bookmark_value>"
-msgstr ""
-
-#. uQ6J
-#: 03050500.xhp
-#, fuzzy
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146795\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. #V^%
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"par_id3150358\n"
-"2\n"
-"help.text"
-msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
-msgstr ""
-
-#. Ng2C
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. Jds,
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"par_id3145173\n"
-"4\n"
-"help.text"
-msgid "On {[Local] Error GoTo Labelname | GoTo 0 | Resume Next}"
-msgstr ""
-
-#. L+Ac
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. yXR!
-#: 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 ""
-
-#. KHpV
-#: 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 ""
-
-#. BZ1M
-#: 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 ""
-
-#. .~:,
-#: 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 ""
-
-#. X,Um
-#: 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 ""
-
-#. DJeq
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. !8th
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"par_id3153876\n"
-"52\n"
-"help.text"
-msgid "Print #iNumber, \"This is a line of text\""
-msgstr ""
-
-#. N`\@
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"par_id3146916\n"
-"67\n"
-"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr ""
-
-#. ]LB4
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"tit\n"
-"help.text"
-msgid "$[officename] Basic Glossary"
-msgstr ""
-
-#. Hux%
-#: 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 ""
-
-#. v01H
-#: 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 ""
-
-#. [L1{
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3155133\n"
-"7\n"
-"help.text"
-msgid "Decimal Point"
-msgstr ""
-
-#. C$YJ
-#: 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 ""
-
-#. qOD|
-#: 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 ""
-
-#. k!8t
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3155854\n"
-"29\n"
-"help.text"
-msgid "Colors"
-msgstr "ფერები"
-
-#. )n.`
-#: 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 ""
-
-#. uU:d
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3146119\n"
-"32\n"
-"help.text"
-msgid "Measurement Units"
-msgstr ""
-
-#. $fk.
-#: 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 ""
-
-#. SuWS
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3145801\n"
-"help.text"
-msgid "<bookmark_value>twips; definition</bookmark_value>"
-msgstr "<bookmark_value>Asc ფუნქცია</bookmark_value>"
-
-#. N/fK
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3145801\n"
-"5\n"
-"help.text"
-msgid "Twips"
-msgstr ""
-
-#. qOhN
-#: 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 ""
-
-#. cPoM
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3153159\n"
-"106\n"
-"help.text"
-msgid "URL Notation"
-msgstr ""
-
-#. 5t3J
-#: 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 ""
-
-#. p?TR
-#: 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 ""
-
-#. e80{
-#: 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 ""
-
-#. %\.,
-#: 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 ""
-
-#. W0ny
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"tit\n"
-"help.text"
-msgid "Join Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. /lP%
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"bm_id3149416\n"
-"help.text"
-msgid "<bookmark_value>Join function</bookmark_value>"
-msgstr "<bookmark_value>Join ფუნქცია</bookmark_value>"
-
-#. Ch.E
-#: 03120315.xhp
-#, fuzzy
-msgctxt ""
-"03120315.xhp\n"
-"hd_id3149416\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120315.xhp\" name=\"Join Function [Runtime]\">Join Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. `I[{
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"par_id3149670\n"
-"2\n"
-"help.text"
-msgid "Returns a string from a number of substrings in a string array."
-msgstr "მასივში ქვესტრინგებიდან აბრუნებს სტინგს."
-
-#. YcNu
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"hd_id3159414\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. *L1^
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"par_id3156344\n"
-"4\n"
-"help.text"
-msgid "Join (Text As String Array, delimiter)"
-msgstr "Join (Text As String Array, delimiter)"
-
-#. /B^V
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"hd_id3150400\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. N[,G
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"par_id3150359\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "სტრიქონები"
-
-#. %!2a
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"hd_id3148798\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. II,g
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"par_id3145171\n"
-"8\n"
-"help.text"
-msgid "<emph>Text:</emph> A string array."
-msgstr "<emph>ტექსტი:</emph> სტრინგების მწკრივი."
-
-#. Y=!:
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"par_id3154908\n"
-"9\n"
-"help.text"
-msgid "<emph>delimiter (optional):</emph> A string character that is used to separate the substrings in the resulting string. The default delimiter is the space character. If delimiter is a string of length zero \"\", the substrings are joined without separator."
-msgstr "<emph>delimiter (არჩევითი):</emph> სტრუნგული ასო-ნიშანი, რომელიც გამოიყენება ქვესტრინგების გამოსაყოფად შედეგის სტრინგში. საწყის გამყოფად გამოიყენება ჰარის ასო-ნიშანი. თუ გამყოფი ნულოვანი სიგრძისაა\"\", ქვესტრინგები შეერთდება გამყოფის გარეშე."
-
-#. ?[TY
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"hd_id3154218\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. T.!=
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"tit\n"
-"help.text"
-msgid "DateValue Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. }{uT
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"bm_id3156344\n"
-"help.text"
-msgid "<bookmark_value>DateValue function</bookmark_value>"
-msgstr "<bookmark_value>DatePart ფუნქცია</bookmark_value>"
-
-#. %^Ai
-#: 03030102.xhp
-#, fuzzy
-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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. 69)E
-#: 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 ""
-
-#. eOLq
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3148799\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. UAuj
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"par_id3154910\n"
-"4\n"
-"help.text"
-msgid "DateValue [(date)]"
-msgstr ""
-
-#. 14NQ
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3150870\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. dH$[
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"par_id3153194\n"
-"6\n"
-"help.text"
-msgid "Date"
-msgstr ""
-
-#. MMIc
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3153969\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. =}3Q
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"par_id3153770\n"
-"8\n"
-"help.text"
-msgid "<emph>Date:</emph> String expression that contains the date that you want to calculate. The date can be specified in almost any format."
-msgstr ""
-
-#. e\5n
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"par_id3153189\n"
-"22\n"
-"help.text"
-msgid "You can use this function to convert a date that occurs between December 1, 1582 and December 31, 9999 into a single integer value. You can then use this value to calculate the difference between two dates. If the date argument lies outside the acceptable range, $[officename] Basic returns an error message."
-msgstr ""
-
-#. kb:Q
-#: 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 ""
-
-#. oH]$
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3153142\n"
-"24\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. ;Vf7
-#: 03120300.xhp
-msgctxt ""
-"03120300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Editing String Contents"
-msgstr "სტრიქონის შეიგთავსის რედაქტირება"
-
-#. \5-O
-#: 03120300.xhp
-msgctxt ""
-"03120300.xhp\n"
-"bm_id7499008\n"
-"help.text"
-msgid "<bookmark_value>ampersand symbol in StarBasic</bookmark_value>"
-msgstr ""
-
-#. U{9G
-#: 03120300.xhp
-#, fuzzy
-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/03120400.xhp\" name=\"სტრინგის სიგრძის რედაქტირება\">სტრინგის სიგრძის რედაქტირება</link>"
-
-#. AgVZ
-#: 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 ""
-
-#. QOhM
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"tit\n"
-"help.text"
-msgid "CreateObject Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. !qI{
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"bm_id659810\n"
-"help.text"
-msgid "<bookmark_value>CreateObject function</bookmark_value>"
-msgstr "<bookmark_value>CreateObject ფუნქცია</bookmark_value>"
-
-#. t\gL
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"par_idN10580\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03132400.xhp\">CreateObject Function [Runtime]</link>"
-msgstr ""
-
-#. mL)_
-#: 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 ""
-
-#. @`k1
-#: 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 "მეთოდი ქმნის პარამეტრად გადაცემული ტიპის ნიმუშებს."
-
-#. _?PZ
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"par_idN105A2\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. %bK+
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"par_idN105A6\n"
-"help.text"
-msgid "oObj = CreateObject( type )"
-msgstr "oObj = CreateObject( type )"
-
-#. iF+b
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"par_idN105A9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. hBL[
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"tit\n"
-"help.text"
-msgid "Reset Statement [Runtime]"
-msgstr ""
-
-#. }qm;
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"bm_id3154141\n"
-"help.text"
-msgid "<bookmark_value>Reset statement</bookmark_value>"
-msgstr "<bookmark_value>RSet დებულება</bookmark_value>"
-
-#. 3@4|
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"hd_id3154141\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020104.xhp\">Reset Statement [Runtime]</link>"
-msgstr ""
-
-#. Jh(l
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"par_id3156423\n"
-"2\n"
-"help.text"
-msgid "Closes all open files and writes the contents of all file buffers to the harddisk."
-msgstr ""
-
-#. +bDM
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"hd_id3154124\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. {H@|
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"hd_id3161831\n"
-"5\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. +w,5
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"par_id3148455\n"
-"47\n"
-"help.text"
-msgid "Print #iNumber, \"This is a new line of text\""
-msgstr ""
-
-#. Pjh\
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"par_id3163805\n"
-"62\n"
-"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr ""
-
-#. F1iV
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"tit\n"
-"help.text"
-msgid "Red Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. O*Or
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"bm_id3148947\n"
-"help.text"
-msgid "<bookmark_value>Red function</bookmark_value>"
-msgstr "<bookmark_value>Len ფუნქცია</bookmark_value>"
-
-#. 3A]j
-#: 03010303.xhp
-#, fuzzy
-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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. TJ].
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"par_id3149656\n"
-"2\n"
-"help.text"
-msgid "Returns the Red component of the specified color code."
-msgstr ""
-
-#. TDdA
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"hd_id3148799\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. \`?S
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"par_id3150448\n"
-"4\n"
-"help.text"
-msgid "Red (ColorNumber As Long)"
-msgstr ""
-
-#. .Q1l
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"hd_id3151042\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. 9o|:
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"par_id3145173\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr ""
-
-#. %FsZ
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"hd_id3154685\n"
-"7\n"
-"help.text"
-msgid "Parameter:"
-msgstr ""
-
-#. 00_1
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"par_id3150440\n"
-"8\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 ""
-
-#. %A`^
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"hd_id3148575\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. lwts
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"par_id3147435\n"
-"13\n"
-"help.text"
-msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
-msgstr ""
-
-#. \)UC
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"par_id3155306\n"
-"14\n"
-"help.text"
-msgid "\"red= \" & red(lVar) & Chr(13)&_"
-msgstr ""
-
-#. H!{j
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"par_id3149262\n"
-"15\n"
-"help.text"
-msgid "\"green= \" & green(lVar) & Chr(13)&_"
-msgstr ""
-
-#. ^*M(
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"par_id3147397\n"
-"16\n"
-"help.text"
-msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
-msgstr ""
-
-#. N9Sv
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"tit\n"
-"help.text"
-msgid "Split Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. vcS[
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"bm_id3156027\n"
-"help.text"
-msgid "<bookmark_value>Split function</bookmark_value>"
-msgstr "<bookmark_value>Split ფუნქცია</bookmark_value>"
-
-#. pu.,
-#: 03120314.xhp
-#, fuzzy
-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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. Vp9$
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"par_id3155805\n"
-"2\n"
-"help.text"
-msgid "Returns an array of substrings from a string expression."
-msgstr "სტრუნგული გამოსახულებიდან აბრუნებს ქვესტრინგების მასივს."
-
-#. fY;o
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3149177\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. ,NpX
-#: 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)"
-
-#. 7$5b
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3149763\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. A[fG
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"par_id3154285\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "სტრიქონები"
-
-#. 0jG#
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3145315\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. NP!Q
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"par_id3156023\n"
-"8\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string expression."
-msgstr "<emph>ტექსტი: </emph>ნებისმიერი სტრინგული გამოსახულება."
-
-#. 5Ogy
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"par_id3147560\n"
-"9\n"
-"help.text"
-msgid "<emph>delimiter (optional):</emph> A string of one or more characters length that is used to delimit the Text. The default is the space character."
-msgstr "<emph>delimiter (არჩევითი):</emph> ერთი ან მეტი ასო-ნიშნის სიგრძის სტრინგი, რომელიც გამოიყენება ტექსტის გამოსაყოფად. საწყისი ნიშანია ჰარი."
-
-#. (W-e
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"par_id3145069\n"
-"12\n"
-"help.text"
-msgid "<emph>number (optional):</emph> The number of substrings that you want to return."
-msgstr "<emph>number (არჩევითი):</emph> თქვენთვის სასურველი დასაბრუნებელი ქვესტრინგების რაოდენობა."
-
-#. GqT6
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3150398\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. oKPP
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"tit\n"
-"help.text"
-msgid "Input# Statement [Runtime]"
-msgstr ""
-
-#. ]{@]
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"bm_id3154908\n"
-"help.text"
-msgid "<bookmark_value>Input statement</bookmark_value>"
-msgstr "<bookmark_value>LSet განაცხადი</bookmark_value>"
-
-#. LPH2
-#: 03020202.xhp
-#, fuzzy
-msgctxt ""
-"03020202.xhp\n"
-"hd_id3154908\n"
-"1\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. qTY:
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"par_id3156424\n"
-"2\n"
-"help.text"
-msgid "Reads data from an open sequential file."
-msgstr ""
-
-#. }JVw
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"hd_id3125863\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. e=8-
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"par_id3150440\n"
-"4\n"
-"help.text"
-msgid "Input #FileNumber As Integer; var1[, var2[, var3[,...]]]"
-msgstr ""
-
-#. |RRL
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"hd_id3146121\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. 1Z{g
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"par_id3145749\n"
-"6\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 ""
-
-#. pcVp
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"par_id3150011\n"
-"7\n"
-"help.text"
-msgid "<emph>var:</emph> A numeric or string variable that you assign the values read from the opened file to."
-msgstr ""
-
-#. ZEty
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"par_id3159153\n"
-"8\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 ""
-
-#. u$j;
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"par_id3146984\n"
-"9\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 ""
-
-#. %KN=
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"par_id3156442\n"
-"10\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 ""
-
-#. eSVZ
-#: 03020202.xhp
-msgctxt ""
-"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 ""
-
-#. uU.c
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"hd_id3152578\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. A+QU
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"par_id4144765\n"
-"help.text"
-msgid "' Write data ( which we will read later with Input ) to file"
-msgstr ""
-
-#. BmL1
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"par_id4144766\n"
-"help.text"
-msgid "' Read data file using Input"
-msgstr ""
-
-#. P7K:
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"tit\n"
-"help.text"
-msgid "ReDim Statement [Runtime]"
-msgstr ""
-
-#. :J`b
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"bm_id3150398\n"
-"help.text"
-msgid "<bookmark_value>ReDim statement</bookmark_value>"
-msgstr "<bookmark_value>RSet დებულება</bookmark_value>"
-
-#. RQ0$
-#: 03102101.xhp
-#, fuzzy
-msgctxt ""
-"03102101.xhp\n"
-"hd_id3150398\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03102101.xhp\" name=\"ReDim Statement [Runtime]\">ReDim Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. !La?
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3154685\n"
-"2\n"
-"help.text"
-msgid "Declares a variable or an array."
-msgstr ""
-
-#. :In9
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"hd_id3154218\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. SoRn
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3156214\n"
-"4\n"
-"help.text"
-msgid "[ReDim]Dim VarName [(start To end)] [As VarType][, VarName2 [(start To end)] [As VarType][,...]]"
-msgstr ""
-
-#. cY58
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id711996\n"
-"help.text"
-msgid "Optionally, you can add the <emph>Preserve</emph> keyword as a parameter to preserve the contents of the array that is redimensioned."
-msgstr ""
-
-#. LY,B
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"hd_id3148451\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. hZU@
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3156423\n"
-"6\n"
-"help.text"
-msgid "<emph>VarName:</emph> Any variable or array name."
-msgstr ""
-
-#. J4Gq
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3149562\n"
-"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 ""
-
-#. 5x;K
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3155307\n"
-"8\n"
-"help.text"
-msgid "Start and End can be numeric expressions if ReDim is used at the procedure level."
-msgstr ""
-
-#. %(0z
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3153951\n"
-"9\n"
-"help.text"
-msgid "<emph>VarType:</emph> Keyword that declares the data type of a variable."
-msgstr ""
-
-#. 8dA`
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3147317\n"
-"10\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Variable type"
-msgstr ""
-
-#. @1A(
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3153728\n"
-"11\n"
-"help.text"
-msgid "<emph>Bool: </emph>Boolean variable (True, False)"
-msgstr ""
-
-#. PUi=
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3146121\n"
-"12\n"
-"help.text"
-msgid "<emph>Date:</emph> Date variable"
-msgstr ""
-
-#. g+JD
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3159156\n"
-"13\n"
-"help.text"
-msgid "<emph>Double:</emph> Double floating point variable (1.79769313486232x10E308 - 4.94065645841247x10E-324)"
-msgstr ""
-
-#. 4*hC
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3148616\n"
-"14\n"
-"help.text"
-msgid "<emph>Integer:</emph> Integer variable (-32768 - 32767)"
-msgstr ""
-
-#. RS%e
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3147348\n"
-"15\n"
-"help.text"
-msgid "<emph>Long:</emph> Long integer variable (-2,147,483,648 - 2,147,483,647)"
-msgstr ""
-
-#. 00w/
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3149412\n"
-"16\n"
-"help.text"
-msgid "<emph>Object:</emph> Object variable (can only be subsequently defined by Set!)"
-msgstr ""
-
-#. MNCE
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3154729\n"
-"17\n"
-"help.text"
-msgid "<emph>[Single]:</emph> Single floating-point variable (3.402823x10E38 - 1.401298x10E-45). If no key word is specified, a variable is defined as Single, unless a statement from DefBool to DefVar is used."
-msgstr ""
-
-#. 663:
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3148458\n"
-"18\n"
-"help.text"
-msgid "<emph>String:</emph> String variable containing a maximum of 64,000 ASCII characters."
-msgstr ""
-
-#. @N1K
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3149581\n"
-"19\n"
-"help.text"
-msgid "<emph>Variant: </emph>Variant variable type (can contain all types and is set by definition)."
-msgstr ""
-
-#. WRi!
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3155601\n"
-"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 ""
-
-#. h|`0
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3153415\n"
-"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 ""
-
-#. s=wn
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3146971\n"
-"22\n"
-"help.text"
-msgid "There are two ways to set the range of indices for arrays declared with the Dim statement:"
-msgstr ""
-
-#. SJv_
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3153950\n"
-"23\n"
-"help.text"
-msgid "DIM text(20) As String REM 21 elements numbered from 0 to 20"
-msgstr ""
-
-#. *Q}9
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3146912\n"
-"24\n"
-"help.text"
-msgid "DIM text(5 to 25) As String REM 21 elements numbered from 5 to 25"
-msgstr ""
-
-#. Ly7q
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3153709\n"
-"25\n"
-"help.text"
-msgid "DIM text$(-15 to 5) As String REM 21 elements (0 inclusive),"
-msgstr ""
-
-#. v.:0
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3150321\n"
-"26\n"
-"help.text"
-msgid "rem numbered from -15 to 5"
-msgstr ""
-
-#. M0tq
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"par_id3149018\n"
-"27\n"
-"help.text"
-msgid "Variable fields, regardless of type, can be made dynamic if they are dimensioned by ReDim at the procedure level in subroutines or functions. Normally, you can only set the range of an array once and you cannot modify it. Within a procedure, you can declare an array using the ReDim statement with numeric expressions to define the range of the field sizes."
-msgstr ""
-
-#. u\cu
-#: 03102101.xhp
-msgctxt ""
-"03102101.xhp\n"
-"hd_id3148405\n"
-"28\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. F?F-
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"tit\n"
-"help.text"
-msgid "Day Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. rGPm
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"bm_id3153345\n"
-"help.text"
-msgid "<bookmark_value>Day function</bookmark_value>"
-msgstr "<bookmark_value>Va lფუნქცია</bookmark_value>"
-
-#. ](/$
-#: 03030103.xhp
-#, fuzzy
-msgctxt ""
-"03030103.xhp\n"
-"hd_id3153345\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day Function [Runtime]\">Day Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. !p[N
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"par_id3147560\n"
-"2\n"
-"help.text"
-msgid "Returns a value that represents the day of the month based on a serial date number generated by <emph>DateSerial</emph> or <emph>DateValue</emph>."
-msgstr ""
-
-#. B[]L
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"hd_id3149456\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. beG{
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"par_id3150358\n"
-"4\n"
-"help.text"
-msgid "Day (Number)"
-msgstr ""
-
-#. 33vb
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"hd_id3148798\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. si%p
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"par_id3125865\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr ""
-
-#. R,u%
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"hd_id3150448\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. 95b1
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"par_id3156423\n"
-"8\n"
-"help.text"
-msgid "<emph>Number:</emph> A numeric expression that contains a serial date number from which you can determine the day of the month."
-msgstr ""
-
-#. mLVW
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"par_id3145786\n"
-"9\n"
-"help.text"
-msgid "This function is basically the opposite of the DateSerial function, returning the day of the month from a serial date number generated by the <emph>DateSerial</emph> or the <emph>DateValue</emph> function. For example, the expression"
-msgstr ""
-
-#. YR=U
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"par_id3153190\n"
-"11\n"
-"help.text"
-msgid "returns the value 20."
-msgstr ""
-
-#. Vd(]
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"hd_id3149481\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. *K9-
-#: 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 ""
-
-#. 4#DM
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsUnoStruct Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. ]kdt
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"bm_id3146117\n"
-"help.text"
-msgid "<bookmark_value>IsUnoStruct function</bookmark_value>"
-msgstr "<bookmark_value>IsUnoStruct ფუნქცია</bookmark_value>"
-
-#. V%.P
-#: 03104500.xhp
-#, fuzzy
-msgctxt ""
-"03104500.xhp\n"
-"hd_id3146117\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. j.Uy
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_id3146957\n"
-"2\n"
-"help.text"
-msgid "Returns True if the given object is a Uno struct."
-msgstr "აბრუნებს ჭეშმარიტებას თუ მოცემულ ობიექტი არის Uno struct."
-
-#. DHmt
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"hd_id3148538\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 7^{q
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_id3155341\n"
-"4\n"
-"help.text"
-msgid "IsUnoStruct( Uno type )"
-msgstr "IsUnoStruct( Uno ტიპი )"
-
-#. kK~H
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"hd_id3148473\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. !me_
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_id3145315\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr ""
-
-#. Xip-
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"hd_id3145609\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. +9|)
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_id3148947\n"
-"8\n"
-"help.text"
-msgid "Uno type : A UnoObject"
-msgstr "არაის Uno ტიპი : A UnoObject"
-
-#. ~3T}
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"hd_id3156343\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. yinh
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN10638\n"
-"help.text"
-msgid "' Instantiate a service"
-msgstr "გამოსახეთ სერვისები"
-
-#. bJg8
-#: 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 ' აჩვენებს მცდარს იმიტონმ რომ oSimpleFileAccess არ არის struct"
-
-#. \J\G
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN10649\n"
-"help.text"
-msgid "' Instantiate a Property struct"
-msgstr "გამისახეთ struct-ს თვისება"
-
-#. M{:A
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN10653\n"
-"help.text"
-msgid "MsgBox bIsStruct ' Displays True because aProperty is a struct"
-msgstr "MsgBox bIsStruct ' აჩვენებს ჭეშმარიტს იმიტომ რომ aთვისება არ არის struct"
-
-#. W58n
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN1065B\n"
-"help.text"
-msgid "MsgBox bIsStruct ' Displays False because 42 is NO struct"
-msgstr "MsgBox bIsStruct ' აჩვენებს მცდარს იმიტომ რომ 42 არ არის struct"
-
-#. Wh3Q
-#: 03030100.xhp
-msgctxt ""
-"03030100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Converting Date Values"
-msgstr ""
-
-#. ~wG:
-#: 03030100.xhp
-msgctxt ""
-"03030100.xhp\n"
-"hd_id3147573\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030100.xhp\" name=\"Converting Date Values\">Converting Date Values</link>"
-msgstr ""
-
-#. ;##P
-#: 03030100.xhp
-msgctxt ""
-"03030100.xhp\n"
-"par_id3154760\n"
-"2\n"
-"help.text"
-msgid "The following functions convert date values to calculable numbers and back."
-msgstr ""
-
-#. ZD]z
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"tit\n"
-"help.text"
-msgid "MsgBox Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. 8|m3
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"bm_id3153379\n"
-"help.text"
-msgid "<bookmark_value>MsgBox function</bookmark_value>"
-msgstr "<bookmark_value>IsError ფუნქცია</bookmark_value>"
-
-#. z2/-
-#: 03010102.xhp
-#, fuzzy
-msgctxt ""
-"03010102.xhp\n"
-"hd_id3153379\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. )8m9
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3145171\n"
-"2\n"
-"help.text"
-msgid "Displays a dialog box containing a message and returns a value."
-msgstr ""
-
-#. v3!(
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"hd_id3156281\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 1CYD
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3154685\n"
-"4\n"
-"help.text"
-msgid "MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]])"
-msgstr ""
-
-#. !enV
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"hd_id3153771\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. r|JB
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3146985\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr ""
-
-#. ~\Mw
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"hd_id3153363\n"
-"7\n"
-"help.text"
-msgid "Parameter:"
-msgstr ""
-
-#. W^rP
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3153727\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 ""
-
-#. .sD{
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3147317\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 ""
-
-#. e91L
-#: 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 ""
-
-#. N-c~
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3154319\n"
-"11\n"
-"help.text"
-msgid "<emph>Values</emph>"
-msgstr ""
-
-#. qZS]
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3147397\n"
-"12\n"
-"help.text"
-msgid "0 : Display OK button only."
-msgstr ""
-
-#. [3m/
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3145646\n"
-"13\n"
-"help.text"
-msgid "1 : Display OK and Cancel buttons."
-msgstr ""
-
-#. SBkq
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3149410\n"
-"14\n"
-"help.text"
-msgid "2 : Display Abort, Retry, and Ignore buttons."
-msgstr ""
-
-#. mI7x
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3151075\n"
-"15\n"
-"help.text"
-msgid "3 : Display Yes, No, and Cancel buttons."
-msgstr ""
-
-#. G1Ma
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3153878\n"
-"16\n"
-"help.text"
-msgid "4 : Display Yes and No buttons."
-msgstr ""
-
-#. $U8s
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3155601\n"
-"17\n"
-"help.text"
-msgid "5 : Display Retry and Cancel buttons."
-msgstr ""
-
-#. ]o6V
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3150716\n"
-"18\n"
-"help.text"
-msgid "16 : Add the Stop icon to the dialog."
-msgstr ""
-
-#. %R%%
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3153837\n"
-"19\n"
-"help.text"
-msgid "32 : Add the Question icon to the dialog."
-msgstr ""
-
-#. .P#2
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3150751\n"
-"20\n"
-"help.text"
-msgid "48 : Add the Exclamation Point icon to the dialog."
-msgstr ""
-
-#. gcnS
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3146915\n"
-"21\n"
-"help.text"
-msgid "64 : Add the Information icon to the dialog."
-msgstr ""
-
-#. 1W@2
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3145640\n"
-"22\n"
-"help.text"
-msgid "128 : First button in the dialog as default button."
-msgstr ""
-
-#. S1q`
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3153765\n"
-"23\n"
-"help.text"
-msgid "256 : Second button in the dialog as default button."
-msgstr ""
-
-#. Z:F0
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3153715\n"
-"24\n"
-"help.text"
-msgid "512 : Third button in the dialog as default button."
-msgstr ""
-
-#. |?s2
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3159267\n"
-"25\n"
-"help.text"
-msgid "<emph>Return value:</emph>"
-msgstr "<emph>დაბრუნებული მნიშვნელობა</emph>:"
-
-#. 7][W
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3145230\n"
-"26\n"
-"help.text"
-msgid "1 : OK"
-msgstr ""
-
-#. Z``K
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3149567\n"
-"27\n"
-"help.text"
-msgid "2 : Cancel"
-msgstr ""
-
-#. Pj_z
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id4056825\n"
-"help.text"
-msgid "3 : Abort"
-msgstr ""
-
-#. UY)0
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3155335\n"
-"28\n"
-"help.text"
-msgid "4 : Retry"
-msgstr ""
-
-#. }Z~s
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3146918\n"
-"29\n"
-"help.text"
-msgid "5 : Ignore"
-msgstr ""
-
-#. QzFl
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3155961\n"
-"30\n"
-"help.text"
-msgid "6 : Yes"
-msgstr ""
-
-#. J@\M
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3148488\n"
-"31\n"
-"help.text"
-msgid "7 : No"
-msgstr ""
-
-#. 6|;k
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"hd_id3150090\n"
-"40\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. L!Ik
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3151278\n"
-"43\n"
-"help.text"
-msgid "sVar = MsgBox(\"Las Vegas\")"
-msgstr ""
-
-#. v=ao
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3149034\n"
-"44\n"
-"help.text"
-msgid "sVar = MsgBox(\"Las Vegas\",1)"
-msgstr ""
-
-#. Kf:G
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3166424\n"
-"45\n"
-"help.text"
-msgid "sVar = MsgBox( \"Las Vegas\",256 + 16 + 2,\"Dialog title\")"
-msgstr ""
-
-#. 7-}@
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"tit\n"
-"help.text"
-msgid "LCase Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. 6{1U
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"bm_id3152363\n"
-"help.text"
-msgid "<bookmark_value>LCase function</bookmark_value>"
-msgstr "<bookmark_value>LCase ფუნქცია</bookmark_value>"
-
-#. A8mG
-#: 03120302.xhp
-#, fuzzy
-msgctxt ""
-"03120302.xhp\n"
-"hd_id3152363\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. nvL9
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"par_id3145609\n"
-"2\n"
-"help.text"
-msgid "Converts all uppercase letters in a string to lowercase."
-msgstr "ზედარეგისტრის სიმბოლოების გარდაქმნა ქვედარეგისტრის სტრიქონად."
-
-#. r1|7
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"par_id3154347\n"
-"3\n"
-"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\">UCase</link> Function"
-msgstr ""
-
-#. [8qQ
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"hd_id3149456\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. U87V
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"par_id3150791\n"
-"5\n"
-"help.text"
-msgid "LCase (Text As String)"
-msgstr "LCase (ტექსტი როგორც სრიქონი)"
-
-#. @_VH
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"hd_id3154940\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. d2lR
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"par_id3144760\n"
-"7\n"
-"help.text"
-msgid "String"
-msgstr "სტრიქონები"
-
-#. ^`L{
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"hd_id3151043\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. tScM
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"par_id3153193\n"
-"9\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string expression that you want to convert."
-msgstr "<emph>ტექსტი:</emph> თქვენთვის რედაქტირებისთვის სასურველი ნებისმიერი ტექსტური გამოსახულება."
-
-#. c1k`
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"hd_id3148451\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 7h4+
-#: 03120302.xhp
-#, fuzzy
-msgctxt ""
-"03120302.xhp\n"
-"par_id3146121\n"
-"14\n"
-"help.text"
-msgid "Print LCase(sVar) ' Returns \"las vegas\""
-msgstr "Print LCase(sVar) REM აბრუნებს \"ლას ვეგასი\""
-
-#. W%7M
-#: 03120302.xhp
-#, fuzzy
-msgctxt ""
-"03120302.xhp\n"
-"par_id3146986\n"
-"15\n"
-"help.text"
-msgid "Print UCase(sVar) ' Returns \"LAS VEGAS\""
-msgstr "Print UCase(sVar) REM აბრუნებს \"ლას ვეგასი\""
-
-#. xW/%
-#: 03132200.xhp
-msgctxt ""
-"03132200.xhp\n"
-"tit\n"
-"help.text"
-msgid "ThisComponent Statement [Runtime]"
-msgstr ""
-
-#. ao3R
-#: 03132200.xhp
-msgctxt ""
-"03132200.xhp\n"
-"bm_id3155342\n"
-"help.text"
-msgid "<bookmark_value>ThisComponent property</bookmark_value><bookmark_value>components;addressing</bookmark_value>"
-msgstr ""
-
-#. E)_o
-#: 03132200.xhp
-#, fuzzy
-msgctxt ""
-"03132200.xhp\n"
-"hd_id3155342\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. P`3X
-#: 03132200.xhp
-msgctxt ""
-"03132200.xhp\n"
-"par_id3154923\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 ""
-
-#. b?S/
-#: 03132200.xhp
-msgctxt ""
-"03132200.xhp\n"
-"hd_id3154346\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. SEG1
-#: 03132200.xhp
-msgctxt ""
-"03132200.xhp\n"
-"par_id3151056\n"
-"4\n"
-"help.text"
-msgid "ThisComponent"
-msgstr "ThisComponent"
-
-#. }j,h
-#: 03132200.xhp
-msgctxt ""
-"03132200.xhp\n"
-"hd_id3154940\n"
-"5\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. [y^r
-#: 03132200.xhp
-#, fuzzy
-msgctxt ""
-"03132200.xhp\n"
-"par_id3154123\n"
-"7\n"
-"help.text"
-msgid "' updates the \"Table of Contents\" in a text doc"
-msgstr "REM ანახლებს \"სარჩევის ცხილრ\" ტექსტურ doc-ში"
-
-#. eZT7
-#: 03132200.xhp
-msgctxt ""
-"03132200.xhp\n"
-"par_id3153194\n"
-"10\n"
-"help.text"
-msgid "index = allindexes.getByName(\"Table of Contents1\")"
-msgstr "index = allindexes.getByName(\"Table of Contents1\")"
-
-#. ;#Mi
-#: 03132200.xhp
-#, fuzzy
-msgctxt ""
-"03132200.xhp\n"
-"par_id3156422\n"
-"11\n"
-"help.text"
-msgid "' use the default name for Table of Contents and a 1"
-msgstr "REM use the default name for Table of Contents and a 1"
-
-#. VSH3
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"tit\n"
-"help.text"
-msgid "Second Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. Jhy-
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"bm_id3153346\n"
-"help.text"
-msgid "<bookmark_value>Second function</bookmark_value>"
-msgstr "<bookmark_value>Len ფუნქცია</bookmark_value>"
-
-#. 32Oj
-#: 03030204.xhp
-#, fuzzy
-msgctxt ""
-"03030204.xhp\n"
-"hd_id3153346\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. _=dl
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"par_id3156023\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 ""
-
-#. nVg[
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"hd_id3147264\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. k/*4
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"par_id3146795\n"
-"4\n"
-"help.text"
-msgid "Second (Number)"
-msgstr ""
-
-#. 1b+\
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"hd_id3150792\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. 3txD
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"par_id3154140\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr ""
-
-#. YIBm
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"hd_id3156280\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. ;OV2
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"par_id3154124\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 ""
-
-#. IX,C
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"par_id3125864\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 ""
-
-#. *~]@
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"par_id3153951\n"
-"10\n"
-"help.text"
-msgid "Print Second(TimeSerial(12,30,41))"
-msgstr ""
-
-#. 0,RX
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"par_id3151117\n"
-"11\n"
-"help.text"
-msgid "returns the value 41."
-msgstr ""
-
-#. .H86
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"hd_id3147426\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. aP#9
-#: 03030204.xhp
-msgctxt ""
-"03030204.xhp\n"
-"par_id3156441\n"
-"14\n"
-"help.text"
-msgid "MsgBox \"The exact second of the current time is \"& Second( Now )"
-msgstr ""
-
-#. G314
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsDate Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. X/a-
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"bm_id3145090\n"
-"help.text"
-msgid "<bookmark_value>IsDate function</bookmark_value>"
-msgstr "<bookmark_value>Erase ფუნქცია</bookmark_value>"
-
-#. xo\2
-#: 03102300.xhp
-#, fuzzy
-msgctxt ""
-"03102300.xhp\n"
-"hd_id3145090\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. }scP
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"par_id3153311\n"
-"2\n"
-"help.text"
-msgid "Tests if a numeric or string expression can be converted to a <emph>Date</emph> variable."
-msgstr ""
-
-#. FZ3-
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"hd_id3153824\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. +ch^
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"par_id3147573\n"
-"4\n"
-"help.text"
-msgid "IsDate (Expression)"
-msgstr "CDec(Expression)"
-
-#. M(#x
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"hd_id3143270\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. q_,z
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"par_id3147560\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr ""
-
-#. [9,$
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"hd_id3148947\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. j5XW
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"par_id3145069\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 ""
-
-#. ,l6s
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"hd_id3150447\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. Ke^3
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"par_id3150869\n"
-"13\n"
-"help.text"
-msgid "Print IsDate(sDateVar) ' Returns True"
-msgstr ""
-
-#. ^f9`
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"par_id3147288\n"
-"15\n"
-"help.text"
-msgid "Print IsDate(sDateVar) ' Returns False"
-msgstr ""
-
-#. baSz
-#: 03020400.xhp
-msgctxt ""
-"03020400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Managing Files"
-msgstr ""
-
-#. Ave(
-#: 03020400.xhp
-#, fuzzy
-msgctxt ""
-"03020400.xhp\n"
-"hd_id3145136\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020400.xhp\" name=\"Managing Files\">Managing Files</link>"
-msgstr "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"მაკრო\">მაკრო</link>"
-
-#. W3QL
-#: 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 ""
-
-#. fi5C
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"tit\n"
-"help.text"
-msgid "CBool Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. oVE[
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"bm_id3150616\n"
-"help.text"
-msgid "<bookmark_value>CBool function</bookmark_value>"
-msgstr "<bookmark_value>Chr ფუნქცია</bookmark_value>"
-
-#. 9Ulc
-#: 03100100.xhp
-#, fuzzy
-msgctxt ""
-"03100100.xhp\n"
-"hd_id3150616\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. VK+I
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"par_id3145136\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 ""
-
-#. ]6Hm
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"hd_id3153345\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 2e-n
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"par_id3149514\n"
-"4\n"
-"help.text"
-msgid "CBool (Expression1 {= | <> | < | > | <= | >=} Expression2) or CBool (Number)"
-msgstr ""
-
-#. w!Vn
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"hd_id3156152\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. yd2Q
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"par_id3155419\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr ""
-
-#. z7cP
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"hd_id3147530\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. Qam$
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"par_id3156344\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 ""
-
-#. QOI,
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"par_id3149655\n"
-"9\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 ""
-
-#. A3$Z
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"par_id3145171\n"
-"10\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 ""
-
-#. B#$~
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"hd_id3156212\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. hK[U
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"par_id3155132\n"
-"14\n"
-"help.text"
-msgid "sText = InputBox(\"Please enter a short sentence:\")"
-msgstr ""
-
-#. ?49T
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"par_id3155855\n"
-"15\n"
-"help.text"
-msgid "' Proof if the word »and« appears in the sentence."
-msgstr ""
-
-#. Aj[8
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"par_id3146984\n"
-"16\n"
-"help.text"
-msgid "' Instead of the command line"
-msgstr ""
-
-#. MMD!
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"par_id3148576\n"
-"17\n"
-"help.text"
-msgid "' If Instr(Input, \"and\")<>0 Then..."
-msgstr ""
-
-#. 3*Uj
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"par_id3154014\n"
-"18\n"
-"help.text"
-msgid "' the CBool function is applied as follows:"
-msgstr ""
-
-#. /nmc
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"par_id3155413\n"
-"19\n"
-"help.text"
-msgid "If CBool(Instr(sText, \"and\")) Then"
-msgstr ""
-
-#. KbOY
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"par_id3152940\n"
-"20\n"
-"help.text"
-msgid "MsgBox \"The word »and« appears in the sentence you entered!\""
-msgstr ""
-
-#. JK?i
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"tit\n"
-"help.text"
-msgid "Get Statement [Runtime]"
-msgstr ""
-
-#. i`uQ
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"bm_id3154927\n"
-"help.text"
-msgid "<bookmark_value>Get statement</bookmark_value>"
-msgstr "<bookmark_value>LSet განაცხადი</bookmark_value>"
-
-#. KV)w
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"hd_id3154927\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020201.xhp\">Get Statement [Runtime]</link>"
-msgstr ""
-
-#. cd~k
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"par_id3145069\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 ""
-
-#. t!%G
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"par_id3154346\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 ""
-
-#. 3-rr
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"hd_id3150358\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. \/Sn
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"par_id3150792\n"
-"5\n"
-"help.text"
-msgid "Get [#] FileNumber As Integer, [Position], Variable"
-msgstr ""
-
-#. cY8U
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"hd_id3154138\n"
-"6\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. Z5?[
-#: 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 ""
-
-#. j8.;
-#: 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 ""
-
-#. ;F6l
-#: 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 ""
-
-#. f:k+
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"par_id3147319\n"
-"10\n"
-"help.text"
-msgid "If <emph>Position</emph> is omitted, the current position or the current data record of the file is used."
-msgstr ""
-
-#. $fGn
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"par_id3149484\n"
-"11\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 ""
-
-#. p.RQ
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"hd_id3153144\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. S0wR
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"par_id3155307\n"
-"15\n"
-"help.text"
-msgid "Dim sText As Variant ' Must be a variant"
-msgstr ""
-
-#. a,8B
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"par_id3149411\n"
-"21\n"
-"help.text"
-msgid "Seek #iNumber,1 ' Position at beginning"
-msgstr ""
-
-#. TgS]
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"par_id3153158\n"
-"22\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr ""
-
-#. p:M5
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"par_id3148457\n"
-"23\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr ""
-
-#. Faya
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"par_id3150715\n"
-"24\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr ""
-
-#. lUtS
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"par_id3155938\n"
-"33\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr ""
-
-#. ?JFT
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"par_id3146916\n"
-"36\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr ""
-
-#. g+=;
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsNumeric Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. R?s[
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"bm_id3145136\n"
-"help.text"
-msgid "<bookmark_value>IsNumeric function</bookmark_value>"
-msgstr "<bookmark_value>IsError ფუნქცია</bookmark_value>"
-
-#. Y]94
-#: 03102700.xhp
-#, fuzzy
-msgctxt ""
-"03102700.xhp\n"
-"hd_id3145136\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. O1F$
-#: 03102700.xhp
-msgctxt ""
-"03102700.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 ""
-
-#. LVo7
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"hd_id3149415\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. @Op;
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"par_id3150771\n"
-"4\n"
-"help.text"
-msgid "IsNumeric (Var)"
-msgstr ""
-
-#. kEIG
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"hd_id3148685\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. JlFL
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"par_id3148944\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr ""
-
-#. iDC!
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"hd_id3148947\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. 7yHn
-#: 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>ტექსტი:</emph> თქვენთვის რედაქტირებისთვის სასურველი ნებისმიერი ტექსტური გამოსახულება."
-
-#. LS|e
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"hd_id3149656\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. TotR
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"par_id3147230\n"
-"13\n"
-"help.text"
-msgid "Print IsNumeric(vVar) ' Returns False"
-msgstr ""
-
-#. PUPx
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"par_id3154910\n"
-"15\n"
-"help.text"
-msgid "Print IsNumeric(vVar) ' Returns True"
-msgstr ""
-
-#. lA#2
-#: 03104100.xhp
-msgctxt ""
-"03104100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Optional (in Function Statement) [Runtime]"
-msgstr ""
-
-#. 7,`h
-#: 03104100.xhp
-msgctxt ""
-"03104100.xhp\n"
-"bm_id3149205\n"
-"help.text"
-msgid "<bookmark_value>Optional function</bookmark_value>"
-msgstr "<bookmark_value>Va lფუნქცია</bookmark_value>"
-
-#. _R~y
-#: 03104100.xhp
-#, fuzzy
-msgctxt ""
-"03104100.xhp\n"
-"hd_id3149205\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (in Function Statement) [Runtime]\">Optional (in Function Statement) [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. gSXH
-#: 03104100.xhp
-msgctxt ""
-"03104100.xhp\n"
-"par_id3143267\n"
-"2\n"
-"help.text"
-msgid "Allows you to define parameters that are passed to a function as optional."
-msgstr ""
-
-#. xRY!
-#: 03104100.xhp
-msgctxt ""
-"03104100.xhp\n"
-"par_id3155419\n"
-"3\n"
-"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link>"
-msgstr ""
-
-#. Cp,z
-#: 03104100.xhp
-msgctxt ""
-"03104100.xhp\n"
-"hd_id3153824\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 4L:n
-#: 03104100.xhp
-msgctxt ""
-"03104100.xhp\n"
-"par_id3159157\n"
-"5\n"
-"help.text"
-msgid "Function MyFunction(Text1 As String, Optional Arg2, Optional Arg3)"
-msgstr ""
-
-#. Rfn#
-#: 03104100.xhp
-msgctxt ""
-"03104100.xhp\n"
-"hd_id3145610\n"
-"7\n"
-"help.text"
-msgid "Examples:"
-msgstr ""
-
-#. ..^6
-#: 03104100.xhp
-msgctxt ""
-"03104100.xhp\n"
-"par_id3154347\n"
-"8\n"
-"help.text"
-msgid "Result = MyFunction(\"Here\", 1, \"There\") ' all arguments are passed."
-msgstr ""
-
-#. r;*j
-#: 03104100.xhp
-msgctxt ""
-"03104100.xhp\n"
-"par_id3146795\n"
-"9\n"
-"help.text"
-msgid "Result = MyFunction(\"Test\", ,1) ' second argument is missing."
-msgstr ""
-
-#. fDzi
-#: 03104100.xhp
-msgctxt ""
-"03104100.xhp\n"
-"par_id3153897\n"
-"10\n"
-"help.text"
-msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
-msgstr "See <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"მაგალითები\">მაგალითები</link>."
-
-#. r+d.
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"tit\n"
-"help.text"
-msgid "Function Statement [Runtime]"
-msgstr ""
-
-#. 6h`:
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"bm_id3153346\n"
-"help.text"
-msgid "<bookmark_value>Function statement</bookmark_value>"
-msgstr "<bookmark_value>LSet განაცხადი</bookmark_value>"
-
-#. WEWc
-#: 03090406.xhp
-#, fuzzy
-msgctxt ""
-"03090406.xhp\n"
-"hd_id3153346\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. -\.w
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3159158\n"
-"2\n"
-"help.text"
-msgid "Defines a subroutine that can be used as an expression to determine a return type."
-msgstr ""
-
-#. sQfJ
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"hd_id3145316\n"
-"3\n"
-"help.text"
-msgid "Syntax"
-msgstr ""
-
-#. }lgv
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3148944\n"
-"4\n"
-"help.text"
-msgid "see Parameter"
-msgstr ""
-
-#. 5AX9
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"hd_id3154760\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. )mJ`
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3156344\n"
-"6\n"
-"help.text"
-msgid "Syntax"
-msgstr ""
-
-#. iNo=
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3149457\n"
-"7\n"
-"help.text"
-msgid "Function Name[(VarName1 [As Type][, VarName2 [As Type][,...]]]) [As Type]"
-msgstr ""
-
-#. m/;+
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3153360\n"
-"8\n"
-"help.text"
-msgid "statement block"
-msgstr ""
-
-#. DN+6
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3148797\n"
-"9\n"
-"help.text"
-msgid "[Exit Function]"
-msgstr ""
-
-#. P~Ov
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3145419\n"
-"10\n"
-"help.text"
-msgid "statement block"
-msgstr ""
-
-#. {,I1
-#: 03090406.xhp
-#, fuzzy
-msgctxt ""
-"03090406.xhp\n"
-"par_id3150449\n"
-"11\n"
-"help.text"
-msgid "End Function"
-msgstr "End function"
-
-#. l;=+
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3156281\n"
-"12\n"
-"help.text"
-msgid "Parameter"
-msgstr ""
-
-#. 2@TF
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3153193\n"
-"13\n"
-"help.text"
-msgid "<emph>Name:</emph> Name of the subroutine to contain the value returned by the function."
-msgstr ""
-
-#. *gsc
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3147229\n"
-"14\n"
-"help.text"
-msgid "<emph>VarName:</emph> Parameter to be passed to the subroutine."
-msgstr ""
-
-#. 11}S
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3147287\n"
-"15\n"
-"help.text"
-msgid "<emph>Type:</emph> Type-declaration keyword."
-msgstr ""
-
-#. |iGg
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"hd_id3163710\n"
-"16\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. nY^,
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3152939\n"
-"21\n"
-"help.text"
-msgid "For siStep = 0 To 10 ' Fill array with test data"
-msgstr ""
-
-#. aDL,
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3154943\n"
-"32\n"
-"help.text"
-msgid "' Linsearch searches a TextArray:sList() for a TextEntry:"
-msgstr ""
-
-#. 6!gp
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3155601\n"
-"33\n"
-"help.text"
-msgid "' Return value Is the index of the entry Or 0 (Null)"
-msgstr ""
-
-#. )^w`
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3153707\n"
-"36\n"
-"help.text"
-msgid "Exit For ' sItem found"
-msgstr ""
-
-#. =n17
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Using Procedures and Functions"
-msgstr ""
-
-#. 5oa+
-#: 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 ""
-
-#. (=cO
-#: 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 ""
-
-#. 7)iw
-#: 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 ""
-
-#. i#jY
-#: 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 ""
-
-#. 2EW{
-#: 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 ""
-
-#. \9ZA
-#: 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 ""
-
-#. G\H[
-#: 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 ""
-
-#. ^y!B
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"hd_id3153770\n"
-"26\n"
-"help.text"
-msgid "Passing Variables to Procedures (SUB) and Functions (FUNCTION)"
-msgstr ""
-
-#. NIkN
-#: 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 ""
-
-#. OY#E
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3151114\n"
-"29\n"
-"help.text"
-msgid "Program code"
-msgstr ""
-
-#. RByu
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3152577\n"
-"31\n"
-"help.text"
-msgid "The SUB is called using the following syntax:"
-msgstr ""
-
-#. IR-+
-#: 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 ""
-
-#. 0.`0
-#: 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 ""
-
-#. Ke;$
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3156284\n"
-"36\n"
-"help.text"
-msgid "Program code"
-msgstr ""
-
-#. xR,,
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3145799\n"
-"37\n"
-"help.text"
-msgid "FunctionName=Result"
-msgstr ""
-
-#. .9@W
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3153839\n"
-"39\n"
-"help.text"
-msgid "The FUNCTION is called using the following syntax:"
-msgstr ""
-
-#. RQ5O
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3146914\n"
-"40\n"
-"help.text"
-msgid "Variable=FunctionName(Parameter1, Parameter2,...)"
-msgstr ""
-
-#. C(Df
-#: 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 ""
-
-#. _3.^
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"hd_id3156276\n"
-"45\n"
-"help.text"
-msgid "Passing Variables by Value or Reference"
-msgstr ""
-
-#. rOQM
-#: 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 ""
-
-#. 6K%@
-#: 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 ""
-
-#. ?Q(`
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3150042\n"
-"54\n"
-"help.text"
-msgid "Result = Function(<emph>ByVal</emph> Parameter)"
-msgstr ""
-
-#. SO_t
-#: 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 ""
-
-#. {u7p
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"hd_id3150982\n"
-"57\n"
-"help.text"
-msgid "Scope of Variables"
-msgstr ""
-
-#. +J+@
-#: 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 ""
-
-#. LQ}r
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"hd_id3154186\n"
-"59\n"
-"help.text"
-msgid "Declaring Variables Outside a SUB or FUNCTION"
-msgstr ""
-
-#. ZFq^
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3150208\n"
-"111\n"
-"help.text"
-msgid "Global VarName As TYPENAME"
-msgstr ""
-
-#. ;(bT
-#: 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 ""
-
-#. dEGL
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3153198\n"
-"60\n"
-"help.text"
-msgid "Public VarName As TYPENAME"
-msgstr ""
-
-#. V$,l
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3150088\n"
-"61\n"
-"help.text"
-msgid "The variable is valid in all modules."
-msgstr ""
-
-#. OH?$
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3158212\n"
-"62\n"
-"help.text"
-msgid "Private VarName As TYPENAME"
-msgstr ""
-
-#. F8:=
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3152994\n"
-"63\n"
-"help.text"
-msgid "The variable is only valid in this module."
-msgstr ""
-
-#. MIk6
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3150368\n"
-"65\n"
-"help.text"
-msgid "The variable is only valid in this module."
-msgstr ""
-
-#. RI*B
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"hd_id5097506\n"
-"help.text"
-msgid "Example for private variables"
-msgstr ""
-
-#. Fd!a
-#: 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 ""
-
-#. }9@^
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id9475997\n"
-"help.text"
-msgid "myText = \"Hello\""
-msgstr ""
-
-#. qs7Y
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id6933500\n"
-"help.text"
-msgid "Print \"In module1 : \", myText"
-msgstr ""
-
-#. aMK1
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id4104129\n"
-"help.text"
-msgid "' Now returns empty string"
-msgstr ""
-
-#. kh\H
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id7906125\n"
-"help.text"
-msgid "' (or rises error for Option Explicit)"
-msgstr ""
-
-#. l-os
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id8055970\n"
-"help.text"
-msgid "Print \"Now in module2 : \", myText"
-msgstr ""
-
-#. lMXf
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"hd_id3154368\n"
-"66\n"
-"help.text"
-msgid "Saving Variable Content after Exiting a SUB or FUNCTION"
-msgstr ""
-
-#. Ef]r
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"par_id3156288\n"
-"67\n"
-"help.text"
-msgid "Static VarName As TYPENAME"
-msgstr ""
-
-#. R;6K
-#: 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 ""
-
-#. M`KI
-#: 01020300.xhp
-msgctxt ""
-"01020300.xhp\n"
-"hd_id3155809\n"
-"41\n"
-"help.text"
-msgid "Specifying the Return Value Type of a FUNCTION"
-msgstr ""
-
-#. y5Js
-#: 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 ""
-
-#. )CB@
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Eqv Operator [Runtime]"
-msgstr ""
-
-#. \N`.
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"bm_id3156344\n"
-"help.text"
-msgid "<bookmark_value>Eqv operator (logical)</bookmark_value>"
-msgstr ""
-
-#. (DB0
-#: 03060200.xhp
-#, fuzzy
-msgctxt ""
-"03060200.xhp\n"
-"hd_id3156344\n"
-"1\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. @3r.
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"par_id3149656\n"
-"2\n"
-"help.text"
-msgid "Calculates the logical equivalence of two expressions."
-msgstr ""
-
-#. 0Btc
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"hd_id3154367\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 7~2D
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"par_id3154910\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 Eqv Expression2"
-msgstr ""
-
-#. $xA@
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"hd_id3151043\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. @Y(7
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"par_id3150869\n"
-"6\n"
-"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the comparison."
-msgstr ""
-
-#. _;Bv
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"par_id3150448\n"
-"7\n"
-"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to compare."
-msgstr "<emph>Expression1, Expression2:</emph> ნებისმიერი ციფრული სიდიდეები ან სტრიქონები, რომლებიც გინდათ შეადაროთ."
-
-#. nU\5
-#: 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 ""
-
-#. ?p6X
-#: 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 ""
-
-#. i)V#
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"hd_id3159154\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. N]JL
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"par_id3152462\n"
-"15\n"
-"help.text"
-msgid "vOut = A > B Eqv B > C ' returns -1"
-msgstr ""
-
-#. =k,r
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"par_id3153191\n"
-"16\n"
-"help.text"
-msgid "vOut = B > A Eqv B > C ' returns 0"
-msgstr ""
-
-#. `esk
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"par_id3145799\n"
-"17\n"
-"help.text"
-msgid "vOut = A > B Eqv B > D ' returns 0"
-msgstr ""
-
-#. @a{/
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"par_id3149412\n"
-"18\n"
-"help.text"
-msgid "vOut = (B > D Eqv B > A) ' returns -1"
-msgstr ""
-
-#. 0:-6
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"par_id3149959\n"
-"19\n"
-"help.text"
-msgid "vOut = B Eqv A ' returns -3"
-msgstr ""
-
-#. k~B,
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"tit\n"
-"help.text"
-msgid "MsgBox Statement [Runtime]"
-msgstr ""
-
-#. ;(e*
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"bm_id1807916\n"
-"help.text"
-msgid "<bookmark_value>MsgBox statement</bookmark_value>"
-msgstr "<bookmark_value>LSet განაცხადი</bookmark_value>"
-
-#. `0aV
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"hd_id3154927\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03010101.xhp\">MsgBox Statement [Runtime]</link>"
-msgstr ""
-
-#. wv9n
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3148947\n"
-"2\n"
-"help.text"
-msgid "Displays a dialog box containing a message."
-msgstr ""
-
-#. OBID
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"hd_id3153897\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 7S\;
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3148664\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 ""
-
-#. RLb;
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"hd_id3153361\n"
-"5\n"
-"help.text"
-msgid "Parameter:"
-msgstr ""
-
-#. rlZ$
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3148798\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 ""
-
-#. lPTd
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3150769\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 ""
-
-#. Ce7^
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3147228\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 ""
-
-#. yRso
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3161832\n"
-"9\n"
-"help.text"
-msgid "0 : Display OK button only."
-msgstr ""
-
-#. Cut9
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3153726\n"
-"10\n"
-"help.text"
-msgid "1 : Display OK and Cancel buttons."
-msgstr ""
-
-#. Y50i
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3149665\n"
-"11\n"
-"help.text"
-msgid "2 : Display Abort, Retry, and Ignore buttons."
-msgstr ""
-
-#. eVZ9
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3147318\n"
-"12\n"
-"help.text"
-msgid "3 : Display Yes, No and Cancel buttons."
-msgstr ""
-
-#. BpiU
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3155412\n"
-"13\n"
-"help.text"
-msgid "4 : Display Yes and No buttons."
-msgstr ""
-
-#. i(qv
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3146119\n"
-"14\n"
-"help.text"
-msgid "5 : Display Retry and Cancel buttons."
-msgstr ""
-
-#. 4_Sg
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3159155\n"
-"15\n"
-"help.text"
-msgid "16 : Add the Stop icon to the dialog."
-msgstr ""
-
-#. X@1V
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3145366\n"
-"16\n"
-"help.text"
-msgid "32 : Add the Question icon to the dialog."
-msgstr ""
-
-#. Oj2{
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3147350\n"
-"17\n"
-"help.text"
-msgid "48 : Add the Exclamation icon to the dialog."
-msgstr ""
-
-#. Y4mh
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3149960\n"
-"18\n"
-"help.text"
-msgid "64 : Add the Information icon to the dialog."
-msgstr ""
-
-#. y0y%
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3154944\n"
-"19\n"
-"help.text"
-msgid "128 : First button in the dialog as default button."
-msgstr ""
-
-#. FXFG
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3155417\n"
-"20\n"
-"help.text"
-msgid "256 : Second button in the dialog as default button."
-msgstr ""
-
-#. ZFnD
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3153878\n"
-"21\n"
-"help.text"
-msgid "512 : Third button in the dialog as default button."
-msgstr ""
-
-#. :)MV
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"hd_id3150715\n"
-"22\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. )DA*
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3150327\n"
-"24\n"
-"help.text"
-msgid "Const sText1 = \"An unexpected error occurred.\""
-msgstr ""
-
-#. NC8q
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3146912\n"
-"25\n"
-"help.text"
-msgid "Const sText2 = \"The program execution will continue, however.\""
-msgstr ""
-
-#. Okn.
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3154757\n"
-"26\n"
-"help.text"
-msgid "Const sText3 = \"Error\""
-msgstr ""
-
-#. Y);O
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"tit\n"
-"help.text"
-msgid "Hex Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. -C83
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"bm_id3150616\n"
-"help.text"
-msgid "<bookmark_value>Hex function</bookmark_value>"
-msgstr "<bookmark_value>Len ფუნქცია</bookmark_value>"
-
-#. 47m7
-#: 03080801.xhp
-#, fuzzy
-msgctxt ""
-"03080801.xhp\n"
-"hd_id3150616\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. [Uo(
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"par_id3145136\n"
-"2\n"
-"help.text"
-msgid "Returns a string that represents the hexadecimal value of a number."
-msgstr ""
-
-#. WNYC
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"hd_id3147573\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. `+{l
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"par_id3150771\n"
-"4\n"
-"help.text"
-msgid "Hex (Number)"
-msgstr ""
-
-#. lGP=
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"hd_id3147530\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. @0k^
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"par_id3159414\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "სტრიქონები"
-
-#. sn@)
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"hd_id3156344\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. CNx*
-#: 03080801.xhp
-#, fuzzy
-msgctxt ""
-"03080801.xhp\n"
-"par_id3148947\n"
-"8\n"
-"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to convert to a hexadecimal number."
-msgstr "<emph>ტექსტი:</emph> თქვენთვის რედაქტირებისთვის სასურველი ნებისმიერი ტექსტური გამოსახულება."
-
-#. hvZO
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"hd_id3154365\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. -;|Q
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"par_id3156214\n"
-"30\n"
-"help.text"
-msgid "' uses BasicFormulas in $[officename] Calc"
-msgstr ""
-
-#. D~!*
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"par_id3149262\n"
-"20\n"
-"help.text"
-msgid "' Returns a long integer from a hexadecimal value."
-msgstr ""
-
-#. #\]H
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"par_id3147215\n"
-"25\n"
-"help.text"
-msgid "' Calculates a hexadecimal value in integer."
-msgstr ""
-
-#. lIC[
-#: 03080800.xhp
-msgctxt ""
-"03080800.xhp\n"
-"tit\n"
-"help.text"
-msgid "Converting Numbers"
-msgstr ""
-
-#. mNY4
-#: 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 ""
-
-#. ^to2
-#: 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 ""
-
-#. ip+X
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"tit\n"
-"help.text"
-msgid "InStr Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. 2;*9
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"bm_id3155934\n"
-"help.text"
-msgid "<bookmark_value>InStr function</bookmark_value>"
-msgstr "<bookmark_value>InStr ფუნქცია</bookmark_value>"
-
-#. tJdq
-#: 03120401.xhp
-#, fuzzy
-msgctxt ""
-"03120401.xhp\n"
-"hd_id3155934\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. |1g#
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3153990\n"
-"2\n"
-"help.text"
-msgid "Returns the position of a string within another string."
-msgstr "აბრუნებს სტრინგის პოზიციას სხვა სტრინგში."
-
-#. oXA@
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3147303\n"
-"3\n"
-"help.text"
-msgid "The Instr function returns the position at which the match was found. If the string was not found, the function returns 0."
-msgstr "Instr ფუნქცია აბრუნებს იმ პოზიციას დამთხვევის პოზიციას. თუ სტრინგი ვერ მოიძებნა, მაშინ ფუნქცია აბრუნებს 0-ს."
-
-#. e@O(
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"hd_id3145090\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. KIKW
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3146957\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])"
-
-#. gnRP
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"hd_id3148538\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. m!Y9
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3149763\n"
-"7\n"
-"help.text"
-msgid "Integer"
-msgstr ""
-
-#. pR:[
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"hd_id3148473\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. A=a[
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3153126\n"
-"9\n"
-"help.text"
-msgid "<emph>Start: </emph>A numeric expression that marks the position in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the first character of the string. The maximum allowed value is 65535."
-msgstr "<emph>Start: </emph>რიცხვითი გამოსახულება, რომელიც ნიშნავს პოზიციას სტრინგში როდესაც იწყება კონკრეტული ქვესტრინგის ძებნა. თუ თქვენ გამოტოვებთ ამ პარამეტრს, ძებნა დაიწყება სტრინგის პირველი ასო-ნიშნიდან. მაქსიმალური დასაშვები მნიშვნელობა არის 65535."
-
-#. T]Xn
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3145609\n"
-"10\n"
-"help.text"
-msgid "<emph>Text1:</emph> The string expression that you want to search."
-msgstr "<emph>Text1:</emph> სტრინგის გამოსახულება, რომელიც გსურთ ეძებოთ."
-
-#. ~j$|
-#: 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> სტრინგის გამოსახულება, რომლის ძებნაც გსურთ."
-
-#. s4-(
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3154758\n"
-"12\n"
-"help.text"
-msgid "<emph>Compare:</emph> Optional numeric expression that defines the type of comparison. The value of this parameter can be 0 or 1. The default value of 1 specifies a text comparison that is not case-sensitive. The value of 0 specifies a binary comparison that is case-sensitive."
-msgstr "<emph>Compare:</emph>არჩევითი რიცხვითი გამოსახულება, რომელიც განსაზღვრავს შედარების ტიპს. ამ პარამეტრის მნიშვნელობა შეიძლება იყოს 0 ან 1. საწყისი მნიშვნელობა არის 1. რომელიც განსახვრავს რომ ტექსტის შედარება არ განასხვავებს დიდ და პატარა ასოებს. მნიშვნელობა 0 მიუთითებს ბინარულ შედარებას, რომელიც განასაზღვრებს დიდ და პატარა ასოებს."
-
-#. 4W,W
-#: 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 "თუ პირველი დაბრუნების პარამეტრი გამოტოვებულია, გაშვების შეცდომის თავიდან ასაცილებლად არ დააყენოთ შედარების პარამეტრი."
-
-#. b.7S
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"hd_id3154366\n"
-"14\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. s)0B
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3144760\n"
-"19\n"
-"help.text"
-msgid "sInput = \"Office\""
-msgstr "sInput = \"Office\""
-
-#. mcc%
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3154125\n"
-"20\n"
-"help.text"
-msgid "iPos = Instr(sInput,\"c\")"
-msgstr "iPos = Instr(sInput,\"c\")"
-
-#. UonZ
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefDbl Statement [Runtime]"
-msgstr ""
-
-#. +N)G
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"bm_id3147242\n"
-"help.text"
-msgid "<bookmark_value>DefDbl statement</bookmark_value>"
-msgstr "<bookmark_value>DefCur განცხადება</bookmark_value>"
-
-#. Jiox
-#: 03101400.xhp
-#, fuzzy
-msgctxt ""
-"03101400.xhp\n"
-"hd_id3147242\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. .}qu
-#: 03101400.xhp
-msgctxt ""
-"03101400.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 ""
-
-#. Hm9W
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"hd_id3155420\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. jIf=
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"par_id3147530\n"
-"4\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr ""
-
-#. Cq/T
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"hd_id3145069\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. iG|\
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"par_id3147560\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 ""
-
-#. 787V
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"par_id3150791\n"
-"7\n"
-"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr ""
-
-#. Rk7,
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"par_id3151210\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr ""
-
-#. H:HP
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"par_id3154123\n"
-"9\n"
-"help.text"
-msgid "<emph>DefDbl:</emph> Double"
-msgstr ""
-
-#. Sxnk
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"hd_id3153192\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. B$o|
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"par_id3156281\n"
-"12\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr ""
-
-#. 9n*E
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"par_id3153144\n"
-"22\n"
-"help.text"
-msgid "dValue=1.23e43 ' dValue is an implicit double variable type"
-msgstr ""
-
-#. EjV$
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"tit\n"
-"help.text"
-msgid "Green Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. J|~@
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"bm_id3148947\n"
-"help.text"
-msgid "<bookmark_value>Green function</bookmark_value>"
-msgstr "<bookmark_value>Len ფუნქცია</bookmark_value>"
-
-#. ~n48
-#: 03010302.xhp
-#, fuzzy
-msgctxt ""
-"03010302.xhp\n"
-"hd_id3148947\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. }kMo
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3153361\n"
-"2\n"
-"help.text"
-msgid "Returns the Green component of the given color code."
-msgstr ""
-
-#. 2,-h
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"hd_id3154140\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. ~mct
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3153969\n"
-"4\n"
-"help.text"
-msgid "Green (Color As Long)"
-msgstr ""
-
-#. G8:w
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"hd_id3154124\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. s,4~
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3153194\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr ""
-
-#. U57e
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"hd_id3154909\n"
-"7\n"
-"help.text"
-msgid "Parameter:"
-msgstr ""
-
-#. EghD
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3153770\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 ""
-
-#. ~)l9
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"hd_id3149664\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 2~|\
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3151117\n"
-"13\n"
-"help.text"
-msgid "MsgBox \"The color \" & lVar & \" contains the components:\" & Chr(13) &_"
-msgstr ""
-
-#. 2*U[
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3153951\n"
-"14\n"
-"help.text"
-msgid "\"red = \" & red(lVar) & Chr(13)&_"
-msgstr ""
-
-#. dXp]
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3152462\n"
-"15\n"
-"help.text"
-msgid "\"green = \" & green(lVar) & Chr(13)&_"
-msgstr ""
-
-#. Rv\q
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3154730\n"
-"16\n"
-"help.text"
-msgid "\"blue = \" & blue(lVar) & Chr(13) , 64,\"colors\""
-msgstr ""
-
-#. Uh,(
-#: 01030000.xhp
-msgctxt ""
-"01030000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Integrated Development Environment (IDE)"
-msgstr ""
-
-#. AX(b
-#: 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 ""
-
-#. ?^Yq
-#: 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 ""
-
-#. |}k/
-#: 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 ""
-
-#. K+tk
-#: 03010100.xhp
-msgctxt ""
-"03010100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Display Functions"
-msgstr ""
-
-#. PNpY
-#: 03010100.xhp
-msgctxt ""
-"03010100.xhp\n"
-"hd_id3151384\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03010100.xhp\" name=\"Display Functions\">Display Functions</link>"
-msgstr ""
-
-#. tn?H
-#: 03010100.xhp
-msgctxt ""
-"03010100.xhp\n"
-"par_id3149346\n"
-"2\n"
-"help.text"
-msgid "This section describes Runtime functions used to output information to the screen display."
-msgstr ""
-
-#. BidJ
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsError Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. {::)
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"bm_id4954680\n"
-"help.text"
-msgid "<bookmark_value>IsError function</bookmark_value>"
-msgstr "<bookmark_value>IsError ფუნქცია</bookmark_value>"
-
-#. BnwH
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"par_idN1054E\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03102450.xhp\">IsError Function [Runtime]</link>"
-msgstr ""
-
-#. +e~?
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"par_idN1055E\n"
-"help.text"
-msgid "Tests if a variable contains an error value."
-msgstr "ამოწმებს ცვლადს შეცდომის შემცველობაზე."
-
-#. ME?Z
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"par_idN10561\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. K.1M
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"par_idN10565\n"
-"help.text"
-msgid "IsError (Var)"
-msgstr "IsError (Var)"
-
-#. X`?w
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. cyRK
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"par_idN1056C\n"
-"help.text"
-msgid "Bool"
-msgstr ""
-
-#. _TYE
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"par_idN1056F\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. //kV
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"par_idN10573\n"
-"help.text"
-msgid "<emph>Var:</emph> Any variable that you want to test. If the variable contains an error value, the function returns True, otherwise the function returns False."
-msgstr "<emph>Var:</emph> ნებისმიერი გამოსაცდელი ცვლადი. თუ ცვლადი შეიცავს მცდა მნიშვნელობას, ფუნქცია ასბრუნებს True-ს, წინააღმდეგ შემთხვევაში ფუქნცია აბრუნებს False-ს."
-
-#. .kKY
-#: 03131000.xhp
-msgctxt ""
-"03131000.xhp\n"
-"tit\n"
-"help.text"
-msgid "GetSolarVersion Function [Runtime]"
-msgstr ""
-
-#. L4ST
-#: 03131000.xhp
-msgctxt ""
-"03131000.xhp\n"
-"bm_id3157898\n"
-"help.text"
-msgid "<bookmark_value>GetSolarVersion function</bookmark_value>"
-msgstr "<bookmark_value>GetSolarVersion ფუნქცია</bookmark_value>"
-
-#. ~;jw
-#: 03131000.xhp
-#, fuzzy
-msgctxt ""
-"03131000.xhp\n"
-"hd_id3157898\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. N2or
-#: 03131000.xhp
-msgctxt ""
-"03131000.xhp\n"
-"par_id3152801\n"
-"2\n"
-"help.text"
-msgid "Returns the internal number of the current $[officename] version."
-msgstr "აბრუნებს მიმდინარე $[officename] ვერსიის შიდა ნომერს."
-
-#. Ug,8
-#: 03131000.xhp
-msgctxt ""
-"03131000.xhp\n"
-"hd_id3153311\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 56_!
-#: 03131000.xhp
-msgctxt ""
-"03131000.xhp\n"
-"par_id3155388\n"
-"4\n"
-"help.text"
-msgid "s = GetSolarVersion"
-msgstr "s = GetSolarVersion"
-
-#. sEs]
-#: 03131000.xhp
-msgctxt ""
-"03131000.xhp\n"
-"hd_id3149514\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. B5E$
-#: 03131000.xhp
-msgctxt ""
-"03131000.xhp\n"
-"par_id3148685\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "სტრიქონები"
-
-#. +b;P
-#: 03131000.xhp
-msgctxt ""
-"03131000.xhp\n"
-"hd_id3143270\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 5Xo!
-#: 03131000.xhp
-msgctxt ""
-"03131000.xhp\n"
-"par_id3148947\n"
-"11\n"
-"help.text"
-msgid "MsgBox sSep,64,\"Version number of the solar technology\""
-msgstr "MsgBox sSep,64,\"solar technology-ს ვერსიის ნომერი\""
-
-#. Ssl:
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"tit\n"
-"help.text"
-msgid "CreateUnoListener Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. @9a~
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"bm_id3155150\n"
-"help.text"
-msgid "<bookmark_value>CreateUnoListener function</bookmark_value>"
-msgstr "<bookmark_value>CreateUnoListener ფუნქცია</bookmark_value>"
-
-#. ;gDF
-#: 03132000.xhp
-#, fuzzy
-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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. +E:p
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3149346\n"
-"52\n"
-"help.text"
-msgid "Creates a Listener instance."
-msgstr "ქმნის მსმენელის ნიმუშს."
-
-#. G!w$
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3153681\n"
-"51\n"
-"help.text"
-msgid "Many Uno interfaces let you register listeners on a special listener interface. This allows you to listen for specific events and call up the appropriate listener method. The CreateUnoListener function waits for the called listener interface and then passes the interface an object that the interface supports. This object is then passed to the method to register the listener."
-msgstr "მრავალი Uno ინტერფეისი საშუალებას გაძლევთ დაარეგისტრიროთ მსმენელები სპეციალურ სასმენ ინტერფეისზე. ეს საშუალებას გაძლევთ მოუსმინოთ კონკრეტულ მოვლენებს და გამოიძახოთ საჭირო მსმენელის მეთოდი. CreateUnoListener ფუნქცია უცდის დარეკილ მსმენელის ინტერფეისს და შემდეგ გადასცემს ინტერფეისს ობიექტს, რომელსაც აქვს მხარდაჭერა. ეს ობიექტი შემდეგ გადაეცემა მეთოდეს რათა დაარეგისტრიროს მსმენელი."
-
-#. ]wcM
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"hd_id3148685\n"
-"50\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. PsGA
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3143228\n"
-"49\n"
-"help.text"
-msgid "oListener = CreateUnoListener( Prefixname, ListenerInterfaceName )"
-msgstr "oListener = CreateUnoListener( Prefixname, ListenerInterfaceName )"
-
-#. q!*Z
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"hd_id3147574\n"
-"48\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. Eo29
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3154046\n"
-"47\n"
-"help.text"
-msgid "The following example is based on a Basic library object."
-msgstr "შემდეგი მაგალითი დამყარებულია BASIC ბიბლიოთეკის ობიექტზე"
-
-#. I06J
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3149294\n"
-"44\n"
-"help.text"
-msgid "The CreateUnoListener method requires two parameters. The first is a prefix and is explained in detail below. The second parameter is the fully qualified name of the Listener interface that you want to use."
-msgstr "CreateUnoListener მეთოდი მოითხოვს ორ პარამეტრს. პირველი არის თავსართი, რომელიც ახსნილია ქვემოთ. მეორე პარამეტრი არის იმ სრული მსმენელის ინტერფეისის სრული სახელი, რომლის გამოყენებაც გსურთ."
-
-#. %f3A
-#: 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 "მსმენელი უნდა დაემატოს მაუწყებელ ობიექტს. ეს კეთდება მსმენელის დასამატებლად შესაბამისი მეთოდის გამოძახებით, ეს მეთოდები ყოველთვის მიყვებიან შაბლონს \"addFooListener\", სადაც \"Foo\" არის მსმენელი იტნერფეისის ტიპი 'X'-ის გარეშე. ამ მაგალითში, addContainerListener მეთოდი გამოიძახება XContainerListener -ის დასარეგისტრირებლად:"
-
-#. oUXC
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3154940\n"
-"41\n"
-"help.text"
-msgid "oLib = BasicLibraries.Library1 ' Library1 must exist!"
-msgstr "oLib = BasicLibraries.Library1 ' Library1 უნდა არსებობდეს!"
-
-#. ySJ4
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3150359\n"
-"40\n"
-"help.text"
-msgid "oLib.addContainerListener( oListener ) ' Register the listener"
-msgstr "oLib.addContainerListener( oListener ) ' მსმენელის რეგისტრაცია"
-
-#. ?@;g
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3154138\n"
-"39\n"
-"help.text"
-msgid "The Listener is now registered. When an event occurs, the corresponding Listener calls the appropriate method from the com.sun.star.container.XContainerListener Interface."
-msgstr "მსმენელი დარეგისტრირებულია. როდესაც მოვლენა მოდება, შესაბამისი მსმენელი გამოიძახებს შესაბამის მეთოდს com.sun.star.container.XContainerListener ინტერფეისიდან."
-
-#. hgcp
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3148922\n"
-"38\n"
-"help.text"
-msgid "The prefix calls registered Listeners from Basic-subroutines. The Basic run-time system searches for Basic-subroutines or functions that have the name \"PrefixListenerMethode\" and calls them when found. Otherwise, a run-time error occurs."
-msgstr "თავსართი იძახებს დარეგისტრირებულ მსმენელებს Basic-ის ქვე-როუტინებიდან. Basic სისტემა ეძებს Basic-ის ქვე-როუტინებს ან ფუნქციებს, რომლებსაც აქვთ სახელი \"PrefixListenerMethode\" და იძახებს მათ პოვნის შემთხვევაში. წინააღმდეგ შემთხვევაში მოხდება შეცდომა გაშვებისას."
-
-#. W8kb
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3150768\n"
-"37\n"
-"help.text"
-msgid "In this example, the Listener-Interface uses the following methods:"
-msgstr "ამ მაგალითში Listener-Interface-ი იყენებს შემდეგ მეთოდებს:"
-
-#. W+si
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3151176\n"
-"36\n"
-"help.text"
-msgid "disposing:"
-msgstr "განლაგება:"
-
-#. ee=p
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3145173\n"
-"35\n"
-"help.text"
-msgid "Listener base interface (com.sun.star.lang.XEventListener): base interface for all Listener Interfaces"
-msgstr ""
-
-#. /=Kb
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3156212\n"
-"34\n"
-"help.text"
-msgid "elementInserted:"
-msgstr "elementInserted:"
-
-#. ]]jg
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3159254\n"
-"33\n"
-"help.text"
-msgid "Method of the com.sun.star.container.XContainerListener interface"
-msgstr ""
-
-#. i%Oj
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3147287\n"
-"32\n"
-"help.text"
-msgid "elementRemoved:"
-msgstr "elementRemoved:"
-
-#. *Mgd
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3146119\n"
-"31\n"
-"help.text"
-msgid "Method of the com.sun.star.container.XContainerListener interface"
-msgstr ""
-
-#. xG15
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3153951\n"
-"30\n"
-"help.text"
-msgid "elementReplaced:"
-msgstr "elementReplaced:"
-
-#. idVE
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3154013\n"
-"29\n"
-"help.text"
-msgid "Method of the com.sun.star.container.XContainerListener interface"
-msgstr ""
-
-#. %.A!
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3147435\n"
-"28\n"
-"help.text"
-msgid "In this example, the prefix is ContListener_. The following subroutines must therefore be implemented in Basic:"
-msgstr "In this example, the prefix is ContListener_. შემდეგი ქვეპროგრამა საჭიროა განხორციელდეს Basic-ში:"
-
-#. K1q;
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3155411\n"
-"27\n"
-"help.text"
-msgid "ContListener_disposing"
-msgstr "ContListener_disposing"
-
-#. XfDA
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3146923\n"
-"26\n"
-"help.text"
-msgid "ContListener_elementInserted"
-msgstr "ContListener_elementInserted"
-
-#. RW3*
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3147318\n"
-"25\n"
-"help.text"
-msgid "ContListener_elementRemoved"
-msgstr "ContListener_elementRemoved"
-
-#. Tgp9
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3152578\n"
-"24\n"
-"help.text"
-msgid "ContListener_elementReplaced"
-msgstr "ContListener_elementReplaced"
-
-#. ,e)L
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3150592\n"
-"23\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 "მოვლენის სტრუქტურის ტიპი რომელიც შეიცავს ინფორმაციას მოვლენის შესახებ არსებობს ყოველი მსმენელისთვის. როდესაც მსმენელის მეთოდი გამოიძახება, ამ მოვლენის ასლი გადაეცემა მეთოდს, როგორც პარამეტრი. Basic მსმენელის მეთოდები შეგიძლიათ გამოიძახოთ ამ მოვლენის ობიექტებს, მაშინვე, როგორც კი შესაბამისი პარამეტრი იქნება გადაცემული ქვე გამოცხადებაში:"
-
-#. jhdm
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3153876\n"
-"21\n"
-"help.text"
-msgid "MsgBox \"disposing\""
-msgstr "MsgBox \"განლაგება\""
-
-#. BCJP
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3154098\n"
-"17\n"
-"help.text"
-msgid "MsgBox \"elementInserted\""
-msgstr "MsgBox \"elementInserted\""
-
-#. ?kwy
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3153947\n"
-"13\n"
-"help.text"
-msgid "MsgBox \"elementRemoved\""
-msgstr "MsgBox \"elementRemoved\""
-
-#. 4BNT
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3148915\n"
-"9\n"
-"help.text"
-msgid "MsgBox \"elementReplaced\""
-msgstr "MsgBox \"elementReplaced\""
-
-#. b;81
-#: 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 "თუ ობიექტი არ გამოიყენება, მოვლენის პარამეტრის ჩამატება აუცილებელი არ არის:"
-
-#. hTU(
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3150042\n"
-"5\n"
-"help.text"
-msgid "' Minimal implementation of Sub disposing"
-msgstr "' Sub disposing -ის მინიმალური განხორციელება"
-
-#. (7Ll
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3150940\n"
-"2\n"
-"help.text"
-msgid "Listener methods must <emph>always</emph> be implemented to avoid Basic run-time errors."
-msgstr "Listener მეთოდები საჭიროა დაინერგოს <emph>ყოველთვის</emph> გაშვებისას Basic შეცდომების თავიდან ასაცილებლად."
-
-#. `|m-
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"tit\n"
-"help.text"
-msgid "Write Statement [Runtime]"
-msgstr ""
-
-#. *fHF
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"bm_id3147229\n"
-"help.text"
-msgid "<bookmark_value>Write statement</bookmark_value>"
-msgstr "<bookmark_value>Wait განცხადება</bookmark_value>"
-
-#. +jxS
-#: 03020205.xhp
-#, fuzzy
-msgctxt ""
-"03020205.xhp\n"
-"hd_id3147229\n"
-"1\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. T0)=
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"par_id3154685\n"
-"2\n"
-"help.text"
-msgid "Writes data to a sequential file."
-msgstr ""
-
-#. w:|.
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"hd_id3150449\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. EM+(
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"par_id3145785\n"
-"4\n"
-"help.text"
-msgid "Write [#FileName], [Expressionlist]"
-msgstr ""
-
-#. 0YCi
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"hd_id3151116\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. X@Ry
-#: 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 ""
-
-#. ?Lu(
-#: 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 ""
-
-#. [Kk{
-#: 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 ""
-
-#. (aOD
-#: 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 ""
-
-#. jHyB
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"par_id3147428\n"
-"10\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 ""
-
-#. s}%q
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"par_id1002838\n"
-"help.text"
-msgid "Each <emph>Write</emph> statement outputs a line end symbol as last entry."
-msgstr ""
-
-#. kN%p
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"par_id6618854\n"
-"help.text"
-msgid "Numbers with decimal delimiters are converted according to the locale settings."
-msgstr ""
-
-#. l[mK
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"hd_id3151073\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. jSzv
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"tit\n"
-"help.text"
-msgid "GetAttr Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. afc)
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"bm_id3150984\n"
-"help.text"
-msgid "<bookmark_value>GetAttr function</bookmark_value>"
-msgstr "<bookmark_value>Str ფუნქცია</bookmark_value>"
-
-#. aVC[
-#: 03020409.xhp
-#, fuzzy
-msgctxt ""
-"03020409.xhp\n"
-"hd_id3150984\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. Z)@W
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3154347\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 ""
-
-#. eO-k
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"hd_id3149457\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. /3bY
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3150359\n"
-"4\n"
-"help.text"
-msgid "GetAttr (Text As String)"
-msgstr "Asc (ტექსტი როგორც სტრიქონი)"
-
-#. JQ[K
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"hd_id3151211\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. cQ#K
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3154909\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr ""
-
-#. !iW.
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"hd_id3145172\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. I:aA
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3151042\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 ""
-
-#. ?Qys
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3161831\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 ""
-
-#. \,Nu
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"hd_id3145364\n"
-"10\n"
-"help.text"
-msgid "Value"
-msgstr ""
-
-#. GX1L
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3147349\n"
-"11\n"
-"help.text"
-msgid "0 : Normal files."
-msgstr ""
-
-#. \EQj
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3147434\n"
-"12\n"
-"help.text"
-msgid "1 : Read-only files."
-msgstr ""
-
-#. fBfJ
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3159154\n"
-"15\n"
-"help.text"
-msgid "8 : Returns the name of the volume"
-msgstr ""
-
-#. [T+0
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3145271\n"
-"16\n"
-"help.text"
-msgid "16 : Returns the name of the directory only."
-msgstr ""
-
-#. [cr7
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3153953\n"
-"17\n"
-"help.text"
-msgid "32 : File was changed since last backup (Archive bit)."
-msgstr ""
-
-#. DS[H
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3156444\n"
-"18\n"
-"help.text"
-msgid "If you want to know if a bit of the attribute byte is set, use the following query method:"
-msgstr ""
-
-#. u2OJ
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"hd_id3153094\n"
-"19\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. #*}k
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3155415\n"
-"21\n"
-"help.text"
-msgid "On Error GoTo ErrorHandler ' Define target for error handler"
-msgstr ""
-
-#. mzrg
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"tit\n"
-"help.text"
-msgid "Select...Case Statement [Runtime]"
-msgstr ""
-
-#. pAMF
-#: 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>Mid ფუნქცია</bookmark_value><bookmark_value>Mid დებულება</bookmark_value>"
-
-#. iwGG
-#: 03090102.xhp
-#, fuzzy
-msgctxt ""
-"03090102.xhp\n"
-"hd_id3149416\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. ZLog
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id3153896\n"
-"2\n"
-"help.text"
-msgid "Defines one or more statement blocks depending on the value of an expression."
-msgstr ""
-
-#. rZ)m
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"hd_id3147265\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. Vj*n
-#: 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 ""
-
-#. 6uEQ
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"hd_id3150767\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. eD2d
-#: 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 ""
-
-#. @Gb7
-#: 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 ""
-
-#. la%;
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"hd_id3153768\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. j$^#
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id3152597\n"
-"14\n"
-"help.text"
-msgid "Print \"Number from 1 to 5\""
-msgstr ""
-
-#. 9AoZ
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id3147349\n"
-"16\n"
-"help.text"
-msgid "Print \"Number from 6 to 8\""
-msgstr ""
-
-#. Z@kw
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id3152886\n"
-"18\n"
-"help.text"
-msgid "Print \"Greater than 8\""
-msgstr ""
-
-#. .k*s
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id3146975\n"
-"20\n"
-"help.text"
-msgid "Print \"Out of range 1 to 10\""
-msgstr ""
-
-#. JUPU
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"tit\n"
-"help.text"
-msgid "ConvertFromURL Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. -89,
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"bm_id3153894\n"
-"help.text"
-msgid "<bookmark_value>ConvertFromURL function</bookmark_value>"
-msgstr "<bookmark_value>ConvertFromURL ფუნქცია</bookmark_value>"
-
-#. B4S_
-#: 03120313.xhp
-#, fuzzy
-msgctxt ""
-"03120313.xhp\n"
-"hd_id3153894\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"ConvertFromURL Function [Runtime]\">ConvertFromURL Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. H}ba
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"par_id3147226\n"
-"2\n"
-"help.text"
-msgid "Converts a file URL to a system file name."
-msgstr "გარდაქმნის URL-ს სისტემურ ფაილის სახელად."
-
-#. W{h)
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"hd_id3143267\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. UBU8
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"par_id3154142\n"
-"4\n"
-"help.text"
-msgid "ConvertFromURL(filename)"
-msgstr "ConvertFromURL(filename)"
-
-#. c8wX
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"hd_id3159157\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. ;,Q^
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"par_id3150669\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "სტრიქონები"
-
-#. .4o^
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"hd_id3143270\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. !,^6
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"par_id3156023\n"
-"8\n"
-"help.text"
-msgid "<emph>Filename:</emph> A file name as a string."
-msgstr "<emph>ფაილის სახელი:</emph> ფაილის სახელი, როგორც სტრინგი."
-
-#. tKSr
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"hd_id3154760\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 5UkN
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"par_id3148664\n"
-"10\n"
-"help.text"
-msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
-msgstr ""
-
-#. ]eVq
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"par_id3150541\n"
-"11\n"
-"help.text"
-msgid "url$ = ConvertToURL( systemFile$ )"
-msgstr ""
-
-#. v%]4
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"par_id3150792\n"
-"12\n"
-"help.text"
-msgid "print url$"
-msgstr ""
-
-#. ahS/
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"par_id3154367\n"
-"13\n"
-"help.text"
-msgid "systemFileAgain$ = ConvertFromURL( url$ )"
-msgstr ""
-
-#. Au*Q
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"par_id3153194\n"
-"14\n"
-"help.text"
-msgid "print systemFileAgain$"
-msgstr ""
-
-#. Aa8z
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"tit\n"
-"help.text"
-msgid "FileLen-Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. $[Ck
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"bm_id3153126\n"
-"help.text"
-msgid "<bookmark_value>FileLen function</bookmark_value>"
-msgstr "<bookmark_value>Len ფუნქცია</bookmark_value>"
-
-#. b?p8
-#: 03020408.xhp
-#, fuzzy
-msgctxt ""
-"03020408.xhp\n"
-"hd_id3153126\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. pp{J
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"par_id3145068\n"
-"2\n"
-"help.text"
-msgid "Returns the length of a file in bytes."
-msgstr ""
-
-#. XG0`
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"hd_id3159414\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. KP*?
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"par_id3149656\n"
-"4\n"
-"help.text"
-msgid "FileLen (Text As String)"
-msgstr "Len (Text As String)"
-
-#. If~!
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"hd_id3148798\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. t)Mo
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"par_id3156282\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr ""
-
-#. -dIy
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"hd_id3150768\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. {+$p
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"par_id3153193\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 ""
-
-#. $@ZJ
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"par_id3150439\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 ""
-
-#. M1D@
-#: 03020408.xhp
-msgctxt ""
-"03020408.xhp\n"
-"hd_id3163710\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. Ts!#
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"tit\n"
-"help.text"
-msgid "ChDrive Statement [Runtime]"
-msgstr ""
-
-#. H1UI
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"bm_id3145068\n"
-"help.text"
-msgid "<bookmark_value>ChDrive statement</bookmark_value>"
-msgstr "<bookmark_value>Wait განცხადება</bookmark_value>"
-
-#. X{`*
-#: 03020402.xhp
-#, fuzzy
-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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. IG:s
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"par_id3149656\n"
-"2\n"
-"help.text"
-msgid "Changes the current drive."
-msgstr ""
-
-#. ft.W
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"hd_id3154138\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. _FWx
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"par_id3154685\n"
-"4\n"
-"help.text"
-msgid "ChDrive Text As String"
-msgstr "RTrim (Text As String)"
-
-#. _a{/
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"hd_id3156423\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. \phh
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"par_id3145172\n"
-"6\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 ""
-
-#. (h/@
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"par_id3145785\n"
-"7\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 ""
-
-#. TcF]
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"hd_id3153188\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. [z\[
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"par_id3152576\n"
-"10\n"
-"help.text"
-msgid "ChDrive \"D\" ' Only possible if a drive 'D' exists."
-msgstr ""
-
-#. fhf$
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"tit\n"
-"help.text"
-msgid "Kill Statement [Runtime]"
-msgstr ""
-
-#. h1J~
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"bm_id3153360\n"
-"help.text"
-msgid "<bookmark_value>Kill statement</bookmark_value>"
-msgstr "<bookmark_value>LSet განაცხადი</bookmark_value>"
-
-#. H1bq
-#: 03020410.xhp
-#, fuzzy
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153360\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. .^6m
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"par_id3151211\n"
-"2\n"
-"help.text"
-msgid "Deletes a file from a disk."
-msgstr ""
-
-#. I76E
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. [s!w
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"par_id3154685\n"
-"4\n"
-"help.text"
-msgid "Kill File As String"
-msgstr "DIM sFile სტრიქონი როგორც"
-
-#. $Oo`
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. ~JwS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"par_id3150440\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 ""
-
-#. JL$]
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. ]ZXb
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"par_id3163710\n"
-"9\n"
-"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr ""
-
-#. @UK:
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"tit\n"
-"help.text"
-msgid "FileDateTime Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. U9c|
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"bm_id3153361\n"
-"help.text"
-msgid "<bookmark_value>FileDateTime function</bookmark_value>"
-msgstr "<bookmark_value>DateDiff ფუნქცია</bookmark_value>"
-
-#. iC67
-#: 03020407.xhp
-#, fuzzy
-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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. WG[#
-#: 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 ""
-
-#. `eMw
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"hd_id3154685\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. o~Tl
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"par_id3154124\n"
-"4\n"
-"help.text"
-msgid "FileDateTime (Text As String)"
-msgstr "Len (Text As String)"
-
-#. Qtnl
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"hd_id3150448\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. hNC]
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"par_id3159153\n"
-"6\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 ""
-
-#. G9T/
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"par_id3155306\n"
-"7\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 ""
-
-#. 3Jgr
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"hd_id3146119\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. svVl
-#: 03103300.xhp
-msgctxt ""
-"03103300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Option Explicit Statement [Runtime]"
-msgstr ""
-
-#. BOgL
-#: 03103300.xhp
-msgctxt ""
-"03103300.xhp\n"
-"bm_id3145090\n"
-"help.text"
-msgid "<bookmark_value>Option Explicit statement</bookmark_value>"
-msgstr "<bookmark_value>Wait განცხადება</bookmark_value>"
-
-#. h+Sa
-#: 03103300.xhp
-#, fuzzy
-msgctxt ""
-"03103300.xhp\n"
-"hd_id3145090\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. peo[
-#: 03103300.xhp
-msgctxt ""
-"03103300.xhp\n"
-"par_id3148538\n"
-"2\n"
-"help.text"
-msgid "Specifies that every variable in the program code must be explicitly declared with the Dim statement."
-msgstr ""
-
-#. -;@(
-#: 03103300.xhp
-msgctxt ""
-"03103300.xhp\n"
-"hd_id3149763\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. O=CM
-#: 03103300.xhp
-msgctxt ""
-"03103300.xhp\n"
-"par_id3149514\n"
-"4\n"
-"help.text"
-msgid "Option Explicit"
-msgstr ""
-
-#. xTL^
-#: 03103300.xhp
-msgctxt ""
-"03103300.xhp\n"
-"hd_id3145315\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. M$(a
-#: 03103300.xhp
-msgctxt ""
-"03103300.xhp\n"
-"par_id3145172\n"
-"6\n"
-"help.text"
-msgid "This statement must be added before the executable program code in a module."
-msgstr ""
-
-#. 8FK)
-#: 03103300.xhp
-msgctxt ""
-"03103300.xhp\n"
-"hd_id3125864\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 4;K;
-#: 03103300.xhp
-msgctxt ""
-"03103300.xhp\n"
-"par_id3145787\n"
-"12\n"
-"help.text"
-msgid "For i% = 1 To 10 ' This results in a run-time error"
-msgstr ""
-
-#. 0dG5
-#: 03020100.xhp
-msgctxt ""
-"03020100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Opening and Closing Files"
-msgstr ""
-
-#. LRP]
-#: 03020100.xhp
-msgctxt ""
-"03020100.xhp\n"
-"hd_id3152924\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020100.xhp\" name=\"Opening and Closing Files\">Opening and Closing Files</link>"
-msgstr ""
-
-#. tlFQ
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"tit\n"
-"help.text"
-msgid "Right Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. j$5T
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"bm_id3153311\n"
-"help.text"
-msgid "<bookmark_value>Right function</bookmark_value>"
-msgstr "<bookmark_value>მარჯვენა ფუნქცია</bookmark_value>"
-
-#. ^:W=
-#: 03120307.xhp
-#, fuzzy
-msgctxt ""
-"03120307.xhp\n"
-"hd_id3153311\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. \Fr{
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"par_id3150984\n"
-"2\n"
-"help.text"
-msgid "Returns the rightmost \"n\" characters of a string expression."
-msgstr "აბრუნებს სტინგ გამოსახულების \"n\" მარჯვენა უკიდურეს ასო-ნიშნებს."
-
-#. `15p
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"par_id3149763\n"
-"3\n"
-"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">Left Function</link>."
-msgstr "აგრეთვე ნახეთ: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"მარცხენა ფუნქცია\">მარცხენა ფუნქცია</link>."
-
-#. ,1~)
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"hd_id3145315\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 8#U1
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"par_id3153061\n"
-"5\n"
-"help.text"
-msgid "Right (Text As String, n As Long)"
-msgstr "მარჯვენა (Text As String, n As Long)"
-
-#. #hV\
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"hd_id3145068\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. 8)@y
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"par_id3156344\n"
-"7\n"
-"help.text"
-msgid "String"
-msgstr "სტრიქონები"
-
-#. sZf=
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"hd_id3146795\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. I^$M
-#: 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>ტექსტი:</emph> ნებისმიერი სტრინგული გამოსახულება, რომლიც ყველაზე მარჯვენა ასო-ნიშნების დაბრუნებაც გსურთ."
-
-#. .vA8
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"par_id3151211\n"
-"10\n"
-"help.text"
-msgid "<emph>n:</emph> Numeric expression that defines the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 65535."
-msgstr "<emph>n:</emph> რიცხვით გამოსახულება, რომელიც განსაზღვრავს ასო-ნიშნების რაოდენობას, რომელთა დაბრუნებაც გსურთ. . თუ <emph>n</emph> = 0, დაბრუნნდება ნულოვანი სიგრძის სტრინგი. მაქსიმუმი დასაშვები მნიშვნელობა არის 65535."
-
-#. `Qba
-#: 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 "შემდეგ მაგალითს გადაყავს წწწწ-თთ-დდ ფორმატი ამერიკულ თარიღის ფორმატში (თთ/დდ/წწწწ)."
-
-#. ?0|=
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"hd_id3156212\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. pPv=
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"par_id3159252\n"
-"16\n"
-"help.text"
-msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
-msgstr ""
-
-#. \tNR
-#: 03120200.xhp
-msgctxt ""
-"03120200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Repeating Contents"
-msgstr "შიგთავსის გფამეორება"
-
-#. gYu=
-#: 03120200.xhp
-#, fuzzy
-msgctxt ""
-"03120200.xhp\n"
-"hd_id3152363\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120200.xhp\" name=\"Repeating Contents\">Repeating Contents</link>"
-msgstr "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"სტრინგის სიგრძის რედაქტირება\">სტრინგის სიგრძის რედაქტირება</link>"
-
-#. TLt,
-#: 03120200.xhp
-msgctxt ""
-"03120200.xhp\n"
-"par_id3150178\n"
-"2\n"
-"help.text"
-msgid "The following functions repeat the contents of strings."
-msgstr "აღნიშნული ფუნქციები მეორდება სტრიქონების შეგთავსში."
-
-#. }/xl
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"tit\n"
-"help.text"
-msgid "\"/\" Operator [Runtime]"
-msgstr ""
-
-#. 8haF
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"bm_id3150669\n"
-"help.text"
-msgid "<bookmark_value>\"/\" operator (mathematical)</bookmark_value>"
-msgstr ""
-
-#. (.xX
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"hd_id3150669\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03070400.xhp\">\"/\" Operator [Runtime]</link>"
-msgstr ""
-
-#. b?Bi
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"par_id3149670\n"
-"2\n"
-"help.text"
-msgid "Divides two values."
-msgstr ""
-
-#. D%wr
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"hd_id3148946\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. l2.l
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"par_id3153360\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 / Expression2"
-msgstr ""
-
-#. \^HA
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"hd_id3150359\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. 1uqa
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"par_id3154141\n"
-"6\n"
-"help.text"
-msgid "<emph>Result:</emph> Any numerical value that contains the result of the division."
-msgstr ""
-
-#. P#hh
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"par_id3150448\n"
-"7\n"
-"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to divide."
-msgstr "<emph>Expression1, Expression2:</emph> ნებისმიერი ციფრული სიდიდეები ან სტრიქონები, რომლებიც გინდათ შეადაროთ."
-
-#. R4}.
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"hd_id3154684\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. n0x~
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Erl Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. RDO6
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"bm_id3157896\n"
-"help.text"
-msgid "<bookmark_value>Erl function</bookmark_value>"
-msgstr "<bookmark_value>Va lფუნქცია</bookmark_value>"
-
-#. 8V.W
-#: 03050100.xhp
-#, fuzzy
-msgctxt ""
-"03050100.xhp\n"
-"hd_id3157896\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. KILd
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"par_id3153394\n"
-"2\n"
-"help.text"
-msgid "Returns the line number where an error occurred during program execution."
-msgstr ""
-
-#. l1~c
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"hd_id3147574\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. tz|#
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"par_id3146795\n"
-"4\n"
-"help.text"
-msgid "Erl"
-msgstr ""
-
-#. 1`Mr
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"hd_id3147265\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. (r_=
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"par_id3154924\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr ""
-
-#. W8*)
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"hd_id3150792\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. T)P;
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"par_id3153771\n"
-"8\n"
-"help.text"
-msgid "The Erl function only returns a line number, and not a line label."
-msgstr ""
-
-#. ;$v!
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"hd_id3146921\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. Fs%6
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"par_id3150010\n"
-"11\n"
-"help.text"
-msgid "On Error GoTo ErrorHandler ' Set up error handler"
-msgstr ""
-
-#. Gj2+
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"par_id3153188\n"
-"14\n"
-"help.text"
-msgid "' Error caused by non-existent file"
-msgstr ""
-
-#. D.;*
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"par_id3155416\n"
-"21\n"
-"help.text"
-msgid "MsgBox \"Error \" & err & \": \" & Error$ + chr(13) + \"In Line : \" + Erl + chr(13) + Now , 16 ,\"An error occurred\""
-msgstr ""
-
-#. id,b
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"tit\n"
-"help.text"
-msgid "Erase Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. NS.M
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"bm_id624713\n"
-"help.text"
-msgid "<bookmark_value>Erase function</bookmark_value>"
-msgstr "<bookmark_value>Erase ფუნქცია</bookmark_value>"
-
-#. s\R\
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"par_idN10548\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03104700.xhp\">Erase Function [Runtime]</link>"
-msgstr ""
-
-#. D|n0
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "Erases the contents of array elements of fixed size arrays, and releases the memory used by arrays of variable size."
-msgstr "შლის ფიქსირებული ზომის მასივების ელემენტების შემცველობას და ათავისუბლებს ცვლადის ზომის მასივების მიერ დაკავებულ მეხსიერებას."
-
-#. Fpos
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"par_idN1055D\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. ;~+9
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"par_idN105E6\n"
-"help.text"
-msgid "Erase Arraylist"
-msgstr "წაშალე Arraylist"
-
-#. JZ.2
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"par_idN105E9\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. V_{~
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"par_idN105ED\n"
-"help.text"
-msgid "<emph>Arraylist</emph> - The list of arrays to be erased."
-msgstr "<emph>Arraylist</emph> - წასაშლელი მასივების სია."
-
-#. $rw[
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"tit\n"
-"help.text"
-msgid "Exp Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. E@C,
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"bm_id3150616\n"
-"help.text"
-msgid "<bookmark_value>Exp function</bookmark_value>"
-msgstr "<bookmark_value>Asc ფუნქცია</bookmark_value>"
-
-#. ,ViF
-#: 03080201.xhp
-#, fuzzy
-msgctxt ""
-"03080201.xhp\n"
-"hd_id3150616\n"
-"1\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. WO^H
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"par_id3155555\n"
-"2\n"
-"help.text"
-msgid "Returns the base of the natural logarithm (e = 2.718282) raised to a power."
-msgstr ""
-
-#. ztC0
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"hd_id3150984\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. aW33
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"par_id3145315\n"
-"4\n"
-"help.text"
-msgid "Exp (Number)"
-msgstr ""
-
-#. [AK_
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"hd_id3154347\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. +V`}
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"par_id3149670\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr ""
-
-#. _M+h
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"hd_id3154760\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. #zRK
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"par_id3150793\n"
-"8\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 ""
-
-#. yAj$
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"hd_id3156280\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 2GjQ
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"par_id3159254\n"
-"13\n"
-"help.text"
-msgid "Const b2=1.345e34"
-msgstr ""
-
-#. 4+;(
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"par_id3161832\n"
-"15\n"
-"help.text"
-msgid "MsgBox \"\" & dValue & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm\""
-msgstr ""
-
-#. hQ%;
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"tit\n"
-"help.text"
-msgid "Macro"
-msgstr "მაკრო"
-
-#. sU;y
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"bm_id3153894\n"
-"help.text"
-msgid "<bookmark_value>events;linked to objects</bookmark_value>"
-msgstr "<bookmark_value>მოვლენები;დაკავშირებული ობიექტებთან</bookmark_value>"
-
-#. ia,J
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3153894\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Macro\">Macro</link>"
-msgstr "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"მაკრო\">მაკრო</link>"
-
-#. 7TbZ
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153748\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Choose the macro that you want to execute when the selected graphic, frame, or OLE object is selected.</ahelp> Depending on the object that is selected, the function is either found on the <emph>Macro</emph> tab of the <emph>Object</emph> dialog, or in the <emph>Assign Macro</emph> dialog."
-msgstr "<ahelp hid=\".\">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."
-
-#. AMJn
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3150503\n"
-"3\n"
-"help.text"
-msgid "Event"
-msgstr ""
-
-#. )1kK
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3149763\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"HID_MACRO_LB_EVENT\">Lists the events that are relevant to the macros that are currently assigned to the selected object.</ahelp>"
-msgstr "<ahelp hid=\"HID_MACRO_LB_EVENT\">ჩამოწერს მოვლენებს, რომლებიც დაკავშირებული არიან მაკროსთან, რომლებიც არჩეული ობიექტებისთვის არიან მითითებულები.</ahelp>"
-
-#. gs4p
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3150670\n"
-"23\n"
-"help.text"
-msgid "The following table describes the macros and the events that can by linked to objects in your document:"
-msgstr "შემდეგი ცხრილი აღწერს მაკროებს და მოვლენებს რომლებიც თქვენს დოკუმენტში შეიძლება დუკავშირდნენ ობიექტებს:"
-
-#. XHvZ
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153360\n"
-"24\n"
-"help.text"
-msgid "Event"
-msgstr ""
-
-#. `do8
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3154365\n"
-"25\n"
-"help.text"
-msgid "Event trigger"
-msgstr "მოვლენის ტრიგერი"
-
-#. KMfc
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3159149\n"
-"26\n"
-"help.text"
-msgid "OLE object"
-msgstr "OLE ობიექტი"
-
-#. LLWW
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3148451\n"
-"27\n"
-"help.text"
-msgid "Graphics"
-msgstr ""
-
-#. O,J\
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3125863\n"
-"28\n"
-"help.text"
-msgid "Frame"
-msgstr "ჩარჩო"
-
-#. T^VC
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3154216\n"
-"29\n"
-"help.text"
-msgid "AutoText"
-msgstr "AutoText"
-
-#. ^:mm
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3145785\n"
-"30\n"
-"help.text"
-msgid "ImageMap area"
-msgstr "ImageMap არე"
-
-#. e|]]
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153138\n"
-"31\n"
-"help.text"
-msgid "Hyperlink"
-msgstr "ჰიპერ ბმული"
-
-#. TDq1
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3155306\n"
-"32\n"
-"help.text"
-msgid "Click object"
-msgstr "დაწკაპუნების ობიექტი"
-
-#. t-m.
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3152460\n"
-"33\n"
-"help.text"
-msgid "Object is selected."
-msgstr "ობიექტი არჩეულია."
-
-#. .yeY
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147348\n"
-"34\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. -6^T
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147426\n"
-"35\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. N5Ee
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153951\n"
-"36\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. f$kJ
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3150116\n"
-"37\n"
-"help.text"
-msgid "Mouse over object"
-msgstr "მაუსი ობიექტზე."
-
-#. XCX8
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3145253\n"
-"38\n"
-"help.text"
-msgid "Mouse moves over the object."
-msgstr "მაუსი მოძრაობს ობიექტზე."
-
-#. ]s}f
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3144765\n"
-"39\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. ee?C
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153418\n"
-"40\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. gwVb
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153948\n"
-"41\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. Yh7u
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3145652\n"
-"42\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. HWx+
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3155066\n"
-"43\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. AIl;
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3155446\n"
-"44\n"
-"help.text"
-msgid "Trigger Hyperlink"
-msgstr "ტრიგერის ჰიპერ ბმული"
-
-#. dR:$
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3154756\n"
-"45\n"
-"help.text"
-msgid "Hyperlink assigned to the object is clicked."
-msgstr "დაწკაპუნებულია ობიექტზე მინიჭებული ჰიპერ ბმული"
-
-#. I2TC
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3150042\n"
-"46\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. 1iZE
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3151252\n"
-"47\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. N~#L
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147344\n"
-"48\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. EeRm
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3146920\n"
-"49\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. k/B%
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3159333\n"
-"50\n"
-"help.text"
-msgid "Mouse leaves object"
-msgstr "მაუსი სტოვებს ობიექტს"
-
-#. ^!Sc
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147003\n"
-"51\n"
-"help.text"
-msgid "Mouse moves off of the object."
-msgstr "მაუსი გადის ობიექტიდან."
-
-#. a5;Q
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3151278\n"
-"52\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. HdDo
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3145257\n"
-"53\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. 9{Be
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3154122\n"
-"54\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. akeC
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3156139\n"
-"55\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. g-Pg
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3149036\n"
-"56\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. (jOH
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3150785\n"
-"57\n"
-"help.text"
-msgid "Graphics load successful"
-msgstr "გრაფიკის ჩატვირთვა წარმატებულია"
-
-#. a;K?
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153705\n"
-"58\n"
-"help.text"
-msgid "Graphics are loaded successfully."
-msgstr "გრაფიკის ჩატვირთვა წარმატებულია"
-
-#. snsY
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3150343\n"
-"59\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. 14EY
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3150202\n"
-"60\n"
-"help.text"
-msgid "Graphics load terminated"
-msgstr "გრაფიკის ჩატვირთვა შეწყვეტილია"
-
-#. .PIP
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3145584\n"
-"61\n"
-"help.text"
-msgid "Loading of graphics is stopped by the user (for example, when downloading the page)."
-msgstr "გრაფიკის ჩატვირთვა გაჩერებულია მომხარებლის მიერ (მაგალითად: გვერდის ჩატვირთვისას)"
-
-#. ufI,
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3154259\n"
-"62\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. HwnT
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3155089\n"
-"63\n"
-"help.text"
-msgid "Graphics load faulty"
-msgstr "გრაფიკი შეცდომით ჩაიტვირთა."
-
-#. s{Sg
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153307\n"
-"64\n"
-"help.text"
-msgid "Graphics not successfully loaded, for example, if a graphic was not found."
-msgstr "გრაფიკი წარმატებით ვერ ჩაიტვირა, მაგალითად მაშინ როცა გრაფიკი ვერ მოიძებნა."
-
-#. [D;c
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3148840\n"
-"65\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. #b%c
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3154533\n"
-"66\n"
-"help.text"
-msgid "Input of alpha characters"
-msgstr "ალფა ასო-ნიშნების შეტანა"
-
-#. ?Agm
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3155266\n"
-"67\n"
-"help.text"
-msgid "Text is entered from the keyboard."
-msgstr "ტექსტი კლავიატურიდან შეიტანება."
-
-#. T?ZW
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3144768\n"
-"68\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. YA2L
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3145659\n"
-"69\n"
-"help.text"
-msgid "Input of non-alpha characters"
-msgstr "არა-ალფა ასო-ნიშნების შეტანა"
-
-#. jOEu
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3151131\n"
-"70\n"
-"help.text"
-msgid "Nonprinting characters are entered from the keyboard, for example, tabs and line breaks."
-msgstr "კლავიატურიდან შეტანილია არა ბეჭდური ასო-ნიშნები, მაგალითად ხაზის გამწყვეტები და ჩანართები."
-
-#. #i2A
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3159206\n"
-"71\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. a[pu
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3150405\n"
-"72\n"
-"help.text"
-msgid "Resize frame"
-msgstr "ჩარჩოს ზომის შეცვლა"
-
-#. k`-H
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153972\n"
-"73\n"
-"help.text"
-msgid "Frame is resized with the mouse."
-msgstr "ჩარჩოს ზომის შეცვლა ხდება მაუსით."
-
-#. PRNz
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3152873\n"
-"74\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. \T5o
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3148900\n"
-"75\n"
-"help.text"
-msgid "Move frame"
-msgstr "ჩარჩოს გადაადგილება"
-
-#. [?)-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3154767\n"
-"76\n"
-"help.text"
-msgid "Frame is moved with the mouse."
-msgstr "ჩარჩოს გადაადგილება ხდება მაუსით."
-
-#. wx{Z
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3155914\n"
-"77\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. FE45
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153010\n"
-"78\n"
-"help.text"
-msgid "Before inserting AutoText"
-msgstr "AutoText-ს ჩასმის შემდეგ"
-
-#. Z?Ey
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147515\n"
-"79\n"
-"help.text"
-msgid "Before a text block is inserted."
-msgstr "ტექსტის ბლოკის ჩასმის წინ."
-
-#. rT5@
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3151191\n"
-"80\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. .=)}
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3150956\n"
-"81\n"
-"help.text"
-msgid "After inserting AutoText"
-msgstr "AutoText-ს ჩასმის შემდეგ"
-
-#. h5-4
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147502\n"
-"82\n"
-"help.text"
-msgid "After a text block is inserted."
-msgstr "ტექსტის ბლოკის ჩასმის შემდეგ"
-
-#. )wbP
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147555\n"
-"83\n"
-"help.text"
-msgid "x"
-msgstr ""
-
-#. IF!D
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3153958\n"
-"5\n"
-"help.text"
-msgid "Macros"
-msgstr "მაკროები"
-
-#. J)%6
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3150432\n"
-"6\n"
-"help.text"
-msgid "Choose the macro that you want to execute when the selected event occurs."
-msgstr "აირჩიეთ მაკრო, რომელიც ჩაირთვება არჩეული მოვლენის მოხდენის შემდეგ."
-
-#. mAX8
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147296\n"
-"84\n"
-"help.text"
-msgid "Frames allow you to link events to a function, so that the function can determine if it processes the event or $[officename] Writer."
-msgstr "ჩარჩოები საშუალებას გაძლევთ დააკავშიროთ მოვლენები ფუნქციებთან ისე, რომ ფუნქციას შეუძლია განსაზღვროს ამუშავებს მოვლენას თუ $[officename] Writer-ს."
-
-#. wDly
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3155587\n"
-"7\n"
-"help.text"
-msgid "Category"
-msgstr "კატეგორია"
-
-#. !#MX
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3154068\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"HID_MACRO_GROUP\">Lists the open $[officename] documents and applications. Click the name of the location where you want to save the macros.</ahelp>"
-msgstr "<ahelp hid=\"HID_MACRO_GROUP\">ჩამოწერს გახსნილ $[officename] -ს დოკუმენტებს და პროგრამებს. დააწკაპუნეთ მდებარეობის ადგილს იქ, სადაც გსურთ მაკროების შენახვა.</ahelp>"
-
-#. jzO9
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3149744\n"
-"9\n"
-"help.text"
-msgid "Macro name"
-msgstr "მაკროს სახელი"
-
-#. GeB0
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3151391\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"HID_MACRO_MACROS\">Lists the available macros. Click the macro that you want to assign to the selected object.</ahelp>"
-msgstr "<ahelp hid=\"HID_MACRO_MACROS\">ჩამოთვლის არსებულ მაკროებს. დააწკაპუნეთ მაკროს, რომელიც გსურთ მიანიჭოთ არჩეულ ობიექტს.</ahelp>"
-
-#. =Xlw
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3159260\n"
-"11\n"
-"help.text"
-msgid "Assign"
-msgstr "მინიჭება"
-
-#. -upS
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147406\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_ASSIGN\">Assigns the selected macro to the specified event.</ahelp> The assigned macro's entries are set after the event."
-msgstr "<ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_ASSIGN\"> მითითებულ მოვლენას ანიჭებს არჩეულ მაკროს</ahelp> მითითებული მაკროს შინაარსი ყენდება მოვლენის მოხდენის შემდეგ."
-
-#. ;pyE
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3150533\n"
-"15\n"
-"help.text"
-msgid "Remove"
-msgstr "ამოღება"
-
-#. ~3S9
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3166456\n"
-"16\n"
-"help.text"
-msgid "<variable id=\"aufheb\"><ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_DELETE\">Removes the macro that is assigned to the selected item.</ahelp></variable>"
-msgstr "<variable id=\"aufheb\"><ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_DELETE\">იღებს არჩეულ ელემენტზე მინიჭებულ მაკროს. </ahelp></variable>"
-
-#. L#[?
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3159126\n"
-"85\n"
-"help.text"
-msgid "Macro selection"
-msgstr "მაკროს არჩევა"
-
-#. M~5M
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3149149\n"
-"86\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">Select the macro that you want to assign.</ahelp>"
-msgstr "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">აირჩიეთ მაკრო, რომლის მინიჭებაც გსურთ.</ahelp>"
-
-#. LWz%
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"tit\n"
-"help.text"
-msgid "Basics"
-msgstr ""
-
-#. S0|a
-#: 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 ""
-
-#. *?F^
-#: 01010210.xhp
-#, fuzzy
-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/05060700.xhp\" name=\"მაკრო\">მაკრო</link>"
-
-#. +\O4
-#: 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 ""
-
-#. C%4g
-#: 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 ""
-
-#. z8zY
-#: 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 ""
-
-#. UmDj
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"hd_id3150398\n"
-"3\n"
-"help.text"
-msgid "What is a Sub?"
-msgstr ""
-
-#. Ww@2
-#: 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 ""
-
-#. ~se.
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"par_id3150868\n"
-"15\n"
-"help.text"
-msgid "DoSomethingWithTheValues(MyFirstValue,MySecondValue)"
-msgstr ""
-
-#. PkL]
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"hd_id3156282\n"
-"5\n"
-"help.text"
-msgid "What is a Function?"
-msgstr ""
-
-#. _p-p
-#: 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 ""
-
-#. mvq+
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"par_id3146985\n"
-"7\n"
-"help.text"
-msgid "MySecondValue = myFunction(MyFirstValue)"
-msgstr ""
-
-#. ekL5
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"hd_id3153364\n"
-"8\n"
-"help.text"
-msgid "Global and local variables"
-msgstr ""
-
-#. qf(g
-#: 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 ""
-
-#. MGuD
-#: 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 ""
-
-#. JP5j
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"hd_id3150010\n"
-"11\n"
-"help.text"
-msgid "Structuring"
-msgstr ""
-
-#. jmXo
-#: 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 ""
-
-#. S1{L
-#: 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 ""
-
-#. fNo^
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"tit\n"
-"help.text"
-msgid "FindPropertyObject Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. \20w
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"bm_id3146958\n"
-"help.text"
-msgid "<bookmark_value>FindPropertyObject function</bookmark_value>"
-msgstr "<bookmark_value>CreateObject ფუნქცია</bookmark_value>"
-
-#. JkFx
-#: 03103900.xhp
-#, fuzzy
-msgctxt ""
-"03103900.xhp\n"
-"hd_id3146958\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject Function [Runtime]\">FindPropertyObject Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. +]Mz
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3154285\n"
-"2\n"
-"help.text"
-msgid "Enables objects to be addressed at run-time as a string parameter using the object name."
-msgstr ""
-
-#. RD=b
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3147573\n"
-"3\n"
-"help.text"
-msgid "For instance, the command:"
-msgstr ""
-
-#. v](7
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3145610\n"
-"4\n"
-"help.text"
-msgid "MyObj.Prop1.Command = 5"
-msgstr ""
-
-#. mD[T
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3147265\n"
-"5\n"
-"help.text"
-msgid "corresponds to the following command block:"
-msgstr ""
-
-#. v8{;
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3153896\n"
-"6\n"
-"help.text"
-msgid "Dim ObjVar as Object"
-msgstr ""
-
-#. OjQB
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3148664\n"
-"7\n"
-"help.text"
-msgid "Dim ObjProp as Object"
-msgstr ""
-
-#. +bc8
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3150792\n"
-"8\n"
-"help.text"
-msgid "ObjName As String = \"MyObj\""
-msgstr ""
-
-#. 7Zm#
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3154365\n"
-"9\n"
-"help.text"
-msgid "ObjVar = FindObject( ObjName As String )"
-msgstr ""
-
-#. y6,x
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3148453\n"
-"10\n"
-"help.text"
-msgid "PropName As String = \"Prop1\""
-msgstr ""
-
-#. ;fk/
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3150449\n"
-"11\n"
-"help.text"
-msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
-msgstr ""
-
-#. q+97
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3159152\n"
-"12\n"
-"help.text"
-msgid "ObjProp.Command = 5"
-msgstr ""
-
-#. J`Cq
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3156214\n"
-"13\n"
-"help.text"
-msgid "To dynamically create Names at run-time, use:"
-msgstr ""
-
-#. jjnu
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3154686\n"
-"14\n"
-"help.text"
-msgid "\"TextEdit1\" to TextEdit5\" in a loop to create five names."
-msgstr ""
-
-#. O=M;
-#: 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 ""
-
-#. 9XoH
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"hd_id3147287\n"
-"16\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 1lme
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3149560\n"
-"17\n"
-"help.text"
-msgid "FindPropertyObject( ObjVar, PropName As String )"
-msgstr ""
-
-#. sNv)
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"hd_id3150012\n"
-"18\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. T\q9
-#: 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 ""
-
-#. xL_B
-#: 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 ""
-
-#. gV$E
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"tit\n"
-"help.text"
-msgid "On...GoSub Statement; On...GoTo Statement [Runtime]"
-msgstr ""
-
-#. %x$G
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"bm_id3153897\n"
-"help.text"
-msgid "<bookmark_value>On...GoSub statement</bookmark_value><bookmark_value>On...GoTo statement</bookmark_value>"
-msgstr "<bookmark_value>Mid ფუნქცია</bookmark_value><bookmark_value>Mid დებულება</bookmark_value>"
-
-#. H4gh
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"hd_id3153897\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 ""
-
-#. ;IXD
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"par_id3150359\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 ""
-
-#. d5P6
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"hd_id3148798\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. h?,\
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"par_id3154366\n"
-"4\n"
-"help.text"
-msgid "On N GoSub Label1[, Label2[, Label3[,...]]]"
-msgstr ""
-
-#. qn_D
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"par_id3150769\n"
-"5\n"
-"help.text"
-msgid "On NumExpression GoTo Label1[, Label2[, Label3[,...]]]"
-msgstr ""
-
-#. nHg$
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"hd_id3156215\n"
-"6\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. sHnN
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"par_id3148673\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 ""
-
-#. FIV;
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"par_id3153194\n"
-"8\n"
-"help.text"
-msgid "<emph>Label:</emph> Target line according to<emph> GoTo </emph>or <emph>GoSub</emph> structure."
-msgstr ""
-
-#. ZsC4
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"par_id3156442\n"
-"9\n"
-"help.text"
-msgid "The <emph>GoTo</emph> or <emph>GoSub </emph>conventions are valid."
-msgstr ""
-
-#. ]0KC
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"hd_id3148645\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 8~;D
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"par_id3153948\n"
-"21\n"
-"help.text"
-msgid "sVar =sVar & \" From Sub 1 to\" : Return"
-msgstr ""
-
-#. ]#Wg
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"par_id3153708\n"
-"23\n"
-"help.text"
-msgid "sVar =sVar & \" From Sub 2 to\" : Return"
-msgstr ""
-
-#. )5C6
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"par_id3150321\n"
-"25\n"
-"help.text"
-msgid "sVar =sVar & \" Label 1\" : GoTo Ende"
-msgstr ""
-
-#. QPh=
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"par_id3155764\n"
-"27\n"
-"help.text"
-msgid "sVar =sVar & \" Label 2\""
-msgstr ""
-
-#. @h/x
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"tit\n"
-"help.text"
-msgid "String Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. X7i^
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"bm_id3147291\n"
-"help.text"
-msgid "<bookmark_value>String function</bookmark_value>"
-msgstr "<bookmark_value>სრტიქონის ფუნქცია</bookmark_value>"
-
-#. 6uqw
-#: 03120202.xhp
-#, fuzzy
-msgctxt ""
-"03120202.xhp\n"
-"hd_id3147291\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. $6wZ
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"par_id3147242\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 ""
-
-#. @PWh
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"hd_id3149516\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. AQ7s
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"par_id3149233\n"
-"4\n"
-"help.text"
-msgid "String (n As Long, {expression As Integer | character As String})"
-msgstr ""
-
-#. MxYH
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"hd_id3143270\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. 8S)F
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"par_id3147530\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "სტრიქონები"
-
-#. ([t)
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"hd_id3154923\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. (~#]
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"par_id3154347\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 ""
-
-#. %r\l
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"par_id3148664\n"
-"9\n"
-"help.text"
-msgid "<emph>Expression:</emph> Numeric expression that defines the ASCII code for the character."
-msgstr ""
-
-#. 8f0m
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"par_id3150359\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 ""
-
-#. %]k_
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"hd_id3152920\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. Ipz^
-#: 01030100.xhp
-msgctxt ""
-"01030100.xhp\n"
-"tit\n"
-"help.text"
-msgid "IDE Overview"
-msgstr ""
-
-#. *Re7
-#: 01030100.xhp
-#, fuzzy
-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/05060700.xhp\" name=\"მაკრო\">მაკრო</link>"
-
-#. WqC5
-#: 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 ""
-
-#. %ye;
-#: 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 ""
-
-#. Gp)Z
-#: 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 ""
-
-#. wtoS
-#: 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 ""
-
-#. jHbe
-#: 01030100.xhp
-#, fuzzy
-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/05060700.xhp\" name=\"მაკრო\">მაკრო</link>"
-
-#. YH4;
-#: 01050100.xhp
-msgctxt ""
-"01050100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Watch Window"
-msgstr ""
-
-#. ~-sj
-#: 01050100.xhp
-#, fuzzy
-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/03120101.xhp\">ASC</link>"
-
-#. O3%K
-#: 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 ""
-
-#. %3-s
-#: 01050100.xhp
-msgctxt ""
-"01050100.xhp\n"
-"hd_id3145173\n"
-"4\n"
-"help.text"
-msgid "Watch"
-msgstr ""
-
-#. $5O_
-#: 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 ""
-
-#. S%y$
-#: 01050100.xhp
-msgctxt ""
-"01050100.xhp\n"
-"hd_id3148645\n"
-"6\n"
-"help.text"
-msgid "Remove Watch"
-msgstr ""
-
-#. vQud
-#: 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 ""
-
-#. d7zr
-#: 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 ""
-
-#. KN[2
-#: 01050100.xhp
-msgctxt ""
-"01050100.xhp\n"
-"par_id3154012\n"
-"8\n"
-"help.text"
-msgid "Remove Watch"
-msgstr ""
-
-#. Kdk,
-#: 01050100.xhp
-msgctxt ""
-"01050100.xhp\n"
-"hd_id3154491\n"
-"10\n"
-"help.text"
-msgid "Editing the Value of a Watched Variable"
-msgstr ""
-
-#. 7rE7
-#: 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 ""
-
-#. c890
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"tit\n"
-"help.text"
-msgid "Eof Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. cih1
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"bm_id3154598\n"
-"help.text"
-msgid "<bookmark_value>Eof function</bookmark_value>"
-msgstr "<bookmark_value>მარცხენა ფუნქცია</bookmark_value>"
-
-#. IhL}
-#: 03020301.xhp
-#, fuzzy
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154598\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. 7W^\
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3147182\n"
-"2\n"
-"help.text"
-msgid "Determines if the file pointer has reached the end of a file."
-msgstr ""
-
-#. cC?.
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. vX+:
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3147399\n"
-"4\n"
-"help.text"
-msgid "Eof (intexpression As Integer)"
-msgstr ""
-
-#. 3@`_
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. #nsX
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3156027\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr ""
-
-#. R^im
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. .n{`
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153990\n"
-"8\n"
-"help.text"
-msgid "<emph>Intexpression:</emph> Any integer expression that evaluates to the number of an open file."
-msgstr ""
-
-#. *29L
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153527\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 ""
-
-#. @B/d
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. p+0+
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"19\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr ""
-
-#. ILr{
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"20\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr ""
-
-#. A{~`
-#: 03120000.xhp
-msgctxt ""
-"03120000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Strings"
-msgstr "სტრიქონები"
-
-#. 87]|
-#: 03120000.xhp
-#, fuzzy
-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/05060700.xhp\" name=\"მაკრო\">მაკრო</link>"
-
-#. $DFu
-#: 03120000.xhp
-msgctxt ""
-"03120000.xhp\n"
-"par_id3159176\n"
-"2\n"
-"help.text"
-msgid "The following functions and statements validate and return strings."
-msgstr "აღნიშნული ფუნქციები და განაცხადები მოწმდებინ და აბრუნებენ სრიქონებს."
-
-#. iPU1
-#: 03120000.xhp
-msgctxt ""
-"03120000.xhp\n"
-"par_id3154285\n"
-"3\n"
-"help.text"
-msgid "You can use strings to edit text within $[officename] Basic programs."
-msgstr "თქვენ შეგიძლიათ სტრიქონების გამოყენება რედაქტირებისთვის $[officename] მთავარი პროგრამებისთვის."
-
-#. r7k!
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Not-Operator [Runtime]"
-msgstr ""
-
-#. aJ=W
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"bm_id3156024\n"
-"help.text"
-msgid "<bookmark_value>Not operator (logical)</bookmark_value>"
-msgstr ""
-
-#. f1~+
-#: 03060400.xhp
-#, fuzzy
-msgctxt ""
-"03060400.xhp\n"
-"hd_id3156024\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. *LmE
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"par_id3159414\n"
-"2\n"
-"help.text"
-msgid "Negates an expression by inverting the bit values."
-msgstr ""
-
-#. bq^;
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"hd_id3149457\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. -kYc
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"par_id3150360\n"
-"4\n"
-"help.text"
-msgid "Result = Not Expression"
-msgstr ""
-
-#. 9?Q^
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"hd_id3151211\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. `J/?
-#: 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 ""
-
-#. *X)R
-#: 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>Expression1, Expression2:</emph> ნებისმიერი ციფრული სიდიდეები ან სტრიქონები, რომლებიც გინდათ შეადაროთ."
-
-#. :PW#
-#: 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 ""
-
-#. qrZ\
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"par_id3145785\n"
-"9\n"
-"help.text"
-msgid "In a bitwise negation each individual bit is inverted."
-msgstr ""
-
-#. QNQ0
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"hd_id3153093\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. jF!c
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"par_id3145749\n"
-"15\n"
-"help.text"
-msgid "vOut = Not vA ' Returns -11"
-msgstr ""
-
-#. +q^4
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"par_id3148645\n"
-"16\n"
-"help.text"
-msgid "vOut = Not(vC > vD) ' Returns -1"
-msgstr ""
-
-#. cpAb
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"par_id3156441\n"
-"17\n"
-"help.text"
-msgid "vOut = Not(vB > vA) ' Returns -1"
-msgstr ""
-
-#. jljT
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"par_id3152596\n"
-"18\n"
-"help.text"
-msgid "vOut = Not(vA > vB) ' Returns 0"
-msgstr ""
-
-#. yTdB
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"tit\n"
-"help.text"
-msgid "Sub Statement [Runtime]"
-msgstr ""
-
-#. m:l.
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"bm_id3147226\n"
-"help.text"
-msgid "<bookmark_value>Sub statement</bookmark_value>"
-msgstr "<bookmark_value>LSet განაცხადი</bookmark_value>"
-
-#. Lb7#
-#: 03090409.xhp
-#, fuzzy
-msgctxt ""
-"03090409.xhp\n"
-"hd_id3147226\n"
-"1\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. JoyK
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"par_id3153311\n"
-"2\n"
-"help.text"
-msgid "Defines a subroutine."
-msgstr ""
-
-#. fHo^
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"hd_id3149416\n"
-"3\n"
-"help.text"
-msgid "Syntax"
-msgstr ""
-
-#. 1w~c
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"par_id3147530\n"
-"5\n"
-"help.text"
-msgid "statement block"
-msgstr ""
-
-#. u(Lq
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"hd_id3153525\n"
-"9\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. riZ8
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"par_id3150792\n"
-"10\n"
-"help.text"
-msgid "<emph>Name:</emph> Name of the subroutine ."
-msgstr ""
-
-#. Ku\n
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"par_id3154138\n"
-"11\n"
-"help.text"
-msgid "<emph>VarName: </emph>Parameter that you want to pass to the subroutine."
-msgstr ""
-
-#. ;kA(
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"par_id3154908\n"
-"12\n"
-"help.text"
-msgid "<emph>Type:</emph> Type-declaration key word."
-msgstr ""
-
-#. 9ODJ
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"hd_id3153770\n"
-"16\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. C[M!
-#: 03090409.xhp
-msgctxt ""
-"03090409.xhp\n"
-"par_idN1063F\n"
-"help.text"
-msgid "' some statements"
-msgstr ""
-
-#. U*3`
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Syntax"
-msgstr ""
-
-#. TXvG
-#: 01020000.xhp
-#, fuzzy
-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/05060700.xhp\" name=\"მაკრო\">მაკრო</link>"
-
-#. `L(!
-#: 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 ""
-
-#. `*=K
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"tit\n"
-"help.text"
-msgid "Exit Statement [Runtime]"
-msgstr ""
-
-#. xAc7
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"bm_id3152924\n"
-"help.text"
-msgid "<bookmark_value>Exit statement</bookmark_value>"
-msgstr "<bookmark_value>Wait განცხადება</bookmark_value>"
-
-#. F-9N
-#: 03090412.xhp
-#, fuzzy
-msgctxt ""
-"03090412.xhp\n"
-"hd_id3152924\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. l`CQ
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3153394\n"
-"2\n"
-"help.text"
-msgid "Exits a <emph>Do...Loop</emph>, <emph>For...Next</emph>, a function, or a subroutine."
-msgstr ""
-
-#. #wuZ
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"hd_id3149763\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. mW@i
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3159157\n"
-"4\n"
-"help.text"
-msgid "see Parameters"
-msgstr ""
-
-#. 0GXS
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"hd_id3148943\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. #\cL
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3154760\n"
-"6\n"
-"help.text"
-msgid "<emph>Exit Do</emph>"
-msgstr ""
-
-#. {E]u
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3147559\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 ""
-
-#. }kWU
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3150398\n"
-"8\n"
-"help.text"
-msgid "<emph>Exit For</emph>"
-msgstr ""
-
-#. 5^r7
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3148797\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 ""
-
-#. $aB,
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3147229\n"
-"10\n"
-"help.text"
-msgid "<emph>Exit Function</emph>"
-msgstr ""
-
-#. vH@B
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3154685\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 ""
-
-#. @O(k
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3155132\n"
-"12\n"
-"help.text"
-msgid "<emph>Exit Sub</emph>"
-msgstr ""
-
-#. B5=k
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3149561\n"
-"13\n"
-"help.text"
-msgid "Exits the subroutine immediately. Program execution continues with the statement that follows the <emph>Sub</emph> call."
-msgstr ""
-
-#. 4d=L
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3153143\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 ""
-
-#. ^3GV
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"hd_id3147348\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. =8.K
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3153158\n"
-"20\n"
-"help.text"
-msgid "For siStep = 0 To 10 ' Fill array with test data"
-msgstr ""
-
-#. cuSu
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3153764\n"
-"31\n"
-"help.text"
-msgid "' LinSearch searches a TextArray:sList() for a TextEntry:"
-msgstr ""
-
-#. g:=o
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3148995\n"
-"32\n"
-"help.text"
-msgid "' Returns the index of the entry or 0 (Null)"
-msgstr ""
-
-#. .(J;
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3149567\n"
-"35\n"
-"help.text"
-msgid "Exit For ' sItem found"
-msgstr ""
-
-#. F(Y.
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"tit\n"
-"help.text"
-msgid "Put Statement [Runtime]"
-msgstr ""
-
-#. g4XU
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"bm_id3150360\n"
-"help.text"
-msgid "<bookmark_value>Put statement</bookmark_value>"
-msgstr "<bookmark_value>LSet განაცხადი</bookmark_value>"
-
-#. O`5K
-#: 03020204.xhp
-#, fuzzy
-msgctxt ""
-"03020204.xhp\n"
-"hd_id3150360\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. RdQ9
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3154909\n"
-"2\n"
-"help.text"
-msgid "Writes a record to a relative file or a sequence of bytes to a binary file."
-msgstr ""
-
-#. D^oq
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3156281\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 ""
-
-#. NM0O
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"hd_id3125863\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. P3l@
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3155132\n"
-"5\n"
-"help.text"
-msgid "Put [#] FileNumber As Integer, [position], Variable"
-msgstr ""
-
-#. PS/H
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"hd_id3153190\n"
-"6\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. Paaf
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3146120\n"
-"7\n"
-"help.text"
-msgid "<emph>FileNumber:</emph> Any integer expression that defines the file that you want to write to."
-msgstr ""
-
-#. e,QF
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3155411\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 ""
-
-#. G%)\
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3148576\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 ""
-
-#. 3[T`
-#: 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 ""
-
-#. ?|_B
-#: 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 ""
-
-#. bxi9
-#: 03020204.xhp
-msgctxt ""
-"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 ""
-
-#. I?3@
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"hd_id3154491\n"
-"13\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. +6s3
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3154729\n"
-"16\n"
-"help.text"
-msgid "Dim sText As Variant ' Must be a variant type"
-msgstr ""
-
-#. 2*Oz
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3156278\n"
-"22\n"
-"help.text"
-msgid "Seek #iNumber,1 ' Position To start writing"
-msgstr ""
-
-#. uY,`
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3153711\n"
-"23\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr ""
-
-#. S5`J
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3155446\n"
-"24\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr ""
-
-#. /S6t
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3154255\n"
-"25\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr ""
-
-#. h}3w
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3150940\n"
-"34\n"
-"help.text"
-msgid "Put #iNumber,,\"This is new text\""
-msgstr ""
-
-#. j!P_
-#: 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 ""
-
-#. +mnY
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"tit\n"
-"help.text"
-msgid "FileExists Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. Lj0M
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"bm_id3148946\n"
-"help.text"
-msgid "<bookmark_value>FileExists function</bookmark_value>"
-msgstr "<bookmark_value>Split ფუნქცია</bookmark_value>"
-
-#. eXk(
-#: 03020415.xhp
-#, fuzzy
-msgctxt ""
-"03020415.xhp\n"
-"hd_id3148946\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. ^mpM
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"par_id3153361\n"
-"2\n"
-"help.text"
-msgid "Determines if a file or a directory is available on the data medium."
-msgstr ""
-
-#. BY[,
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"hd_id3150447\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. \flG
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"par_id3154685\n"
-"4\n"
-"help.text"
-msgid "FileExists(FileName As String | DirectoryName As String)"
-msgstr ""
-
-#. J`nQ
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"hd_id3154126\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. C#o)
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"par_id3150769\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr ""
-
-#. .L1G
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"hd_id3153770\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. LLQW
-#: 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 ""
-
-#. Mm7J
-#: 03020415.xhp
-msgctxt ""
-"03020415.xhp\n"
-"hd_id3149664\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. qali
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Organizing Libraries and Modules"
-msgstr ""
-
-#. msVv
-#: 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 ""
-
-#. swMJ
-#: 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 ""
-
-#. ]aYp
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3150868\n"
-"4\n"
-"help.text"
-msgid "Organizing Libraries"
-msgstr ""
-
-#. OuP%
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3125864\n"
-"5\n"
-"help.text"
-msgid "Creating a New Library"
-msgstr ""
-
-#. mPjD
-#: 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 ""
-
-#. PL?O
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3153726\n"
-"8\n"
-"help.text"
-msgid "Click the <emph>Libraries</emph> tab."
-msgstr ""
-
-#. (9Sk
-#: 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 ""
-
-#. ;Pq0
-#: 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 ""
-
-#. 8B{M
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3147394\n"
-"48\n"
-"help.text"
-msgid "Import a Library"
-msgstr ""
-
-#. XFVG
-#: 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 ""
-
-#. %|vY
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3146972\n"
-"50\n"
-"help.text"
-msgid "Click the <emph>Libraries</emph> tab."
-msgstr ""
-
-#. DEpF
-#: 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 ""
-
-#. Q1RZ
-#: 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 ""
-
-#. [PfH
-#: 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 ""
-
-#. `lOY
-#: 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 ""
-
-#. P/~I
-#: 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 ""
-
-#. K-H^
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3147004\n"
-"56\n"
-"help.text"
-msgid "Click <emph>OK</emph> to import the library."
-msgstr ""
-
-#. }9kR
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3159099\n"
-"17\n"
-"help.text"
-msgid "Export a Library"
-msgstr ""
-
-#. Y02S
-#: 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 ""
-
-#. U=g}
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3147006\n"
-"71\n"
-"help.text"
-msgid "Click the <emph>Libraries</emph> tab."
-msgstr ""
-
-#. $$Z|
-#: 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 ""
-
-#. T9Ln
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3147008\n"
-"73\n"
-"help.text"
-msgid "Click <emph>Export...</emph>"
-msgstr ""
-
-#. :qm2
-#: 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 ""
-
-#. #o0E
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3147010\n"
-"75\n"
-"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr ""
-
-#. q%7[
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3147011\n"
-"76\n"
-"help.text"
-msgid "Select where you want your library exported."
-msgstr ""
-
-#. EgT/
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3147012\n"
-"77\n"
-"help.text"
-msgid "Click <emph>Save</emph> to export the library."
-msgstr ""
-
-#. ,,=|
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3159100\n"
-"17\n"
-"help.text"
-msgid "Deleting a Library"
-msgstr ""
-
-#. +E_6
-#: 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 ""
-
-#. D08Z
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3146808\n"
-"57\n"
-"help.text"
-msgid "Click the <emph>Libraries</emph> tab."
-msgstr ""
-
-#. }S%q
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3158212\n"
-"58\n"
-"help.text"
-msgid "Select the library to be deleted from the list."
-msgstr ""
-
-#. TA!q
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3150361\n"
-"20\n"
-"help.text"
-msgid "Click <emph>Delete</emph>."
-msgstr ""
-
-#. ,K,V
-#: 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 ""
-
-#. 3L1.
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3148868\n"
-"59\n"
-"help.text"
-msgid "You cannot delete the default library named \"Standard\"."
-msgstr ""
-
-#. Lf7h
-#: 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 ""
-
-#. iN[6
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3147070\n"
-"21\n"
-"help.text"
-msgid "Organizing Modules and Dialogs"
-msgstr ""
-
-#. 8?ao
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3155265\n"
-"61\n"
-"help.text"
-msgid "Creating a New Module or Dialog"
-msgstr ""
-
-#. rWdh
-#: 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 ""
-
-#. .qYF
-#: 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 ""
-
-#. 0n|d
-#: 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 ""
-
-#. G]M@
-#: 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 ""
-
-#. l~Nj
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3152872\n"
-"25\n"
-"help.text"
-msgid "Renaming a Module or Dialog"
-msgstr ""
-
-#. 6H46
-#: 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 ""
-
-#. f-Tk
-#: 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 ""
-
-#. (W9p
-#: 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 ""
-
-#. 8:An
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3155526\n"
-"28\n"
-"help.text"
-msgid "Press Enter to confirm your changes."
-msgstr ""
-
-#. Bp+R
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3146963\n"
-"29\n"
-"help.text"
-msgid "Deleting a Module or Dialog"
-msgstr ""
-
-#. bG23
-#: 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 ""
-
-#. H}Pj
-#: 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 ""
-
-#. hgU[
-#: 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 ""
-
-#. FcC%
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3147248\n"
-"32\n"
-"help.text"
-msgid "Click <emph>Delete</emph>."
-msgstr ""
-
-#. p0_s
-#: 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 ""
-
-#. 0@-2
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3151392\n"
-"33\n"
-"help.text"
-msgid "Organizing Projects among Documents or Templates"
-msgstr ""
-
-#. ~ze}
-#: 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 ""
-
-#. rG\E
-#: 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 ""
-
-#. @]R$
-#: 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 ""
-
-#. (x-*
-#: 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 ""
-
-#. eMk|
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"tit\n"
-"help.text"
-msgid "CurDir Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. uJw/
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"bm_id3153126\n"
-"help.text"
-msgid "<bookmark_value>CurDir function</bookmark_value>"
-msgstr "<bookmark_value>Chr ფუნქცია</bookmark_value>"
-
-#. ?I1Y
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"hd_id3153126\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020403.xhp\">CurDir Function [Runtime]</link>"
-msgstr ""
-
-#. qaD@
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"par_id3156343\n"
-"2\n"
-"help.text"
-msgid "Returns a variant string that represents the current path of the specified drive."
-msgstr ""
-
-#. $iX6
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"hd_id3149457\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. I:!1
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"par_id3153381\n"
-"4\n"
-"help.text"
-msgid "CurDir [(Text As String)]"
-msgstr "LTrim (Text As String)"
-
-#. Ej$E
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"hd_id3154366\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. OG7l
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"par_id3156281\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "სტრიქონები"
-
-#. R+,b
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"hd_id3156423\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. Oi{*
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"par_id3153193\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 ""
-
-#. iLF^
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"par_id3155133\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 ""
-
-#. S?AJ
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"par_id3150010\n"
-"10\n"
-"help.text"
-msgid "This function is not case-sensitive."
-msgstr ""
-
-#. 8aCU
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"hd_id3155411\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. nbp_
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"tit\n"
-"help.text"
-msgid "Log Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. 4z--
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"bm_id3149416\n"
-"help.text"
-msgid "<bookmark_value>Log function</bookmark_value>"
-msgstr "<bookmark_value>Len ფუნქცია</bookmark_value>"
-
-#. O!ZU
-#: 03080202.xhp
-#, fuzzy
-msgctxt ""
-"03080202.xhp\n"
-"hd_id3149416\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. gJAD
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"par_id3145066\n"
-"2\n"
-"help.text"
-msgid "Returns the natural logarithm of a number."
-msgstr ""
-
-#. V9I-
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"hd_id3159414\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. |Ki8
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"par_id3154760\n"
-"4\n"
-"help.text"
-msgid "Log (Number)"
-msgstr ""
-
-#. MW9A
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"hd_id3149457\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. rx$}
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"par_id3150791\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr ""
-
-#. @}Zb
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"hd_id3151211\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. [XD\
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"par_id3151041\n"
-"8\n"
-"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the natural logarithm for."
-msgstr ""
-
-#. [CrG
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"par_id3150869\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 ""
-
-#. \vL_
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"par_id3153968\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 ""
-
-#. MXFO
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"par_id3145420\n"
-"11\n"
-"help.text"
-msgid "Log n(x) = Log(x) / Log(n)"
-msgstr ""
-
-#. LXj3
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"hd_id3155131\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 4ZMa
-#: 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 ""
-
-#. u3Ax
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"tit\n"
-"help.text"
-msgid "IIf Statement [Runtime]"
-msgstr ""
-
-#. Z`dN
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"bm_id3155420\n"
-"help.text"
-msgid "<bookmark_value>IIf statement</bookmark_value>"
-msgstr "<bookmark_value>LSet განაცხადი</bookmark_value>"
-
-#. G.]I
-#: 03090103.xhp
-#, fuzzy
-msgctxt ""
-"03090103.xhp\n"
-"hd_id3155420\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"IIf Statement [Runtime]\">IIf Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. 5;M1
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"par_id3145610\n"
-"2\n"
-"help.text"
-msgid "Returns one of two possible function results, depending on the logical value of the evaluated expression."
-msgstr ""
-
-#. |Msl
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"hd_id3159413\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. wDDm
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"par_id3147560\n"
-"4\n"
-"help.text"
-msgid "IIf (Expression, ExpressionTrue, ExpressionFalse)"
-msgstr ""
-
-#. ]Vpm
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"hd_id3150541\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. k.8C
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"par_id3153381\n"
-"6\n"
-"help.text"
-msgid "<emph>Expression:</emph> Any expression that you want to evaluate. If the expression evaluates to <emph>True</emph>, the function returns the result of ExpressionTrue, otherwise it returns the result of ExpressionFalse."
-msgstr ""
-
-#. OgyR
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"par_id3150870\n"
-"7\n"
-"help.text"
-msgid "<emph>ExpressionTrue, ExpressionFalse:</emph> Any expression, one of which will be returned as the function result, depending on the logical evaluation."
-msgstr ""
-
-#. eKDx
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"tit\n"
-"help.text"
-msgid "Switch Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. .3@(
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"bm_id3148554\n"
-"help.text"
-msgid "<bookmark_value>Switch function</bookmark_value>"
-msgstr "<bookmark_value>Str ფუნქცია</bookmark_value>"
-
-#. 3=88
-#: 03090410.xhp
-#, fuzzy
-msgctxt ""
-"03090410.xhp\n"
-"hd_id3148554\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. Ndi(
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"par_id3148522\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 ""
-
-#. R;j,
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"hd_id3154863\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. e_XP
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"par_id3155934\n"
-"4\n"
-"help.text"
-msgid "Switch (Expression1, Value1[, Expression2, Value2[..., Expression_n, Value_n]])"
-msgstr ""
-
-#. :E+8
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"hd_id3149119\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. s%Y(
-#: 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 ""
-
-#. 5Kpl
-#: 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>Expression1, Expression2:</emph> ნებისმიერი ციფრული სიდიდეები ან სტრიქონები, რომლებიც გინდათ შეადაროთ."
-
-#. Bl=l
-#: 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 ""
-
-#. A+2b
-#: 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 ""
-
-#. #JHo
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"hd_id3159157\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. XFem
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"par_id3149579\n"
-"13\n"
-"help.text"
-msgid "sGender = GetGenderIndex( \"John\" )"
-msgstr ""
-
-#. 5q-x
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"par_id3153361\n"
-"18\n"
-"help.text"
-msgid "GetGenderIndex = Switch(sName = \"Jane\", \"female\", sName = \"John\", \"male\")"
-msgstr ""
-
-#. xWtf
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"tit\n"
-"help.text"
-msgid "QBColor Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. _;[p
-#: 03010304.xhp
-#, fuzzy
-msgctxt ""
-"03010304.xhp\n"
-"hd_id3149670\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. K8-Z
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3150359\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 ""
-
-#. fsHX
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"hd_id3154140\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. R;\S
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3151042\n"
-"4\n"
-"help.text"
-msgid "QBColor (ColorNumber As Integer)"
-msgstr ""
-
-#. )m7t
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"hd_id3145172\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. r~G\
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3154685\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr ""
-
-#. KbV1
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"hd_id3156560\n"
-"7\n"
-"help.text"
-msgid "Parameter:"
-msgstr ""
-
-#. \;{r
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3161832\n"
-"8\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 ""
-
-#. L`5)
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3147318\n"
-"9\n"
-"help.text"
-msgid "<emph>ColorNumber</emph> can be assigned the following values:"
-msgstr ""
-
-#. =I;?
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3152576\n"
-"10\n"
-"help.text"
-msgid "0 : Black"
-msgstr ""
-
-#. },S\
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3146975\n"
-"11\n"
-"help.text"
-msgid "1 : Blue"
-msgstr ""
-
-#. GP_C
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3151116\n"
-"12\n"
-"help.text"
-msgid "2 : Green"
-msgstr ""
-
-#. Mg{r
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3155412\n"
-"13\n"
-"help.text"
-msgid "3 : Cyan"
-msgstr ""
-
-#. 7]ZD
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3155306\n"
-"14\n"
-"help.text"
-msgid "4 : Red"
-msgstr ""
-
-#. HlQZ
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3153364\n"
-"15\n"
-"help.text"
-msgid "5 : Magenta"
-msgstr ""
-
-#. :${o
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3146119\n"
-"16\n"
-"help.text"
-msgid "6 : Yellow"
-msgstr ""
-
-#. 9KFI
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3154730\n"
-"17\n"
-"help.text"
-msgid "7 : White"
-msgstr ""
-
-#. E4jJ
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3153877\n"
-"18\n"
-"help.text"
-msgid "8 : Gray"
-msgstr ""
-
-#. 5#s\
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3147124\n"
-"19\n"
-"help.text"
-msgid "9 : Light Blue"
-msgstr ""
-
-#. K.l,
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3145646\n"
-"20\n"
-"help.text"
-msgid "10 : Light Green"
-msgstr ""
-
-#. bR*(
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3149958\n"
-"21\n"
-"help.text"
-msgid "11 : Light Cyan"
-msgstr ""
-
-#. Z.3/
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3154943\n"
-"22\n"
-"help.text"
-msgid "12 : Light Red"
-msgstr ""
-
-#. !{[D
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3150715\n"
-"23\n"
-"help.text"
-msgid "13 : Light Magenta"
-msgstr ""
-
-#. bdzd
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3146970\n"
-"24\n"
-"help.text"
-msgid "14 : Light Yellow"
-msgstr ""
-
-#. p`D#
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3150750\n"
-"25\n"
-"help.text"
-msgid "15 : Bright White"
-msgstr ""
-
-#. {CCn
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3146914\n"
-"26\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 ""
-
-#. |597
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"hd_id3148406\n"
-"27\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. /*$1
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"par_id3149566\n"
-"33\n"
-"help.text"
-msgid "MsgBox stext,0,\"Color \" & iColor"
-msgstr ""
-
-#. MCTP
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"tit\n"
-"help.text"
-msgid "WeekDay Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. U)N@
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"bm_id3153127\n"
-"help.text"
-msgid "<bookmark_value>WeekDay function</bookmark_value>"
-msgstr "<bookmark_value>Va lფუნქცია</bookmark_value>"
-
-#. \[1l
-#: 03030105.xhp
-#, fuzzy
-msgctxt ""
-"03030105.xhp\n"
-"hd_id3153127\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030105.xhp\" name=\"WeekDay Function [Runtime]\">WeekDay Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. Ir|M
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3146795\n"
-"2\n"
-"help.text"
-msgid "Returns the number corresponding to the weekday represented by a serial date number that is generated by the DateSerial or the DateValue function."
-msgstr ""
-
-#. EGfU
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"hd_id3145068\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. %Zp{
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3149655\n"
-"4\n"
-"help.text"
-msgid "WeekDay (Number)"
-msgstr ""
-
-#. ?1`$
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"hd_id3148799\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. {F[)
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3154125\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr ""
-
-#. f?+Z
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"hd_id3150768\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. +b1j
-#: 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 ""
-
-#. D%dz
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3159254\n"
-"9\n"
-"help.text"
-msgid "The following example determines the day of the week using the WeekDay function when you enter a date."
-msgstr ""
-
-#. .g5#
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"hd_id3148616\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. w+Y(
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3148576\n"
-"13\n"
-"help.text"
-msgid "' Return And display the day of the week"
-msgstr ""
-
-#. SX7#
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3151117\n"
-"16\n"
-"help.text"
-msgid "sDay=\"Sunday\""
-msgstr ""
-
-#. :?Uh
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3153952\n"
-"18\n"
-"help.text"
-msgid "sDay=\"Monday\""
-msgstr ""
-
-#. l[k*
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3153157\n"
-"20\n"
-"help.text"
-msgid "sDay=\"Tuesday\""
-msgstr ""
-
-#. +.CF
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3154942\n"
-"22\n"
-"help.text"
-msgid "sDay=\"Wednesday\""
-msgstr ""
-
-#. (uJb
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3155416\n"
-"24\n"
-"help.text"
-msgid "sDay=\"Thursday\""
-msgstr ""
-
-#. WZ3:
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3154015\n"
-"26\n"
-"help.text"
-msgid "sDay=\"Friday\""
-msgstr ""
-
-#. ^.r6
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3153707\n"
-"28\n"
-"help.text"
-msgid "sDay=\"Saturday\""
-msgstr ""
-
-#. 3:~f
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3148993\n"
-"30\n"
-"help.text"
-msgid "MsgBox \"\" + sDay,64,\"Today Is\""
-msgstr ""
-
-#. o7kz
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"tit\n"
-"help.text"
-msgid "Environ Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. `6?t
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"bm_id3155364\n"
-"help.text"
-msgid "<bookmark_value>Environ function</bookmark_value>"
-msgstr "<bookmark_value>Environ ფუნქცია</bookmark_value>"
-
-#. `CPU
-#: 03130800.xhp
-#, fuzzy
-msgctxt ""
-"03130800.xhp\n"
-"hd_id3155364\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03130800.xhp\" name=\"Environ Function [Runtime]\">Environ Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. ^;cz
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"par_id3145090\n"
-"2\n"
-"help.text"
-msgid "Returns the value of an environment variable as a string. Environment variables are dependent on the type of operating system that you have."
-msgstr "აბრუნებს გარემოს ცვლადის მნიშვნელობას როგორც სტრინგს. გარემოს ცვლადები დამოკიდებულები არიან თქვენი ოპერაციული სისტემის ტიპზე."
-
-#. {plO
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"hd_id3150670\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. L_au
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"par_id3159176\n"
-"5\n"
-"help.text"
-msgid "Environ (Environment As String)"
-msgstr "Environ (Environment As String)"
-
-#. x(Zn
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"hd_id3159157\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. lPJF
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"par_id3148473\n"
-"7\n"
-"help.text"
-msgid "String"
-msgstr "სტრიქონები"
-
-#. $*kl
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"hd_id3145609\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. KCCL
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"par_id3159414\n"
-"9\n"
-"help.text"
-msgid "Environment: Environment variable that you want to return the value for."
-msgstr "Environment: გარემოს ცვლადი, რომელისთვისაც გნებავთ დააბრუნოთ მნიშვნელობა."
-
-#. ^FcI
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"hd_id3148663\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. ,fp@
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"par_id3145419\n"
-"15\n"
-"help.text"
-msgid "MsgBox \"'\" & sTemp & \"'\" ,64,\"Directory of temporary files:\""
-msgstr "MsgBox \"'\" & sTemp & \"'\" ,64,\"დროებითი ფაილების დირექტორია:\""
-
-#. *27t
-#: 03020200.xhp
-msgctxt ""
-"03020200.xhp\n"
-"tit\n"
-"help.text"
-msgid "File Input/Output Functions"
-msgstr ""
-
-#. Z$bL
-#: 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 ""
-
-#. W)3#
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Error Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. J`3j
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"bm_id3159413\n"
-"help.text"
-msgid "<bookmark_value>Error function</bookmark_value>"
-msgstr "<bookmark_value>IsError ფუნქცია</bookmark_value>"
-
-#. uUil
-#: 03050300.xhp
-#, fuzzy
-msgctxt ""
-"03050300.xhp\n"
-"hd_id3159413\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error Function [Runtime]\">Error Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. eepP
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"par_id3148663\n"
-"2\n"
-"help.text"
-msgid "Returns the error message that corresponds to a given error code."
-msgstr ""
-
-#. P3U*
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"hd_id3153379\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. Id#@
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"par_id3154366\n"
-"4\n"
-"help.text"
-msgid "Error (Expression)"
-msgstr "Str (გამოსახულება)"
-
-#. X]y/
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"hd_id3145173\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. *]@p
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"par_id3154125\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "სტრიქონები"
-
-#. 8)sH
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"hd_id3150869\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. ?c#R
-#: 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 ""
-
-#. li;V
-#: 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 ""
-
-#. Xs$]
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"tit\n"
-"help.text"
-msgid "RmDir Statement [Runtime]"
-msgstr ""
-
-#. m{V6
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"bm_id3148947\n"
-"help.text"
-msgid "<bookmark_value>RmDir statement</bookmark_value>"
-msgstr "<bookmark_value>RSet დებულება</bookmark_value>"
-
-#. 4r^E
-#: 03020413.xhp
-#, fuzzy
-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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. {DB\
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"par_id3149457\n"
-"2\n"
-"help.text"
-msgid "Deletes an existing directory from a data medium."
-msgstr ""
-
-#. [*b!
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3153361\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 1Fh1
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"par_id3154367\n"
-"4\n"
-"help.text"
-msgid "RmDir Text As String"
-msgstr "RTrim (Text As String)"
-
-#. !jBm
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. Lo+P
-#: 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 ""
-
-#. )_((
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"par_id3153192\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 ""
-
-#. J0+e
-#: 03020413.xhp
-msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 5unp
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"tit\n"
-"help.text"
-msgid "Loc Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. (LT+
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"bm_id3148663\n"
-"help.text"
-msgid "<bookmark_value>Loc function</bookmark_value>"
-msgstr "<bookmark_value>Asc ფუნქცია</bookmark_value>"
-
-#. Ih^f
-#: 03020302.xhp
-#, fuzzy
-msgctxt ""
-"03020302.xhp\n"
-"hd_id3148663\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020302.xhp\" name=\"Loc Function [Runtime]\">Loc Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. I9zU
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"par_id3154138\n"
-"2\n"
-"help.text"
-msgid "Returns the current position in an open file."
-msgstr ""
-
-#. Y(_f
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"hd_id3156422\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. dJiE
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"par_id3150768\n"
-"4\n"
-"help.text"
-msgid "Loc(FileNumber)"
-msgstr ""
-
-#. 9=h;
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"hd_id3150440\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. ;o;.
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"par_id3152578\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr ""
-
-#. nJ4!
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"hd_id3152462\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. jSLg
-#: 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 ""
-
-#. FQTH
-#: 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 ""
-
-#. 1Oh5
-#: 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 ""
-
-#. :+cT
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefErr Statement [Runtime]"
-msgstr ""
-
-#. )$\i
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"bm_id8177739\n"
-"help.text"
-msgid "<bookmark_value>DefErr statement</bookmark_value>"
-msgstr "<bookmark_value>DefErr განცხადება</bookmark_value>"
-
-#. 6dqk
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN1057D\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03101120.xhp\">DefErr Statement [Runtime]</link>"
-msgstr ""
-
-#. Dlbk
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN1058D\n"
-"help.text"
-msgid "If no type-declaration character or keyword is specified, the DefErr statement sets the default variable type, according to a letter range."
-msgstr "თუ ტიპის გამოცხადების ასო-ნიშანი ან სიტყვა-გასაღები მითითებული არ არის, DefErr განცხადება საწყისი ცვლადის ტიპს აყენებს ასოთა რანგის მიხედვით."
-
-#. CSP0
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN10590\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. v-4v
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN10594\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr ""
-
-#. 4^va
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN10597\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. M9lg
-#: 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 ""
-
-#. .I;j
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105A2\n"
-"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr ""
-
-#. ^qP=
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105A9\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr ""
-
-#. Xl4Y
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105B0\n"
-"help.text"
-msgid "<emph>DefErr:</emph> Error"
-msgstr "<emph>DefErr:</emph> შეცდომა"
-
-#. nHhz
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105B7\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. \#If
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105BB\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr ""
-
-#. r(KR
-#: 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 არის ნაგულისხმევი შეცდომის ცვლადი"
-
-#. _{Fm
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Imp-Operator [Runtime]"
-msgstr ""
-
-#. -O$P
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"bm_id3156024\n"
-"help.text"
-msgid "<bookmark_value>Imp operator (logical)</bookmark_value>"
-msgstr ""
-
-#. |V{n
-#: 03060300.xhp
-#, fuzzy
-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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. }k|K
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"par_id3148947\n"
-"2\n"
-"help.text"
-msgid "Performs a logical implication on two expressions."
-msgstr ""
-
-#. 6%L+
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"hd_id3148664\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. _jB{
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"par_id3149656\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 Imp Expression2"
-msgstr ""
-
-#. [HH=
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"hd_id3151212\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. Wz#G
-#: 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 ""
-
-#. +a?)
-#: 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 ""
-
-#. ;Y$6
-#: 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 ""
-
-#. F8X*
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"par_id3163710\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 ""
-
-#. uqRM
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"hd_id3147318\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. %-Oe
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"par_id3145750\n"
-"15\n"
-"help.text"
-msgid "vOut = A > B Imp B > C ' returns -1"
-msgstr ""
-
-#. ud0,
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"par_id3156441\n"
-"16\n"
-"help.text"
-msgid "vOut = B > A Imp B > C ' returns -1"
-msgstr ""
-
-#. y7Sz
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"par_id3152596\n"
-"17\n"
-"help.text"
-msgid "vOut = A > B Imp B > D ' returns 0"
-msgstr ""
-
-#. z?Gq
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"par_id3154942\n"
-"18\n"
-"help.text"
-msgid "vOut = (B > D Imp B > A) ' returns -1"
-msgstr ""
-
-#. %7dJ
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"par_id3154492\n"
-"19\n"
-"help.text"
-msgid "vOut = B Imp A ' returns -1"
-msgstr ""
-
-#. KKSB
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"tit\n"
-"help.text"
-msgid "CVar Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. .qLY
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"bm_id2338633\n"
-"help.text"
-msgid "<bookmark_value>CVar function</bookmark_value>"
-msgstr "<bookmark_value>CVar ფუნქცია</bookmark_value>"
-
-#. h9lv
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN1054B\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03100070.xhp\">CVar Function [Runtime]</link>"
-msgstr ""
-
-#. ~Q/R
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN1055B\n"
-"help.text"
-msgid "Converts a string expression or numeric expression to a variant expression."
-msgstr "გადაყავს სტრინგული ან რიცხვითი გამოსახულება განსხვავებულ გამოსახულებად."
-
-#. )X%G
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN1055E\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. D#-1
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN10562\n"
-"help.text"
-msgid "CVar(Expression)"
-msgstr "CVar(Expression)"
-
-#. 5l]p
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN10565\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. f^7Y
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN10569\n"
-"help.text"
-msgid "Variant."
-msgstr ""
-
-#. ={M:
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN1056C\n"
-"help.text"
-msgid "Parameter:"
-msgstr ""
-
-#. OH[v
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN10570\n"
-"help.text"
-msgid "Expression: Any string or numeric expression that you want to convert."
-msgstr "<emph>ტექსტი:</emph> თქვენთვის რედაქტირებისთვის სასურველი ნებისმიერი ტექსტური გამოსახულება."
-
-#. /H.Y
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Mod-Operator [Runtime]"
-msgstr ""
-
-#. h4uc
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"bm_id3150669\n"
-"help.text"
-msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
-msgstr ""
-
-#. tpFQ
-#: 03070600.xhp
-#, fuzzy
-msgctxt ""
-"03070600.xhp\n"
-"hd_id3150669\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. Ck2L
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3148686\n"
-"2\n"
-"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr ""
-
-#. R8@z
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"hd_id3146795\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. C].}
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3147560\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr ""
-
-#. zWL7
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"hd_id3149657\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. K?.L
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3153380\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr ""
-
-#. PyKi
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"hd_id3154365\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. F6FR
-#: 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 ""
-
-#. ^sg)
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3151042\n"
-"9\n"
-"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Expression1, Expression2:</emph> ნებისმიერი ციფრული სიდიდეები ან სტრიქონები, რომლებიც გინდათ შეადაროთ."
-
-#. qK0e
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"hd_id3147287\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. DAVC
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3161832\n"
-"12\n"
-"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr ""
-
-#. W(B?
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3146922\n"
-"13\n"
-"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr ""
-
-#. kQ*W
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3145273\n"
-"14\n"
-"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr ""
-
-#. P_$T
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3150011\n"
-"15\n"
-"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr ""
-
-#. X=fb
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3149483\n"
-"16\n"
-"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr ""
-
-#. Q6s)
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3151114\n"
-"17\n"
-"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr ""
-
-#. 2r$T
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"tit\n"
-"help.text"
-msgid "FileCopy Statement [Runtime]"
-msgstr ""
-
-#. 1#A\
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"bm_id3154840\n"
-"help.text"
-msgid "<bookmark_value>FileCopy statement</bookmark_value>"
-msgstr "<bookmark_value>Beep მტკიცებულება</bookmark_value>"
-
-#. 3DfO
-#: 03020406.xhp
-#, fuzzy
-msgctxt ""
-"03020406.xhp\n"
-"hd_id3154840\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. _*#T
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"par_id3149497\n"
-"2\n"
-"help.text"
-msgid "Copies a file."
-msgstr ""
-
-#. Soc{
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"hd_id3147443\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. :s_E
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"par_id3146957\n"
-"4\n"
-"help.text"
-msgid "FileCopy TextFrom As String, TextTo As String"
-msgstr ""
-
-#. $U-z
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"hd_id3153825\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. )KT~
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"par_id3155390\n"
-"6\n"
-"help.text"
-msgid "<emph>TextFrom:</emph> Any string expression that specifies the name of the file that you want to copy. The expression can contain optional path and drive information. If you want, you can enter a path in <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr ""
-
-#. 6j57
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"par_id3150669\n"
-"7\n"
-"help.text"
-msgid "<emph>TextTo:</emph> Any string expression that specifies where you want to copy the source file to. The expression can contain the destination drive, the path, and file name, or the path in URL notation."
-msgstr ""
-
-#. l\mp
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"par_id3150791\n"
-"8\n"
-"help.text"
-msgid "You can only use the FileCopy statement to copy files that are not opened."
-msgstr ""
-
-#. =A3r
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"hd_id3125863\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. VlwV
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefInt Statement [Runtime]"
-msgstr ""
-
-#. 7b8!
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"bm_id3149811\n"
-"help.text"
-msgid "<bookmark_value>DefInt statement</bookmark_value>"
-msgstr "<bookmark_value>DefSng განცხადება</bookmark_value>"
-
-#. NT~S
-#: 03101500.xhp
-#, fuzzy
-msgctxt ""
-"03101500.xhp\n"
-"hd_id3149811\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. M%vc
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"par_id3149762\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 ""
-
-#. T[4C
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"hd_id3148686\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. ?|oE
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"par_id3156023\n"
-"4\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr ""
-
-#. t7,x
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"hd_id3156344\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. iRrt
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"par_id3147560\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 ""
-
-#. F7I_
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"par_id3150398\n"
-"7\n"
-"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr ""
-
-#. Sn_3
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"par_id3154365\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr ""
-
-#. rN68
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"par_id3125863\n"
-"9\n"
-"help.text"
-msgid "<emph>DefInt:</emph> Integer"
-msgstr ""
-
-#. !Ogk
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"hd_id3154123\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. \Tl@
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"par_id3151042\n"
-"12\n"
-"help.text"
-msgid "' Prefix definitions for variable types"
-msgstr ""
-
-#. ?7^_
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"par_id3153728\n"
-"22\n"
-"help.text"
-msgid "iCount=200 ' iCount is an implicit integer variable"
-msgstr ""
-
-#. Gk7X
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"tit\n"
-"help.text"
-msgid "Seek Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. %kbY
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"bm_id3154367\n"
-"help.text"
-msgid "<bookmark_value>Seek function</bookmark_value>"
-msgstr "<bookmark_value>Shell ფუნქცია</bookmark_value>"
-
-#. 7sT#
-#: 03020304.xhp
-#, fuzzy
-msgctxt ""
-"03020304.xhp\n"
-"hd_id3154367\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek Function [Runtime]\">Seek Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. _~\w
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"par_id3156280\n"
-"2\n"
-"help.text"
-msgid "Returns the position for the next writing or reading in a file that was opened with the open statement."
-msgstr ""
-
-#. X[AZ
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"par_id3153194\n"
-"3\n"
-"help.text"
-msgid "For random access files, the Seek function returns the number of the next record to be read."
-msgstr ""
-
-#. U^jm
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"par_id3161831\n"
-"4\n"
-"help.text"
-msgid "For all other files, the function returns the byte position at which the next operation is to occur."
-msgstr ""
-
-#. _\+l
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"par_id3155854\n"
-"5\n"
-"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek\">Seek</link>."
-msgstr ""
-
-#. #=,+
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"hd_id3152460\n"
-"6\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. +0\/
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"par_id3145365\n"
-"7\n"
-"help.text"
-msgid "Seek (FileNumber)"
-msgstr ""
-
-#. @Q+}
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"hd_id3148575\n"
-"8\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. JOE@
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"par_id3159156\n"
-"9\n"
-"help.text"
-msgid "Long"
-msgstr ""
-
-#. F=1h
-#: 03020304.xhp
-msgctxt ""
-"03020304.xhp\n"
-"hd_id3149665\n"
-"10\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. {n[+
-#: 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 ""
-
-#. h_4u
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"tit\n"
-"help.text"
-msgid "Minute Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. Bd\*
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"bm_id3155419\n"
-"help.text"
-msgid "<bookmark_value>Minute function</bookmark_value>"
-msgstr "<bookmark_value>მარჯვენა ფუნქცია</bookmark_value>"
-
-#. QQ^8
-#: 03030202.xhp
-#, fuzzy
-msgctxt ""
-"03030202.xhp\n"
-"hd_id3155419\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute Function [Runtime]\">Minute Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. NQ4w
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"par_id3156344\n"
-"2\n"
-"help.text"
-msgid "Returns the minute of the hour that corresponds to the serial time value that is generated by the TimeSerial or the TimeValue function."
-msgstr ""
-
-#. \5a`
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"hd_id3154758\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. -$3q
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"par_id3149656\n"
-"4\n"
-"help.text"
-msgid "Minute (Number)"
-msgstr ""
-
-#. F55p
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"hd_id3148798\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. 3-mK
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"par_id3150449\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr ""
-
-#. l+%6
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"hd_id3153193\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. rxua
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"par_id3153969\n"
-"8\n"
-"help.text"
-msgid "<emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the minute value."
-msgstr ""
-
-#. 5Y5O
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"par_id3150869\n"
-"9\n"
-"help.text"
-msgid "This function is the opposite of the <emph>TimeSerial </emph>function. It returns the minute of the serial time value that is generated by the <emph>TimeSerial</emph> or the <emph>TimeValue </emph>function. For example, the expression:"
-msgstr ""
-
-#. )dWa
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"par_id3149262\n"
-"10\n"
-"help.text"
-msgid "Print Minute(TimeSerial(12,30,41))"
-msgstr ""
-
-#. iOBJ
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"par_id3148576\n"
-"11\n"
-"help.text"
-msgid "returns the value 30."
-msgstr ""
-
-#. ?RoA
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"hd_id3150010\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 3.o(
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"par_id3159154\n"
-"13\n"
-"help.text"
-msgid "Sub ExampleMinute"
-msgstr "Sub ExampleString"
-
-#. n\XY
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"par_id3146119\n"
-"14\n"
-"help.text"
-msgid "MsgBox \"The current minute is \"& Minute(Now)& \".\""
-msgstr ""
-
-#. BVb*
-#: 03030202.xhp
-msgctxt ""
-"03030202.xhp\n"
-"par_id3153726\n"
-"15\n"
-"help.text"
-msgid "end sub"
-msgstr ""
-
-#. *2]C
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Option Base Statement [Runtime]"
-msgstr ""
-
-#. j^W$
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"bm_id3155805\n"
-"help.text"
-msgid "<bookmark_value>Option Base statement</bookmark_value>"
-msgstr "<bookmark_value>Beep მტკიცებულება</bookmark_value>"
-
-#. *U{-
-#: 03103200.xhp
-#, fuzzy
-msgctxt ""
-"03103200.xhp\n"
-"hd_id3155805\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. =s)J
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"par_id3147242\n"
-"2\n"
-"help.text"
-msgid "Defines the default lower boundary for arrays as 0 or 1."
-msgstr ""
-
-#. R$18
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"hd_id3150771\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. {q!n
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"par_id3147573\n"
-"4\n"
-"help.text"
-msgid "Option Base { 0 | 1}"
-msgstr ""
-
-#. .%Uf
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"hd_id3145315\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. b*%/
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"par_id3147229\n"
-"6\n"
-"help.text"
-msgid "This statement must be added before the executable program code in a module."
-msgstr ""
-
-#. :023
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"hd_id3150870\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. g(cb
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"tit\n"
-"help.text"
-msgid "Sqr Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. k*k8
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"bm_id3156027\n"
-"help.text"
-msgid "<bookmark_value>Sqr function</bookmark_value>"
-msgstr "<bookmark_value>Str ფუნქცია</bookmark_value>"
-
-#. Wn)x
-#: 03080401.xhp
-#, fuzzy
-msgctxt ""
-"03080401.xhp\n"
-"hd_id3156027\n"
-"1\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. k)y:
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"par_id3147226\n"
-"2\n"
-"help.text"
-msgid "Calculates the square root of a numeric expression."
-msgstr ""
-
-#. iLvT
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"hd_id3143267\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. ;%u(
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"par_id3149415\n"
-"4\n"
-"help.text"
-msgid "Sqr (Number)"
-msgstr ""
-
-#. Qh_d
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"hd_id3156023\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. A[Sa
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"par_id3156343\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr ""
-
-#. VHkI
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"hd_id3147265\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. :7!}
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"par_id3149457\n"
-"8\n"
-"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the square root for."
-msgstr ""
-
-#. etHs
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"par_id3154365\n"
-"9\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 ""
-
-#. V(aP
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"hd_id3153192\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. G#ns
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"tit\n"
-"help.text"
-msgid "GetSystemTicks Function [Runtime]"
-msgstr ""
-
-#. JmsU
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"bm_id3147143\n"
-"help.text"
-msgid "<bookmark_value>GetSystemTicks function</bookmark_value>"
-msgstr "<bookmark_value>GetSystemTicks ფუნქცია</bookmark_value>"
-
-#. f/j-
-#: 03130700.xhp
-#, fuzzy
-msgctxt ""
-"03130700.xhp\n"
-"hd_id3147143\n"
-"1\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. 8eo2
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"par_id3153750\n"
-"2\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 "აბრუნებს ოპერაციული სისტემის მიერ მოწოდებულ სისტემური პულსების რიცხვს. ამ ფუნქციის გამოყენება შეგიძლიათ კონკრეტული პროცესების ოპტიმიზირებისთვის."
-
-#. 1)M[
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"hd_id3153311\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. iNXp
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"par_id3147242\n"
-"4\n"
-"help.text"
-msgid "GetSystemTicks()"
-msgstr "GetSystemTicks()"
-
-#. Yb.X
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"hd_id3149233\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. :MmI
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"par_id3149762\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr ""
-
-#. |vjc
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"hd_id3156152\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. kI}O
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"par_id3154938\n"
-"13\n"
-"help.text"
-msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
-msgstr ""
-
-#. ]FSS
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"tit\n"
-"help.text"
-msgid "If...Then...Else Statement [Runtime]"
-msgstr ""
-
-#. N?bi
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"bm_id3154422\n"
-"help.text"
-msgid "<bookmark_value>If statement</bookmark_value>"
-msgstr "<bookmark_value>LSet განაცხადი</bookmark_value>"
-
-#. eD}T
-#: 03090101.xhp
-#, fuzzy
-msgctxt ""
-"03090101.xhp\n"
-"hd_id3154422\n"
-"1\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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. }EFI
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"par_id3155555\n"
-"2\n"
-"help.text"
-msgid "Defines one or more statement blocks that you only want to execute if a given condition is True."
-msgstr ""
-
-#. o,L]
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"hd_id3146957\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. DH+A
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"par_id3153126\n"
-"4\n"
-"help.text"
-msgid "If condition=true Then Statement block [ElseIf condition=true Then] Statement block [Else] Statement block EndIf"
-msgstr ""
-
-#. V?NE
-#: 03090101.xhp
-msgctxt ""
-"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 ""
-
-#. Fd!s
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"hd_id3155419\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. P4xk
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"par_id3153062\n"
-"6\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 ""
-
-#. 41p`
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"par_id3153192\n"
-"7\n"
-"help.text"
-msgid "You can nest multiple <emph>If...Then</emph> statements."
-msgstr ""
-
-#. q)C%
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"par_id3154684\n"
-"8\n"
-"help.text"
-msgid "<emph>Else</emph> and <emph>ElseIf</emph> statements are optional."
-msgstr ""
-
-#. H,O~
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"par_id3152939\n"
-"9\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 ""
-
-#. )4p*
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"par_id3153951\n"
-"10\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 ""
-
-#. wJyu
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"hd_id3152576\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. +^+I
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"par_id3154490\n"
-"16\n"
-"help.text"
-msgid "sDate = InputBox(\"Enter the expiration date (MM.DD.YYYY)\")"
-msgstr ""
-
-#. *iaE
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"par_id3155601\n"
-"21\n"
-"help.text"
-msgid "MsgBox \"The expiration date has passed\""
-msgstr ""
-
-#. 2O_F
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"par_id3146912\n"
-"23\n"
-"help.text"
-msgid "MsgBox \"The expiration date has not yet passed\""
-msgstr ""
-
-#. bJo#
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"par_id3154754\n"
-"25\n"
-"help.text"
-msgid "MsgBox \"The expiration date is today\""
-msgstr ""
-
-#. KQy5
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"tit\n"
-"help.text"
-msgid "Space Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. 4e\A
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"bm_id3150499\n"
-"help.text"
-msgid "<bookmark_value>Space function</bookmark_value>"
-msgstr "<bookmark_value>სივრცითი ფუნქცია</bookmark_value>"
-
-#. 4SZO
-#: 03120201.xhp
-#, fuzzy
-msgctxt ""
-"03120201.xhp\n"
-"hd_id3150499\n"
-"1\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. %%/@
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"par_id3154927\n"
-"2\n"
-"help.text"
-msgid "Returns a string that consists of a specified amount of spaces."
-msgstr ""
-
-#. ENzK
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"hd_id3153394\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. ]rDk
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"par_id3143267\n"
-"4\n"
-"help.text"
-msgid "Space (n As Long)"
-msgstr "სივრცე (n როგორც გრძელი)"
-
-#. [Q9!
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"hd_id3147242\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. hP/B
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"par_id3149233\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "სტრიქონები"
-
-#. \I*\
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"hd_id3156152\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. KHr^
-#: 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 ""
-
-#. G-u{
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"hd_id3154760\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. [ohz
-#: 03120201.xhp
-#, fuzzy
-msgctxt ""
-"03120201.xhp\n"
-"par_id3154216\n"
-"18\n"
-"help.text"
-msgid "MsgBox sOut,0,\"Info:\""
-msgstr "msgBox sOut,0,\"ინფო:\""
-
-#. ud2N
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"tit\n"
-"help.text"
-msgid "DateSerial Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. (;mq
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"bm_id3157896\n"
-"help.text"
-msgid "<bookmark_value>DateSerial function</bookmark_value>"
-msgstr "<bookmark_value>DateDiff ფუნქცია</bookmark_value>"
-
-#. bGR8
-#: 03030101.xhp
-#, fuzzy
-msgctxt ""
-"03030101.xhp\n"
-"hd_id3157896\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030101.xhp\" name=\"DateSerial Function [Runtime]\">DateSerial Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. /C8R
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3143267\n"
-"2\n"
-"help.text"
-msgid "Returns a <emph>Date</emph> value for a specified year, month, or day."
-msgstr ""
-
-#. 6)x+
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"hd_id3147264\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 16Aq
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3149670\n"
-"4\n"
-"help.text"
-msgid "DateSerial (year, month, day)"
-msgstr ""
-
-#. YfZR
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"hd_id3150792\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. tfLz
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3150398\n"
-"6\n"
-"help.text"
-msgid "Date"
-msgstr ""
-
-#. Cg}F
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"hd_id3154141\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. |#.h
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3147229\n"
-"8\n"
-"help.text"
-msgid "<emph>Year:</emph> Integer expression that indicates a year. All values between 0 and 99 are interpreted as the years 1900-1999. For years that fall outside this range, you must enter all four digits."
-msgstr ""
-
-#. 0y5]
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3156280\n"
-"9\n"
-"help.text"
-msgid "<emph>Month:</emph> Integer expression that indicates the month of the specified year. The accepted range is from 1-12."
-msgstr ""
-
-#. CI!f
-#: 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 ""
-
-#. ~m2*
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3161832\n"
-"11\n"
-"help.text"
-msgid "The <emph>DateSerial function</emph> returns the number of days between December 30,1899 and the given date. You can use this function to calculate the difference between two dates."
-msgstr ""
-
-#. Vqg%
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3155306\n"
-"12\n"
-"help.text"
-msgid "The <emph>DateSerial function</emph> returns the data type Variant with VarType 7 (Date). Internally, this value is stored as a Double value, so that when the given date is 1.1.1900, the returned value is 2. Negative values correspond to dates before December 30, 1899 (not inclusive)."
-msgstr ""
-
-#. nxNr
-#: 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 ""
-
-#. AcPr
-#: 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 ""
-
-#. Kka:
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"hd_id3155411\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. }C@a
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3154942\n"
-"help.text"
-msgid "MsgBox lDate ' returns 23476"
-msgstr ""
-
-#. Zova
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3151074\n"
-"help.text"
-msgid "MsgBox sDate ' returns 04/09/1964"
-msgstr ""
-
-#. Bb:\
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"tit\n"
-"help.text"
-msgid "Seek Statement [Runtime]"
-msgstr ""
-
-#. *]FY
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"bm_id3159413\n"
-"help.text"
-msgid "<bookmark_value>Seek statement</bookmark_value>"
-msgstr "<bookmark_value>Beep მტკიცებულება</bookmark_value>"
-
-#. gPX9
-#: 03020305.xhp
-#, fuzzy
-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/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. F;:d
-#: 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 ""
-
-#. Y3*J
-#: 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 ""
-
-#. (nm_
-#: 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 ""
-
-#. j0uZ
-#: 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 ""
-
-#. vf6q
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"hd_id3145785\n"
-"6\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. JWE*
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"par_id3145273\n"
-"7\n"
-"help.text"
-msgid "Seek[#FileNumber], Position (As Long)"
-msgstr ""
-
-#. S.k*
-#: 03020305.xhp
-msgctxt ""
-"03020305.xhp\n"
-"hd_id3154321\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. 5~A;
-#: 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 ""
-
-#. (EY7
-#: 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 ""
-
-#. [MY-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"tit\n"
-"help.text"
-msgid "TimeValue Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. PsO_
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"bm_id3149670\n"
-"help.text"
-msgid "<bookmark_value>TimeValue function</bookmark_value>"
-msgstr "<bookmark_value>Va lფუნქცია</bookmark_value>"
-
-#. BlQX
-#: 03030206.xhp
-#, fuzzy
-msgctxt ""
-"03030206.xhp\n"
-"hd_id3149670\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. C38H
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3153361\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 ""
-
-#. )8tS
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"hd_id3154138\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 1fr:
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3156282\n"
-"4\n"
-"help.text"
-msgid "TimeValue (Text As String)"
-msgstr "Val (ტექსტი როგორც სტრიქონი)"
-
-#. mmV6
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"hd_id3153969\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. GY0]
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3156424\n"
-"6\n"
-"help.text"
-msgid "Date"
-msgstr ""
-
-#. B2h+
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"hd_id3145172\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. O!*I
-#: 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 ""
-
-#. T*dL
-#: 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 ""
-
-#. 0W]V
-#: 03030206.xhp
-msgctxt ""
-"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 ""
-
-#. cE7M
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3151117\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 ""
-
-#. iC1:
-#: 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 ""
-
-#. Q)]1
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"hd_id3145271\n"
-"13\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. zM_r
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3149378\n"
-"33\n"
-"help.text"
-msgid "a1 = \"start time\""
-msgstr ""
-
-#. 2oKl
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3145800\n"
-"34\n"
-"help.text"
-msgid "b1 = \"end time\""
-msgstr ""
-
-#. rmLY
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3151074\n"
-"35\n"
-"help.text"
-msgid "c1 = \"total time\""
-msgstr ""
-
-#. Z.y=
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"tit\n"
-"help.text"
-msgid "StrComp Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. CC\x
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"bm_id3156027\n"
-"help.text"
-msgid "<bookmark_value>StrComp function</bookmark_value>"
-msgstr "<bookmark_value>StrComp ფუნქცია</bookmark_value>"
-
-#. @MLN
-#: 03120403.xhp
-#, fuzzy
-msgctxt ""
-"03120403.xhp\n"
-"hd_id3156027\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/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. 0r40
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3155805\n"
-"2\n"
-"help.text"
-msgid "Compares two strings and returns an integer value that represents the result of the comparison."
-msgstr "ადარებს ორ სტრინგს და აბრუნებს ინტეგერის მნიშვნელობას რომელიც წარმოადგეს შედარების შედეგს."
-
-#. |X$;
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"hd_id3153345\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. kSHo
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3150503\n"
-"4\n"
-"help.text"
-msgid "StrComp (Text1 As String, Text2 As String[, Compare])"
-msgstr "StrComp (Text1 As String, Text2 As String[, Compare])"
-
-#. KfS*
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"hd_id3147574\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. $5X4
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3156152\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr ""
-
-#. O}wp
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"hd_id3150984\n"
-"7\n"
-"help.text"
-msgid "Parameter:"
-msgstr ""
-
-#. QH#C
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3153061\n"
-"8\n"
-"help.text"
-msgid "<emph>Text1:</emph> Any string expression"
-msgstr "<emph>ტექსტი1:</emph> ნებისმიერი სტრინგული გამოსახულება"
-
-#. SY/P
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3147560\n"
-"9\n"
-"help.text"
-msgid "<emph>Text2:</emph> Any string expression"
-msgstr "<emph>ტექსტი2:</emph> ნებისმიერი სტრინგული გამოსახულება"
-
-#. fRXe
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3146796\n"
-"10\n"
-"help.text"
-msgid "<emph>Compare:</emph> This optional parameter sets the comparison method. If Compare = 1, the string comparison is case-sensitive. If Compare = 0, no distinction is made between uppercase and lowercase letters."
-msgstr "<emph>Compare:</emph> პარამეტრი რომელიც აყენებს შედარების მეთოდს. თუ Compare = 1, სტრინგების შედარება განარჩევს დიდ და პატარა ასო-ნიშნებს. თუ Compare = 0, შედარება არ გაარჩევს დიდ და პატარა ასო-ნიშნებს."
-
-#. jbv%
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"hd_id3154940\n"
-"13\n"
-"help.text"
-msgid "Return value"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. jeqN
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3150358\n"
-"27\n"
-"help.text"
-msgid "If Text1 < Text2 the function returns -1"
-msgstr "თუ Text1 < Text2 ფუნქცია აბრუნებს -1"
-
-#. w9pI
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3151043\n"
-"28\n"
-"help.text"
-msgid "If Text1 = Text2 the function returns 0"
-msgstr "თუ Text1 = Text2 ფუნქცია აბრუნებს 0"
-
-#. yp$4
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3158410\n"
-"29\n"
-"help.text"
-msgid "If Text1 > Text2 the function returns 1"
-msgstr "თუ Text1 > Text2 ფუნქცია აბრუნებს 1"
-
-#. bG*e
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"hd_id3153968\n"
-"18\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. Uoks
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"tit\n"
-"help.text"
-msgid "Len Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. c.3*
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"bm_id3154136\n"
-"help.text"
-msgid "<bookmark_value>Len function</bookmark_value>"
-msgstr "<bookmark_value>Len ფუნქცია</bookmark_value>"
-
-#. +ZMF
-#: 03120402.xhp
-#, fuzzy
-msgctxt ""
-"03120402.xhp\n"
-"hd_id3154136\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120402.xhp\" name=\"Len Function [Runtime]\">Len Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. IQ1d
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"par_id3147576\n"
-"2\n"
-"help.text"
-msgid "Returns the number of characters in a string, or the number of bytes that are required to store a variable."
-msgstr "აბრუნებს სტრინგში ასო-ნიშნების რაოდენობას, ან ბაიტების რეოდენობას რომლებიც საჭიროა ცვლადის შენახვისთვის."
-
-#. @qQd
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"hd_id3159177\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. \hI]
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"par_id3150669\n"
-"4\n"
-"help.text"
-msgid "Len (Text As String)"
-msgstr "Len (Text As String)"
-
-#. $[PH
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"hd_id3148473\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. /jNM
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"par_id3143270\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr ""
-
-#. a8p6
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"hd_id3147531\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. SmD[
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"par_id3147265\n"
-"8\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string expression or a variable of another type."
-msgstr "<emph>ტექსტი:</emph> ნებისმიერი სხვა ტიპის სტრინგული გამოსახულება ან ცვლადი."
-
-#. olSh
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"hd_id3153360\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. u2;C
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"par_id3156214\n"
-"13\n"
-"help.text"
-msgid "MsgBox Len(sText) REM Returns 9"
-msgstr "MsgBox Len(sText) REM Returns 9"
-
-#. hsi1
-#: 03130600.xhp
-msgctxt ""
-"03130600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Wait Statement [Runtime]"
-msgstr ""
-
-#. kck9
-#: 03130600.xhp
-msgctxt ""
-"03130600.xhp\n"
-"bm_id3154136\n"
-"help.text"
-msgid "<bookmark_value>Wait statement</bookmark_value>"
-msgstr "<bookmark_value>Wait განცხადება</bookmark_value>"
-
-#. 0+Np
-#: 03130600.xhp
-#, fuzzy
-msgctxt ""
-"03130600.xhp\n"
-"hd_id3154136\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Wait Statement [Runtime]\">Wait Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. HF;2
-#: 03130600.xhp
-msgctxt ""
-"03130600.xhp\n"
-"par_id3149236\n"
-"2\n"
-"help.text"
-msgid "Interrupts the program execution for the amount of time that you specify in milliseconds."
-msgstr "მილიწამებში მითითებული დროის მანძილზე წყვეტს პროგრამის მუშაობას."
-
-#. !Ef:
-#: 03130600.xhp
-msgctxt ""
-"03130600.xhp\n"
-"hd_id3143229\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 2eYY
-#: 03130600.xhp
-msgctxt ""
-"03130600.xhp\n"
-"par_id3150669\n"
-"4\n"
-"help.text"
-msgid "Wait millisec"
-msgstr "Wait millisec"
-
-#. a#sq
-#: 03130600.xhp
-msgctxt ""
-"03130600.xhp\n"
-"hd_id3148943\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. ChBh
-#: 03130600.xhp
-msgctxt ""
-"03130600.xhp\n"
-"par_id3154924\n"
-"6\n"
-"help.text"
-msgid "<emph>millisec:</emph> Numeric expression that contains the amount of time (in milliseconds) to wait before the program is executed."
-msgstr "<emph>millisec:</emph> რიცხვითი გამოსახულება რომელიც შეიცავს დროს (მილიწამებში) რომლის გასვლის შემდეეგაც გაეშვება პროგრამა.."
-
-#. E)gJ
-#: 03130600.xhp
-msgctxt ""
-"03130600.xhp\n"
-"hd_id3150541\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. /=$e
-#: 03130600.xhp
-msgctxt ""
-"03130600.xhp\n"
-"par_id3156214\n"
-"13\n"
-"help.text"
-msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
-msgstr ""
-
-#. XIQ;
-#: 03010300.xhp
-msgctxt ""
-"03010300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Color Functions"
-msgstr ""
-
-#. P410
-#: 03010300.xhp
-#, fuzzy
-msgctxt ""
-"03010300.xhp\n"
-"hd_id3157896\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03010300.xhp\" name=\"Color Functions\">Color Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. 0IN)
-#: 03010300.xhp
-msgctxt ""
-"03010300.xhp\n"
-"par_id3155555\n"
-"2\n"
-"help.text"
-msgid "This section describes Runtime functions used to define colors."
-msgstr ""
-
-#. AmO,
-#: 03132100.xhp
-msgctxt ""
-"03132100.xhp\n"
-"tit\n"
-"help.text"
-msgid "GetGuiType Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. bl~d
-#: 03132100.xhp
-msgctxt ""
-"03132100.xhp\n"
-"bm_id3147143\n"
-"help.text"
-msgid "<bookmark_value>GetGuiType function</bookmark_value>"
-msgstr "<bookmark_value>GetGuiType ფუნქცია</bookmark_value>"
-
-#. Eh@c
-#: 03132100.xhp
-#, fuzzy
-msgctxt ""
-"03132100.xhp\n"
-"hd_id3155310\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Function [Runtime]\">GetGuiType Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. +W^,
-#: 03132100.xhp
-msgctxt ""
-"03132100.xhp\n"
-"par_id3152459\n"
-"2\n"
-"help.text"
-msgid "Returns a numerical value that specifies the graphical user interface."
-msgstr "აბრუნებს რიცხვით მნიშვნელობას, რომელიც განსაზღვრავს მომხმარებლის გრაფიკულ ინტერფეისს."
-
-#. Jz.t
-#: 03132100.xhp
-msgctxt ""
-"03132100.xhp\n"
-"par_id3153323\n"
-"3\n"
-"help.text"
-msgid "This runtime function is only provided for downward compatibility to previous versions. The return value is not defined in client-server environments."
-msgstr "გაშვების ფუნქცია მოწოდებულია მხოლოდ წინა ვერსიებთან შეთანხმების უზრუნველსაყოფად. დაბრუნებული მნიშვნელობა არ განისაზღვრება კლიენტ-სერვერულ გარემოებში."
-
-#. ?+CP
-#: 03132100.xhp
-msgctxt ""
-"03132100.xhp\n"
-"hd_id3154894\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. @Wct
-#: 03132100.xhp
-msgctxt ""
-"03132100.xhp\n"
-"par_id3147143\n"
-"5\n"
-"help.text"
-msgid "GetGUIType()"
-msgstr "GetGUIType()"
-
-#. %/_4
-#: 03132100.xhp
-msgctxt ""
-"03132100.xhp\n"
-"hd_id3149346\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. ;]ge
-#: 03132100.xhp
-msgctxt ""
-"03132100.xhp\n"
-"par_id3153748\n"
-"7\n"
-"help.text"
-msgid "Integer"
-msgstr ""
-
-#. e)M,
-#: 03132100.xhp
-msgctxt ""
-"03132100.xhp\n"
-"hd_id3149177\n"
-"8\n"
-"help.text"
-msgid "Return values:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. tCmZ
-#: 03132100.xhp
-msgctxt ""
-"03132100.xhp\n"
-"par_id3147242\n"
-"9\n"
-"help.text"
-msgid "1: Windows"
-msgstr "1: Windows"
-
-#. Z=|p
-#: 03132100.xhp
-msgctxt ""
-"03132100.xhp\n"
-"par_id3156152\n"
-"11\n"
-"help.text"
-msgid "4: UNIX"
-msgstr "4: UNIX"
-
-#. {F}:
-#: 03132100.xhp
-msgctxt ""
-"03132100.xhp\n"
-"hd_id3148685\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. F2{f
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Err Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. :SH}
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"bm_id3156343\n"
-"help.text"
-msgid "<bookmark_value>Err function</bookmark_value>"
-msgstr "<bookmark_value>CVErr ფუნქცია</bookmark_value>"
-
-#. lqLh
-#: 03050200.xhp
-#, fuzzy
-msgctxt ""
-"03050200.xhp\n"
-"hd_id3156343\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err Function [Runtime]\">Err Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. 7hEC
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"par_id3150541\n"
-"2\n"
-"help.text"
-msgid "Returns an error code that identifies the error that occurred during program execution."
-msgstr ""
-
-#. 9Z~W
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"hd_id3149656\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. lxdF
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"par_id3154123\n"
-"4\n"
-"help.text"
-msgid "Err"
-msgstr ""
-
-#. d/(7
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"hd_id3147229\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. ,dy5
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"par_id3150869\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr ""
-
-#. 7./6
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"hd_id3153193\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. B{QJ
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"par_id3149561\n"
-"8\n"
-"help.text"
-msgid "The Err function is used in error-handling routines to determine the error and the corrective action."
-msgstr ""
-
-#. OiQ;
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"hd_id3147317\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. AT:4
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"par_id3147426\n"
-"11\n"
-"help.text"
-msgid "On Error Goto ErrorHandler REM Set up error handler"
-msgstr ""
-
-#. ~\gy
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"par_id3149481\n"
-"14\n"
-"help.text"
-msgid "REM Error occurs due to non-existent file"
-msgstr ""
-
-#. iRjP
-#: 03050200.xhp
-msgctxt ""
-"03050200.xhp\n"
-"par_id3145646\n"
-"21\n"
-"help.text"
-msgid "MsgBox \"Error \" & Err & \": \" & Error$ + chr(13) + \"At line : \" + Erl + chr(13) + Now , 16 ,\"an error occurred\""
-msgstr ""
-
-#. H92G
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"tit\n"
-"help.text"
-msgid "FindObject Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. l~kA
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"bm_id3145136\n"
-"help.text"
-msgid "<bookmark_value>FindObject function</bookmark_value>"
-msgstr "<bookmark_value>CreateObject ფუნქცია</bookmark_value>"
-
-#. ;@tc
-#: 03103800.xhp
-#, fuzzy
-msgctxt ""
-"03103800.xhp\n"
-"hd_id3145136\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject Function [Runtime]\">FindObject Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. inX9
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3155341\n"
-"2\n"
-"help.text"
-msgid "Enables an object to be addressed at run-time as a string parameter through the object name."
-msgstr ""
-
-#. C=)n
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3150669\n"
-"3\n"
-"help.text"
-msgid "For example, the following command:"
-msgstr ""
-
-#. 7|dd
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3148473\n"
-"4\n"
-"help.text"
-msgid "MyObj.Prop1.Command = 5"
-msgstr ""
-
-#. z}9d
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3156023\n"
-"5\n"
-"help.text"
-msgid "corresponds to the command block:"
-msgstr ""
-
-#. q\f?
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3153896\n"
-"6\n"
-"help.text"
-msgid "Dim ObjVar as Object"
-msgstr ""
-
-#. *-#Y
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3154760\n"
-"7\n"
-"help.text"
-msgid "Dim ObjProp as Object"
-msgstr ""
-
-#. 9kw%
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3145069\n"
-"8\n"
-"help.text"
-msgid "ObjName As String = \"MyObj\""
-msgstr ""
-
-#. 5MFi
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3154939\n"
-"9\n"
-"help.text"
-msgid "ObjVar = FindObject( ObjName As String )"
-msgstr ""
-
-#. n/;m
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3150793\n"
-"10\n"
-"help.text"
-msgid "PropName As String = \"Prop1\""
-msgstr ""
-
-#. DR@*
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3154141\n"
-"11\n"
-"help.text"
-msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
-msgstr ""
-
-#. 5l1~
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3156424\n"
-"12\n"
-"help.text"
-msgid "ObjProp.Command = 5"
-msgstr ""
-
-#. pMYT
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3145420\n"
-"13\n"
-"help.text"
-msgid "This allows names to be dynamically created at run-time. For example:"
-msgstr ""
-
-#. G#=5
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3153104\n"
-"14\n"
-"help.text"
-msgid "\"TextEdit1\" to TextEdit5\" in a loop to create five control names."
-msgstr ""
-
-#. KR^6
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3150767\n"
-"15\n"
-"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">FindPropertyObject</link>"
-msgstr ""
-
-#. Sq4_
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"hd_id3150868\n"
-"16\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. -Dr{
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3151042\n"
-"17\n"
-"help.text"
-msgid "FindObject( ObjName As String )"
-msgstr ""
-
-#. +i2+
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"hd_id3159254\n"
-"18\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. COSr
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3150439\n"
-"19\n"
-"help.text"
-msgid "<emph>ObjName: </emph>String that specifies the name of the object that you want to address at run-time."
-msgstr ""
-
-#. X1SM
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"tit\n"
-"help.text"
-msgid "Lof Function [Runtime]"
-msgstr "Split Function [Runtime]"
-
-#. N+%!
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"bm_id3156024\n"
-"help.text"
-msgid "<bookmark_value>Lof function</bookmark_value>"
-msgstr "<bookmark_value>მარცხენა ფუნქცია</bookmark_value>"
-
-#. bLJ=
-#: 03020303.xhp
-#, fuzzy
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156024\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Lof Function [Runtime]\">Lof Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase ფუნქცია [გაშვებისას]\">UCase Function [Runtime]</link>"
-
-#. ;zDY
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3146794\n"
-"2\n"
-"help.text"
-msgid "Returns the size of an open file in bytes."
-msgstr ""
-
-#. dOb_
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. CG`}
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150359\n"
-"4\n"
-"help.text"
-msgid "Lof (FileNumber)"
-msgstr ""
-
-#. |PP#
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "დაბრუნებული მნიშვნელობა:"
-
-#. 8#Jz
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3147230\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr ""
-
-#. ;|I)
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. oJ7g
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150869\n"
-"8\n"
-"help.text"
-msgid "<emph>FileNumber:</emph> Any numeric expression that contains the file number that is specified in the Open statement."
-msgstr ""
-
-#. $/o5
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3147349\n"
-"9\n"
-"help.text"
-msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
-msgstr ""
-
-#. ;O~]
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 5^7Y
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"13\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr ""
-
-#. CMs=
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"19\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr ""
-
-#. JLY\
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"20\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr ""
-
-#. #)D`
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"21\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr ""
-
-#. :6s;
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"22\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr ""
-
-#. *%(0
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"31\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr ""
-
-#. ffXo
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"34\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr ""
-
-#. D^Pt
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"tit\n"
-"help.text"
-msgid "Call Statement [Runtime]"
-msgstr ""
-
-#. Mb!h
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"bm_id3154422\n"
-"help.text"
-msgid "<bookmark_value>Call statement</bookmark_value>"
-msgstr "<bookmark_value>Wait განცხადება</bookmark_value>"
-
-#. pNxW
-#: 03090401.xhp
-#, fuzzy
-msgctxt ""
-"03090401.xhp\n"
-"hd_id3154422\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement [Runtime]\">Call Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. DTwa
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"par_id3153394\n"
-"2\n"
-"help.text"
-msgid "Transfers the control of the program to a subroutine, a function, or a DLL procedure."
-msgstr ""
-
-#. 6b7_
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"hd_id3153345\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. S:MD
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"par_id3150984\n"
-"4\n"
-"help.text"
-msgid "[Call] Name [Parameter]"
-msgstr ""
-
-#. wm!w
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"hd_id3150771\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. P@}K
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"par_id3148473\n"
-"6\n"
-"help.text"
-msgid "<emph>Name:</emph> Name of the subroutine, the function, or the DLL that you want to call"
-msgstr ""
-
-#. MGN5
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"par_id3148946\n"
-"7\n"
-"help.text"
-msgid "<emph>Parameter:</emph> Parameters to pass to the procedure. The type and number of parameters is dependent on the routine that is executing."
-msgstr ""
-
-#. E`sV
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"par_id3154216\n"
-"8\n"
-"help.text"
-msgid "A keyword is optional when you call a procedure. If a function is executed as an expression, the parameters must be enclosed by brackets in the statement. If a DLL is called, it must first be specified in the <emph>Declare-Statement</emph>."
-msgstr ""
-
-#. |%|f
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"hd_id3125865\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. L4H-
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Beep Statement [Runtime]"
-msgstr ""
-
-#. x@2f
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"bm_id3143284\n"
-"help.text"
-msgid "<bookmark_value>Beep statement</bookmark_value>"
-msgstr "<bookmark_value>Beep მტკიცებულება</bookmark_value>"
-
-#. 5:6a
-#: 03130100.xhp
-#, fuzzy
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3143284\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03130100.xhp\" name=\"Beep Statement [Runtime]\">Beep Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet დებულება [გაშვებისას]</link>"
-
-#. 3YWe
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"par_id3159201\n"
-"2\n"
-"help.text"
-msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
-msgstr "აპიპინებს კომპიუტერის სპიკერიდან. ტონი დამოკიდებულია სისტემაზე და თქვენ არ შეგიძლიათ მისი ხმის ან ტონის შეცვლა."
-
-#. @5\F
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. N,m-
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"par_id3147291\n"
-"4\n"
-"help.text"
-msgid "Beep"
-msgstr "დაპიპინება"
-
-#. \jd`
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3148538\n"
-"5\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 2Xt}
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefCur Statement [Runtime]"
-msgstr ""
-
-#. O:Fv
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"bm_id9555345\n"
-"help.text"
-msgid "<bookmark_value>DefCur statement</bookmark_value>"
-msgstr "<bookmark_value>DefCur განცხადება</bookmark_value>"
-
-#. )Z;o
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN1057D\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03101110.xhp\">DefCur Statement [Runtime]</link>"
-msgstr ""
-
-#. $bZs
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN1058D\n"
-"help.text"
-msgid "If no type-declaration character or keyword is specified, the DefCur statement sets the default variable type, according to a letter range."
-msgstr "თუ ტიპის გამოცხადების ასო-ნიშანი ან სიტყვა-გასაღები მითითებული არ არის, DefCur განცხადება საწყისი ცვლადის ტიპს აყენებს ასოთა რანგის მიხედვით."
-
-#. :*3[
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN10590\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. (iOC
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN10594\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr ""
-
-#. _ZX\
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN10597\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. 6@rM
-#: 03101110.xhp
-msgctxt ""
-"03101110.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 ""
-
-#. v`{3
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN105A2\n"
-"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr ""
-
-#. D^*{
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN105A9\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr ""
-
-#. -A3K
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN105B0\n"
-"help.text"
-msgid "<emph>DefCur:</emph> Currency"
-msgstr "<emph>DefCur:</emph> ვალუტა"
-
-#. (!8V
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN105B7\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. lY@;
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN105BB\n"
-"help.text"
-msgid "REM Prefix definitions for variable types:"
-msgstr ""
-
-#. 2OZW
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN105D9\n"
-"help.text"
-msgid "cCur=Currency REM cCur is an implicit currency variable"
-msgstr "cCur=Currency REM cCur არის ნაგულისხმევი ვალუტის ცვლადი"
diff --git a/source/ka/helpcontent2/source/text/sbasic/shared/01.po b/source/ka/helpcontent2/source/text/sbasic/shared/01.po
index c3246e3490c..abbefb47d70 100644
--- a/source/ka/helpcontent2/source/text/sbasic/shared/01.po
+++ b/source/ka/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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-05 23:51+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 8ygj
#: 06130500.xhp
msgctxt ""
"06130500.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Append libraries"
msgstr ""
-#. .4r_
#: 06130500.xhp
msgctxt ""
"06130500.xhp\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "<bookmark_value>libraries; adding</bookmark_value><bookmark_value>inserting;Basic libraries</bookmark_value>"
msgstr "<bookmark_value>ბიბლიოთეკები; დამატება </bookmark_value><bookmark_value>ძირითადი; ძირითადი ბიბლიოთეკის დამატება</bookmark_value>"
-#. CN={
#: 06130500.xhp
msgctxt ""
"06130500.xhp\n"
@@ -43,7 +40,6 @@ msgctxt ""
msgid "Append libraries"
msgstr ""
-#. \m,w
#: 06130500.xhp
msgctxt ""
"06130500.xhp\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Locate that <item type=\"productname\">%PRODUCTNAME</item> Basic library that you want to add to the current list, and then click Open.</ahelp>"
msgstr "<ahelp hid=\".\">მიუთითე <item type=\"productname\">%PRODUCTNAME</item>იმ ბაზური ბიბლიოთეკის მისამართი რომელიც გინდა დაამატო მიმდინარე სიაში და დააჭკაპუნე გახსნას</ahelp>"
-#. b4dU
#: 06130500.xhp
msgctxt ""
"06130500.xhp\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "File name:"
msgstr "ფაილის სახელი:"
-#. =kVh
#: 06130500.xhp
msgctxt ""
"06130500.xhp\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_BASICIDE_LIBSDLG_TREE\">Enter a name or the path to the library that you want to append.</ahelp> You can also select a library from the list."
msgstr "<ahelp hid=\"HID_BASICIDE_LIBSDLG_TREE\">შეიყვანეთ სახელი ან გზა ბიბლიოითეკის რომელის გინდა მიამატოდ.</ahelp> თქვენ შეგიძლიად აგრეთვე აირჩიოთ ბიბილიოთეკა სიაში."
-#. a5g^
#: 06130500.xhp
msgctxt ""
"06130500.xhp\n"
@@ -83,7 +76,6 @@ msgctxt ""
msgid "Options"
msgstr "თვისებები"
-#. \0}K
#: 06130500.xhp
msgctxt ""
"06130500.xhp\n"
@@ -93,7 +85,6 @@ msgctxt ""
msgid "Insert as reference (read-only)"
msgstr "ჩასვით როგორც მითითება (მხოლოდ წაკითხვადი)"
-#. =G.m
#: 06130500.xhp
msgctxt ""
"06130500.xhp\n"
@@ -103,7 +94,6 @@ msgctxt ""
msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REF\">Adds the selected library as a read-only file. The library is reloaded each time you start <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
msgstr "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REF\">ამატებს არჩეულ ბიბლიოთეკას როგორც მხოლოდ წაკითხვად ფაილს. ბიბლიოთეკა ხელახლა იტვირთება ყოველი ახალი გაშვების მერე <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
-#. )%r6
#: 06130500.xhp
msgctxt ""
"06130500.xhp\n"
@@ -113,7 +103,6 @@ msgctxt ""
msgid "Replace existing libraries"
msgstr "ჩაანაცვლეთ არსებული ბიბლიოთეკები"
-#. F9ZN
#: 06130500.xhp
msgctxt ""
"06130500.xhp\n"
@@ -123,7 +112,6 @@ msgctxt ""
msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REPL\">Replaces a library that has the same name with the current library.</ahelp>"
msgstr "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REPL\">ცვლის ბიბლიოთეკას რომელსაც აქვს იგივე სახელი რაც მიმდინარე ბიბლიოთეკას.</ahelp>"
-#. XC4I
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -132,7 +120,6 @@ msgctxt ""
msgid "Change Password"
msgstr ""
-#. !7=R
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -142,7 +129,6 @@ msgctxt ""
msgid "Change Password"
msgstr ""
-#. A=Jw
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -152,7 +138,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_PASSWORD\">Protects the selected library with a password.</ahelp> You can enter a new password, or change the current password."
msgstr "<ahelp hid=\"HID_PASSWORD\">იცავს არჩეულ ბიბლიოთეკას პაროლით.</ahelp> თქვენ შეგიძლიათ შეიყვანოთ ახალი პაროლი ან გამოცვალოთ მიმდინარე."
-#. =zh;
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -162,7 +147,6 @@ msgctxt ""
msgid "Old password"
msgstr "ძველი პაროლი"
-#. C1w5
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -172,7 +156,6 @@ msgctxt ""
msgid "Password"
msgstr ""
-#. 6n)3
#: 06130100.xhp
#, fuzzy
msgctxt ""
@@ -183,7 +166,6 @@ msgctxt ""
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_NEW_PASSWD\">შეიყვანეთ არჩეული ბიბლიოთეკის ახალი პაროლი.</ahelp>"
-#. M!3.
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -193,7 +175,6 @@ msgctxt ""
msgid "New password"
msgstr "ახალი პაროლი"
-#. [cDa
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -203,7 +184,6 @@ msgctxt ""
msgid "Password"
msgstr ""
-#. WE4$
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -213,7 +193,6 @@ msgctxt ""
msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD\">Enter a new password for the selected library.</ahelp>"
msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD\">შეიყვანეთ არჩეული ბიბლიოთეკის ახალი პაროლი.</ahelp>"
-#. k\py
#: 06130100.xhp
msgctxt ""
"06130100.xhp\n"
@@ -223,7 +202,6 @@ msgctxt ""
msgid "Confirm"
msgstr ""
-#. `;zs
#: 06130100.xhp
#, fuzzy
msgctxt ""
@@ -234,7 +212,6 @@ msgctxt ""
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_NEW_PASSWD\">შეიყვანეთ არჩეული ბიბლიოთეკის ახალი პაროლი.</ahelp>"
-#. 8r@,
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -243,7 +220,6 @@ msgctxt ""
msgid "Macro"
msgstr ""
-#. Xh^g
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -252,7 +228,6 @@ msgctxt ""
msgid "<bookmark_value>macros; Basic IDE</bookmark_value><bookmark_value>Basic IDE; macros</bookmark_value>"
msgstr "<bookmark_value>მაკროები; ძირიტადი IDE</bookmark_value><bookmark_value>ძირითადი IDE; მაკროები</bookmark_value>"
-#. )|q9
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -262,7 +237,6 @@ msgctxt ""
msgid "Macro"
msgstr ""
-#. b%8b
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -272,7 +246,6 @@ msgctxt ""
msgid "<variable id=\"makro\"><ahelp hid=\".\">Opens the <emph>Macro </emph>dialog, where you can create, edit, organize, and run $[officename] Basic macros.</ahelp></variable>"
msgstr "<variable id=\"makro\"><ahelp hid=\".\">ხსნის <emph>მაკროს </emph>დილოგს.სადაც შეგეძლებათ $[officename] საბაზისო მაკროების შექმნა რედაქტირება და ორგანიზება.</ahelp></variable>"
-#. Uo4h
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -282,7 +255,6 @@ msgctxt ""
msgid "Macro name"
msgstr "მაკროს სახელი"
-#. Y\X3
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -292,7 +264,6 @@ msgctxt ""
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/macronameedit\">Displays the name of the selected macro. To create or to change the name of a macro, enter a name here.</ahelp>"
msgstr ""
-#. A4KH
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -302,7 +273,6 @@ msgctxt ""
msgid "Macro from / Save macro in"
msgstr "მაკრო / მაკროს შენახვა"
-#. cD%?
#: 06130000.xhp
#, fuzzy
msgctxt ""
@@ -313,7 +283,6 @@ msgctxt ""
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/libraries\">Lists the libraries and the modules where you can open or save your macros. To save a macro with a particular document, open the document, and then open this dialog.</ahelp>"
msgstr "<ahelp hid=\"HID_BASICIDE_LIBS\">ჩამოთვლის ბიბლიოთეკის და მოდულების სიას სადაც შეგიძლიათ გახსნათ ან დაიმახსოვროთ თქვენი მაკრო. განსაკუთერებულ დოკუმენტიან მაკროს დასამახსოვრებლად, გახსენი დოკუმენტი და მერე მისი დიალოგი.</ahelp>"
-#. R\Zh
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -323,7 +292,6 @@ msgctxt ""
msgid "Run / Save"
msgstr "გაშვება / შენახვა"
-#. TP0A
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -333,7 +301,6 @@ msgctxt ""
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/run\">Runs or saves the current macro.</ahelp>"
msgstr ""
-#. Z)vI
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -343,7 +310,6 @@ msgctxt ""
msgid "Assign"
msgstr "მინიჭება"
-#. QfDY
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -353,7 +319,6 @@ msgctxt ""
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/assign\">Opens the Customize dialog, where you can assign the selected macro to a menu command, a toolbar, or an event.</ahelp>"
msgstr ""
-#. Pe9n
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -363,7 +328,6 @@ msgctxt ""
msgid "Edit"
msgstr ""
-#. @MCI
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -373,7 +337,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Starts the $[officename] Basic editor and opens the selected macro for editing.</ahelp>"
msgstr "<ahelp hid=\".\">საბაზო $[officename] რედაქტორის გაშვება და არჩეული მაკროს რედაქტირება.</ahelp>"
-#. QLOo
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -383,7 +346,6 @@ msgctxt ""
msgid "New/Delete"
msgstr "ახალი/წაშლა"
-#. J0Ge
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -393,7 +355,6 @@ msgctxt ""
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/delete\">Creates a new macro, or deletes the selected macro.</ahelp>"
msgstr ""
-#. K!-L
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -403,7 +364,6 @@ msgctxt ""
msgid "To create a new macro, select the \"Standard\" module in the <emph>Macro from</emph> list, and then click <emph>New</emph>."
msgstr ""
-#. J9uX
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -413,7 +373,6 @@ msgctxt ""
msgid "To delete a macro, select it, and then click <emph>Delete</emph>."
msgstr "მაკროს წასაშლელად აირჩიე იგი სიაში დადააწკაპუნეთ <emph>წაშლა</emph>."
-#. }[Zm
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -423,7 +382,6 @@ msgctxt ""
msgid "Organizer"
msgstr "ორგანიზატორი"
-#. DbJ(
#: 06130000.xhp
#, fuzzy
msgctxt ""
@@ -434,7 +392,6 @@ msgctxt ""
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/organize\">Opens the <emph>Macro Organizer</emph> dialog, where you can add, edit, or delete existing macro modules, dialogs, and libraries.</ahelp>"
msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_ORG\">ხსნის <emph>მაროს მმართველი</emph>დიალოგურ ფანჯარას ,სადაც თქვენ შეძლებთ დაამატოთ,არედაქტიროდ ან წაშალოდ არჩეული მაროს მოდულები და ბიბლიოთეკები.</ahelp>"
-#. =Obx
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -444,7 +401,6 @@ msgctxt ""
msgid "Module/Dialog"
msgstr "მოდული/დიალოგი"
-#. 171!
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -454,7 +410,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_BASICIDE_MODULES_TREE\">Lists the existing macros and dialogs.</ahelp>"
msgstr ""
-#. v4Tn
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -464,7 +419,6 @@ msgctxt ""
msgid "You can drag-and-drop a module or a dialog between libraries."
msgstr ""
-#. I_3s
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -474,7 +428,6 @@ msgctxt ""
msgid "To copy a dialog or a module, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while you drag-and-drop."
msgstr ""
-#. or6H
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -484,7 +437,6 @@ msgctxt ""
msgid "Edit"
msgstr ""
-#. kzU*
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -494,7 +446,6 @@ msgctxt ""
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_EDIT\">Opens the selected macro or dialog for editing.</ahelp>"
msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_EDIT\">ხსნის არჩეულ მაკროს ან დიალოგს რედაქტირებისთვის.</ahelp>"
-#. !W)e
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -504,7 +455,6 @@ msgctxt ""
msgid "New"
msgstr ""
-#. N50+
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -514,7 +464,6 @@ msgctxt ""
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWMOD\">Creates a new module.</ahelp>"
msgstr ""
-#. NH\4
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -524,7 +473,6 @@ msgctxt ""
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWDLG\">Creates a new dialog.</ahelp>"
msgstr ""
-#. 7Qm,
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -534,7 +482,6 @@ msgctxt ""
msgid "Libraries tab page"
msgstr "ბიბლიოთეკის ჩანართი"
-#. A9*a
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -544,7 +491,6 @@ msgctxt ""
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWDLG\">Lets you manage the macro libraries.</ahelp>"
msgstr ""
-#. #9[q
#: 06130000.xhp
#, fuzzy
msgctxt ""
@@ -555,7 +501,6 @@ msgctxt ""
msgid "Location"
msgstr "#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nმდებარეობა:\\n#-#-#-#-# database.po (PACKAGE VERSION) #-#-#-#-#\\nმდებარეობა\\n#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\nადგილმდებარეობა"
-#. M@Y7
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -565,7 +510,6 @@ msgctxt ""
msgid "<ahelp hid=\"BASCTL_LISTBOX_RID_TP_LIBS_RID_LB_BASICS\">Select the location containing the macro libraries that you want to organize.</ahelp>"
msgstr ""
-#. oQ{[
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -575,7 +519,6 @@ msgctxt ""
msgid "Library"
msgstr "ბიბლიოთეკა"
-#. z?zj
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -585,7 +528,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_BASICIDE_LIBS_TREE\">Lists the macro libraries in the chosen location.</ahelp>"
msgstr ""
-#. hC!7
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -595,7 +537,6 @@ msgctxt ""
msgid "Edit"
msgstr ""
-#. MC\D
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -605,7 +546,6 @@ msgctxt ""
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_EDIT\">Opens the $[officename] Basic editor so that you can modify the selected library.</ahelp>"
msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_EDIT\">ხსნის ძირითად $[officename] რედაქტორს იმისთვის რომ შეძლოთ შეცვალოთ არჩეული ბიბლიოთეკა.</ahelp>"
-#. rF:C
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -615,7 +555,6 @@ msgctxt ""
msgid "Password"
msgstr ""
-#. `L:r
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -625,7 +564,6 @@ msgctxt ""
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_PASSWORD\">Assigns or edits the <link href=\"text/sbasic/shared/01/06130100.xhp\" name=\"password\">password</link> for the selected library. \"Standard\" libraries cannot have a password.</ahelp>"
msgstr ""
-#. ^WNj
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -635,7 +573,6 @@ msgctxt ""
msgid "New"
msgstr ""
-#. sII{
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -645,7 +582,6 @@ msgctxt ""
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_NEWLIB\">Creates a new library.</ahelp>"
msgstr ""
-#. JUE+
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -655,7 +591,6 @@ msgctxt ""
msgid "Name"
msgstr "სახელი"
-#. 2:^^
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -665,7 +600,6 @@ msgctxt ""
msgid "<ahelp hid=\"BASCTL_EDIT_RID_DLG_NEWLIB_RID_ED_LIBNAME\">Enter a name for the new module, dialog, or library.</ahelp>"
msgstr ""
-#. 7n@i
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -675,7 +609,6 @@ msgctxt ""
msgid "Append"
msgstr "მისადაგება"
-#. (a+o
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
diff --git a/source/ka/helpcontent2/source/text/sbasic/shared/02.po b/source/ka/helpcontent2/source/text/sbasic/shared/02.po
index 21c40dadec1..eebe45f101c 100644
--- a/source/ka/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/ka/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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2011-04-12 07:18+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. xpfZ
#: 11150000.xhp
msgctxt ""
"11150000.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Save Source As"
msgstr ""
-#. E\X)
#: 11150000.xhp
msgctxt ""
"11150000.xhp\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/02/11150000.xhp\" name=\"Save Source As\">Save Source As</link>"
msgstr "<link href=\"text/sbasic/shared/02/11150000.xhp\" name=\"Save Source As\">წყაროს შენახვა როგორც</link>"
-#. ffdW
#: 11150000.xhp
msgctxt ""
"11150000.xhp\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:SaveBasicAs\">Saves the source code of the selected Basic macro.</ahelp>"
msgstr ""
-#. GF%#
#: 11150000.xhp
#, fuzzy
msgctxt ""
@@ -54,7 +50,6 @@ msgctxt ""
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_id3149101\" src=\"cmd/sc_filecontrol.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149101\">ხატულა</alt></image>"
-#. rA6P
#: 11150000.xhp
msgctxt ""
"11150000.xhp\n"
@@ -64,7 +59,6 @@ msgctxt ""
msgid "Save Source As"
msgstr ""
-#. m7Y?
#: 11140000.xhp
msgctxt ""
"11140000.xhp\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "Insert Source Text"
msgstr "წყაროს ტექსტის ჩასმა"
-#. Bu_S
#: 11140000.xhp
msgctxt ""
"11140000.xhp\n"
@@ -83,7 +76,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/02/11140000.xhp\" name=\"Insert Source Text\">Insert Source Text</link>"
msgstr "<link href=\"text/sbasic/shared/02/11140000.xhp\" name=\"Insert Source Text\">წყაროს ტექსტის ჩასმა</link>"
-#. [3]_
#: 11140000.xhp
msgctxt ""
"11140000.xhp\n"
@@ -93,7 +85,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:LoadBasic\">Opens the Basic source text in the Basic IDE window.</ahelp>"
msgstr ""
-#. ~3ry
#: 11140000.xhp
msgctxt ""
"11140000.xhp\n"
@@ -103,7 +94,6 @@ msgctxt ""
msgid "Place the cursor in the code where you want to insert the source text, and then click the <emph>Insert source text</emph> icon. Locate the file that contains the Basic source text that you want to insert, and then click <emph>Open</emph>."
msgstr "დასვიტ კურსორი წყაროში იმ ადგილას, სადაც გინდათ წყაროს ტექსტის ჩამატება, შემდეგ დააწკაპუნეთ <emph>წყაროს ტექსტის ჩასმა</emph>-ის ხატულაზე. მოიძიეთ ფაილი, რომელიც შეიცავს იმ ძირითადი წყაროს ტექსტს, რომლის ჩასმაც გინდათ და შემდეგ დააწაკპუნეთ <emph>გახსნა</emph>-ზე."
-#. )$k8
#: 11140000.xhp
#, fuzzy
msgctxt ""
@@ -113,7 +103,6 @@ msgctxt ""
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_id3147077\" src=\"cmd/sc_timefield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3147077\">ხატულა</alt></image>"
-#. ?kcg
#: 11140000.xhp
msgctxt ""
"11140000.xhp\n"
@@ -123,7 +112,6 @@ msgctxt ""
msgid "Insert source text"
msgstr "წყაროს ტექსტის ჩასმა"
-#. NBtE
#: 11190000.xhp
msgctxt ""
"11190000.xhp\n"
@@ -132,7 +120,6 @@ msgctxt ""
msgid "Export Dialog"
msgstr ""
-#. Y}%o
#: 11190000.xhp
#, fuzzy
msgctxt ""
@@ -143,7 +130,6 @@ msgctxt ""
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\">გაშვება</link>"
-#. fs7k
#: 11190000.xhp
msgctxt ""
"11190000.xhp\n"
@@ -153,7 +139,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">In the dialog editor, this command calls a \"Save as\" dialog to export the current BASIC dialog.</ahelp>"
msgstr ""
-#. Y?m_
#: 11190000.xhp
#, fuzzy
msgctxt ""
@@ -163,7 +148,6 @@ msgctxt ""
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\">ხატულა</alt></image>"
-#. zh\b
#: 11190000.xhp
msgctxt ""
"11190000.xhp\n"
@@ -173,7 +157,6 @@ msgctxt ""
msgid "Export Dialog"
msgstr ""
-#. WFFz
#: 11040000.xhp
msgctxt ""
"11040000.xhp\n"
@@ -182,7 +165,6 @@ msgctxt ""
msgid "Stop"
msgstr ""
-#. ]Rnn
#: 11040000.xhp
msgctxt ""
"11040000.xhp\n"
@@ -191,7 +173,6 @@ msgctxt ""
msgid "<bookmark_value>macros; stopping</bookmark_value><bookmark_value>program stops</bookmark_value><bookmark_value>stopping macros</bookmark_value>"
msgstr "<bookmark_value>macros; stopping</bookmark_value><bookmark_value>program stops</bookmark_value><bookmark_value>მაკროსის გაჩერება</bookmark_value>"
-#. #Xn3
#: 11040000.xhp
msgctxt ""
"11040000.xhp\n"
@@ -201,7 +182,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/02/11040000.xhp\" name=\"Stop\">Stop</link>"
msgstr "<link href=\"text/sbasic/shared/02/11040000.xhp\" name=\"Stop\">გაჩერება</link>"
-#. ,RUK
#: 11040000.xhp
msgctxt ""
"11040000.xhp\n"
@@ -211,7 +191,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:BasicStop\">Stops running the current macro.</ahelp><switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline> You can also press Shift+Ctrl+Q.</defaultinline></switchinline>"
msgstr "<ahelp hid=\".uno:BasicStop\">Stops running the current macro.</ahelp><switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline> აგრეთვე შეგიძლიათ დაჭიროთ Ctrl+Alt+S.</defaultinline></switchinline>"
-#. PJV#
#: 11040000.xhp
#, fuzzy
msgctxt ""
@@ -221,7 +200,6 @@ msgctxt ""
msgid "<image id=\"img_id3148538\" src=\"cmd/sc_basicstop.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148538\">Icon</alt></image>"
msgstr "<image id=\"img_id3149530\" src=\"cmd/sc_hscrollbar.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149530\">ხატულა</alt></image>"
-#. B)rU
#: 11040000.xhp
msgctxt ""
"11040000.xhp\n"
@@ -231,7 +209,6 @@ msgctxt ""
msgid "Stop"
msgstr ""
-#. Fe+=
#: 11100000.xhp
msgctxt ""
"11100000.xhp\n"
@@ -240,7 +217,6 @@ msgctxt ""
msgid "Macros"
msgstr ""
-#. YZ-k
#: 11100000.xhp
msgctxt ""
"11100000.xhp\n"
@@ -250,7 +226,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/02/11100000.xhp\" name=\"Macros\">Macros</link>"
msgstr "<link href=\"text/sbasic/shared/02/11100000.xhp\" name=\"Macros\">მაკროსი</link>"
-#. #EUt
#: 11100000.xhp
msgctxt ""
"11100000.xhp\n"
@@ -260,7 +235,6 @@ msgctxt ""
msgid "<ahelp visibility=\"visible\" hid=\".uno:ChooseMacro\">Opens the <emph>Macro</emph> dialog.</ahelp>"
msgstr "<ahelp visibility=\"visible\" hid=\".uno:ChooseMacro\">ხსნის <emph>მაკროსის</emph> დიალოგს.</ahelp>"
-#. SEmZ
#: 11100000.xhp
msgctxt ""
"11100000.xhp\n"
@@ -269,7 +243,6 @@ msgctxt ""
msgid "<image src=\"cmd/sc_choosemacro.png\" id=\"img_id3153662\"><alt id=\"alt_id3153662\">Icon</alt></image>"
msgstr "<image src=\"cmd/sc_choosemacro.png\" id=\"img_id3153662\"><alt id=\"alt_id3153662\">ხატულა</alt></image>"
-#. ]=U2
#: 11100000.xhp
msgctxt ""
"11100000.xhp\n"
@@ -279,7 +252,6 @@ msgctxt ""
msgid "Macros"
msgstr ""
-#. OW3h
#: 11160000.xhp
msgctxt ""
"11160000.xhp\n"
@@ -288,7 +260,6 @@ msgctxt ""
msgid "Step Out"
msgstr ""
-#. [hZ^
#: 11160000.xhp
msgctxt ""
"11160000.xhp\n"
@@ -298,7 +269,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/02/11160000.xhp\" name=\"Step Out\">Step Out</link>"
msgstr "<link href=\"text/sbasic/shared/02/11160000.xhp\" name=\"Step Out\">გამოსვლა</link>"
-#. 2]mk
#: 11160000.xhp
msgctxt ""
"11160000.xhp\n"
@@ -308,7 +278,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:BasicStepOut\" visibility=\"visible\">Jumps back to the previous routine in the current macro.</ahelp>"
msgstr "<ahelp hid=\".uno:BasicStepOut\" visibility=\"visible\">მიმდინარე მაკროსში წინამდებარე ქვეპროგრამაში გადასვლა.</ahelp>"
-#. rLK?
#: 11160000.xhp
msgctxt ""
"11160000.xhp\n"
@@ -317,7 +286,6 @@ msgctxt ""
msgid "<image src=\"cmd/sc_basicstepout.png\" id=\"img_id3159233\"><alt id=\"alt_id3159233\">Icon</alt></image>"
msgstr "<image src=\"cmd/sc_basicstepout.png\" id=\"img_id3159233\"><alt id=\"alt_id3159233\">ხატულა</alt></image>"
-#. T~f{
#: 11160000.xhp
msgctxt ""
"11160000.xhp\n"
@@ -327,7 +295,6 @@ msgctxt ""
msgid "Step Out"
msgstr ""
-#. ]H~@
#: 11120000.xhp
msgctxt ""
"11120000.xhp\n"
@@ -336,7 +303,6 @@ msgctxt ""
msgid "Find Parentheses"
msgstr ""
-#. cDWq
#: 11120000.xhp
msgctxt ""
"11120000.xhp\n"
@@ -346,7 +312,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/02/11120000.xhp\" name=\"Find Parentheses\">Find Parentheses</link>"
msgstr "<link href=\"text/sbasic/shared/02/11120000.xhp\" name=\"Find Parentheses\">იპოვეთ მრგვალი ბრჩხილები</link>"
-#. ysdF
#: 11120000.xhp
msgctxt ""
"11120000.xhp\n"
@@ -356,7 +321,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:MatchGroup\" visibility=\"visible\">Highlights the text that is enclosed by two corresponding brackets. Place the text cursor in front of an opening or closing bracket, and then click this icon.</ahelp>"
msgstr "<ahelp hid=\".uno:MatchGroup\" visibility=\"visible\">გამოყავით ტექსტი, რომელიც ჩასმულია ორ შესაბამის ბრჩხილში. დააყენეთ კურსორი გამხსნელი ან დამხურავი ოთკუთხედი ბრჩხილის წინ და შემდეგ დააწაკპუნეთ ამ ხატულაზე.</ahelp>"
-#. .Y3+
#: 11120000.xhp
msgctxt ""
"11120000.xhp\n"
@@ -365,7 +329,6 @@ msgctxt ""
msgid "<image src=\"cmd/sc_matchgroup.png\" id=\"img_id3155892\"><alt id=\"alt_id3155892\">Icon</alt></image>"
msgstr "<image src=\"cmd/sc_matchgroup.png\" id=\"img_id3155892\"><alt id=\"alt_id3155892\">ხატულა</alt></image>"
-#. qU^Q
#: 11120000.xhp
msgctxt ""
"11120000.xhp\n"
@@ -375,7 +338,6 @@ msgctxt ""
msgid "Find Parentheses"
msgstr ""
-#. SW_#
#: 11110000.xhp
msgctxt ""
"11110000.xhp\n"
@@ -384,7 +346,6 @@ msgctxt ""
msgid "Modules"
msgstr ""
-#. BD$!
#: 11110000.xhp
msgctxt ""
"11110000.xhp\n"
@@ -394,7 +355,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"Modules\">Modules</link>"
msgstr "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"Modules\">მოდულები</link>"
-#. W55,
#: 11110000.xhp
msgctxt ""
"11110000.xhp\n"
@@ -404,7 +364,6 @@ msgctxt ""
msgid "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">Click here to open the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialog.</ahelp>"
msgstr "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">დააწკაპუნეთ აქ <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link>-ის დიალოგის გასახსნელად.</ahelp>"
-#. mZ(*
#: 11110000.xhp
msgctxt ""
"11110000.xhp\n"
@@ -413,7 +372,6 @@ msgctxt ""
msgid "<image src=\"cmd/sc_moduledialog.png\" id=\"img_id3155535\"><alt id=\"alt_id3155535\">Icon</alt></image>"
msgstr "<image src=\"cmd/sc_moduledialog.png\" id=\"img_id3155535\"><alt id=\"alt_id3155535\">ხატულა</alt></image>"
-#. :Sm8
#: 11110000.xhp
msgctxt ""
"11110000.xhp\n"
@@ -423,7 +381,6 @@ msgctxt ""
msgid "Modules"
msgstr ""
-#. D^@5
#: 11060000.xhp
msgctxt ""
"11060000.xhp\n"
@@ -432,7 +389,6 @@ msgctxt ""
msgid "Procedure Step"
msgstr ""
-#. 7gar
#: 11060000.xhp
msgctxt ""
"11060000.xhp\n"
@@ -442,7 +398,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step\">Procedure Step</link>"
msgstr "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step\">პროცედურის ბიჯი</link>"
-#. )05)
#: 11060000.xhp
msgctxt ""
"11060000.xhp\n"
@@ -452,7 +407,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:BasicStepOver\">Runs the macro and stops it after the next procedure.</ahelp>"
msgstr ""
-#. K!:j
#: 11060000.xhp
msgctxt ""
"11060000.xhp\n"
@@ -462,7 +416,6 @@ msgctxt ""
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 ""
-#. 0Jfs
#: 11060000.xhp
#, fuzzy
msgctxt ""
@@ -472,7 +425,6 @@ msgctxt ""
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_id3148883\" src=\"cmd/sc_testmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148883\">ხატულა</alt></image>"
-#. Wf7j
#: 11060000.xhp
msgctxt ""
"11060000.xhp\n"
@@ -482,7 +434,6 @@ msgctxt ""
msgid "Procedure Step"
msgstr ""
-#. -00G
#: 11060000.xhp
msgctxt ""
"11060000.xhp\n"
@@ -492,7 +443,6 @@ msgctxt ""
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\">ერთჯერადი ბიჯი</link>"
-#. WB=B
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -501,7 +451,6 @@ msgctxt ""
msgid "Object Catalog"
msgstr ""
-#. b?y.
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -511,7 +460,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/02/11090000.xhp\" name=\"Object Catalog\">Object Catalog</link>"
msgstr "<link href=\"text/sbasic/shared/02/11090000.xhp\" name=\"Object Catalog\">ობიექტის კატალოგი</link>"
-#. 2m$_
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -521,7 +469,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ObjectCatalog\">Opens the <emph>Objects</emph> dialog, where you can view Basic objects.</ahelp>"
msgstr "<ahelp hid=\".uno:ObjectCatalog\">ხსნის <emph>ობიექტების</emph> დიალოგურ სარკმელს, სადაც შეგიძლიათ ნახოთ ძირითადი ობიექტები.</ahelp>"
-#. kK0K
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -531,7 +478,6 @@ msgctxt ""
msgid "Double click the name of a function or sub to load the module that contains that function or sub, and to position the cursor. Click the name of a module or dialog and then click the <emph>Show</emph> icon to load and display that module or dialog."
msgstr "ორჯერ დააწკაპუნეთ ფუნქციის სახელზე იმ მოდულის ჩასატვირთად, რომელიც შეიცავს ამ ფუნქციას და კურსორის პოზოციას. დააწკაპუნეთ მოდულის ან დიალოგის სახელზე და შემდეგ დააწკაპუნეთ <emph>ჩვენება</emph>-ის ხატულაზე მოდულის ან დიალოგის ჩასატვირთად და საჩვენებლად."
-#. Y\y/
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -540,7 +486,6 @@ msgctxt ""
msgid "<image id=\"img_id3163803\" src=\"cmd/sc_objectcatalog.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3163803\">Icon</alt></image>"
msgstr "<image id=\"img_id3163803\" src=\"cmd/sc_objectcatalog.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3163803\">ხატულა</alt></image>"
-#. P6dB
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -550,7 +495,6 @@ msgctxt ""
msgid "Object Catalog"
msgstr ""
-#. JC8D
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -560,7 +504,6 @@ msgctxt ""
msgid "Show"
msgstr ""
-#. c!rX
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -570,7 +513,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_BASICIDE_OBJCAT_SHOW\">Display the source text or dialog of a selected object.</ahelp>"
msgstr "<ahelp hid=\"HID_BASICIDE_OBJCAT_SHOW\">აჩვენეთ მონიშნული ობიექტის წყაროს ტექსტი ან დიალოგი.</ahelp>"
-#. `6Kh
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -579,7 +521,6 @@ msgctxt ""
msgid "<image id=\"img_id3148474\" src=\"basctl/res/im01.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148474\">Icon</alt></image>"
msgstr "<image id=\"img_id3148474\" src=\"basctl/res/im01.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148474\">ხატულა</alt></image>"
-#. Lk\=
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -589,7 +530,6 @@ msgctxt ""
msgid "Show"
msgstr ""
-#. !zr*
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -599,7 +539,6 @@ msgctxt ""
msgid "Window Area"
msgstr "ფანჯრის არეალი"
-#. V!s\
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
@@ -609,7 +548,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_BASICIDE_OBJECTCAT\">Displays a hierarchical view of the current $[officename] macro libraries, modules, and dialogs. To display the contents of an item in the window, double-click its name or select the name and click the <emph>Show</emph> icon.</ahelp>"
msgstr "<ahelp hid=\"HID_BASICIDE_OBJECTCAT\">იერარქიულად აჩვენეთ მიმდინარე $[officename]-ის მაკროსის ბიბლიოთეკები, მოდულები და დიალოგები. ელემენტის შიგთავსის ფანჯარაში საჩვენებლად, ორჯერ დააწკაპუნეთ მის სახელზე ან მონიშნეთ სახელი და დააწკაპუნეთ <emph>ჩვენება</emph>-ის ხატულაზე.</ahelp>"
-#. 9L8N
#: 11070000.xhp
msgctxt ""
"11070000.xhp\n"
@@ -618,7 +556,6 @@ msgctxt ""
msgid "Breakpoint"
msgstr ""
-#. Y)ps
#: 11070000.xhp
msgctxt ""
"11070000.xhp\n"
@@ -628,7 +565,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/02/11070000.xhp\" name=\"Breakpoint\">Breakpoint</link>"
msgstr "<link href=\"text/sbasic/shared/02/11070000.xhp\" name=\"Breakpoint\">Bწყვეტის წერტილი</link>"
-#. 8P@J
#: 11070000.xhp
msgctxt ""
"11070000.xhp\n"
@@ -638,7 +574,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ToggleBreakPoint\">Inserts a breakpoint in the program line.</ahelp>"
msgstr "<ahelp hid=\".uno:ToggleBreakPoint\">ჩასვით წყვეტის წერტილი პროგრამის .</ahelp>"
-#. ~`E+
#: 11070000.xhp
msgctxt ""
"11070000.xhp\n"
@@ -648,7 +583,6 @@ msgctxt ""
msgid "The breakpoint is inserted at the cursor position. Use a breakpoint to interrupt a program just before an error occurs. You can then troubleshoot the program by running it in <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link> mode until the error occurs. You can also use the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> icon to check the content of the relevant variables."
msgstr "წყვეტის წერტილი ჩასმულია კურსორის პოზიციასთან. გამოიყენეთ წყვეტის წერტილი პროგრამის გასაჩერებლად, მანამ სანამ მოხდება შეცდომა. შემდგომში შეგეძელბათ პრობლემის მოგვარება გაშვების<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link> რეჟიმში შეცდომის გამოტანამდე. შეგიძლიათ გამოიყენოთ აგრეთვე <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> ხატულა შესაბამისი ცვლადების შემცველობის შესამოწმებლად."
-#. 6GL\
#: 11070000.xhp
#, fuzzy
msgctxt ""
@@ -658,7 +592,6 @@ msgctxt ""
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_id3155339\" src=\"cmd/sc_managebreakpoints.png\" width=\"0.2228inch\" height=\"0.2228inch\"><alt id=\"alt_id3155339\">ხატულა</alt></image>"
-#. ^|Vc
#: 11070000.xhp
msgctxt ""
"11070000.xhp\n"
@@ -668,7 +601,6 @@ msgctxt ""
msgid "Breakpoint"
msgstr ""
-#. |iJW
#: 11020000.xhp
msgctxt ""
"11020000.xhp\n"
@@ -677,7 +609,6 @@ msgctxt ""
msgid "Compile"
msgstr ""
-#. KA@m
#: 11020000.xhp
msgctxt ""
"11020000.xhp\n"
@@ -687,7 +618,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"Compile\">Compile</link>"
msgstr "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"Compile\">კომპილაცია</link>"
-#. vnA-
#: 11020000.xhp
msgctxt ""
"11020000.xhp\n"
@@ -697,7 +627,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:CompileBasic\" visibility=\"visible\">Compiles the Basic macro.</ahelp> You need to compile a macro after you make changes to it, or if the macro uses single or procedure steps."
msgstr "<ahelp hid=\".uno:CompileBasic\" visibility=\"visible\">აკომპილირებს ძირითად მაკროსს.</ahelp> თქვენ უნდა დააკომპილიროთ მაკროსი ცვლილების შემდეგ, ან თუ მაკროსი იყენებს ერთჯერად ან პროცედურულ ბიჯებს."
-#. ye/I
#: 11020000.xhp
msgctxt ""
"11020000.xhp\n"
@@ -706,7 +635,6 @@ msgctxt ""
msgid "<image src=\"cmd/sc_compilebasic.png\" id=\"img_id3147576\"><alt id=\"alt_id3147576\">Icon</alt></image>"
msgstr "<image src=\"cmd/sc_compilebasic.png\" id=\"img_id3147576\"><alt id=\"alt_id3147576\">ხატულა</alt></image>"
-#. O,\{
#: 11020000.xhp
msgctxt ""
"11020000.xhp\n"
@@ -716,7 +644,6 @@ msgctxt ""
msgid "Compile"
msgstr ""
-#. Uk)m
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -725,7 +652,6 @@ msgctxt ""
msgid "Insert Controls"
msgstr ""
-#. Oorh
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -734,7 +660,6 @@ msgctxt ""
msgid "<bookmark_value>controls; in dialog editor</bookmark_value><bookmark_value>push button control in dialog editor</bookmark_value><bookmark_value>icon control</bookmark_value><bookmark_value>buttons; controls</bookmark_value><bookmark_value>image control</bookmark_value><bookmark_value>check box control</bookmark_value><bookmark_value>radio button control</bookmark_value><bookmark_value>option button control</bookmark_value><bookmark_value>fixed text control</bookmark_value><bookmark_value>label field control</bookmark_value><bookmark_value>editing; controls</bookmark_value><bookmark_value>text boxes; controls</bookmark_value><bookmark_value>list boxes; controls</bookmark_value><bookmark_value>combo box control</bookmark_value><bookmark_value>scroll bar control</bookmark_value><bookmark_value>horizontal scrollbar control</bookmark_value><bookmark_value>vertical scrollbar control</bookmark_value><bookmark_value>group box control</bookmark_value><bookmark_value>progress bar control</bookmark_value><bookmark_value>fixed line control</bookmark_value><bookmark_value>horizontal line control</bookmark_value><bookmark_value>line control</bookmark_value><bookmark_value>vertical line control</bookmark_value><bookmark_value>date field control</bookmark_value><bookmark_value>time field control</bookmark_value><bookmark_value>numerical field control</bookmark_value><bookmark_value>currency field control</bookmark_value><bookmark_value>formatted field control</bookmark_value><bookmark_value>pattern field control</bookmark_value><bookmark_value>masked field control</bookmark_value><bookmark_value>file selection control</bookmark_value><bookmark_value>selection options for controls</bookmark_value><bookmark_value>test mode control</bookmark_value>"
msgstr ""
-#. !=5/
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -744,7 +669,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/02/20000000.xhp\" name=\"Insert Controls\">Insert Controls</link>"
msgstr "<link href=\"text/sbasic/shared/02/20000000.xhp\" name=\"Insert Controls\">კონტროლების ჩასმა</link>"
-#. 3=)m
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -754,7 +678,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ChooseControls\">Opens the <emph>Toolbox</emph> bar.</ahelp>"
msgstr "<ahelp hid=\".uno:ChooseControls\">ხსნის <emph>ხელსაწყოთა ყუთი</emph>-ის ზოლს.</ahelp>"
-#. -U8M
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -763,7 +686,6 @@ msgctxt ""
msgid "<image id=\"img_id3147571\" src=\"cmd/sc_choosecontrols.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147571\">Icon</alt></image>"
msgstr "<image id=\"img_id3147571\" src=\"cmd/sc_choosecontrols.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147571\">ხატულა</alt></image>"
-#. d^%%
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -773,7 +695,6 @@ msgctxt ""
msgid "Insert Controls"
msgstr ""
-#. Il%s
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -783,7 +704,6 @@ msgctxt ""
msgid "In edit mode, double-click a control to open the <link href=\"text/sbasic/shared/01170100.xhp\" name=\"properties dialog\">properties dialog</link>."
msgstr "რედაქტირების რეჟიმში ორჯერ დააწკაპუნეთ კონტროლზე <link href=\"text/sbasic/shared/01170100.xhp\" name=\"properties dialog\">პარამეტრების დიალოგი</link>-ს გასახსნელად."
-#. HDS1
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -793,7 +713,6 @@ msgctxt ""
msgid "In edit mode, you can also right-click a control and choose the cut, copy, and paste command."
msgstr "რედაქტირების რეჟიმში თქვენა აგრეთვე შეგიძლიათ მარჯვენა ღილაკი დაწკაპუნოთ კონტროლზე და ამოირჩიოთ ამოჭრის, კოპირების და ჩასმის ბრძანებები."
-#. .wq5
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -803,7 +722,6 @@ msgctxt ""
msgid "Button"
msgstr "ღილაკი"
-#. :]jW
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -812,7 +730,6 @@ msgctxt ""
msgid "<image id=\"img_id3157909\" src=\"cmd/sc_insertpushbutton.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3157909\">Icon</alt></image>"
msgstr "<image id=\"img_id3157909\" src=\"cmd/sc_insertpushbutton.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3157909\">ხატულა</alt></image>"
-#. ;HU;
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -822,7 +739,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertPushbutton\">Adds a command button.</ahelp> You can use a command button to execute a command for a defined event, such as a mouse click."
msgstr "<ahelp hid=\".uno:InsertPushbutton\">ამატებს ბრძანების ღილაკს.</ahelp> შეგიძლიათ გამოიყენოთ ბრძანების ღილაკი განსაზღვრული მოვლენის შესარულებლად, როგორიცაა მაუსის დაწკაპუნება."
-#. PK+K
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -832,7 +748,6 @@ msgctxt ""
msgid "If you want, you can add text or a graphic to the button."
msgstr "სურვილის შემთხვევაში, ღილაკზე შეგიძლიათ დაამატოთ ტექსტი ან ნახატი."
-#. (PH8
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -842,7 +757,6 @@ msgctxt ""
msgid "Image Control"
msgstr "კონტროლის ნახატი"
-#. TPm9
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -851,7 +765,6 @@ msgctxt ""
msgid "<image id=\"img_id3144760\" src=\"cmd/sc_objectcatalog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144760\">Icon</alt></image>"
msgstr "<image id=\"img_id3144760\" src=\"cmd/sc_objectcatalog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144760\">ხატულა</alt></image>"
-#. W)3L
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -861,7 +774,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertImageControl\">Adds a control that displays a graphic.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertImageControl\">ამატებს კონტროლს, რომელიც აჩვენებს ნახატს.</ahelp>"
-#. .cg!
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -871,7 +783,6 @@ msgctxt ""
msgid "Check Box"
msgstr "თოლია"
-#. K3jr
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -880,7 +791,6 @@ msgctxt ""
msgid "<image id=\"img_id3150439\" src=\"cmd/sc_checkbox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150439\">Icon</alt></image>"
msgstr "<image id=\"img_id3150439\" src=\"cmd/sc_checkbox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150439\">ხატულა</alt></image>"
-#. HegK
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -890,7 +800,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:Checkbox\">Adds a check box that you can use to turn a function on or off.</ahelp>"
msgstr "<ahelp hid=\".uno:Checkbox\">ამატებს თოლიას რომელიც შეგიძლიათ გამოიყენოთ ფუნქციის ჩასართველად ან გამოსართველად.</ahelp>"
-#. ?jng
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -900,7 +809,6 @@ msgctxt ""
msgid "Option Button"
msgstr "პარამეტრების ღილაკი"
-#. 5?=R
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -909,7 +817,6 @@ msgctxt ""
msgid "<image id=\"img_id3146921\" src=\"cmd/sc_radiobutton.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146921\">Icon</alt></image>"
msgstr "<image id=\"img_id3146921\" src=\"cmd/sc_radiobutton.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146921\">ხატულა</alt></image>"
-#. TbnB
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -919,7 +826,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:Radiobutton\">Adds a button that allows a user to select from a number of options.</ahelp> Grouped option buttons must have consecutive tab indices. They are commonly encircled by a group box. If you have two groups of option buttons, you must insert a tab index between the tab indices of the two groups on the group frame."
msgstr "<ahelp hid=\".uno:Radiobutton\">ამატებს ღილაკს, რომელიც მომხმარებელს აძლევს საშუალებას ამოირჩიოს რამდენიმე პარამეტრს შორის.</ahelp> პარამეტრების დაჯგუფებული ღილაკებს უნდა ქონდეთ ტაბულაციის თანმიმდევრული ინდექსები. როგორც წესი, ისინი შემოიფარგლებიან ჯგუფის ველით. თუ გაქვთ პარამეტრების ღილაკების ორი ჯგუფი, უნდა ჩასვათ ტაბულაციის ინდექსი ტაბულაციის ინდექსებს შორის."
-#. DgqV
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -929,7 +835,6 @@ msgctxt ""
msgid "Label Field"
msgstr "ჭდის ველი"
-#. r)Hh
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -938,7 +843,6 @@ msgctxt ""
msgid "<image id=\"img_id3153415\" src=\"cmd/sc_insertfixedtext.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3153415\">Icon</alt></image>"
msgstr "<image id=\"img_id3153415\" src=\"cmd/sc_insertfixedtext.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3153415\">ხატულა</alt></image>"
-#. _k!L
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -948,7 +852,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertFixedText\">Adds a field for displaying text labels.</ahelp> These labels are only for displaying predefined text, and not for entering text."
msgstr "<ahelp hid=\".uno:InsertFixedText\">ამატებს ველს ტექსტური ჭდეების საჩვენებლად.</ahelp> ეს ჭდეები გამოიყენება წინასწარგანსაზღვრული ჭდეების საჩვენებლად და არა ტექსტის შესაყვანად."
-#. ).Z!
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -958,7 +861,6 @@ msgctxt ""
msgid "Text Box"
msgstr "ტექსტური ველი"
-#. QVSC
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -967,7 +869,6 @@ msgctxt ""
msgid "<image id=\"img_id3148996\" src=\"cmd/sc_edit.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3148996\">Icon</alt></image>"
msgstr "<image id=\"img_id3148996\" src=\"cmd/sc_edit.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3148996\">ხატულა</alt></image>"
-#. g!tI
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -977,7 +878,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertEdit\">Adds an input box where you can enter and edit text.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertEdit\">ამატებს შეყვანის სარკმელს, სადაც შეგიძლიათ შეიყვანოთ და დაარედაქტიროტ ტექსტი.</ahelp>"
-#. VOOz
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -987,7 +887,6 @@ msgctxt ""
msgid "List Box"
msgstr "სიის სარკმელი"
-#. VZmD
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -996,7 +895,6 @@ msgctxt ""
msgid "<image id=\"img_id3163808\" src=\"cmd/sc_listbox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3163808\">Icon</alt></image>"
msgstr "<image id=\"img_id3163808\" src=\"cmd/sc_listbox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3163808\">ხატულა</alt></image>"
-#. uS*\
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1006,7 +904,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertListbox\">Adds a box where you can click an entry on a list.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertListbox\">ამატებს სარკმელს, სადაც შეგიძლიათ დააწაკპუნოთ სიის შენატანზე.</ahelp>"
-#. o_e5
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1016,7 +913,6 @@ msgctxt ""
msgid "Combo Box"
msgstr "კომბო-ველი"
-#. a7M9
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1025,7 +921,6 @@ msgctxt ""
msgid "<image id=\"img_id3153200\" src=\"cmd/sc_combobox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3153200\">Icon</alt></image>"
msgstr "<image id=\"img_id3153200\" src=\"cmd/sc_combobox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3153200\">ხატულა</alt></image>"
-#. 3a\(
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1035,7 +930,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:Combobox\">Adds a combo box. A combo box is a one line list box that a user can click, and then choose an entry from the list.</ahelp> If you want, you can make the entries in the combo box \"read only\"."
msgstr "<ahelp hid=\".uno:Combobox\">ამატებს კომბო-ველს. კომბო-ველი არის ერთხაზიანი სიის სარკმელი, რომელზეც მომხმარებელს შეუძლია დაწკაპუნება და შემდგომ სიის შენატანის ამორჩევა.</ahelp> თუ გნებავთ, შეგიძლიათ კომბო-ველის შენატანები გახადოთ \"მხოლოდ წაკითხვადი\"."
-#. (u;0
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1045,7 +939,6 @@ msgctxt ""
msgid "Horizontal Scrollbar"
msgstr "ჰორიზონტალური ცოცია"
-#. ]:VC
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1054,7 +947,6 @@ msgctxt ""
msgid "<image id=\"img_id3149530\" src=\"cmd/sc_hscrollbar.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149530\">Icon</alt></image>"
msgstr "<image id=\"img_id3149530\" src=\"cmd/sc_hscrollbar.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149530\">ხატულა</alt></image>"
-#. 1-j?
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1064,7 +956,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:HScrollbar\">Adds a horizontal scrollbar to the dialog.</ahelp>"
msgstr "<ahelp hid=\".uno:HScrollbar\">ამატებს ჰორიზონტალურ ცოციას დიალოგში.</ahelp>"
-#. l;Z)
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1074,7 +965,6 @@ msgctxt ""
msgid "Vertical Scrollbar"
msgstr "ვერტიკალური ცოცია"
-#. 2wm]
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1083,7 +973,6 @@ msgctxt ""
msgid "<image id=\"img_id3150203\" src=\"cmd/sc_vscrollbar.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150203\">Icon</alt></image>"
msgstr "<image id=\"img_id3150203\" src=\"cmd/sc_vscrollbar.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150203\">ხატულა</alt></image>"
-#. m~^-
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1093,7 +982,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:VScrollbar\">Adds a vertical scrollbar to the dialog.</ahelp>"
msgstr "<ahelp hid=\".uno:VScrollbar\">ამატებს ვერტიკალურ ცოციას დიალოგში.</ahelp>"
-#. oQZR
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1103,7 +991,6 @@ msgctxt ""
msgid "Group Box"
msgstr "ჯგუფის ველი"
-#. L|mA
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1112,7 +999,6 @@ msgctxt ""
msgid "<image id=\"img_id3151335\" src=\"cmd/sc_groupbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151335\">Icon</alt></image>"
msgstr "<image id=\"img_id3151335\" src=\"cmd/sc_groupbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151335\">ხატულა</alt></image>"
-#. Tx#.
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1122,7 +1008,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:Groupbox\">Adds a frame that you can use to visually group similar controls, such as option buttons.</ahelp>"
msgstr "<ahelp hid=\".uno:Groupbox\">ამატებს ჩარჩოს, რომელიც შეგიძლიათ გამოიყენოთ ერთნაირი კონტროლების ვიზუალური დაჯგუფებისათვის, როგორიცაა პარამეტრების ღილაკები.</ahelp>"
-#. Ykm!
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1132,7 +1017,6 @@ msgctxt ""
msgid "To define two different groups of option buttons, ensure that the tab index of the group frame is between the tab indices of the two groups."
msgstr "პარამეტრების ღილაკების ორი განსხვავებული ჯგუფის განსასაზღვრავად, დარწმუნდით რომ ჯგუფის ჩარჩოს ტაბულაციის ინდექსი განთავსებულია ორი ჯგუფის ინდექსებს შორის."
-#. *FXh
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1142,7 +1026,6 @@ msgctxt ""
msgid "Progress Bar"
msgstr "პროგრესის ზოლი"
-#. ^b7i
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1151,7 +1034,6 @@ msgctxt ""
msgid "<image id=\"img_id3150318\" src=\"cmd/sc_progressbar.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150318\">Icon</alt></image>"
msgstr "<image id=\"img_id3150318\" src=\"cmd/sc_progressbar.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150318\">ხატულა</alt></image>"
-#. G\C=
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1161,7 +1043,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ProgressBar\">Adds a progress bar to the dialog.</ahelp>"
msgstr "<ahelp hid=\".uno:ProgressBar\">ამატებს პროგრესის ზოლს დიალოგში.</ahelp>"
-#. VvkD
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1171,7 +1052,6 @@ msgctxt ""
msgid "Horizontal Line"
msgstr "ჰორიზონტალური ზოლი"
-#. g4p$
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1180,7 +1060,6 @@ msgctxt ""
msgid "<image id=\"img_id3152872\" src=\"cmd/sc_hfixedline.png\" width=\"0.2201inch\" height=\"0.2201inch\"><alt id=\"alt_id3152872\">Icon</alt></image>"
msgstr "<image id=\"img_id3152872\" src=\"cmd/sc_hfixedline.png\" width=\"0.2201inch\" height=\"0.2201inch\"><alt id=\"alt_id3152872\">ხატულა</alt></image>"
-#. U!WE
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1190,7 +1069,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:HFixedLine\">Adds a horizontal line to the dialog.</ahelp>"
msgstr "<ahelp hid=\".uno:HFixedLine\">ამატებს ჰორიზონტალურ ხაზს დიალოგში.</ahelp>"
-#. K6mZ
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1200,7 +1078,6 @@ msgctxt ""
msgid "Vertical Line"
msgstr "ვერტიკალური ხაზი"
-#. !:NJ
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1209,7 +1086,6 @@ msgctxt ""
msgid "<image id=\"img_id3153249\" src=\"cmd/sc_vfixedline.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153249\">Icon</alt></image>"
msgstr "<image id=\"img_id3153249\" src=\"cmd/sc_vfixedline.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153249\">ხატულა</alt></image>"
-#. 3$]:
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1219,7 +1095,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:VFixedLine\">Adds a vertical line to the dialog.</ahelp>"
msgstr "<ahelp hid=\".uno:VFixedLine\">ამატებს ვერტიკალურ ხაზს დიალოგში.</ahelp>"
-#. fswV
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1229,7 +1104,6 @@ msgctxt ""
msgid "Date Field"
msgstr "თარიღის ველი"
-#. TW[=
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1238,7 +1112,6 @@ msgctxt ""
msgid "<image id=\"img_id3151010\" src=\"cmd/sc_adddatefield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151010\">Icon</alt></image>"
msgstr "<image id=\"img_id3151010\" src=\"cmd/sc_adddatefield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151010\">ხატულა</alt></image>"
-#. b=Gk
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1248,7 +1121,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:AddDateField\">Adds a date field.</ahelp>"
msgstr "<ahelp hid=\".uno:AddDateField\">ამატებს თარიღის ველს.</ahelp>"
-#. /99x
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1258,7 +1130,6 @@ msgctxt ""
msgid "If you assign the \"dropdown\" property to the date field, a user can drop down a calendar to select a date."
msgstr "თარიღის ველს შეგიძლიათ მიანიჭოთ \"ჩამოშლადი\" თვისება, მომხმარებელს შეუძლია ჩამოშალოს კალენდარი თარიღის ასარცევად."
-#. Qcxc
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1268,7 +1139,6 @@ msgctxt ""
msgid "Time Field"
msgstr "დროის ველი"
-#. I0WV
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1277,7 +1147,6 @@ msgctxt ""
msgid "<image id=\"img_id3147077\" src=\"cmd/sc_timefield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3147077\">Icon</alt></image>"
msgstr "<image id=\"img_id3147077\" src=\"cmd/sc_timefield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3147077\">ხატულა</alt></image>"
-#. KlEF
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1287,7 +1156,6 @@ msgctxt ""
msgid "<ahelp hid=\"SID_INSERT_TIMEFIELD\">Adds a time field.</ahelp>"
msgstr "<ahelp hid=\"SID_INSERT_TIMEFIELD\">ამატებს დროის ველს.</ahelp>"
-#. #y3Q
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1297,7 +1165,6 @@ msgctxt ""
msgid "Numeric Field"
msgstr "ციფრული ველი"
-#. %V[,
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1306,7 +1173,6 @@ msgctxt ""
msgid "<image id=\"img_id3147499\" src=\"cmd/sc_insertnumericfield.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3147499\">Icon</alt></image>"
msgstr "<image id=\"img_id3147499\" src=\"cmd/sc_insertnumericfield.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3147499\">ხატულა</alt></image>"
-#. mR;+
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1316,7 +1182,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertNumericField\">Adds a numeric field.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertNumericField\">ამატებს ციფრულ ველს.</ahelp>"
-#. L5os
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1326,7 +1191,6 @@ msgctxt ""
msgid "Currency Field"
msgstr "ვალუტის ველი"
-#. }Ws}
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1335,7 +1199,6 @@ msgctxt ""
msgid "<image id=\"img_id3150435\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150435\">Icon</alt></image>"
msgstr "<image id=\"img_id3150435\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150435\">ხატულა</alt></image>"
-#. w+T1
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1345,7 +1208,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertCurrencyField\">Adds a currency field.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertCurrencyField\">ამატებს ვალუტის ველს.</ahelp>"
-#. 6qW?
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1355,7 +1217,6 @@ msgctxt ""
msgid "Formatted Field"
msgstr "ფორმატირებული ველი"
-#. *WP]
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1364,7 +1225,6 @@ msgctxt ""
msgid "<image id=\"img_id3152807\" src=\"cmd/sc_formattedfield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152807\">Icon</alt></image>"
msgstr "<image id=\"img_id3152807\" src=\"cmd/sc_formattedfield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152807\">ხატულა</alt></image>"
-#. +DIO
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1374,7 +1234,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertFormattedField\">Adds a text box where you can define the formatting for text that is inputted or outputted as well as any limiting values.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertFormattedField\">ამატებს ტექტურ ველს, სადაც შეგიძლიათ განსაზღვროთ იმ ტექსტის ფორმატირება, რომელიც შეიტანება და გამოიტანება ისევე, როგორც შემზღუდველი მნიშვნელობები.</ahelp>"
-#. [kT*
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1384,7 +1243,6 @@ msgctxt ""
msgid "Pattern Field"
msgstr "შაბლონის ველი"
-#. jHsm
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1393,7 +1251,6 @@ msgctxt ""
msgid "<image id=\"img_id3150032\" src=\"cmd/sc_insertpatternfield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150032\">Icon</alt></image>"
msgstr "<image id=\"img_id3150032\" src=\"cmd/sc_insertpatternfield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150032\">ხატულა</alt></image>"
-#. %`4N
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1403,7 +1260,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertPatternField\">Adds a masked field.</ahelp> A masked field consists of an input mask and a literal mask. The input mask determines which user data can be entered. The literal mask determines the state of the masked field when the form is loaded."
msgstr ""
-#. 426M
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1413,7 +1269,6 @@ msgctxt ""
msgid "File Selection"
msgstr "ფაილის არჩევა"
-#. @4Tq
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1422,7 +1277,6 @@ msgctxt ""
msgid "<image id=\"img_id3149101\" src=\"cmd/sc_filecontrol.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149101\">Icon</alt></image>"
msgstr "<image id=\"img_id3149101\" src=\"cmd/sc_filecontrol.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149101\">ხატულა</alt></image>"
-#. ,r^N
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1432,7 +1286,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertFileControl\">Adds a button that opens a file selection dialog.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertFileControl\">ამატებს ხატულას, რომელიც გაძლევთ ფაილის არცევის საშუალებას.</ahelp>"
-#. fWcI
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1442,7 +1295,6 @@ msgctxt ""
msgid "Select"
msgstr "მონიშვნა"
-#. qh%=
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1451,7 +1303,6 @@ msgctxt ""
msgid "<image id=\"img_id3150653\" src=\"cmd/sc_drawselect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150653\">Icon</alt></image>"
msgstr "<image id=\"img_id3150653\" src=\"cmd/sc_drawselect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150653\">ხატულა</alt></image>"
-#. ))/`
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1461,7 +1312,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Activates or deactivates the Selection mode. In this mode, you can select the controls in a dialog so that you can edit them.</ahelp>"
msgstr "<ahelp hid=\".\">ააქტიურებს ან თიშავს მონიშვნის რეჯიმს. ამ რეჯიმში შეგიძლიათ მონიშნოთ კონტროლები დიალოგში, მათი რედაქტირების მიზნით.</ahelp>"
-#. E;`\
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1471,7 +1321,6 @@ msgctxt ""
msgid "Properties"
msgstr "თვისებები"
-#. 64W:
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1480,7 +1329,6 @@ msgctxt ""
msgid "<image id=\"img_id3146874\" src=\"cmd/sc_controlproperties.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146874\">Icon</alt></image>"
msgstr "<image id=\"img_id3146874\" src=\"cmd/sc_controlproperties.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146874\">ხატულა</alt></image>"
-#. =O1R
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1490,7 +1338,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ShowPropBrowser\">Opens a dialog where you can edit the <link href=\"text/sbasic/shared/01170100.xhp\" name=\"properties\">properties</link> of the selected control.</ahelp>"
msgstr "<ahelp hid=\".uno:ShowPropBrowser\">ხსნის დიალოგს , სადაც შეგიძლიათ დაარედაქტიროთ მონიშნული კონტროლის<link href=\"text/sbasic/shared/01170100.xhp\" name=\"properties\">თვისებები</link>.</ahelp>"
-#. `d,p
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1500,7 +1347,6 @@ msgctxt ""
msgid "Activate Test Mode"
msgstr "ტესტური რეჟიმის აქტივირება"
-#. dM;`
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1509,7 +1355,6 @@ msgctxt ""
msgid "<image id=\"img_id3148883\" src=\"cmd/sc_testmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148883\">Icon</alt></image>"
msgstr "<image id=\"img_id3148883\" src=\"cmd/sc_testmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148883\">ხატულა</alt></image>"
-#. ;e7Z
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1519,7 +1364,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:TestMode\">Starts test mode. Click the dialog closer icon to end test mode.</ahelp>"
msgstr "<ahelp hid=\".uno:TestMode\">რთავს ტესტურ რეჟიმს. გამოიყენეთ დიალოგის დამხურველი შემუშავების რეჟიმში დასაბრუნებლად.</ahelp>"
-#. \EjX
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1528,7 +1372,6 @@ msgctxt ""
msgid "Manage Language"
msgstr ""
-#. XsrJ
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1537,7 +1380,6 @@ msgctxt ""
msgid "<image id=\"img_id2856837\" src=\"cmd/sc_managelanguage.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2856837\">Manage Language icon</alt></image>"
msgstr ""
-#. nDI$
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1546,7 +1388,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ManageLanguage\">Opens a <link href=\"text/sbasic/guide/translation.xhp\">dialog</link> to enable or manage multiple sets of dialog resources for multiple languages.</ahelp>"
msgstr ""
-#. )+wE
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1555,7 +1396,6 @@ msgctxt ""
msgid "Tree Control"
msgstr ""
-#. z%l3
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1564,7 +1404,6 @@ msgctxt ""
msgid "<image id=\"Graphic2\" src=\"cmd/sc_inserttreecontrol.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_\">Manage Language icon</alt></image>"
msgstr ""
-#. #6Mu
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
@@ -1573,7 +1412,6 @@ msgctxt ""
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 ""
-#. .-9]
#: 11010000.xhp
msgctxt ""
"11010000.xhp\n"
@@ -1582,7 +1420,6 @@ msgctxt ""
msgid "Library"
msgstr "ბიბლიოთეკა"
-#. .m9V
#: 11010000.xhp
msgctxt ""
"11010000.xhp\n"
@@ -1592,7 +1429,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"Library\">Library</link>"
msgstr "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"Library\">Library</link>"
-#. 5b6$
#: 11010000.xhp
msgctxt ""
"11010000.xhp\n"
@@ -1602,7 +1438,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:LibSelector\" visibility=\"visible\">Select the library that you want to edit.</ahelp> The first module of the library that you select is displayed in the Basic IDE."
msgstr "<ahelp hid=\".uno:LibSelector\" visibility=\"visible\">აირჩიეთ ბიბლიოთეკა, რომლის რედაქტირებაც გსურთ.</ahelp> ბიბლიოთეკის პირველი მოდული, რომელიც თქვენ აირჩიეთ, ნაჩვენებია Basic IDE-ში."
-#. 0o2V
#: 11010000.xhp
msgctxt ""
"11010000.xhp\n"
@@ -1611,7 +1446,6 @@ msgctxt ""
msgid "<image src=\"res/helpimg/feldalle.png\" id=\"img_id3147576\" localize=\"true\"><alt id=\"alt_id3147576\">List box Library</alt></image>"
msgstr "<image src=\"res/helpimg/feldalle.png\" id=\"img_id3147576\" localize=\"true\"><alt id=\"alt_id3147576\">სიის სარკმლის ბიბლიოთეკა</alt></image>"
-#. G7cZ
#: 11010000.xhp
msgctxt ""
"11010000.xhp\n"
@@ -1621,7 +1455,6 @@ msgctxt ""
msgid "Library List Box"
msgstr "ბიბლიოთეკის სიის სარკმელი"
-#. )g^4
#: 11180000.xhp
msgctxt ""
"11180000.xhp\n"
@@ -1630,7 +1463,6 @@ msgctxt ""
msgid "Import Dialog"
msgstr ""
-#. oq!V
#: 11180000.xhp
#, fuzzy
msgctxt ""
@@ -1641,7 +1473,6 @@ msgctxt ""
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\">გაშვება</link>"
-#. X3#{
#: 11180000.xhp
msgctxt ""
"11180000.xhp\n"
@@ -1651,7 +1482,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Calls an \"Open\" dialog to import a BASIC dialog file.</ahelp>"
msgstr ""
-#. 2*:B
#: 11180000.xhp
msgctxt ""
"11180000.xhp\n"
@@ -1660,7 +1490,6 @@ msgctxt ""
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 ""
-#. ,x~*
#: 11180000.xhp
msgctxt ""
"11180000.xhp\n"
@@ -1669,7 +1498,6 @@ msgctxt ""
msgid "Dialogs can contain localization data. When importing a dialog, a mismatch of the dialogs' localization status can occur."
msgstr ""
-#. EYUv
#: 11180000.xhp
msgctxt ""
"11180000.xhp\n"
@@ -1678,7 +1506,6 @@ msgctxt ""
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 ""
-#. QwN`
#: 11180000.xhp
msgctxt ""
"11180000.xhp\n"
@@ -1687,7 +1514,6 @@ msgctxt ""
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 ""
-#. ?lwp
#: 11180000.xhp
msgctxt ""
"11180000.xhp\n"
@@ -1696,7 +1522,6 @@ msgctxt ""
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 ""
-#. tv1V
#: 11180000.xhp
msgctxt ""
"11180000.xhp\n"
@@ -1705,7 +1530,6 @@ msgctxt ""
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 ""
-#. `+K}
#: 11180000.xhp
#, fuzzy
msgctxt ""
@@ -1715,7 +1539,6 @@ msgctxt ""
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\">ხატულა</alt></image>"
-#. SPk$
#: 11180000.xhp
msgctxt ""
"11180000.xhp\n"
@@ -1725,7 +1548,6 @@ msgctxt ""
msgid "Import Dialog"
msgstr ""
-#. f8n[
#: 11050000.xhp
msgctxt ""
"11050000.xhp\n"
@@ -1734,7 +1556,6 @@ msgctxt ""
msgid "Single Step"
msgstr ""
-#. =,O*
#: 11050000.xhp
msgctxt ""
"11050000.xhp\n"
@@ -1744,7 +1565,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link>"
msgstr "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">ერთჯერადი ბიჯი</link>"
-#. u@gg
#: 11050000.xhp
msgctxt ""
"11050000.xhp\n"
@@ -1754,7 +1574,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:BasicStepInto\">Runs the macro and stops it after the next command.</ahelp>"
msgstr ""
-#. MsIW
#: 11050000.xhp
msgctxt ""
"11050000.xhp\n"
@@ -1764,7 +1583,6 @@ msgctxt ""
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 ""
-#. 2ARI
#: 11050000.xhp
#, fuzzy
msgctxt ""
@@ -1774,7 +1592,6 @@ msgctxt ""
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_id3153249\" src=\"cmd/sc_vfixedline.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153249\">ხატულა</alt></image>"
-#. )n/o
#: 11050000.xhp
msgctxt ""
"11050000.xhp\n"
@@ -1784,7 +1601,6 @@ msgctxt ""
msgid "Single Step"
msgstr ""
-#. Tdn_
#: 11050000.xhp
msgctxt ""
"11050000.xhp\n"
@@ -1794,7 +1610,6 @@ msgctxt ""
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\">პროცედურის ბიჯი</link>"
-#. \S,v
#: 11030000.xhp
msgctxt ""
"11030000.xhp\n"
@@ -1803,7 +1618,6 @@ msgctxt ""
msgid "Run"
msgstr ""
-#. [k\D
#: 11030000.xhp
msgctxt ""
"11030000.xhp\n"
@@ -1813,7 +1627,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">Run</link>"
msgstr "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">გაშვება</link>"
-#. J79~
#: 11030000.xhp
msgctxt ""
"11030000.xhp\n"
@@ -1823,7 +1636,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:RunBasic\">Runs the first macro of the current module.</ahelp>"
msgstr "<ahelp hid=\".uno:RunBasic\">გაუშვით მიმდინარე მოდულის პირველი მაკროსი.</ahelp>"
-#. 7`Na
#: 11030000.xhp
msgctxt ""
"11030000.xhp\n"
@@ -1832,7 +1644,6 @@ msgctxt ""
msgid "<image id=\"img_id3153311\" src=\"cmd/sc_runbasic.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153311\">Icon</alt></image>"
msgstr "<image id=\"img_id3153311\" src=\"cmd/sc_runbasic.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153311\">ხატულა</alt></image>"
-#. R\\7
#: 11030000.xhp
msgctxt ""
"11030000.xhp\n"
@@ -1842,7 +1653,6 @@ msgctxt ""
msgid "Run"
msgstr ""
-#. aTFB
#: 11080000.xhp
msgctxt ""
"11080000.xhp\n"
@@ -1851,7 +1661,6 @@ msgctxt ""
msgid "Enable Watch"
msgstr ""
-#. aUF@
#: 11080000.xhp
msgctxt ""
"11080000.xhp\n"
@@ -1861,7 +1670,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Enable Watch\">Enable Watch</link>"
msgstr "<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Enable Watch\">თვალყურის დევნება ჩართულია</link>"
-#. :N`U
#: 11080000.xhp
msgctxt ""
"11080000.xhp\n"
@@ -1871,7 +1679,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:AddWatch\">Click this icon to view the variables in a macro. The contents of the variable are displayed in a separate window.</ahelp>"
msgstr "<ahelp hid=\".uno:AddWatch\">დააწაკპუნეთ ხატულა მაკროსის ცვლადების სანახავად. ცვლადის შეგთავსები გამოჩნდება სხვადასხვა ფანჯრებში.</ahelp>"
-#. RJQ7
#: 11080000.xhp
msgctxt ""
"11080000.xhp\n"
@@ -1881,7 +1688,6 @@ msgctxt ""
msgid "Click the name of a variable to select it, then click the <emph>Enable Watch</emph> icon. The value that is assigned to the variable is displayed next to its name. This value is constantly updated."
msgstr "დააწაკპუნეთ ცვლადის სახელზე მის მოსანიშნად, შემდეგ დააწკაპუნეთ <emph>თვალყურის დევნება ჩართულია</emph>-ს ხატულაზე. მნიშვნელობა, რომელიც მინიჭებულია ცვლადზე გამოისახება მისი სახელის შემდეგ. ეს მნიშვნელობა მუდმივად ახლდება."
-#. (K01
#: 11080000.xhp
msgctxt ""
"11080000.xhp\n"
@@ -1890,7 +1696,6 @@ msgctxt ""
msgid "<image id=\"img_id3147209\" src=\"cmd/sc_addwatch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147209\">Icon</alt></image>"
msgstr "<image id=\"img_id3147209\" src=\"cmd/sc_addwatch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147209\">ხატულა</alt></image>"
-#. DgVG
#: 11080000.xhp
msgctxt ""
"11080000.xhp\n"
@@ -1900,7 +1705,6 @@ msgctxt ""
msgid "Enable Watch"
msgstr ""
-#. H2T[
#: 11080000.xhp
msgctxt ""
"11080000.xhp\n"
@@ -1910,7 +1714,6 @@ msgctxt ""
msgid "To remove the variable watch, select the variable in the Watch window, and then click on the <emph>Remove Watch</emph> icon."
msgstr ""
-#. }5yB
#: 11170000.xhp
msgctxt ""
"11170000.xhp\n"
@@ -1919,7 +1722,6 @@ msgctxt ""
msgid "Manage Breakpoints"
msgstr ""
-#. ^_n9
#: 11170000.xhp
msgctxt ""
"11170000.xhp\n"
@@ -1929,7 +1731,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/02/11170000.xhp\" name=\"Manage Breakpoints\">Manage Breakpoints</link>"
msgstr "<link href=\"text/sbasic/shared/02/11170000.xhp\" name=\"Manage Breakpoints\">წყვეტის წერტილების მართვა</link>"
-#. Ng)^
#: 11170000.xhp
msgctxt ""
"11170000.xhp\n"
@@ -1939,7 +1740,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Calls a dialog to manage breakpoints.</ahelp>"
msgstr "<ahelp hid=\".\">იძახებს დიალოგს წყვეტის წერტილების სამართავად.</ahelp>"
-#. D+5.
#: 11170000.xhp
msgctxt ""
"11170000.xhp\n"
@@ -1948,7 +1748,6 @@ msgctxt ""
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\">ხატულა</alt></image>"
-#. k/,B
#: 11170000.xhp
msgctxt ""
"11170000.xhp\n"
@@ -1958,7 +1757,6 @@ msgctxt ""
msgid "Manage Breakpoints"
msgstr ""
-#. JlBc
#: 11170000.xhp
msgctxt ""
"11170000.xhp\n"
diff --git a/source/ka/helpcontent2/source/text/scalc.po b/source/ka/helpcontent2/source/text/scalc.po
index 3d308ed85ee..eee2766b056 100644
--- a/source/ka/helpcontent2/source/text/scalc.po
+++ b/source/ka/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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\n"
"PO-Revision-Date: 2011-07-28 12:40+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. \T}c
#: main0208.xhp
msgctxt ""
"main0208.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Status Bar"
msgstr "სტატუსის ზოლი"
-#. ?yL}
#: main0208.xhp
msgctxt ""
"main0208.xhp\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status Bar\">Status Bar</link>"
msgstr "<link href=\"text/scalc/main0208.xhp\" name=\"Status Bar\">Status Bar</link>"
-#. kdz/
#: main0208.xhp
msgctxt ""
"main0208.xhp\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "The <emph>Status Bar</emph> displays information about the current sheet."
msgstr "The <emph>სტატუსის ზოლი</emph> displays information about the current sheet."
-#. An|1
#: main0208.xhp
msgctxt ""
"main0208.xhp\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "Digital Signature"
msgstr "ციფრული ხელმოწერა"
-#. rJV)
#: main0208.xhp
msgctxt ""
"main0208.xhp\n"
@@ -62,7 +57,6 @@ msgctxt ""
msgid "See also <link href=\"text/shared/guide/digital_signatures.xhp\">Digital Signatures</link>."
msgstr ""
-#. ]^#L
#: main0112.xhp
msgctxt ""
"main0112.xhp\n"
@@ -71,7 +65,6 @@ msgctxt ""
msgid "Data"
msgstr "მონაცემები"
-#. jPa1
#: main0112.xhp
msgctxt ""
"main0112.xhp\n"
@@ -81,7 +74,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0112.xhp\" name=\"Data\">Data</link>"
msgstr "<link href=\"text/scalc/main0112.xhp\" name=\"მონაცემები\">მონაცემები</link>"
-#. (X~b
#: main0112.xhp
msgctxt ""
"main0112.xhp\n"
@@ -91,7 +83,6 @@ msgctxt ""
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 ""
-#. qKP[
#: main0112.xhp
msgctxt ""
"main0112.xhp\n"
@@ -101,7 +92,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12010000.xhp\" name=\"Define Range\">Define Range</link>"
msgstr "<link href=\"text/scalc/01/12010000.xhp\" name=\"არის მითითება\">არის მითითება</link>"
-#. u(Y@
#: main0112.xhp
msgctxt ""
"main0112.xhp\n"
@@ -111,7 +101,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12020000.xhp\" name=\"Select Range\">Select Range</link>"
msgstr "<link href=\"text/scalc/01/12020000.xhp\" name=\"არის მონიშვნა\">არის მონიშვნა</link>"
-#. W+*)
#: main0112.xhp
msgctxt ""
"main0112.xhp\n"
@@ -121,7 +110,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12030000.xhp\" name=\"Sort\">Sort</link>"
msgstr "<link href=\"text/scalc/01/12030000.xhp\" name=\"დახარისხება\">დახარისხება</link>"
-#. Te+-
#: main0112.xhp
msgctxt ""
"main0112.xhp\n"
@@ -131,7 +119,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12050000.xhp\" name=\"Subtotals\">Subtotals</link>"
msgstr "<link href=\"text/scalc/01/12050000.xhp\" name=\"შუალედური ჯამები\">შუალედური ჯამები</link>"
-#. |pBb
#: main0112.xhp
msgctxt ""
"main0112.xhp\n"
@@ -141,7 +128,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Validity\">Validity</link>"
msgstr "<link href=\"text/scalc/01/12120000.xhp\" name=\"შემოწმება\">შემოწმება</link>"
-#. H7-t
#: main0112.xhp
msgctxt ""
"main0112.xhp\n"
@@ -151,7 +137,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple Operations\">Multiple Operations</link>"
msgstr "<link href=\"text/scalc/01/12060000.xhp\" name=\"ოპერანდების ცხრილი\">ოპერანდების ცხრილი</link>"
-#. AVc7
#: main0112.xhp
msgctxt ""
"main0112.xhp\n"
@@ -160,7 +145,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
msgstr ""
-#. H[dZ
#: main0112.xhp
msgctxt ""
"main0112.xhp\n"
@@ -170,7 +154,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12070000.xhp\" name=\"Consolidate\">Consolidate</link>"
msgstr "<link href=\"text/scalc/01/12070000.xhp\" name=\"კონსოლიდაცია\">კონსოლიდაცია</link>"
-#. *g^y
#: main0112.xhp
msgctxt ""
"main0112.xhp\n"
@@ -180,7 +163,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
msgstr "<link href=\"text/scalc/01/12100000.xhp\" name=\"დიაპაზონის განახლება\">დიაპაზონის განახლება</link>"
-#. YL}+
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
@@ -189,7 +171,6 @@ msgctxt ""
msgid "Tools"
msgstr "ინსტრუმენტები"
-#. 7Uyr
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
@@ -199,7 +180,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0106.xhp\" name=\"Tools\">Tools</link>"
msgstr "<link href=\"text/scalc/main0106.xhp\" name=\"ინსტრუმენტები\">ინსტრუმენტები</link>"
-#. *~\i
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
@@ -209,7 +189,6 @@ msgctxt ""
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 ""
-#. F!:7
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
@@ -219,7 +198,6 @@ msgctxt ""
msgid "You can also create and assign macros and configure the look and feel of toolbars, menus, keyboard, and set the default options for $[officename] applications."
msgstr "თქვენ შეგიძლიათ ასევე შექმნათ, მიამაგროთ და დააკონფიგურიროთ ინსტრუმენტთა დაფის იერსახე, მენიუების, კლავიატურის და დასვათ სტანდარტული მნიშვნელობა $[officename] პროგრამისთვის."
-#. K+]$
#: main0106.xhp
#, fuzzy
msgctxt ""
@@ -230,7 +208,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"გვერდი\">გვერდი</link>"
-#. x|-l
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
@@ -240,7 +217,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/06050000.xhp\" name=\"Scenarios\">Scenarios</link>"
msgstr "<link href=\"text/scalc/01/06050000.xhp\" name=\"სცენარები\">სცენარები</link>"
-#. 5#1e
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
@@ -250,7 +226,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"ავტო-შესწორება\">ავტო-შესწორება</link>"
-#. +SI%
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
@@ -260,7 +235,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"კონფიგურაცია\">მორგება</link>"
-#. t.#m
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -269,7 +243,6 @@ msgctxt ""
msgid "$[officename] Calc Features"
msgstr "$[officename] Calc-ის შესაძლებლობები"
-#. H4e^
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -279,7 +252,6 @@ msgctxt ""
msgid "<variable id=\"main0503\"><link href=\"text/scalc/main0503.xhp\" name=\"$[officename] Calc Features\">$[officename] Calc Features</link></variable>"
msgstr "<variable id=\"main0503\"><link href=\"text/scalc/main0503.xhp\" name=\"$[officename] Calc-ის შესაძლებლობები\">$[officename] Calc-ის შესაძლებლობები</link></variable>"
-#. :JhF
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -289,7 +261,6 @@ msgctxt ""
msgid "$[officename] Calc is a spreadsheet application that you can use to calculate, analyze, and manage your data. You can also import and modify Microsoft Excel spreadsheets."
msgstr "$[officename] Calc არის ელექტრონული ცხრილების პროგრამა, რომელიც საშალებას გაძლევთ გამოთვალოთ, გააანალიზოთ და მოაწყოთ თქვენი მონაცემები. თქვენ შეგიძლიათ აგრეთვე გაუკეთოთ იმპორტი და შეცვალოთ Microsoft Excel-ის ელექტრონული ცხრილები."
-#. t_d^
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -299,7 +270,6 @@ msgctxt ""
msgid "Calculations"
msgstr "გამოთვლები"
-#. UXP_
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -309,7 +279,6 @@ msgctxt ""
msgid "$[officename] Calc provides you with <link href=\"text/scalc/01/04060100.xhp\" name=\"functions\">functions</link>, including statistical and banking functions, that you can use to create formulas to perform complex calculations on your data."
msgstr "$[officename] Calc გაწვდით <link href=\"text/scalc/01/04060100.xhp\" name=\"ფუნქციებს\">ფუნქციებს</link>, რომელშიც შედის სტატისტიკური და საბანკო ფუნქციები, მათი გამოყენება შეგიძლიათ შეასრულოთ თქვენი მონაცემების კომპლექსური გამოთვლები."
-#. o,yq
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -319,7 +288,6 @@ msgctxt ""
msgid "You can also use the <link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilots\">Function Wizard</link> to help you create your formulas."
msgstr "თქვენ შეგიძლიათ აგრეთვე გამოიყენოთ <link href=\"text/scalc/01/04060000.xhp\" name=\"ავტო-პილოტი\">ფუნქციის ოსტატი</link> იმისათვის რომ ის დაგეხმაროთ ფორმულების შექმნაში."
-#. pG$k
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -329,7 +297,6 @@ msgctxt ""
msgid "What-If Calculations"
msgstr "რა-თუ გამოთვლები"
-#. `\\r
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -339,7 +306,6 @@ msgctxt ""
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 ""
-#. jpCj
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -349,7 +315,6 @@ msgctxt ""
msgid "Database Functions"
msgstr "მოანცემთა ბაზების ფუნქციები"
-#. YBoo
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -359,7 +324,6 @@ msgctxt ""
msgid "Use spreadsheets to arrange, store, and filter your data."
msgstr "გამოიყენეთ ელექტრონული ცხრილები თქვენი მონაცემების მოსაწყობად, შესანახად და გასაფილტრად."
-#. CAEb
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -369,7 +333,6 @@ msgctxt ""
msgid "$[officename] Calc lets you drag-and-drop tables from databases, or lets you use a spreadsheet as a data source for creating form letters in $[officename] Writer."
msgstr "$[officename] Calc გაძლევთ საშუალებას გადაათრიოთ-დაგდოთ ცხრილები მონაცემთა ბაზებიდან, ან გაძლევთ საშუუალებას გამოიყენოთ ელექტრონული ცხრილები როგორც მონაცემთა წყარო ფორმალური წერილების შესაქმნელად $[officename] Writer-ში."
-#. f@fj
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -379,7 +342,6 @@ msgctxt ""
msgid "Arranging Data"
msgstr "მონაცემების მოწყობა"
-#. \S_D
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -389,7 +351,6 @@ msgctxt ""
msgid "With a few mouse-clicks, you can reorganize your spreadsheet to show or hide certain data ranges, or to format ranges according to special conditions, or to quickly calculate subtotals and totals."
msgstr "რამდენჯერმე მაუსზე დაწკაპუნებით თქვენ შეგიძლიათ მოაწყოთ ელექტრონული ცხრილები - გამოაჩინოთ ან დამალოთ მონაცემების ზუსტი საზღვრები, ან საგანგებო პირობების მიხედვით საზღვრების ფორმატირება, ან სწრაფად ქვეჯამების და ჯამების გამოთვლა."
-#. z;ki
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -399,7 +360,6 @@ msgctxt ""
msgid "Dynamic Charts"
msgstr "დინამიკური დიაგრამები"
-#. U5=Z
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -409,7 +369,6 @@ msgctxt ""
msgid "$[officename] Calc lets you present spreadsheet data in dynamic charts that update automatically when the data changes."
msgstr "$[officename] Calc გაძლევთ საშუალებას წარმოადგინოთ ელექტრონული ცხრილები დინამიკური დიაგრამის სახით, რომელიც განახლდება მონაცემების ყოველი შეცვლისას."
-#. U3BR
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -419,7 +378,6 @@ msgctxt ""
msgid "Opening and Saving Microsoft Files"
msgstr "Microsoft-ის ფაილების გახსნა და შენახვა"
-#. vobx
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
@@ -429,7 +387,6 @@ msgctxt ""
msgid "Use the $[officename] filters to convert Excel files, or to open and save in a variety of other <link href=\"text/shared/00/00000020.xhp\" name=\"formats\">formats</link>."
msgstr "გამოიყენეთ $[officename] ფილტრები Excel-ის ფაილების გარდასაქმნელად, ან იმისათვის რომ გახსნათ და გამოიყენოთ სხვადასხვა<link href=\"text/shared/00/00000020.xhp\" name=\"ფორმატებში\">ფორმატებში</link>."
-#. y0IT
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
@@ -438,7 +395,6 @@ msgctxt ""
msgid "Text Formatting Bar"
msgstr "ტექსტის ფორმატირების ზოლი"
-#. -2b(
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
@@ -448,7 +404,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0205.xhp\" name=\"Text Formatting Bar\">Text Formatting Bar</link>"
msgstr "<link href=\"text/scalc/main0205.xhp\" name=\"ტექსტის ფორმატირების ზოლი\">ტექსტის ფორმატირების ზოლი</link>"
-#. eDO~
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
@@ -458,7 +413,6 @@ msgctxt ""
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\">The <emph>ტექსტის ფორმატირების</emph> ზოლი, რომელიც ხილვადია მას შემდეგ რაც კურსორი არის ტექსტურ ობიექტში, როგორიც არის ტექსტის ჩარჩო ან სახატავი დოკუმენტი, შეიცავს ფორმატირების და სწორების ბრძანებებს.</ahelp>"
-#. 2~:z
#: main0205.xhp
#, fuzzy
msgctxt ""
@@ -469,7 +423,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">ხაზის ფერი</link>"
-#. P(ik
#: main0205.xhp
#, fuzzy
msgctxt ""
@@ -480,7 +433,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1\">Line Spacing: 1</link>"
msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">ხაზის სტილი</link>"
-#. t0jW
#: main0205.xhp
#, fuzzy
msgctxt ""
@@ -491,7 +443,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1.5\">Line Spacing: 1.5</link>"
msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">ხაზის სტილი</link>"
-#. W-$f
#: main0205.xhp
#, fuzzy
msgctxt ""
@@ -502,7 +453,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 2\">Line Spacing: 2</link>"
msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">ხაზის სტილი</link>"
-#. N_`s
#: main0205.xhp
#, fuzzy
msgctxt ""
@@ -513,7 +463,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Left\">Align Left</link>"
msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"სწორება მარცხნივ\">სწორება მარცხნივ</link>"
-#. Y8d%
#: main0205.xhp
#, fuzzy
msgctxt ""
@@ -524,7 +473,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Centered\">Centered</link>"
msgstr "<link href=\"text/shared/02/01170100.xhp\" name=\"კონტროლი\">გაკონტროლება</link>"
-#. `huN
#: main0205.xhp
#, fuzzy
msgctxt ""
@@ -535,7 +483,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Right\">Align Right</link>"
msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"სწორება მარჯვნივ\">სწორება მარჯვნივ</link>"
-#. =t5u
#: main0205.xhp
#, fuzzy
msgctxt ""
@@ -546,7 +493,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Justify\">Justify</link>"
msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"სწორება\">სწორება</link>"
-#. QPU9
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
@@ -556,7 +502,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Superscript\">Superscript</link>"
msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"ზედა ინდექსი\">ზედა ინდექსი</link>"
-#. @c^R
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
@@ -566,7 +511,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Subscript\">Subscript</link>"
msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"ქვედა ინდექსი\">ქვედა ინდექსი</link>"
-#. ]4m4
#: main0205.xhp
#, fuzzy
msgctxt ""
@@ -577,7 +521,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"საგანგებო სიმბოლო\">საგანგებო სიმბოლო</link>"
-#. =GPZ
#: main0205.xhp
#, fuzzy
msgctxt ""
@@ -588,7 +531,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-#. nG=N
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
@@ -597,7 +539,6 @@ msgctxt ""
msgid "Drawing Object Properties Bar"
msgstr "სახატავი ობიექტის თვისებების ზოლი"
-#. rl;a
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
@@ -607,7 +548,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0203.xhp\" name=\"Drawing Object Properties Bar\">Drawing Object Properties Bar</link>"
msgstr ""
-#. Oo0\
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
@@ -617,7 +557,6 @@ msgctxt ""
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 ""
-#. BX,d
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
@@ -627,7 +566,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">ხაზის სტილი</link>"
-#. H!$C
#: main0203.xhp
#, fuzzy
msgctxt ""
@@ -638,7 +576,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
msgstr "#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\\n<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">ხაზის სიგანე</link>\\n#-#-#-#-# sdraw.po (PACKAGE VERSION) #-#-#-#-#\\n<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">ხაზის სტილი</link>"
-#. xr5b
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
@@ -648,7 +585,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">ხაზის ფერი</link>"
-#. 3`N%
#: main0203.xhp
#, fuzzy
msgctxt ""
@@ -659,7 +595,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background Color\">Background Color</link>"
msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">ხაზის ფერი</link>"
-#. 51A$
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -668,7 +603,6 @@ msgctxt ""
msgid "Insert"
msgstr "ჩასმა"
-#. Kq9M
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -678,7 +612,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0104.xhp\" name=\"Insert\">Insert</link>"
msgstr "<link href=\"text/scalc/main0104.xhp\" name=\"ჩასმა\">ჩასმა</link>"
-#. #HGE
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -688,7 +621,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">The Insert menu contains commands for inserting new elements, such as cells, rows, sheets and cell names into the current sheet.</ahelp>"
msgstr ""
-#. ;t_d
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -698,7 +630,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Cells\">Cells</link>"
msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"უჯრები\">უჯრები</link>"
-#. Hm-_
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -708,7 +639,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04050000.xhp\" name=\"Sheet\">Sheet</link>"
msgstr "<link href=\"text/scalc/01/04050000.xhp\" name=\"ფურცელი\">ფურცელი</link>"
-#. d%gd
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -718,7 +648,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"საგანგებო სიმბოლო\">საგანგებო სიმბოლო</link>"
-#. /G;8
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -728,7 +657,6 @@ msgctxt ""
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"ბმული\">ბმული</link>"
-#. X_o2
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -738,7 +666,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"Function\">Function</link>"
msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"ფუნქცია\">ფუნქცია</link>"
-#. !=!N
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -748,7 +675,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04080000.xhp\" name=\"Function List\">Function List</link>"
msgstr "<link href=\"text/scalc/01/04080000.xhp\" name=\"ფუნქციების სია\">ფუნქციების სია</link>"
-#. amE`
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -758,7 +684,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comment</link>"
msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"შენიშვნა\">შენიშვნა</link>"
-#. a4E`
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -768,7 +693,6 @@ msgctxt ""
msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link>"
msgstr ""
-#. JP9/
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -777,7 +701,6 @@ msgctxt ""
msgid "Inserts a chart."
msgstr ""
-#. c1+l
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
@@ -787,7 +710,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"მოძრავი ჩარჩო\">მოძრავი ჩარჩო</link>"
-#. TxB%
#: main0218.xhp
msgctxt ""
"main0218.xhp\n"
@@ -796,7 +718,6 @@ msgctxt ""
msgid "Tools Bar"
msgstr "ხელსაწყოთა ზოლი"
-#. 3}9_
#: main0218.xhp
msgctxt ""
"main0218.xhp\n"
@@ -806,7 +727,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0218.xhp\" name=\"Tools Bar\">Tools Bar</link>"
msgstr "<link href=\"text/scalc/main0218.xhp\" name=\"ხელსაწყოთა ზოლი\">ხელსაწყოთა ზოლი</link>"
-#. }7Oj
#: main0218.xhp
msgctxt ""
"main0218.xhp\n"
@@ -816,7 +736,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_SC_TOOLBOX_TOOLS\">Use the Tools bar to access commonly used commands.</ahelp>"
msgstr "<ahelp hid=\"HID_SC_TOOLBOX_TOOLS\">გამოიყენეთ ხელსაწყოთა ზოლი ყველაზე ხშირად გამოყენებული ბრძანებების წვდომისათვის.</ahelp>"
-#. ?W0c
#: main0218.xhp
#, fuzzy
msgctxt ""
@@ -826,7 +745,6 @@ msgctxt ""
msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Controls\">Controls</link>"
msgstr "<link href=\"text/shared/02/01170100.xhp\" name=\"კონტროლი\">გაკონტროლება</link>"
-#. aF?^
#: main0218.xhp
#, fuzzy
msgctxt ""
@@ -837,7 +755,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Choose Themes\">Choose Themes</link>"
msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"გვერდი\">გვერდი</link>"
-#. ~=3v
#: main0218.xhp
msgctxt ""
"main0218.xhp\n"
@@ -846,7 +763,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced Filter\">Advanced Filter</link>"
msgstr ""
-#. iSoT
#: main0218.xhp
#, fuzzy
msgctxt ""
@@ -856,7 +772,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12090100.xhp\">Start</link>"
msgstr "<link href=\"text/scalc/01/12030000.xhp\" name=\"დახარისხება\">დახარისხება</link>"
-#. mH,K
#: main0218.xhp
msgctxt ""
"main0218.xhp\n"
@@ -865,7 +780,6 @@ msgctxt ""
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\">Euro Converter</link>"
-#. 5`[Y
#: main0218.xhp
#, fuzzy
msgctxt ""
@@ -875,7 +789,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04070100.xhp\">Define</link>"
msgstr "<link href=\"text/scalc/01/12030000.xhp\" name=\"დახარისხება\">დახარისხება</link>"
-#. ;`-!
#: main0218.xhp
#, fuzzy
msgctxt ""
@@ -885,7 +798,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"გვერდი\">გვერდი</link>"
-#. 2Qne
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -894,7 +806,6 @@ msgctxt ""
msgid "Format"
msgstr "ფორმატი"
-#. Mv4=
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -904,7 +815,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0105.xhp\" name=\"Format\">Format</link>"
msgstr "<link href=\"text/scalc/main0105.xhp\" name=\"ფორმატი\">ფორმატი</link>"
-#. 8V/1
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -914,7 +824,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:FormatMenu\">The <emph>Format</emph> menu contains commands for formatting selected cells, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objects\">objects</link>, and cell contents in your document.</ahelp>"
msgstr "<ahelp hid=\".uno:FormatMenu\">The <emph>Format</emph> menu contains commands for formatting selected cells, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objects\">objects</link>, and cell contents in your document.</ahelp>"
-#. a{?4
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -924,7 +833,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Cells\">Cells</link>"
msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"უჯრები\">უჯრები</link>"
-#. V1RD
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -934,7 +842,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Page\">Page</link>"
msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"გვერდი\">გვერდი</link>"
-#. t*oI
#: main0105.xhp
#, fuzzy
msgctxt ""
@@ -945,7 +852,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"საგანგებო სიმბოლო\">საგანგებო სიმბოლო</link>"
-#. Pto\
#: main0105.xhp
#, fuzzy
msgctxt ""
@@ -956,7 +862,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-#. +N/e
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -966,7 +871,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat</link>"
msgstr "<link href=\"text/scalc/01/05110000.xhp\" name=\"ავტოფორმატირება\">ავტოფორმატირება</link>"
-#. IP-n
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -976,7 +880,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05120000.xhp\" name=\"Conditional Formatting\">Conditional Formatting</link>"
msgstr "<link href=\"text/scalc/01/05120000.xhp\" name=\"ფორმატირება პირობებით\">ფორმატირება პირობებით</link>"
-#. n/6X
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -986,7 +889,6 @@ msgctxt ""
msgid "<link href=\"text/shared/02/01170100.xhp\" name=\"Control\">Control</link>"
msgstr "<link href=\"text/shared/02/01170100.xhp\" name=\"კონტროლი\">გაკონტროლება</link>"
-#. ;EV.
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -996,7 +898,6 @@ msgctxt ""
msgid "<link href=\"text/shared/02/01170200.xhp\" name=\"Form\">Form</link>"
msgstr "<link href=\"text/shared/02/01170200.xhp\" name=\"ფორმა\">ფორმა</link>"
-#. 55S8
#: main0107.xhp
msgctxt ""
"main0107.xhp\n"
@@ -1005,7 +906,6 @@ msgctxt ""
msgid "Window"
msgstr "ფანჯარა"
-#. %yCI
#: main0107.xhp
msgctxt ""
"main0107.xhp\n"
@@ -1015,7 +915,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0107.xhp\" name=\"Window\">Window</link>"
msgstr "<link href=\"text/scalc/main0107.xhp\" name=\"ფანჯარა\">ფანჯარა</link>"
-#. m4nb
#: main0107.xhp
msgctxt ""
"main0107.xhp\n"
@@ -1025,7 +924,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:WindowList\">Contains commands for manipulating and displaying document windows.</ahelp>"
msgstr ""
-#. =4re
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1034,7 +932,6 @@ msgctxt ""
msgid "Page Preview Bar"
msgstr "გევრდის გადახედვის ზოლი"
-#. ug8\
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1044,7 +941,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Page Preview Bar\">Page Preview Bar</link>"
msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"გევრდის გადახედვის ზოლი\">გევრდის გადახედვის ზოლი</link>"
-#. lM(\
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1054,7 +950,6 @@ msgctxt ""
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\">The <emph>გვერდის გადახედვა</emph> ზოლი გამოჩნდება მას შემდეგ, რაც თქვენ აირჩევთ <emph>ფაილი - გვერდის გადახედვა </emph>.</ahelp>"
-#. (E;-
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1064,7 +959,6 @@ msgctxt ""
msgid "Full Screen"
msgstr ""
-#. B5(:
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1073,7 +967,6 @@ msgctxt ""
msgid "Hides the menus and toolbars. To exit the full screen mode, click the <emph>Full Screen On/Off</emph> button."
msgstr ""
-#. [)Yt
#: main0210.xhp
#, fuzzy
msgctxt ""
@@ -1084,7 +977,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format Page\">Format Page</link>"
msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"გვერდი\">გვერდი</link>"
-#. Lbp0
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1094,7 +986,6 @@ msgctxt ""
msgid "Margins"
msgstr ""
-#. G|\w
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1103,7 +994,6 @@ msgctxt ""
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 ""
-#. r;,N
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1113,7 +1003,6 @@ msgctxt ""
msgid "Scaling Factor"
msgstr ""
-#. 3WUn
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1122,7 +1011,6 @@ msgctxt ""
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 ""
-#. FngN
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1132,7 +1020,6 @@ msgctxt ""
msgid "Close Preview"
msgstr ""
-#. .l?3
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -1141,7 +1028,6 @@ msgctxt ""
msgid "To exit the page preview, click the <emph>Close Preview</emph> button."
msgstr ""
-#. Bb3m
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
@@ -1150,7 +1036,6 @@ msgctxt ""
msgid "View"
msgstr "ხედი"
-#. ;!39
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
@@ -1160,7 +1045,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0103.xhp\" name=\"View\">View</link>"
msgstr "<link href=\"text/scalc/main0103.xhp\" name=\"ხედი\">ხედი</link>"
-#. D0|i
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
@@ -1170,7 +1054,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">This menu contains commands for controlling the on-screen display of the document.</ahelp>"
msgstr ""
-#. 7Bqn
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
@@ -1179,7 +1062,6 @@ msgctxt ""
msgid "Normal"
msgstr "ნორმალური"
-#. =M@F
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
@@ -1188,7 +1070,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Displays the normal view of the sheet.</ahelp>"
msgstr "<ahelp hid=\".\">გამოსახავს ფურცლის ნორმალურ ხედს.</ahelp>"
-#. _Yl`
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
@@ -1198,7 +1079,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"გადიდება\">გადიდება</link>"
-#. gsc:
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -1207,7 +1087,6 @@ msgctxt ""
msgid "Edit"
msgstr "რედაქტირება"
-#. K944
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -1217,7 +1096,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0102.xhp\" name=\"Edit\">Edit</link>"
msgstr "<link href=\"text/scalc/main0102.xhp\" name=\"რედაქტირება\">რედაქტირება</link>"
-#. 9,bY
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -1227,7 +1105,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
msgstr ""
-#. LGG:
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -1237,7 +1114,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
msgstr "<link href=\"text/shared/01/02070000.xhp\" name=\"საგანგებოდ ჩასმა\">საგანგებოდ ჩასმა</link>"
-#. IsO[
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -1247,7 +1123,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/02240000.xhp\" name=\"Compare Document\">Compare Document</link>"
msgstr "<link href=\"text/shared/01/02240000.xhp\" name=\"დოკუმენტის შედარება\">დოკუმენტის შედარება</link>"
-#. -J\*
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -1257,7 +1132,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
msgstr "<link href=\"text/shared/01/02100000.xhp\" name=\"პოვნა და შეცვლა\">პოვნა და შეცვლა</link>"
-#. GArZ
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -1267,7 +1141,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/02120000.xhp\" name=\"Headers & Footers\">Headers & Footers</link>"
msgstr "<link href=\"text/scalc/01/02120000.xhp\" name=\"ზედა და ქვედა კოლონტიტული\">ზედა და ქვედა კოლონტიტული</link>"
-#. Zxts
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -1277,7 +1150,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">Delete Contents</link>"
msgstr "<link href=\"text/scalc/01/02150000.xhp\" name=\"შემცველობის წაშლა\">შემცველობის წაშლა</link>"
-#. *hV,
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -1287,7 +1159,6 @@ msgctxt ""
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</link>"
-#. Uc_l
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -1297,7 +1168,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"ბმულები\">ბმულები</link>"
-#. KltG
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
@@ -1307,7 +1177,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-#. ExHP
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1316,7 +1185,6 @@ msgctxt ""
msgid "Formatting Bar"
msgstr "ფირმატირების ზოლი"
-#. k9Mk
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1326,7 +1194,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0202.xhp\" name=\"Formatting Bar\">Formatting Bar</link>"
msgstr "<link href=\"text/scalc/main0202.xhp\" name=\"ფორმატირების ზოლი\">ფორმატირების ზოლი</link>"
-#. l(?7
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1336,7 +1203,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_SC_TOOLBOX_TABLE\">The <emph>Formatting</emph> bar contains basic commands for applying manually formatting.</ahelp>"
msgstr "<ahelp hid=\"HID_SC_TOOLBOX_TABLE\">The <emph>ფორმატირების</emph>ზოლი შეიცავს ხელით დაფორმატებისთვის ხელმისაწვდომ ძირითად ბრძანებებს. </ahelp>"
-#. /ew2
#: main0202.xhp
#, fuzzy
msgctxt ""
@@ -1347,7 +1213,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">ხაზის ფერი</link>"
-#. %sT+
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1357,7 +1222,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Left\">Align Left</link>"
msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"სწორება მარცხნივ\">სწორება მარცხნივ</link>"
-#. 6z.C
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1367,7 +1231,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Horizontally\">Align Center Horizontally</link>"
msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"სწორება ცენტრში ჰორიზონტალზე\">სწორება ცენტრში ჰორიზონტალზე</link>"
-#. 5fdM
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1377,7 +1240,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Right\">Align Right</link>"
msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"სწორება მარჯვნივ\">სწორება მარჯვნივ</link>"
-#. `I$C
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1387,7 +1249,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Justify\">Justify</link>"
msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"სწორება\">სწორება</link>"
-#. PsW5
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1397,7 +1258,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Top\">Align Top</link>"
msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"სწორება ზემოთ\">სწორება ზემოთ</link>"
-#. gIH(
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1407,7 +1267,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Vertically\">Align Center Vertically</link>"
msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"სწორება ცენტრში ვერტიკალზე\">სწორება ცენტრში ვერტიკალზე</link>"
-#. !IwA
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1417,7 +1276,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Bottom\">Align Bottom</link>"
msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"სწორება ქვემოთ\">სწორება ქვემოთ</link>"
-#. YmpL
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1426,7 +1284,6 @@ msgctxt ""
msgid "Number Format : Date"
msgstr "რიცხვების ფორმატი : თარიღი"
-#. sEe.
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1435,7 +1292,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Applies the date format to the selected cells.</ahelp>"
msgstr "<ahelp hid=\".\">მონიშნულ უჯრებში ააქტიურებს თარიღს ფორმატს. </ahelp>"
-#. }VJQ
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1444,7 +1300,6 @@ msgctxt ""
msgid "Number Format: Exponential"
msgstr "რიცხვის ფორმატი: ექსპონენციალური"
-#. !c06
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1453,7 +1308,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Applies the exponential format to the selected cells.</ahelp>"
msgstr "<ahelp hid=\".\">მონიშნულ უჯრებში ააქტიურებს ექსპონენციალურ ფორმატს.</ahelp>"
-#. p27,
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1462,7 +1316,6 @@ msgctxt ""
msgid "Additional icons"
msgstr "დამატებითი ხატულები"
-#. *(!1
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1471,7 +1324,6 @@ msgctxt ""
msgid "If <link href=\"text/shared/00/00000005.xhp#ctl\" name=\"CTL\">CTL</link> support is enabled, two additional icons are visible."
msgstr "თუ <link href=\"text/shared/00/00000005.xhp#ctl\" name=\"CTL\">CTL</link> ჩართულია მხარდაჭერა, ორი დამატებითი ხატულა არის ხილვადი."
-#. f,eh
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1480,7 +1332,6 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "მარცხნიდან მარჯვნივ"
-#. `G|#
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1489,7 +1340,6 @@ msgctxt ""
msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
msgstr ""
-#. ,^Od
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1498,7 +1348,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ParaLeftToRight\">The text is entered from left to right.</ahelp>"
msgstr "<ahelp hid=\".uno:ParaLeftToRight\">ტექსტი შეყვანილია მარცხნიდან მარჯვნივ</ahelp>"
-#. IOMq
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1507,7 +1356,6 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "მარჯვნიდან მარცხნივ"
-#. ]_8^
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1516,7 +1364,6 @@ msgctxt ""
msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
msgstr ""
-#. O5(^
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1525,7 +1372,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ParaRightToLeft\">The text formatted in a complex text layout language is entered from right to left.</ahelp>"
msgstr "<ahelp hid=\".uno:ParaRightToLeft\">რთული ტექსტის განლაგების ენაზე დაფორმატებული ტექსტი შეყვანილია მარჯვნიდან მარცხნივ.</ahelp>"
-#. :Vuh
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1534,7 +1380,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the left.</ahelp>"
msgstr ""
-#. :oKH
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1543,7 +1388,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the right.</ahelp>"
msgstr ""
-#. ;iar
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1552,7 +1396,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Horizontally centers the contents of the cell.</ahelp>"
msgstr ""
-#. qYmO
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
@@ -1561,7 +1404,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the left and right cell borders.</ahelp>"
msgstr ""
-#. 1r0%
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -1570,7 +1412,6 @@ msgctxt ""
msgid "Welcome to the $[officename] Calc Help"
msgstr ""
-#. nH=N
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -1580,7 +1421,6 @@ msgctxt ""
msgid "Welcome to the $[officename] Calc Help"
msgstr ""
-#. uffg
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -1590,7 +1430,6 @@ msgctxt ""
msgid "How to Work With $[officename] Calc"
msgstr "როგორ ვიმუშაოთ $[officename] Calc-თან"
-#. +O;]
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -1600,7 +1439,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Functions by Category\">List of Functions by Category</link>"
msgstr ""
-#. 6=g#
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -1610,7 +1448,6 @@ msgctxt ""
msgid "$[officename] Calc Menus, Toolbars, and Keys"
msgstr "$[officename] Calc-ის მენიუები, ინსტრუმენტთა დაფები და გასაღებები"
-#. p3Y6
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -1620,7 +1457,6 @@ msgctxt ""
msgid "Help about the Help"
msgstr "დახმარება დახმარების შესახებ"
-#. MO6?
#: main0100.xhp
msgctxt ""
"main0100.xhp\n"
@@ -1629,7 +1465,6 @@ msgctxt ""
msgid "Menus"
msgstr "მენიუები"
-#. 9.ES
#: main0100.xhp
msgctxt ""
"main0100.xhp\n"
@@ -1639,7 +1474,6 @@ msgctxt ""
msgid "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
msgstr "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\" name=\"მენიუები\">მენიუები</link></variable>"
-#. tquf
#: main0100.xhp
msgctxt ""
"main0100.xhp\n"
@@ -1649,7 +1483,6 @@ msgctxt ""
msgid "The following menu commands are available for spreadsheets."
msgstr "მენიუს შემდეგი ბრძანებები ხელმისაწვდომია ელექტრონული ცხრილებისთვის."
-#. ]O/]
#: main0206.xhp
msgctxt ""
"main0206.xhp\n"
@@ -1658,7 +1491,6 @@ msgctxt ""
msgid "Formula Bar"
msgstr "ფორმულათა ზოლი"
-#. o(*a
#: main0206.xhp
#, fuzzy
msgctxt ""
@@ -1669,7 +1501,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0206.xhp\" name=\"Formula Bar\">Formula Bar</link>"
msgstr "<link href=\"text/scalc/main0218.xhp\" name=\"ხელსაწყოთა ზოლი\">ხელსაწყოთა ზოლი</link>"
-#. G,pG
#: main0206.xhp
msgctxt ""
"main0206.xhp\n"
@@ -1679,7 +1510,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_SC_INPUTWIN\">Use this bar to enter formulas.</ahelp>"
msgstr "<ahelp hid=\"HID_SC_INPUTWIN\">გამოიყენეთ ეს ზოლი ფორმულების შესაყვანად.</ahelp>"
-#. qp0T
#: main0200.xhp
msgctxt ""
"main0200.xhp\n"
@@ -1688,7 +1518,6 @@ msgctxt ""
msgid "Toolbars"
msgstr "ინსტრუმენტთა პანელები"
-#. Y$D6
#: main0200.xhp
msgctxt ""
"main0200.xhp\n"
@@ -1698,7 +1527,6 @@ msgctxt ""
msgid "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
msgstr "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"ინსტრუმენტთა პანელები\">ინსტრუმენტთა პანელები</link></variable>"
-#. 9%]]
#: main0200.xhp
msgctxt ""
"main0200.xhp\n"
@@ -1708,7 +1536,6 @@ msgctxt ""
msgid "This submenu lists the toolbars that are available in spreadsheets.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
msgstr "ამ ქვემენიუ აჩვენებს ინსტრუმენტთა დაფებს, რომლებიც ხელმისაწვდომია ელექტრონულ ცხრილებში.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
-#. D,cp
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1717,7 +1544,6 @@ msgctxt ""
msgid "File"
msgstr "ფაილი"
-#. whj]
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1727,7 +1553,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0101.xhp\" name=\"File\">File</link>"
msgstr "<link href=\"text/scalc/main0101.xhp\" name=\"ფაილი\">ფაილი</link>"
-#. IpkS
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1737,7 +1562,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">These commands apply to the current document, open a new document, or close the application.</ahelp>"
msgstr ""
-#. ~bP(
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1747,7 +1571,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"გახსნა\">გახსნა</link>"
-#. nLGu
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1757,7 +1580,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"შეინახე როგორც\">შეინახე როგორც</link>"
-#. m(sz
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1767,7 +1589,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"ვერსიები\">ვერსიები</link>"
-#. WmV7
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1777,7 +1598,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"თვისებები\">თვისებები</link>"
-#. *N$G
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1787,7 +1607,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"დაბეჭდვა\">დაბეჭდვა</link>"
-#. qLus
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
@@ -1797,7 +1616,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link>"
msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"პრინტერის დაყენება\">პრინტერის დაყენება</link>"
-#. L1i_
#: main0214.xhp
msgctxt ""
"main0214.xhp\n"
@@ -1806,7 +1624,6 @@ msgctxt ""
msgid "Picture Bar"
msgstr "სურათების ზოლი"
-#. 0k6J
#: main0214.xhp
msgctxt ""
"main0214.xhp\n"
@@ -1816,7 +1633,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0214.xhp\" name=\"Picture Bar\">Picture Bar</link>"
msgstr "<link href=\"text/scalc/main0214.xhp\" name=\"სურათების ზოლი\">სურათების ზოლი</link>"
-#. ick9
#: main0214.xhp
msgctxt ""
"main0214.xhp\n"
diff --git a/source/ka/helpcontent2/source/text/scalc/00.po b/source/ka/helpcontent2/source/text/scalc/00.po
index 89e79b286c2..b676ffd4c2e 100644
--- a/source/ka/helpcontent2/source/text/scalc/00.po
+++ b/source/ka/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-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\n"
"PO-Revision-Date: 2011-04-05 23:51+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. eY@i
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Window Menu"
msgstr "სარკმლის მენიუ"
-#. @l#5
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "Window Menu"
msgstr "სარკმლის მენიუ"
-#. YdK,
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "<variable id=\"fete\">Choose <emph>Window - Split</emph></variable>"
msgstr "<variable id=\"fete\">არჩევა <emph>ფანჯარა - გაყოფა</emph></variable>"
-#. ]g{~
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "<variable id=\"fefix\">Choose <emph>Window - Freeze</emph></variable>"
msgstr "<variable id=\"fefix\">არჩევა <emph>ფანჯარა - გაშეშება</emph></variable>"
-#. UNTD
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "Data Menu"
msgstr "მონაცემთა მენიუ"
-#. ;o)Y
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "Data Menu"
msgstr "მონაცემთა მენიუ"
-#. JJ7V
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -82,7 +75,6 @@ msgctxt ""
msgid "<variable id=\"text2columns\">Choose <emph>Data - Text to Columns</emph></variable>"
msgstr ""
-#. WYJ0
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -92,7 +84,6 @@ msgctxt ""
msgid "<variable id=\"dbrbf\">Choose <emph>Data - Define Range</emph></variable>"
msgstr "<variable id=\"dbrbf\">არჩევა <emph>მონაცემები - არიალის განსაზღვრა</emph></variable>"
-#. =R:C
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -102,7 +93,6 @@ msgctxt ""
msgid "<variable id=\"dbrba\">Choose <emph>Data - Select Range</emph></variable>"
msgstr "<variable id=\"dbrba\">არჩევა <emph>მონაცემები - არიალის მონიშვნა</emph></variable>"
-#. aVd7
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -112,7 +102,6 @@ msgctxt ""
msgid "<variable id=\"dnsrt\">Choose <emph>Data - Sort</emph></variable>"
msgstr "<variable id=\"dnsrt\">არჩევა <emph>მონაცემები - დახარისხება</emph></variable>"
-#. 8#D|
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -122,7 +111,6 @@ msgctxt ""
msgid "Choose <emph>Data - Sort - Sort Criteria</emph> tab"
msgstr "არჩევა <emph>მონაცემები -დახარისხება - კრიტერიუმებით დახარისხება</emph> ჩანართი"
-#. sBbC
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -132,7 +120,6 @@ msgctxt ""
msgid "On Standard bar, click"
msgstr "დააწკაპუნეთ სტანდარტულ ზოლზე"
-#. 1U@d
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -141,7 +128,6 @@ msgctxt ""
msgid "<image id=\"img_id3150543\" src=\"cmd/sc_sortup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150543\">Icon</alt></image>"
msgstr "<image id=\"img_id3150543\" src=\"cmd/sc_sortup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150543\">ხატულა</alt></image>"
-#. $sCd
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -151,7 +137,6 @@ msgctxt ""
msgid "Sort Ascending"
msgstr "ზრდადობით დახარისხება"
-#. g|{_
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -160,7 +145,6 @@ msgctxt ""
msgid "<image id=\"img_id3125863\" src=\"cmd/sc_sortdown.png\" width=\"0.1701inch\" height=\"0.1701inch\"><alt id=\"alt_id3125863\">Icon</alt></image>"
msgstr "<image id=\"img_id3125863\" src=\"cmd/sc_sortdown.png\" width=\"0.1701inch\" height=\"0.1701inch\"><alt id=\"alt_id3125863\">ხატულა</alt></image>"
-#. RQ+1
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -170,7 +154,6 @@ msgctxt ""
msgid "Sort Descending"
msgstr "კლებადობით დახარისხება"
-#. zUIt
#: 00000412.xhp
#, fuzzy
msgctxt ""
@@ -181,7 +164,6 @@ msgctxt ""
msgid "<variable id=\"dnstot\">Choose <emph>Data - Sort - Options</emph> tab</variable>"
msgstr "<variable id=\"dnstot\">არჩევა <emph>მონაცემები - დახარისხება - პარამეტრები</emph> tab </variable>"
-#. xoa7
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -191,7 +173,6 @@ msgctxt ""
msgid "<variable id=\"dnftr\">Choose <emph>Data - Filter</emph></variable>"
msgstr "<variable id=\"dnftr\">არჩევა <emph>მონაცემები - ფილტრი</emph></variable>"
-#. rgU6
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -201,7 +182,6 @@ msgctxt ""
msgid "Choose <emph>Data - Filter - AutoFilter</emph>"
msgstr "არჩევა <emph>მონაცემები - ფილტრი - ავტოფილტრი</emph>"
-#. jDL/
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -211,7 +191,6 @@ msgctxt ""
msgid "On Tools bar or Table Data bar, click"
msgstr "დააწკაპუნეთ ხელსაწყოთა ან ცხრილის მონაცემთა ხაზზე"
-#. 8TnS
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -220,7 +199,6 @@ msgctxt ""
msgid "<image id=\"img_id3149413\" src=\"cmd/sc_datafilterautofilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149413\">Icon</alt></image>"
msgstr "<image id=\"img_id3149413\" src=\"cmd/sc_datafilterautofilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149413\">ხატულა</alt></image>"
-#. 6wp6
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -230,7 +208,6 @@ msgctxt ""
msgid "AutoFilter"
msgstr "ავტოფილტრი"
-#. 6J0:
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -240,7 +217,6 @@ msgctxt ""
msgid "<variable id=\"dnfspz\">Choose <emph>Data - Filter - Advanced Filter</emph></variable>"
msgstr "<variable id=\"dnfspz\">არჩევა <emph>მონაცემები - ფილტრი - გაფართოებული ფილტრი</emph></variable>"
-#. oEjJ
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -250,7 +226,6 @@ msgctxt ""
msgid "Choose <emph>Data - Filter - Standard Filter - More>></emph> button"
msgstr "არჩევა <emph>მონაცემები - ფილტრი - სტანდარტული ფილტრი - დამატებით>></emph> button"
-#. =H]U
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -260,7 +235,6 @@ msgctxt ""
msgid "Choose <emph>Data - Filter - Advanced Filter - More>></emph> button"
msgstr "არჩევა <emph>მონაცემები - ფილტრი - გაფართოებული ფილტრი - დამატებით>></emph> ღილაკი"
-#. 3RE#
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -270,7 +244,6 @@ msgctxt ""
msgid "Choose <emph>Data - Filter - Remove Filter</emph>"
msgstr "არჩევა <emph>მონაცემები - ფილტრი - ფილტრის წაშლა</emph>"
-#. NL[I
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -280,7 +253,6 @@ msgctxt ""
msgid "On Table Data bar, click <emph>Remove Filter/Sort</emph>"
msgstr "დააწკაპუნეთ ცხრილის მონაცემთა ხაზზე <emph>ფილტრის/დახარისხების წაშლა</emph>"
-#. gV:u
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -289,7 +261,6 @@ msgctxt ""
msgid "<image id=\"img_id3145792\" src=\"cmd/sc_removefilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145792\">Icon</alt></image>"
msgstr "<image id=\"img_id3145792\" src=\"cmd/sc_removefilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145792\">ხატულა</alt></image>"
-#. ~L,7
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -299,7 +270,6 @@ msgctxt ""
msgid "Remove Filter/Sort"
msgstr "ფილტრის/დახარისხების წაშლა"
-#. G\8`
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -309,7 +279,6 @@ msgctxt ""
msgid "<variable id=\"dnaftas\">Choose <emph>Data - Filter - Hide AutoFilter</emph></variable>"
msgstr "<variable id=\"dnaftas\">არჩევა <emph>მონაცემები - ფილტრი - ავტოფილტრის დამალვა</emph></variable>"
-#. NAdQ
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -319,7 +288,6 @@ msgctxt ""
msgid "<variable id=\"dntegs\">Choose <emph>Data - Subtotals</emph></variable>"
msgstr "<variable id=\"dntegs\">არჩევა <emph>მონაცემები - ქვე-ჯამები</emph></variable>"
-#. *j.I
#: 00000412.xhp
#, fuzzy
msgctxt ""
@@ -330,7 +298,6 @@ msgctxt ""
msgid "<variable id=\"dntezd\">Choose <emph>Data - Subtotals - 1st, 2nd, 3rd Group</emph> tabs</variable>"
msgstr "<variable id=\"dntezd\">არჩევა <emph>მონაცემები - ქვე-ჯამები - 1, 2, 3 ჯგუფი</emph> ჩანართები </variable>"
-#. =0o(
#: 00000412.xhp
#, fuzzy
msgctxt ""
@@ -341,7 +308,6 @@ msgctxt ""
msgid "<variable id=\"dntopi\">Choose <emph>Data - Subtotals - Options</emph> tab</variable>"
msgstr "<variable id=\"dntopi\">არჩევა <emph>მონაცემები - ქვე-ჯამები - პარამეტრები</emph> tab </variable>"
-#. 2E4E
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -351,7 +317,6 @@ msgctxt ""
msgid "<variable id=\"datengueltig\">Choose <emph>Data - Validity</emph></variable>"
msgstr "<variable id=\"datengueltig\">არჩევა <emph>მონაცემები - მართებულობის შემოწმება </emph></variable>"
-#. :,?t
#: 00000412.xhp
#, fuzzy
msgctxt ""
@@ -362,7 +327,6 @@ msgctxt ""
msgid "<variable id=\"datengueltigwerte\">Menu <emph>Data - Validity - Criteria</emph> tab</variable>"
msgstr "<variable id=\"datengueltigwerte\">მენიუ <emph>მონაცემები - მართებულობის შემოწმება - კრიტერიუმი</emph> ჩანართი </variable>"
-#. 4rb^
#: 00000412.xhp
#, fuzzy
msgctxt ""
@@ -373,7 +337,6 @@ msgctxt ""
msgid "<variable id=\"datengueltigeingabe\">Choose <emph>Data - Validity - Input Help</emph> tab</variable>"
msgstr "<variable id=\"datengueltigeingabe\">არჩევა <emph>მონაცემები - მართებულობის შემოწმება - დახმარების შეტანა</emph> ჩანართი </variable>"
-#. *,n#
#: 00000412.xhp
#, fuzzy
msgctxt ""
@@ -384,7 +347,6 @@ msgctxt ""
msgid "<variable id=\"datengueltigfehler\">Choose <emph>Data - Validity - Error Alert</emph> tab</variable>"
msgstr "<variable id=\"datengueltigfehler\">არჩევა <emph>მონაცემები - მართებულობის შემოწმება - შეცდომის გაფრთხილება</emph> tab </variable>"
-#. 1s|:
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -394,7 +356,6 @@ msgctxt ""
msgid "<variable id=\"dnmfo\">Choose <emph>Data - Multiple Operations</emph></variable>"
msgstr "<variable id=\"dnmfo\">არჩევა <emph>მონაცემები - რამოდენიმე ოპერაციები</emph></variable>"
-#. ;C/L
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -404,7 +365,6 @@ msgctxt ""
msgid "<variable id=\"dnksd\">Choose <emph>Data - Consolidate</emph></variable>"
msgstr "<variable id=\"dnksd\">არჩევა <emph>მონაცემები - გაერთიანება</emph></variable>"
-#. pMb?
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -414,7 +374,6 @@ msgctxt ""
msgid "<variable id=\"dngld\">Choose <emph>Data - Group and Outline</emph></variable>"
msgstr "<variable id=\"dngld\">არჩევა <emph>მონაცემები - მონახაზი</emph></variable>"
-#. A4B5
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -424,7 +383,6 @@ msgctxt ""
msgid "<variable id=\"dngda\">Choose <emph>Data - Group and Outline - Hide Details</emph></variable>"
msgstr "<variable id=\"dngda\">არჩევა <emph>მონაცემები - მონახაზი - დეტალების დამალვა</emph></variable>"
-#. DUOo
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -434,7 +392,6 @@ msgctxt ""
msgid "<variable id=\"dngde\">Choose <emph>Data - Group and Outline - Show Details</emph></variable>"
msgstr "<variable id=\"dngde\">არჩევა <emph>მონაცემები - მონახაზი - დეტალების ჩვენება</emph></variable>"
-#. Z;s}
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -444,7 +401,6 @@ msgctxt ""
msgid "Choose <emph>Data - Group and Outline - Group</emph>"
msgstr "არჩევა <emph>მონაცემები - მონახაზი - ჯგუფი</emph>"
-#. g9Wm
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -454,7 +410,6 @@ msgctxt ""
msgid "F12"
msgstr "F12"
-#. f#3$
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -464,7 +419,6 @@ msgctxt ""
msgid "On <emph>Tools</emph> bar, click"
msgstr "ხაზზე<emph>ხელსაწყოები</emph>"
-#. _fJr
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -473,7 +427,6 @@ msgctxt ""
msgid "<image id=\"img_id3153287\" src=\"cmd/sc_group.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153287\">Icon</alt></image>"
msgstr "<image id=\"img_id3153287\" src=\"cmd/sc_group.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153287\">ხატულა</alt></image>"
-#. #bgs
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -483,7 +436,6 @@ msgctxt ""
msgid "Group"
msgstr "ჯგუფი"
-#. O-~Y
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -493,7 +445,6 @@ msgctxt ""
msgid "Choose <emph>Data - Group and Outline - Ungroup</emph>"
msgstr "არჩევა <emph>მონაცემები - მონახაზი - განჯგუფება</emph>"
-#. d/BO
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -503,7 +454,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ბრძანება </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
-#. so_9
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -513,7 +463,6 @@ msgctxt ""
msgid "On <emph>Tools</emph> bar, click"
msgstr "<emph>ხელსაწყოები</emph>"
-#. g$#7
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -522,7 +471,6 @@ msgctxt ""
msgid "<image id=\"img_id3155914\" src=\"cmd/sc_ungroup.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155914\">Icon</alt></image>"
msgstr "<image id=\"img_id3155914\" src=\"cmd/sc_ungroup.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155914\">ხატულა</alt></image>"
-#. -Q!,
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -532,7 +480,6 @@ msgctxt ""
msgid "Ungroup"
msgstr "განჯგუფება"
-#. D9yU
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -542,7 +489,6 @@ msgctxt ""
msgid "<variable id=\"dnglagl\">Choose <emph>Data - Group and Outline - AutoOutline</emph></variable>"
msgstr "<variable id=\"dnglagl\">არჩევა <emph>მონაცემები - მონახაზი - ავტომონახაზი</emph></variable>"
-#. o`u;
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -552,7 +498,6 @@ msgctxt ""
msgid "<variable id=\"dnglef\">Choose <emph>Data - Group and Outline - Remove</emph></variable>"
msgstr "<variable id=\"dnglef\">არჩევა <emph>მონაცემები - მონახაზი - წაშლა</emph></variable>"
-#. slNR
#: 00000412.xhp
#, fuzzy
msgctxt ""
@@ -562,7 +507,6 @@ msgctxt ""
msgid "<variable id=\"dngdrill\">Choose <emph>Data - Group and Outline - Show Details</emph> (for some pivot tables)</variable>"
msgstr "<variable id=\"dngde\">არჩევა <emph>მონაცემები - მონახაზი - დეტალების ჩვენება</emph></variable>"
-#. :M`i
#: 00000412.xhp
#, fuzzy
msgctxt ""
@@ -573,7 +517,6 @@ msgctxt ""
msgid "<variable id=\"dndtpt\">Choose <emph>Data - Pivot Table</emph></variable>"
msgstr "<variable id=\"dndtpt\">არჩევა <emph>მონაცემები - DataPilot</emph></variable>"
-#. g6T(
#: 00000412.xhp
#, fuzzy
msgctxt ""
@@ -584,7 +527,6 @@ msgctxt ""
msgid "<variable id=\"dndpa\">Choose <emph>Data - Pivot Table - Create</emph></variable>"
msgstr "<variable id=\"dndpa\">არჩევა <emph>მონაცემები - DataPilot - დაწყება</emph></variable>"
-#. eiV?
#: 00000412.xhp
#, fuzzy
msgctxt ""
@@ -595,7 +537,6 @@ msgctxt ""
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>მონაცემები - DataPilot - დაწყება</emph>, არჩეული წყაროს დიალოგში პარამეტრის არჩევა <emph>მონაცემთა წყარო რეგისტრირებულია $[officename]-ში</emph>. </variable>"
-#. +QIS
#: 00000412.xhp
#, fuzzy
msgctxt ""
@@ -606,7 +547,6 @@ msgctxt ""
msgid "Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Current selection</emph>."
msgstr "Choose <emph>მონაცემები - DataPilot - დაწყება</emph>, არჩეული წყაროს დიალოგში პარამეტრის არჩევა <emph>მიმდინარე მონიშვნა</emph>."
-#. 67Id
#: 00000412.xhp
#, fuzzy
msgctxt ""
@@ -617,7 +557,6 @@ msgctxt ""
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>მონაცემები - DataPilot - დაწყება</emph>, არჩეული წყაროს დიალოგში პარამეტრის არჩევა <emph>მონაცემთა წყარო რეგისტრირებულია $[officename]-ში</emph>, დააწკაპუნეთ <emph>კარგი</emph> დასანახად <emph>მონიშნეთ მონაცემთა წყარო</emph> დიალოგი."
-#. Mr.H
#: 00000412.xhp
#, fuzzy
msgctxt ""
@@ -628,7 +567,6 @@ msgctxt ""
msgid "<variable id=\"dndpak\">Choose <emph>Data - Pivot Table - Refresh</emph></variable>"
msgstr "<variable id=\"dndpak\">არჩევა <emph>მონაცემები - DataPilot - განახლება</emph></variable>"
-#. 26r^
#: 00000412.xhp
#, fuzzy
msgctxt ""
@@ -639,7 +577,6 @@ msgctxt ""
msgid "<variable id=\"dndploe\">Choose <emph>Data - Pivot Table - Delete</emph></variable>"
msgstr "<variable id=\"dndploe\">არჩევა <emph>მონაცემები - DataPilot - წაშლა</emph></variable>"
-#. gA9I
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -649,7 +586,6 @@ msgctxt ""
msgid "<variable id=\"dndakt\">Choose <emph>Data - Refresh Range</emph></variable>"
msgstr "<variable id=\"dndakt\">არჩევა <emph>მონაცემები - განახლების არეალი</emph></variable>"
-#. k2o*
#: 00000412.xhp
msgctxt ""
"00000412.xhp\n"
@@ -658,7 +594,6 @@ msgctxt ""
msgid "<variable id=\"grouping\">Choose <emph>Data - Group and Outline - Group</emph></variable>"
msgstr "<variable id=\"grouping\">არჩევა <emph>მონაცემები - მონახაზი - ჯგუფი</emph></variable>"
-#. Sj%-
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -667,7 +602,6 @@ msgctxt ""
msgid "Format Menu"
msgstr "ფორმატის მენიუ"
-#. /_ii
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -677,7 +611,6 @@ msgctxt ""
msgid "Format Menu"
msgstr "ფორმატის მენიუ"
-#. Ye{j
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -687,7 +620,6 @@ msgctxt ""
msgid "<variable id=\"fozelle\">Choose <emph>Format - Cells</emph></variable>"
msgstr "<variable id=\"fozelle\">არჩევა<emph>ფორმატი - უჯრები</emph></variable>"
-#. 1Rqp
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -697,7 +629,6 @@ msgctxt ""
msgid "<variable id=\"fozelstz\">Choose <emph>Format - Cells - Cell Protection</emph> tab </variable>"
msgstr "<variable id=\"fozelstz\">არჩევა<emph>ფორმატი - უჯრები - უჯრების დაცვა</emph> tab </variable>"
-#. /.33
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -707,7 +638,6 @@ msgctxt ""
msgid "<variable id=\"fozei\">Choose <emph>Format - Row</emph></variable>"
msgstr "<variable id=\"fozei\">არჩევა<emph>ფორმატი - სტრიქონი</emph></variable>"
-#. ~7Wo
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -717,7 +647,6 @@ msgctxt ""
msgid "<variable id=\"fozeiophoe\">Choose <emph>Format - Row - Optimal Height</emph></variable>"
msgstr "<variable id=\"fozeiophoe\">არჩევა<emph>ფორმატი - სტრიქონი - ოპტიმალური სიმაღლე</emph></variable>"
-#. Z%@Z
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -727,7 +656,6 @@ msgctxt ""
msgid "Choose <emph>Format - Row - Hide</emph>"
msgstr "არჩევა <emph>ფორმატი - სტრიქონი - დამალვა</emph>"
-#. !s(r
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -737,7 +665,6 @@ msgctxt ""
msgid "Choose <emph>Format - Column - Hide</emph>"
msgstr "არჩევა<emph>ფორმატი - სვეტი - დამალვა</emph>"
-#. YIK=
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -747,7 +674,6 @@ msgctxt ""
msgid "Choose <emph>Format - Sheet - Hide</emph>"
msgstr "არჩევა <emph>ფორმატი - ფურცელი - დამალვა</emph>"
-#. #idk
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -757,7 +683,6 @@ msgctxt ""
msgid "Choose <emph>Format - Row - Show</emph>"
msgstr "არჩევა <emph>ფორმატი - სტრიქონი - ჩვენება</emph>"
-#. cj,D
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -767,7 +692,6 @@ msgctxt ""
msgid "Choose <emph>Format - Column - Show</emph>"
msgstr "არჩევა <emph>ფორმატი - სვეტი - ჩვენება</emph>"
-#. cJ13
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -777,7 +701,6 @@ msgctxt ""
msgid "<variable id=\"fospa\">Choose <emph>Format - Column</emph></variable>"
msgstr "<variable id=\"fospa\">არჩევა <emph>ფორმატი - სვეტი</emph></variable>"
-#. W@Z0
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -787,7 +710,6 @@ msgctxt ""
msgid "Choose <emph>Format - Column - Optimal Width</emph>"
msgstr "არჩევა <emph>ფორმატი - სვეტი - ოპტიმალური სიგანე</emph>"
-#. DLTx
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -797,7 +719,6 @@ msgctxt ""
msgid "Double-click right column separator in column headers"
msgstr "სვეტის სათაურზე მარჯვენა სვეტის გამყოფზე ორჯერ დაწკაპუნება"
-#. aB7/
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -807,7 +728,6 @@ msgctxt ""
msgid "<variable id=\"fot\">Choose <emph>Format - Sheet</emph></variable>"
msgstr "<variable id=\"fot\">არჩევა <emph>ფორმატირება - ფურცელი</emph></variable>"
-#. }3]`
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -817,7 +737,6 @@ msgctxt ""
msgid "<variable id=\"fotu\">Choose <emph>Format - Sheet - Rename</emph></variable>"
msgstr "<variable id=\"fotu\">არჩევა <emph>ფორმატი - ფურცელი - გადარქმევა</emph></variable>"
-#. +@gC
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -827,7 +746,6 @@ msgctxt ""
msgid "<variable id=\"fotenb\">Choose <emph>Format - Sheet - Show</emph></variable>"
msgstr "<variable id=\"fotenb\">არჩევა <emph>ფორმატი - ფურცელი - ჩვენება</emph></variable>"
-#. u.;w
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -836,7 +754,6 @@ msgctxt ""
msgid "<variable id=\"foste\">Choose <emph>Format - Page</emph></variable>"
msgstr "<variable id=\"foste\">არჩევა <emph>ფორმატი - გვერდიPage</emph></variable>"
-#. G_rh
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -846,7 +763,6 @@ msgctxt ""
msgid "<variable id=\"fostel\">Choose <emph>Format - Page - Sheet</emph> tab </variable>"
msgstr "<variable id=\"fostel\">არჩევა <emph>ფორმატი - გვერდი - ფურცელი</emph> tab </variable>"
-#. D;sc
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -856,7 +772,6 @@ msgctxt ""
msgid "<variable id=\"fodrbe\">Choose <emph>Format - Print Ranges</emph></variable>"
msgstr "<variable id=\"fodrbe\">არჩევა <emph>ფორმატი - ბეჭდვის დიაპაზონი</emph></variable>"
-#. =-j\
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -866,7 +781,6 @@ msgctxt ""
msgid "<variable id=\"fodrfe\">Choose <emph>Format - Print Ranges - Define</emph></variable>"
msgstr "<variable id=\"fodrfe\">არჩევა <emph>ფორმატი - ბეჭდვის დიაპაზონი- განსაზღვრა</emph></variable>"
-#. 7^yS
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -876,7 +790,6 @@ msgctxt ""
msgid "<variable id=\"fodrhin\">Choose <emph>Format - Print Ranges - Add</emph></variable>"
msgstr "<variable id=\"fodrhin\">არჩევა <emph>ფორმატი - ბეჭდვის დიაპაზონი - დამატება</emph></variable>"
-#. +{C^
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -886,7 +799,6 @@ msgctxt ""
msgid "<variable id=\"fodbah\">Choose <emph>Format - Print Ranges - Remove</emph></variable>"
msgstr "<variable id=\"fodbah\">არჩევა <emph>ფორმატი - ბეჭდვის დიაპაზონი - ამოშლა</emph></variable>"
-#. V8ib
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -896,7 +808,6 @@ msgctxt ""
msgid "<variable id=\"fodbbe\">Choose <emph>Format - Print Ranges - Edit</emph></variable>"
msgstr "<variable id=\"fodbbe\">არჩევა <emph>ფორმატი - ბეჭდვის დიაპაზონი - რედაქტირება</emph></variable>"
-#. gaR-
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -906,7 +817,6 @@ msgctxt ""
msgid "Choose <emph>Format - AutoFormat</emph>"
msgstr "არჩევა <emph>ფორმატი - ავტო-ფორმატი</emph>"
-#. E)b+
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -916,7 +826,6 @@ msgctxt ""
msgid "On the Tools bar, click"
msgstr "ხელსაწყოთა ზოლზე, დააწკაპუნეთ"
-#. A3[3
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -925,7 +834,6 @@ msgctxt ""
msgid "<image id=\"img_id3156020\" src=\"cmd/sc_autoformat.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156020\">Icon</alt></image>"
msgstr "<image id=\"img_id3156020\" src=\"cmd/sc_autoformat.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156020\">ხატულა</alt></image>"
-#. ~W\I
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -935,7 +843,6 @@ msgctxt ""
msgid "AutoFormat"
msgstr "ავტოფორმატი"
-#. ixYZ
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
@@ -945,7 +852,6 @@ msgctxt ""
msgid "<variable id=\"bedingte\">Choose <emph>Format - Conditional Formatting</emph></variable>"
msgstr "<variable id=\"bedingte\">არჩევა <emph>ფორმატი - პირობითი ფორმატირება</emph></variable>"
-#. s_F\
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -954,7 +860,6 @@ msgctxt ""
msgid "Insert Menu"
msgstr "ჩასმის მენიუ"
-#. aX:O
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -964,7 +869,6 @@ msgctxt ""
msgid "Insert Menu"
msgstr "ჩასმის მენიუ"
-#. dg]o
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -974,7 +878,6 @@ msgctxt ""
msgid "<variable id=\"eimaum\">Choose <emph>Insert - Manual Break</emph></variable>"
msgstr "<variable id=\"eimaum\">არჩევა <emph>ჩასმა - ხელით გაყოფა</emph></variable>"
-#. -:0c
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -984,7 +887,6 @@ msgctxt ""
msgid "<variable id=\"eimaumze\">Choose <emph>Insert - Manual Break - Row Break</emph></variable>"
msgstr "<variable id=\"eimaumze\">არჩევა <emph>ჩასმა - ხელით გაყოფა - სტრიქონის გაყოფა</emph></variable>"
-#. j$4R
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -994,7 +896,6 @@ msgctxt ""
msgid "<variable id=\"eimaumsp\">Choose <emph>Insert - Manual Break - Column Break</emph></variable>"
msgstr "<variable id=\"eimaumsp\">არჩევა <emph>ჩასმა - ხელით გაყოფა - სვეტის გამყოფი</emph></variable>"
-#. 67cT
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1004,7 +905,6 @@ msgctxt ""
msgid "Choose <emph>Insert - Cells</emph>"
msgstr "არჩევა <emph>ჩასმა - უჯრები</emph>"
-#. IXVn
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1014,7 +914,6 @@ msgctxt ""
msgid "Open <emph>Insert Cells</emph> toolbar from Tools bar:"
msgstr "გახსენით <emph>უჯრების ჩასმის</emph>ხაზი ხელსაწყოთა ხაზიდან:"
-#. l67|
#: 00000404.xhp
#, fuzzy
msgctxt ""
@@ -1024,7 +923,6 @@ msgctxt ""
msgid "<image id=\"img_id3154365\" src=\"cmd/sc_inscellsctrl.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154365\">Icon</alt></image>"
msgstr "<image id=\"img_id3145364\" src=\"cmd/sc_insertcellsdown.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145364\">ხატულა</alt></image>"
-#. ?mkp
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1034,7 +932,6 @@ msgctxt ""
msgid "Insert Cells"
msgstr "უჯრების ჩასმა"
-#. 3Eh+
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1043,7 +940,6 @@ msgctxt ""
msgid "<image id=\"img_id3145364\" src=\"cmd/sc_insertcellsdown.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145364\">Icon</alt></image>"
msgstr "<image id=\"img_id3145364\" src=\"cmd/sc_insertcellsdown.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145364\">ხატულა</alt></image>"
-#. pr]!
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1053,7 +949,6 @@ msgctxt ""
msgid "Insert Cells Down"
msgstr "უჯრების დაბლა ჩასმა"
-#. =(n1
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1062,7 +957,6 @@ msgctxt ""
msgid "<image id=\"img_id3154942\" src=\"cmd/sc_insertcellsright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154942\">Icon</alt></image>"
msgstr "<image id=\"img_id3154942\" src=\"cmd/sc_insertcellsright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154942\">ხატულა</alt></image>"
-#. PF1C
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1072,7 +966,6 @@ msgctxt ""
msgid "Insert Cells Right"
msgstr "უჯრების მარჯვნივ ჩასმა"
-#. 9i9%
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1081,7 +974,6 @@ msgctxt ""
msgid "<image id=\"img_id3153710\" src=\"cmd/sc_insertrows.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153710\">Icon</alt></image>"
msgstr "<image id=\"img_id3153710\" src=\"cmd/sc_insertrows.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153710\">ხატულა</alt></image>"
-#. 5A4i
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1091,7 +983,6 @@ msgctxt ""
msgid "Insert Rows"
msgstr "სტრიქონების ჩასმა"
-#. 77Kf
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1100,7 +991,6 @@ msgctxt ""
msgid "<image id=\"img_id3145232\" src=\"cmd/sc_insertcolumns.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145232\">Icon</alt></image>"
msgstr "<image id=\"img_id3145232\" src=\"cmd/sc_insertcolumns.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145232\">ხატულა</alt></image>"
-#. MxfX
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1110,7 +1000,6 @@ msgctxt ""
msgid "Insert Columns"
msgstr "სვეტების ჩასმა"
-#. IpVE
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1120,7 +1009,6 @@ msgctxt ""
msgid "<variable id=\"eizei\">Choose <emph>Insert - Rows</emph></variable>"
msgstr "<variable id=\"eizei\">არჩევა <emph>ჩასმა - სტრიქონები</emph></variable>"
-#. 86R`
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1130,7 +1018,6 @@ msgctxt ""
msgid "<variable id=\"eispa\">Choose <emph>Insert - Columns</emph></variable>"
msgstr "<variable id=\"eispa\">არჩევა <emph>ჩასმა - სვეტები</emph></variable>"
-#. F[Io
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1140,7 +1027,6 @@ msgctxt ""
msgid "<variable id=\"eitab\">Choose <emph>Insert - Sheet</emph></variable>"
msgstr "<variable id=\"eitab\">არჩევა <emph>ჩასმა - ფურცელი</emph></variable>"
-#. ?dja
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1149,7 +1035,6 @@ msgctxt ""
msgid "<variable id=\"eitabfile\">Choose <emph>Insert - Sheet from file</emph></variable>"
msgstr "<variable id=\"eitabfile\">არჩევა <emph>ჩასმა - ფაილიდან ჩასმა</emph></variable>"
-#. pfW;
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1159,7 +1044,6 @@ msgctxt ""
msgid "Choose <emph>Insert - Function</emph>"
msgstr "არჩევა<emph>ჩასმა - ფუნქცია</emph>"
-#. u^p.
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1169,7 +1053,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ბრძანება</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
-#. bB^S
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1179,7 +1062,6 @@ msgctxt ""
msgid "On <emph>Formula Bar</emph>, click"
msgstr "ზე <emph>ფორმულის ზოლი</emph>, წოდება"
-#. O@He
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1188,7 +1070,6 @@ msgctxt ""
msgid "<image id=\"img_id3150884\" src=\"sw/imglst/sc20556.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150884\">Icon</alt></image>"
msgstr "<image id=\"img_id3150884\" src=\"sw/imglst/sc20556.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150884\">ხატულა</alt></image>"
-#. eQ;P
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1198,7 +1079,6 @@ msgctxt ""
msgid "Function Wizard"
msgstr "ფუნქციის ოსტატი"
-#. (ftC
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1208,7 +1088,6 @@ msgctxt ""
msgid "<variable id=\"eikada\"><emph>Insert - Function</emph> - Category <emph>Database</emph></variable>"
msgstr "<variable id=\"eikada\"><emph>ჩასმა - ფუნქცია</emph> - კატეგორია <emph>მონაცემთა ბაზა</emph></variable>"
-#. l^0(
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1218,7 +1097,6 @@ msgctxt ""
msgid "<variable id=\"eikadaze\"><emph>Insert - Function</emph> - Category <emph>Date&Time</emph></variable>"
msgstr "<variable id=\"eikadaze\"><emph>ჩასმა - ფუნქცია</emph> - კატეგორია <emph>თარიღი და დრო</emph></variable>"
-#. hIwc
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1228,7 +1106,6 @@ msgctxt ""
msgid "<variable id=\"eikafi\"><emph>Insert - Function</emph> - Category <emph>Financial</emph></variable>"
msgstr "<variable id=\"eikafi\"><emph>ჩასმა - ფუნქცია</emph> - კატეგორია <emph>ფინანსური</emph></variable>"
-#. !0p8
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1238,7 +1115,6 @@ msgctxt ""
msgid "<variable id=\"eikain\"><emph>Insert - Function</emph> - Category <emph>Information</emph></variable>"
msgstr "<variable id=\"eikain\"><emph>ჩასმა - ფუნქცია</emph> - კატეგორია <emph>ინფორმაციული</emph></variable>"
-#. sy^H
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1248,7 +1124,6 @@ msgctxt ""
msgid "<variable id=\"eikalo\"><emph>Insert - Function</emph> - Category <emph>Logical</emph></variable>"
msgstr "<variable id=\"eikalo\"><emph>ჩასმა - ფუნქცია</emph> - კატეგორია <emph>ლოგიკური</emph></variable>"
-#. )B^,
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1258,7 +1133,6 @@ msgctxt ""
msgid "<variable id=\"eikama\"><emph>Insert - Function</emph> - Category <emph>Mathematical</emph></variable>"
msgstr "<variable id=\"eikama\"><emph>ჩასმა - ფუნქცია</emph> - კატეგორია <emph>მათემატიკური</emph></variable>"
-#. !.2q
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1268,7 +1142,6 @@ msgctxt ""
msgid "<variable id=\"eikamatrix\"><emph>Insert - Function</emph> - Category <emph>Array</emph></variable>"
msgstr "<variable id=\"eikamatrix\"><emph>ჩასმა - ფუნქცია</emph> - კატეგორია <emph>მასივები</emph></variable>"
-#. rPve
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1278,7 +1151,6 @@ msgctxt ""
msgid "<variable id=\"eikasta\"><emph>Insert - Function</emph> - Category <emph>Statistical</emph></variable>"
msgstr "<variable id=\"eikasta\"><emph>ჩასმა - ფუნქცია</emph> - კატეგორია <emph>სტატისტიკური</emph></variable>"
-#. NnfJ
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1288,7 +1160,6 @@ msgctxt ""
msgid "<variable id=\"eikatext\"><emph>Insert - Function</emph> - Category <emph>Text</emph></variable>"
msgstr "<variable id=\"eikatext\"><emph>ჩასმა - ფუნქცია</emph> - კატეგორია <emph>ტექსტი</emph></variable>"
-#. P{pi
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1298,7 +1169,6 @@ msgctxt ""
msgid "<variable id=\"efefft\"><emph>Insert - Function</emph> - Category <emph>Spreadsheet</emph></variable>"
msgstr "<variable id=\"efefft\"><emph>ჩასმა - ფუნქცია</emph> - კატეგორია <emph>ელექრონული ცხრილი</emph></variable>"
-#. gY/;
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1308,7 +1178,6 @@ msgctxt ""
msgid "<variable id=\"addin\"><emph>Insert - Function</emph> - Category <emph>Add-In</emph></variable>"
msgstr "<variable id=\"addin\"><emph>ჩასმა - ფუნქცია</emph> - კატეგორია <emph>დამატება</emph></variable>"
-#. 6=\,
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1318,7 +1187,6 @@ msgctxt ""
msgid "<variable id=\"addinana\"><emph>Insert - Function</emph> - Category <emph>Add-In</emph></variable>"
msgstr "<variable id=\"addinana\"><emph>ჩასმა - ფუნქცია</emph> - კატეგორია <emph>დამატება</emph></variable>"
-#. B1cI
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1328,7 +1196,6 @@ msgctxt ""
msgid "<variable id=\"funktionsliste\">Choose <emph>Insert - Function List</emph></variable>"
msgstr "<variable id=\"funktionsliste\">არჩევა<emph>ჩასმა - ფუნქციის სია</emph></variable>"
-#. *MEy
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1338,7 +1205,6 @@ msgctxt ""
msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
msgstr "<variable id=\"einamen\">არჩევა<emph>ჩასმა - სახელები</emph></variable>"
-#. A{04
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1348,7 +1214,6 @@ msgctxt ""
msgid "<variable id=\"eiextdata\">Choose <emph>Insert - Link to External data</emph></variable>"
msgstr "<variable id=\"eiextdata\">არჩევა <emph>ჩასმა - გარე მონაცემთა ბმული</emph></variable>"
-#. ORCG
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1358,7 +1223,6 @@ msgctxt ""
msgid "Choose <emph>Insert - Names - Define</emph>"
msgstr "არჩევა <emph>ჩასმა - სახელები - განსაზღვრა</emph>"
-#. m^`J
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1368,7 +1232,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ბრძანება </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
-#. )Yo.
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1378,7 +1241,6 @@ msgctxt ""
msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
msgstr "<variable id=\"einaei\">არჩევა <emph>ჩასმა - სახელები - ჩასმა</emph></variable>"
-#. t~nH
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1388,7 +1250,6 @@ msgctxt ""
msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
msgstr "<variable id=\"einaueb\">არჩევა<emph>ჩასმა - სახელები - შექმნა</emph></variable>"
-#. Brvg
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
@@ -1398,7 +1259,6 @@ msgctxt ""
msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
msgstr "<variable id=\"einabesch\">არჩევა<emph>ჩასმა - სახელები - სათაურები</emph></variable>"
-#. %;qZ
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
@@ -1407,7 +1267,6 @@ msgctxt ""
msgid "View Menu"
msgstr "ხედის მენიუ"
-#. n62C
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
@@ -1417,7 +1276,6 @@ msgctxt ""
msgid "View Menu"
msgstr "ხედის მენიუ"
-#. ^x;(
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
@@ -1427,7 +1285,6 @@ msgctxt ""
msgid "<variable id=\"aspze\">Choose <emph>View - Column & Row Headers</emph></variable>"
msgstr "<variable id=\"aspze\">არჩევა <emph>ჩვენება - სვეტი & მწკივის თავი</emph></variable>"
-#. s`(z
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
@@ -1437,7 +1294,6 @@ msgctxt ""
msgid "<variable id=\"awehe\">Choose <emph>View - Value Highlighting</emph></variable>"
msgstr "<variable id=\"awehe\">არჩევა <emph>ჩვენება - მნიშვნელობის მონიშვნა</emph></variable>"
-#. 6D#n
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
@@ -1447,7 +1303,6 @@ msgctxt ""
msgid "<variable id=\"rechenleiste\">Choose <emph>View - Toolbars - Formula Bar</emph></variable>"
msgstr "<variable id=\"rechenleiste\">არჩევა <emph>ჩვენება - ხელსაწყოთა ზოლი - ფორმულის ზოლი </emph></variable>"
-#. BW?#
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
@@ -1457,7 +1312,6 @@ msgctxt ""
msgid "<variable id=\"seumvo\">Choose <emph>View - Page Break Preview</emph></variable>"
msgstr "<variable id=\"seumvo\">არჩევა <emph>ჩვენება - გვერდის გამყოფის დათვალიერება</emph></variable>"
-#. +9f6
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1466,7 +1320,6 @@ msgctxt ""
msgid "Tools Menu"
msgstr "ხელსაწყოების მენიუ"
-#. d|:s
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1476,7 +1329,6 @@ msgctxt ""
msgid "Tools Menu"
msgstr "ხელსაწყოების მენიუ"
-#. oiIq
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1486,7 +1338,6 @@ msgctxt ""
msgid "<variable id=\"exdektv\">Choose <emph>Tools - Detective</emph></variable>"
msgstr "<variable id=\"exdektv\">აირჩიეთ <emph>ხელსაწყოები - ძიება</emph></variable>"
-#. 1u_t
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1496,7 +1347,6 @@ msgctxt ""
msgid "Choose <emph>Tools - Detective - Trace Precedents</emph>"
msgstr "აირჩიეთ <emph>ხელსაწყოები - ძიება -პირველადი უჯრები</emph>"
-#. *h7$
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1506,7 +1356,6 @@ msgctxt ""
msgid "Shift+F7"
msgstr "Shift+F7"
-#. ,3PU
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1516,7 +1365,6 @@ msgctxt ""
msgid "<variable id=\"silbentrennungc\">Menu <emph>Tools - Language - Hyphenation</emph></variable>"
msgstr "<variable id=\"silbentrennungc\">მენიუ <emph>ხელსაწყოები - ენა - გადატანა</emph></variable>"
-#. :]Pl
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1526,7 +1374,6 @@ msgctxt ""
msgid "<variable id=\"exdvore\">Choose <emph>Tools - Detective - Remove Precedents</emph></variable>"
msgstr "<variable id=\"exdvore\">არჩევა <emph>ხელსაწყოები - აღმომჩენი - წაშლა Precedents</emph></variable>"
-#. C9sy
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1536,7 +1383,6 @@ msgctxt ""
msgid "Choose <emph>Tools - Detective - Trace Dependents</emph>"
msgstr "არჩევა <emph>ხელსაწყოები - აღმომჩენი - Trace Dependents</emph>"
-#. 4fQ-
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1546,7 +1392,6 @@ msgctxt ""
msgid "Shift+F5"
msgstr "Shift+F5"
-#. N@yh
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1556,7 +1401,6 @@ msgctxt ""
msgid "<variable id=\"exdszne\">Choose <emph>Tools - Detective - Remove Dependents</emph></variable>"
msgstr "<variable id=\"exdszne\">აირჩიეთ <emph>ხელსაწყოები - ძიება - მეორადი უჯრების წაშლა</emph></variable>"
-#. 4[c@
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1566,7 +1410,6 @@ msgctxt ""
msgid "<variable id=\"exdase\">Choose <emph>Tools - Detective - Remove All Traces</emph></variable>"
msgstr "<variable id=\"exdase\">აირჩიეთ <emph>ხელსაწყოები - ძიება - ისრების წაშლა</emph></variable>"
-#. Wa9S
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1576,7 +1419,6 @@ msgctxt ""
msgid "<variable id=\"exdszfe\">Choose <emph>Tools - Detective - Trace Error</emph></variable>"
msgstr "<variable id=\"exdszfe\">არჩევა <emph>ხელსაწყოები - აღმომჩენი - მიდევნების შეცდომა</emph></variable>"
-#. SEF:
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1586,7 +1428,6 @@ msgctxt ""
msgid "<variable id=\"fuellmodus\">Choose <emph>Tools - Detective - Fill Mode</emph></variable>"
msgstr "<variable id=\"fuellmodus\">არჩევა <emph>ხელსაწყოები - აღმომჩენი - შევსების რეჟიმი</emph></variable>"
-#. EY1M
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1596,7 +1437,6 @@ msgctxt ""
msgid "<variable id=\"dateneinkreisen\">Choose <emph>Tools - Detective - Mark Invalid Data</emph></variable>"
msgstr "<variable id=\"dateneinkreisen\">არჩევა <emph>ხელსაწყოები - აღმომჩენი - არასწორი მონაცემების აღნიშვნა</emph></variable>"
-#. NW5)
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1606,7 +1446,6 @@ msgctxt ""
msgid "<variable id=\"spurenaktualisieren\">Choose <emph>Tools - Detective - Refresh Traces</emph></variable>"
msgstr "<variable id=\"spurenaktualisieren\">არჩევა <emph>ხელსაწყოები - აღმომჩენი - მიდევნების განახლება</emph></variable>"
-#. 4B=D
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1616,7 +1455,6 @@ msgctxt ""
msgid "<variable id=\"automatisch\">Choose <emph>Tools - Detective - AutoRefresh</emph></variable>"
msgstr "<variable id=\"automatisch\">აირჩიეთ <emph>ხელსაწყოები - ძიება - ავტოგანახლება</emph></variable>"
-#. zS5z
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1626,7 +1464,6 @@ msgctxt ""
msgid "<variable id=\"exzws\">Choose <emph>Tools - Goal Seek</emph></variable>"
msgstr "<variable id=\"exzws\">აირჩიეთ <emph>ხელსაწყოები - პარამეტრის ძიება</emph></variable>"
-#. 9dak
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1635,7 +1472,6 @@ msgctxt ""
msgid "<variable id=\"solver\">Choose Tools - Solver</variable>"
msgstr ""
-#. 00qI
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1644,7 +1480,6 @@ msgctxt ""
msgid "<variable id=\"solver_options\">Choose Tools - Solver, Options button</variable>"
msgstr ""
-#. Kg56
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1654,7 +1489,6 @@ msgctxt ""
msgid "<variable id=\"exsze\">Choose <emph>Tools - Scenarios</emph></variable>"
msgstr "<variable id=\"exsze\">არჩევა <emph>ხელსაწყოები - სცენარები</emph></variable>"
-#. *[le
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1664,7 +1498,6 @@ msgctxt ""
msgid "<variable id=\"exdos\">Choose <emph>Tools - Protect Document</emph></variable>"
msgstr "<variable id=\"exdos\">არჩევა <emph>ხელსწყოები - დოკუმენტის დაცვა</emph></variable>"
-#. T#lL
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1674,7 +1507,6 @@ msgctxt ""
msgid "<variable id=\"exdst\">Choose <emph>Tools - Protect Document - Sheet</emph></variable>"
msgstr "<variable id=\"exdst\">არჩევა <emph>ხელსაწყოები - დოკუმენტის დაცვა - ფურცელი</emph></variable>"
-#. GM$X
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1684,7 +1516,6 @@ msgctxt ""
msgid "<variable id=\"exdsd\">Choose <emph>Tools - Protect Document - Document</emph></variable>"
msgstr "<variable id=\"exdsd\">არჩევა <emph>ხელსაწყოები - დოკუმენტის დაცვა - დოკუმენტი</emph></variable>"
-#. ,J^R
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1694,7 +1525,6 @@ msgctxt ""
msgid "<variable id=\"zellinhalte\">Choose <emph>Tools - Cell Contents</emph></variable>"
msgstr "<variable id=\"zellinhalte\">არჩევა <emph>ხელსაწყოები - უჯრების შიგთავსი</emph></variable>"
-#. O57m
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1704,7 +1534,6 @@ msgctxt ""
msgid "Choose <emph>Tools - Cell Contents - Recalculate</emph>"
msgstr "არჩევა <emph>ხელსაწყოები - უჯრების შიგთავსი - გადათვლა</emph>"
-#. y]eB
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1714,7 +1543,6 @@ msgctxt ""
msgid "F9"
msgstr "F9"
-#. *I5/
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1724,7 +1552,6 @@ msgctxt ""
msgid "<variable id=\"exatmb\">Choose <emph>Tools - Cell Contents - AutoCalculate</emph></variable>"
msgstr "<variable id=\"exatmb\">არჩევა <emph>ხელსაწყოები - უჯრების შიგთავსი - ავტოგამოთვლა</emph></variable>"
-#. .Uai
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -1734,7 +1561,6 @@ msgctxt ""
msgid "<variable id=\"autoeingabe\">Choose <emph>Tools - Cell Contents - AutoInput</emph></variable>"
msgstr "<variable id=\"autoeingabe\">არჩევა <emph>ხელსაწყოები - უჯრების შიგთავსი - ავტოშეტანა</emph></variable>"
-#. c15k
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -1743,7 +1569,6 @@ msgctxt ""
msgid "To access this function..."
msgstr "წვდომა ამ ფუნქციასთან..."
-#. Ya[K
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -1753,7 +1578,6 @@ msgctxt ""
msgid "<variable id=\"wie\">To access this function... </variable>"
msgstr "<variable id=\"wie\">ამ ფუნქციასთან დასაკავშირებლად... </variable>"
-#. CTE7
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -1762,7 +1586,6 @@ msgctxt ""
msgid "<variable id=\"moreontop\">More explanations on top of this page. </variable>"
msgstr "<variable id=\"moreontop\">მეტი განმარტებისთვის იხილეთ გვერდის დასაწყისი. </variable>"
-#. u\5L
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -1771,7 +1594,6 @@ msgctxt ""
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 ""
-#. nhr%
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
@@ -1780,7 +1602,6 @@ msgctxt ""
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 ""
-#. qn-9
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1789,7 +1610,6 @@ msgctxt ""
msgid "Edit Menu"
msgstr "რედაქტირების მენიუ"
-#. Dm:%
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1799,7 +1619,6 @@ msgctxt ""
msgid "Edit Menu"
msgstr "რედაქტირების მენიუ"
-#. bMB1
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1809,7 +1628,6 @@ msgctxt ""
msgid "<variable id=\"kopffuss\">Choose <emph>Edit - Headers & Footers</emph></variable>"
msgstr "<variable id=\"kopffuss\">არჩევა <emph> ქვედა და ზედა კოლინტიტულების - რედაქტირება </emph></variable>"
-#. DT_R
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1819,7 +1637,6 @@ msgctxt ""
msgid "<variable id=\"bkopfzeile\">Choose <emph>Edit - Headers & Footers - Header/Footer</emph> tabs</variable>"
msgstr "<variable id=\"bkopfzeile\">არჩევა <emph>ქვედა და ზედა კოლინტიტულების - რედაქტირება - ზედა კოლინტიტული/ქვედა კოლინტიტული</emph> tabs</variable>"
-#. loXu
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1829,7 +1646,6 @@ msgctxt ""
msgid "<variable id=\"bausfullen\">Choose <emph>Edit - Fill</emph></variable>"
msgstr "<variable id=\"bausfullen\">არჩევა <emph>რედაქტირება - შევსება</emph></variable>"
-#. `/-d
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1839,7 +1655,6 @@ msgctxt ""
msgid "<variable id=\"bausunten\">Choose <emph>Edit - Fill - Down</emph></variable>"
msgstr "<variable id=\"bausunten\">არჩევა <emph>რედაქტირება - შევსება - ქვევით</emph></variable>"
-#. a_6Q
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1849,7 +1664,6 @@ msgctxt ""
msgid "<variable id=\"bausrechts\">Choose <emph>Edit - Fill - Right</emph></variable>"
msgstr "<variable id=\"bausrechts\">არჩევა <emph>რედაქტირება - შევსება - მარჯვნივ</emph></variable>"
-#. Kyj.
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1859,7 +1673,6 @@ msgctxt ""
msgid "<variable id=\"bausoben\">Choose <emph>Edit - Fill - Up</emph></variable>"
msgstr "<variable id=\"bausoben\">არჩევა<emph>რედაქტირება - შევსება - ზევით</emph></variable>"
-#. d3DK
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1869,7 +1682,6 @@ msgctxt ""
msgid "<variable id=\"bauslinks\">Choose <emph>Edit - Fill - Left</emph></variable>"
msgstr "<variable id=\"bauslinks\">არჩევა <emph>რედაქტირება - შევსება - მარცხნივ</emph></variable>"
-#. V,qL
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1879,7 +1691,6 @@ msgctxt ""
msgid "<variable id=\"baustab\">Choose <emph>Edit - Fill - Sheet</emph></variable>"
msgstr "<variable id=\"baustab\">არჩევა <emph>რედაქტირება - შევსება - ფურცელი</emph></variable>"
-#. j,uR
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1889,7 +1700,6 @@ msgctxt ""
msgid "<variable id=\"bausreihe\">Choose <emph>Edit - Fill - Series</emph></variable>"
msgstr "<variable id=\"bausreihe\">არჩევა <emph>რედაქტირება - შევსება - სერიები</emph></variable>"
-#. F}HZ
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1899,7 +1709,6 @@ msgctxt ""
msgid "Choose <emph>Edit - Delete Contents</emph>"
msgstr "არჩევა<emph>რედაქტირება - შიგთავსის წაშლა</emph>"
-#. 2f]Y
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1909,7 +1718,6 @@ msgctxt ""
msgid "Backspace"
msgstr ""
-#. vYP%
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1919,7 +1727,6 @@ msgctxt ""
msgid "<variable id=\"bzelo\">Choose <emph>Edit - Delete Cells</emph></variable>"
msgstr "<variable id=\"bzelo\">არჩევა <emph>რედაქტირება - უჯრების წაშლა</emph></variable>"
-#. WA]R
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1929,7 +1736,6 @@ msgctxt ""
msgid "Choose <emph>Edit – Sheet - Delete</emph>"
msgstr "არჩევა <emph>რედაქტირება /– ფურცელი - წაშლა</emph>"
-#. tRoj
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1939,7 +1745,6 @@ msgctxt ""
msgid "Open context menu for a sheet tab"
msgstr "ელ-ცხრილის დაფისთვის კონტექსტის მენიუს გახსნა"
-#. qh1b
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1949,7 +1754,6 @@ msgctxt ""
msgid "Choose <emph>Edit – Sheets – Move/Copy</emph>"
msgstr "არჩევა <emph>რედაქტირება – ფურცლები – გადატანა/კოპირება</emph>"
-#. (K;T
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1959,7 +1763,6 @@ msgctxt ""
msgid "Open context menu for a sheet tab"
msgstr "ელ-ცხრილის დაფისთვის კონტექსტის მენიუს გახსნა"
-#. 78Ae
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1969,7 +1772,6 @@ msgctxt ""
msgid "<variable id=\"bmaumloe\">Choose <emph>Edit - Delete Manual Break</emph></variable>"
msgstr "<variable id=\"bmaumloe\">აირჩიეთ<emph>რედაქტირება -ხელოვნური წყვეტის წაშლა</emph></variable>"
-#. }VH9
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
@@ -1979,7 +1781,6 @@ msgctxt ""
msgid "<variable id=\"bzeilum\">Choose <emph>Edit - Delete Manual Break - Row Break</emph></variable>"
msgstr "<variable id=\"bzeilum\">არჩევა <emph>რედაქტირება - წაშალე ხელით გამყოფი - Row Break</emph></variable>"
-#. 6ae`
#: 00000402.xhp
msgctxt ""
"00000402.xhp\n"
diff --git a/source/ka/helpcontent2/source/text/scalc/01.po b/source/ka/helpcontent2/source/text/scalc/01.po
index 8c50a8a0e95..54cd14a5e0b 100644
--- a/source/ka/helpcontent2/source/text/scalc/01.po
+++ b/source/ka/helpcontent2/source/text/scalc/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-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\n"
"PO-Revision-Date: 2012-07-04 18:06+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. QYJU
#: 04090000.xhp
msgctxt ""
"04090000.xhp\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Link to External Data"
msgstr "გარე მონაცემების ბმული"
-#. s.[P
#: 04090000.xhp
msgctxt ""
"04090000.xhp\n"
@@ -34,7 +32,6 @@ msgctxt ""
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\">იპოვეთ ჩასასმელი მონაცემების მქონე ფაილი.</ahelp>"
-#. giS@
#: 04090000.xhp
msgctxt ""
"04090000.xhp\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\">Link to External Data</link>"
msgstr "<link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\">ბმული გარე მონაცემებზე</link>"
-#. tCh\
#: 04090000.xhp
msgctxt ""
"04090000.xhp\n"
@@ -54,7 +50,6 @@ msgctxt ""
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, ან Excel ფაილებიდან მიმდინარე ფურცელში ბმულის სახით. მონაცემები უნდა იყოს მოთავსებული სახელებიან დიაპაზონში.</ahelp>"
-#. =859
#: 04090000.xhp
msgctxt ""
"04090000.xhp\n"
@@ -64,7 +59,6 @@ msgctxt ""
msgid "URL of external data source."
msgstr "მონაცემთა გარე წყაროს მისამართი."
-#. TU3S
#: 04090000.xhp
msgctxt ""
"04090000.xhp\n"
@@ -74,7 +68,6 @@ msgctxt ""
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 ""
-#. )R`2
#: 04090000.xhp
msgctxt ""
"04090000.xhp\n"
@@ -84,7 +77,6 @@ msgctxt ""
msgid "Available tables/ranges"
msgstr "ხელმისაწვდომი ცხრილები/დიაპაზონები"
-#. Y.eC
#: 04090000.xhp
msgctxt ""
"04090000.xhp\n"
@@ -94,7 +86,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC_MULTILISTBOX_RID_SCDLG_LINKAREA_LB_RANGES\">Select the table or the data range that you want to insert.</ahelp>"
msgstr ""
-#. laKi
#: 04090000.xhp
msgctxt ""
"04090000.xhp\n"
@@ -104,7 +95,6 @@ msgctxt ""
msgid "Update every"
msgstr "გამოკითხვის განახლება"
-#. 8]|j
#: 04090000.xhp
msgctxt ""
"04090000.xhp\n"
@@ -114,7 +104,6 @@ msgctxt ""
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 ""
-#. C6?=
#: func_minute.xhp
#, fuzzy
msgctxt ""
@@ -124,7 +113,6 @@ msgctxt ""
msgid "MINUTE"
msgstr "MINUTE"
-#. -^KR
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -133,7 +121,6 @@ msgctxt ""
msgid "<bookmark_value>MINUTE function</bookmark_value>"
msgstr "<bookmark_value>MINUTE ფუნქცია</bookmark_value>"
-#. ~mNL
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -143,7 +130,6 @@ msgctxt ""
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>"
-#. [l#*
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -153,7 +139,6 @@ msgctxt ""
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 ""
-#. Mcxu
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -163,7 +148,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. (eMS
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -173,7 +157,6 @@ msgctxt ""
msgid "MINUTE(Number)"
msgstr "MINUTE(რიცხვი)"
-#. =;Sc
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -183,7 +166,6 @@ msgctxt ""
msgid "<emph>Number</emph>, as a time value, is a decimal number where the number of the minute is to be returned."
msgstr "<emph>რიცხვი</emph>, რგორც დროის მნიშვნელობა; არის ათწილადი; რომლისთვისაც დაბრუნდება წამები."
-#. mb:f
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -193,7 +175,6 @@ msgctxt ""
msgid "Examples"
msgstr "მაგალითები"
-#. p:bx
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -203,7 +184,6 @@ msgctxt ""
msgid "<item type=\"input\">=MINUTE(8.999)</item> returns 58"
msgstr ""
-#. dy#.
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -213,7 +193,6 @@ msgctxt ""
msgid "<item type=\"input\">=MINUTE(8.9999)</item> returns 59"
msgstr ""
-#. ]KX1
#: func_minute.xhp
msgctxt ""
"func_minute.xhp\n"
@@ -223,7 +202,6 @@ msgctxt ""
msgid "<item type=\"input\">=MINUTE(NOW())</item> returns the current minute value."
msgstr ""
-#. rV:w
#: 01120000.xhp
#, fuzzy
msgctxt ""
@@ -233,7 +211,6 @@ msgctxt ""
msgid "Page Preview"
msgstr "#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\\nგვერდის გადახედვა\\n#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\\nგვერდის წინასწარი დათვალიერება"
-#. 5l=F
#: 01120000.xhp
#, fuzzy
msgctxt ""
@@ -243,7 +220,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/01120000.xhp\">Page Preview</link>"
msgstr "<link href=\"text/scalc/01/02140300.xhp\" name=\"Up\">მაღლა</link>"
-#. Hak7
#: 01120000.xhp
msgctxt ""
"01120000.xhp\n"
@@ -252,7 +228,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:PrintPreview\">Displays a preview of the printed page or closes the preview.</ahelp>"
msgstr ""
-#. =XAh
#: 01120000.xhp
msgctxt ""
"01120000.xhp\n"
@@ -261,7 +236,6 @@ msgctxt ""
msgid "Use the icons on the <emph>Page Preview Bar</emph> to scroll through the pages of the document or to print the document."
msgstr ""
-#. }DY5
#: 01120000.xhp
msgctxt ""
"01120000.xhp\n"
@@ -270,7 +244,6 @@ msgctxt ""
msgid "You can also press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up and <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Down keys to scroll through the pages."
msgstr ""
-#. O)\M
#: 01120000.xhp
msgctxt ""
"01120000.xhp\n"
@@ -279,7 +252,6 @@ msgctxt ""
msgid "You cannot edit your document while you are in the page preview."
msgstr ""
-#. k(Sy
#: 01120000.xhp
msgctxt ""
"01120000.xhp\n"
@@ -288,7 +260,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">To exit the page preview, click the <emph>Close Preview</emph> button.</ahelp>"
msgstr ""
-#. e$RS
#: 01120000.xhp
msgctxt ""
"01120000.xhp\n"
@@ -297,7 +268,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Page View Object Bar\">Page View Object Bar</link>"
msgstr ""
-#. 39Th
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -306,7 +276,6 @@ msgctxt ""
msgid "Options"
msgstr "პარამეტრები"
-#. _oe!
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -315,7 +284,6 @@ msgctxt ""
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>დახარისხება; მონაცემთა ბაზის რანგის პარამეტრები</bookmark_value><bookmark_value>დახარისხება;აზიური ენები</bookmark_value><bookmark_value>აზიური ენები;დახარისხება</bookmark_value><bookmark_value>სატელეფონო წიგნის დახარისხების წესები</bookmark_value><bookmark_value>ბუნებრივი დახარისხების ალგორითმი</bookmark_value>"
-#. 8gK}
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -325,7 +293,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12030200.xhp\" name=\"Options\"> Options</link>"
msgstr "<link href=\"text/scalc/01/12030200.xhp\" name=\"Options\"> პარამეტრები</link>"
-#. cm2V
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -335,7 +302,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_SCPAGE_SORT_OPTIONS\"> Sets additional sorting options.</ahelp>"
msgstr ""
-#. Yd(:
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -345,7 +311,6 @@ msgctxt ""
msgid "Case Sensitivity"
msgstr "რეგისტრისადმი მგრძნობიარობა"
-#. G^pd
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -355,7 +320,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_CASESENSITIVE\"> Sorts first by uppercase letters and then by lowercase letters. For Asian languages, special handling applies.</ahelp>"
msgstr ""
-#. **Qs
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -364,7 +328,6 @@ msgctxt ""
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 ""
-#. _,YN
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -374,7 +337,6 @@ msgctxt ""
msgid "Range contains column/row labels"
msgstr "დიაპაზონი შეიცავს სვეტის/რიგის ეტიკეტებს"
-#. lyff
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -384,7 +346,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_LABEL\"> 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 ""
-#. !/$e
#: 12030200.xhp
#, fuzzy
msgctxt ""
@@ -395,7 +356,6 @@ msgctxt ""
msgid "Include formats"
msgstr "ფორმატების ჩართვა"
-#. ,Dqn
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -405,7 +365,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_FORMATS\"> Preserves the current cell formatting.</ahelp>"
msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_FORMATS\">ინხავს უჯრის მიმდინარე ფორმატირებას.</ahelp>"
-#. }49$
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -414,7 +373,6 @@ msgctxt ""
msgid "Enable natural sort"
msgstr ""
-#. rE(#
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -423,7 +381,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_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 ""
-#. x2`R
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -433,7 +390,6 @@ msgctxt ""
msgid "Copy sort results to:"
msgstr "დახარისხების შედეგების ასლი:"
-#. ?;^Z
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -443,7 +399,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_COPYRESULT\"> Copies the sorted list to the cell range that you specify.</ahelp>"
msgstr ""
-#. R^:,
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -453,7 +408,6 @@ msgctxt ""
msgid "Sort results"
msgstr "დახარისხების შედეგები"
-#. :AAm
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -463,7 +417,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_OPTIONS:LB_OUTAREA\"> 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 ""
-#. w!C(
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -473,7 +426,6 @@ msgctxt ""
msgid "Sort results"
msgstr "დახარისხების შედეგები"
-#. O-ia
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -483,7 +435,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC:EDIT:RID_SCPAGE_SORT_OPTIONS:ED_OUTAREA\"> Enter the cell range where you want to display the sorted list, or select a named range from the list.</ahelp>"
msgstr ""
-#. zyZB
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -493,7 +444,6 @@ msgctxt ""
msgid "Custom sort order"
msgstr "სხვა დახარისხების წესი"
-#. Gx/-
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -503,7 +453,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_SORT_USER\"> Click here and then select the custom sort order that you want.</ahelp>"
msgstr ""
-#. Gt1J
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -513,7 +462,6 @@ msgctxt ""
msgid "Custom sort order"
msgstr "სხვა დახარისხების წესი"
-#. 3FT%
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -523,7 +471,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_OPTIONS:LB_SORT_USER\"> 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 ""
-#. -.fx
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -533,7 +480,6 @@ msgctxt ""
msgid "Language"
msgstr "ენა"
-#. n*y+
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -543,7 +489,6 @@ msgctxt ""
msgid "Language"
msgstr "ენა"
-#. 85/q
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -553,7 +498,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC_LISTBOX_RID_SCPAGE_SORT_OPTIONS_LB_LANGUAGE\"> Select the language for the sorting rules.</ahelp>"
msgstr ""
-#. .F;_
#: 12030200.xhp
#, fuzzy
msgctxt ""
@@ -564,7 +508,6 @@ msgctxt ""
msgid "Options"
msgstr "პარამეტრები"
-#. :r?_
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -574,7 +517,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC_LISTBOX_RID_SCPAGE_SORT_OPTIONS_LB_ALGORITHM\"> 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 ""
-#. =viP
#: 12030200.xhp
#, fuzzy
msgctxt ""
@@ -585,7 +527,6 @@ msgctxt ""
msgid "Direction"
msgstr "მიმართულება"
-#. dP))
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -595,7 +536,6 @@ msgctxt ""
msgid "Top to Bottom (Sort Rows)"
msgstr "ზემოდან ქვემოთ (რიგების დახარისხება)"
-#. BeT/
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -605,7 +545,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_OPTIONS:BTN_TOP_DOWN\"> Sorts rows by the values in the active columns of the selected range.</ahelp>"
msgstr ""
-#. asPV
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -615,7 +554,6 @@ msgctxt ""
msgid "Left to Right (Sort Columns)"
msgstr "მარცხნიდან მარჯვნივ (სვეტების დახარისხება)"
-#. l#*i
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -625,7 +563,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_OPTIONS:BTN_LEFT_RIGHT\"> Sorts columns by the values in the active rows of the selected range.</ahelp>"
msgstr ""
-#. -6JV
#: 12030200.xhp
#, fuzzy
msgctxt ""
@@ -636,7 +573,6 @@ msgctxt ""
msgid "Data area"
msgstr "მონაცემების არე"
-#. kJBY
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
@@ -646,7 +582,6 @@ msgctxt ""
msgid "Displays the cell range that you want to sort."
msgstr "ასახავს დასახარისხებელ უკრათა დიაპაზონს."
-#. Db]B
#: 12100000.xhp
msgctxt ""
"12100000.xhp\n"
@@ -655,7 +590,6 @@ msgctxt ""
msgid "Refresh Range"
msgstr "დიაპაზონის განახლება"
-#. !^_S
#: 12100000.xhp
msgctxt ""
"12100000.xhp\n"
@@ -664,7 +598,6 @@ msgctxt ""
msgid "<bookmark_value>database ranges; refreshing</bookmark_value>"
msgstr "<bookmark_value>მონაცემთა ბაზის დიაპაზონები; განახლება</bookmark_value>"
-#. n?E@
#: 12100000.xhp
msgctxt ""
"12100000.xhp\n"
@@ -674,7 +607,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
msgstr "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">გვერდის განახლება</link>"
-#. !I(f
#: 12100000.xhp
msgctxt ""
"12100000.xhp\n"
@@ -684,7 +616,6 @@ msgctxt ""
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 ""
-#. Sm(4
#: 12040500.xhp
msgctxt ""
"12040500.xhp\n"
@@ -693,7 +624,6 @@ msgctxt ""
msgid "Hide AutoFilter"
msgstr "ავტოფილტრის დამალვა"
-#. [\!H
#: 12040500.xhp
msgctxt ""
"12040500.xhp\n"
@@ -702,7 +632,6 @@ msgctxt ""
msgid "<bookmark_value>database ranges; hiding AutoFilter</bookmark_value>"
msgstr "<bookmark_value>მონაცემთა ბაზის დიაპაზონები; ავტოფილტრილ დამალვა</bookmark_value>"
-#. dm*/
#: 12040500.xhp
msgctxt ""
"12040500.xhp\n"
@@ -712,7 +641,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12040500.xhp\" name=\"Hide AutoFilter\">Hide AutoFilter</link>"
msgstr "<link href=\"text/scalc/01/12040500.xhp\" name=\"Hide AutoFilter\">ავტოფილტრის დამალვა</link>"
-#. n;QZ
#: 12040500.xhp
msgctxt ""
"12040500.xhp\n"
@@ -722,7 +650,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DataFilterHideAutoFilter\" visibility=\"visible\">Hides the AutoFilter buttons in the selected cell range.</ahelp>"
msgstr ""
-#. noNP
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -731,7 +658,6 @@ msgctxt ""
msgid "Insert Sheet"
msgstr "ფურცლის ჩასმა"
-#. GCi5
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -740,7 +666,6 @@ msgctxt ""
msgid "<bookmark_value>sheets;creating</bookmark_value>"
msgstr "<bookmark_value>RSQ გამოთვლები</bookmark_value>"
-#. 6YO[
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -750,7 +675,6 @@ msgctxt ""
msgid "Insert Sheet"
msgstr "ფურცლის ჩასმა"
-#. 5Ro*
#: 04050000.xhp
#, fuzzy
msgctxt ""
@@ -761,7 +685,6 @@ msgctxt ""
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\">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>"
-#. !/:r
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -771,7 +694,6 @@ msgctxt ""
msgid "Position"
msgstr "Position"
-#. |YCT
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -781,7 +703,6 @@ msgctxt ""
msgid "Specifies where the new sheet is to be inserted into your document."
msgstr "Specifies where the new sheet is to be inserted into your document."
-#. WNB6
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -791,7 +712,6 @@ msgctxt ""
msgid "Before current sheet"
msgstr "Before current sheet"
-#. `E8X
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -801,7 +721,6 @@ msgctxt ""
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\">Inserts a new sheet directly before the current sheet.</ahelp>"
-#. rZoI
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -811,7 +730,6 @@ msgctxt ""
msgid "After current sheet"
msgstr "After current sheet"
-#. xsa;
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -821,7 +739,6 @@ msgctxt ""
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\">Inserts a new sheet directly after the current sheet.</ahelp>"
-#. L??V
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -831,7 +748,6 @@ msgctxt ""
msgid "Sheet"
msgstr "შექმნა"
-#. D;3$
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -841,7 +757,6 @@ msgctxt ""
msgid "Specifies whether a new sheet or an existing sheet is inserted into the document."
msgstr "Specifies whether a new sheet or an existing sheet is inserted into the document."
-#. r;U+
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -851,7 +766,6 @@ msgctxt ""
msgid "New sheet"
msgstr "შექმნა"
-#. r%y,
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -861,7 +775,6 @@ msgctxt ""
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 ""
-#. N6U[
#: 04050000.xhp
#, fuzzy
msgctxt ""
@@ -872,7 +785,6 @@ msgctxt ""
msgid "No. of sheets"
msgstr "No. of Sheets"
-#. #4rf
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -882,7 +794,6 @@ msgctxt ""
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\">Specifies the number of sheets to be created.</ahelp>"
-#. KWT_
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -892,7 +803,6 @@ msgctxt ""
msgid "Name"
msgstr "სახელი"
-#. VA@l
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -902,7 +812,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_INSERT_TABLE:ED_TABNAME\">Specifies the name of the new sheet.</ahelp>"
msgstr ""
-#. bJR-
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -912,7 +821,6 @@ msgctxt ""
msgid "From File"
msgstr "From File"
-#. .YdN
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -922,7 +830,6 @@ msgctxt ""
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\">Inserts a sheet from an existing file into the current document.</ahelp>"
-#. _4dL
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -932,7 +839,6 @@ msgctxt ""
msgid "Browse"
msgstr "მიმოხილვა"
-#. XhN2
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -942,7 +848,6 @@ msgctxt ""
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\">Opens a dialog for selecting a file.</ahelp>"
-#. jR:5
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -952,7 +857,6 @@ msgctxt ""
msgid "Available Sheets"
msgstr "Available Sheets"
-#. f#6`
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -962,7 +866,6 @@ msgctxt ""
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\">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. მონიშნეთ the sheet to be inserted from the list box.</ahelp>"
-#. .wP]
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -972,7 +875,6 @@ msgctxt ""
msgid "Link"
msgstr "Link"
-#. *#Hu
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
@@ -982,7 +884,6 @@ msgctxt ""
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\">მონიშნეთ to insert the sheet as a link instead as a copy. The links can be updated to show the current contents.</ahelp>"
-#. +?HC
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -991,7 +892,6 @@ msgctxt ""
msgid "Protecting Sheet"
msgstr "ფურცლის დაცვა"
-#. Inp6
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1001,7 +901,6 @@ msgctxt ""
msgid "Protecting Sheet"
msgstr "ფურცლის დაცვა"
-#. fTi?
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1011,7 +910,6 @@ msgctxt ""
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 ""
-#. Ad^k
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1021,7 +919,6 @@ msgctxt ""
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 ""
-#. tka+
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1031,7 +928,6 @@ msgctxt ""
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 ""
-#. !#5\
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1041,7 +937,6 @@ msgctxt ""
msgid "Select the cells that will be unprotected"
msgstr "აირჩიეთ დასაცავი უჯრები"
-#. a]fW
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1051,7 +946,6 @@ msgctxt ""
msgid "Select <emph>Format - Cells - Cell Protection</emph>. Unmark the <emph>Protected</emph> box and click <emph>OK</emph>."
msgstr ""
-#. SH5b
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1061,7 +955,6 @@ msgctxt ""
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 ""
-#. BDHR
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1071,7 +964,6 @@ msgctxt ""
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 ""
-#. Zl~3
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1081,7 +973,6 @@ msgctxt ""
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 ""
-#. 8dZ\
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1091,7 +982,6 @@ msgctxt ""
msgid "If a sheet is protected, you will not be able to modify or delete any Cell Styles."
msgstr ""
-#. Y|5:
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1101,7 +991,6 @@ msgctxt ""
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 ""
-#. a3|+
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1111,7 +1000,6 @@ msgctxt ""
msgid "Once saved, protected sheets can only be saved again by using the <emph>File - Save As</emph> command."
msgstr ""
-#. FYEm
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1121,7 +1009,6 @@ msgctxt ""
msgid "Password (optional)"
msgstr "პაროლი (არასავალდებულო)"
-#. /%d+
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1131,7 +1018,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:Protect\">Allows you to enter a password to protect the sheet from unauthorized changes.</ahelp>"
msgstr ""
-#. )n/C
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
@@ -1141,7 +1027,6 @@ msgctxt ""
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 ""
-#. -JE8
#: 06030300.xhp
msgctxt ""
"06030300.xhp\n"
@@ -1150,7 +1035,6 @@ msgctxt ""
msgid "Trace Dependents"
msgstr "დამოკიდებულებების კვალი"
-#. npdN
#: 06030300.xhp
msgctxt ""
"06030300.xhp\n"
@@ -1159,7 +1043,6 @@ msgctxt ""
msgid "<bookmark_value>cells; tracing dependents</bookmark_value>"
msgstr "<bookmark_value>უჯრები; დამოკიდებულებების გაკვლევა</bookmark_value>"
-#. #c4v
#: 06030300.xhp
#, fuzzy
msgctxt ""
@@ -1170,7 +1053,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/06030300.xhp\" name=\"Trace Dependents\">Trace Dependents</link>"
msgstr "<link href=\"text/scalc/01/06030400.xhp\" name=\"Remove Dependents\">დამოკიდებულებების ამოშლა</link>"
-#. ]SS,
#: 06030300.xhp
msgctxt ""
"06030300.xhp\n"
@@ -1180,7 +1062,6 @@ msgctxt ""
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 ""
-#. /7n]
#: 06030300.xhp
msgctxt ""
"06030300.xhp\n"
@@ -1190,7 +1071,6 @@ msgctxt ""
msgid "The area of all cells that are used together with the active cell in a formula is highlighted by a blue frame."
msgstr "არე - ყველა აქტიური დუ a ფორმულა ტოლია -ით a ჩარჩო."
-#. e^:o
#: 06030300.xhp
msgctxt ""
"06030300.xhp\n"
@@ -1200,7 +1080,6 @@ msgctxt ""
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 ""
-#. `%/w
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1209,7 +1088,6 @@ msgctxt ""
msgid "Multiple Operations"
msgstr "რამდენიმე პარამეტრი"
-#. noO9
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1219,7 +1097,6 @@ msgctxt ""
msgid "Multiple Operations"
msgstr "რამდენიმე პარამეტრი"
-#. fccg
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1229,7 +1106,6 @@ msgctxt ""
msgid "<variable id=\"mehrfachoperationen\"><ahelp hid=\".uno:TableOperationDialog\">Applies the same formula to different cells, but with different parameter values.</ahelp></variable>"
msgstr ""
-#. p+Z2
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1239,7 +1115,6 @@ msgctxt ""
msgid "The <emph>Row</emph> or <emph>Column</emph> box must contain a reference to the first cell of the selected range."
msgstr ""
-#. }fjc
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1249,7 +1124,6 @@ msgctxt ""
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 ""
-#. 3\*@
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1259,7 +1133,6 @@ msgctxt ""
msgid "Defaults"
msgstr "ნაგულისხმები პარამეტრები"
-#. p]Z^
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1269,7 +1142,6 @@ msgctxt ""
msgid "Formulas"
msgstr "ფორმულები"
-#. W*q;
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1279,7 +1151,6 @@ msgctxt ""
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 ""
-#. guHC
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1289,7 +1160,6 @@ msgctxt ""
msgid "Row"
msgstr "რიგი"
-#. $~]p
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1299,7 +1169,6 @@ msgctxt ""
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 ""
-#. 3VcJ
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1309,7 +1178,6 @@ msgctxt ""
msgid "Column"
msgstr "სვეტი"
-#. I\8/
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
@@ -1319,7 +1187,6 @@ msgctxt ""
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 ""
-#. $S#A
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1328,7 +1195,6 @@ msgctxt ""
msgid "TODAY"
msgstr "TODAY"
-#. wm5a
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1337,7 +1203,6 @@ msgctxt ""
msgid "<bookmark_value>TODAY function</bookmark_value>"
msgstr "<bookmark_value>TODAY ფუნქცია</bookmark_value>"
-#. 1DU2
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1347,7 +1212,6 @@ msgctxt ""
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"
@@ -1357,7 +1221,6 @@ msgctxt ""
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 ""
-#. Vt.A
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1367,7 +1230,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. 1VYg
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1377,7 +1239,6 @@ msgctxt ""
msgid "TODAY()"
msgstr "TODAY()"
-#. wPIN
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1387,7 +1248,6 @@ msgctxt ""
msgid "TODAY is a function without arguments."
msgstr ""
-#. ,$VW
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1397,7 +1257,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. ~Rh-
#: func_today.xhp
msgctxt ""
"func_today.xhp\n"
@@ -1407,7 +1266,6 @@ msgctxt ""
msgid "<item type=\"input\">TODAY()</item> returns the current computer system date."
msgstr ""
-#. wthR
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1416,7 +1274,6 @@ msgctxt ""
msgid "Financial Functions Part One"
msgstr "ფინანსური ფუნქციები ნაწილი ერთი"
-#. 1\BA
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1425,7 +1282,6 @@ msgctxt ""
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 ""
-#. I5ps
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1435,7 +1291,6 @@ msgctxt ""
msgid "Financial Functions Part One"
msgstr "ფინანსური ფუნქციები ნაწილი ერთი"
-#. 7QG#
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1445,7 +1300,6 @@ msgctxt ""
msgid "<variable id=\"finanztext\">This category contains the mathematical finance functions of <item type=\"productname\">%PRODUCTNAME</item> Calc. </variable>"
msgstr "<variable id=\"finanztext\">ეს კატეგორია შეიცავს მათემატიკურ ფინანსურ ფუნქციებს <item type=\"productname\">%PRODUCTNAME</item> Calc-სთვის. </variable>"
-#. @*+,
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1454,7 +1308,6 @@ msgctxt ""
msgid "<bookmark_value>AMORDEGRC function</bookmark_value> <bookmark_value>depreciations;degressive amortizations</bookmark_value>"
msgstr "<bookmark_value>AMORDEGRC ფუნქცია</bookmark_value><bookmark_value>დეპრიკაციები;დეგრესიული ამორტიზაციები</bookmark_value>"
-#. r$G4
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1464,7 +1317,6 @@ msgctxt ""
msgid "AMORDEGRC"
msgstr "AMORDEGRC"
-#. Rr!o
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1474,7 +1326,6 @@ msgctxt ""
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 ""
-#. OC55
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1484,7 +1335,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. 8`l,
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1494,7 +1344,6 @@ msgctxt ""
msgid "AMORDEGRC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
msgstr "AMORDEGRC(ღირებულება;ყიდვის თარიღი;პირველი პერიოდი;გადარჩენა;პერიოდი;სიხშირე;ფუძე)"
-#. .\84
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1504,7 +1353,6 @@ msgctxt ""
msgid "<emph>Cost</emph> is the acquisition costs."
msgstr "<emph>ღირებულება</emph>: შესყიდვის ფასი."
-#. #uKI
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1514,7 +1362,6 @@ msgctxt ""
msgid "<emph>DatePurchased</emph> is the date of acquisition."
msgstr "<emph>ყიდვის თარიღი</emph>: შესყიდვის თარიღი."
-#. 1)vG
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1524,7 +1371,6 @@ msgctxt ""
msgid "<emph>FirstPeriod </emph>is the end date of the first settlement period."
msgstr "<emph>პირველი პერიოდი</emph>: პირველი დასახლების თარიღის დასასრული."
-#. ^E-5
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1534,7 +1380,6 @@ msgctxt ""
msgid "<emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
msgstr ""
-#. 1lBc
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1544,7 +1389,6 @@ msgctxt ""
msgid "<emph>Period</emph> is the settlement period to be considered."
msgstr ""
-#. zXhT
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -1555,7 +1399,6 @@ msgctxt ""
msgid "<emph>Rate</emph> is the rate of depreciation."
msgstr "<emph>რაოდენობა</emph> არის განმეორებათა რაოდენობა."
-#. ,5a4
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1564,7 +1407,6 @@ msgctxt ""
msgid "<bookmark_value>AMORLINC function</bookmark_value> <bookmark_value>depreciations;linear amortizations</bookmark_value>"
msgstr "<bookmark_value>AMORLINC ფუნქცია</bookmark_value><bookmark_value>დეპრიკაციები;წრფივი ამორტიზაციები</bookmark_value>"
-#. =(RL
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1574,7 +1416,6 @@ msgctxt ""
msgid "AMORLINC"
msgstr "AMORLINC"
-#. MW^S
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1584,7 +1425,6 @@ msgctxt ""
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 ""
-#. :lQY
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1594,7 +1434,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. `-8J
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1604,7 +1443,6 @@ msgctxt ""
msgid "AMORLINC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
msgstr "AMORLINC(ღირებულება;ყიდვის თარიღი;პირველი პერიოდი;გადარჩენა;პერიოდი;სიხშირე;ფუძე)"
-#. lXZF
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1614,7 +1452,6 @@ msgctxt ""
msgid "<emph>Cost</emph> means the acquisition costs."
msgstr "<emph>ღირებულება</emph>: შესყიდვის ფასი."
-#. kl9m
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1624,7 +1461,6 @@ msgctxt ""
msgid "<emph>DatePurchased</emph> is the date of acquisition."
msgstr "<emph>ყიდვის თარიღი</emph>: შესყიდვის თარიღი."
-#. cj,V
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1634,7 +1470,6 @@ msgctxt ""
msgid "<emph>FirstPeriod </emph>is the end date of the first settlement period."
msgstr "<emph>პირველი პერიოდი</emph>: პირველი დასახლების თარიღის დასასრული."
-#. \c85
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1644,7 +1479,6 @@ msgctxt ""
msgid "<emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
msgstr ""
-#. A~03
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1654,7 +1488,6 @@ msgctxt ""
msgid "<emph>Period</emph> is the settlement period to be considered."
msgstr ""
-#. 8gE+
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -1665,7 +1498,6 @@ msgctxt ""
msgid "<emph>Rate</emph> is the rate of depreciation."
msgstr "<emph>რაოდენობა</emph> არის განმეორებათა რაოდენობა."
-#. .w{T
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1674,7 +1506,6 @@ msgctxt ""
msgid "<bookmark_value>ACCRINT function</bookmark_value>"
msgstr "<bookmark_value>ACCRINT ფუნქცია</bookmark_value>"
-#. \$:(
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1684,7 +1515,6 @@ msgctxt ""
msgid "ACCRINT"
msgstr "ACCRINT"
-#. C:9A
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1693,7 +1523,6 @@ msgctxt ""
msgid "<bookmark_value>accrued interests;periodic payments</bookmark_value>"
msgstr ""
-#. xdh!
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1703,7 +1532,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_ACCRINT\">Calculates the accrued interest of a security in the case of periodic payments.</ahelp>"
msgstr ""
-#. xp-.
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1713,7 +1541,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. dc@f
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1723,7 +1550,6 @@ msgctxt ""
msgid "ACCRINT(Issue; FirstInterest; Settlement; Rate; Par; Frequency; Basis)"
msgstr ""
-#. 8\TV
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1733,7 +1559,6 @@ msgctxt ""
msgid "<emph>Issue</emph> is the issue date of the security."
msgstr ""
-#. K1ay
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1743,7 +1568,6 @@ msgctxt ""
msgid "<emph>FirstInterest</emph> is the first interest date of the security."
msgstr ""
-#. n6hk
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1753,7 +1577,6 @@ msgctxt ""
msgid "<emph>Settlement</emph> is the date at which the interest accrued up until then is to be calculated."
msgstr ""
-#. /pZV
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1763,7 +1586,6 @@ msgctxt ""
msgid "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)"
msgstr ""
-#. =ys1
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1773,7 +1595,6 @@ msgctxt ""
msgid "<emph>Par</emph> is the par value of the security."
msgstr ""
-#. gY.;
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1783,7 +1604,6 @@ msgctxt ""
msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
msgstr ""
-#. 0Ev`
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1793,7 +1613,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. JpK?
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1803,7 +1622,6 @@ msgctxt ""
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 ""
-#. :l*K
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1813,7 +1631,6 @@ msgctxt ""
msgid "<item type=\"input\">=ACCRINT(\"2001-02-28\";\"2001-08-31\";\"2001-05-01\";0.1;1000;2;0)</item> returns 16.94444."
msgstr ""
-#. G*JF
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1822,7 +1639,6 @@ msgctxt ""
msgid "<bookmark_value>ACCRINTM function</bookmark_value> <bookmark_value>accrued interests;one-off payments</bookmark_value>"
msgstr "<bookmark_value>COUNTIF ფუნქცია</bookmark_value><bookmark_value>დათვლა;სპეციალური უჯრები</bookmark_value>"
-#. N9.;
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1832,7 +1648,6 @@ msgctxt ""
msgid "ACCRINTM"
msgstr "ACCRINTM"
-#. Na,;
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1842,7 +1657,6 @@ msgctxt ""
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 ""
-#. ![r/
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1852,7 +1666,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. 2j\k
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1862,7 +1675,6 @@ msgctxt ""
msgid "ACCRINTM(Issue; Settlement; Rate; Par; Basis)"
msgstr ""
-#. Q)\%
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1872,7 +1684,6 @@ msgctxt ""
msgid "<emph>Issue</emph> is the issue date of the security."
msgstr ""
-#. Yog@
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1882,7 +1693,6 @@ msgctxt ""
msgid "<emph>Settlement</emph> is the date at which the interest accrued up until then is to be calculated."
msgstr ""
-#. u~1b
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1892,7 +1702,6 @@ msgctxt ""
msgid "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)."
msgstr ""
-#. `?X8
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1902,7 +1711,6 @@ msgctxt ""
msgid "<emph>Par</emph> is the par value of the security."
msgstr ""
-#. c8[,
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1912,7 +1720,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. Z2!`
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1922,7 +1729,6 @@ msgctxt ""
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 "A ტოლია ჩართულია თარიღი ტოლია მინიჭება -თვის სიხშირე ტოლია ან და ქულები ტოლია - დღიური ტოლია დღიური?"
-#. gf!~
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1932,7 +1738,6 @@ msgctxt ""
msgid "<item type=\"input\">=ACCRINTM(\"2001-04-01\";\"2001-06-15\";0.1;1000;3)</item> returns 20.54795."
msgstr ""
-#. X}ik
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1941,7 +1746,6 @@ msgctxt ""
msgid "<bookmark_value>RECEIVED function</bookmark_value> <bookmark_value>amount received for fixed-interest securities</bookmark_value>"
msgstr ""
-#. 7*4!
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1951,7 +1755,6 @@ msgctxt ""
msgid "RECEIVED"
msgstr "RECEIVED"
-#. 1b\Q
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1961,7 +1764,6 @@ msgctxt ""
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 ""
-#. e4V{
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1971,7 +1773,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. $q15
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1981,7 +1782,6 @@ msgctxt ""
msgid "RECEIVED(\"Settlement\"; \"Maturity\"; Investment; Discount; Basis)"
msgstr ""
-#. ~A_l
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -1991,7 +1791,6 @@ msgctxt ""
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr ""
-#. GNI-
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2001,7 +1800,6 @@ msgctxt ""
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "ტექსტი თარიღი ჩართულია."
-#. YzM,
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2011,7 +1809,6 @@ msgctxt ""
msgid "<emph>Investment</emph> is the purchase sum."
msgstr ""
-#. 2J_U
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2021,7 +1818,6 @@ msgctxt ""
msgid "<emph>Discount</emph> is the percentage discount on acquisition of the security."
msgstr ""
-#. ;$Yn
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2031,7 +1827,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. 6rFu
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2041,7 +1836,6 @@ msgctxt ""
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 "თარიღი თებერვალი თარიღი მაი ინვესტიცია ყოველდღიურად."
-#. 3Xk6
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2051,7 +1845,6 @@ msgctxt ""
msgid "The amount received on the maturity date is calculated as follows:"
msgstr ""
-#. (E2#
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2061,7 +1854,6 @@ msgctxt ""
msgid "<item type=\"input\">=RECEIVED(\"1999-02-15\";\"1999-05-15\";1000;0.0575;2)</item> returns 1014.420266."
msgstr ""
-#. 5mI*
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2070,7 +1862,6 @@ msgctxt ""
msgid "<bookmark_value>PV function</bookmark_value> <bookmark_value>present values</bookmark_value> <bookmark_value>calculating; present values</bookmark_value>"
msgstr "<bookmark_value>PV ფუნქცია</bookmark_value><bookmark_value>მიმდინარე მნიშვნელობები</bookmark_value><bookmark_value>დაანგარიშება; მიმდინარე მნიშვნელობები</bookmark_value>"
-#. m`g)
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2080,7 +1871,6 @@ msgctxt ""
msgid "PV"
msgstr "PV"
-#. {vFT
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2090,7 +1880,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_BW\">Returns the present value of an investment resulting from a series of regular payments.</ahelp>"
msgstr ""
-#. %6(t
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2100,7 +1889,6 @@ msgctxt ""
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 ""
-#. %]V(
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2110,7 +1898,6 @@ msgctxt ""
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 ""
-#. d;8V
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2120,7 +1907,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. GOZ\
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2130,7 +1916,6 @@ msgctxt ""
msgid "PV(Rate; NPer; Pmt; FV; Type)"
msgstr "PV(სიხშირე; NPER; PMT; FV; ტიპი)"
-#. T`]H
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2140,7 +1925,6 @@ msgctxt ""
msgid "<emph>Rate</emph> defines the interest rate per period."
msgstr ""
-#. -J_A
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2150,7 +1934,6 @@ msgctxt ""
msgid "<emph>NPer</emph> is the total number of periods (payment period)."
msgstr ""
-#. T[z]
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2160,7 +1943,6 @@ msgctxt ""
msgid "<emph>Pmt</emph> is the regular payment made per period."
msgstr ""
-#. F\``
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2170,7 +1952,6 @@ msgctxt ""
msgid "<emph>FV</emph> (optional) defines the future value remaining after the final installment has been made."
msgstr ""
-#. KvVY
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2180,7 +1961,6 @@ msgctxt ""
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 ""
-#. a$95
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2190,7 +1970,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-#. ;+t|
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2200,7 +1979,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. )t#a
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2210,7 +1988,6 @@ msgctxt ""
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 ""
-#. kcoo
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2220,7 +1997,6 @@ msgctxt ""
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 ""
-#. fk1I
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2230,7 +2006,6 @@ msgctxt ""
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 ""
-#. Y1:q
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2239,7 +2014,6 @@ msgctxt ""
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 ""
-#. EX64
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2249,7 +2023,6 @@ msgctxt ""
msgid "SYD"
msgstr "SYD"
-#. 0]jM
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2259,7 +2032,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_DIA\">Returns the arithmetic-declining depreciation rate.</ahelp>"
msgstr ""
-#. N6FW
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2269,7 +2041,6 @@ msgctxt ""
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 ""
-#. b$}d
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2279,7 +2050,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. 2\#;
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2289,7 +2059,6 @@ msgctxt ""
msgid "SYD(Cost; Salvage; Life; Period)"
msgstr "SYD(ღირებულება;გადარჩენა;სიცოცხლე;პერიოდი)"
-#. G#8X
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2299,7 +2068,6 @@ msgctxt ""
msgid "<emph>Cost</emph> is the initial cost of an asset."
msgstr ""
-#. %pSx
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2309,7 +2077,6 @@ msgctxt ""
msgid "<emph>Salvage</emph> is the value of an asset after depreciation."
msgstr ""
-#. D~eo
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2319,7 +2086,6 @@ msgctxt ""
msgid "<emph>Life</emph> is the period fixing the time span over which an asset is depreciated."
msgstr ""
-#. \AJe
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2329,7 +2095,6 @@ msgctxt ""
msgid "<emph>Period</emph> defines the period for which the depreciation is to be calculated."
msgstr "<emph>რიცხვი</emph> არის მნიშვნელობა, რომლისთვისაც F განაწილება გამოითვლება."
-#. A;KY
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2339,7 +2104,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. `i_-
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2349,7 +2113,6 @@ msgctxt ""
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 ""
-#. lZ$N
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2359,7 +2122,6 @@ msgctxt ""
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 ""
-#. =c6%
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2369,7 +2131,6 @@ msgctxt ""
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 ""
-#. rL)0
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2380,7 +2141,6 @@ msgctxt ""
msgid "<emph>A</emph>"
msgstr "<emph>A</emph>"
-#. GXc*
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2391,7 +2151,6 @@ msgctxt ""
msgid "<emph>B</emph>"
msgstr "<emph>B</emph>"
-#. 4$P,
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2402,7 +2161,6 @@ msgctxt ""
msgid "<emph>C</emph>"
msgstr "<emph>C</emph>"
-#. BQgN
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2413,7 +2171,6 @@ msgctxt ""
msgid "<emph>D</emph>"
msgstr "<emph>A</emph>"
-#. @16!
#: 04060103.xhp
#, fuzzy
msgctxt ""
@@ -2424,7 +2181,6 @@ msgctxt ""
msgid "<emph>E</emph>"
msgstr "<emph>A</emph>"
-#. rrCO
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2434,7 +2190,6 @@ msgctxt ""
msgid "1"
msgstr "1"
-#. eB=4
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2444,7 +2199,6 @@ msgctxt ""
msgid "<item type=\"input\">Initial Cost</item>"
msgstr ""
-#. !R-(
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2454,7 +2208,6 @@ msgctxt ""
msgid "<item type=\"input\">Salvage Value</item>"
msgstr ""
-#. bLUQ
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2464,7 +2217,6 @@ msgctxt ""
msgid "<item type=\"input\">Useful Life</item>"
msgstr ""
-#. R@o-
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2474,7 +2226,6 @@ msgctxt ""
msgid "<item type=\"input\">Time Period</item>"
msgstr ""
-#. ZD2_
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2484,7 +2235,6 @@ msgctxt ""
msgid "<item type=\"input\">Deprec. SYD</item>"
msgstr ""
-#. /W^[
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2494,7 +2244,6 @@ msgctxt ""
msgid "2"
msgstr "2"
-#. ,G((
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2504,7 +2253,6 @@ msgctxt ""
msgid "<item type=\"input\">50,000 currency units</item>"
msgstr ""
-#. =;.9
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2514,7 +2262,6 @@ msgctxt ""
msgid "<item type=\"input\">10,000 currency units</item>"
msgstr ""
-#. A0!p
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2524,7 +2271,6 @@ msgctxt ""
msgid "<item type=\"input\">5</item>"
msgstr ""
-#. Cy-A
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2534,7 +2280,6 @@ msgctxt ""
msgid "<item type=\"input\">1</item>"
msgstr ""
-#. P_qN
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2544,7 +2289,6 @@ msgctxt ""
msgid "<item type=\"input\">13,333.33 currency units</item>"
msgstr ""
-#. __,K
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2554,7 +2298,6 @@ msgctxt ""
msgid "3"
msgstr "3"
-#. nX5{
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2564,7 +2307,6 @@ msgctxt ""
msgid "<item type=\"input\">2</item>"
msgstr ""
-#. ^$J?
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2574,7 +2316,6 @@ msgctxt ""
msgid "<item type=\"input\">10,666.67 currency units</item>"
msgstr ""
-#. ,Vis
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2584,7 +2325,6 @@ msgctxt ""
msgid "4"
msgstr "4"
-#. _eUq
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2594,7 +2334,6 @@ msgctxt ""
msgid "<item type=\"input\">3</item>"
msgstr ""
-#. oeV[
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2604,7 +2343,6 @@ msgctxt ""
msgid "<item type=\"input\">8,000.00 currency units</item>"
msgstr ""
-#. O@6/
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2614,7 +2352,6 @@ msgctxt ""
msgid "5"
msgstr "5"
-#. p5)F
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2624,7 +2361,6 @@ msgctxt ""
msgid "<item type=\"input\">4</item>"
msgstr ""
-#. V-fz
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2634,7 +2370,6 @@ msgctxt ""
msgid "<item type=\"input\">5,333.33 currency units</item>"
msgstr ""
-#. g.o(
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2644,7 +2379,6 @@ msgctxt ""
msgid "6"
msgstr "6"
-#. /(mH
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2654,7 +2388,6 @@ msgctxt ""
msgid "<item type=\"input\">5</item>"
msgstr ""
-#. xyG;
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2664,7 +2397,6 @@ msgctxt ""
msgid "<item type=\"input\">2,666.67 currency units</item>"
msgstr ""
-#. `H[1
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2674,7 +2406,6 @@ msgctxt ""
msgid "7"
msgstr "7"
-#. G^_z
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2684,7 +2415,6 @@ msgctxt ""
msgid "<item type=\"input\">6</item>"
msgstr ""
-#. .hLP
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2694,7 +2424,6 @@ msgctxt ""
msgid "<item type=\"input\">0.00 currency units</item>"
msgstr ""
-#. zg$v
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2704,7 +2433,6 @@ msgctxt ""
msgid "8"
msgstr "8"
-#. hQd3
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2714,7 +2442,6 @@ msgctxt ""
msgid "<item type=\"input\">7</item>"
msgstr ""
-#. |led
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2724,7 +2451,6 @@ msgctxt ""
msgid "9"
msgstr "9"
-#. RWJ%
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2734,7 +2460,6 @@ msgctxt ""
msgid "<item type=\"input\">8</item>"
msgstr ""
-#. Lu3H
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2744,7 +2469,6 @@ msgctxt ""
msgid "10"
msgstr "10"
-#. f#E[
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2754,7 +2478,6 @@ msgctxt ""
msgid "<item type=\"input\">9</item>"
msgstr ""
-#. @$)Y
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2764,7 +2487,6 @@ msgctxt ""
msgid "11"
msgstr "11"
-#. @p.{
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2774,7 +2496,6 @@ msgctxt ""
msgid "<item type=\"input\">10</item>"
msgstr ""
-#. jQlr
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2784,7 +2505,6 @@ msgctxt ""
msgid "12"
msgstr "12"
-#. i,0U
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2794,7 +2514,6 @@ msgctxt ""
msgid "13"
msgstr "13"
-#. \H1t
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2804,7 +2523,6 @@ msgctxt ""
msgid "<item type=\"input\">>0</item>"
msgstr ""
-#. _UZm
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2814,7 +2532,6 @@ msgctxt ""
msgid "<item type=\"input\">Total</item>"
msgstr ""
-#. CR-V
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2824,7 +2541,6 @@ msgctxt ""
msgid "<item type=\"input\">40,000.00 currency units</item>"
msgstr ""
-#. Lc?B
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2834,7 +2550,6 @@ msgctxt ""
msgid "The formula in E2 is as follows:"
msgstr "ფორმულა E2 არის როგორც მომდევნო:"
-#. =E:Z
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2844,7 +2559,6 @@ msgctxt ""
msgid "<item type=\"input\">=SYD($A$2;$B$2;$C$2;D2)</item>"
msgstr ""
-#. S:aE
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2854,7 +2568,6 @@ msgctxt ""
msgid "This formula is duplicated in column E down to E11 (select E2, then drag down the lower right corner with the mouse)."
msgstr "ფორმულა ტოლია დუ E ძირს -სკენ არჩება ძირს მარჯვნივ."
-#. \o(F
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2864,7 +2577,6 @@ msgctxt ""
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 "შეიცავს ფორმულა -სკენ - SUMIF დუ არა მდგომარეობა ტოლია დუ ფორმულა დუ ტოლია:"
-#. %UQ7
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2874,7 +2586,6 @@ msgctxt ""
msgid "<item type=\"input\">=SUMIF(E2:E11;A13)</item>"
msgstr ""
-#. 2CcL
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2884,7 +2595,6 @@ msgctxt ""
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 "ახლა -თვის a წელი ან ეთ a - ან a და ჩართულია."
-#. ;oxa
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2893,7 +2603,6 @@ msgctxt ""
msgid "<bookmark_value>DISC function</bookmark_value> <bookmark_value>allowances</bookmark_value> <bookmark_value>discounts</bookmark_value>"
msgstr "<bookmark_value>DISC ფუნქცია</bookmark_value><bookmark_value>ერთხელ დაშვება</bookmark_value><bookmark_value>ჩამოფასება</bookmark_value>"
-#. 5bnr
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2903,7 +2612,6 @@ msgctxt ""
msgid "DISC"
msgstr "DISC"
-#. \*eA
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2913,7 +2621,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_DISC\">Calculates the allowance (discount) of a security as a percentage.</ahelp>"
msgstr ""
-#. .X*5
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2923,7 +2630,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. R*WI
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2933,7 +2639,6 @@ msgctxt ""
msgid "DISC(\"Settlement\"; \"Maturity\"; Price; Redemption; Basis)"
msgstr "DISC(მოსახლე;ხნიერება;ფასი;გამოსასყისი;ფუძე)"
-#. .OW:
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2943,7 +2648,6 @@ msgctxt ""
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr ""
-#. -+Ru
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2953,7 +2657,6 @@ msgctxt ""
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "ტექსტი თარიღი ჩართულია."
-#. R^Wx
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2963,7 +2666,6 @@ msgctxt ""
msgid "<emph>Price</emph> is the price of the security per 100 currency units of par value."
msgstr ""
-#. ]R%U
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2973,7 +2675,6 @@ msgctxt ""
msgid "<emph>Redemption</emph> is the redemption value of the security per 100 currency units of par value."
msgstr ""
-#. l:=\
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2983,7 +2684,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. L;mS
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -2993,7 +2693,6 @@ msgctxt ""
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 ""
-#. I@jX
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3003,7 +2702,6 @@ msgctxt ""
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 ""
-#. QTD6
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3012,7 +2710,6 @@ msgctxt ""
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>DURATION_ADD ფუნქცია</bookmark_value><bookmark_value>Microsoft Excel ფუნქციები</bookmark_value><bookmark_value>ხანგძლივობა;ფიქსირებული ინტერვალები</bookmark_value>"
-#. mmXB
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3022,7 +2719,6 @@ msgctxt ""
msgid "DURATION_ADD"
msgstr "ADDDURATION_ADD"
-#. IIAg
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3032,7 +2728,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_DURATION\">Calculates the duration of a fixed interest security in years.</ahelp>"
msgstr ""
-#. ~,TK
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3042,7 +2737,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. l/NM
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3052,7 +2746,6 @@ msgctxt ""
msgid "DURATION_ADD(\"Settlement\"; \"Maturity\"; Coupon; Yield; Frequency; Basis)"
msgstr ""
-#. jXBs
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3062,7 +2755,6 @@ msgctxt ""
msgid "<emph>Settlement</emph> is the date of purchase of the security."
msgstr ""
-#. +CPb
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3072,7 +2764,6 @@ msgctxt ""
msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
msgstr "ტექსტი თარიღი ჩართულია."
-#. @0U6
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3082,7 +2773,6 @@ msgctxt ""
msgid "<emph>Coupon</emph> is the annual coupon interest rate (nominal rate of interest)"
msgstr ""
-#. 9(f@
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3092,7 +2782,6 @@ msgctxt ""
msgid "<emph>Yield</emph> is the annual yield of the security."
msgstr ""
-#. n!}5
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3102,7 +2791,6 @@ msgctxt ""
msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
msgstr ""
-#. oo5*
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3112,7 +2800,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. \]aV
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3122,7 +2809,6 @@ msgctxt ""
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 ""
-#. cZUK
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3132,7 +2818,6 @@ msgctxt ""
msgid "<item type=\"input\">=DURATION_ADD(\"2001-01-01\";\"2006-01-01\";0.08;0.09;2;3)</item>"
msgstr ""
-#. fh~n
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3141,7 +2826,6 @@ msgctxt ""
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 ""
-#. -@V2
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3151,7 +2835,6 @@ msgctxt ""
msgid "EFFECTIVE"
msgstr "EFFECTIVE"
-#. ddI;
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3161,7 +2844,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_EFFEKTIV\">Returns the net annual interest rate for a nominal interest rate.</ahelp>"
msgstr ""
-#. 0Bxj
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3171,7 +2853,6 @@ msgctxt ""
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 "-სკენ - ეთ დასასრული - a ეფექტური რიცხვი - სხვა ტოლია ხშირად დუ -თვის მაგალითი ან დასასრული -."
-#. PUf%
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3181,7 +2862,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. uj$c
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3191,7 +2871,6 @@ msgctxt ""
msgid "EFFECTIVE(Nom; P)"
msgstr "EFFECTIVE(NOM;P)"
-#. sI18
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3201,7 +2880,6 @@ msgctxt ""
msgid "<emph>Nom</emph> is the nominal interest."
msgstr ""
-#. iKAO
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3211,7 +2889,6 @@ msgctxt ""
msgid "<emph>P</emph> is the number of interest payment periods per year."
msgstr ""
-#. 0epW
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3221,7 +2898,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. ;f86
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3231,7 +2907,6 @@ msgctxt ""
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 ""
-#. [CGO
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3241,7 +2916,6 @@ msgctxt ""
msgid "<item type=\"input\">=EFFECTIVE(9.75%;4)</item> = 10.11% The annual effective rate is therefore 10.11%."
msgstr ""
-#. :XdW
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3250,7 +2924,6 @@ msgctxt ""
msgid "<bookmark_value>effective interest rates</bookmark_value> <bookmark_value>EFFECT_ADD function</bookmark_value>"
msgstr ""
-#. )\E?
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3260,7 +2933,6 @@ msgctxt ""
msgid "EFFECT_ADD"
msgstr "EFFECT_ADD"
-#. i9Mi
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3270,7 +2942,6 @@ msgctxt ""
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 ""
-#. US8W
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3280,7 +2951,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. JV%e
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3290,7 +2960,6 @@ msgctxt ""
msgid "EFFECT_ADD(NominalRate; NPerY)"
msgstr "EFFECT_ADD(ნომინალური სიხშირე;Npery)"
-#. S}1]
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3300,7 +2969,6 @@ msgctxt ""
msgid "<emph>NominalRate</emph> is the annual nominal rate of interest."
msgstr ""
-#. 7(fZ
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3310,7 +2978,6 @@ msgctxt ""
msgid "<emph>NPerY </emph>is the number of interest payments per year."
msgstr ""
-#. {[Ri
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3320,7 +2987,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. 4pIi
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3330,7 +2996,6 @@ msgctxt ""
msgid "What is the effective annual rate of interest for a 5.25% nominal rate and quarterly payment."
msgstr ""
-#. o\6Y
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3340,7 +3005,6 @@ msgctxt ""
msgid "<item type=\"input\">=EFFECT_ADD(0.0525;4)</item> returns 0.053543 or 5.3543%."
msgstr ""
-#. e9@.
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3349,7 +3013,6 @@ msgctxt ""
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 ""
-#. YWE(
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3359,7 +3022,6 @@ msgctxt ""
msgid "DDB"
msgstr "DDB"
-#. %!`t
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3369,7 +3031,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_GDA\">Returns the depreciation of an asset for a specified period using the arithmetic-declining method.</ahelp>"
msgstr ""
-#. xyW/
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3379,7 +3040,6 @@ msgctxt ""
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 ""
-#. (v63
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3389,7 +3049,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. ^oSK
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3399,7 +3058,6 @@ msgctxt ""
msgid "DDB(Cost; Salvage; Life; Period; Factor)"
msgstr ""
-#. =6WI
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3409,7 +3067,6 @@ msgctxt ""
msgid "<emph>Cost</emph> fixes the initial cost of an asset."
msgstr ""
-#. +FAM
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3419,7 +3076,6 @@ msgctxt ""
msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
msgstr ""
-#. ^![5
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3429,7 +3085,6 @@ msgctxt ""
msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
msgstr ""
-#. Cg7W
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3439,7 +3094,6 @@ msgctxt ""
msgid "<emph>Period</emph> states the period for which the value is to be calculated."
msgstr "<emph>რიცხვი</emph> არის მნიშვნელობა, რომლისთვისაც F განაწილება გამოითვლება."
-#. /xo3
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3449,7 +3103,6 @@ msgctxt ""
msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
msgstr ""
-#. M{Le
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3459,7 +3112,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. Y?Sd
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3469,7 +3121,6 @@ msgctxt ""
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 ""
-#. soHN
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3479,7 +3130,6 @@ msgctxt ""
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 ""
-#. O*T\
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3488,7 +3138,6 @@ msgctxt ""
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 ""
-#. %Ikt
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3498,7 +3147,6 @@ msgctxt ""
msgid "DB"
msgstr "DB"
-#. t_N@
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3508,7 +3156,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_GDA2\">Returns the depreciation of an asset for a specified period using the double-declining balance method.</ahelp>"
msgstr ""
-#. MWFb
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3518,7 +3165,6 @@ msgctxt ""
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 ""
-#. r4H9
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3528,7 +3174,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. ~}oe
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3538,7 +3183,6 @@ msgctxt ""
msgid "DB(Cost; Salvage; Life; Period; Month)"
msgstr ""
-#. 5$n?
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3548,7 +3192,6 @@ msgctxt ""
msgid "<emph>Cost</emph> is the initial cost of an asset."
msgstr ""
-#. ,;Hm
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3558,7 +3201,6 @@ msgctxt ""
msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
msgstr ""
-#. 6-?+
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3568,7 +3210,6 @@ msgctxt ""
msgid "<emph>Life</emph> defines the period over which an asset is depreciated."
msgstr ""
-#. 3X(U
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3578,7 +3219,6 @@ msgctxt ""
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 ""
-#. RRGl
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3588,7 +3228,6 @@ msgctxt ""
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 ""
-#. fksJ
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3598,7 +3237,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. Q1ta
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3608,7 +3246,6 @@ msgctxt ""
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 ""
-#. \^n8
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3618,7 +3255,6 @@ msgctxt ""
msgid "<item type=\"input\">=DB(25000;1000;36;1;6)</item> = 1,075.00 currency units"
msgstr ""
-#. ZzOv
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3628,7 +3264,6 @@ msgctxt ""
msgid "The fixed-declining depreciation of the computer system is 1,075.00 currency units."
msgstr ""
-#. _Tmw
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3637,7 +3272,6 @@ msgctxt ""
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 ""
-#. moxf
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3647,7 +3281,6 @@ msgctxt ""
msgid "IRR"
msgstr "IRR"
-#. ~8]~
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3657,7 +3290,6 @@ msgctxt ""
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 ""
-#. u^rP
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3667,7 +3299,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. u,f-
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3677,7 +3308,6 @@ msgctxt ""
msgid "IRR(Values; Guess)"
msgstr "IRR(მნიშვნელობები;მიხვედრები)"
-#. bupc
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3687,7 +3317,6 @@ msgctxt ""
msgid "<emph>Values</emph> represents an array containing the values."
msgstr "<emph>მნიშვნელობები</emph> ასახავს მნიშვნელობების შემცველ მასივს."
-#. GM,/
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3697,7 +3326,6 @@ msgctxt ""
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 ""
-#. i]q`
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3707,7 +3335,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. p0Vv
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3717,7 +3344,6 @@ msgctxt ""
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 ""
-#. {g)4
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3726,7 +3352,6 @@ msgctxt ""
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 ""
-#. G9nS
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3736,7 +3361,6 @@ msgctxt ""
msgid "ISPMT"
msgstr "ISPMT"
-#. k;r?
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3746,7 +3370,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_ISPMT\">Calculates the level of interest for unchanged amortization installments.</ahelp>"
msgstr ""
-#. SqG`
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3756,7 +3379,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. lLr5
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3766,7 +3388,6 @@ msgctxt ""
msgid "ISPMT(Rate; Period; TotalPeriods; Invest)"
msgstr ""
-#. ]G#Z
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3776,7 +3397,6 @@ msgctxt ""
msgid "<emph>Rate</emph> sets the periodic interest rate."
msgstr ""
-#. 741_
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3786,7 +3406,6 @@ msgctxt ""
msgid "<emph>Period</emph> is the number of installments for calculation of interest."
msgstr ""
-#. ^(fn
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3796,7 +3415,6 @@ msgctxt ""
msgid "<emph>TotalPeriods</emph> is the total number of installment periods."
msgstr ""
-#. pg-I
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3806,7 +3424,6 @@ msgctxt ""
msgid "<emph>Invest</emph> is the amount of the investment."
msgstr ""
-#. dFrU
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3816,7 +3433,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. O+s=
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3826,7 +3442,6 @@ msgctxt ""
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 ""
-#. {=KQ
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3836,7 +3451,6 @@ msgctxt ""
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 ""
-#. diGS
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3846,7 +3460,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060119.xhp\" name=\"Forward to Financial Functions Part Two\">Financial Functions Part Two</link>"
msgstr "<link href=\"text/scalc/01/04060119.xhp\" name=\"Forward to Financial Functions Part Two\">ფინანსური ფუნქციები ნაწილი ორი</link>"
-#. Roe2
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
@@ -3856,7 +3469,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Financial Functions Part Three</link>"
msgstr "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">ფინანსური ფუნქციები ნაწილი სამი</link>"
-#. Z:J+
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3865,7 +3477,6 @@ msgctxt ""
msgid "Add-in Functions, List of Analysis Functions Part Two"
msgstr "დამატებითი ფუნქციები, ანალიზის ფუნქციების სია ნაწილი ორი"
-#. iW/n
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3874,7 +3485,6 @@ msgctxt ""
msgid "<bookmark_value>imaginary numbers in analysis functions</bookmark_value> <bookmark_value>complex numbers in analysis functions</bookmark_value>"
msgstr "<bookmark_value>ანალიზის ფუნქციებში წარმოსახვითი რიცხვები</bookmark_value><bookmark_value>ანალიზის ფუნქციებში კომპლექსური რიცხვები</bookmark_value>"
-#. dP]@
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3884,7 +3494,6 @@ msgctxt ""
msgid "Add-in Functions, List of Analysis Functions Part Two"
msgstr "დამატებითი ფუნქციები, ანალიზის ფუნქციების სია ნაწილი ორი"
-#. K9pt
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3894,7 +3503,6 @@ msgctxt ""
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\">კატეგორია სტატისტიკა</link>"
-#. |EZT
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3904,7 +3512,6 @@ msgctxt ""
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\">ანალიზის ფუნქციები პირველი ნაწილი</link>"
-#. Jdb}
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3914,7 +3521,6 @@ msgctxt ""
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\">უკან მიმოხილვაზე</link>"
-#. YW3S
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3923,7 +3529,6 @@ msgctxt ""
msgid "<bookmark_value>IMABS function</bookmark_value>"
msgstr "<bookmark_value>IMAGINARY ფუნქცია</bookmark_value>"
-#. yr4F
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3933,7 +3538,6 @@ msgctxt ""
msgid "IMABS"
msgstr "IMABS"
-#. c}7B
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3943,7 +3547,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_IMABS\">The result is the absolute value of a complex number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMABS\">შედეგი არის კომპლექსური რიცხვის აბსოლუტური მნიშვნელობა.</ahelp>"
-#. ZJnF
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3953,7 +3556,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. tF(H
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3963,7 +3565,6 @@ msgctxt ""
msgid "IMABS(\"ComplexNumber\")"
msgstr "IMABS(კომპლექსური რიცხვი)"
-#. Pbj$
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3973,7 +3574,6 @@ msgctxt ""
msgid "<variable id=\"complex\"><emph>ComplexNumber</emph> is a complex number that is entered in the form \"x+yi\" or \"x+yj\".</variable>"
msgstr ""
-#. 47dA
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3983,7 +3583,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. xDjT
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -3993,7 +3592,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMABS(\"5+12j\")</item> returns 13."
msgstr ""
-#. .v\a
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4002,7 +3600,6 @@ msgctxt ""
msgid "<bookmark_value>IMAGINARY function</bookmark_value>"
msgstr "<bookmark_value>IMAGINARY ფუნქცია</bookmark_value>"
-#. _{du
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4012,7 +3609,6 @@ msgctxt ""
msgid "IMAGINARY"
msgstr "IMAGINARY"
-#. f|kj
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4022,7 +3618,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\">The result is the imaginary coefficient of a complex number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\">შედეგი არის კომპლექსური რიცხვის წარმოსახვითი კოეფიციენტი.</ahelp>"
-#. .K@E
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4032,7 +3627,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. ``OR
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4042,7 +3636,6 @@ msgctxt ""
msgid "IMAGINARY(\"ComplexNumber\")"
msgstr "IMAGINARY(კომპლექსური რიცხვი)"
-#. p+0l
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4052,7 +3645,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. 4pmW
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4062,7 +3654,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMAGINARY(\"4+3j\")</item> returns 3."
msgstr ""
-#. .Xk|
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4071,7 +3662,6 @@ msgctxt ""
msgid "<bookmark_value>IMPOWER function</bookmark_value>"
msgstr "<bookmark_value>IMPOWER ფუნქცია</bookmark_value>"
-#. N;+R
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4081,7 +3671,6 @@ msgctxt ""
msgid "IMPOWER"
msgstr "IMPOWER"
-#. ^,Ii
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4091,7 +3680,6 @@ msgctxt ""
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\">შედეგი არის კომპლექსური რიცხვის მთელი ხარისხი.</ahelp>"
-#. ru1v
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4101,7 +3689,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. X0:n
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4111,7 +3698,6 @@ msgctxt ""
msgid "IMPOWER(\"ComplexNumber\"; Number)"
msgstr "IMPOWER(კომპლექსური რიცხვი;რიცხვი)"
-#. l[jL
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4121,7 +3707,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the exponent."
msgstr "<emph>რიცხვი</emph> გამოსაცდელი მნიშვნელობა."
-#. [jZm
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4131,7 +3716,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. 8sJW
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4141,7 +3725,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMPOWER(\"2+3i\";2)</item> returns -5+12i."
msgstr ""
-#. =$,4
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4150,7 +3733,6 @@ msgctxt ""
msgid "<bookmark_value>IMARGUMENT function</bookmark_value>"
msgstr "<bookmark_value>IMARGUMENT ფუნქცია</bookmark_value>"
-#. P@dE
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4160,7 +3742,6 @@ msgctxt ""
msgid "IMARGUMENT"
msgstr "IMARGUMENT"
-#. fBXH
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4170,7 +3751,6 @@ msgctxt ""
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\">შედეგი არის კომპლექსური რიცხვის არგუმენტი (phi კუთხე).</ahelp>"
-#. [:aj
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4180,7 +3760,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. XkL:
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4190,7 +3769,6 @@ msgctxt ""
msgid "IMARGUMENT(\"ComplexNumber\")"
msgstr "IMARGUMENT(კომპლექსური რიცხვი)"
-#. +%4]
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4200,7 +3778,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. /Uh0
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4210,7 +3787,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMARGUMENT(\"3+4j\")</item> returns 0.927295."
msgstr ""
-#. ?%5,
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4219,7 +3795,6 @@ msgctxt ""
msgid "<bookmark_value>IMCOS function</bookmark_value>"
msgstr "<bookmark_value>IMCOS ფუნქცია</bookmark_value>"
-#. aN^x
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4229,7 +3804,6 @@ msgctxt ""
msgid "IMCOS"
msgstr "IMCOS"
-#. ak:N
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4239,7 +3813,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_IMCOS\">The result is the cosine of a complex number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMCOS\">შედეგი არის კომპლექსური რიცხვის კოსინუსი.</ahelp>"
-#. |\J~
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4249,7 +3822,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. ;YK6
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4259,7 +3831,6 @@ msgctxt ""
msgid "IMCOS(\"ComplexNumber\")"
msgstr "IMCOS(კომპლექსური რიცხვი)"
-#. vE8E
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4269,7 +3840,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. ST,k
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4279,7 +3849,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMCOS(\"3+4j\") </item>returns -27.03-3.85i (rounded)."
msgstr ""
-#. ?SN`
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4288,7 +3857,6 @@ msgctxt ""
msgid "<bookmark_value>IMDIV function</bookmark_value>"
msgstr "<bookmark_value>IMDIV ფუნქცია</bookmark_value>"
-#. ^uW6
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4298,7 +3866,6 @@ msgctxt ""
msgid "IMDIV"
msgstr "IMDIV"
-#. ok;C
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4308,7 +3875,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_IMDIV\">The result is the division of two complex numbers.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMDIV\">შედეგი არის ორი კომპლექსური რიცხვის განაყიფი.</ahelp>"
-#. Ir6=
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4318,7 +3884,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. d.mw
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4328,7 +3893,6 @@ msgctxt ""
msgid "IMDIV(\"Numerator\"; \"Denominator\")"
msgstr "IMDIV(ნუმერატორი;დენომინატორი)"
-#. eVGm
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4338,7 +3902,6 @@ msgctxt ""
msgid "<emph>Numerator</emph>, <emph>Denominator</emph> are complex numbers that are entered in the form \"x+yi\" or \"x+yj\"."
msgstr ""
-#. KdFy
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4348,7 +3911,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. =X,{
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4358,7 +3920,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMDIV(\"-238+240i\";\"10+24i\")</item> returns 5+12i."
msgstr ""
-#. .N=v
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4367,7 +3928,6 @@ msgctxt ""
msgid "<bookmark_value>IMEXP function</bookmark_value>"
msgstr "<bookmark_value>IMEXP ფუნქცია</bookmark_value>"
-#. C,e]
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4377,7 +3937,6 @@ msgctxt ""
msgid "IMEXP"
msgstr "IMEXP"
-#. Ns_|
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4387,7 +3946,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_IMEXP\">The result is the power of e and the complex number.</ahelp> The constant e has a value of approximately 2.71828182845904."
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMEXP\">შედეგი არის კომპლექსური რიცხვის e ხარისხი.</ahelp> e კონსტანდა დაახლოებით უდრის 2.71828182845904."
-#. =la?
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4397,7 +3955,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. aA,g
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4407,7 +3964,6 @@ msgctxt ""
msgid "IMEXP(\"ComplexNumber\")"
msgstr "IMEXP(კომპლექსური რიცხვი)"
-#. JA;u
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4417,7 +3973,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. krfb
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4427,7 +3982,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMEXP(\"1+j\") </item>returns 1.47+2.29j (rounded)."
msgstr ""
-#. R9Y4
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4436,7 +3990,6 @@ msgctxt ""
msgid "<bookmark_value>IMCONJUGATE function</bookmark_value>"
msgstr "<bookmark_value>IMCONJUGATE ფუნქცია</bookmark_value>"
-#. (d^s
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4446,7 +3999,6 @@ msgctxt ""
msgid "IMCONJUGATE"
msgstr "IMCONJUGATE"
-#. 5UYj
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4456,7 +4008,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_IMCONJUGATE\">The result is the conjugated complex complement to a complex number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMCONJUGATE\">შედეგი არის კომპლექსური დანამატის და კომპლექსური რიცხვის შეერთება.</ahelp>"
-#. lab)
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4466,7 +4017,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. 22-V
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4476,7 +4026,6 @@ msgctxt ""
msgid "IMCONJUGATE(\"ComplexNumber\")"
msgstr "IMCONJUGATE(კომპლექსური რიცხვი)"
-#. ;m14
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4486,7 +4035,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. ~P#o
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4496,7 +4044,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMCONJUGATE(\"1+j\")</item> returns 1-j."
msgstr ""
-#. %|E^
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4505,7 +4052,6 @@ msgctxt ""
msgid "<bookmark_value>IMLN function</bookmark_value>"
msgstr "<bookmark_value>IMLN ფუნქცია</bookmark_value>"
-#. hIk0
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4515,7 +4061,6 @@ msgctxt ""
msgid "IMLN"
msgstr "IMLN"
-#. 8@Us
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4525,7 +4070,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_IMLN\">The result is the natural logarithm (to the base e) of a complex number.</ahelp> The constant e has a value of approximately 2.71828182845904."
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLN\">შედეგი არის კომპლექსური რიცხვის ნატურალური ლოგარითმი (ფუძით e).</ahelp> e კონსტანდა დაახლოებით უდრის 2.71828182845904."
-#. 9G0y
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4535,7 +4079,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. zTJy
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4545,7 +4088,6 @@ msgctxt ""
msgid "IMLN(\"ComplexNumber\")"
msgstr "IMLN(კომპლექსური რიცხვი)"
-#. ,j8k
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4555,7 +4097,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. Ydkk
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4565,7 +4106,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMLN(\"1+j\")</item> returns 0.35+0.79j (rounded)."
msgstr ""
-#. =2|m
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4574,7 +4114,6 @@ msgctxt ""
msgid "<bookmark_value>IMLOG10 function</bookmark_value>"
msgstr "<bookmark_value>IMLOG10 ფუნქცია</bookmark_value>"
-#. Ga:t
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4584,7 +4123,6 @@ msgctxt ""
msgid "IMLOG10"
msgstr "IMLOG10"
-#. +^su
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4594,7 +4132,6 @@ msgctxt ""
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\">შედეგი არის კომპლექსური რიცხვის ჩოულებრივი ლოგარითმი (ფუძით 10).</ahelp>"
-#. .S-8
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4604,7 +4141,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. #0nW
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4614,7 +4150,6 @@ msgctxt ""
msgid "IMLOG10(\"ComplexNumber\")"
msgstr "IMLOG10(კომპლექსური რიცხვი)"
-#. GK(\
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4624,7 +4159,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. x!}l
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4634,7 +4168,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMLOG10(\"1+j\")</item> returns 0.15+0.34j (rounded)."
msgstr ""
-#. @,de
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4643,7 +4176,6 @@ msgctxt ""
msgid "<bookmark_value>IMLOG2 function</bookmark_value>"
msgstr "<bookmark_value>IMLOG2 ფუნქცია</bookmark_value>"
-#. d_#4
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4653,7 +4185,6 @@ msgctxt ""
msgid "IMLOG2"
msgstr "IMLOG2"
-#. GLT_
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4663,7 +4194,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_IMLOG2\">The result is the binary logarithm of a complex number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLOG2\">შედეგი არის კომპლექსური რიცხვის ორობითი ლოგარითმი.</ahelp>"
-#. pSL[
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4673,7 +4203,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. B(ex
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4683,7 +4212,6 @@ msgctxt ""
msgid "IMLOG2(\"ComplexNumber\")"
msgstr "IMLOG2(კომპლექსური რიცხვი)"
-#. vF(~
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4693,7 +4221,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. +?4D
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4703,7 +4230,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMLOG2(\"1+j\")</item> returns 0.50+1.13j (rounded)."
msgstr ""
-#. b2W[
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4712,7 +4238,6 @@ msgctxt ""
msgid "<bookmark_value>IMPRODUCT function</bookmark_value>"
msgstr "<bookmark_value>IMPRODUCT ფუნქცია</bookmark_value>"
-#. ZQeP
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4722,7 +4247,6 @@ msgctxt ""
msgid "IMPRODUCT"
msgstr "IMPRODUCT"
-#. r,w!
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4732,7 +4256,6 @@ msgctxt ""
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\">შედეგი არის 29-მდე კომპლექსური რიცხვის ნამრავლი.</ahelp>"
-#. DTu}
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4742,7 +4265,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. `0XR
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4752,7 +4274,6 @@ msgctxt ""
msgid "IMPRODUCT(\"ComplexNumber\"; \"ComplexNumber1\"; ...)"
msgstr "IMPRODUCT(კომპლექსური რიცხვი;კომპლექსური რიცხვი 1;...)"
-#. {#{|
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4762,7 +4283,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. Q.:B
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4772,7 +4292,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMPRODUCT(\"3+4j\";\"5-3j\")</item> returns 27+11j."
msgstr ""
-#. i;Rd
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4781,7 +4300,6 @@ msgctxt ""
msgid "<bookmark_value>IMREAL function</bookmark_value>"
msgstr "<bookmark_value>IMREAL ფუნქცია</bookmark_value>"
-#. c;-c
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4791,7 +4309,6 @@ msgctxt ""
msgid "IMREAL"
msgstr "IMREAL"
-#. 5$EU
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4801,7 +4318,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_IMREAL\">The result is the real coefficient of a complex number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMREAL\">შედეგი არის კომპლექსური რიცხვის ნამდვილი კოეფიციენტი.</ahelp>"
-#. [LO^
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4811,7 +4327,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. ?*r`
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4821,7 +4336,6 @@ msgctxt ""
msgid "IMREAL(\"ComplexNumber\")"
msgstr "IMREAL(კომპლექსური რიცხვი)"
-#. }I_#
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4831,7 +4345,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. xg8A
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4841,7 +4354,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMREAL(\"1+3j\")</item> returns 1."
msgstr ""
-#. NqFi
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4850,7 +4362,6 @@ msgctxt ""
msgid "<bookmark_value>IMSIN function</bookmark_value>"
msgstr "<bookmark_value>IMSIN ფუნქცია</bookmark_value>"
-#. !gJ;
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4860,7 +4371,6 @@ msgctxt ""
msgid "IMSIN"
msgstr "IMSIN"
-#. rZqN
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4870,7 +4380,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_IMSIN\">The result is the sine of a complex number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSIN\">შედეგი არის კომპლექსური რიცხვის სინუსი.</ahelp>"
-#. }pI^
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4880,7 +4389,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. .)dY
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4890,7 +4398,6 @@ msgctxt ""
msgid "IMSIN(\"ComplexNumber\")"
msgstr "IMSIN(კომპლექსური რიცხვი)"
-#. !Rac
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4900,7 +4407,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. *v[p
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4910,7 +4416,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMSIN(\"3+4j\")</item> returns 3.85+27.02j (rounded)."
msgstr ""
-#. R4q#
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4919,7 +4424,6 @@ msgctxt ""
msgid "<bookmark_value>IMSUB function</bookmark_value>"
msgstr "<bookmark_value>IMSUB ფუნქცია</bookmark_value>"
-#. X07e
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4929,7 +4433,6 @@ msgctxt ""
msgid "IMSUB"
msgstr "IMSUB"
-#. `hfp
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4939,7 +4442,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_IMSUB\">The result is the subtraction of two complex numbers.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSUB\">შედეგი არის ორი კომპლექსური რიცხვის გამოკლება.</ahelp>"
-#. N0*)
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4949,7 +4451,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. `\am
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4959,7 +4460,6 @@ msgctxt ""
msgid "IMSUB(\"ComplexNumber1\"; \"ComplexNumber2\")"
msgstr "IMPRODUCT(კომპლექსური რიცხვი;კომპლექსური რიცხვი 1;...)"
-#. zyu1
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4969,7 +4469,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. ,t[[
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4979,7 +4478,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMSUB(\"13+4j\";\"5+3j\")</item> returns 8+j."
msgstr ""
-#. ^I`7
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4988,7 +4486,6 @@ msgctxt ""
msgid "<bookmark_value>IMSUM function</bookmark_value>"
msgstr "<bookmark_value>IMSUM ფუნქცია</bookmark_value>"
-#. T9j+
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -4998,7 +4495,6 @@ msgctxt ""
msgid "IMSUM"
msgstr "IMSUM"
-#. HQhC
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5008,7 +4504,6 @@ msgctxt ""
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\">შედეგი არის 29-მდე კომპლექსური რიცხვის ჯამი.</ahelp>"
-#. ?9KF
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5018,7 +4513,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. ?mWo
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5028,7 +4522,6 @@ msgctxt ""
msgid "IMSUM(\"ComplexNumber1\"; \"ComplexNumber2\"; ...)"
msgstr "IMPRODUCT(კომპლექსური რიცხვი;კომპლექსური რიცხვი 1;...)"
-#. 4Kh7
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5038,7 +4531,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. 2!.}
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5048,7 +4540,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMSUM(\"13+4j\";\"5+3j\")</item> returns 18+7j."
msgstr ""
-#. R_!G
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5057,7 +4548,6 @@ msgctxt ""
msgid "<bookmark_value>IMSQRT function</bookmark_value>"
msgstr "<bookmark_value>IMSQRT ფუნქცია</bookmark_value>"
-#. ngD_
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5067,7 +4557,6 @@ msgctxt ""
msgid "IMSQRT"
msgstr "IMSQRT"
-#. c=_#
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5077,7 +4566,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_IMSQRT\">The result is the square root of a complex number.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSQRT\">შედეგი არის კომპლექსური რიცხვის კვადრატული ფესვი.</ahelp>"
-#. (fze
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5087,7 +4575,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. 8mXE
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5097,7 +4584,6 @@ msgctxt ""
msgid "IMSQRT(\"ComplexNumber\")"
msgstr "IMSQRT(კომპლექსური რიცხვი)"
-#. kmH4
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5107,7 +4593,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. 3/W#
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5117,7 +4602,6 @@ msgctxt ""
msgid "<item type=\"input\">=IMSQRT(\"3+4i\")</item> returns 2+1i."
msgstr ""
-#. .[-x
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5126,7 +4610,6 @@ msgctxt ""
msgid "<bookmark_value>COMPLEX function</bookmark_value>"
msgstr "<bookmark_value>COMPLEX ფუნქცია</bookmark_value>"
-#. u*FR
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5136,7 +4619,6 @@ msgctxt ""
msgid "COMPLEX"
msgstr "COMPLEX"
-#. !I7]
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5146,7 +4628,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_COMPLEX\">The result is a complex number which is returned from a real coefficient and an imaginary coefficient.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_COMPLEX\">შედეგი არის კომპლექსური რიცხვი, რომელსაც აბრუნებს ნამდვილი და წარმოსახვითი კოეფიციენტი.</ahelp>"
-#. d+C2
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5156,7 +4637,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. ?n\o
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5166,7 +4646,6 @@ msgctxt ""
msgid "COMPLEX(RealNum; INum; Suffix)"
msgstr "COMPLEX(ნამდვილი რიცხვი;I რიცხვი;სუფიქსი)"
-#. g0N%
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5176,7 +4655,6 @@ msgctxt ""
msgid "<emph>RealNum</emph> is the real coefficient of the complex number."
msgstr ""
-#. DB^W
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5186,7 +4664,6 @@ msgctxt ""
msgid "<emph>INum</emph> is the imaginary coefficient of the complex number."
msgstr ""
-#. nXY5
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5196,7 +4673,6 @@ msgctxt ""
msgid "<emph>Suffix</emph> is a list of options, \"i\" or \"j\"."
msgstr ""
-#. IF5N
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5206,7 +4682,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. VAJv
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5216,7 +4691,6 @@ msgctxt ""
msgid "<item type=\"input\">=COMPLEX(3;4;\"j\")</item> returns 3+4j."
msgstr ""
-#. !Qa8
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5225,7 +4699,6 @@ msgctxt ""
msgid "<bookmark_value>OCT2BIN function</bookmark_value> <bookmark_value>converting;octal numbers, into binary numbers</bookmark_value>"
msgstr "<bookmark_value>OCT2BIN ფუნქცია</bookmark_value><bookmark_value>გარდაქმნა;რვაობითი რიცხვები; ორობით რიცხვებად</bookmark_value>"
-#. 5Co{
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5235,7 +4708,6 @@ msgctxt ""
msgid "OCT2BIN"
msgstr "OCT2BIN"
-#. /koO
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5245,7 +4717,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2BIN\">The result is the binary number for the octal number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2BIN\">შედეგი არის შეყვანილი რვაობითი რიცხვის ორობითი რიცხვი.</ahelp>"
-#. #PEK
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5255,7 +4726,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. W6Ik
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5265,7 +4735,6 @@ msgctxt ""
msgid "OCT2BIN(Number; Places)"
msgstr "OCT2BIN(რიცხვი;ადგილები)"
-#. s#LX
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5275,7 +4744,6 @@ msgctxt ""
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 "რიცხვი: რვაობითი რიცხვი. რიცხვს შეიძლება მაქიმუმ 10 ადგილი (ბიტი) ჰქონდეს. ყველაზე მნისვნელოვანია ნიშნის ბიტი. უარყოფითი რიცხვები შეყვანილია როგორც ორის დამატება."
-#. -!YD
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5285,7 +4753,6 @@ msgctxt ""
msgid "<emph>Places</emph> is the number of places to be output."
msgstr "ადგილები: გამოსატანი ადგილების ნომრები."
-#. rH{w
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5295,7 +4762,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. Ta.K
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5305,7 +4771,6 @@ msgctxt ""
msgid "<item type=\"input\">=OCT2BIN(3;3)</item> returns 011."
msgstr ""
-#. J|^^
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5314,7 +4779,6 @@ msgctxt ""
msgid "<bookmark_value>OCT2DEC function</bookmark_value> <bookmark_value>converting;octal numbers, into decimal numbers</bookmark_value>"
msgstr "<bookmark_value>OCT2DEC ფუნქცია</bookmark_value><bookmark_value>გარდაქმნა;რვაობითი რიცხვები; ათობით რიცხვებად</bookmark_value>"
-#. ;p+9
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5324,7 +4788,6 @@ msgctxt ""
msgid "OCT2DEC"
msgstr "OCT2DEC"
-#. Q9,F
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5334,7 +4797,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2DEZ\">The result is the decimal number for the octal number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2DEZ\">შედეგი არის შეყვანილი რვაობითი რიცხვის ათობითი რიცხვი.</ahelp>"
-#. `vLO
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5344,7 +4806,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. paw.
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5354,7 +4815,6 @@ msgctxt ""
msgid "OCT2DEC(Number)"
msgstr "OCT2DEC(რიცხვი)"
-#. 3y[a
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5364,7 +4824,6 @@ msgctxt ""
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 "რიცხვი: რვაობითი რიცხვი. რიცხვს შეიძლება მაქიმუმ 10 ადგილი (ბიტი) ჰქონდეს. ყველაზე მნისვნელოვანია ნიშნის ბიტი. უარყოფითი რიცხვები შეყვანილია როგორც ორის დამატება."
-#. uR3[
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5374,7 +4833,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. aT6~
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5384,7 +4842,6 @@ msgctxt ""
msgid "<item type=\"input\">=OCT2DEC(144)</item> returns 100."
msgstr ""
-#. v02G
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5393,7 +4850,6 @@ msgctxt ""
msgid "<bookmark_value>OCT2HEX function</bookmark_value> <bookmark_value>converting;octal numbers, into hexadecimal numbers</bookmark_value>"
msgstr "<bookmark_value>OCT2HEX ფუნქცია</bookmark_value><bookmark_value>გარდაქმნა;რვაობითი რიცხვები; თექვსმეტობით რიცხვებად</bookmark_value>"
-#. WHV+
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5403,7 +4859,6 @@ msgctxt ""
msgid "OCT2HEX"
msgstr "OCT2HEX"
-#. ^Vsb
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5413,7 +4868,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2HEX\"> The result is the hexadecimal number for the octal number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2HEX\"> შედეგი არის შეყვანილი რვაობითი რიცხვის თექვსმეტობითი რიცხვი.</ahelp>"
-#. _q=f
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5423,7 +4877,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. W!k\
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5433,7 +4886,6 @@ msgctxt ""
msgid "OCT2HEX(Number; Places)"
msgstr "OCT2HEX(რიცხვი;ადგილები)"
-#. D=iE
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5443,7 +4895,6 @@ msgctxt ""
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 "რიცხვი: რვაობითი რიცხვი. რიცხვს შეიძლება მაქიმუმ 10 ადგილი (ბიტი) ჰქონდეს. ყველაზე მნისვნელოვანია ნიშნის ბიტი. უარყოფითი რიცხვები შეყვანილია როგორც ორის დამატება."
-#. CU%x
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5453,7 +4904,6 @@ msgctxt ""
msgid "<emph>Places</emph> is the number of places to be output."
msgstr "ადგილები: გამოსატანი ადგილების ნომრები."
-#. -\AS
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5463,7 +4913,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. :??o
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5473,7 +4922,6 @@ msgctxt ""
msgid "<item type=\"input\">=OCT2HEX(144;4)</item> returns 0064."
msgstr ""
-#. Oxe5
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5482,7 +4930,6 @@ msgctxt ""
msgid "<bookmark_value>CONVERT_ADD function</bookmark_value>"
msgstr "<bookmark_value> CONVERT ADD ფუნქცია</bookmark_value>"
-#. bF`i
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5492,7 +4939,6 @@ msgctxt ""
msgid "CONVERT_ADD"
msgstr "CONVERT_ADD"
-#. 8lar
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5502,7 +4948,6 @@ msgctxt ""
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 ""
-#. /CZy
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5512,7 +4957,6 @@ msgctxt ""
msgid "Property"
msgstr "მდგომარეობა"
-#. !IU[
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5522,7 +4966,6 @@ msgctxt ""
msgid "Units"
msgstr "ერთეულები"
-#. OMR(
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5532,7 +4975,6 @@ msgctxt ""
msgid "Weight"
msgstr "წონა"
-#. |03L
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5542,7 +4984,6 @@ msgctxt ""
msgid "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight, hweight, shweight, brton"
msgstr ""
-#. h6.j
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5552,7 +4993,6 @@ msgctxt ""
msgid "Length"
msgstr "სიგრძე"
-#. ))Ac
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5562,7 +5002,6 @@ msgctxt ""
msgid "<emph>m</emph>, mi, Nmi, in, ft, yd, ang, Pica, ell, <emph>parsec</emph>, <emph>lightyear</emph>, survey_mi"
msgstr ""
-#. o@Ae
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5572,7 +5011,6 @@ msgctxt ""
msgid "Time"
msgstr "დრო"
-#. rxtc
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5582,7 +5020,6 @@ msgctxt ""
msgid "yr, day, hr, mn, <emph>sec</emph>, <emph>s</emph>"
msgstr ""
-#. ,2\Z
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5592,7 +5029,6 @@ msgctxt ""
msgid "Pressure"
msgstr "წნევა"
-#. Y)9h
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5602,7 +5038,6 @@ msgctxt ""
msgid "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
msgstr ""
-#. jpbH
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5612,7 +5047,6 @@ msgctxt ""
msgid "Force"
msgstr "ძალა"
-#. OS=Z
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5622,7 +5056,6 @@ msgctxt ""
msgid "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
msgstr ""
-#. SFT/
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5632,7 +5065,6 @@ msgctxt ""
msgid "Energy"
msgstr "ენერგია"
-#. ;?$9
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5642,7 +5074,6 @@ msgctxt ""
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 ""
-#. g^s4
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5652,7 +5083,6 @@ msgctxt ""
msgid "Power"
msgstr "ძალა"
-#. ls/T
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5662,7 +5092,6 @@ msgctxt ""
msgid "<emph>W</emph>, <emph>w</emph>, HP, PS"
msgstr ""
-#. B}10
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5672,7 +5101,6 @@ msgctxt ""
msgid "Field strength"
msgstr "ველის ძალა"
-#. ;trl
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5682,7 +5110,6 @@ msgctxt ""
msgid "<emph>T</emph>, <emph>ga</emph>"
msgstr ""
-#. iA}M
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5692,7 +5119,6 @@ msgctxt ""
msgid "Temperature"
msgstr "ტემპერატურა"
-#. }}.-
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5702,7 +5128,6 @@ msgctxt ""
msgid "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
msgstr ""
-#. CwZZ
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5712,7 +5137,6 @@ msgctxt ""
msgid "Volume"
msgstr "ხმა"
-#. ai=Z
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5722,7 +5146,6 @@ msgctxt ""
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 ""
-#. V%6T
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5732,7 +5155,6 @@ msgctxt ""
msgid "Area"
msgstr "არე"
-#. Ou^e
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5742,7 +5164,6 @@ msgctxt ""
msgid "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
msgstr ""
-#. fa9a
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5752,7 +5173,6 @@ msgctxt ""
msgid "Speed"
msgstr "სიჩქარე"
-#. 1,g6
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5762,7 +5182,6 @@ msgctxt ""
msgid "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
msgstr ""
-#. T4!i
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5772,7 +5191,6 @@ msgctxt ""
msgid "Information"
msgstr ""
-#. +3_[
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5782,7 +5200,6 @@ msgctxt ""
msgid "<emph>bit</emph>, <emph>byte</emph>"
msgstr ""
-#. WM,+
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5792,7 +5209,6 @@ msgctxt ""
msgid "Units of measure in <emph>bold</emph> can be preceded by a prefix character from the following list:"
msgstr ""
-#. /4GN
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5802,7 +5218,6 @@ msgctxt ""
msgid "Prefix"
msgstr ""
-#. 2Kh,
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5811,7 +5226,6 @@ msgctxt ""
msgid "Multiplier"
msgstr ""
-#. Zh6D
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5820,7 +5234,6 @@ msgctxt ""
msgid "Y (yotta)"
msgstr ""
-#. _M\3
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5829,7 +5242,6 @@ msgctxt ""
msgid "10^24"
msgstr ""
-#. 5fPf
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5838,7 +5250,6 @@ msgctxt ""
msgid "Z (zetta)"
msgstr ""
-#. c2S|
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5847,7 +5258,6 @@ msgctxt ""
msgid "10^21"
msgstr ""
-#. KFj(
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5856,7 +5266,6 @@ msgctxt ""
msgid "E (exa)"
msgstr ""
-#. +C$w
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5865,7 +5274,6 @@ msgctxt ""
msgid "10^18"
msgstr ""
-#. ?w[`
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5874,7 +5282,6 @@ msgctxt ""
msgid "P (peta)"
msgstr ""
-#. ufpO
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5883,7 +5290,6 @@ msgctxt ""
msgid "10^15"
msgstr ""
-#. ,2kG
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5892,7 +5298,6 @@ msgctxt ""
msgid "T (tera)"
msgstr ""
-#. gjd?
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5901,7 +5306,6 @@ msgctxt ""
msgid "10^12"
msgstr ""
-#. ]X#N
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5910,7 +5314,6 @@ msgctxt ""
msgid "G (giga)"
msgstr ""
-#. ;F2Y
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5919,7 +5322,6 @@ msgctxt ""
msgid "10^9"
msgstr ""
-#. ^(w#
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5928,7 +5330,6 @@ msgctxt ""
msgid "M (mega)"
msgstr ""
-#. }1Ir
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5937,7 +5338,6 @@ msgctxt ""
msgid "10^6"
msgstr ""
-#. :I50
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5946,7 +5346,6 @@ msgctxt ""
msgid "k (kilo)"
msgstr ""
-#. oU3N
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5955,7 +5354,6 @@ msgctxt ""
msgid "10^3"
msgstr ""
-#. fJhr
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5964,7 +5362,6 @@ msgctxt ""
msgid "h (hecto)"
msgstr ""
-#. P.cu
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5973,7 +5370,6 @@ msgctxt ""
msgid "10^2"
msgstr ""
-#. 5`1D
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5982,7 +5378,6 @@ msgctxt ""
msgid "e (deca)"
msgstr ""
-#. IQ1(
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -5991,7 +5386,6 @@ msgctxt ""
msgid "10^1"
msgstr ""
-#. V^]8
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6000,7 +5394,6 @@ msgctxt ""
msgid "d (deci)"
msgstr ""
-#. zQvg
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6009,7 +5402,6 @@ msgctxt ""
msgid "10^-1"
msgstr ""
-#. 6:^.
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6018,7 +5410,6 @@ msgctxt ""
msgid "c (centi)"
msgstr ""
-#. /dJ/
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6027,7 +5418,6 @@ msgctxt ""
msgid "10^-2"
msgstr ""
-#. #umi
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6036,7 +5426,6 @@ msgctxt ""
msgid "m (milli)"
msgstr ""
-#. :A_{
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6045,7 +5434,6 @@ msgctxt ""
msgid "10^-3"
msgstr ""
-#. Qz+j
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6054,7 +5442,6 @@ msgctxt ""
msgid "u (micro)"
msgstr ""
-#. =5]X
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6063,7 +5450,6 @@ msgctxt ""
msgid "10^-6"
msgstr ""
-#. _f5[
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6072,7 +5458,6 @@ msgctxt ""
msgid "n (nano)"
msgstr ""
-#. bh|Z
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6081,7 +5466,6 @@ msgctxt ""
msgid "10^-9"
msgstr ""
-#. M=KH
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6090,7 +5474,6 @@ msgctxt ""
msgid "p (pico)"
msgstr ""
-#. F]OI
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6099,7 +5482,6 @@ msgctxt ""
msgid "10^-12"
msgstr ""
-#. 79A%
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6108,7 +5490,6 @@ msgctxt ""
msgid "f (femto)"
msgstr ""
-#. )mK=
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6117,7 +5498,6 @@ msgctxt ""
msgid "10^-15"
msgstr ""
-#. Z4g!
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6126,7 +5506,6 @@ msgctxt ""
msgid "a (atto)"
msgstr ""
-#. mt2U
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6135,7 +5514,6 @@ msgctxt ""
msgid "10^-18"
msgstr ""
-#. @o;S
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6144,7 +5522,6 @@ msgctxt ""
msgid "z (zepto)"
msgstr ""
-#. 6c#B
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6153,7 +5530,6 @@ msgctxt ""
msgid "10^-21"
msgstr ""
-#. W]6z
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6162,7 +5538,6 @@ msgctxt ""
msgid "y (yocto)"
msgstr ""
-#. RvLO
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6171,7 +5546,6 @@ msgctxt ""
msgid "10^-24"
msgstr ""
-#. ,1Tx
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6180,7 +5554,6 @@ msgctxt ""
msgid "Information units \"bit\" and \"byte\" may also be prefixed by one of the following IEC 60027-2 / IEEE 1541 prefixes:"
msgstr ""
-#. z.j`
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6189,7 +5562,6 @@ msgctxt ""
msgid "ki kibi 1024"
msgstr ""
-#. I!{B
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6198,7 +5570,6 @@ msgctxt ""
msgid "Mi mebi 1048576"
msgstr ""
-#. z!-H
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6207,7 +5578,6 @@ msgctxt ""
msgid "Gi gibi 1073741824"
msgstr ""
-#. TsMM
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6216,7 +5586,6 @@ msgctxt ""
msgid "Ti tebi 1099511627776"
msgstr ""
-#. a+z/
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6225,7 +5594,6 @@ msgctxt ""
msgid "Pi pebi 1125899906842620"
msgstr ""
-#. NZX}
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6234,7 +5602,6 @@ msgctxt ""
msgid "Ei exbi 1152921504606850000"
msgstr ""
-#. .C5P
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6243,7 +5610,6 @@ msgctxt ""
msgid "Zi zebi 1180591620717410000000"
msgstr ""
-#. =Yde
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6252,7 +5618,6 @@ msgctxt ""
msgid "Yi yobi 1208925819614630000000000"
msgstr ""
-#. .;X[
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6262,7 +5627,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. UL[:
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6272,7 +5636,6 @@ msgctxt ""
msgid "CONVERT_ADD(Number; \"FromUnit\"; \"ToUnit\")"
msgstr "CONVERT_ADD(რიცხვი;ერთეულიდან;ერთეულამდე)"
-#. ABdH
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6282,7 +5645,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the number to be converted."
msgstr "<emph>რიცხვი</emph> არის გარდასაქმნელი ციფრული მნიშვნელობა."
-#. *sy5
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6292,7 +5654,6 @@ msgctxt ""
msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
msgstr "ერთეულიდან: ერთეული რომლიდანაც ხდება გადაყვანა."
-#. D~!/
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6302,7 +5663,6 @@ msgctxt ""
msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
msgstr ""
-#. Z)xx
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6312,7 +5672,6 @@ msgctxt ""
msgid "Examples"
msgstr "მაგალითები"
-#. k8ZZ
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6322,7 +5681,6 @@ msgctxt ""
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 ""
-#. PoqM
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6332,7 +5690,6 @@ msgctxt ""
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 ""
-#. ~UAK
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6341,7 +5698,6 @@ msgctxt ""
msgid "<bookmark_value>FACTDOUBLE function</bookmark_value> <bookmark_value>factorials;numbers with increments of two</bookmark_value>"
msgstr "<bookmark_value>FACTDOUBLE ფუნქცია</bookmark_value><bookmark_value>ფაქტორიალები; ორით გაზრდილი რიცხვები</bookmark_value>"
-#. 7-aR
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6351,7 +5707,6 @@ msgctxt ""
msgid "FACTDOUBLE"
msgstr "FACTDOUBLE"
-#. n}:w
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6361,7 +5716,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">Returns the double factorial of a number.</ahelp>"
msgstr ""
-#. aRge
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6371,7 +5725,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. ;^,]
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6381,7 +5734,6 @@ msgctxt ""
msgid "FACTDOUBLE(Number)"
msgstr "FACTDOUBLE(რიცხვი)"
-#. gRz^
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6391,7 +5743,6 @@ msgctxt ""
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 ""
-#. b,GG
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6400,7 +5751,6 @@ msgctxt ""
msgid "For even numbers FACTDOUBLE(n) returns:"
msgstr ""
-#. V3VO
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6409,7 +5759,6 @@ msgctxt ""
msgid "2*4*6*8* ... *n"
msgstr ""
-#. A(_X
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6418,7 +5767,6 @@ msgctxt ""
msgid "For odd numbers FACTDOUBLE(n) returns:"
msgstr ""
-#. 1h9%
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6427,7 +5775,6 @@ msgctxt ""
msgid "1*3*5*7* ... *n"
msgstr ""
-#. Gn=2
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6436,7 +5783,6 @@ msgctxt ""
msgid "FACTDOUBLE(0) returns 1 by definition."
msgstr ""
-#. wazA
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6446,7 +5792,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. V!73
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6455,7 +5800,6 @@ msgctxt ""
msgid "<item type=\"input\">=FACTDOUBLE(5)</item> returns 15."
msgstr ""
-#. FPLH
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6465,7 +5809,6 @@ msgctxt ""
msgid "<item type=\"input\">=FACTDOUBLE(6)</item> returns 48."
msgstr ""
-#. N,^$
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
@@ -6474,7 +5817,6 @@ msgctxt ""
msgid "<item type=\"input\">=FACTDOUBLE(0)</item> returns 1."
msgstr ""
-#. ]yA\
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6483,7 +5825,6 @@ msgctxt ""
msgid "Options"
msgstr "პარამეტრები"
-#. 0#X4
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6492,7 +5833,6 @@ msgctxt ""
msgid "Options"
msgstr "პარამეტრები"
-#. -gM\
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6501,7 +5841,6 @@ msgctxt ""
msgid "The Options dialog for the <link href=\"text/scalc/01/solver.xhp\">Solver</link> is used to set some options."
msgstr ""
-#. (fsu
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6510,7 +5849,6 @@ msgctxt ""
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 ""
-#. ]Tyr
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6519,7 +5857,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Configure the current solver.</ahelp>"
msgstr ""
-#. uYrq
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6528,7 +5865,6 @@ msgctxt ""
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 ""
-#. RATU
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6537,7 +5873,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter or change the value.</ahelp>"
msgstr ""
-#. Xlzq
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6546,7 +5881,6 @@ msgctxt ""
msgid "Use the Options dialog to configure the current solver engine."
msgstr ""
-#. gPHa
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6555,7 +5889,6 @@ msgctxt ""
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 ""
-#. /Iui
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6564,7 +5897,6 @@ msgctxt ""
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 ""
-#. O#FW
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6573,7 +5905,6 @@ msgctxt ""
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 ""
-#. .d2]
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
@@ -6582,7 +5913,6 @@ msgctxt ""
msgid "Click OK to accept the changes and to go back to the <link href=\"text/scalc/01/solver.xhp\">Solver</link> dialog."
msgstr ""
-#. GEc#
#: 05080400.xhp
msgctxt ""
"05080400.xhp\n"
@@ -6591,7 +5921,6 @@ msgctxt ""
msgid "Add"
msgstr "დამატება"
-#. QD2P
#: 05080400.xhp
msgctxt ""
"05080400.xhp\n"
@@ -6601,7 +5930,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05080400.xhp\" name=\"Add\">Add</link>"
msgstr "<link href=\"text/scalc/01/05080400.xhp\" name=\"Add\">დამატება</link>"
-#. -u9*
#: 05080400.xhp
msgctxt ""
"05080400.xhp\n"
@@ -6611,7 +5939,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:AddPrintArea\">Adds the current selection to the defined print areas.</ahelp>"
msgstr "<ahelp hid=\".uno:AddPrintArea\">ამატებს მიმდინარე მონიშვნას საბეჭდათ განსაზღვრულ არეს.</ahelp>"
-#. %tLG
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6620,7 +5947,6 @@ msgctxt ""
msgid "Styles and Formatting"
msgstr "სტილები და ფორმატირება"
-#. TSmh
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6629,7 +5955,6 @@ msgctxt ""
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>სტილთა სია, იხილეთ სტილების და ფორმატირების ფანჯარა</bookmark_value><bookmark_value>სტილების და ფორმატირების ფანჯარა</bookmark_value><bookmark_value>ფორმატები; სტილების და ფორმატირების ფანჯარა</bookmark_value><bookmark_value>ფორმატები; სტილების და ფორმატირების ფანჯარა</bookmark_value><bookmark_value>სტილების ხატვით გააქტიურება</bookmark_value>"
-#. (cTK
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6639,7 +5964,6 @@ msgctxt ""
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\">სტილები და ფორმატირება</link>"
-#. xlQ=
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6649,7 +5973,6 @@ msgctxt ""
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 "გამოყენება სტილები და ფორმატირება -სკენ -სკენ და ტექსტი სექცია თქვენ განახლება სტილები სტილები ან ახალი სტილები."
-#. PA9%
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6659,7 +5982,6 @@ msgctxt ""
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 "სტილები და ფორმატირება <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">მიმაგრებადი ფანჯარა</link> შეიძლება შეგახსენოთ გახსნა დოკუმენტის რედაქტირებისას."
-#. Kr@m
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6669,7 +5991,6 @@ msgctxt ""
msgid "How to apply a cell style:"
msgstr "როგორ მოხდეს უჯრის სტილის გააქტიურება:"
-#. :A/X
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6679,7 +6000,6 @@ msgctxt ""
msgid "Select the cell or cell range."
msgstr "უჯრის ან უჯრათა დიაპაზონის ამორჩევა."
-#. jZT^
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6689,7 +6009,6 @@ msgctxt ""
msgid "Double-click the style in the Styles and Formatting window."
msgstr "ორმაგი-წკაპი სტილზე სტილების და ფორმატირების ფანჯარაში."
-#. S.qt
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6699,7 +6018,6 @@ msgctxt ""
msgid "Cell Styles"
msgstr "უჯრის სტილები"
-#. 1Ih_
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6709,7 +6027,6 @@ msgctxt ""
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\">ასახავს ხელმისაწვდომ სტილებს <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"indirect cell formatting\">უჯრების არაპირდაპირი ფორმატირებისთვის</link>.</ahelp>"
-#. X`SF
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6718,7 +6035,6 @@ msgctxt ""
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.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153714\">ხატულა</alt></image>"
-#. =57p
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6728,7 +6044,6 @@ msgctxt ""
msgid "Cell Styles"
msgstr "უჯრის სტილები"
-#. EUvs
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6738,7 +6053,6 @@ msgctxt ""
msgid "Page Styles"
msgstr "გვერდის სტილები"
-#. )gk:
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6748,7 +6062,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:PageStyle\">Displays the Page Styles available for indirect page formatting.</ahelp>"
msgstr "<ahelp hid=\".uno:PageStyle\">ასახავს არაპირდაპირი ფორმატირებისთვის ხელმისაწვდომ გვერთა სტილებს.</ahelp>"
-#. jCFp
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6757,7 +6070,6 @@ msgctxt ""
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.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149814\">ხატულა</alt></image>"
-#. fM(3
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6767,7 +6079,6 @@ msgctxt ""
msgid "Page Styles"
msgstr "გვერდის სტილები"
-#. Id%4
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6777,7 +6088,6 @@ msgctxt ""
msgid "Fill Format Mode"
msgstr "ფორმატით შევსების რეჟიმი"
-#. ?rGb
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6787,7 +6097,6 @@ msgctxt ""
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 ""
-#. oXV\
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6796,7 +6105,6 @@ msgctxt ""
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.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153068\">ხატულა</alt></image>"
-#. @FQ:
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6806,7 +6114,6 @@ msgctxt ""
msgid "Fill Format Mode"
msgstr "ფორმატით შემსების რეჟიმი"
-#. n0{=
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6816,7 +6123,6 @@ msgctxt ""
msgid "How to apply a new style with the paint can:"
msgstr "ახალი სტილის ხატვით გააქტიურება:"
-#. dfE8
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6826,7 +6132,6 @@ msgctxt ""
msgid "Select the desired style from the Styles and Formatting window."
msgstr "ამოირჩიეთ სასურველი სტილი სტილების და ფორმატირების ფანჯრიდან."
-#. N0}T
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6836,7 +6141,6 @@ msgctxt ""
msgid "Click the <emph>Fill Format Mode</emph> icon."
msgstr "დააწკაპეთ <emph>ფორმატირებით შევსების რეჟიმის</emph> ხატულას."
-#. #`p$
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6846,7 +6150,6 @@ msgctxt ""
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 "დააწკაპეთ უჯრას გასაფორმებლად, ან გადმოათრიეთ თაგვი მითითებულ დიაპაზონზე მთელი დიაპაზონის გასაფორმებლად. გაიმეორეთ მოქმედება სხვა უჯრებისთვის და უჯრათა დიაპაზონისთვის."
-#. oM^o
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6856,7 +6159,6 @@ msgctxt ""
msgid "Click the <emph>Fill Format Mode</emph> again to exit this mode."
msgstr "დააწკაპეთ <emph>ფორმატირების შევსების რეჟიმს</emph> კიდევ ერთხელ რეჟიმიდან გასასვლელად."
-#. #DB-
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6866,7 +6168,6 @@ msgctxt ""
msgid "New Style from Selection"
msgstr "მონიშნულიდან ახალი სტილი"
-#. 0~78
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6876,7 +6177,6 @@ msgctxt ""
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 ""
-#. 4E-.
#: 05100000.xhp
#, fuzzy
msgctxt ""
@@ -6886,7 +6186,6 @@ msgctxt ""
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_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155754\">ხატულა</alt></image>"
-#. $9cJ
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6896,7 +6195,6 @@ msgctxt ""
msgid "New Style from Selection"
msgstr "მონიშნულიდან ახალი სტილი"
-#. Ei!D
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6906,7 +6204,6 @@ msgctxt ""
msgid "Update Style"
msgstr "სტილის განახლება"
-#. lXLT
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6916,7 +6213,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_TEMPLDLG_UPDATEBYEXAMPLE\">Updates the Style selected in the Styles and Formatting window with the current formatting of the selected object.</ahelp>"
msgstr "<ahelp hid=\"HID_TEMPLDLG_UPDATEBYEXAMPLE\">აახლებს სყილს რომელიც არჩეულია სტილების და ფორმატირების ფანჯარაშუ არჩეული ობიექტის მიმდინარე სტილთან.</ahelp>"
-#. m$D?
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6925,7 +6221,6 @@ msgctxt ""
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.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155754\">ხატულა</alt></image>"
-#. 3z1F
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6935,7 +6230,6 @@ msgctxt ""
msgid "Update Style"
msgstr "სტილის განახლება"
-#. Gmp.
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6944,7 +6238,6 @@ msgctxt ""
msgid "Style List"
msgstr "სტილის სია"
-#. PVr@
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6953,7 +6246,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_TEMPLATE_FMT\">Displays the list of the styles from the selected style category.</ahelp>"
msgstr "<ahelp hid=\"HID_TEMPLATE_FMT\">ასახავს სტილთა სიას მოცემული სტილთა კატეგორიიდან.</ahelp>"
-#. ^!rg
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6962,7 +6254,6 @@ msgctxt ""
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 ""
-#. =(qI
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6972,7 +6263,6 @@ msgctxt ""
msgid "Style Groups"
msgstr "სტილის ჯგუფები"
-#. N{sQ
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
@@ -6982,7 +6272,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_TEMPLATE_FILTER\">Lists the available style groups.</ahelp>"
msgstr "<ahelp hid=\"HID_TEMPLATE_FILTER\">ჩამოთვლის სტილთა ხელმისაწვდომ ჯგუფებს.</ahelp>"
-#. Pz,8
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -6991,7 +6280,6 @@ msgctxt ""
msgid "Creating Names"
msgstr "სახელების შექმნა"
-#. ]es#
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7000,7 +6288,6 @@ msgctxt ""
msgid "<bookmark_value>cell ranges;creating names automatically</bookmark_value><bookmark_value>names; for cell ranges</bookmark_value>"
msgstr "<bookmark_value>უჯრების დიაპაზონი;სახელების ავტომატურად შეცვლა</bookmark_value><bookmark_value>სახელები; უჯრათა დიაპაზონი</bookmark_value>"
-#. G6JW
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7010,7 +6297,6 @@ msgctxt ""
msgid "Creating Names"
msgstr "სახელების შექმნა"
-#. TX+3
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7020,7 +6306,6 @@ msgctxt ""
msgid "<variable id=\"namenuebernehmentext\"><ahelp hid=\".uno:CreateNames\">Allows you to automatically name multiple cell ranges.</ahelp></variable>"
msgstr "<variable id=\"namenuebernehmentext\"><ahelp hid=\".uno:CreateNames\">საშუალებას გაძლევთ ავტომატურად დაარქვათ სახელი რამდენიმე დიაპაზონს.</ahelp></variable>"
-#. Wlle
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7030,7 +6315,6 @@ msgctxt ""
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 ""
-#. ]4+?
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7040,7 +6324,6 @@ msgctxt ""
msgid "Create names from"
msgstr "სახელების შექმნა"
-#. oJxl
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7050,7 +6333,6 @@ msgctxt ""
msgid "Defines which part of the spreadsheet is to be used for creating the name."
msgstr ""
-#. ]e)G
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7060,7 +6342,6 @@ msgctxt ""
msgid "Top row"
msgstr "ზედა რიგი"
-#. Nu,c
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7070,7 +6351,6 @@ msgctxt ""
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 ""
-#. ]f3A
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7080,7 +6360,6 @@ msgctxt ""
msgid "Left Column"
msgstr "მარცხენა სვეტი"
-#. 3(7g
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7090,7 +6369,6 @@ msgctxt ""
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 ""
-#. ;w]C
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7100,7 +6378,6 @@ msgctxt ""
msgid "Bottom row"
msgstr "ქვედა რიგი"
-#. 8Gi5
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7110,7 +6387,6 @@ msgctxt ""
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 ""
-#. x*Q4
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7120,7 +6396,6 @@ msgctxt ""
msgid "Right Column"
msgstr "მარჯვენა სვეტი"
-#. ;jq|
#: 04070300.xhp
msgctxt ""
"04070300.xhp\n"
@@ -7130,7 +6405,6 @@ msgctxt ""
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 ""
-#. H;lm
#: 02170000.xhp
#, fuzzy
msgctxt ""
@@ -7140,7 +6414,6 @@ msgctxt ""
msgid "Delete Sheet"
msgstr "ფურცლის წაშლა"
-#. Qmmk
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -7149,7 +6422,6 @@ msgctxt ""
msgid "<bookmark_value>spreadsheets; deleting</bookmark_value><bookmark_value>sheets; deleting</bookmark_value><bookmark_value>deleting; spreadsheets</bookmark_value>"
msgstr "<bookmark_value>ელექტრონული ცხრილები; deleting</bookmark_value><bookmark_value>sheets; deleting</bookmark_value><bookmark_value>deleting; ელექტრონული ცხრილები</bookmark_value>"
-#. j8@!
#: 02170000.xhp
#, fuzzy
msgctxt ""
@@ -7160,7 +6432,6 @@ msgctxt ""
msgid "Delete Sheet"
msgstr "ფურცლის წაშლა"
-#. ?w3]
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -7170,7 +6441,6 @@ msgctxt ""
msgid "<variable id=\"tabelleloeschentext\"><ahelp hid=\".uno:Remove\">Deletes the current sheet after query confirmation.</ahelp></variable>"
msgstr "<variable id=\"tabelleloeschentext\"><ahelp hid=\".uno:Remove\">Deletes the current sheet after query confirmation.</ahelp></variable>"
-#. i7qp
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -7180,7 +6450,6 @@ msgctxt ""
msgid "You cannot delete a sheet while <emph>Edit - Changes - Record</emph> is activated."
msgstr ""
-#. Ib[_
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -7190,7 +6459,6 @@ msgctxt ""
msgid "Yes"
msgstr "დიახ"
-#. ixgk
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -7200,7 +6468,6 @@ msgctxt ""
msgid "Deletes the current sheet."
msgstr ""
-#. 2E-d
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -7210,7 +6477,6 @@ msgctxt ""
msgid "No"
msgstr "არა"
-#. 5g6Q
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
@@ -7220,7 +6486,6 @@ msgctxt ""
msgid "Cancels the dialog. No delete is performed."
msgstr "დიალოგის შეწყვეტა. წაშლა არ მომზადებულა."
-#. e;Z0
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7229,7 +6494,6 @@ msgctxt ""
msgid "Options"
msgstr "პარამეტრები"
-#. H8;K
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7238,7 +6502,6 @@ msgctxt ""
msgid "<bookmark_value>subtotals; sorting options</bookmark_value>"
msgstr "<bookmark_value>ქვეჯამები; დახარისხების პარამეტრები</bookmark_value>"
-#. GKt]
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7248,7 +6511,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12050200.xhp\" name=\"Options\">Options</link>"
msgstr "<link href=\"text/scalc/01/12050200.xhp\" name=\"Options\">პარამეტრები</link>"
-#. %HYN
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7258,7 +6520,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_SCPAGE_SUBT_OPTIONS\">Specify the settings for calculating and presenting subtotals.</ahelp>"
msgstr ""
-#. A4L0
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7268,7 +6529,6 @@ msgctxt ""
msgid "Page break between groups"
msgstr "ჯგუფებს შორის გვერდის გაყოფა"
-#. U{hV
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7278,7 +6538,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_PAGEBREAK\">Inserts a new page after each group of subtotaled data.</ahelp>"
msgstr ""
-#. o7v}
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7288,7 +6547,6 @@ msgctxt ""
msgid "Case sensitive"
msgstr "რეგისტრისადმი მგძნობიარე"
-#. R;IQ
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7298,7 +6556,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_CASE\">Recalculates subtotals when you change the case of a data label.</ahelp>"
msgstr ""
-#. #:oS
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7308,7 +6565,6 @@ msgctxt ""
msgid "Pre-sort area according to groups"
msgstr ""
-#. H33o
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7318,7 +6574,6 @@ msgctxt ""
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 ""
-#. 9S.~
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7328,7 +6583,6 @@ msgctxt ""
msgid "Sort"
msgstr "დახარისხება"
-#. vJKo
#: 12050200.xhp
#, fuzzy
msgctxt ""
@@ -7339,7 +6593,6 @@ msgctxt ""
msgid "Include formats"
msgstr "ფორმატების ჩათვლით"
-#. q:@M
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7349,7 +6602,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_FORMATS\">Considers formatting attributes when sorting.</ahelp>"
msgstr ""
-#. d6a,
#: 12050200.xhp
#, fuzzy
msgctxt ""
@@ -7360,7 +6612,6 @@ msgctxt ""
msgid "Custom sort order"
msgstr "დახარისხების სხვა წესი"
-#. hW+h
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7370,7 +6621,6 @@ msgctxt ""
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 ""
-#. _rFe
#: 12050200.xhp
#, fuzzy
msgctxt ""
@@ -7381,7 +6631,6 @@ msgctxt ""
msgid "Ascending"
msgstr "#-#-#-#-# autopi.po (PACKAGE VERSION) #-#-#-#-#\\nზრდადობით\\n#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\\nდამავალი"
-#. F)Ad
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7391,7 +6640,6 @@ msgctxt ""
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 ""
-#. oxcm
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7401,7 +6649,6 @@ msgctxt ""
msgid "Descending"
msgstr "კლებადობით"
-#. V\jb
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
@@ -7411,7 +6658,6 @@ msgctxt ""
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 ""
-#. r!TU
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7420,7 +6666,6 @@ msgctxt ""
msgid "Add-in for Programming in $[officename] Calc"
msgstr "პროგრამირებისთვის დამატება $[officename] Calc-ში"
-#. f07|
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7429,7 +6674,6 @@ msgctxt ""
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>პროგრამირება; დამატებები</bookmark_value><bookmark_value>საზიარო ბიბლიოთეკები; პროგრამირება</bookmark_value><bookmark_value>გარე DLL ფუნქციები</bookmark_value><bookmark_value>ფუნქციები; $[officename] Calc დამატებითი DLL</bookmark_value><bookmark_value>დამატებები; პროგრამირებისთვის</bookmark_value>"
-#. ]=|@
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7439,7 +6683,6 @@ msgctxt ""
msgid "Add-in for Programming in $[officename] Calc"
msgstr "პროგრამირებისთვის დამატება $[officename] Calc-ში"
-#. 0h//
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7449,7 +6692,6 @@ msgctxt ""
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 ""
-#. PX9%
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7459,7 +6701,6 @@ msgctxt ""
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 ""
-#. qE7_
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7469,7 +6710,6 @@ msgctxt ""
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 ""
-#. HTB9
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7479,7 +6719,6 @@ msgctxt ""
msgid "The Add-In Concept"
msgstr "დამატება"
-#. 12.b
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7489,7 +6728,6 @@ msgctxt ""
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 ""
-#. /.c;
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7499,7 +6737,6 @@ msgctxt ""
msgid "Functions of <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>AddIn DLL</defaultinline></switchinline>"
msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">საზიარო ბიბლიოთეკების </caseinline><defaultinline>AddIn DLL</defaultinline></switchinline> ფუნქციები"
-#. 4KJZ
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7509,7 +6746,6 @@ msgctxt ""
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 ""
-#. epi_
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7519,7 +6755,6 @@ msgctxt ""
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 ""
-#. OG)d
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7529,7 +6764,6 @@ msgctxt ""
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 ""
-#. JPh:
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7539,7 +6773,6 @@ msgctxt ""
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 ""
-#. %0.J
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7549,7 +6782,6 @@ msgctxt ""
msgid "General information about the interface"
msgstr "საერთო ინფორმაცია ინტერფეისის შესახებ"
-#. -j#p
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7559,7 +6791,6 @@ msgctxt ""
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 ""
-#. D6Q*
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7569,7 +6800,6 @@ msgctxt ""
msgid "The data types are defined as follows:"
msgstr "მონაცემთა ტიპები განსაზღვრულია შემდეგით:"
-#. 7[R#
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7579,7 +6809,6 @@ msgctxt ""
msgid "<emph>Data types</emph>"
msgstr "<emph>მონაცემების ტიპები</emph>"
-#. .Vi.
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7589,7 +6818,6 @@ msgctxt ""
msgid "<emph>Definition</emph>"
msgstr "<emph>განსაზღვრა</emph>"
-#. V+3!
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7599,7 +6827,6 @@ msgctxt ""
msgid "CALLTYPE"
msgstr "CALLTYPE"
-#. Pzi:
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7609,7 +6836,6 @@ msgctxt ""
msgid "Under Windows: FAR PASCAL (_far _pascal)"
msgstr "Windows-ში: FAR PASCAL (_far _pascal)"
-#. T)%D
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7619,7 +6845,6 @@ msgctxt ""
msgid "Other: default (operating system specific default)"
msgstr "სხვა: ნაგულისხმევი (ოპერაციული სისტემის ნაგულისხმევი)"
-#. {u8x
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7629,7 +6854,6 @@ msgctxt ""
msgid "USHORT"
msgstr "USHORT"
-#. ku,@
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7639,7 +6863,6 @@ msgctxt ""
msgid "2 Byte unsigned Integer"
msgstr "2 ბაიტი მიუნიჭებელი მთელი რიცხვი"
-#. [#o}
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7649,7 +6872,6 @@ msgctxt ""
msgid "DOUBLE"
msgstr "DOUBLE"
-#. Od^3
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7659,7 +6881,6 @@ msgctxt ""
msgid "8 byte platform-dependent format"
msgstr "8 ბაიტიან პლათფორმაზე დამოკიდებული ფორმატი"
-#. v4kn
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7669,7 +6890,6 @@ msgctxt ""
msgid "Paramtype"
msgstr "პარამეტრის ტიპი"
-#. J[t7
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7679,7 +6899,6 @@ msgctxt ""
msgid "Platform-dependent like int"
msgstr "int-ის მსგავსი პლათფორმაზე დამოკიდებული"
-#. ]Jmz
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7689,7 +6908,6 @@ msgctxt ""
msgid "PTR_DOUBLE =0 pointer to a double"
msgstr ""
-#. d\d;
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7699,7 +6917,6 @@ msgctxt ""
msgid "PTR_STRING =1 pointer to a zero-terminated string"
msgstr ""
-#. pT9k
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7709,7 +6926,6 @@ msgctxt ""
msgid "PTR_DOUBLE_ARR =2 pointer to a double array"
msgstr ""
-#. 0Ci?
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7719,7 +6935,6 @@ msgctxt ""
msgid "PTR_STRING_ARR =3 pointer to a string array"
msgstr ""
-#. );D8
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7729,7 +6944,6 @@ msgctxt ""
msgid "PTR_CELL_ARR =4 pointer to a cell array"
msgstr ""
-#. *.4r
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7739,7 +6953,6 @@ msgctxt ""
msgid "NONE =5"
msgstr "NONE =5"
-#. *}c#
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7749,7 +6962,6 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions"
msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">საზიარო ბიბლიოთეკების </caseinline><defaultinline>AddIn DLL</defaultinline></switchinline> ფუნქციები"
-#. S4Rn
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7759,7 +6971,6 @@ msgctxt ""
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 ""
-#. FiKx
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7769,7 +6980,6 @@ msgctxt ""
msgid "For all <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions, the following applies:"
msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">საზიარო ბიბლიოთეკების </caseinline><defaultinline>AddIn DLL</defaultinline></switchinline> ფუნქციები"
-#. h+|/
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7779,7 +6989,6 @@ msgctxt ""
msgid "void CALLTYPE fn(out, in1, in2, ...)"
msgstr ""
-#. ,tb,
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7789,7 +6998,6 @@ msgctxt ""
msgid "Output: Resulting value"
msgstr "გამონატანი: შედეგის მნიშვნელობა"
-#. *7on
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7799,7 +7007,6 @@ msgctxt ""
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 ""
-#. SLns
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7809,7 +7016,6 @@ msgctxt ""
msgid "GetFunctionCount()"
msgstr "GetFunctionCount()"
-#. !A-T
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7819,7 +7025,6 @@ msgctxt ""
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 ""
-#. w;R_
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7829,7 +7034,6 @@ msgctxt ""
msgid "<emph>Syntax</emph>"
msgstr "<emph>სინტაქსი</emph>"
-#. {D9q
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7839,7 +7043,6 @@ msgctxt ""
msgid "void CALLTYPE GetFunctionCount(USHORT& nCount)"
msgstr "void CALLTYPE GetFunctionCount(USHORT& nCount)"
-#. )Pss
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7849,7 +7052,6 @@ msgctxt ""
msgid "<emph>Parameter</emph>"
msgstr "<emph>პარამეტრი</emph>"
-#. _)5W
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7859,7 +7061,6 @@ msgctxt ""
msgid "USHORT &nCount:"
msgstr "USHORT &nCount:"
-#. XL\g
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7869,7 +7070,6 @@ msgctxt ""
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 "გამონატანი მითითება -სკენ a ტოლია -სკენ შეიცავს რიცხვი - დამატება -თვის მაგალითი დამატება შეიცავს -თვის გამოთვლა."
-#. yZ:4
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7879,7 +7079,6 @@ msgctxt ""
msgid "GetFunctionData()"
msgstr "GetFunctionData()"
-#. K2nJ
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7889,7 +7088,6 @@ msgctxt ""
msgid "Determines all the important information about an Add-In function."
msgstr "ყველა მნიშვნელოვანი ინფორმაცია დამატება."
-#. [I`-
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7899,7 +7097,6 @@ msgctxt ""
msgid "<emph>Syntax</emph>"
msgstr "<emph>სინტაქსი</emph>"
-#. _zz3
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7909,7 +7106,6 @@ msgctxt ""
msgid "void CALLTYPE GetFunctionData(USHORT& nNo, char* pFuncName, USHORT& nParamCount, Paramtype* peType, char* pInternalName)"
msgstr "CALLTYPE USHORT char USHORT პარამეტრის ტიპი char"
-#. )^.P
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7919,7 +7115,6 @@ msgctxt ""
msgid "<emph>Parameter</emph>"
msgstr "<emph>პარამეტრი</emph>"
-#. (t.v
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7929,7 +7124,6 @@ msgctxt ""
msgid "USHORT& nNo:"
msgstr "USHORT& nNo:"
-#. )Fq6
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7939,7 +7133,6 @@ msgctxt ""
msgid "Input: Function number between 0 and nCount-1, inclusively."
msgstr "შეყვანა ფუნქცია რიცხვი არის შორის და."
-#. ;:0r
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7949,7 +7142,6 @@ msgctxt ""
msgid "char* pFuncName:"
msgstr "char* pFuncName:"
-#. 0pxr
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7959,7 +7151,6 @@ msgctxt ""
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 ""
-#. i(i4
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7969,7 +7160,6 @@ msgctxt ""
msgid "USHORT& nParamCount:"
msgstr "USHORT& nParamCount:"
-#. ?C#E
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7979,7 +7169,6 @@ msgctxt ""
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 ""
-#. qJ$`
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7989,7 +7178,6 @@ msgctxt ""
msgid "Paramtype* peType:"
msgstr "პარამეტრის ტიპი* peType:"
-#. HBX!
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -7999,7 +7187,6 @@ msgctxt ""
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 ""
-#. 7gZ,
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8009,7 +7196,6 @@ msgctxt ""
msgid "char* pInternalName:"
msgstr "char* pInternalName:"
-#. *R\g
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8019,7 +7205,6 @@ msgctxt ""
msgid "Output: Function name as seen by the user, as it appears in the <emph>Function Wizard</emph>. May contain umlauts."
msgstr "გამონატანი: ფუნქციის სახელი როგორც ამას მომხნმარებელი ხედავს, როგორც ეს <emph>ფუნქციათა ოსტატში</emph> ჩანს. შეიძლება შეიცავდეს უმლაუტებს."
-#. VgFb
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8029,7 +7214,6 @@ msgctxt ""
msgid "The pFuncName and pInternalName parameters are char arrays, which are implemented with size 256 in $[officename] Calc."
msgstr ""
-#. ^Kjm
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8039,7 +7223,6 @@ msgctxt ""
msgid "GetParameterDescription()"
msgstr "GetParameterDescription()"
-#. n~v6
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8049,7 +7232,6 @@ msgctxt ""
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 ""
-#. \RJ?
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8059,7 +7241,6 @@ msgctxt ""
msgid "<emph>Syntax</emph>"
msgstr "<emph>სინტაქსი</emph>"
-#. orb/
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8069,7 +7250,6 @@ msgctxt ""
msgid "void CALLTYPE GetParameterDescription(USHORT& nNo, USHORT& nParam, char* pName, char* pDesc)"
msgstr ""
-#. Z{19
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8079,7 +7259,6 @@ msgctxt ""
msgid "<emph>Parameter</emph>"
msgstr "<emph>პარამეტრი</emph>"
-#. bOOu
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8089,7 +7268,6 @@ msgctxt ""
msgid "USHORT& nNo:"
msgstr "USHORT& nNo:"
-#. =A-K
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8099,7 +7277,6 @@ msgctxt ""
msgid "Input: Number of the function in the library; between 0 and nCount-1."
msgstr "შეყვანა ნომერი - დუ არის შორის და."
-#. xm`1
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8109,7 +7286,6 @@ msgctxt ""
msgid "USHORT& nParam:"
msgstr "USHORT& nParam:"
-#. /kUh
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8119,7 +7295,6 @@ msgctxt ""
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 ""
-#. 9m`Q
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8129,7 +7304,6 @@ msgctxt ""
msgid "char* pName:"
msgstr "char* pName:"
-#. {8\r
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8139,7 +7313,6 @@ msgctxt ""
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 "გამონატანი მაღლა სახელი ან ტიპი -თვის მაგალითი ნომერი ან სტრიქონი ან თარიღი და ჩართულია დუ გამოთვლა char."
-#. ?f8r
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8149,7 +7322,6 @@ msgctxt ""
msgid "char* pDesc:"
msgstr "char* pDesc:"
-#. hjz+
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8159,7 +7331,6 @@ msgctxt ""
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 ""
-#. @LnV
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8169,7 +7340,6 @@ msgctxt ""
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 ""
-#. o!{-
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8179,7 +7349,6 @@ msgctxt ""
msgid "Cell areas"
msgstr "უჯრების არეები"
-#. SrC.
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8189,7 +7358,6 @@ msgctxt ""
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 ""
-#. 9gO~
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8199,7 +7367,6 @@ msgctxt ""
msgid "Double Array"
msgstr "ორმაგი მასივი"
-#. 2Nl[
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8209,7 +7376,6 @@ msgctxt ""
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 "a a არე - ნომერი ორმაგი ტიპი A double დუ გამოთვლა ტოლია:"
-#. B3if
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8219,7 +7385,6 @@ msgctxt ""
msgid "<emph>Offset</emph>"
msgstr "<emph>შერევა</emph>"
-#. -u,r
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8229,7 +7394,6 @@ msgctxt ""
msgid "<emph>Name</emph>"
msgstr "<emph>სახელი</emph>"
-#. jvQ)
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8239,7 +7403,6 @@ msgctxt ""
msgid "<emph>Description</emph>"
msgstr "<emph>აღწერა</emph>"
-#. H%)_
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8249,7 +7412,6 @@ msgctxt ""
msgid "0"
msgstr "0"
-#. ?=~l
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8259,7 +7421,6 @@ msgctxt ""
msgid "Col1"
msgstr "სვეტი1"
-#. sfDe
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8269,7 +7430,6 @@ msgctxt ""
msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
msgstr "ტექსტი რიცხვი დუ მარცხნივ - არე ეთ."
-#. i_97
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8279,7 +7439,6 @@ msgctxt ""
msgid "2"
msgstr "2"
-#. s^T[
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8289,7 +7448,6 @@ msgctxt ""
msgid "Row1"
msgstr "რიგი1"
-#. N3|:
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8299,7 +7457,6 @@ msgctxt ""
msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "ტექსტი რიცხვი დუ მარცხნივ - არე ეთ."
-#. 8Z}9
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8309,7 +7466,6 @@ msgctxt ""
msgid "4"
msgstr "4"
-#. e\;#
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8319,7 +7475,6 @@ msgctxt ""
msgid "Tab1"
msgstr "ჩანართი1"
-#. TX4%
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8329,7 +7484,6 @@ msgctxt ""
msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "ტექსტი რიცხვი დუ მარცხნივ - არე ეთ."
-#. )ab!
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8339,7 +7493,6 @@ msgctxt ""
msgid "6"
msgstr "6"
-#. })Wh
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8349,7 +7502,6 @@ msgctxt ""
msgid "Col2"
msgstr "სვეტი2"
-#. {Pal
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8359,7 +7511,6 @@ msgctxt ""
msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
msgstr "ტექსტი რიცხვი დუ მარცხნივ - არე ეთ."
-#. 4Bp#
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8369,7 +7520,6 @@ msgctxt ""
msgid "8"
msgstr "8"
-#. /ftp
#: 04060112.xhp
#, fuzzy
msgctxt ""
@@ -8380,7 +7530,6 @@ msgctxt ""
msgid "Row2"
msgstr "რიგი2"
-#. KOj.
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8390,7 +7539,6 @@ msgctxt ""
msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
msgstr "ტექსტი რიცხვი დუ მარცხნივ - არე ეთ."
-#. X,#=
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8400,7 +7548,6 @@ msgctxt ""
msgid "10"
msgstr "10"
-#. a)`u
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8410,7 +7557,6 @@ msgctxt ""
msgid "Tab2"
msgstr "ჩანართი2"
-#. ex(i
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8420,7 +7566,6 @@ msgctxt ""
msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
msgstr "ტექსტი რიცხვი დუ მარცხნივ - არე ეთ."
-#. yll8
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8430,7 +7575,6 @@ msgctxt ""
msgid "12"
msgstr "12"
-#. ,Lox
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8440,7 +7584,6 @@ msgctxt ""
msgid "Count"
msgstr "თვლა"
-#. y~bv
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8450,7 +7593,6 @@ msgctxt ""
msgid "Number of the following elements. Empty cells are not counted or passed."
msgstr ""
-#. 0pBT
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8460,7 +7602,6 @@ msgctxt ""
msgid "14"
msgstr "14"
-#. Y6(X
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8470,7 +7611,6 @@ msgctxt ""
msgid "Col"
msgstr "სვეტი"
-#. 0E5|
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8480,7 +7620,6 @@ msgctxt ""
msgid "Column number of the element. Numbering starts at 0."
msgstr "ელემენტის სვეტის ნომერი. ნუმერაცია იწყება 0-ით."
-#. 8CsM
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8490,7 +7629,6 @@ msgctxt ""
msgid "16"
msgstr "16"
-#. T0J\
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8500,7 +7638,6 @@ msgctxt ""
msgid "Row"
msgstr "რიგი"
-#. pa54
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8510,7 +7647,6 @@ msgctxt ""
msgid "Row number of the element; numbering starts at 0."
msgstr "ელემენტის რიგის ნომერი. ნუმერაცია იწყება 0-ით."
-#. [!ln
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8520,7 +7656,6 @@ msgctxt ""
msgid "18"
msgstr "18"
-#. ]W4/
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8530,7 +7665,6 @@ msgctxt ""
msgid "Tab"
msgstr "ჩანართი"
-#. 8T/b
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8540,7 +7674,6 @@ msgctxt ""
msgid "Table number of the element; numbering starts at 0."
msgstr "ელემენტის ცხრილის ნომერი. ნუმერაცია იწყება 0-ით."
-#. [_r2
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8550,7 +7683,6 @@ msgctxt ""
msgid "20"
msgstr "20"
-#. oB\p
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8560,7 +7692,6 @@ msgctxt ""
msgid "Error"
msgstr "შეცდომა"
-#. ZC,)
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8570,7 +7701,6 @@ msgctxt ""
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 ""
-#. 84R5
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8580,7 +7710,6 @@ msgctxt ""
msgid "22"
msgstr "22"
-#. qEhY
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8590,7 +7719,6 @@ msgctxt ""
msgid "Value"
msgstr "მნიშვნელობა"
-#. dh(a
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8600,7 +7728,6 @@ msgctxt ""
msgid "8 byte IEEE variable of type double/floating point"
msgstr ""
-#. 6ssq
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8610,7 +7737,6 @@ msgctxt ""
msgid "30"
msgstr "30"
-#. ^d[(
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8620,7 +7746,6 @@ msgctxt ""
msgid "..."
msgstr "..."
-#. ~Y=_
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8630,7 +7755,6 @@ msgctxt ""
msgid "Next element"
msgstr "შემდეგი ელემენტი"
-#. {n3}
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8640,7 +7764,6 @@ msgctxt ""
msgid "String Array"
msgstr "სტრიქონის მასივი"
-#. =~81
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8650,7 +7773,6 @@ msgctxt ""
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 "A არე შეიცავს - ტიპი ტექსტი და ტოლია a სტრიქონი A სტრიქონი დუ გამოთვლა ტოლია:"
-#. ^[Q|
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8660,7 +7782,6 @@ msgctxt ""
msgid "<emph>Offset</emph>"
msgstr "<emph>შერევა</emph>"
-#. *;0x
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8670,7 +7791,6 @@ msgctxt ""
msgid "<emph>Name</emph>"
msgstr "<emph>სახელი</emph>"
-#. #!I7
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8680,7 +7800,6 @@ msgctxt ""
msgid "<emph>Description</emph>"
msgstr "<emph>აღწერა</emph>"
-#. Rbe0
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8690,7 +7809,6 @@ msgctxt ""
msgid "0"
msgstr "0"
-#. A`GJ
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8700,7 +7818,6 @@ msgctxt ""
msgid "Col1"
msgstr "სვეტი1"
-#. ei)b
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8710,7 +7827,6 @@ msgctxt ""
msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
msgstr "ტექსტი რიცხვი დუ მარცხნივ - არე ეთ."
-#. IXjJ
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8720,7 +7836,6 @@ msgctxt ""
msgid "2"
msgstr "2"
-#. zY+I
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8730,7 +7845,6 @@ msgctxt ""
msgid "Row1"
msgstr "რიგი1"
-#. HnMQ
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8740,7 +7854,6 @@ msgctxt ""
msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "ტექსტი რიცხვი დუ მარცხნივ - არე ეთ."
-#. p/E#
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8750,7 +7863,6 @@ msgctxt ""
msgid "4"
msgstr "4"
-#. 0b/D
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8760,7 +7872,6 @@ msgctxt ""
msgid "Tab1"
msgstr "ჩანართი1"
-#. o4K8
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8770,7 +7881,6 @@ msgctxt ""
msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "ტექსტი რიცხვი დუ მარცხნივ - არე ეთ."
-#. =GUV
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8780,7 +7890,6 @@ msgctxt ""
msgid "6"
msgstr "6"
-#. (zF0
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8790,7 +7899,6 @@ msgctxt ""
msgid "Col2"
msgstr "სვეტი2"
-#. .GiB
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8800,7 +7908,6 @@ msgctxt ""
msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
msgstr "ტექსტი რიცხვი დუ მარცხნივ - არე ეთ."
-#. |L-4
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8810,7 +7917,6 @@ msgctxt ""
msgid "8"
msgstr "8"
-#. o8]=
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8820,7 +7926,6 @@ msgctxt ""
msgid "Row2"
msgstr "რიგი"
-#. hx!.
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8830,7 +7935,6 @@ msgctxt ""
msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
msgstr "ტექსტი რიცხვი დუ მარცხნივ - არე ეთ."
-#. [yi,
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8840,7 +7944,6 @@ msgctxt ""
msgid "10"
msgstr "10"
-#. Vio^
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8850,7 +7953,6 @@ msgctxt ""
msgid "Tab2"
msgstr "ჩანართი2"
-#. @^yr
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8860,7 +7962,6 @@ msgctxt ""
msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
msgstr "ტექსტი რიცხვი დუ მარცხნივ - არე ეთ."
-#. -b}X
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8870,7 +7971,6 @@ msgctxt ""
msgid "12"
msgstr "12"
-#. 0.?G
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8880,7 +7980,6 @@ msgctxt ""
msgid "Count"
msgstr "თვლა"
-#. #u6l
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8890,7 +7989,6 @@ msgctxt ""
msgid "Number of the following elements. Empty cells are not counted or passed."
msgstr ""
-#. +D1U
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8900,7 +7998,6 @@ msgctxt ""
msgid "14"
msgstr "14"
-#. hg5]
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8910,7 +8007,6 @@ msgctxt ""
msgid "Col"
msgstr "სვეტი"
-#. JG#I
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8920,7 +8016,6 @@ msgctxt ""
msgid "Column number of the element. Numbering starts at 0."
msgstr "ელემენტის სვეტის ნომერი. ნუმერაცია იწყება 0-ით."
-#. 5+CL
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8930,7 +8025,6 @@ msgctxt ""
msgid "16"
msgstr "16"
-#. Q.#D
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8940,7 +8034,6 @@ msgctxt ""
msgid "Row"
msgstr "რიგი"
-#. G99P
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8950,7 +8043,6 @@ msgctxt ""
msgid "Row number of the element; numbering starts at 0."
msgstr "ელემენტის რიგის ნომერი. ნუმერაცია იწყება 0-ით."
-#. xsm^
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8960,7 +8052,6 @@ msgctxt ""
msgid "18"
msgstr "18"
-#. %4|p
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8970,7 +8061,6 @@ msgctxt ""
msgid "Tab"
msgstr "ჩანართი"
-#. hnr,
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8980,7 +8070,6 @@ msgctxt ""
msgid "Table number of the element; numbering starts at 0."
msgstr "ელემენტის ცხრილის ნომერი. ნუმერაცია იწყება 0-ით."
-#. !T`@
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -8990,7 +8079,6 @@ msgctxt ""
msgid "20"
msgstr "20"
-#. %M?x
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9000,7 +8088,6 @@ msgctxt ""
msgid "Error"
msgstr "შეცდომა"
-#. jj1H
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9010,7 +8097,6 @@ msgctxt ""
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 ""
-#. t*;k
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9020,7 +8106,6 @@ msgctxt ""
msgid "22"
msgstr "22"
-#. Xil1
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9030,7 +8115,6 @@ msgctxt ""
msgid "Len"
msgstr "Len"
-#. e-7j
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9040,7 +8124,6 @@ msgctxt ""
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 ""
-#. |hb;
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9050,7 +8133,6 @@ msgctxt ""
msgid "24"
msgstr "24"
-#. #:41
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9060,7 +8142,6 @@ msgctxt ""
msgid "String"
msgstr "სტრიქონი"
-#. 3(BM
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9070,7 +8151,6 @@ msgctxt ""
msgid "String with closing zero byte"
msgstr "სტრიქონი დამხურავი ნულოვანი ბაიტით"
-#. :1E3
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9080,7 +8160,6 @@ msgctxt ""
msgid "24+Len"
msgstr "24+Len"
-#. 6swn
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9090,7 +8169,6 @@ msgctxt ""
msgid "..."
msgstr "..."
-#. oR=o
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9100,7 +8178,6 @@ msgctxt ""
msgid "Next element"
msgstr "შემდეგი ელემენტი"
-#. @H/t
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9110,7 +8187,6 @@ msgctxt ""
msgid "Cell Array"
msgstr "უჯრების მასივი"
-#. QMp%
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9120,7 +8196,6 @@ msgctxt ""
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 ""
-#. _yc7
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9130,7 +8205,6 @@ msgctxt ""
msgid "<emph>Offset</emph>"
msgstr "<emph>შერევა</emph>"
-#. TijD
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9140,7 +8214,6 @@ msgctxt ""
msgid "<emph>Name</emph>"
msgstr "<emph>სახელი</emph>"
-#. @B6+
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9150,7 +8223,6 @@ msgctxt ""
msgid "<emph>Description</emph>"
msgstr "<emph>აღწერა</emph>"
-#. G4+U
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9160,7 +8232,6 @@ msgctxt ""
msgid "0"
msgstr "0"
-#. d=(S
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9170,7 +8241,6 @@ msgctxt ""
msgid "Col1"
msgstr "სვეტი1"
-#. CTEe
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9180,7 +8250,6 @@ msgctxt ""
msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
msgstr "ტექსტი რიცხვი დუ მარცხნივ - არე ეთ."
-#. y(@Z
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9190,7 +8259,6 @@ msgctxt ""
msgid "2"
msgstr "2"
-#. t-,O
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9200,7 +8268,6 @@ msgctxt ""
msgid "Row1"
msgstr "რიგი1"
-#. v}To
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9210,7 +8277,6 @@ msgctxt ""
msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "ტექსტი რიცხვი დუ მარცხნივ - არე ეთ."
-#. {Pr|
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9220,7 +8286,6 @@ msgctxt ""
msgid "4"
msgstr "4"
-#. yL3I
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9230,7 +8295,6 @@ msgctxt ""
msgid "Tab1"
msgstr "ჩანართი1"
-#. 40/,
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9240,7 +8304,6 @@ msgctxt ""
msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
msgstr "ტექსტი რიცხვი დუ მარცხნივ - არე ეთ."
-#. ~0Vt
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9250,7 +8313,6 @@ msgctxt ""
msgid "6"
msgstr "6"
-#. .sqA
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9260,7 +8322,6 @@ msgctxt ""
msgid "Col2"
msgstr "სვეტი2"
-#. v|$m
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9270,7 +8331,6 @@ msgctxt ""
msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
msgstr "ტექსტი რიცხვი დუ მარცხნივ - არე ეთ."
-#. 4X#3
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9280,7 +8340,6 @@ msgctxt ""
msgid "8"
msgstr "8"
-#. HZ+o
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9290,7 +8349,6 @@ msgctxt ""
msgid "Row2"
msgstr "რიგი2"
-#. ;+4.
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9300,7 +8358,6 @@ msgctxt ""
msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
msgstr "ტექსტი რიცხვი დუ მარცხნივ - არე ეთ."
-#. L[}k
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9310,7 +8367,6 @@ msgctxt ""
msgid "10"
msgstr "10"
-#. C2A:
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9320,7 +8376,6 @@ msgctxt ""
msgid "Tab2"
msgstr "ჩანართი2"
-#. (U0B
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9330,7 +8385,6 @@ msgctxt ""
msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
msgstr "ტექსტი რიცხვი დუ მარცხნივ - არე ეთ."
-#. Di`(
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9340,7 +8394,6 @@ msgctxt ""
msgid "12"
msgstr "12"
-#. ]i./
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9350,7 +8403,6 @@ msgctxt ""
msgid "Count"
msgstr "თვლა"
-#. g*4)
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9360,7 +8412,6 @@ msgctxt ""
msgid "Number of the following elements. Empty cells are not counted or passed."
msgstr ""
-#. d~{B
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9370,7 +8421,6 @@ msgctxt ""
msgid "14"
msgstr "14"
-#. [cSn
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9380,7 +8430,6 @@ msgctxt ""
msgid "Col"
msgstr "სვეტი"
-#. +YB4
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9390,7 +8439,6 @@ msgctxt ""
msgid "Column number of the element. Numbering starts at 0."
msgstr "სვეტის ელემენტთა რაოდენობა. ნუმერაცია 0-ით იწყება."
-#. :^x)
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9400,7 +8448,6 @@ msgctxt ""
msgid "16"
msgstr "16"
-#. FCC8
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9410,7 +8457,6 @@ msgctxt ""
msgid "Row"
msgstr "რიგი"
-#. K[1q
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9420,7 +8466,6 @@ msgctxt ""
msgid "Row number of the element; numbering starts at 0."
msgstr "რიგის ელემენტთა რაოდენობა. ნუმერაცია 0-ით იწყება."
-#. 5@Na
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9430,7 +8475,6 @@ msgctxt ""
msgid "18"
msgstr "18"
-#. |nA~
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9440,7 +8484,6 @@ msgctxt ""
msgid "Tab"
msgstr "ჩანართი"
-#. =d5p
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9450,7 +8493,6 @@ msgctxt ""
msgid "Table number of the element; numbering starts at 0."
msgstr "ცხრილის ელემენტთა რაოდენობა. ნუმერაცია 0-ით იწყება."
-#. W:Wr
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9460,7 +8502,6 @@ msgctxt ""
msgid "20"
msgstr "20"
-#. R.+I
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9470,7 +8511,6 @@ msgctxt ""
msgid "Error"
msgstr "შეცდომა"
-#. tC`_
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9480,7 +8520,6 @@ msgctxt ""
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 ""
-#. E:D1
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9490,7 +8529,6 @@ msgctxt ""
msgid "22"
msgstr "22"
-#. O]eT
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9500,7 +8538,6 @@ msgctxt ""
msgid "Type"
msgstr "ტიპი"
-#. SZ?]
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9510,7 +8547,6 @@ msgctxt ""
msgid "Type of cell content, 0 == Double, 1 == String"
msgstr "უჯრის შიგთავსის ტიპი - ორმაგი სტრიქონი"
-#. \)8W
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9520,7 +8556,6 @@ msgctxt ""
msgid "24"
msgstr "24"
-#. YFU~
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9530,7 +8565,6 @@ msgctxt ""
msgid "Value or Len"
msgstr "მნიშვნელობა ან Len"
-#. S$R*
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9540,7 +8574,6 @@ msgctxt ""
msgid "If type == 0: 8 byte IEEE variable of type double/floating point"
msgstr ""
-#. Swqx
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9550,7 +8583,6 @@ msgctxt ""
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 ""
-#. {LyP
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9560,7 +8592,6 @@ msgctxt ""
msgid "26 if type==1"
msgstr "26 თუ ტიპი==1"
-#. a=]|
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9570,7 +8601,6 @@ msgctxt ""
msgid "String"
msgstr "სტრიქონი"
-#. @2%E
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9580,7 +8610,6 @@ msgctxt ""
msgid "If type == 1: String with closing zero byte"
msgstr "თუ ტიპი == 1. სტრიქონი დამხურავი ნულოვანი ბაიტით"
-#. :#*h
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9590,7 +8619,6 @@ msgctxt ""
msgid "32 or 26+Len"
msgstr "32 ან26+Len"
-#. NlMG
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9600,7 +8628,6 @@ msgctxt ""
msgid "..."
msgstr "..."
-#. V?eC
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
@@ -9610,7 +8637,6 @@ msgctxt ""
msgid "Next element"
msgstr "შემდეგი ელემენტი"
-#. W.-Z
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9619,7 +8645,6 @@ msgctxt ""
msgid "Statistical Functions Part Four"
msgstr "სტატისტიკური ფუნქციები ნაწილი ოთხი"
-#. @Ck8
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9629,7 +8654,6 @@ msgctxt ""
msgid "<variable id=\"mq\"><link href=\"text/scalc/01/04060184.xhp\" name=\"Statistical Functions Part Four\">Statistical Functions Part Four</link></variable>"
msgstr "<variable id=\"mq\"><link href=\"text/scalc/01/04060184.xhp\" name=\"Statistical Functions Part Four\">სტატისტიკური ფუნქციები ნაწილი ოთხი</link></variable>"
-#. NUsc
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9638,7 +8662,6 @@ msgctxt ""
msgid "<bookmark_value>MAX function</bookmark_value>"
msgstr "<bookmark_value>MAX ფუნქცია</bookmark_value>"
-#. ,Qs.
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9648,7 +8671,6 @@ msgctxt ""
msgid "MAX"
msgstr "MAX"
-#. ;Zdg
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9658,7 +8680,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_MAX\">Returns the maximum value in a list of arguments.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_MAX\">აბრუნებს არგუმენტთა სიიდან მაქსიმალურ მნიშვნელობას.</ahelp>"
-#. 8#N|
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9667,7 +8688,6 @@ msgctxt ""
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 ""
-#. h%f*
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9677,7 +8697,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. Tkh1
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9687,7 +8706,6 @@ msgctxt ""
msgid "MAX(Number1; Number2; ...Number30)"
msgstr "MAX(რიცხვი 1; რიცხვი 2; ...რიცხვი 30)"
-#. I/$L
#: 04060184.xhp
#, fuzzy
msgctxt ""
@@ -9698,7 +8716,6 @@ msgctxt ""
msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
msgstr "<emph>რიცხვი 1; რიცხვი 2;...რიცხვი 30</emph> არის დიაპაზონის ციფრული მნიშვნელობები."
-#. hHHp
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9708,7 +8725,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. 9:A5
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9718,7 +8734,6 @@ msgctxt ""
msgid "<item type=\"input\">=MAX(A1;A2;A3;50;100;200)</item> returns the largest value from the list."
msgstr ""
-#. o4*?
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9728,7 +8743,6 @@ msgctxt ""
msgid "<item type=\"input\">=MAX(A1:B100)</item> returns the largest value from the list."
msgstr ""
-#. wVN{
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9737,7 +8751,6 @@ msgctxt ""
msgid "<bookmark_value>MAXA function</bookmark_value>"
msgstr "<bookmark_value>MAXA ფუნქცია</bookmark_value>"
-#. Zva\
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9747,7 +8760,6 @@ msgctxt ""
msgid "MAXA"
msgstr "MAXA"
-#. K{5@
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9757,7 +8769,6 @@ msgctxt ""
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\">აბრუნებს არგუმენტთა სიიდან მაქსიმალურ მნიშვნელობას. MAX-სგან განსხვავებით აქ შეიძლება ტექსტიც იყოს, რომლის მნიშვნელობაა 0.</ahelp>"
-#. VVSH
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9766,7 +8777,6 @@ msgctxt ""
msgid "The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered."
msgstr ""
-#. \5N@
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9776,7 +8786,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. WFLu
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9786,7 +8795,6 @@ msgctxt ""
msgid "MAXA(Value1; Value2; ... Value30)"
msgstr "MAXA(მნიშვნელობა 1; მნიშვნელობა 2; ... მნიშვნელობა 30)"
-#. StIA
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9796,7 +8804,6 @@ msgctxt ""
msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
msgstr "<emph>მნიშვნელობა 1; მნიშვნელობა 2;...მნიშვნელობა 30</emph> არის მნიშვნელობები ან დიაპაზონები. ტექსტს აქვს მნიშვნელობა 0."
-#. 8dcR
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9806,7 +8813,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. 60bC
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9816,7 +8822,6 @@ msgctxt ""
msgid "<item type=\"input\">=MAXA(A1;A2;A3;50;100;200;\"Text\")</item> returns the largest value from the list."
msgstr ""
-#. 18L]
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9826,7 +8831,6 @@ msgctxt ""
msgid "<item type=\"input\">=MAXA(A1:B100)</item> returns the largest value from the list."
msgstr ""
-#. /nRB
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9835,7 +8839,6 @@ msgctxt ""
msgid "<bookmark_value>MEDIAN function</bookmark_value>"
msgstr "<bookmark_value>MEDIAN ფუნქცია</bookmark_value>"
-#. U9T_
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9845,7 +8848,6 @@ msgctxt ""
msgid "MEDIAN"
msgstr "MEDIAN"
-#. F8Cq
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9855,7 +8857,6 @@ msgctxt ""
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 ""
-#. )eb:
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9865,7 +8866,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. !c1a
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9875,7 +8875,6 @@ msgctxt ""
msgid "MEDIAN(Number1; Number2; ...Number30)"
msgstr "MEDIAN(რიცხვი 1; რიცხვი 2; ...რიცხვი 30)"
-#. Qb-2
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9885,7 +8884,6 @@ msgctxt ""
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>რიცხვი 1; რიცხვი 2;...რიცხვი 30</emph> არის მნიშვნელობები ან დიაპაზონები, რომლებიც აღნიშნავს შერჩევას. ყოველი რიცხვი შესაძლოა ასევე იყოს მითითება."
-#. 9P;G
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9895,7 +8893,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. MIu4
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9905,7 +8902,6 @@ msgctxt ""
msgid "for an odd number: <item type=\"input\">=MEDIAN(1;5;9;20;21)</item> returns 9 as the median value."
msgstr ""
-#. YIaj
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9915,7 +8911,6 @@ msgctxt ""
msgid "for an even number: <item type=\"input\">=MEDIAN(1;5;9;20)</item> returns the average of the two middle values 5 and 9, thus 7."
msgstr "ლუწი რიცხვისთვის: =MEDIAN(1; 5; 9; 20) აბრუნებს შუა ორი მნიშვნელობის საშუალო არითმეტიკულს 5-ს და 9-ს არის 7."
-#. k$d^
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9924,7 +8919,6 @@ msgctxt ""
msgid "<bookmark_value>MIN function</bookmark_value>"
msgstr "<bookmark_value>MIN ფუნქცია</bookmark_value>"
-#. 3}Mb
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9934,7 +8928,6 @@ msgctxt ""
msgid "MIN"
msgstr "MIN"
-#. /*[Y
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9944,7 +8937,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_MIN\">Returns the minimum value in a list of arguments.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_MIN\">არგუმენტთა სიიდან აბრუნებს უმცირეს მნიშვნელობას.</ahelp>"
-#. sgdn
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9953,7 +8945,6 @@ msgctxt ""
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 ""
-#. JUVS
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9963,7 +8954,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. utYF
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9973,7 +8963,6 @@ msgctxt ""
msgid "MIN(Number1; Number2; ...Number30)"
msgstr "MIN(რიცხვი 1; რიცხვი 2; ...რიცხვი 30)"
-#. zD$%
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9983,7 +8972,6 @@ msgctxt ""
msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
msgstr "<emph>რიცხვი 1; რიცხვი 2;...რიცხვი 30</emph> არის დიაპაზონის ციფრული მნიშვნელობები."
-#. #Ic!
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -9993,7 +8981,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. Q2J-
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10003,7 +8990,6 @@ msgctxt ""
msgid "<item type=\"input\">=MIN(A1:B100)</item> returns the smallest value in the list."
msgstr ""
-#. d*$4
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10012,7 +8998,6 @@ msgctxt ""
msgid "<bookmark_value>MINA function</bookmark_value>"
msgstr "<bookmark_value>MINA ფუნქცია</bookmark_value>"
-#. 0Gy$
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10022,7 +9007,6 @@ msgctxt ""
msgid "MINA"
msgstr "MINA"
-#. Z!-`
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10032,7 +9016,6 @@ msgctxt ""
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\">არგუმენტთა სიიდან აბრუნებს უდიდეს მნიშვნელობას. აქ შეიძლება ტექსტის შეყვანაც. ტექსტის მნიშვნელობაა 0.</ahelp>"
-#. 8,0J
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10041,7 +9024,6 @@ msgctxt ""
msgid "The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered."
msgstr ""
-#. q(U5
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10051,7 +9033,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. ;F+A
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10061,7 +9042,6 @@ msgctxt ""
msgid "MINA(Value1; Value2; ... Value30)"
msgstr "MINA(მნიშვნელობა 1; მნიშვნელობა 2; ... მნიშვნელობა 30)"
-#. 9IC1
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10071,7 +9051,6 @@ msgctxt ""
msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
msgstr "<emph>მნიშვნელობა 1; მნიშვნელობა 2;...მნიშვნელობა 30</emph> არის მნიშვნელობები ან დიაპაზონები. ტექსტს აქვს მნიშვნელობა 0."
-#. [JI$
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10081,7 +9060,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. snBh
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10091,7 +9069,6 @@ msgctxt ""
msgid "<item type=\"input\">=MINA(1;\"Text\";20)</item> returns 0."
msgstr ""
-#. 1!o;
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10101,7 +9078,6 @@ msgctxt ""
msgid "<item type=\"input\">=MINA(A1:B100)</item> returns the smallest value in the list."
msgstr ""
-#. !Sr0
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10110,7 +9086,6 @@ msgctxt ""
msgid "<bookmark_value>AVEDEV function</bookmark_value><bookmark_value>averages;statistical functions</bookmark_value>"
msgstr "<bookmark_value>AVEDEV ფუნქცია</bookmark_value><bookmark_value>საშუალო არითეტიკულები;სტატისტიკური ფუნქციები</bookmark_value>"
-#. 1E8p
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10120,7 +9095,6 @@ msgctxt ""
msgid "AVEDEV"
msgstr "AVEDEV"
-#. W?oJ
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10130,7 +9104,6 @@ msgctxt ""
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 ""
-#. 4@RB
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10140,7 +9113,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. 3a[6
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10150,7 +9122,6 @@ msgctxt ""
msgid "AVEDEV(Number1; Number2; ...Number30)"
msgstr "AVEDEV(რიცხვი 1; რიცხვი 2; ...რიცხვი 30)"
-#. AQ%t
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10160,7 +9131,6 @@ msgctxt ""
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>რიცხვი 1; რიცხვი 2;...რიცხვი 30</emph> არის მნიშვნელობები ან დიაპაზონები, რომლებიც ასახავს შერჩევას. ყოველი რიცხვი შეიძლება ასახავდეს მითითებას."
-#. {qIP
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10170,7 +9140,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. GIVz
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10180,7 +9149,6 @@ msgctxt ""
msgid "<item type=\"input\">=AVEDEV(A1:A50)</item>"
msgstr ""
-#. Dk:4
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10189,7 +9157,6 @@ msgctxt ""
msgid "<bookmark_value>AVERAGE function</bookmark_value>"
msgstr "<bookmark_value> AVERAGE ფუნქცია</bookmark_value>"
-#. (MXx
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10199,7 +9166,6 @@ msgctxt ""
msgid "AVERAGE"
msgstr "AVERAGE"
-#. 2D6O
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10209,7 +9175,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_MITTELWERT\">Returns the average of the arguments.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_MITTELWERT\">აბრუნებს არგუმენტთა საშუალო არითმეტიკულს.</ahelp>"
-#. ,B+Q
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10219,7 +9184,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. )p?t
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10229,7 +9193,6 @@ msgctxt ""
msgid "AVERAGE(Number1; Number2; ...Number30)"
msgstr "AVERAGE(რიცხვი 1; რიცხვი 2; ...რიცხვი 30)"
-#. F2e=
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10239,7 +9202,6 @@ msgctxt ""
msgid "<emph>Number1; Number2;...Number 0</emph> are numerical values or ranges."
msgstr "<emph>რიცხვი 1; რიცხვი 2;...რიცხვი 30</emph> არის დიაპაზონის ციფრული მნიშვნელობები."
-#. GIb6
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10249,7 +9211,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. t1F8
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10259,7 +9220,6 @@ msgctxt ""
msgid "<item type=\"input\">=AVERAGE(A1:A50)</item>"
msgstr ""
-#. SH)u
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10268,7 +9228,6 @@ msgctxt ""
msgid "<bookmark_value>AVERAGEA function</bookmark_value>"
msgstr "<bookmark_value>AVERAGEA ფუნქცია</bookmark_value>"
-#. ^ImW
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10278,7 +9237,6 @@ msgctxt ""
msgid "AVERAGEA"
msgstr "AVERAGEA"
-#. IR0/
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10288,7 +9246,6 @@ msgctxt ""
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\">აბრუნებს არგუმენტთა საშუალო არითმეტიკულს. ტექსტის მნიშვნელობაა 0.</ahelp>"
-#. RY8o
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10298,7 +9255,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. PzAJ
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10308,7 +9264,6 @@ msgctxt ""
msgid "AVERAGEA(Value1; Value2; ... Value30)"
msgstr "AVERAGEA(მნიშვნელობა 1; მნიშვნელობა 2; ... მნიშვნელობა 30)"
-#. .phJ
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10318,7 +9273,6 @@ msgctxt ""
msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
msgstr "<emph>მნიშვნელობა 1; მნიშვნელობა 2;...მნიშვნელობა 30</emph> არის მნიშვნელობები ან დიაპაზონები. ტექსტს აქვს მნიშვნელობა 0."
-#. 8[6}
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10328,7 +9282,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. yH@,
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10338,7 +9291,6 @@ msgctxt ""
msgid "<item type=\"input\">=AVERAGEA(A1:A50)</item>"
msgstr ""
-#. XT0/
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10347,7 +9299,6 @@ msgctxt ""
msgid "<bookmark_value>MODE function</bookmark_value><bookmark_value>most common value</bookmark_value>"
msgstr "<bookmark_value>MODE ფუნქცია</bookmark_value><bookmark_value>ყველაზე ჩვეულებრივი მნიშვნელობა</bookmark_value>"
-#. mD\T
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10357,7 +9308,6 @@ msgctxt ""
msgid "MODE"
msgstr "MODE"
-#. bWP]
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10367,7 +9317,6 @@ msgctxt ""
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 ""
-#. }TY*
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10377,7 +9326,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. uwSI
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10387,7 +9335,6 @@ msgctxt ""
msgid "MODE(Number1; Number2; ...Number30)"
msgstr "MODE(რიცხვი 1; რიცხვი 2; ...რიცხვი 30)"
-#. G,8(
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10397,7 +9344,6 @@ msgctxt ""
msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
msgstr "<emph>რიცხვი 1; რიცხვი 2;...რიცხვი 30</emph> არის დიაპაზონის ციფრული მნიშვნელობები."
-#. mw5k
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10407,7 +9353,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. B.6h
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10417,7 +9362,6 @@ msgctxt ""
msgid "<item type=\"input\">=MODE(A1:A50)</item>"
msgstr ""
-#. 3Jf5
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10426,7 +9370,6 @@ msgctxt ""
msgid "<bookmark_value>NEGBINOMDIST function</bookmark_value><bookmark_value>negative binomial distribution</bookmark_value>"
msgstr "<bookmark_value>NEGBINOMDIST ფუნქცია</bookmark_value><bookmark_value>ბინომინალური განაწილების უარყოფა</bookmark_value>"
-#. l[W.
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10436,7 +9379,6 @@ msgctxt ""
msgid "NEGBINOMDIST"
msgstr "NEGBINOMDIST"
-#. 2Zs?
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10446,7 +9388,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Returns the negative binomial distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">აბრუნებს უარყოფით ბინომინალურ განაწილებას.</ahelp>"
-#. aAUV
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10456,7 +9397,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. z#_y
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10466,7 +9406,6 @@ msgctxt ""
msgid "NEGBINOMDIST(X; R; SP)"
msgstr "NEGBINOMDIST(X; R; SP)"
-#. D8[.
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10476,7 +9415,6 @@ msgctxt ""
msgid "<emph>X</emph> represents the value returned for unsuccessful tests."
msgstr "<emph>X</emph> ასახავს წარუმატებელი ცდების შედეგებს."
-#. l@AJ
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10486,7 +9424,6 @@ msgctxt ""
msgid "<emph>R</emph> represents the value returned for successful tests."
msgstr "<emph>R</emph> ასახავს წარმატებელი ცდების შედეგებს."
-#. ]Hp.
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10496,7 +9433,6 @@ msgctxt ""
msgid "<emph>SP</emph> is the probability of the success of an attempt."
msgstr "<emph>SP</emph> არის ცდის წარმატების ალბათობა."
-#. JDCk
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10506,7 +9442,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. c@9N
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10516,7 +9451,6 @@ msgctxt ""
msgid "<item type=\"input\">=NEGBINOMDIST(1;1;0.5)</item> returns 0.25."
msgstr ""
-#. \ne=
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10525,7 +9459,6 @@ msgctxt ""
msgid "<bookmark_value>NORMINV function</bookmark_value><bookmark_value>normal distribution;inverse of</bookmark_value>"
msgstr "<bookmark_value>NORMINV ფუნქცია</bookmark_value><bookmark_value>ნომინალური განაწილება;შებრუნება</bookmark_value>"
-#. JArK
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10535,7 +9468,6 @@ msgctxt ""
msgid "NORMINV"
msgstr "NORMINV"
-#. kw?T
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10545,7 +9477,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_NORMINV\">Returns the inverse of the normal cumulative distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_NORMINV\">აბრუნებს ნორმალური კუმულაციური განაწილების ინვერსიას.</ahelp>"
-#. lEwk
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10555,7 +9486,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. 6/cb
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10565,7 +9495,6 @@ msgctxt ""
msgid "NORMINV(Number; Mean; StDev)"
msgstr "NORMINV(რიცხვი; მნიშვნელობა; STDEV)"
-#. 7dmD
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10575,7 +9504,6 @@ msgctxt ""
msgid "<emph>Number</emph> represents the probability value used to determine the inverse normal distribution."
msgstr "<emph>რიცხვი</emph> ასახავს ალბათონის მნიშვნელობას ნორმალური განაწილების ინვერსიისთვის."
-#. )GOp
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10585,7 +9513,6 @@ msgctxt ""
msgid "<emph>Mean</emph> represents the mean value in the normal distribution."
msgstr "<emph>საშუალო</emph> ასახავს ნორმალური განაწილების საშუალოს."
-#. %#u8
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10595,7 +9522,6 @@ msgctxt ""
msgid "<emph>StDev</emph> represents the standard deviation of the normal distribution."
msgstr "<emph>STDEV</emph> ასახავს ნორმალური განაწილების სტანდარტულ გადახრას."
-#. qPqe
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10605,7 +9531,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. 3yFx
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10615,7 +9540,6 @@ msgctxt ""
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 ""
-#. (DO9
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10624,7 +9548,6 @@ msgctxt ""
msgid "<bookmark_value>NORMDIST function</bookmark_value><bookmark_value>density function</bookmark_value>"
msgstr "<bookmark_value>NORMDIST ფუნქცია</bookmark_value><bookmark_value>სიმკვრივის ფუნქცია</bookmark_value>"
-#. WVj[
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10634,7 +9557,6 @@ msgctxt ""
msgid "NORMDIST"
msgstr "NORMDIST"
-#. .@]@
#: 04060184.xhp
#, fuzzy
msgctxt ""
@@ -10645,7 +9567,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_NORMVERT\">Returns the density function or the normal cumulative distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_NORMINV\">აბრუნებს ნორმალური კუმულაციური განაწილების ინვერსიას.</ahelp>"
-#. ogU(
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10655,7 +9576,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. P55%
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10665,7 +9585,6 @@ msgctxt ""
msgid "NORMDIST(Number; Mean; StDev; C)"
msgstr "NORMDIST(რიცხვი; მნიშვნელობა; STDEV; C)"
-#. Dh|G
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10675,7 +9594,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the value of the distribution based on which the normal distribution is to be calculated."
msgstr ""
-#. CKC;
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10685,7 +9603,6 @@ msgctxt ""
msgid "<emph>Mean</emph> is the mean value of the distribution."
msgstr "<emph>საშუალო</emph> არის განაწილების საშუალო."
-#. r2*=
#: 04060184.xhp
#, fuzzy
msgctxt ""
@@ -10696,7 +9613,6 @@ msgctxt ""
msgid "<emph>StDev</emph> is the standard deviation of the distribution."
msgstr "<emph>STDEV</emph> არის ნორმალური განაწილების სტანდარტული გადახრა."
-#. Q12M
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10706,7 +9622,6 @@ msgctxt ""
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> = 0 გამოთვლის სიმკვრივის ფუნქციას <emph>C</emph> = 1 განაწილება."
-#. Kl?N
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10716,7 +9631,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. 1re]
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10726,7 +9640,6 @@ msgctxt ""
msgid "<item type=\"input\">=NORMDIST(70;63;5;0)</item> returns 0.03."
msgstr ""
-#. W}Uo
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10736,7 +9649,6 @@ msgctxt ""
msgid "<item type=\"input\">=NORMDIST(70;63;5;1)</item> returns 0.92."
msgstr ""
-#. 8]OH
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10745,7 +9657,6 @@ msgctxt ""
msgid "<bookmark_value>PEARSON function</bookmark_value>"
msgstr "<bookmark_value>PEARSON ფუნქცია</bookmark_value>"
-#. Ur.E
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10755,7 +9666,6 @@ msgctxt ""
msgid "PEARSON"
msgstr "PEARSON"
-#. ,Swr
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10765,7 +9675,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_PEARSON\">Returns the Pearson product moment correlation coefficient r.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_PEARSON\">აბრუნებს r კორელაციის კოეფიციენტის პირსონის ნამრავლს.</ahelp>"
-#. hk\=
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10775,7 +9684,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. =D]e
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10785,7 +9693,6 @@ msgctxt ""
msgid "PEARSON(Data1; Data2)"
msgstr "PEARSON(მონაცემები_1; მონაცემები_2)"
-#. #!LL
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10795,7 +9702,6 @@ msgctxt ""
msgid "<emph>Data1</emph> represents the array of the first data set."
msgstr "<emph>მონაცემები_1</emph> მონაცემთა პირველი წყობის მასივს ასახავს."
-#. qjkA
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10805,7 +9711,6 @@ msgctxt ""
msgid "<emph>Data2</emph> represents the array of the second data set."
msgstr "<emph>მონაცემები_2</emph> მონაცემთა მეორე წყობის მასივს ასახავს."
-#. c.2.
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10815,7 +9720,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. |M,Q
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10825,7 +9729,6 @@ msgctxt ""
msgid "<item type=\"input\">=PEARSON(A1:A30;B1:B30)</item> returns the Pearson correlation coefficient of both data sets."
msgstr "=PEARSON(A1:A30; B1:B30) აბრუნებს მონაცემთა ორივე წყობისთვის პირსონის კორელაციის კოეფიციენტს."
-#. nrds
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10834,7 +9737,6 @@ msgctxt ""
msgid "<bookmark_value>PHI function</bookmark_value>"
msgstr "<bookmark_value>PHI ფუნქცია</bookmark_value>"
-#. A_O0
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10844,7 +9746,6 @@ msgctxt ""
msgid "PHI"
msgstr "PHI"
-#. e=kf
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10854,7 +9755,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_PHI\">Returns the values of the distribution function for a standard normal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_PHI\">აბრუნებს სტანდარტული ნორმალური განაწილბის განაწილების ფუნქციის მნიშვნელობას.</ahelp>"
-#. [,Is
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10864,7 +9764,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. (Bl8
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10874,7 +9773,6 @@ msgctxt ""
msgid "PHI(Number)"
msgstr "PHI(რიცხვი)"
-#. #$hr
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10884,7 +9782,6 @@ msgctxt ""
msgid "<emph>Number</emph> represents the value based on which the standard normal distribution is calculated."
msgstr "<emph>რიცხვი</emph> ასახავს მნიშვნელობას, რომელზე დაყრდნობით გამოითვლება სტანდარტული ნორმალური გადახრა."
-#. avo-
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10894,7 +9791,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. $Td,
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10904,7 +9800,6 @@ msgctxt ""
msgid "<item type=\"input\">=PHI(2.25) </item>= 0.03"
msgstr ""
-#. _$_$
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10914,7 +9809,6 @@ msgctxt ""
msgid "<item type=\"input\">=PHI(-2.25)</item> = 0.03"
msgstr ""
-#. gBJ^
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10924,7 +9818,6 @@ msgctxt ""
msgid "<item type=\"input\">=PHI(0)</item> = 0.4"
msgstr ""
-#. `JbH
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10933,7 +9826,6 @@ msgctxt ""
msgid "<bookmark_value>POISSON function</bookmark_value>"
msgstr "<bookmark_value>POISSON ფუნქცია</bookmark_value>"
-#. B.ZL
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10943,7 +9835,6 @@ msgctxt ""
msgid "POISSON"
msgstr "POISSON"
-#. 0k]E
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10953,7 +9844,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_POISSON\">Returns the Poisson distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_POISSON\">აბრუნებს პოიზონის განაწილებას.</ahelp>"
-#. Z76i
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10963,7 +9853,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. Ns7^
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10973,7 +9862,6 @@ msgctxt ""
msgid "POISSON(Number; Mean; C)"
msgstr "POISSON(რიცხვი; მნიშვნელობა; C)"
-#. ;*O7
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10983,7 +9871,6 @@ msgctxt ""
msgid "<emph>Number</emph> represents the value based on which the Poisson distribution is calculated."
msgstr "<emph>რიცხვი</emph> ასახავს მნიშვნელობას, რომელზე დაყრდნობით გამოითვლება პოიზონის განაწილება."
-#. 39Y)
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -10993,7 +9880,6 @@ msgctxt ""
msgid "<emph>Mean</emph> represents the middle value of the Poisson distribution."
msgstr "<emph>საშუალო</emph> ასახავს პოიზონის განაწილების საშუალო მნისვნელობას."
-#. nC8+
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11003,7 +9889,6 @@ msgctxt ""
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 ""
-#. J2C!
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11013,7 +9898,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. O{co
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11023,7 +9907,6 @@ msgctxt ""
msgid "<item type=\"input\">=POISSON(60;50;1)</item> returns 0.93."
msgstr ""
-#. qmbT
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11032,7 +9915,6 @@ msgctxt ""
msgid "<bookmark_value>PERCENTILE function</bookmark_value>"
msgstr "<bookmark_value>PERCENTILE ფუნქცია</bookmark_value>"
-#. qC=N
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11042,7 +9924,6 @@ msgctxt ""
msgid "PERCENTILE"
msgstr "PERCENTILE"
-#. e{j2
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11052,7 +9933,6 @@ msgctxt ""
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 ""
-#. $u?h
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11062,7 +9942,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. Ns8(
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11072,7 +9951,6 @@ msgctxt ""
msgid "PERCENTILE(Data; Alpha)"
msgstr "PERCENTILE(მონაცემები;ალფა)"
-#. 7mwm
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11082,7 +9960,6 @@ msgctxt ""
msgid "<emph>Data</emph> represents the array of data."
msgstr "<emph>მონაცემები</emph> მონაცემთა მასივის ასახვა."
-#. Wa`c
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11092,7 +9969,6 @@ msgctxt ""
msgid "<emph>Alpha</emph> represents the percentage of the scale between 0 and 1."
msgstr ""
-#. MHn7
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11102,7 +9978,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. 4St7
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11112,7 +9987,6 @@ msgctxt ""
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 ""
-#. aV]P
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11121,7 +9995,6 @@ msgctxt ""
msgid "<bookmark_value>PERCENTRANK function</bookmark_value>"
msgstr "<bookmark_value>PERCENTRANK ფუნქცია</bookmark_value>"
-#. b@`V
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11131,7 +10004,6 @@ msgctxt ""
msgid "PERCENTRANK"
msgstr "PERCENTRANK"
-#. \cep
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11141,7 +10013,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_QUANTILSRANG\">Returns the percentage rank of a value in a sample.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_QUANTILSRANG\">აბრუნებს შერჩევასი მნიშვნელობის პროცენტულ რანგს.</ahelp>"
-#. 3Y$]
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11151,7 +10022,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. nIi_
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11161,7 +10031,6 @@ msgctxt ""
msgid "PERCENTRANK(Data; Value)"
msgstr "PERCENTRANK(მონაცემები; მნიშვნელობა)"
-#. ni!U
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11171,7 +10040,6 @@ msgctxt ""
msgid "<emph>Data</emph> represents the array of data in the sample."
msgstr "<emph>მონაცემი</emph> ასახავს შერჩევაში მონაცემთა მასივს."
-#. 6.}F
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11181,7 +10049,6 @@ msgctxt ""
msgid "<emph>Value</emph> represents the value whose percentile rank must be determined."
msgstr "<emph>მნიშვნელობა</emph> ასახავს მნიშვნელობას რომლის პროცენტული რანგი უნდა დადგინდეს."
-#. T/P]
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11191,7 +10058,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. mq5]
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11201,7 +10067,6 @@ msgctxt ""
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 ""
-#. $T@9
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11210,7 +10075,6 @@ msgctxt ""
msgid "<bookmark_value>QUARTILE function</bookmark_value>"
msgstr "<bookmark_value>QUARTILE ფუნქცია</bookmark_value>"
-#. M^/9
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11220,7 +10084,6 @@ msgctxt ""
msgid "QUARTILE"
msgstr "QUARTILE"
-#. |wHH
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11230,7 +10093,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_QUARTILE\">Returns the quartile of a data set.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_QUARTILE\">აბრუნებს მონაცემთა წყობის კვარტილს.</ahelp>"
-#. ;ZXr
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11240,7 +10102,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. D]@C
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11250,7 +10111,6 @@ msgctxt ""
msgid "QUARTILE(Data; Type)"
msgstr "QUARTILE(მონაცემები; ტიპი)"
-#. )Je9
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11260,7 +10120,6 @@ msgctxt ""
msgid "<emph>Data</emph> represents the array of data in the sample."
msgstr "<emph>მონაცემი</emph> ასახავს შერჩევაში მონაცემთა მასივს."
-#. W[j(
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11270,7 +10129,6 @@ msgctxt ""
msgid "<emph>Type</emph> represents the type of quartile. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% and 4 = MAX.)"
msgstr "<emph>ტიპი</emph> ასახავს კვარტილის ტიპს. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% and 4 = MAX.)"
-#. )Ac9
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11280,7 +10138,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. 2pTa
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
@@ -11290,7 +10147,6 @@ msgctxt ""
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 ""
-#. h:`q
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11299,7 +10155,6 @@ msgctxt ""
msgid "Operators in $[officename] Calc"
msgstr "$[officename] Calc-ში ოპერატორები"
-#. BX?a
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11308,7 +10163,6 @@ msgctxt ""
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 ""
-#. KI~.
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11318,7 +10172,6 @@ msgctxt ""
msgid "Operators in $[officename] Calc"
msgstr "$[officename] Calc-ში ოპერატორები"
-#. $a+*
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11328,7 +10181,6 @@ msgctxt ""
msgid "You can use the following operators in $[officename] Calc:"
msgstr "$[officename] Calc-ში შემდეგი ოპერატორები გამოიყენეთ:"
-#. d6.!
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11338,7 +10190,6 @@ msgctxt ""
msgid "Arithmetical Operators"
msgstr "არითმეტიკული ოპერატორები"
-#. /EGM
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11348,7 +10199,6 @@ msgctxt ""
msgid "These operators return numerical results."
msgstr "აბრუნებს რიცხობროვ შედეგს."
-#. !xd3
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11358,7 +10208,6 @@ msgctxt ""
msgid "Operator"
msgstr "ოპერატორი"
-#. kANp
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11368,7 +10217,6 @@ msgctxt ""
msgid "Name"
msgstr "სახელი"
-#. YnIH
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11378,7 +10226,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. NzQ^
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11388,7 +10235,6 @@ msgctxt ""
msgid "+ (Plus)"
msgstr "+ (პლუსი)"
-#. $5}-
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11398,7 +10244,6 @@ msgctxt ""
msgid "Addition"
msgstr "მიმატება"
-#. Z/2b
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11408,7 +10253,6 @@ msgctxt ""
msgid "1+1"
msgstr "1+1"
-#. (,SX
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11418,7 +10262,6 @@ msgctxt ""
msgid "- (Minus)"
msgstr "- (მინუსი)"
-#. s5HU
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11428,7 +10271,6 @@ msgctxt ""
msgid "Subtraction"
msgstr "გამოკლება"
-#. @wqV
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11438,7 +10280,6 @@ msgctxt ""
msgid "2-1"
msgstr "2-1"
-#. dM[Y
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11448,7 +10289,6 @@ msgctxt ""
msgid "- (Minus)"
msgstr "- (მინუსი)"
-#. #}IH
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11458,7 +10298,6 @@ msgctxt ""
msgid "Negation"
msgstr "უარყოფა"
-#. 2R{(
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11468,7 +10307,6 @@ msgctxt ""
msgid "-5"
msgstr "-5"
-#. jpQ%
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11478,7 +10316,6 @@ msgctxt ""
msgid "* (asterisk)"
msgstr "* (ვარლსკვავი)"
-#. 0$hT
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11488,7 +10325,6 @@ msgctxt ""
msgid "Multiplication"
msgstr "გამრავლება"
-#. @OKk
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11498,7 +10334,6 @@ msgctxt ""
msgid "2*2"
msgstr "2*2"
-#. 3G1F
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11508,7 +10343,6 @@ msgctxt ""
msgid "/ (Slash)"
msgstr "/ (გაყოფა)"
-#. \\Z7
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11518,7 +10352,6 @@ msgctxt ""
msgid "Division"
msgstr "გაყოფა"
-#. J^5T
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11528,7 +10361,6 @@ msgctxt ""
msgid "9/3"
msgstr "9/3"
-#. 7TV.
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11538,7 +10370,6 @@ msgctxt ""
msgid "% (Percent)"
msgstr "% (პროცენტი)"
-#. ToPg
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11548,7 +10379,6 @@ msgctxt ""
msgid "Percent"
msgstr "პროცენტი"
-#. 55ax
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11558,7 +10388,6 @@ msgctxt ""
msgid "15%"
msgstr "15%"
-#. QX6d
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11568,7 +10397,6 @@ msgctxt ""
msgid "^ (Caret)"
msgstr ""
-#. `DK,
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11578,7 +10406,6 @@ msgctxt ""
msgid "Exponentiation"
msgstr "ახარისხება"
-#. tJ}{
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11588,7 +10415,6 @@ msgctxt ""
msgid "3^2"
msgstr "3^2"
-#. T.Qv
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11598,7 +10424,6 @@ msgctxt ""
msgid "Comparative operators"
msgstr "შემადარებელი ოპერატორები"
-#. OPQA
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11608,7 +10433,6 @@ msgctxt ""
msgid "These operators return either true or false."
msgstr "ეს ოპერატორები აბრუნებენ ჭეშმარიტს ან მცდარს."
-#. *=E,
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11618,7 +10442,6 @@ msgctxt ""
msgid "Operator"
msgstr "ოპერატორი"
-#. ]l=W
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11628,7 +10451,6 @@ msgctxt ""
msgid "Name"
msgstr "სახელი"
-#. @0Pc
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11638,7 +10460,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. v#nb
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11648,7 +10469,6 @@ msgctxt ""
msgid "= (equal sign)"
msgstr "= (ტოლობის ნიშანი)"
-#. jkOm
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11658,7 +10478,6 @@ msgctxt ""
msgid "Equal"
msgstr "ტოლია"
-#. yYpR
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11668,7 +10487,6 @@ msgctxt ""
msgid "A1=B1"
msgstr "A1=B1"
-#. 18TZ
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11678,7 +10496,6 @@ msgctxt ""
msgid "> (Greater than)"
msgstr "> (მეტია ვიდრე)"
-#. MxW!
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11688,7 +10505,6 @@ msgctxt ""
msgid "Greater than"
msgstr "მეტია ვიდრე"
-#. gDa+
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11698,7 +10514,6 @@ msgctxt ""
msgid "A1>B1"
msgstr "A1>B1"
-#. rqvC
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11708,7 +10523,6 @@ msgctxt ""
msgid "< (Less than)"
msgstr "< (ნაკლებია ვიდრე)"
-#. RZa9
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11718,7 +10532,6 @@ msgctxt ""
msgid "Less than"
msgstr "ნაკლებია ვიდრე"
-#. Dd-j
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11728,7 +10541,6 @@ msgctxt ""
msgid "A1<B1"
msgstr "A1<B1"
-#. 6`8d
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11738,7 +10550,6 @@ msgctxt ""
msgid ">= (Greater than or equal to)"
msgstr ">= (მეტია ან ტოლია)"
-#. X`4c
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11748,7 +10559,6 @@ msgctxt ""
msgid "Greater than or equal to"
msgstr "მეტია ან ტოლია"
-#. Qjn@
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11758,7 +10568,6 @@ msgctxt ""
msgid "A1>=B1"
msgstr "A1>=B1"
-#. 7TCN
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11768,7 +10577,6 @@ msgctxt ""
msgid "<= (Less than or equal to)"
msgstr "<= (ნაკლებია ან ტოლია)"
-#. fAiJ
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11778,7 +10586,6 @@ msgctxt ""
msgid "Less than or equal to"
msgstr "ნაკლებია ან ტოლია"
-#. 12Dq
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11788,7 +10595,6 @@ msgctxt ""
msgid "A1<=B1"
msgstr "A1<=B1"
-#. ~=OE
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11798,7 +10604,6 @@ msgctxt ""
msgid "<> (Inequality)"
msgstr "<> (სხვაობა)"
-#. NVdC
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11808,7 +10613,6 @@ msgctxt ""
msgid "Inequality"
msgstr "სხვაობა"
-#. -KzZ
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11818,7 +10622,6 @@ msgctxt ""
msgid "A1<>B1"
msgstr "A1<>B1"
-#. #_ND
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11828,7 +10631,6 @@ msgctxt ""
msgid "Text operators"
msgstr "ტექსტის ოპერატორები"
-#. %PP}
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11838,7 +10640,6 @@ msgctxt ""
msgid "The operator combines separate texts into one text."
msgstr "ეს ოპერატორი განცალკევებულ ტექსტს ერთ ტექსტად აერთიანებს."
-#. 6PH0
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11848,7 +10649,6 @@ msgctxt ""
msgid "Operator"
msgstr "ოპერატორი"
-#. ;D)K
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11858,7 +10658,6 @@ msgctxt ""
msgid "Name"
msgstr "სახელი"
-#. T9al
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11868,7 +10667,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. Yf|a
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11878,7 +10676,6 @@ msgctxt ""
msgid "& (And)"
msgstr "& (და)"
-#. Ul^4
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11887,7 +10684,6 @@ msgctxt ""
msgid "<bookmark_value>text concatenation AND</bookmark_value>"
msgstr "<bookmark_value>ტექსტის გაერთიანება AND</bookmark_value>"
-#. Zr^0
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11897,7 +10693,6 @@ msgctxt ""
msgid "text concatenation AND"
msgstr "ტექსტის გაერთიანება AND"
-#. It5Z
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11907,7 +10702,6 @@ msgctxt ""
msgid "\"Sun\" & \"day\" is \"Sunday\""
msgstr "\"ორ\" & \"შაბათი\" არის \"ორშაბათი\""
-#. 1dMJ
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11917,7 +10711,6 @@ msgctxt ""
msgid "Reference operators"
msgstr "მითითების ოპერატორები"
-#. ss+=
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11927,7 +10720,6 @@ msgctxt ""
msgid "These operators return a cell range of zero, one or more cells."
msgstr ""
-#. 2B)t
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11936,7 +10728,6 @@ msgctxt ""
msgid "Range has the highest precedence, then intersection, and then finally union."
msgstr ""
-#. I$2}
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11946,7 +10737,6 @@ msgctxt ""
msgid "Operator"
msgstr "ოპერატორი"
-#. 2Y:p
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11956,7 +10746,6 @@ msgctxt ""
msgid "Name"
msgstr "სახელი"
-#. Uiyj
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11966,7 +10755,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. Pnl]
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11976,7 +10764,6 @@ msgctxt ""
msgid ": (Colon)"
msgstr ": (ორი წერტილი)"
-#. 0f.[
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11986,7 +10773,6 @@ msgctxt ""
msgid "Range"
msgstr "დიაპაზონი"
-#. )ur~
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -11996,7 +10782,6 @@ msgctxt ""
msgid "A1:C108"
msgstr "A1:C108"
-#. ):8K
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12006,7 +10791,6 @@ msgctxt ""
msgid "! (Exclamation point)"
msgstr "! (ძახილის ნიშანი)"
-#. P#\D
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12015,7 +10799,6 @@ msgctxt ""
msgid "<bookmark_value>intersection operator</bookmark_value>"
msgstr "<bookmark_value>თანაკვეთის ოპერაცია</bookmark_value>"
-#. Hm?N
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12025,7 +10808,6 @@ msgctxt ""
msgid "Intersection"
msgstr "თანაკვეთა"
-#. t#?h
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12035,7 +10817,6 @@ msgctxt ""
msgid "SUM(A1:B6!B5:C12)"
msgstr "SUM(A1:B6!B5:C12)"
-#. Pj5^
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12045,7 +10826,6 @@ msgctxt ""
msgid "Calculates the sum of all cells in the intersection; in this example, the result yields the sum of cells B5 and B6."
msgstr ""
-#. vw0N
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12054,7 +10834,6 @@ msgctxt ""
msgid "~ (Tilde)"
msgstr ""
-#. S84-
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12063,7 +10842,6 @@ msgctxt ""
msgid "Concatenation or union"
msgstr ""
-#. D)QK
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12072,7 +10850,6 @@ msgctxt ""
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 ""
-#. FU6L
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
@@ -12081,7 +10858,6 @@ msgctxt ""
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 ""
-#. XQEV
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12090,7 +10866,6 @@ msgctxt ""
msgid "WEEKDAY"
msgstr "WEEKDAY"
-#. f#2h
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12099,7 +10874,6 @@ msgctxt ""
msgid "<bookmark_value>WEEKDAY function</bookmark_value>"
msgstr "<bookmark_value>WEEKDAY ფუნქცია</bookmark_value>"
-#. /M.T
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12109,7 +10883,6 @@ msgctxt ""
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>"
-#. KV1\
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12119,7 +10892,6 @@ msgctxt ""
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 ""
-#. h#.V
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12129,7 +10901,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. ^!mD
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12139,7 +10910,6 @@ msgctxt ""
msgid "WEEKDAY(Number; Type)"
msgstr "WEEKDAY(ნომერი; ტიპი)"
-#. vY1m
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12149,7 +10919,6 @@ msgctxt ""
msgid "<emph>Number</emph>, as a date value, is a decimal for which the weekday is to be returned."
msgstr "<emph>რიცხვი</emph>, როგორც თარიღის მნიშვნელობა; არის ათწილადი, რომლითაც კვირის დღე ბრუნდება."
-#. x4.b
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12159,7 +10928,6 @@ msgctxt ""
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 ""
-#. HH=S
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12169,7 +10937,6 @@ msgctxt ""
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 ""
-#. 1mPF
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12179,7 +10946,6 @@ msgctxt ""
msgid "Examples"
msgstr "მაგალითები"
-#. )8J1
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12189,7 +10955,6 @@ msgctxt ""
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 ""
-#. *4l-
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12199,7 +10964,6 @@ msgctxt ""
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 ""
-#. LHX#
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12209,7 +10973,6 @@ msgctxt ""
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 ""
-#. H;k*
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12219,7 +10982,6 @@ msgctxt ""
msgid "=WEEKDAY(NOW()) returns the number of the current day."
msgstr "WEEKDAY(NOW()) აბრუნებს მიმდინარე დღის რიცხვს."
-#. bkIY
#: func_weekday.xhp
msgctxt ""
"func_weekday.xhp\n"
@@ -12229,7 +10991,6 @@ msgctxt ""
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 ""
-#. v*5%
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12238,7 +10999,6 @@ msgctxt ""
msgid "Consolidate by"
msgstr "კონსოლიდაცია"
-#. ^r^n
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12248,7 +11008,6 @@ msgctxt ""
msgid "Consolidate by"
msgstr "კონსოლიდაცია"
-#. O%Gv
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12258,7 +11017,6 @@ msgctxt ""
msgid "Consolidate by"
msgstr "კონსოლიდაცია"
-#. XdtP
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12268,7 +11026,6 @@ msgctxt ""
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 ""
-#. u,3#
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12278,7 +11035,6 @@ msgctxt ""
msgid "Row labels"
msgstr "რიგების ეტიკეტები"
-#. )9s!
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12288,7 +11044,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYROW\" visibility=\"visible\">Uses the row labels to arrange the consolidated data.</ahelp>"
msgstr ""
-#. N/d~
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12298,7 +11053,6 @@ msgctxt ""
msgid "Column labels"
msgstr "სვეტის ეტიკეტები"
-#. z#Q+
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12308,7 +11062,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYCOL\" visibility=\"visible\">Uses the column labels to arrange the consolidated data.</ahelp>"
msgstr ""
-#. :5cb
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12318,7 +11071,6 @@ msgctxt ""
msgid "Options"
msgstr "პარამეტრები"
-#. Um*8
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12328,7 +11080,6 @@ msgctxt ""
msgid "Link to source data"
msgstr "ბმული წყაროს მონაცემებზე"
-#. jHF.
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12338,7 +11089,6 @@ msgctxt ""
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 ""
-#. Eur]
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12348,7 +11098,6 @@ msgctxt ""
msgid "More <<"
msgstr "დამატებით <<"
-#. uzBj
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
@@ -12358,7 +11107,6 @@ msgctxt ""
msgid "Hides the additional options."
msgstr "მალავს დამატებით პარამეტრებს."
-#. =bYy
#: 05080100.xhp
msgctxt ""
"05080100.xhp\n"
@@ -12367,7 +11115,6 @@ msgctxt ""
msgid "Define"
msgstr "განსაზღვრა"
-#. jh6^
#: 05080100.xhp
msgctxt ""
"05080100.xhp\n"
@@ -12377,7 +11124,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05080100.xhp\" name=\"Define\">Define</link>"
msgstr "<link href=\"text/scalc/01/05080100.xhp\" name=\"Define\">განსაზღვრა</link>"
-#. ;4(J
#: 05080100.xhp
msgctxt ""
"05080100.xhp\n"
@@ -12387,7 +11133,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DefinePrintArea\">Defines an active cell or selected cell area as the print range.</ahelp>"
msgstr "<ahelp hid=\".uno:DefinePrintArea\">საზღვრავს აქტიურ უჯრათა არეს ან მონიშნულ უჯრებს როგორც საბეჭდ არეს.</ahelp>"
-#. pZU/
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12396,7 +11141,6 @@ msgctxt ""
msgid "Date & Time Functions"
msgstr "დროს და თარიღი ფუნქციები"
-#. \.Q*
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12405,7 +11149,6 @@ msgctxt ""
msgid "<bookmark_value>date and time functions</bookmark_value><bookmark_value>functions; date & time</bookmark_value><bookmark_value>Function Wizard; date & time</bookmark_value>"
msgstr "<bookmark_value>დროის და თარიღის ფუნქციები</bookmark_value><bookmark_value>ფუნქციები; თარიღი და დრო</bookmark_value><bookmark_value>ფუნქციების ოსტატი; თარიღი და დრო</bookmark_value>"
-#. t5JY
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12415,7 +11158,6 @@ msgctxt ""
msgid "Date & Time Functions"
msgstr "დროს და თარიღი ფუნქციები"
-#. AmI0
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12425,7 +11167,6 @@ msgctxt ""
msgid "<variable id=\"datumzeittext\">These spreadsheet functions are used for inserting and editing dates and times. </variable>"
msgstr "<variable id=\"datumzeittext\">ელცხრილის ეს ფუნქციები გამოიყენება თარიღების და დროის ჩასასმელად და ჩასასწორებლად. </variable>"
-#. /H+a
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12434,7 +11175,6 @@ msgctxt ""
msgid "The functions whose names end with _ADD return the same results as the corresponding Microsoft Excel functions. Use the functions without _ADD to get results based on international standards. For example, the WEEKNUM function calculates the week number of a given date based on international standard ISO 8601, while WEEKNUM_ADD returns the same week number as Microsoft Excel."
msgstr ""
-#. _sEE
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12444,7 +11184,6 @@ msgctxt ""
msgid "$[officename] internally handles a date/time value as a numerical value. If you assign the numbering format \"Number\" to a date or time value, it is converted to a number. For example, 01/01/2000 12:00 PM, converts to 36526.5. The value preceding the decimal point corresponds to the date; the value following the decimal point corresponds to the time. If you do not want to see this type of numerical date or time representation, change the number format (date or time) accordingly. To do this, select the cell containing the date or time value, call its context menu and select <emph>Format Cells</emph>. The <emph>Numbers</emph> tab page contains the functions for defining the number format."
msgstr ""
-#. ,4lB
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12453,7 +11192,6 @@ msgctxt ""
msgid "Date base for day zero"
msgstr "საწყისი თარიღი ნულოვანი დღისთვის"
-#. ^3{`
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12462,7 +11200,6 @@ msgctxt ""
msgid "Dates are calculated as offsets from a starting day zero. You can set the day zero to be one of the following:"
msgstr "თარიღების გამოთვლა ხდება ნულოვან თარიღთან მიმართებაში. თქვენ შეგიძლიათ მიუთითოთ ნულოვანი დღე."
-#. r/0k
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12471,7 +11208,6 @@ msgctxt ""
msgid "Date base"
msgstr "საწყისი თარიღი"
-#. hkzV
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12480,7 +11216,6 @@ msgctxt ""
msgid "Use"
msgstr "გამოყენება"
-#. 3=n5
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12489,7 +11224,6 @@ msgctxt ""
msgid "'12/30/1899'"
msgstr "'12/30/99'"
-#. HJq_
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12498,7 +11232,6 @@ msgctxt ""
msgid "(default)"
msgstr "(ნაგულისხმევი)"
-#. {_%2
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12507,7 +11240,6 @@ msgctxt ""
msgid "'01/01/1900'"
msgstr "'01/01/00'"
-#. 3n-o
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12516,7 +11248,6 @@ msgctxt ""
msgid "(used in former StarCalc 1.0)"
msgstr "(გამოიყენებოდა ყოფილ StarCalc 1.0)"
-#. Chr9
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12525,7 +11256,6 @@ msgctxt ""
msgid "'01/01/1904'"
msgstr "'01/01/04'"
-#. wNN1
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12534,7 +11264,6 @@ msgctxt ""
msgid "(used in Apple software)"
msgstr "(გამოიყენება Apple პროგრამებში)"
-#. A@f3
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12543,7 +11272,6 @@ msgctxt ""
msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate</emph> to select the date base."
msgstr ""
-#. C_I;
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12552,7 +11280,6 @@ msgctxt ""
msgid "When you copy and paste cells containing date values between different spreadsheets, both spreadsheet documents must be set to the same date base. If date bases differ, the displayed date values will change!"
msgstr "ასლი და თარიღი არის შორის დოკუმენტები მინიჭება -სკენ თარიღი ფუძე თარიღი თარიღი შეცვლა!"
-#. [On8
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12561,7 +11288,6 @@ msgctxt ""
msgid "Two digits years"
msgstr "ორ ციფტიანი წლები"
-#. _g~,
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12571,7 +11297,6 @@ msgctxt ""
msgid "In <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - General</emph> you find the area <emph>Year (two digits)</emph>. This sets the period for which two-digit information applies. Note that changes made here have an effect on some of the following functions."
msgstr ""
-#. n2wR
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12581,7 +11306,6 @@ msgctxt ""
msgid "When entering dates, slashes or dashes used as date separators may be interpreted as arithmetic operators. Therefore, dates entered in this format are not always recognized as dates and result in erroneous calculations. To keep dates from being interpreted as parts of formulas, place them in quotation marks, for example, \"07/20/54\"."
msgstr ""
-#. cJw7
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12590,7 +11314,6 @@ msgctxt ""
msgid "Functions"
msgstr "ფუნქციები"
-#. {=@J
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12599,7 +11322,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_workday.xhp#workday\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_workday.xhp#workday\"/>"
-#. `dkm
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12608,7 +11330,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_yearfrac.xhp#yearfrac\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_yearfrac.xhp#yearfrac\"/>"
-#. dJ})
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12617,7 +11338,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_date.xhp#date\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_date.xhp#date\"/>"
-#. 74@p
#: 04060102.xhp
#, fuzzy
msgctxt ""
@@ -12627,7 +11347,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_datedif.xhp#datedif\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_date.xhp#date\"/>"
-#. ,h*?
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12636,7 +11355,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_datevalue.xhp#datevalue\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_datevalue.xhp#datevalue\"/>"
-#. T)9u
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12645,7 +11363,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_edate.xhp#edate\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_edate.xhp#edate\"/>"
-#. WK!l
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12654,7 +11371,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_today.xhp#today\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_today.xhp#today\"/>"
-#. rbwP
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12663,7 +11379,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_year.xhp#year\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_year.xhp#year\"/>"
-#. mc\E
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12672,7 +11387,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_now.xhp#now\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_now.xhp#now\"/>"
-#. [1jR
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12681,7 +11395,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_weeknum.xhp#weeknum\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_weeknum.xhp#weeknum\"/>"
-#. WAE5
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12690,7 +11403,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_weeknumadd.xhp#weeknumadd\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_weeknumadd.xhp#weeknumadd\"/>"
-#. _{~I
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12699,7 +11411,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_minute.xhp#minute\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_minute.xhp#minute\"/>"
-#. e,=f
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12708,7 +11419,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_month.xhp#month\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_month.xhp#month\"/>"
-#. dwTa
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12717,7 +11427,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_eomonth.xhp#eomonth\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_eomonth.xhp#eomonth\"/>"
-#. /rcm
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12726,7 +11435,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_networkdays.xhp#networkdays\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_networkdays.xhp#networkdays\"/>"
-#. (KX%
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12735,7 +11443,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_eastersunday.xhp#eastersunday\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_eastersunday.xhp#eastersunday\"/>"
-#. p,hT
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12744,7 +11451,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_second.xhp#second\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_second.xhp#second\"/>"
-#. 7fgN
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12753,7 +11459,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_hour.xhp#hour\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_hour.xhp#hour\"/>"
-#. \UUS
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12762,7 +11467,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_day.xhp#day\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_day.xhp#day\"/>"
-#. ?:xI
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12771,7 +11475,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_days.xhp#days\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_days.xhp#days\"/>"
-#. Jgtj
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12780,7 +11483,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_days360.xhp#days360\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_days360.xhp#days360\"/>"
-#. C#AW
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12789,7 +11491,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_weekday.xhp#weekday\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_weekday.xhp#weekday\"/>"
-#. PhqV
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12798,7 +11499,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_time.xhp#time\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_time.xhp#time\"/>"
-#. e.ZN
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
@@ -12807,7 +11507,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_timevalue.xhp#timevalue\"/>"
msgstr "<embedvar href=\"text/scalc/01/func_timevalue.xhp#timevalue\"/>"
-#. WD*`
#: 05030000.xhp
msgctxt ""
"05030000.xhp\n"
@@ -12816,7 +11515,6 @@ msgctxt ""
msgid "Row"
msgstr "რიგი"
-#. A*Sv
#: 05030000.xhp
msgctxt ""
"05030000.xhp\n"
@@ -12826,7 +11524,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05030000.xhp\" name=\"Row\">Row</link>"
msgstr "<link href=\"text/scalc/01/05030000.xhp\" name=\"Row\">რიგი</link>"
-#. jUGG
#: 05030000.xhp
msgctxt ""
"05030000.xhp\n"
@@ -12836,7 +11533,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Sets the row height and hides or shows selected rows.</ahelp>"
msgstr ""
-#. `l6[
#: 05030000.xhp
msgctxt ""
"05030000.xhp\n"
@@ -12846,7 +11542,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Height\">Height</link>"
msgstr "<link href=\"text/shared/01/05340100.xhp\" name=\"Height\">სიმაღლე</link>"
-#. @4eZ
#: 05030000.xhp
msgctxt ""
"05030000.xhp\n"
@@ -12856,7 +11551,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal Height\">Optimal Height</link>"
msgstr "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal Height\">ოპტიმალური სიმაღლე</link>"
-#. x`=(
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12865,7 +11559,6 @@ msgctxt ""
msgid "DAYS"
msgstr "DAYS"
-#. T\j5
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12874,7 +11567,6 @@ msgctxt ""
msgid "<bookmark_value>DAYS function</bookmark_value>"
msgstr "<bookmark_value>DAYS ფუნქცია</bookmark_value>"
-#. ql2^
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12884,7 +11576,6 @@ msgctxt ""
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>"
-#. -9vs
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12894,7 +11585,6 @@ msgctxt ""
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 ""
-#. ~}RP
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12904,7 +11594,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. ?fQQ
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12914,7 +11603,6 @@ msgctxt ""
msgid "DAYS(Date2; Date1)"
msgstr "DAYS(თარიღი_2;თარიღი_1)"
-#. 4Cq!
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12924,7 +11612,6 @@ msgctxt ""
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 ""
-#. /XJ%
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12934,7 +11621,6 @@ msgctxt ""
msgid "Examples"
msgstr "მაგალითები"
-#. koGR
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12944,7 +11630,6 @@ msgctxt ""
msgid "=DAYS(\"2010-01-01\"; NOW()) returns the number of days from today until January 1, 2010."
msgstr "DAYS(\"1/1/2010\"; NOW()) აბრუნებს დღეების რაოდენობას დღეიდან 2010 წლის 1 იანვრამდე."
-#. _!KN
#: func_days.xhp
msgctxt ""
"func_days.xhp\n"
@@ -12954,7 +11639,6 @@ msgctxt ""
msgid "=DAYS(\"1990-10-10\";\"1980-10-10\") returns 3652 days."
msgstr ""
-#. /g;;
#: 07080000.xhp
msgctxt ""
"07080000.xhp\n"
@@ -12963,7 +11647,6 @@ msgctxt ""
msgid "Split"
msgstr "გაყოფა"
-#. W%]P
#: 07080000.xhp
msgctxt ""
"07080000.xhp\n"
@@ -12973,7 +11656,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"Split\">Split</link>"
msgstr "<link href=\"text/scalc/01/07080000.xhp\" name=\"Split\">გაყოფა</link>"
-#. ?ot+
#: 07080000.xhp
msgctxt ""
"07080000.xhp\n"
@@ -12983,7 +11665,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:SplitWindow\" visibility=\"visible\">Divides the current window at the top left corner of the active cell.</ahelp>"
msgstr ""
-#. dk+W
#: 07080000.xhp
msgctxt ""
"07080000.xhp\n"
@@ -12993,7 +11674,6 @@ msgctxt ""
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 ""
-#. %?.]
#: 07080000.xhp
msgctxt ""
"07080000.xhp\n"
@@ -13003,7 +11683,6 @@ msgctxt ""
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 ""
-#. .TZ0
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13012,7 +11691,6 @@ msgctxt ""
msgid "AutoOutline"
msgstr "ავტომონახაზი"
-#. G0mi
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13022,7 +11700,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12080500.xhp\" name=\"AutoOutline\">AutoOutline</link>"
msgstr "<link href=\"text/scalc/01/12080500.xhp\" name=\"AutoOutline\">ავტომონახაზი</link>"
-#. i]nf
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13032,7 +11709,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:AutoOutline\">If the selected cell range contains formulas or references, $[officename] automatically outlines the selection.</ahelp>"
msgstr ""
-#. cJa6
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13042,7 +11718,6 @@ msgctxt ""
msgid "For example, consider the following table:"
msgstr "მაგალითისთვის დააკვირდით შემდეგ ცხრილს:"
-#. hR^N
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13052,7 +11727,6 @@ msgctxt ""
msgid "January"
msgstr "იანვარი"
-#. --nL
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13062,7 +11736,6 @@ msgctxt ""
msgid "February"
msgstr "თებერვალი"
-#. ZR$O
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13072,7 +11745,6 @@ msgctxt ""
msgid "March"
msgstr "მარტი"
-#. [zh|
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13082,7 +11754,6 @@ msgctxt ""
msgid "1st Quarter"
msgstr "პირველი კვარტალი"
-#. q9Ur
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13092,7 +11763,6 @@ msgctxt ""
msgid "April"
msgstr "აპრილი"
-#. [#Ud
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13102,7 +11772,6 @@ msgctxt ""
msgid "May"
msgstr "მაისი"
-#. [@i3
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13112,7 +11781,6 @@ msgctxt ""
msgid "June"
msgstr "ივნისი"
-#. oT89
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13122,7 +11790,6 @@ msgctxt ""
msgid "2nd Quarter"
msgstr "მეორე კვარტალი"
-#. X_Mm
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13132,7 +11799,6 @@ msgctxt ""
msgid "100"
msgstr "100"
-#. 9P]]
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13142,7 +11808,6 @@ msgctxt ""
msgid "120"
msgstr "120"
-#. y]Xk
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13152,7 +11817,6 @@ msgctxt ""
msgid "130"
msgstr "130"
-#. p+5F
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13162,7 +11826,6 @@ msgctxt ""
msgid "350"
msgstr "350"
-#. [[|f
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13172,7 +11835,6 @@ msgctxt ""
msgid "100"
msgstr "100"
-#. 9YaZ
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13182,7 +11844,6 @@ msgctxt ""
msgid "100"
msgstr "100"
-#. !:=X
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13192,7 +11853,6 @@ msgctxt ""
msgid "200"
msgstr "200"
-#. RfB?
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13202,7 +11862,6 @@ msgctxt ""
msgid "400"
msgstr "400"
-#. ((\1
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13212,7 +11871,6 @@ msgctxt ""
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 ""
-#. L6%J
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
@@ -13222,7 +11880,6 @@ msgctxt ""
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 ""
-#. nuBe
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13231,7 +11888,6 @@ msgctxt ""
msgid "Conditional Formatting"
msgstr "პირბითი ფორმატირება"
-#. 7,+`
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13241,7 +11897,6 @@ msgctxt ""
msgid "Conditional Formatting"
msgstr "პირბითი ფორმატირება"
-#. e[cM
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13251,7 +11906,6 @@ msgctxt ""
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 ""
-#. M4$_
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13260,7 +11914,6 @@ msgctxt ""
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 "-მდე ავტოგამოთვლა ჩართული ხელსაწყოები შიგთავსი ავტოგამოთვლა a -სკენ ავტოგამოთვლა ტოლია ჩართული."
-#. GpG\
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13269,7 +11922,6 @@ msgctxt ""
msgid "<bookmark_value>conditional formatting; conditions</bookmark_value>"
msgstr "<bookmark_value>პირბითი ფორმატირება;პირობები</bookmark_value>"
-#. _isV
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13279,7 +11931,6 @@ msgctxt ""
msgid "Condition 1/2/3"
msgstr "პირობა 1/2/3"
-#. :n7b
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13289,7 +11940,6 @@ msgctxt ""
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 ""
-#. #=P0
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13299,7 +11949,6 @@ msgctxt ""
msgid "Cell Value / Formula"
msgstr "უჯრის მნიშვნელობა / ფორმულა"
-#. u]Sg
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13309,7 +11958,6 @@ msgctxt ""
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 ""
-#. nJ7#
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13319,7 +11967,6 @@ msgctxt ""
msgid "Cell Value Condition"
msgstr "უჯრის მნიშვნელობის მდგომარეობა"
-#. _O$X
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13329,7 +11976,6 @@ msgctxt ""
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 ""
-#. q1W:
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13339,7 +11985,6 @@ msgctxt ""
msgid "Cell Style"
msgstr "უჯრის სტილი"
-#. @I1O
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13349,7 +11994,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_TEMPLATE\">Choose the style to be applied if the specified condition matches.</ahelp>"
msgstr ""
-#. J2g_
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13358,7 +12002,6 @@ msgctxt ""
msgid "New Style"
msgstr ""
-#. 10/.
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13367,7 +12010,6 @@ msgctxt ""
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 ""
-#. 2svd
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13377,7 +12019,6 @@ msgctxt ""
msgid "Parameter field"
msgstr "პარამეტრის ველი"
-#. Qsc}
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13387,7 +12028,6 @@ msgctxt ""
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 ""
-#. PV,}
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13397,7 +12037,6 @@ msgctxt ""
msgid "Once the parameters have been defined, the condition is complete. It may appear as:"
msgstr ""
-#. icsB
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13407,7 +12046,6 @@ msgctxt ""
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 ""
-#. m1%s
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13417,7 +12055,6 @@ msgctxt ""
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 ""
-#. Rd4v
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13427,7 +12064,6 @@ msgctxt ""
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 "ფორმულა ტოლია SUM A A შედეგი შედეგი - დუ A1 -სკენ A5 ტოლია ტოლია -სკენ."
-#. 4yh(
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
@@ -13436,7 +12072,6 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/guide/cellstyle_conditional.xhp#cellstyle_conditional\"/>"
msgstr "<embedvar href=\"text/scalc/guide/cellstyle_conditional.xhp#cellstyle_conditional\"/>"
-#. :$xo
#: 12080200.xhp
msgctxt ""
"12080200.xhp\n"
@@ -13445,7 +12080,6 @@ msgctxt ""
msgid "Show Details"
msgstr "დეტალების ჩვენება"
-#. rjkq
#: 12080200.xhp
msgctxt ""
"12080200.xhp\n"
@@ -13454,7 +12088,6 @@ msgctxt ""
msgid "<bookmark_value>tables; showing details</bookmark_value>"
msgstr "<bookmark_value>ცხრილები; დეტალების ჩვენება</bookmark_value>"
-#. s7dD
#: 12080200.xhp
msgctxt ""
"12080200.xhp\n"
@@ -13464,7 +12097,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\">Show Details</link>"
msgstr "<link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\">დეტალების ჩვენება</link>"
-#. Sd7F
#: 12080200.xhp
msgctxt ""
"12080200.xhp\n"
@@ -13474,7 +12106,6 @@ msgctxt ""
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 ""
-#. acFa
#: 12080200.xhp
msgctxt ""
"12080200.xhp\n"
@@ -13484,7 +12115,6 @@ msgctxt ""
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 ""
-#. =PWp
#: 12080200.xhp
#, fuzzy
msgctxt ""
@@ -13494,7 +12124,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12080700.xhp\">Show Details command in pivot tables</link>"
msgstr "<link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\">დეტალების ჩვენება</link>"
-#. D%y7
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13503,7 +12132,6 @@ msgctxt ""
msgid "Statistical Functions Part Three"
msgstr "სტატისტიკური ფუნქციები ნაწილი სამი"
-#. 3pV[
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13513,7 +12141,6 @@ msgctxt ""
msgid "<variable id=\"kl\"><link href=\"text/scalc/01/04060183.xhp\" name=\"Statistical Functions Part Three\">Statistical Functions Part Three</link></variable>"
msgstr "<variable id=\"kl\"><link href=\"text/scalc/01/04060183.xhp\" name=\"Statistical Functions Part Three\">სტატისტიკური ფუნქციები ნაწილი სამი</link></variable>"
-#. l0Oi
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13522,7 +12149,6 @@ msgctxt ""
msgid "<bookmark_value>LARGE function</bookmark_value>"
msgstr "<bookmark_value>LARGE ფუნქცია</bookmark_value>"
-#. ^Wsn
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13532,7 +12158,6 @@ msgctxt ""
msgid "LARGE"
msgstr "LARGE"
-#. iF)U
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13542,7 +12167,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_KGROESSTE\">Returns the Rank_c-th largest value in a data set.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KGROESSTE\">აბრუნებს მონაცემთა წყობაში Rank_c-th უდიდეს მნიშვნელობას.</ahelp>"
-#. oJrM
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13552,7 +12176,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. ;p%Z
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13562,7 +12185,6 @@ msgctxt ""
msgid "LARGE(Data; RankC)"
msgstr "LARGE(მონაცემები; რანგი_c)"
-#. KJy|
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13572,7 +12194,6 @@ msgctxt ""
msgid "<emph>Data</emph> is the cell range of data."
msgstr "<emph>მონაცემი</emph> არის მონაცემთა უჯრათა დიაპაზონი."
-#. */Y,
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13582,7 +12203,6 @@ msgctxt ""
msgid "<emph>RankC</emph> is the ranking of the value."
msgstr "<emph>რანგი_c</emph> არის მნიშვნელობის რანგი."
-#. :R[\
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13592,7 +12212,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. L`U]
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13602,7 +12221,6 @@ msgctxt ""
msgid "<item type=\"input\">=LARGE(A1:C50;2)</item> gives the second largest value in A1:C50."
msgstr ""
-#. @V[F
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13611,7 +12229,6 @@ msgctxt ""
msgid "<bookmark_value>SMALL function</bookmark_value>"
msgstr "<bookmark_value>SMALL ფუნქცია</bookmark_value>"
-#. Xl]R
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13621,7 +12238,6 @@ msgctxt ""
msgid "SMALL"
msgstr "SMALL"
-#. 1Wp#
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13631,7 +12247,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_KKLEINSTE\">Returns the Rank_c-th smallest value in a data set.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KKLEINSTE\">აბრუნებს მონაცემთა წყობაში Rank_c-th უმცირეს მნიშვნელობას.</ahelp>"
-#. J6w.
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13641,7 +12256,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. b0r-
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13651,7 +12265,6 @@ msgctxt ""
msgid "SMALL(Data; RankC)"
msgstr "SMALL(მონაცემები; რანგი_c)"
-#. GXAX
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13661,7 +12274,6 @@ msgctxt ""
msgid "<emph>Data</emph> is the cell range of data."
msgstr "<emph>მონაცემები</emph> ეს არის მონაცემთა უჯრების დიაპაზონი."
-#. TkEZ
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13671,7 +12283,6 @@ msgctxt ""
msgid "<emph>RankC</emph> is the rank of the value."
msgstr "<emph>რანგი_c</emph> არის მნიშვნელობის რანგი."
-#. -NlO
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13681,7 +12292,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. {^EE
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13691,7 +12301,6 @@ msgctxt ""
msgid "<item type=\"input\">=SMALL(A1:C50;2)</item> gives the second smallest value in A1:C50."
msgstr ""
-#. *=$p
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13700,7 +12309,6 @@ msgctxt ""
msgid "<bookmark_value>CONFIDENCE function</bookmark_value>"
msgstr "<bookmark_value>CONFIDENCE ფუნქცია</bookmark_value>"
-#. |6jr
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13710,7 +12318,6 @@ msgctxt ""
msgid "CONFIDENCE"
msgstr "CONFIDENCE"
-#. m++F
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13720,7 +12327,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_KONFIDENZ\">Returns the (1-alpha) confidence interval for a normal distribution.</ahelp>"
msgstr ""
-#. hHZQ
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13730,7 +12336,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. Qj/M
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13740,7 +12345,6 @@ msgctxt ""
msgid "CONFIDENCE(Alpha; StDev; Size)"
msgstr "CONFIDENCE(ალფა; STDEV; ზომა)"
-#. /[T0
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13750,7 +12354,6 @@ msgctxt ""
msgid "<emph>Alpha</emph> is the level of the confidence interval."
msgstr ""
-#. .7g9
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13760,7 +12363,6 @@ msgctxt ""
msgid "<emph>StDev</emph> is the standard deviation for the total population."
msgstr "<emph>STDEV</emph> არის სრულ მოსახლეობაში სტანდარტული გადახრა."
-#. )c;#
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13770,7 +12372,6 @@ msgctxt ""
msgid "<emph>Size</emph> is the size of the total population."
msgstr "<emph>ზომა</emph> არის მოსახლეობის სრული ზომა."
-#. q*2r
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13780,7 +12381,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. ,D(`
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13790,7 +12390,6 @@ msgctxt ""
msgid "<item type=\"input\">=CONFIDENCE(0.05;1.5;100)</item> gives 0.29."
msgstr ""
-#. _a*Q
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13799,7 +12398,6 @@ msgctxt ""
msgid "<bookmark_value>CORREL function</bookmark_value><bookmark_value>coefficient of correlation</bookmark_value>"
msgstr "<bookmark_value>CORREL ფუნქცია</bookmark_value><bookmark_value>კორელაციის ფუნქცია</bookmark_value>"
-#. 0]*G
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13809,7 +12407,6 @@ msgctxt ""
msgid "CORREL"
msgstr "CORREL"
-#. FJ[V
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13819,7 +12416,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_KORREL\">Returns the correlation coefficient between two data sets.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_KORREL\">აბრუნებს მონაცემთა ორ წყობაში კორელაციის კოეფიციენტს.</ahelp>"
-#. f{z@
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13829,7 +12425,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. ny96
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13839,7 +12434,6 @@ msgctxt ""
msgid "CORREL(Data1; Data2)"
msgstr "CORREL(მონაცემები_1; მონაცემები_2)"
-#. m4rZ
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13849,7 +12443,6 @@ msgctxt ""
msgid "<emph>Data1</emph> is the first data set."
msgstr "<emph>მონაცემი_1</emph> არის მონაცემთა პირველი წყობა."
-#. z)ho
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13859,7 +12452,6 @@ msgctxt ""
msgid "<emph>Data2</emph> is the second data set."
msgstr "<emph>მონაცემი_2</emph> არის მონაცემთა მეორე წყობა."
-#. xjg9
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13869,7 +12461,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. G=lC
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13879,7 +12470,6 @@ msgctxt ""
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 ""
-#. nV2r
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13888,7 +12478,6 @@ msgctxt ""
msgid "<bookmark_value>COVAR function</bookmark_value>"
msgstr "<bookmark_value>COVAR ფუნქცია</bookmark_value>"
-#. [Fr$
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13898,7 +12487,6 @@ msgctxt ""
msgid "COVAR"
msgstr "COVAR"
-#. L*C2
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13908,7 +12496,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_KOVAR\">Returns the covariance of the product of paired deviations.</ahelp>"
msgstr ""
-#. +i$/
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13918,7 +12505,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. KcFJ
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13928,7 +12514,6 @@ msgctxt ""
msgid "COVAR(Data1; Data2)"
msgstr "COVAR(მონაცემები_1; მონაცემები_2)"
-#. 6-${
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13938,7 +12523,6 @@ msgctxt ""
msgid "<emph>Data1</emph> is the first data set."
msgstr "<emph>მონაცემი_1</emph> არის მონაცემთა პირველი წყობა."
-#. 9a1_
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13948,7 +12532,6 @@ msgctxt ""
msgid "<emph>Data2</emph> is the second data set."
msgstr "<emph>მონაცემი_2</emph> არის მონაცემთა მეორე წყობა."
-#. s+g\
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13958,7 +12541,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. ivo#
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13968,7 +12550,6 @@ msgctxt ""
msgid "<item type=\"input\">=COVAR(A1:A30;B1:B30)</item>"
msgstr ""
-#. $W^w
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13977,7 +12558,6 @@ msgctxt ""
msgid "<bookmark_value>CRITBINOM function</bookmark_value>"
msgstr "<bookmark_value>CRITBINOM ფუნქცია</bookmark_value>"
-#. b#n{
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13987,7 +12567,6 @@ msgctxt ""
msgid "CRITBINOM"
msgstr "CRITBINOM"
-#. gt5X
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -13997,7 +12576,6 @@ msgctxt ""
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 ""
-#. (@pR
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14007,7 +12585,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. r7kB
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14017,7 +12594,6 @@ msgctxt ""
msgid "CRITBINOM(Trials; SP; Alpha)"
msgstr ""
-#. *Hi|
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14027,7 +12603,6 @@ msgctxt ""
msgid "<emph>Trials</emph> is the total number of trials."
msgstr "<emph>თვლა_1</emph> ობიექტების სრული რაოდენობა."
-#. z[6L
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14037,7 +12612,6 @@ msgctxt ""
msgid "<emph>SP</emph> is the probability of success for one trial."
msgstr "<emph>SP</emph> არის ცდის წარმატების ალბათობა."
-#. |H^8
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14047,7 +12621,6 @@ msgctxt ""
msgid "<emph>Alpha</emph> is the threshold probability to be reached or exceeded."
msgstr ""
-#. _5l?
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14057,7 +12630,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. w#G(
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14067,7 +12639,6 @@ msgctxt ""
msgid "<item type=\"input\">=CRITBINOM(100;0.5;0.1)</item> yields 44."
msgstr ""
-#. K9,8
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14076,7 +12647,6 @@ msgctxt ""
msgid "<bookmark_value>KURT function</bookmark_value>"
msgstr "<bookmark_value>KURT ფუნქცია</bookmark_value>"
-#. FC@7
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14086,7 +12656,6 @@ msgctxt ""
msgid "KURT"
msgstr "KURT"
-#. +7:P
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14096,7 +12665,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_KURT\">Returns the kurtosis of a data set (at least 4 values required).</ahelp>"
msgstr ""
-#. O`d2
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14106,7 +12674,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. gLn*
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14116,7 +12683,6 @@ msgctxt ""
msgid "KURT(Number1; Number2; ...Number30)"
msgstr "KURT(რიცხვი 1; რიცხვი 2; ...რიცხვი 30)"
-#. |svS
#: 04060183.xhp
#, fuzzy
msgctxt ""
@@ -14127,7 +12693,6 @@ msgctxt ""
msgid "<emph>Number1,Number2,...Number30</emph> are numeric arguments or ranges representing a random sample of distribution."
msgstr "<emph>რიცხვი 1; რიცხვი 2;...რიცხვი 30</emph> არის შერჩევის ამსახველი დიაპაზონის ციფრული მნიშვნელობები."
-#. ,Iz:
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14137,7 +12702,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. Q!r6
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14147,7 +12711,6 @@ msgctxt ""
msgid "<item type=\"input\">=KURT(A1;A2;A3;A4;A5;A6)</item>"
msgstr ""
-#. 9jsC
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14156,7 +12719,6 @@ msgctxt ""
msgid "<bookmark_value>LOGINV function</bookmark_value><bookmark_value>inverse of lognormal distribution</bookmark_value>"
msgstr "<bookmark_value>LOGINV ფუნქცია</bookmark_value><bookmark_value>ლოგიკური განაწილების შებრუნება</bookmark_value>"
-#. hQ}*
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14166,7 +12728,6 @@ msgctxt ""
msgid "LOGINV"
msgstr "LOGINV"
-#. WC|1
#: 04060183.xhp
#, fuzzy
msgctxt ""
@@ -14177,7 +12738,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_LOGINV\">Returns the inverse of the lognormal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_TINV\">აბრუნებს t-განაწილების ინვერსიას.</ahelp>"
-#. F`Uw
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14187,7 +12747,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. +3TN
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14197,7 +12756,6 @@ msgctxt ""
msgid "LOGINV(Number; Mean; StDev)"
msgstr "LOGINV(რიცხვი; მნიშვნელობა; STDEV)"
-#. aq7S
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14207,7 +12765,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the probability value for which the inverse standard logarithmic distribution is to be calculated."
msgstr "<emph>რიცხვი</emph> არის ალბათობა რომლისთვისაც სტანდარტული ნორმალური გადახრა უნდა გამოითვალოს."
-#. C_)X
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14217,7 +12774,6 @@ msgctxt ""
msgid "<emph>Mean</emph> is the arithmetic mean of the standard logarithmic distribution."
msgstr "<emph>საშუალო</emph> სტანდარტული ლოგარითმული განაწილების საშუალო არითმეტიკული."
-#. ov^!
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14227,7 +12783,6 @@ msgctxt ""
msgid "<emph>StDev</emph> is the standard deviation of the standard logarithmic distribution."
msgstr "<emph>STDEV</emph> სტანდარტული ლოგარითმული განაწილების სტანდარტული გადახრა."
-#. *2Kh
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14237,7 +12792,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. kWiO
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14247,7 +12801,6 @@ msgctxt ""
msgid "<item type=\"input\">=LOGINV(0.05;0;1)</item> returns 0.19."
msgstr ""
-#. $r6!
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14256,7 +12809,6 @@ msgctxt ""
msgid "<bookmark_value>LOGNORMDIST function</bookmark_value><bookmark_value>cumulative lognormal distribution</bookmark_value>"
msgstr "<bookmark_value>LOGNORMDIST ფუნქცია</bookmark_value><bookmark_value>სრული ლოგარითმული განაწილება</bookmark_value>"
-#. 6u0-
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14266,7 +12818,6 @@ msgctxt ""
msgid "LOGNORMDIST"
msgstr "LOGNORMDIST"
-#. K9Im
#: 04060183.xhp
#, fuzzy
msgctxt ""
@@ -14277,7 +12828,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">Returns the cumulative lognormal distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">აბრუნებს უარყოფით ბინომინალურ განაწილებას.</ahelp>"
-#. *v%0
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14287,7 +12837,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. N.m+
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14297,7 +12846,6 @@ msgctxt ""
msgid "LOGNORMDIST(Number; Mean; StDev; Cumulative)"
msgstr ""
-#. )5gG
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14307,7 +12855,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the probability value for which the standard logarithmic distribution is to be calculated."
msgstr "<emph>რიცხვი</emph> არის ალბათობა რომლისთვისაც სტანდარტული ნორმალური გადახრა უნდა გამოითვალოს."
-#. DB-6
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14317,7 +12864,6 @@ msgctxt ""
msgid "<emph>Mean</emph> (optional) is the mean value of the standard logarithmic distribution."
msgstr "<emph>საშუალო</emph> სტანდარტული ლოგარითმული განაწილების საშუალო არითმეტიკული."
-#. aMDn
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14327,7 +12873,6 @@ msgctxt ""
msgid "<emph>StDev</emph> (optional) is the standard deviation of the standard logarithmic distribution."
msgstr "<emph>STDEV</emph> სტანდარტული ლოგარითმული განაწილების სტანდარტული გადახრა."
-#. S2?a
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14336,7 +12881,6 @@ msgctxt ""
msgid "<emph>Cumulative</emph> (optional) = 0 calculates the density function, Cumulative = 1 calculates the distribution."
msgstr ""
-#. ^Xh1
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14346,7 +12890,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. uOa@
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
@@ -14356,7 +12899,6 @@ msgctxt ""
msgid "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> returns 0.01."
msgstr ""
-#. YO]S
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -14365,7 +12907,6 @@ msgctxt ""
msgid "Names"
msgstr "სახელები"
-#. uf:/
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -14375,7 +12916,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">სახელები</link>"
-#. 7^%V
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -14385,7 +12925,6 @@ msgctxt ""
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 ""
-#. )UCS
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -14395,7 +12934,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Define\">Define</link>"
msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Define\">განსაზღვრა</link>"
-#. 5b6T
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -14405,7 +12943,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04070200.xhp\" name=\"Insert\">Insert</link>"
msgstr "<link href=\"text/scalc/01/04070200.xhp\" name=\"Insert\">ჩამატება</link>"
-#. Sm0\
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -14415,7 +12952,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04070300.xhp\" name=\"Apply\">Apply</link>"
msgstr "<link href=\"text/scalc/01/04070300.xhp\" name=\"Apply\">გამოყენება</link>"
-#. K9#-
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
@@ -14425,7 +12961,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04070400.xhp\" name=\"Labels\">Labels</link>"
msgstr "<link href=\"text/scalc/01/04070400.xhp\" name=\"Labels\">ეტიკეტები</link>"
-#. hbe:
#: 05050300.xhp
msgctxt ""
"05050300.xhp\n"
@@ -14434,7 +12969,6 @@ msgctxt ""
msgid "Show Sheet"
msgstr "ფურცელის ჩვენება"
-#. shyR
#: 05050300.xhp
msgctxt ""
"05050300.xhp\n"
@@ -14443,7 +12977,6 @@ msgctxt ""
msgid "<bookmark_value>sheets; displaying</bookmark_value><bookmark_value>displaying; sheets</bookmark_value>"
msgstr "<bookmark_value>ფურცლები; ასახვა</bookmark_value><bookmark_value>ასახვა; ფურცლები</bookmark_value>"
-#. 7v{s
#: 05050300.xhp
msgctxt ""
"05050300.xhp\n"
@@ -14453,7 +12986,6 @@ msgctxt ""
msgid "Show Sheet"
msgstr "ფურცელის ჩვენება"
-#. pfv#
#: 05050300.xhp
msgctxt ""
"05050300.xhp\n"
@@ -14463,7 +12995,6 @@ msgctxt ""
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 ""
-#. uFN+
#: 05050300.xhp
msgctxt ""
"05050300.xhp\n"
@@ -14473,7 +13004,6 @@ msgctxt ""
msgid "Hidden sheets"
msgstr "დამალული ფურცლები"
-#. }i5X
#: 05050300.xhp
msgctxt ""
"05050300.xhp\n"
@@ -14483,7 +13013,6 @@ msgctxt ""
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 ""
-#. FsYX
#: 06990000.xhp
msgctxt ""
"06990000.xhp\n"
@@ -14492,7 +13021,6 @@ msgctxt ""
msgid "Cell Contents"
msgstr "უჯრების შიგთავსი"
-#. +smV
#: 06990000.xhp
msgctxt ""
"06990000.xhp\n"
@@ -14502,7 +13030,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/06990000.xhp\" name=\"Cell Contents\">Cell Contents</link>"
msgstr "<link href=\"text/scalc/01/06990000.xhp\" name=\"Cell Contents\">უჯრების შიგთავსი</link>"
-#. NMr\
#: 06990000.xhp
msgctxt ""
"06990000.xhp\n"
@@ -14512,7 +13039,6 @@ msgctxt ""
msgid "Opens a submenu with commands to calculate tables and activate AutoInput."
msgstr "ხსნის ქვემენიუს ცხრილების გამოსათვლელად და ანტიშეტანის გასააქტიურებლად."
-#. Z4b(
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14521,7 +13047,6 @@ msgctxt ""
msgid "Select Source"
msgstr "წყაროს არჩევა"
-#. sil!
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14531,7 +13056,6 @@ msgctxt ""
msgid "Select Source"
msgstr "წყაროს არჩევა"
-#. $N!G
#: 12090100.xhp
#, fuzzy
msgctxt ""
@@ -14542,7 +13066,6 @@ msgctxt ""
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:OpenTemplate\">ხსნის დიალოგს სადაც შეგიძლიათ მონიშნოთ შაბლონი რედაქტირებისთვის.</ahelp>"
-#. nQuP
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14552,7 +13075,6 @@ msgctxt ""
msgid "Selection"
msgstr "მონიშვნა"
-#. OFEQ
#: 12090100.xhp
#, fuzzy
msgctxt ""
@@ -14563,7 +13085,6 @@ msgctxt ""
msgid "Select a data source for the pivot table."
msgstr "ნაერთი ცხრილის წყაროს არჩევა."
-#. Q.+-
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14573,7 +13094,6 @@ msgctxt ""
msgid "Current Selection"
msgstr "მიმდინარე არჩევა"
-#. )uF:
#: 12090100.xhp
#, fuzzy
msgctxt ""
@@ -14584,7 +13104,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Uses the selected cells as the data source for the pivot table.</ahelp>"
msgstr "<ahelp hid=\".\">შლის მონიშნულ ველს სხვა სიიდან.</ahelp>"
-#. \aJ+
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14594,7 +13113,6 @@ msgctxt ""
msgid "The data columns in the pivot table use the same number format as the first data row in the current selection."
msgstr ""
-#. MJ*;
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14604,7 +13122,6 @@ msgctxt ""
msgid "Data source registered in $[officename]"
msgstr "$[officename]-ში რეგისტრირებული მონაცემთა წყარო"
-#. oIo9
#: 12090100.xhp
#, fuzzy
msgctxt ""
@@ -14615,7 +13132,6 @@ msgctxt ""
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=\".\">აკრიფეთ მომხმარებლის სახელი მონაცემთა ბაზაში შესასვლელად.</ahelp>"
-#. Lm{Y
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
@@ -14625,7 +13141,6 @@ msgctxt ""
msgid "External source/interface"
msgstr "გარე წყარო/ინტერფეისი"
-#. sp.@
#: 12090100.xhp
#, fuzzy
msgctxt ""
@@ -14636,7 +13151,6 @@ msgctxt ""
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:ObjectCatalog\">ხსნის <emph>ობიექტების</emph> დიალოგურ სარკმელს, სადაც შეგიძლიათ ნახოთ ძირითადი ობიექტები.</ahelp>"
-#. EGI^
#: 12090100.xhp
#, fuzzy
msgctxt ""
@@ -14646,7 +13160,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"DataPilot dialog\">ნაერთი ცხრილის დიალოგი</link>"
-#. rlBf
#: 12090102.xhp
#, fuzzy
msgctxt ""
@@ -14656,7 +13169,6 @@ msgctxt ""
msgid "Pivot Table"
msgstr "ცხრილის დაყოფა"
-#. Q9n=
#: 12090102.xhp
#, fuzzy
msgctxt ""
@@ -14666,7 +13178,6 @@ msgctxt ""
msgid "<bookmark_value>pivot table function;show details</bookmark_value><bookmark_value>pivot table function;drill down</bookmark_value>"
msgstr "<bookmark_value>Mid ფუნქცია</bookmark_value><bookmark_value>Mid დებულება</bookmark_value>"
-#. l9bQ
#: 12090102.xhp
#, fuzzy
msgctxt ""
@@ -14677,7 +13188,6 @@ msgctxt ""
msgid "Pivot Table"
msgstr "ცხრილის დაყოფა"
-#. {ZSr
#: 12090102.xhp
#, fuzzy
msgctxt ""
@@ -14688,7 +13198,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DataPilotExec\">Specify the layout of the table that is generated by the pivot table.</ahelp>"
msgstr "<ahelp hid=\"HID_ENV_FMT\" visibility=\"visible\">განსაზღვრავს კონვერტის განლაგებასა და განზომილებებს.</ahelp>"
-#. pJEr
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14698,7 +13207,6 @@ msgctxt ""
msgid "The pivot table displays data fields as buttons which you can drag and drop to define the pivot table."
msgstr ""
-#. m=T)
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14708,7 +13216,6 @@ msgctxt ""
msgid "Layout"
msgstr "განლაგება"
-#. H*#J
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14718,7 +13225,6 @@ msgctxt ""
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 ""
-#. .Itd
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14728,7 +13234,6 @@ msgctxt ""
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 ""
-#. %h-^
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14738,7 +13243,6 @@ msgctxt ""
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 ""
-#. -SI;
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14748,7 +13252,6 @@ msgctxt ""
msgid "Remove"
msgstr "წაშლა"
-#. [0ai
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14758,7 +13261,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_REMOVE\">Removes the selected data field from the table layout.</ahelp>"
msgstr ""
-#. \+eh
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14768,7 +13270,6 @@ msgctxt ""
msgid "Options"
msgstr "პარამეტრები"
-#. *W|f
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14778,7 +13279,6 @@ msgctxt ""
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 ""
-#. baXN
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14788,7 +13288,6 @@ msgctxt ""
msgid "More"
msgstr "მეტი"
-#. %m[\
#: 12090102.xhp
#, fuzzy
msgctxt ""
@@ -14799,7 +13298,6 @@ msgctxt ""
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:PUSHBUTTON:RID_SCDLG_INSERT_TABLE:BTN_BROWSE\">Opens a dialog for selecting a file.</ahelp>"
-#. ,QGD
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14809,7 +13307,6 @@ msgctxt ""
msgid "Result"
msgstr "შედეგი"
-#. ~COc
#: 12090102.xhp
#, fuzzy
msgctxt ""
@@ -14820,7 +13317,6 @@ msgctxt ""
msgid "Specify the settings for displaying the results of the pivot table."
msgstr "მონიშნული მონახაზის დონის ფორმატის განსაზღვრა."
-#. SVaH
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14829,7 +13325,6 @@ msgctxt ""
msgid "Selection from"
msgstr ""
-#. ?-fL
#: 12090102.xhp
#, fuzzy
msgctxt ""
@@ -14839,7 +13334,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select the area that contains the data for the current pivot table.</ahelp>"
msgstr "<ahelp hid=\".\">მონიშნეთ მონაცემთა ბაზის ველი, რომელიც შეიცავს ადრესატის ელფოსტის მისამართს.</ahelp>"
-#. mM`!
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14849,7 +13343,6 @@ msgctxt ""
msgid "Results to"
msgstr ""
-#. k[S~
#: 12090102.xhp
#, fuzzy
msgctxt ""
@@ -14860,7 +13353,6 @@ msgctxt ""
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_AREAS:ED_PRINTAREA\">საშუალებას გაძლევთ ჩაასწოროთ განსაზღვრული საბეჭდი არე.</ahelp>"
-#. h/=7
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14870,7 +13362,6 @@ msgctxt ""
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 ""
-#. CVEI
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14880,7 +13371,6 @@ msgctxt ""
msgid "Ignore empty rows"
msgstr "ცარიელი რიგების იგნორირება"
-#. i89N
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14890,7 +13380,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_IGNEMPTYROWS\">Ignores empty fields in the data source.</ahelp>"
msgstr ""
-#. /hCj
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14900,7 +13389,6 @@ msgctxt ""
msgid "Identify categories"
msgstr "კატეგორიების იდენტიფიკაცია"
-#. eYY)
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14910,7 +13398,6 @@ msgctxt ""
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 ""
-#. /z)-
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14920,7 +13407,6 @@ msgctxt ""
msgid "Total columns"
msgstr "სულ სვეტები"
-#. 4f,*
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14930,7 +13416,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALCOL\">Calculates and displays the grand total of the column calculation.</ahelp>"
msgstr ""
-#. U_kT
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14940,7 +13425,6 @@ msgctxt ""
msgid "Total rows"
msgstr "სულ რიგები"
-#. R*,G
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14950,7 +13434,6 @@ msgctxt ""
msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALROW\">Calculates and displays the grand total of the row calculation.</ahelp>"
msgstr ""
-#. KB_h
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14959,7 +13442,6 @@ msgctxt ""
msgid "Add filter"
msgstr "ფილტრის დამატება"
-#. )ght
#: 12090102.xhp
#, fuzzy
msgctxt ""
@@ -14969,7 +13451,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Adds a Filter button to pivot tables that are based on spreadsheet data.</ahelp>"
msgstr "<ahelp hid=\".\">საშუალებას აძლევს მომხმარებელს წაშალოს მონაცემები.</ahelp>"
-#. ,16p
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14978,7 +13459,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the Filter dialog.</ahelp>"
msgstr "<ahelp hid=\".\">ხსნის ფილტრის დიალოგს.</ahelp>"
-#. a+SU
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14987,7 +13467,6 @@ msgctxt ""
msgid "Enable drill to details"
msgstr ""
-#. u_q.
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -14996,7 +13475,6 @@ msgctxt ""
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 ""
-#. y=[E
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -15005,7 +13483,6 @@ msgctxt ""
msgid "To examine details inside a pivot table"
msgstr ""
-#. S]uz
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -15014,7 +13491,6 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "შემდეგიდან ერთერთის გაკეთება:"
-#. P!$y
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -15023,7 +13499,6 @@ msgctxt ""
msgid "Select a range of cells and choose <emph>Data - Group and Outline - Show Details</emph>."
msgstr ""
-#. e@9R
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -15032,7 +13507,6 @@ msgctxt ""
msgid "Double-click a field in the table."
msgstr "ცხრილის ველზე ორმაგი წკაპი."
-#. [lG[
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -15041,7 +13515,6 @@ msgctxt ""
msgid "If you double-click a field which has adjacent fields at the same level, the <emph>Show Detail</emph> dialog opens:"
msgstr ""
-#. @T=s
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -15050,7 +13523,6 @@ msgctxt ""
msgid "Show Detail"
msgstr "დეტალების ჩვენება"
-#. EBE0
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
@@ -15059,7 +13531,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Choose the field that you want to view the details for.</ahelp>"
msgstr ""
-#. =:t6
#: 12090102.xhp
#, fuzzy
msgctxt ""
@@ -15070,7 +13541,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/04/01020000.xhp\" name=\"Pivot table shortcut keys\">Pivot table shortcut keys</link>"
msgstr "<link href=\"text/scalc/01/06060000.xhp\" name=\"Protect Document\">დოკუმენტის დაცვა</link>"
-#. i4kn
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
@@ -15079,7 +13549,6 @@ msgctxt ""
msgid "Column & Row Headers"
msgstr "სვეტი & Row Headers"
-#. 5ZPd
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
@@ -15088,7 +13557,6 @@ msgctxt ""
msgid "<bookmark_value>spreadsheets; displaying headers of columns/rows</bookmark_value><bookmark_value>displaying; headers of columns/rows</bookmark_value>"
msgstr "<bookmark_value>ელექტრონული ცხრილები; displaying headers of columns/rows</bookmark_value><bookmark_value>displaying; headers of columns/rows</bookmark_value>"
-#. jgf2
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
@@ -15098,7 +13566,6 @@ msgctxt ""
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\">სვეტი & Row Headers</link>"
-#. 2KYN
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
@@ -15108,7 +13575,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ViewRowColumnHeaders\">Shows column headers and row headers.</ahelp>"
msgstr "<ahelp hid=\".uno:ViewRowColumnHeaders\">Shows column headers and row headers.</ahelp>"
-#. Cf05
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
@@ -15118,7 +13584,6 @@ msgctxt ""
msgid "To hide the column and row headers unmark this menu entry."
msgstr "To hide the column and row headers unmark this menu entry."
-#. kA|4
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
@@ -15128,7 +13593,6 @@ msgctxt ""
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 ""
-#. z[3T
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15137,7 +13601,6 @@ msgctxt ""
msgid "Define Label Range"
msgstr "ეტიკეტის დიაპაზონის განსაზღვრა"
-#. KJHW
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15146,7 +13609,6 @@ msgctxt ""
msgid "<bookmark_value>sheets; defining label ranges</bookmark_value><bookmark_value>label ranges in sheets</bookmark_value>"
msgstr "<bookmark_value>ფურცლები; ეტიკეტების დიაპაზონის განსაზღვრა</bookmark_value><bookmark_value>ფურცელზე ეტიკეტთა დიაპაზონი</bookmark_value>"
-#. 7Wb/
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15156,7 +13618,6 @@ msgctxt ""
msgid "<variable id=\"define_label_range\"><link href=\"text/scalc/01/04070400.xhp\">Define Label Range</link></variable>"
msgstr "<variable id=\"define_label_range\"><link href=\"text/scalc/01/04070400.xhp\">ეტიკეტთა დიაპაზონის განსაზღვრა</link></variable>"
-#. .rfT
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15166,7 +13627,6 @@ msgctxt ""
msgid "<variable id=\"beschtext\"><ahelp hid=\".uno:DefineLabelRange\">Opens a dialog in which you can define a label range.</ahelp></variable>"
msgstr "<variable id=\"beschtext\"><ahelp hid=\".uno:DefineLabelRange\">ხსნის დიალოგს, რომელშიც შეგიძლიათ დიაპაზონის ეტიკეტის განსაზღვრა.</ahelp></variable>"
-#. +kZG
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15176,7 +13636,6 @@ msgctxt ""
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 ""
-#. ?tN5
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15186,7 +13645,6 @@ msgctxt ""
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 ""
-#. HhO+
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15196,7 +13654,6 @@ msgctxt ""
msgid "Range"
msgstr "დიაპაზონი"
-#. 2\-X
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15206,7 +13663,6 @@ msgctxt ""
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 ""
-#. fsKZ
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15216,7 +13672,6 @@ msgctxt ""
msgid "Contains column labels"
msgstr "შეიცავს სვეტის ეტიკეტებს"
-#. Zg+B
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15226,7 +13681,6 @@ msgctxt ""
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\">შეიცავს სვეტების ეტიკეტებს ეტიკეტთა მიმდინარე არეში.</ahelp>"
-#. 6m[o
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15236,7 +13690,6 @@ msgctxt ""
msgid "Contains row labels"
msgstr "შეიცავს რიგის ეტიკეტებს"
-#. o4[7
#: 04070400.xhp
#, fuzzy
msgctxt ""
@@ -15247,7 +13700,6 @@ msgctxt ""
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_COLHEAD\">შეიცავს სვეტების ეტიკეტებს ეტიკეტთა მიმდინარე არეში.</ahelp>"
-#. nLL+
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15257,7 +13709,6 @@ msgctxt ""
msgid "For data range"
msgstr "მონაცემთა დიაპაზონისთვის"
-#. Qp^j
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15267,7 +13718,6 @@ msgctxt ""
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 ""
-#. HHEF
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15277,7 +13727,6 @@ msgctxt ""
msgid "Add"
msgstr "დამატება"
-#. 2E1,
#: 04070400.xhp
msgctxt ""
"04070400.xhp\n"
@@ -15287,7 +13736,6 @@ msgctxt ""
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\">ამატებს მიმდინარე ეტიკეტთა დიაპაზონს სიას.</ahelp>"
-#. bbPU
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15296,7 +13744,6 @@ msgctxt ""
msgid "Statistical Functions Part Two"
msgstr "სტატისტიკური ფუნქციები ნაწილი ორი"
-#. rs?J
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15306,7 +13753,6 @@ msgctxt ""
msgid "<variable id=\"fh\"><link href=\"text/scalc/01/04060182.xhp\" name=\"Statistical Functions Part Two\">Statistical Functions Part Two</link></variable>"
msgstr "<variable id=\"fh\"><link href=\"text/scalc/01/04060182.xhp\" name=\"Statistical Functions Part Two\">სტატისტიკური ფუნქციები ნაწილი ორი</link></variable>"
-#. ?ECF
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15315,7 +13761,6 @@ msgctxt ""
msgid "<bookmark_value>FINV function</bookmark_value> <bookmark_value>inverse F probability distribution</bookmark_value>"
msgstr "<bookmark_value>FINV ფუნქცია</bookmark_value><bookmark_value>F ალბათონის განაწილების ინვერსია</bookmark_value>"
-#. p;yj
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15325,7 +13770,6 @@ msgctxt ""
msgid "FINV"
msgstr "FINV"
-#. JZSU
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15335,7 +13779,6 @@ msgctxt ""
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 ""
-#. bobk
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15345,7 +13788,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. Y7Cp
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15355,7 +13797,6 @@ msgctxt ""
msgid "FINV(Number; DegreesFreedom1; DegreesFreedom2)"
msgstr "FINV(რიცხვი; თავისუფლების_ხარისხი_1; თავისუფლების_ხარისხი_2)"
-#. ]N$4
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15365,7 +13806,6 @@ msgctxt ""
msgid "<emph>Number</emph> is probability value for which the inverse F distribution is to be calculated."
msgstr "<emph>რიცხვი</emph> არის მნიშვნელობა, რომლისთვისაც F განაწილება გამოითვლება."
-#. _*eL
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15375,7 +13815,6 @@ msgctxt ""
msgid "<emph>DegreesFreedom1</emph> is the number of degrees of freedom in the numerator of the F distribution."
msgstr "<emph>თავისუფლების_ხარისხი_1</emph> არის თავიუფლების ხარისხი F განაწილების ნუმერატორში."
-#. QTr]
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15385,7 +13824,6 @@ msgctxt ""
msgid "<emph>DegreesFreedom2</emph> is the number of degrees of freedom in the denominator of the F distribution."
msgstr "<emph>თავისუფლების_ხარისხი_2</emph> არის თავიუფლების ხარისხი F განაწილების დენომინატორში."
-#. WYYD
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15395,7 +13833,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. Z5f2
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15405,7 +13842,6 @@ msgctxt ""
msgid "<item type=\"input\">=FINV(0.5;5;10)</item> yields 0.93."
msgstr ""
-#. =Khl
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15414,7 +13850,6 @@ msgctxt ""
msgid "<bookmark_value>FISHER function</bookmark_value>"
msgstr "<bookmark_value>FISHER ფუნქცია</bookmark_value>"
-#. RSXg
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15424,7 +13859,6 @@ msgctxt ""
msgid "FISHER"
msgstr "FISHER"
-#. e-*\
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15434,7 +13868,6 @@ msgctxt ""
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\">აბრუნებს x-ის ფუშერის ტრანსფორმაციას და ქმნის ნორმალური განაწილების დახურვის ფუნქციას.</ahelp>"
-#. ]=.u
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15444,7 +13877,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. H6mq
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15454,7 +13886,6 @@ msgctxt ""
msgid "FISHER(Number)"
msgstr "FISHER(რიცხვი)"
-#. V8eS
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15464,7 +13895,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the value to be transformed."
msgstr "<emph>რიცხვი</emph> არის გარდასაქმნელი მნიშვნელობა."
-#. CIcA
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15474,7 +13904,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. Q);(
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15484,7 +13913,6 @@ msgctxt ""
msgid "<item type=\"input\">=FISHER(0.5)</item> yields 0.55."
msgstr ""
-#. OE;[
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15493,7 +13921,6 @@ msgctxt ""
msgid "<bookmark_value>FISHERINV function</bookmark_value> <bookmark_value>inverse of Fisher transformation</bookmark_value>"
msgstr "<bookmark_value>FISHERINV ფუნქცია</bookmark_value><bookmark_value>ფიშერის გარდაქმნის შებრუნება</bookmark_value>"
-#. u#a[
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15503,7 +13930,6 @@ msgctxt ""
msgid "FISHERINV"
msgstr "FISHERINV"
-#. 1o}D
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15513,7 +13939,6 @@ msgctxt ""
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\">აბრუნებს x-ისთვის ფუშერის ტრანსფორმაციის ინვერსიას და ქმნის ნორმალური განაწილების დახურვის ფუნქციას.</ahelp>"
-#. nZ2R
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15523,7 +13948,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. lnG.
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15533,7 +13957,6 @@ msgctxt ""
msgid "FISHERINV(Number)"
msgstr "FISHERINV(რიცხვი)"
-#. 1+^1
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15543,7 +13966,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the value that is to undergo reverse-transformation."
msgstr ""
-#. p-Sz
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15553,7 +13975,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. C~9g
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15563,7 +13984,6 @@ msgctxt ""
msgid "<item type=\"input\">=FISHERINV(0.5)</item> yields 0.46."
msgstr ""
-#. *A)K
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15572,7 +13992,6 @@ msgctxt ""
msgid "<bookmark_value>FTEST function</bookmark_value>"
msgstr "<bookmark_value>FTEST ფუნქცია</bookmark_value>"
-#. ID@|
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15582,7 +14001,6 @@ msgctxt ""
msgid "FTEST"
msgstr "FTEST"
-#. !18z
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15592,7 +14010,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_FTEST\">Returns the result of an F test.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_FTEST\">აბრუნებს F ტესტის შედეგს.</ahelp>"
-#. 6XzL
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15602,7 +14019,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. 2{G#
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15612,7 +14028,6 @@ msgctxt ""
msgid "FTEST(Data1; Data2)"
msgstr "FTEST(მონაცემები_1; მონაცემები_2)"
-#. S]my
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15622,7 +14037,6 @@ msgctxt ""
msgid "<emph>Data1</emph> is the first record array."
msgstr "<emph>მონაცემი_1</emph> პირველი ჩანაწერის მასივი."
-#. !=z6
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15632,7 +14046,6 @@ msgctxt ""
msgid "<emph>Data2</emph> is the second record array."
msgstr "<emph>მონაცემი_2</emph> მეორე ჩანაწერის მასივი."
-#. \=KG
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15642,7 +14055,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. ~+}p
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15652,7 +14064,6 @@ msgctxt ""
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 ""
-#. BjV:
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15661,7 +14072,6 @@ msgctxt ""
msgid "<bookmark_value>FDIST function</bookmark_value>"
msgstr "<bookmark_value>FDIST ფუნქცია</bookmark_value>"
-#. ko~R
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15671,7 +14081,6 @@ msgctxt ""
msgid "FDIST"
msgstr "FDIST"
-#. 1)e(
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15681,7 +14090,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_FVERT\">Calculates the values of an F distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_FVERT\">F განაწილების მნიშვნელობას ანგარიშობს.</ahelp>"
-#. n;]_
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15691,7 +14099,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. ;FMS
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15701,7 +14108,6 @@ msgctxt ""
msgid "FDIST(Number; DegreesFreedom1; DegreesFreedom2)"
msgstr "FDIST(რიცხვი; თავისუფლების_ხარისხი_1; თავისუფლების_ხარისხი_2)"
-#. o-?p
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15711,7 +14117,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the value for which the F distribution is to be calculated."
msgstr "<emph>რიცხვი</emph> არის მნიშვნელობა, რომლისთვისაც F განაწილება გამოითვლება."
-#. L~K.
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15721,7 +14126,6 @@ msgctxt ""
msgid "<emph>degreesFreedom1</emph> is the degrees of freedom in the numerator in the F distribution."
msgstr "<emph>თავისუფლების_ხარისხი_1</emph> არის F განაწილების ნუმერატორის თავისუფლების ხარისხი."
-#. c8)a
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15731,7 +14135,6 @@ msgctxt ""
msgid "<emph>degreesFreedom2</emph> is the degrees of freedom in the denominator in the F distribution."
msgstr "<emph>თავისუფლების_ხარისხი_2</emph> არის F განაწილების დენომინარატორის თავისუფლების ხარისხი."
-#. %1qB
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15741,7 +14144,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. +FfT
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15751,7 +14153,6 @@ msgctxt ""
msgid "<item type=\"input\">=FDIST(0.8;8;12)</item> yields 0.61."
msgstr ""
-#. D?#J
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15760,7 +14161,6 @@ msgctxt ""
msgid "<bookmark_value>GAMMA function</bookmark_value>"
msgstr "<bookmark_value>GAMMAINV ფუნქცია</bookmark_value>"
-#. :49r
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15769,7 +14169,6 @@ msgctxt ""
msgid "GAMMA"
msgstr ""
-#. (=d)
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15778,7 +14177,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Returns the Gamma function value.</ahelp> Note that GAMMAINV is not the inverse of GAMMA, but of GAMMADIST."
msgstr ""
-#. !=U@
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15787,7 +14185,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. J5pn
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15796,7 +14193,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the number for which the Gamma function value is to be calculated."
msgstr "<emph>რიცხვი</emph> არის მნიშვნელობა რომლისთვისაც გამა განაწილება უნდა გამოითვალოს."
-#. q^02
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15805,7 +14201,6 @@ msgctxt ""
msgid "<bookmark_value>GAMMAINV function</bookmark_value>"
msgstr "<bookmark_value>GAMMAINV ფუნქცია</bookmark_value>"
-#. b@\R
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15815,7 +14210,6 @@ msgctxt ""
msgid "GAMMAINV"
msgstr "GAMMAINV"
-#. (`;~
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15825,7 +14219,6 @@ msgctxt ""
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 ""
-#. }/1.
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15835,7 +14228,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. LPdY
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15845,7 +14237,6 @@ msgctxt ""
msgid "GAMMAINV(Number; Alpha; Beta)"
msgstr "GAMMAINV(რიცხვი; ალფა; ბეტა)"
-#. bsA3
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15855,7 +14246,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the probability value for which the inverse Gamma distribution is to be calculated."
msgstr "<emph>რიცხვი</emph> არის მნიშვნელობა რომლისთვისაც გამა განაწილება უნდა გამოითვალოს."
-#. G%*0
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15865,7 +14255,6 @@ msgctxt ""
msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
msgstr "<emph>ალფა</emph> არის გამა განაწილების ალფა პარამეტრი."
-#. 3e+y
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15875,7 +14264,6 @@ msgctxt ""
msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution."
msgstr "<emph>ბეტა</emph> არის გამა განაწილების ბეტა პარამეტრი."
-#. Nccf
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15885,7 +14273,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. fWf1
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15895,7 +14282,6 @@ msgctxt ""
msgid "<item type=\"input\">=GAMMAINV(0.8;1;1)</item> yields 1.61."
msgstr ""
-#. mFHc
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15904,7 +14290,6 @@ msgctxt ""
msgid "<bookmark_value>GAMMALN function</bookmark_value> <bookmark_value>natural logarithm of Gamma function</bookmark_value>"
msgstr "<bookmark_value>GAMMALN ფუნქცია</bookmark_value><bookmark_value>გამა ფუნქციის ნატურალური ლოგარითმი</bookmark_value>"
-#. X3zn
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15914,7 +14299,6 @@ msgctxt ""
msgid "GAMMALN"
msgstr "GAMMALN"
-#. bNZJ
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15924,7 +14308,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_GAMMALN\">Returns the natural logarithm of the Gamma function: G(x).</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GAMMALN\">აბრუნებს გამა ფუნქციის ნატურალურ ლოგარითმს: G(x).</ahelp>"
-#. dRiG
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15934,7 +14317,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. 6yw?
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15944,7 +14326,6 @@ msgctxt ""
msgid "GAMMALN(Number)"
msgstr "GAMMALN(რიცხვი)"
-#. f]-Y
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15954,7 +14335,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the value for which the natural logarithm of the Gamma function is to be calculated."
msgstr "<emph>რიცხვი</emph> არის მნიშვნელობა რომლისთვისაც გამოითვლება გამა ფუნქციის ნატურალური ლოგარითმი."
-#. EmVU
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15964,7 +14344,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. @w@j
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15974,7 +14353,6 @@ msgctxt ""
msgid "<item type=\"input\">=GAMMALN(2)</item> yields 0."
msgstr ""
-#. +:o=
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15983,7 +14361,6 @@ msgctxt ""
msgid "<bookmark_value>GAMMADIST function</bookmark_value>"
msgstr "<bookmark_value>GAMMADIST ფუნქცია</bookmark_value>"
-#. ?IpK
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -15993,7 +14370,6 @@ msgctxt ""
msgid "GAMMADIST"
msgstr "GAMMADIST"
-#. cti)
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16003,7 +14379,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Returns the values of a Gamma distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GAMMAVERT\">აბრუნებს გამა განაწილების მნიშვნელობას.</ahelp>"
-#. Q$U?
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16012,7 +14387,6 @@ msgctxt ""
msgid "The inverse function is GAMMAINV."
msgstr ""
-#. q/q=
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16022,7 +14396,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. j2Eq
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16032,7 +14405,6 @@ msgctxt ""
msgid "GAMMADIST(Number; Alpha; Beta; C)"
msgstr "GAMMADIST(რიცხვი; ალფა; ბეტა; C)"
-#. DlO$
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16042,7 +14414,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the value for which the Gamma distribution is to be calculated."
msgstr "<emph>რიცხვი</emph> არის მნიშვნელობა რომლისთვისაც გამა განაწილება უნდა გამოითვალოს."
-#. JKSI
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16052,7 +14423,6 @@ msgctxt ""
msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
msgstr "<emph>ალფა</emph> არის გამა განაწილების ალფა პარამეტრი."
-#. 1U$x
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16062,7 +14432,6 @@ msgctxt ""
msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution"
msgstr "<emph>ბეტა</emph> არის გამა განაწილების ბეტა პარამეტრი"
-#. -m?(
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16072,7 +14441,6 @@ msgctxt ""
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 გამოთვლის სიმკვრივის ფუნქციას <emph>C</emph> = 1 განაწილება."
-#. jJ0a
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16082,7 +14450,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. 4b{e
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16092,7 +14459,6 @@ msgctxt ""
msgid "<item type=\"input\">=GAMMADIST(2;1;1;1)</item> yields 0.86."
msgstr ""
-#. 5rf$
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16101,7 +14467,6 @@ msgctxt ""
msgid "<bookmark_value>GAUSS function</bookmark_value> <bookmark_value>normal distribution; standard</bookmark_value>"
msgstr "<bookmark_value>GAUSS ფუნქცია</bookmark_value><bookmark_value>ნორმალური განაწილება; სტანდარტული</bookmark_value>"
-#. $L(l
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16111,7 +14476,6 @@ msgctxt ""
msgid "GAUSS"
msgstr "GAUSS"
-#. .jy2
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16121,7 +14485,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_GAUSS\">Returns the standard normal cumulative distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GAUSS\">აბრუნებს სტანდარტულ ნორმალურ კუმულაციურ განაწილებას.</ahelp>"
-#. K^FB
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16130,7 +14493,6 @@ msgctxt ""
msgid "It is GAUSS(x)=NORMSDIST(x)-0.5"
msgstr "ეს არის GAUSS(x)=NORMSDIST(x)-0.5"
-#. {,|R
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16140,7 +14502,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. L;vg
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16150,7 +14511,6 @@ msgctxt ""
msgid "GAUSS(Number)"
msgstr "GAUSS(რიცხვი)"
-#. NdMF
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16160,7 +14520,6 @@ msgctxt ""
msgid "<emph>Number</emph> is the value for which the value of the standard normal distribution is to be calculated."
msgstr "<emph>რიცხვი</emph> არის მნიშვნელობა რომლისთვისაც სტანდარტული ნორმალური გადახრა უნდა გამოითვალოს."
-#. eVOK
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16170,7 +14529,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. `:3d
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16180,7 +14538,6 @@ msgctxt ""
msgid "<item type=\"input\">=GAUSS(0.19)</item> = 0.08"
msgstr ""
-#. `gXF
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16190,7 +14547,6 @@ msgctxt ""
msgid "<item type=\"input\">=GAUSS(0.0375)</item> = 0.01"
msgstr ""
-#. N3P^
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16199,7 +14555,6 @@ msgctxt ""
msgid "<bookmark_value>GEOMEAN function</bookmark_value> <bookmark_value>means;geometric</bookmark_value>"
msgstr "<bookmark_value>GEOMEAN ფუნქცია</bookmark_value><bookmark_value>მნიშვნელობები;გეომეტრია</bookmark_value>"
-#. ]uCX
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16209,7 +14564,6 @@ msgctxt ""
msgid "GEOMEAN"
msgstr "GEOMEAN"
-#. 78$b
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16219,7 +14573,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_GEOMITTEL\">Returns the geometric mean of a sample.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GEOMITTEL\">აბრუნებს შერჩევის გეომეტრიულ მნიშვნელობას.</ahelp>"
-#. 5K)d
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16229,7 +14582,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. |T_7
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16239,7 +14591,6 @@ msgctxt ""
msgid "GEOMEAN(Number1; Number2; ...Number30)"
msgstr "GEOMEAN(რიცხვი 1; რიცხვი 2; ...რიცხვი 30)"
-#. ?`uK
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16249,7 +14600,6 @@ msgctxt ""
msgid "<emph>Number1, Number2,...Number30</emph> are numeric arguments or ranges that represent a random sample."
msgstr "<emph>რიცხვი 1; რიცხვი 2;...რიცხვი 30</emph> არის შერჩევის ამსახველი დიაპაზონის ციფრული მნიშვნელობები."
-#. o/4;
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16259,7 +14609,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. Knm@
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16269,7 +14618,6 @@ msgctxt ""
msgid "<item type=\"input\">=GEOMEAN(23;46;69)</item> = 41.79. The geometric mean value of this random sample is therefore 41.79."
msgstr "GEOMEAN(23; 46; 69) = 41.79. ამრიგად შემთხვევითი შერჩევის გეომეტრიული მნიშვნელობაა 41.79."
-#. 0O;:
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16278,7 +14626,6 @@ msgctxt ""
msgid "<bookmark_value>TRIMMEAN function</bookmark_value> <bookmark_value>means;of data set without margin data</bookmark_value>"
msgstr "<bookmark_value>TRIMMEAN ფუნქცია</bookmark_value><bookmark_value>მნიშვნელობა;მონაცემის მონაცემთა კიდის გარეშე</bookmark_value>"
-#. =Mi#
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16288,7 +14635,6 @@ msgctxt ""
msgid "TRIMMEAN"
msgstr "TRIMMEAN"
-#. O81(
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16298,7 +14644,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_GESTUTZTMITTEL\">Returns the mean of a data set without the Alpha percent of data at the margins.</ahelp>"
msgstr ""
-#. ~tqI
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16308,7 +14653,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. Xzuh
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16318,7 +14662,6 @@ msgctxt ""
msgid "TRIMMEAN(Data; Alpha)"
msgstr "TRIMMEAN(მონაცემები; ალფა)"
-#. 0Dgd
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16328,7 +14671,6 @@ msgctxt ""
msgid "<emph>Data</emph> is the array of data in the sample."
msgstr "<emph>მონაცემი</emph> არის მონაცემთა მასივი მაგალითში."
-#. YoM8
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16338,7 +14680,6 @@ msgctxt ""
msgid "<emph>Alpha</emph> is the percentage of the marginal data that will not be taken into consideration."
msgstr ""
-#. 7b4w
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16348,7 +14689,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. lkf+
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16358,7 +14698,6 @@ msgctxt ""
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 ""
-#. ^`=|
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16367,7 +14706,6 @@ msgctxt ""
msgid "<bookmark_value>ZTEST function</bookmark_value>"
msgstr "<bookmark_value>ZTEST ფუნქცია</bookmark_value>"
-#. 6[)V
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16377,7 +14715,6 @@ msgctxt ""
msgid "ZTEST"
msgstr "ZTEST"
-#. A^R5
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16387,7 +14724,6 @@ msgctxt ""
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 ""
-#. -!Ho
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16397,7 +14733,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. ifNL
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16407,7 +14742,6 @@ msgctxt ""
msgid "ZTEST(Data; mu; Sigma)"
msgstr "ZTEST(მონაცემი; რიცხვი; სიგმა)"
-#. OzKc
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16417,7 +14751,6 @@ msgctxt ""
msgid "<emph>Data</emph> is the given sample, drawn from a normally distributed population."
msgstr ""
-#. [:%-
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16427,7 +14760,6 @@ msgctxt ""
msgid "<emph>mu</emph> is the known mean of the population."
msgstr ""
-#. +*8(
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16437,7 +14769,6 @@ msgctxt ""
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 ""
-#. Z60f
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16446,7 +14777,6 @@ msgctxt ""
msgid "See also the <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_ZTEST_function\">Wiki page</link>."
msgstr ""
-#. Hi(U
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16455,7 +14785,6 @@ msgctxt ""
msgid "<bookmark_value>HARMEAN function</bookmark_value> <bookmark_value>means;harmonic</bookmark_value>"
msgstr "<bookmark_value>HARMEAN ფუნქცია</bookmark_value><bookmark_value>მნიშვნელობები;ჰარმონია</bookmark_value>"
-#. b`un
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16465,7 +14794,6 @@ msgctxt ""
msgid "HARMEAN"
msgstr "HARMEAN"
-#. (FYq
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16475,7 +14803,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_HARMITTEL\">Returns the harmonic mean of a data set.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_HARMITTEL\">აბრუნებს მონაცემთა განლაგების ჰარმონიულ მნიშვნელობას.</ahelp>"
-#. a7)A
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16485,7 +14812,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. p:b#
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16495,7 +14821,6 @@ msgctxt ""
msgid "HARMEAN(Number1; Number2; ...Number30)"
msgstr "HARMEAN(რიცხვი 1; რიცხვი 2; ... რიცხვი 30)"
-#. N9Me
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16505,7 +14830,6 @@ msgctxt ""
msgid "<emph>Number1,Number2,...Number30</emph> are up to 30 values or ranges, that can be used to calculate the harmonic mean."
msgstr ""
-#. *~5k
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16515,7 +14839,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. H?sh
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16525,7 +14848,6 @@ msgctxt ""
msgid "<item type=\"input\">=HARMEAN(23;46;69)</item> = 37.64. The harmonic mean of this random sample is thus 37.64"
msgstr "GEOMEAN(23; 46; 69) = 41.79. ამრიგად შემთხვევითი შერჩევის გეომეტრიული მნიშვნელობაა 41.79."
-#. ~Z/S
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16534,7 +14856,6 @@ msgctxt ""
msgid "<bookmark_value>HYPGEOMDIST function</bookmark_value> <bookmark_value>sampling without replacement</bookmark_value>"
msgstr "<bookmark_value>HYPGEOMDIST ფუნქცია</bookmark_value><bookmark_value>მაშტაბირება ჩანაცვების გარეშე</bookmark_value>"
-#. }hbd
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16544,7 +14865,6 @@ msgctxt ""
msgid "HYPGEOMDIST"
msgstr "HYPGEOMDIST"
-#. .Jog
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16554,7 +14874,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Returns the hypergeometric distribution.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">აბრუნებს ჰიპერბოლიურ განაწილებას.</ahelp>"
-#. Qlh-
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16564,7 +14883,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. LGDf
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16574,7 +14892,6 @@ msgctxt ""
msgid "HYPGEOMDIST(X; NSample; Successes; NPopulation)"
msgstr "HYPGEOMDIST(X; N_შერჩევა; წარმატებები; N_მოსახლეობა)"
-#. pgh*
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16584,7 +14901,6 @@ msgctxt ""
msgid "<emph>X</emph> is the number of results achieved in the random sample."
msgstr "<emph>X</emph> არის შედეგის ნომერი რომელიც მოცემულია შემთხვევით შერჩევაში."
-#. E!n%
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16594,7 +14910,6 @@ msgctxt ""
msgid "<emph>NSample</emph> is the size of the random sample."
msgstr "<emph>N_შერჩევა</emph> არის შემთხვევითი შერჩევის ზომა."
-#. \3gV
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16604,7 +14919,6 @@ msgctxt ""
msgid "<emph>Successes</emph> is the number of possible results in the total population."
msgstr "<emph>წარმატება</emph> მთელ მოსახლეობაში შესაძლო შედეგების რაოდენობა."
-#. \uMB
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16614,7 +14928,6 @@ msgctxt ""
msgid "<emph>NPopulation </emph>is the size of the total population."
msgstr "<emph>N_მოსახლეობა </emph>არის სრული მოსახლეობის ზომა."
-#. XC(S
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16624,7 +14937,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. vT/2
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
@@ -16634,7 +14946,6 @@ msgctxt ""
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 ""
-#. W~BN
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16643,7 +14954,6 @@ msgctxt ""
msgid "Options"
msgstr "პარამეტრები"
-#. T]G3
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16653,7 +14963,6 @@ msgctxt ""
msgid "Options"
msgstr "პარამეტრები"
-#. +xLZ
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16663,7 +14972,6 @@ msgctxt ""
msgid "Contains column labels"
msgstr "შეიცავს სვეტის ეტიკეტებს"
-#. OKWl
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16673,7 +14981,6 @@ msgctxt ""
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\">ეტიკეტების შემცველი უჯრების დიაპაზონის მონიშვნა.</ahelp>"
-#. xM46
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16683,7 +14990,6 @@ msgctxt ""
msgid "Insert or delete cells"
msgstr "უჯრების ჩამატება ან წაშლა"
-#. cb8[
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16693,7 +14999,6 @@ msgctxt ""
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 ""
-#. QhbV
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16703,7 +15008,6 @@ msgctxt ""
msgid "Keep formatting"
msgstr "ფორმატირების დატოვება"
-#. m/M5
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16713,7 +15017,6 @@ msgctxt ""
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 ""
-#. ,\#B
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16723,7 +15026,6 @@ msgctxt ""
msgid "Don't save imported data"
msgstr "იმპორტირებული მონაცემების არ შენახვა"
-#. qvdl
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16733,7 +15035,6 @@ msgctxt ""
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 ""
-#. vpx$
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16743,7 +15044,6 @@ msgctxt ""
msgid "Source:"
msgstr "წყარო:"
-#. }kFl
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16753,7 +15053,6 @@ msgctxt ""
msgid "Displays information about the current database source and any existing operators."
msgstr ""
-#. eK,c
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16763,7 +15062,6 @@ msgctxt ""
msgid "More <<"
msgstr "დამატებით <<"
-#. wpEC
#: 12010100.xhp
msgctxt ""
"12010100.xhp\n"
@@ -16773,7 +15071,6 @@ msgctxt ""
msgid "Hides the additional options."
msgstr "მალავს დამატებით პარამეტრებს."
-#. zuv\
#: func_hour.xhp
msgctxt ""
"func_hour.xhp\n"
@@ -16782,7 +15079,6 @@ msgctxt ""
msgid "HOUR"
msgstr "HOUR"
-#. 2K]k
#: func_hour.xhp
msgctxt ""
"func_hour.xhp\n"
@@ -16791,7 +15087,6 @@ msgctxt ""
msgid "<bookmark_value>HOUR function</bookmark_value>"
msgstr "<bookmark_value>HOUR ფუნქცია</bookmark_value>"
-#. \cbt
#: func_hour.xhp
msgctxt ""
"func_hour.xhp\n"
@@ -16801,7 +15096,6 @@ msgctxt ""
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>"
-#. ;X_9
#: func_hour.xhp
#, fuzzy
msgctxt ""
@@ -16812,7 +15106,6 @@ msgctxt ""
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_MONAT\">მოცემული თარიღისთვის აბრუნებს თვეს.</ahelp> თვე ბრუნდება რიცხვის სახით 1-სა და 12-ს შორის."
-#. Lk)/
#: func_hour.xhp
msgctxt ""
"func_hour.xhp\n"
@@ -16822,7 +15115,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. kg4o
#: func_hour.xhp
msgctxt ""
"func_hour.xhp\n"
@@ -16832,7 +15124,6 @@ msgctxt ""
msgid "HOUR(Number)"
msgstr "HOUR(რიცხვი)"
-#. +8@T
#: func_hour.xhp
msgctxt ""
"func_hour.xhp\n"
@@ -16842,7 +15133,6 @@ msgctxt ""
msgid "<emph>Number</emph>, as a time value, is a decimal, for which the hour is to be returned."
msgstr "<emph>რიცხვი</emph>, რგორც დროის მნიშვნელობა; არის ათწილადი; რომლისთვისაც დაბრუნდება წამები."
-#. ~GO0
#: func_hour.xhp
msgctxt ""
"func_hour.xhp\n"
@@ -16852,7 +15142,6 @@ msgctxt ""
msgid "Examples"
msgstr "მაგალითები"
-#. -X?F
#: func_hour.xhp
msgctxt ""
"func_hour.xhp\n"
@@ -16862,7 +15151,6 @@ msgctxt ""
msgid "<item type=\"input\">=HOUR(NOW())</item> returns the current hour"
msgstr ""
-#. gK.R
#: func_hour.xhp
msgctxt ""
"func_hour.xhp\n"
@@ -16872,7 +15160,6 @@ msgctxt ""
msgid "<item type=\"input\">=HOUR(C4)</item> returns 17 if the contents of C4 = <item type=\"input\">17:20:00</item>."
msgstr ""
-#. S%jC
#: func_hour.xhp
msgctxt ""
"func_hour.xhp\n"
@@ -16882,7 +15169,6 @@ msgctxt ""
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>."
-#. Nnq0
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16891,7 +15177,6 @@ msgctxt ""
msgid "Add-in Functions, List of Analysis Functions Part One"
msgstr "დამატებითი ფუნქციები, ანალიზის ფუნქციების სია პირველი ნაწილი"
-#. ^HrA
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16900,7 +15185,6 @@ msgctxt ""
msgid "<bookmark_value>add-ins; analysis functions</bookmark_value><bookmark_value>analysis functions</bookmark_value>"
msgstr "<bookmark_value>დამატება; ანალიზის ფუნქციები</bookmark_value><bookmark_value>ანალიზის ფუნქციები</bookmark_value>"
-#. ]3Bh
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16910,7 +15194,6 @@ msgctxt ""
msgid "Add-in Functions, List of Analysis Functions Part One"
msgstr "დამატებითი ფუნქციები, ანალიზის ფუნქციების სია პირველი ნაწილი"
-#. -;j/
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16920,7 +15203,6 @@ msgctxt ""
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\">საერთო გარდაქმნის ფუნქციების საფუძვლები</link>"
-#. If)H
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16930,7 +15212,6 @@ msgctxt ""
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\">ანალიზის ფუნქციები მეორე ნაწილი</link>"
-#. d5M.
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16940,7 +15221,6 @@ msgctxt ""
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\">უკან მიმოხილვისკენ</link>"
-#. L_]8
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16949,7 +15229,6 @@ msgctxt ""
msgid "<bookmark_value>Bessel functions</bookmark_value>"
msgstr "<bookmark_value>Bessel ფუნქცია</bookmark_value>"
-#. )F?P
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16959,7 +15238,6 @@ msgctxt ""
msgid "BESSELI"
msgstr "BESSELI"
-#. +:/1
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16969,7 +15247,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">Calculates the modified Bessel function.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">გამოთვლის ჩასწორებულ ბაზელის ფუნქციას.</ahelp>"
-#. -OT!
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16979,7 +15256,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. 2D/(
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16989,7 +15265,6 @@ msgctxt ""
msgid "BESSELI(X; N)"
msgstr "BESSELI(x;n)"
-#. /elH
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -16999,7 +15274,6 @@ msgctxt ""
msgid "<emph>X</emph> is the value on which the function will be calculated."
msgstr "x: მნიშვნელობა, რომელზეც გამოითვლება ფუნქცია."
-#. HhwV
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17009,7 +15283,6 @@ msgctxt ""
msgid "<emph>N</emph> is the order of the Bessel function"
msgstr ""
-#. PA~X
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17019,7 +15292,6 @@ msgctxt ""
msgid "BESSELJ"
msgstr "BESSELJ"
-#. ?FK?
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17029,7 +15301,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">Calculates the Bessel function (cylinder function).</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">ანგარიშობს ბაზელის ფუნქციას (ცილინდრულ ფუნქციას).</ahelp>"
-#. :%D=
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17039,7 +15310,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. sqpQ
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17049,7 +15319,6 @@ msgctxt ""
msgid "BESSELJ(X; N)"
msgstr "BESSELJ(x;n)"
-#. MR2u
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17059,7 +15328,6 @@ msgctxt ""
msgid "<emph>X</emph> is the value on which the function will be calculated."
msgstr "x: მნიშვნელობა, რომელზეც გამოითვლება ფუნქცია."
-#. $Rcr
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17069,7 +15337,6 @@ msgctxt ""
msgid "<emph>N</emph> is the order of the Bessel function"
msgstr ""
-#. 9u|6
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17079,7 +15346,6 @@ msgctxt ""
msgid "BESSELK"
msgstr "BESSELK"
-#. p`R0
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17089,7 +15355,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">Calculates the modified Bessel function.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">გამოთვლის ჩასწორებულ ბეზელის ფუნქციას.</ahelp>"
-#. #oou
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17099,7 +15364,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. I/=#
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17109,7 +15373,6 @@ msgctxt ""
msgid "BESSELK(X; N)"
msgstr "BESSELK(x;n)"
-#. joQ:
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17119,7 +15382,6 @@ msgctxt ""
msgid "<emph>X</emph> is the value on which the function will be calculated."
msgstr "x: მნიშვნელობა, რომელზეც გამოითვლება ფუნქცია."
-#. #fYg
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17129,7 +15391,6 @@ msgctxt ""
msgid "<emph>N</emph> is the order of the Bessel function"
msgstr ""
-#. .Q%f
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17139,7 +15400,6 @@ msgctxt ""
msgid "BESSELY"
msgstr "BESSELY"
-#. .fLm
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17149,7 +15409,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Calculates the modified Bessel function.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">გამოთვლის ჩასწორებულ ბეზელის ფუნქციას.</ahelp>"
-#. ,}Eb
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17159,7 +15418,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. /:Uf
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17169,7 +15427,6 @@ msgctxt ""
msgid "BESSELY(X; N)"
msgstr "BESSELY(x;n)"
-#. ej#m
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17179,7 +15436,6 @@ msgctxt ""
msgid "<emph>X</emph> is the value on which the function will be calculated."
msgstr "x: მნიშვნელობა, რომელზეც გამოითვლება ფუნქცია."
-#. CJQr
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17189,7 +15445,6 @@ msgctxt ""
msgid "<emph>N</emph> is the order of the Bessel function"
msgstr ""
-#. 5D@k
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17198,7 +15453,6 @@ msgctxt ""
msgid "<bookmark_value>BIN2DEC function</bookmark_value><bookmark_value>converting;binary numbers, into decimal numbers</bookmark_value>"
msgstr "<bookmark_value>BIN2DEC ფუნქცია</bookmark_value><bookmark_value>გარდაქმნა;ორობითი რიცხვები; ათობით რიცხვებად</bookmark_value>"
-#. ,JI;
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17208,7 +15462,6 @@ msgctxt ""
msgid "BIN2DEC"
msgstr "BIN2DEC"
-#. K27c
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17218,7 +15471,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">The result is the decimal number for the binary number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">შედეგი არის შეყვანილი ორობითი რიცხვისთვის ათობითი რიცხვი.</ahelp>"
-#. TW+j
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17228,7 +15480,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. a[[+
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17238,7 +15489,6 @@ msgctxt ""
msgid "BIN2DEC(Number)"
msgstr "BIN2DEC (რიცხვი)"
-#. ..7_
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17248,7 +15498,6 @@ msgctxt ""
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 "რიცხვი: ორობითი რიცხვი. რიცხვს შეიძლება მაქიმუმ 10 ადგილი (ბიტი) ჰქონდეს. ყველაზე მნისვნელოვანია ნიშნის ბიტი. უარყოფითი რიცხვები შეყვანილია როგორც ორის დამატება."
-#. 1814
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17258,7 +15507,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. !/Ep
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17268,7 +15516,6 @@ msgctxt ""
msgid "<item type=\"input\">=BIN2DEC(1100100)</item> returns 100."
msgstr ""
-#. 1.H=
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17277,7 +15524,6 @@ msgctxt ""
msgid "<bookmark_value>BIN2HEX function</bookmark_value><bookmark_value>converting;binary numbers, into hexadecimal numbers</bookmark_value>"
msgstr "<bookmark_value>BIN2HEX ფუნქცია</bookmark_value><bookmark_value>გარდაქმნა;ორობითი რიცხვები; თექსვსმეტობით რიცხვებად</bookmark_value>"
-#. cTpj
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17287,7 +15533,6 @@ msgctxt ""
msgid "BIN2HEX"
msgstr "BIN2HEX"
-#. BBAE
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17297,7 +15542,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2HEX\">The result is the hexadecimal number for the binary number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2HEX\">შედეგი არის შეყვანილი ორობითი რიცხვისთვის თექვსმეტობითი რიცხვი.</ahelp>"
-#. FD0F
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17307,7 +15551,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. eOw*
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17317,7 +15560,6 @@ msgctxt ""
msgid "BIN2HEX(Number; Places)"
msgstr "BIN2HEX(რიცხვი;ადგილები)"
-#. ZUZD
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17327,7 +15569,6 @@ msgctxt ""
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 "რიცხვი: ორობითი რიცხვი. რიცხვს შეიძლება მაქიმუმ 10 ადგილი (ბიტი) ჰქონდეს. ყველაზე მნისვნელოვანია ნიშნის ბიტი. უარყოფითი რიცხვები შეყვანილია როგორც ორის დამატება."
-#. e!mB
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17337,7 +15578,6 @@ msgctxt ""
msgid "Places means the number of places to be output."
msgstr "ადგილები: გამოსატანი ადგილების ნომრები."
-#. `a0b
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17347,7 +15587,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. b1\w
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17357,7 +15596,6 @@ msgctxt ""
msgid "<item type=\"input\">=BIN2HEX(1100100;6)</item> returns 000064."
msgstr ""
-#. Y[!I
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17366,7 +15604,6 @@ msgctxt ""
msgid "<bookmark_value>BIN2OCT function</bookmark_value><bookmark_value>converting;binary numbers, into octal numbers</bookmark_value>"
msgstr "<bookmark_value>BIN2OCT ფუნქცია</bookmark_value><bookmark_value>გარდაქმნა;ორობითი რიცხვები; რვაობით რიცხვებად</bookmark_value>"
-#. ]Pyy
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17376,7 +15613,6 @@ msgctxt ""
msgid "BIN2OCT"
msgstr "BIN2OCT"
-#. CYKN
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17386,7 +15622,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\"> The result is the octal number for the binary number entered.</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\"> შედეგი არის შეყვანილი ორობითი რიცხვისთვის რვაობითი რიცხვი.</ahelp>"
-#. TMOR
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17396,7 +15631,6 @@ msgctxt ""
msgid "Syntax"
msgstr "სინტაქსი"
-#. YWmO
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17406,7 +15640,6 @@ msgctxt ""
msgid "BIN2OCT(Number; Places)"
msgstr "BIN2OCT(რიცხვი;ადგილები)"
-#. R|v)
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17416,7 +15649,6 @@ msgctxt ""
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 "რიცხვი: ორობითი რიცხვი. რიცხვს შეიძლება მაქიმუმ 10 ადგილი (ბიტი) ჰქონდეს. ყველაზე მნისვნელოვანია ნიშნის ბიტი. უარყოფითი რიცხვები შეყვანილია როგორც ორის დამატება."
-#. Owlo
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17426,7 +15658,6 @@ msgctxt ""
msgid "<emph>Places</emph> means the number of places to be output."
msgstr "ადგილები: გამოსატანი ადგილების ნომრები."
-#. bZ=f
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17436,7 +15667,6 @@ msgctxt ""
msgid "Example"
msgstr "მაგალითი"
-#. X]40
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17446,7 +15676,6 @@ msgctxt ""
msgid "<item type=\"input\">=BIN2OCT(1100100;4)</item> returns 0144."
msgstr ""
-#. ,$-U
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17455,7 +15684,6 @@ msgctxt ""
msgid "<bookmark_value>DELTA function</bookmark_value><bookmark_value>recognizing;equal numbers</bookmark_value>"
msgstr "<bookmark_value>DELTA ფუნქცია</bookmark_value><bookmark_value>ტოლი რიცხვების ამოცნობა</bookmark_value>"
-#. GvUp
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17465,7 +15693,6 @@ msgctxt ""
msgid "DELTA"
msgstr "DELTA"
-#. .[aY
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
@@ -17474,48133 +15701,3 @@ msgctxt ""
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_DELTA\">The result is TRUE (1) if both numbers, which are delivered as an argument, are equal, otherwise it is FALSE (0).</ahelp>"
msgstr "<ahelp hid=\"HID_AAI_FUNC_DELTA\">შედეგია TRUE (1) თუ ორივე რიცხვი არგუმენტში ტოლია, სხვაგვარად არის FALSE (0).</ahelp>"
-
-#. NP#~
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3155435\n"
-"131\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. G`jq
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3145247\n"
-"132\n"
-"help.text"
-msgid "DELTA(Number1; Number2)"
-msgstr "DELTA(რიცხვი 1;რიცხვი 2)"
-
-#. D%48
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3149002\n"
-"133\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. JBUk
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3151020\n"
-"134\n"
-"help.text"
-msgid "<item type=\"input\">=DELTA(1;2)</item> returns 0."
-msgstr ""
-
-#. L+?.
-#: 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>DEC2BIN ფუნქცია</bookmark_value><bookmark_value>გარდაქმნა;ათობითი რიცხვები; ორობით რიცხვებად</bookmark_value>"
-
-#. HaRb
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3157971\n"
-"55\n"
-"help.text"
-msgid "DEC2BIN"
-msgstr "DEC2BIN"
-
-#. W`~!
-#: 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\"> შედეგი არის შეყვანილი ათობითი რიცხვისთვის -512 და 511-ს შორის ორობითი რიცხვი.</ahelp>"
-
-#. nE!#
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3145349\n"
-"57\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. 1nJ[
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150569\n"
-"58\n"
-"help.text"
-msgid "DEC2BIN(Number; Places)"
-msgstr "DEC2BIN(რიცხვი;ადგილები)"
-
-#. umNI
-#: 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>რიცხვი</emph> უარყოფითია, ფუნქცია აბრუნებს ორობით რიცხვს 10 სიმბოლოთი. ყველაზე მნიშვნელოვანია ნიშნის ბიტი, დანარჩენი 9 ბიტი არის მნიშვნელობა."
-
-#. $q01
-#: 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 "ადგილები: გამოსატანი ადგილების ნომრები."
-
-#. AiAP
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3150265\n"
-"61\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. {!I{
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150662\n"
-"62\n"
-"help.text"
-msgid "<item type=\"input\">=DEC2BIN(100;8)</item> returns 01100100."
-msgstr ""
-
-#. JmXp
-#: 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>DEC2HEX ფუნქცია</bookmark_value><bookmark_value>გარდაქმნა;ათობითი რიცხვები; თექვსმეტობით რიცხვებად</bookmark_value>"
-
-#. M1T#
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3149388\n"
-"71\n"
-"help.text"
-msgid "DEC2HEX"
-msgstr "DEC2HEX"
-
-#. =d+6
-#: 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\">შედეგი არის შეყვანილი ათობითი რიცხვისთვის თექვსმეტობითი რიცხვი.</ahelp>"
-
-#. kB{n
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3150691\n"
-"73\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. F@l!
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3147535\n"
-"74\n"
-"help.text"
-msgid "DEC2HEX(Number; Places)"
-msgstr "DEC2HEX(რიცხვი;ადგილები)"
-
-#. sgIQ
-#: 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>რიცხვი</emph> უარყოფითია, ფუნქცია აბრუნებს თექვსმეტობით რიცხვს 10 სიმბოლოთი (40 ბიტი). ყველაზე მნიშვნელოვანია ნიშნის ბიტი, დანარჩენი 39 ბიტი არის მნიშვნელობა."
-
-#. UeiT
-#: 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 "ადგილები: გამოსატანი ადგილების ნომრები."
-
-#. s=t]
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3154869\n"
-"77\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. Zjhd
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150476\n"
-"78\n"
-"help.text"
-msgid "<item type=\"input\">=DEC2HEX(100;4)</item> returns 0064."
-msgstr ""
-
-#. w;qZ
-#: 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>DEC2OCT ფუნქცია</bookmark_value><bookmark_value>გარდაქმნა;ათობითი რიცხვები; რვაობით რიცხვებად</bookmark_value>"
-
-#. AOCk
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3154948\n"
-"63\n"
-"help.text"
-msgid "DEC2OCT"
-msgstr "DEC2OCT"
-
-#. sC%D
-#: 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\">შედეგი არის შეყვანილი ათობითი რიცხვისთვის რვაობითი რიცხვი.</ahelp>"
-
-#. MoI^
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3153178\n"
-"65\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. BWNB
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3148427\n"
-"66\n"
-"help.text"
-msgid "DEC2OCT(Number; Places)"
-msgstr "DEC2OCT(რიცხვი;ადგილები)"
-
-#. _cUH
-#: 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>რიცხვი</emph> უარყოფითია, ფუნქცია აბრუნებს რვაობით რიცხვს 10 სიმბოლოთი (30 ბიტი). ყველაზე მნიშვნელოვანია ნიშნის ბიტი, დანარჩენი 29 ბიტი არის მნიშვნელობა."
-
-#. iAoF
-#: 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 "ადგილები: გამოსატანი ადგილების ნომრები."
-
-#. @Alu
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3147482\n"
-"69\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. u3+D
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3154317\n"
-"70\n"
-"help.text"
-msgid "<item type=\"input\">=DEC2OCT(100;4)</item> returns 0144."
-msgstr ""
-
-#. =0{e
-#: 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>ERF ფუნქცია</bookmark_value><bookmark_value>ინტეგრალის გაუსის შეცდომა</bookmark_value>"
-
-#. ln7\
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3083446\n"
-"135\n"
-"help.text"
-msgid "ERF"
-msgstr "ERF"
-
-#. /_=F
-#: 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\">აბრუნებს გაუსის შეცდომის ინტეგრალის მნიშვნელობას.</ahelp>"
-
-#. }_YH
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3152475\n"
-"137\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. )4h.
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3163824\n"
-"138\n"
-"help.text"
-msgid "ERF(LowerLimit; UpperLimit)"
-msgstr "ERF(ქვედა ზღურბლი;ზედა ზღურბლი)"
-
-#. XL06
-#: 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 ""
-
-#. tzE3
-#: 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 "ზედა ზღვარი: არასავალდებულო, ზედა ზღვარი არის მთელი რიცხვი. თუ ეს მნიშვნელობა არაა, გამოჩვლა მოხდება 0-სა და ქვედა ზღვარს შორის."
-
-#. f[sI
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3154819\n"
-"141\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. %dHa
-#: 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 ""
-
-#. ;5-O
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3145082\n"
-"help.text"
-msgid "<bookmark_value>ERFC function</bookmark_value>"
-msgstr "<bookmark_value>ERFC ფუნქცია</bookmark_value>"
-
-#. SA?s
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3145082\n"
-"143\n"
-"help.text"
-msgid "ERFC"
-msgstr "ERFC"
-
-#. /+,g
-#: 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\">აბრუნებს გაუსის შეცდომის ინტეგრალის დამატებით მნიშვნელობას x-და და უსასრულობას შორის.</ahelp>"
-
-#. o\;8
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3155839\n"
-"145\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. OF-6
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153220\n"
-"146\n"
-"help.text"
-msgid "ERFC(LowerLimit)"
-msgstr "ERFC(ქვედა ზღურბლი)"
-
-#. M:RD
-#: 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 ""
-
-#. ;3Cb
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3146861\n"
-"148\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. =BCT
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3156102\n"
-"149\n"
-"help.text"
-msgid "<item type=\"input\">=ERFC(1)</item> returns 0.157299."
-msgstr ""
-
-#. [+9T
-#: 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>GESTEP ფუნქცია</bookmark_value><bookmark_value>რიცხვები;მეტია ან ტოლია</bookmark_value>"
-
-#. \cK.
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3152927\n"
-"150\n"
-"help.text"
-msgid "GESTEP"
-msgstr "GESTEP"
-
-#. 4X!j
-#: 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 ""
-
-#. OpX:
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3150879\n"
-"152\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. YM9f
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3145212\n"
-"153\n"
-"help.text"
-msgid "GESTEP(Number; Step)"
-msgstr "GESTEP(რიცხვი; ნაბიჯი)"
-
-#. iAAQ
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3153275\n"
-"154\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. 1+So
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3156132\n"
-"155\n"
-"help.text"
-msgid "<item type=\"input\">=GESTEP(5;1)</item> returns 1."
-msgstr ""
-
-#. [_~X
-#: 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>HEX2BIN ფუნქცია</bookmark_value><bookmark_value>გარდაქმნა;თექვსმეტობითი რიცხვები; ორობით რიცხვებად</bookmark_value>"
-
-#. PX3d
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3147276\n"
-"79\n"
-"help.text"
-msgid "HEX2BIN"
-msgstr "HEX2BIN"
-
-#. p`2V
-#: 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\">შედეგი არის შეყვანილი თექსვმეტობითი რიცხვის ორობითი რიცხვი.</ahelp>"
-
-#. 3dHi
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3156117\n"
-"81\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. Y4O3
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3155847\n"
-"82\n"
-"help.text"
-msgid "HEX2BIN(Number; Places)"
-msgstr "HEX2BIN(რიცხვი;ადგილები)"
-
-#. T4@W
-#: 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 "რიცხვი: თექვსმეტობითი რიცხვი. რიცხვს შეიძლება მაქიმუმ 10 ადგილი (ბიტი) ჰქონდეს. ყველაზე მნისვნელოვანია ნიშნის ბიტი. უარყოფითი რიცხვები შეყვანილია როგორც ორის დამატება."
-
-#. swVt
-#: 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 "ადგილები: გამოსატანი ადგილების ნომრები."
-
-#. gx3:
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3154052\n"
-"85\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. Z^_n
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3156002\n"
-"86\n"
-"help.text"
-msgid "<item type=\"input\">=HEX2BIN(64;8)</item> returns 01100100."
-msgstr ""
-
-#. 2\Bh
-#: 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>HEX2DEC ფუნქცია</bookmark_value><bookmark_value>გარდაქმნა;თექვსმეტობითი რიცხვები; ათობით რიცხვებად</bookmark_value>"
-
-#. hH3s
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3154742\n"
-"87\n"
-"help.text"
-msgid "HEX2DEC"
-msgstr "HEX2DEC"
-
-#. =h+:
-#: 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\">შედეგი არის შეყვანილი თექსვმეტობითი რიცხვის ათობითი რიცხვი.</ahelp>"
-
-#. $JlR
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3143233\n"
-"89\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. eQqx
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3149293\n"
-"90\n"
-"help.text"
-msgid "HEX2DEC(Number)"
-msgstr "HEX2DEC(რიცხვი)"
-
-#. v*`D
-#: 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 "რიცხვი: თექვსმეტობითი რიცხვი. რიცხვს შეიძლება მაქიმუმ 10 ადგილი (ბიტი) ჰქონდეს. ყველაზე მნისვნელოვანია ნიშნის ბიტი. უარყოფითი რიცხვები შეყვანილია როგორც ორის დამატება."
-
-#. h7%[
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3154304\n"
-"92\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. m_:k
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3146093\n"
-"93\n"
-"help.text"
-msgid "<item type=\"input\">=HEX2DEC(64)</item> returns 100."
-msgstr ""
-
-#. Jhe+
-#: 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>HEX2OCT ფუნქცია</bookmark_value><bookmark_value>გარდაქმნა;თექვსმეტობითი რიცხვები; რვაობით რიცხვებად</bookmark_value>"
-
-#. AMVD
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3149750\n"
-"94\n"
-"help.text"
-msgid "HEX2OCT"
-msgstr "HEX2OCT"
-
-#. Qve/
-#: 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\">შედეგი არის შეყვანილი თექსვმეტობითი რიცხვის რვაობითი რიცხვი.</ahelp>"
-
-#. nE{c
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3145660\n"
-"96\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. 6r8l
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3151170\n"
-"97\n"
-"help.text"
-msgid "HEX2OCT(Number; Places)"
-msgstr "HEX2OCT(რაოდენობა;ადგილები)"
-
-#. Fy/~
-#: 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 "რიცხვი: თექვსმეტობითი რიცხვი. რიცხვს შეიძლება მაქიმუმ 10 ადგილი (ბიტი) ჰქონდეს. ყველაზე მნისვნელოვანია ნიშნის ბიტი. უარყოფითი რიცხვები შეყვანილია როგორც ორის დამატება."
-
-#. ,+ja
-#: 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 "ადგილები: გამოსატანი ადგილების ნომრები."
-
-#. =-X0
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3153901\n"
-"100\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. F?\W
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3159341\n"
-"101\n"
-"help.text"
-msgid "<item type=\"input\">=HEX2OCT(64;4)</item> returns 0144."
-msgstr ""
-
-#. WN{I
-#: 12090300.xhp
-msgctxt ""
-"12090300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Delete"
-msgstr "წაშლა"
-
-#. Qxx\
-#: 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\">წაშლა</link>"
-
-#. RND^
-#: 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:RemoveTableOf\" visibility=\"visible\">შლის მიმდინარე ინდექსს ან ცხრილს.</ahelp>"
-
-#. Hs^,
-#: 05070000.xhp
-msgctxt ""
-"05070000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Page Style"
-msgstr "გვერდის სტილი"
-
-#. BIr:
-#: 05070000.xhp
-msgctxt ""
-"05070000.xhp\n"
-"hd_id3157910\n"
-"1\n"
-"help.text"
-msgid "Page Style"
-msgstr "გვერდის სტილი"
-
-#. baUj
-#: 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 ""
-
-#. [f`V
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"tit\n"
-"help.text"
-msgid "SECOND"
-msgstr "SECOND"
-
-#. _C5Y
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"bm_id3159390\n"
-"help.text"
-msgid "<bookmark_value>SECOND function</bookmark_value>"
-msgstr "<bookmark_value>SECOND ფუნქცია</bookmark_value>"
-
-#. OxUj
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"hd_id3159390\n"
-"86\n"
-"help.text"
-msgid "<variable id=\"second\"><link href=\"text/scalc/01/func_second.xhp\">SECOND</link></variable>"
-msgstr "<variable id=\"second\"><link href=\"text/scalc/01/func_second.xhp\">SECOND</link></variable>"
-
-#. ^c/e
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"par_id3148974\n"
-"87\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SEKUNDE\">Returns the second for the given time value.</ahelp> The second is given as an integer between 0 and 59."
-msgstr "<ahelp hid=\"HID_FUNC_SEKUNDE\">აბრუნებს მოცემული დროის მნიშვნელობიდან წამებს.</ahelp> წამები მოცემულია რიცხვებად 0-დან 59-მდე."
-
-#. =bWB
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"hd_id3154362\n"
-"88\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. (sjd
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"par_id3148407\n"
-"89\n"
-"help.text"
-msgid "SECOND(Number)"
-msgstr "SECOND(რიცხვი)"
-
-#. sm9)
-#: 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>რიცხვი</emph>, რგორც დროის მნიშვნელობა; არის ათწილადი; რომლისთვისაც დაბრუნდება წამები."
-
-#. s(e{
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"hd_id3149992\n"
-"91\n"
-"help.text"
-msgid "Examples"
-msgstr "მაგალითები"
-
-#. ]=fW
-#: 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 ""
-
-#. G.$t
-#: 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 ""
-
-#. =U;7
-#: 02190200.xhp
-msgctxt ""
-"02190200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Column Break"
-msgstr "სვეტის გაწყვეტა"
-
-#. jgZX
-#: 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>ელექტრონული ცხრილები; inserting columns</bookmark_value><bookmark_value>inserting; columns</bookmark_value><bookmark_value>columns; inserting</bookmark_value>"
-
-#. N7+{
-#: 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\">სვეტი Break</link>"
-
-#. +0^_
-#: 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\">Removes a manual column break to the left of the active cell.</ahelp>"
-
-#. cR$|
-#: 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 "Position the cursor in the cell to the right of the column break indicated by a vertical line and აირჩიეთ <emph>რედაქტირება - ხელით წყვეტის წაშლა - სვეტი Break</emph>. The manual column break is removed."
-
-#. kz1z
-#: 12080100.xhp
-msgctxt ""
-"12080100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Hide Details"
-msgstr "დეტალების დამალვა"
-
-#. y74a
-#: 12080100.xhp
-msgctxt ""
-"12080100.xhp\n"
-"bm_id3155628\n"
-"help.text"
-msgid "<bookmark_value>sheets; hiding details</bookmark_value>"
-msgstr "<bookmark_value>ფურცლები, დეტალების დამალვა</bookmark_value>"
-
-#. 8U3H
-#: 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\">დეტალების დამალვა</link>"
-
-#. A5f{
-#: 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 ""
-
-#. ^F^B
-#: 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 ""
-
-#. r^TR
-#: 12090200.xhp
-msgctxt ""
-"12090200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Refresh"
-msgstr "განახლება"
-
-#. /VO6
-#: 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\">განახლება</link>"
-
-#. hlqq
-#: 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=\".\">შლის შერჩეულ მომხმარებელს.</ahelp>"
-
-#. SZ)I
-#: 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 "ცხრილის ცხრილიდან ჩასართავად დააწკაპუნეთ ცხრილის უჯრედზე და ამოირჩიეთ<emph>Table - Insert - Table</emph>."
-
-#. gag`
-#: 05080000.xhp
-msgctxt ""
-"05080000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Print Ranges"
-msgstr "დიაპაზონების ბეჭდვა"
-
-#. V%![
-#: 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\">საბეჭდი დიაპაზონები</link>"
-
-#. kTAs
-#: 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 ""
-
-#. /h4k
-#: 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 ""
-
-#. %*DY
-#: 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\">რედაქტირება</link>"
-
-#. _b$4
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"tit\n"
-"help.text"
-msgid "EOMONTH"
-msgstr "EOMONTH"
-
-#. dc`f
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"bm_id3150991\n"
-"help.text"
-msgid "<bookmark_value>EOMONTH function</bookmark_value>"
-msgstr "<bookmark_value>EOMONTH ფუნქცია</bookmark_value>"
-
-#. W!0X
-#: 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>"
-
-#. n+v3
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3152766\n"
-"232\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_EOMONTH\">Returns the date of the last day of a month which falls m<emph>onths</emph> away from the s<emph>tart date</emph>.</ahelp>"
-msgstr ""
-
-#. F#+U
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"hd_id3150597\n"
-"233\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. 2PqT
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3150351\n"
-"234\n"
-"help.text"
-msgid "EOMONTH(StartDate; Months)"
-msgstr "EOMONTH (საწყისი თარიღი; თვეები)"
-
-#. L74b
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3146787\n"
-"235\n"
-"help.text"
-msgid "<emph>StartDate</emph> is a date (the starting point of the calculation)."
-msgstr ""
-
-#. CL?*
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3155615\n"
-"236\n"
-"help.text"
-msgid "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
-msgstr ""
-
-#. ocWS
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"hd_id3156335\n"
-"237\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. 4.S3
-#: 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 "რა ტოლია დღე - თვე თვეები სექტემბერი?"
-
-#. B8a_
-#: 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 ""
-
-#. hJH-
-#: 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 ""
-
-#. 3:dC
-#: 02120000.xhp
-msgctxt ""
-"02120000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Headers & Footers"
-msgstr "თავსართები & ქვესართები"
-
-#. 1Qu:
-#: 02120000.xhp
-msgctxt ""
-"02120000.xhp\n"
-"hd_id3145251\n"
-"1\n"
-"help.text"
-msgid "Headers & Footers"
-msgstr "თავსართები & ქვესართები"
-
-#. s[vo
-#: 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\">საშუალებას გაძლევთ განსაზღვროთ და გააფორმოთ თავსართები და ქვესართები.</ahelp></variable>"
-
-#. 2-zr
-#: 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 "დიალოგი<emph> ზედა და ქვედა კოლონტიტულები </emph>შეიცავს ჩანართებს კოლონტიტულების განსაზღვრისათვის. მათ შეუძლიათ გაყონ ჩანართი მარჯვენა და მარცხენა ფურცლებისათვის ზედა და ქვედა კოლონტიტულები, თუ მონიშნულია <emph>განსხვავებული შინაარსი მარჯვნივ/მარცხნივ </emph> <link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\">ფურცლის სტილი</link> დიალოგში."
-
-#. `rud
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"tit\n"
-"help.text"
-msgid "Statistics Functions"
-msgstr "სტატისტიკური ფუნქციები"
-
-#. Fsz0
-#: 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>ელცხრილები; ფუნქცუები</bookmark_value><bookmark_value>ფუნქცუების ოსტატი, ელცხრილები</bookmark_value><bookmark_value>ფუნქცუები; ელცხრილები</bookmark_value>"
-
-#. X^sC
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"hd_id3153018\n"
-"1\n"
-"help.text"
-msgid "Statistics Functions"
-msgstr "სტატისტიკური ფუნქციები"
-
-#. U:1o
-#: 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\">ეს კატეგორია შეიცავს <emph>სტატისტიკურ</emph> ფუნქციებს. </variable>"
-
-#. R#R9
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3149001\n"
-"9\n"
-"help.text"
-msgid "Some of the examples use the following data table:"
-msgstr "ზოგი მაგალითი გამოყენებულია შემდეგ ცხრილში:"
-
-#. GDRJ
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3148775\n"
-"10\n"
-"help.text"
-msgid "C"
-msgstr "C"
-
-#. _8D{
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3145297\n"
-"11\n"
-"help.text"
-msgid "D"
-msgstr "D"
-
-#. wDZY
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3150661\n"
-"12\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#. zsq-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3153551\n"
-"13\n"
-"help.text"
-msgid "x value"
-msgstr "x მნიშვნელობა"
-
-#. 1kef
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3147536\n"
-"14\n"
-"help.text"
-msgid "y value"
-msgstr "y მნიშვნელობა"
-
-#. 6Cge
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3153224\n"
-"15\n"
-"help.text"
-msgid "3"
-msgstr "3"
-
-#. -3k]
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3150475\n"
-"16\n"
-"help.text"
-msgid "-5"
-msgstr "-5"
-
-#. m@;$
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3155367\n"
-"17\n"
-"help.text"
-msgid "-3"
-msgstr "-3"
-
-#. Xme|
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3149783\n"
-"18\n"
-"help.text"
-msgid "4"
-msgstr "4"
-
-#. PKb)
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3153181\n"
-"19\n"
-"help.text"
-msgid "-2"
-msgstr "-2"
-
-#. j#Tb
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3148429\n"
-"20\n"
-"help.text"
-msgid "0"
-msgstr "0"
-
-#. hX3L
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3152588\n"
-"21\n"
-"help.text"
-msgid "5"
-msgstr "5"
-
-#. ,9,\
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3147483\n"
-"22\n"
-"help.text"
-msgid "-1"
-msgstr "-1"
-
-#. lCv;
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3083443\n"
-"23\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#. IVVl
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3149826\n"
-"24\n"
-"help.text"
-msgid "6"
-msgstr "6"
-
-#. iBQB
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3163820\n"
-"25\n"
-"help.text"
-msgid "0"
-msgstr "0"
-
-#. ?n!4
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3154816\n"
-"26\n"
-"help.text"
-msgid "3"
-msgstr "3"
-
-#. .D0}
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3149276\n"
-"27\n"
-"help.text"
-msgid "7"
-msgstr "7"
-
-#. Ze,r
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3149267\n"
-"28\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#. ?!1;
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3156310\n"
-"29\n"
-"help.text"
-msgid "4"
-msgstr "4"
-
-#. k@R)
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3154639\n"
-"30\n"
-"help.text"
-msgid "8"
-msgstr "8"
-
-#. G:,_
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3145205\n"
-"31\n"
-"help.text"
-msgid "4"
-msgstr "4"
-
-#. R/Vm
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3153276\n"
-"32\n"
-"help.text"
-msgid "6"
-msgstr "6"
-
-#. ztoI
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3150756\n"
-"33\n"
-"help.text"
-msgid "9"
-msgstr "9"
-
-#. @5Zv
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3156095\n"
-"34\n"
-"help.text"
-msgid "6"
-msgstr "6"
-
-#. L@?m
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3152929\n"
-"35\n"
-"help.text"
-msgid "8"
-msgstr "8"
-
-#. ,}an
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3156324\n"
-"36\n"
-"help.text"
-msgid "The statistical functions are described in the following subsections."
-msgstr "სტატისტიკური ფუნქციები შემდეგ ქვესექციაშია აღწერილი."
-
-#. OS0W
-#: 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.\">ანალიზის დამატებითი სტატისტიკური ფუნქციები</link>"
-
-#. T#k\
-#: 02190100.xhp
-msgctxt ""
-"02190100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Row Break"
-msgstr "რიგის გაწყვეტა"
-
-#. l-[(
-#: 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>ელექტრონული ცხრილები; inserting columns</bookmark_value><bookmark_value>inserting; columns</bookmark_value><bookmark_value>columns; inserting</bookmark_value>"
-
-#. TK9*
-#: 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\">Row Break</link>"
-
-#. TveS
-#: 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\">Removes the manual row break above the active cell.</ahelp>"
-
-#. ?]m#
-#: 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 "Position the cursor in a cell directly below the row break indicated by a horizontal line and აირჩიეთ <emph>რედაქტირება - ხელით წყვეტის წაშლა - Row Break</emph>. The manual row break is removed."
-
-#. C0W/
-#: 02140300.xhp
-msgctxt ""
-"02140300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Up"
-msgstr "ზევით"
-
-#. \eGP
-#: 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\">მაღლა</link>"
-
-#. ^xi9
-#: 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\">შეავსებს მონიშნულ დიაპაზონს მინიმუმ ორ სტრიქონს დიაპაზონის ყველაზე დაბლითა უჯრის მნიშვნელობით.</ahelp>"
-
-#. AgDB
-#: 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 "თუ მონიშნული დიაპაზონი არის მხოლოდ ერთი სვეტი, მაშინ ქვედა უჯრის შემადგენლობა კოპირდება ყველ დანარჩენში მონიშნულში. თუ მონიშნული რამოდენიმე სვეტი, მაშინ მითითებული დაბლითა უჯრა კოპირებული იქნება ზემოთ."
-
-#. m*#k
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Optimal Row Heights"
-msgstr "რიგის ოპტიმალური სიმაღლე"
-
-#. UTRv
-#: 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>ფურცლები; რიგის ოპტიმალური სიმაღლე</bookmark_value><bookmark_value>რიგები; ოპტიმალური სიმაღლე</bookmark_value><bookmark_value>რიგის ოპტიმალური სიმაღლე</bookmark_value>"
-
-#. A?D-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"hd_id3148491\n"
-"1\n"
-"help.text"
-msgid "Optimal Row Heights"
-msgstr "რიგის ოპტიმალური სიმაღლე"
-
-#. CaS_
-#: 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 ""
-
-#. :`pL
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"hd_id3154908\n"
-"3\n"
-"help.text"
-msgid "Add"
-msgstr "დამატება"
-
-#. /`UV
-#: 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 ""
-
-#. lE:8
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"hd_id3150439\n"
-"5\n"
-"help.text"
-msgid "Default value"
-msgstr "ნაგულისხმევი მნიშვნელობა"
-
-#. m]w3
-#: 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\">რიგის ოპტიმალური სიმაღლის პარამეტრის განულება.</ahelp>"
-
-#. 6WkU
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Insert Name"
-msgstr "სახელის ჩასმა"
-
-#. +!s1
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"bm_id3153195\n"
-"help.text"
-msgid "<bookmark_value>cell ranges; inserting named ranges</bookmark_value><bookmark_value>inserting; cell ranges</bookmark_value>"
-msgstr "<bookmark_value>უჯრების დიაპაზონი; სახელობითი დიაპაზონების ჩასმა</bookmark_value><bookmark_value>ჩასმა; უჯრების დიაპაზონი</bookmark_value>"
-
-#. )z}j
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"hd_id3153195\n"
-"1\n"
-"help.text"
-msgid "Insert Name"
-msgstr "სახელი ჩამატება"
-
-#. wVjb
-#: 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 ""
-
-#. %y*B
-#: 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 ""
-
-#. 9*s?
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"hd_id3153160\n"
-"3\n"
-"help.text"
-msgid "Insert name"
-msgstr "სახელის ჩამატება"
-
-#. b.m*
-#: 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 ""
-
-#. ULfS
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"hd_id3153418\n"
-"5\n"
-"help.text"
-msgid "Insert All"
-msgstr "ყველას ჩამატება"
-
-#. JiBo
-#: 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 ""
-
-#. |_S:
-#: 06030500.xhp
-msgctxt ""
-"06030500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Remove All Traces"
-msgstr "ყველა კვალის ამოშლა"
-
-#. xuC{
-#: 06030500.xhp
-msgctxt ""
-"06030500.xhp\n"
-"bm_id3153088\n"
-"help.text"
-msgid "<bookmark_value>cells; removing traces</bookmark_value>"
-msgstr "<bookmark_value>უჯრები; კვალების მოხსნა</bookmark_value>"
-
-#. a[6X
-#: 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\">ყველა კვალის ამოშლა</link>"
-
-#. n9eA
-#: 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 ""
-
-#. QwO8
-#: 02210000.xhp
-msgctxt ""
-"02210000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Selecting Sheets"
-msgstr "არჩეული ფურცლები"
-
-#. @kh/
-#: 02210000.xhp
-msgctxt ""
-"02210000.xhp\n"
-"hd_id3156023\n"
-"5\n"
-"help.text"
-msgid "Selecting Sheets"
-msgstr "ფურცლების არჩევა"
-
-#. y2#Q
-#: 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\">Selects multiple sheets.</ahelp></variable>"
-
-#. UGh=
-#: 02210000.xhp
-msgctxt ""
-"02210000.xhp\n"
-"hd_id3125863\n"
-"2\n"
-"help.text"
-msgid "Selected Sheets"
-msgstr "Selected Sheets"
-
-#. Y[a/
-#: 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\">გამოიტანე მიმდინარე დოკუმენტის დაფების სია. ფურცლის მოსანიშნად, გადაადგილებისათვის გამოიყენე ზედა ან ქვედა ისრები. მონიშვნაში ფურცლის დასამატებლად დააჭირე Ctrl-ს სანამ აჭერთ ისარს და შემდეგ დააჭირეთ პრობელს. დიაპაზონის მოსანიშნავად დააჭირეთ Shift-ს და შემდეგ ისრებს. </ahelp>"
-
-#. w08c
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"tit\n"
-"help.text"
-msgid "TIMEVALUE"
-msgstr "TIMEVALUE"
-
-#. s:`e
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"bm_id3146755\n"
-"help.text"
-msgid "<bookmark_value>TIMEVALUE function</bookmark_value>"
-msgstr "<bookmark_value>TIMEVALUE ფუნქცია</bookmark_value>"
-
-#. 9~k8
-#: 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>"
-
-#. Zvnk
-#: 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 ""
-
-#. D9jU
-#: 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 ""
-
-#. Hn)!
-#: 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 ""
-
-#. mN5]
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"hd_id3150810\n"
-"163\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. 8e+!
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"par_id3150823\n"
-"164\n"
-"help.text"
-msgid "TIMEVALUE(\"Text\")"
-msgstr "TIMEVALUE(\"ტექსტი\")"
-
-#. yR(R
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"par_id3152556\n"
-"165\n"
-"help.text"
-msgid "<emph>Text</emph> is a valid time expression and must be entered in quotation marks."
-msgstr "<emph>ტექსტი</emph> არის მართებული დროის გამოსახულება, რომელიც ბრჭყალებში უნდა ჩასვთ."
-
-#. LbZn
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"hd_id3146815\n"
-"166\n"
-"help.text"
-msgid "Examples"
-msgstr "მაგალითები"
-
-#. v?:!
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"par_id3146829\n"
-"167\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 "TIMEVALUE(\"4PM\") აბრუნებს 0.67. როდესაც დროის ფორმატი არის HH:MM:SS, იღებთ 16:00:00."
-
-#. 7}1v
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"par_id3153632\n"
-"168\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 ".TIMEVALUE(\"24:00\") აბრუნებს 1. თუ იყენებთ HH:MM:SS დროის ფორმატს, მნიშვნელობა იქნება 00:00:00."
-
-#. F6$s
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"tit\n"
-"help.text"
-msgid "Information Functions"
-msgstr "ინფრმაციის ფუნქციები"
-
-#. .m{[
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"bm_id3147247\n"
-"help.text"
-msgid "<bookmark_value>information functions</bookmark_value><bookmark_value>Function Wizard; information</bookmark_value><bookmark_value>functions; information functions</bookmark_value>"
-msgstr "<bookmark_value>ელცხრილები; ფუნქცუები</bookmark_value><bookmark_value>ფუნქცუების ოსტატი, ელცხრილები</bookmark_value><bookmark_value>ფუნქცუები; ელცხრილები</bookmark_value>"
-
-#. 9Ve$
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3147247\n"
-"1\n"
-"help.text"
-msgid "Information Functions"
-msgstr "ინფრმაციის ფუნქციები"
-
-#. frZ[
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3147499\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"informationtext\">This category contains the <emph>Information</emph> functions. </variable>"
-msgstr "<variable id=\"informationtext\">ეს კატეგორია შეიცავს <emph>ინფორმაციის</emph> ფუნქციებს. </variable>"
-
-#. *%8J
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3159128\n"
-"3\n"
-"help.text"
-msgid "The data in the following table serves as the basis for some of the examples in the function descriptions:"
-msgstr "მონაცემები შემდეგ ცხრილებში ემსახურება ფუნქციების აღწერებში მაგალითებს:"
-
-#. *oNK
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3146885\n"
-"4\n"
-"help.text"
-msgid "C"
-msgstr "C"
-
-#. k:v-
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3149944\n"
-"5\n"
-"help.text"
-msgid "D"
-msgstr "D"
-
-#. egS9
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150457\n"
-"6\n"
-"help.text"
-msgid "<emph>2</emph>"
-msgstr "<emph>2</emph>"
-
-#. ;F2-
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150024\n"
-"7\n"
-"help.text"
-msgid "x <item type=\"input\">value</item>"
-msgstr ""
-
-#. H:SR
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3148725\n"
-"8\n"
-"help.text"
-msgid "y <item type=\"input\">value</item>"
-msgstr ""
-
-#. YYza
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150480\n"
-"9\n"
-"help.text"
-msgid "<emph>3</emph>"
-msgstr "<emph>3</emph>"
-
-#. =Nwy
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3148440\n"
-"10\n"
-"help.text"
-msgid "<item type=\"input\">-5</item>"
-msgstr ""
-
-#. lI=/
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3148888\n"
-"11\n"
-"help.text"
-msgid "<item type=\"input\">-3</item>"
-msgstr ""
-
-#. VoD8
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153034\n"
-"12\n"
-"help.text"
-msgid "<emph>4</emph>"
-msgstr "<emph>4</emph>"
-
-#. S/X\
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150139\n"
-"13\n"
-"help.text"
-msgid "<item type=\"input\">-2</item>"
-msgstr ""
-
-#. 5YNn
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3149542\n"
-"14\n"
-"help.text"
-msgid "<item type=\"input\">0</item>"
-msgstr ""
-
-#. CWR^
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3149188\n"
-"15\n"
-"help.text"
-msgid "<emph>5</emph>"
-msgstr "<emph>5</emph>"
-
-#. Kaeg
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153329\n"
-"16\n"
-"help.text"
-msgid "<item type=\"input\">-1</item>"
-msgstr ""
-
-#. |Z?:
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3155257\n"
-"17\n"
-"help.text"
-msgid "<item type=\"input\">1</item>"
-msgstr ""
-
-#. El\%
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3145142\n"
-"18\n"
-"help.text"
-msgid "<emph>6</emph>"
-msgstr "<emph>6</emph>"
-
-#. TY-f
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3149956\n"
-"19\n"
-"help.text"
-msgid "<item type=\"input\">0</item>"
-msgstr ""
-
-#. 8C?v
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3145594\n"
-"20\n"
-"help.text"
-msgid "<item type=\"input\">3</item>"
-msgstr ""
-
-#. $7?c
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153113\n"
-"21\n"
-"help.text"
-msgid "<emph>7</emph>"
-msgstr "<emph>7</emph>"
-
-#. KaIc
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3148573\n"
-"22\n"
-"help.text"
-msgid "<item type=\"input\">2</item>"
-msgstr ""
-
-#. ],R:
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3145166\n"
-"23\n"
-"help.text"
-msgid "<item type=\"input\">4</item>"
-msgstr ""
-
-#. Aa+-
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3157998\n"
-"24\n"
-"help.text"
-msgid "<emph>8</emph>"
-msgstr "<emph>8</emph>"
-
-#. ?QS4
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150018\n"
-"25\n"
-"help.text"
-msgid "<item type=\"input\">4</item>"
-msgstr ""
-
-#. ozy#
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150129\n"
-"26\n"
-"help.text"
-msgid "<item type=\"input\">6</item>"
-msgstr ""
-
-#. a9YV
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3145245\n"
-"27\n"
-"help.text"
-msgid "<emph>9</emph>"
-msgstr "<emph>9</emph>"
-
-#. ):*J
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3148389\n"
-"28\n"
-"help.text"
-msgid "<item type=\"input\">6</item>"
-msgstr ""
-
-#. b9Du
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3156068\n"
-"29\n"
-"help.text"
-msgid "<item type=\"input\">8</item>"
-msgstr ""
-
-#. Lg=n
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"bm_id3691824\n"
-"help.text"
-msgid "<bookmark_value>INFO function</bookmark_value>"
-msgstr "<bookmark_value>INFO ფუნქცია</bookmark_value>"
-
-#. $9(.
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id5787224\n"
-"help.text"
-msgid "INFO"
-msgstr "INFO"
-
-#. !RW.
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id1507309\n"
-"help.text"
-msgid "Returns specific information about the current working environment. The function receives a single text argument and returns data depending on that parameter."
-msgstr ""
-
-#. =+?C
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id7693411\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. mcJH
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3928952\n"
-"help.text"
-msgid "INFO(\"Type\")"
-msgstr "INFO(ტიპი)"
-
-#. SZsn
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id5206762\n"
-"help.text"
-msgid "The following table lists the values for the text parameter <item type=\"literal\">Type</item> and the return values of the INFO function."
-msgstr ""
-
-#. TU;/
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id5735953\n"
-"help.text"
-msgid "Value for \"Type\""
-msgstr "მნიშვნელობა \"ტიპისთვის\""
-
-#. [^K[
-#: 04060104.xhp
-#, fuzzy
-msgctxt ""
-"04060104.xhp\n"
-"par_id8360850\n"
-"help.text"
-msgid "Return value"
-msgstr "დაბრუნების მნიშვნელობა"
-
-#. /lMR
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id9648731\n"
-"help.text"
-msgid "\"osversion\""
-msgstr "\"სისტემის ვერსია\""
-
-#. tG!_
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id908841\n"
-"help.text"
-msgid "Always \"Windows (32-bit) NT 5.01\", for compatibility reasons"
-msgstr "ყოველთვის \"Windows (32-bit) NT 5.01\", თავსებადობისთვის"
-
-#. 7yrk
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id8193914\n"
-"help.text"
-msgid "\"system\""
-msgstr "\"სისტემა\""
-
-#. 8G0v
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id9841608\n"
-"help.text"
-msgid "The type of the operating system. <br/>\"WNT\" for Microsoft Windows <br/>\"LINUX\" for Linux <br/>\"SOLARIS\" for Solaris"
-msgstr "ოპერაციული სისტემის ტიპი. <br/>\"WNT\" Microsoft Windows-სთვის <br/>\"LINUX\" Linux-სთვის <br/>\"SOLARIS\" Solaris-სთვის"
-
-#. \Sr#
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id2701803\n"
-"help.text"
-msgid "\"release\""
-msgstr "\"გამოშვნება\""
-
-#. CyFH
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id2136295\n"
-"help.text"
-msgid "The product release identifier, for example \"300m25(Build:9876)\""
-msgstr "პროდუქტის გამოშვების იდენტიფიკატორი, მაგალითად \"680m5(Build:9011)\""
-
-#. D4=G
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id9200109\n"
-"help.text"
-msgid "\"numfile\""
-msgstr "\"numfile\""
-
-#. Yo~\
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id4186223\n"
-"help.text"
-msgid "Always 1, for compatibility reasons"
-msgstr "ყოველთვის 1, თავსებადობისთვის"
-
-#. M`8u
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id5766472\n"
-"help.text"
-msgid "\"recalc\""
-msgstr "\"recalc\""
-
-#. ~lht
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id1491134\n"
-"help.text"
-msgid "Current formula recalculation mode, either \"Automatic\" or \"Manual\" (localized into %PRODUCTNAME language)"
-msgstr ""
-
-#. ._fY
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id1161534\n"
-"help.text"
-msgid "Other spreadsheet applications may accept localized values for the <item type=\"literal\">Type</item> parameter, but %PRODUCTNAME Calc will only accept the English values."
-msgstr ""
-
-#. A0pP
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id5459456\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. gds0
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3994567\n"
-"help.text"
-msgid "<item type=\"input\">=INFO(\"release\")</item> returns the product release number of the %PRODUCTNAME in use."
-msgstr "=INFO(\"release\") აბრუნებს პროდუქტის გამოშვების ნომერს %PRODUCTNAME -სთვის."
-
-#. GX-i
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id2873622\n"
-"help.text"
-msgid "<item type=\"input\">=INFO(D5)</item> with cell <item type=\"literal\">D5</item> containing a text string <item type=\"literal\">system</item> returns the operation system type."
-msgstr ""
-
-#. 9r#7
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"bm_id3155625\n"
-"help.text"
-msgid "<bookmark_value>CURRENT function</bookmark_value>"
-msgstr "<bookmark_value>CURRENT ფუნქცია</bookmark_value>"
-
-#. _ROv
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3155625\n"
-"30\n"
-"help.text"
-msgid "CURRENT"
-msgstr "CURRENT"
-
-#. bcr3
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3157975\n"
-"31\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_AKTUELL\">This function returns the result to date of evaluating the formula of which it is a part (in other words the result as far as that evaluation has got). Its main use is together with the STYLE() function to apply selected styles to a cell depending on the cell contents.</ahelp>"
-msgstr ""
-
-#. ,Gn,
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3148880\n"
-"32\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. EG\k
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150930\n"
-"33\n"
-"help.text"
-msgid "CURRENT()"
-msgstr "CURRENT()"
-
-#. kts?
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3145629\n"
-"34\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. 5L\T
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id5919064\n"
-"help.text"
-msgid "<item type=\"input\">=1+2+CURRENT()</item>"
-msgstr ""
-
-#. sGja
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id8751792\n"
-"help.text"
-msgid "The example returns 6. The formula is calculated from left to right as: 1 + 2 equals 3, giving the result to date when CURRENT() is encountered; CURRENT() therefore yields 3, which is added to the original 3 to give 6."
-msgstr ""
-
-#. cJGU
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id5863826\n"
-"help.text"
-msgid "<item type=\"input\">=A2+B2+STYLE(IF(CURRENT()>10;”Red”;”Default”))</item>"
-msgstr ""
-
-#. |AYd
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id7463911\n"
-"help.text"
-msgid "The example returns A2 + B2 (STYLE returns 0 here). If this sum is greater than 10, the style Red is applied to the cell. See the <emph>STYLE</emph> function for more explanation."
-msgstr ""
-
-#. Svy6
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id7318643\n"
-"help.text"
-msgid "<item type=\"input\">=\"choo\"&CURRENT()</item>"
-msgstr ""
-
-#. 9Lyy
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id6019165\n"
-"help.text"
-msgid "The example returns choochoo."
-msgstr ""
-
-#. F-{(
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"bm_id3150688\n"
-"help.text"
-msgid "<bookmark_value>FORMULA function</bookmark_value><bookmark_value>formula cells;displaying formulas in other cells</bookmark_value><bookmark_value>displaying;formulas at any position</bookmark_value>"
-msgstr ""
-
-#. WfGh
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3150688\n"
-"147\n"
-"help.text"
-msgid "FORMULA"
-msgstr "FORMULA"
-
-#. h,4$
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3158417\n"
-"148\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FORMEL\">Displays the formula of a formula cell as a text string.</ahelp>"
-msgstr ""
-
-#. DWSr
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3154954\n"
-"149\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. G=p(
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3147535\n"
-"150\n"
-"help.text"
-msgid "FORMULA(Reference)"
-msgstr "FORMULA(მითითება)"
-
-#. 7Q`}
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3014313\n"
-"help.text"
-msgid "<emph>Reference</emph> is a reference to a cell containing a formula."
-msgstr ""
-
-#. EDw+
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id8857081\n"
-"help.text"
-msgid "An invalid reference or a reference to a cell with no formula results in the error value #N/A."
-msgstr ""
-
-#. ,So?
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3152820\n"
-"151\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. OZVK
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153179\n"
-"152\n"
-"help.text"
-msgid "If cell A8 contains the formula <item type=\"input\">=SUM(1;2;3)</item> then"
-msgstr ""
-
-#. iMKk
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153923\n"
-"153\n"
-"help.text"
-msgid "<item type=\"input\">=FORMULA(A8)</item> returns the text =SUM(1;2;3)."
-msgstr ""
-
-#. ou+d
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"bm_id3155409\n"
-"help.text"
-msgid "<bookmark_value>ISREF function</bookmark_value><bookmark_value>references;testing cell contents</bookmark_value><bookmark_value>cell contents;testing for references</bookmark_value>"
-msgstr "<bookmark_value>ISREF ფუნქცია</bookmark_value><bookmark_value>მითითებები;უჯრის შიგთავსის გამოცდა</bookmark_value><bookmark_value>უჯრის შიგთავსი;მითითებების გამოცდა</bookmark_value>"
-
-#. A0dT
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3155409\n"
-"37\n"
-"help.text"
-msgid "ISREF"
-msgstr "ISREF"
-
-#. ]P0$
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153723\n"
-"38\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ISTBEZUG\">Tests if the argument is a reference.</ahelp> Returns TRUE if the argument is a reference, returns FALSE otherwise. When given a reference this function does not examine the value being referenced."
-msgstr ""
-
-#. $g\6
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3147175\n"
-"39\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. UFyW
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3149821\n"
-"40\n"
-"help.text"
-msgid "ISREF(Value)"
-msgstr "ISREF(მნიშვნელობა)"
-
-#. Z7@G
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3146152\n"
-"41\n"
-"help.text"
-msgid "<emph>Value</emph> is the value to be tested, to determine whether it is a reference."
-msgstr ""
-
-#. k)J(
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3083448\n"
-"42\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. gor8
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3154317\n"
-"43\n"
-"help.text"
-msgid "<item type=\"input\">=ISREF(C5)</item> returns the result TRUE because C5 is a valid reference."
-msgstr ""
-
-#. W_;w
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id9728072\n"
-"help.text"
-msgid "<item type=\"input\">=ISREF(\"abcdef\")</item> returns always FALSE because a text can never be a reference."
-msgstr ""
-
-#. UnZ`
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id2131544\n"
-"help.text"
-msgid "<item type=\"input\">=ISREF(4)</item> returns FALSE."
-msgstr ""
-
-#. 2zi~
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id4295480\n"
-"help.text"
-msgid "<item type=\"input\">=ISREF(INDIRECT(\"A6\"))</item> returns TRUE, because INDIRECT is a function that returns a reference."
-msgstr ""
-
-#. Z%Tm
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3626819\n"
-"help.text"
-msgid "<item type=\"input\">=ISREF(ADDRESS(1; 1; 2;\"Sheet2\"))</item> returns FALSE, because ADDRESS is a function that returns a text, although it looks like a reference."
-msgstr ""
-
-#. g\Y$
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"bm_id3154812\n"
-"help.text"
-msgid "<bookmark_value>ISERR function</bookmark_value><bookmark_value>error codes;controlling</bookmark_value>"
-msgstr "<bookmark_value>ISERR ფუნქცია</bookmark_value><bookmark_value>შეცდომის კოდები;მართვა</bookmark_value>"
-
-#. KF\{
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3154812\n"
-"45\n"
-"help.text"
-msgid "ISERR"
-msgstr "ISERR"
-
-#. s[Du
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3149282\n"
-"46\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ISTFEHL\">Tests for error conditions, except the #N/A error value, and returns TRUE or FALSE.</ahelp>"
-msgstr ""
-
-#. 2:Uo
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3149450\n"
-"47\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. 6Amw
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3156312\n"
-"48\n"
-"help.text"
-msgid "ISERR(Value)"
-msgstr "ISERR(მნიშვნელობა)"
-
-#. 2y-Z
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3146857\n"
-"49\n"
-"help.text"
-msgid "<emph>Value</emph> is any value or expression which is tested to see whether an error value other than #N/A is present."
-msgstr ""
-
-#. ndmc
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3153212\n"
-"50\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. @r^O
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153276\n"
-"51\n"
-"help.text"
-msgid "<item type=\"input\">=ISERR(C8)</item> where cell C8 contains <item type=\"input\">=1/0</item> returns TRUE, because 1/0 is an error."
-msgstr ""
-
-#. 4LP%
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id8456984\n"
-"help.text"
-msgid "<item type=\"input\">=ISERR(C9)</item> where cell C9 contains <item type=\"input\">=NA()</item> returns FALSE, because ISERR() ignores the #N/A error."
-msgstr ""
-
-#. O[-k
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"bm_id3147081\n"
-"help.text"
-msgid "<bookmark_value>ISERROR function</bookmark_value><bookmark_value>recognizing;general errors</bookmark_value>"
-msgstr "<bookmark_value>ISERROR ფუნქცია</bookmark_value><bookmark_value>ამოცნობა;ზოგადი შეცდომები</bookmark_value>"
-
-#. Wf}P
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3147081\n"
-"53\n"
-"help.text"
-msgid "ISERROR"
-msgstr "ISERROR"
-
-#. mq|u
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3156316\n"
-"54\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ISTFEHLER\">Tests for error conditions, including the #N/A error value, and returns TRUE or FALSE.</ahelp>"
-msgstr ""
-
-#. p.ET
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3147569\n"
-"55\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. R[d6
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153155\n"
-"56\n"
-"help.text"
-msgid "ISERROR(Value)"
-msgstr "ISERROR(მნიშვნელობა)"
-
-#. ]6PA
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3154047\n"
-"57\n"
-"help.text"
-msgid "<emph>Value</emph> is or refers to the value to be tested. ISERROR() returns TRUE if there is an error and FALSE if not."
-msgstr ""
-
-#. ;h-,
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3155994\n"
-"58\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. W){I
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150256\n"
-"59\n"
-"help.text"
-msgid "<item type=\"input\">=ISERROR(C8)</item> where cell C8 contains <item type=\"input\">=1/0</item> returns TRUE, because 1/0 is an error."
-msgstr ""
-
-#. 4;Ur
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id1889095\n"
-"help.text"
-msgid "<item type=\"input\">=ISERROR(C9)</item> where cell C9 contains <item type=\"input\">=NA()</item> returns TRUE."
-msgstr ""
-
-#. RrNT
-#: 04060104.xhp
-#, fuzzy
-msgctxt ""
-"04060104.xhp\n"
-"bm_id3153618\n"
-"help.text"
-msgid "<bookmark_value>ISFORMULA function</bookmark_value><bookmark_value>recognizing formula cells</bookmark_value><bookmark_value>formula cells;recognizing</bookmark_value>"
-msgstr "<bookmark_value>COUNTBLANK ფუნქცია</bookmark_value><bookmark_value>დათვლა;ცარიელი უჯრები</bookmark_value><bookmark_value>ცარიელი უჯრები;დათვლა</bookmark_value>"
-
-#. 8W|3
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3153618\n"
-"61\n"
-"help.text"
-msgid "ISFORMULA"
-msgstr "ISFORMULA"
-
-#. 374*
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3149138\n"
-"62\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ISTFORMEL\">Returns TRUE if a cell is a formula cell.</ahelp>"
-msgstr ""
-
-#. [zd`
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3155100\n"
-"63\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. WM3U
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3143230\n"
-"64\n"
-"help.text"
-msgid "ISFORMULA(Reference)"
-msgstr "ISFORMULA(მითითება)"
-
-#. ]lKU
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150150\n"
-"65\n"
-"help.text"
-msgid "<emph>Reference</emph> indicates the reference to a cell in which a test will be performed to determine if it contains a formula."
-msgstr ""
-
-#. yPDL
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3147491\n"
-"66\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. =GVJ
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3159182\n"
-"67\n"
-"help.text"
-msgid "<item type=\"input\">=ISFORMULA(C4)</item> returns FALSE if the cell C4 contains the number <item type=\"input\">5</item>."
-msgstr ""
-
-#. =$Gn
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"bm_id3149760\n"
-"help.text"
-msgid "<bookmark_value>ISEVEN_ADD function</bookmark_value>"
-msgstr "<bookmark_value>ISEVEN_ADD ფუნქცია</bookmark_value>"
-
-#. TMPs
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3149760\n"
-"229\n"
-"help.text"
-msgid "ISEVEN_ADD"
-msgstr "ISEVEN_ADD"
-
-#. eF,[
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3147253\n"
-"230\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ISEVEN\">Tests for even numbers. Returns 1 if the number divided by 2 returns a whole number.</ahelp>"
-msgstr ""
-
-#. Hw=l
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3152799\n"
-"231\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. %mm@
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3149202\n"
-"232\n"
-"help.text"
-msgid "ISEVEN_ADD(Number)"
-msgstr "ISEVEN_ADD(რიცხვი)"
-
-#. D.6j
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3151168\n"
-"233\n"
-"help.text"
-msgid "<emph>Number</emph> is the number to be tested."
-msgstr "<emph>რიცხვი</emph> გამოსაცდელი მნიშვნელობა."
-
-#. 34|#
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3150115\n"
-"234\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. _hG(
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153904\n"
-"235\n"
-"help.text"
-msgid "<item type=\"input\">=ISEVEN_ADD(5)</item> returns 0."
-msgstr ""
-
-#. h+{c
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id6238308\n"
-"help.text"
-msgid "<item type=\"input\">=ISEVEN_ADD(A1)</item> returns 1 if cell A1 contains the number <item type=\"input\">2</item>."
-msgstr ""
-
-#. {/9(
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"bm_id3154692\n"
-"help.text"
-msgid "<bookmark_value>ISNONTEXT function</bookmark_value><bookmark_value>cell contents;no text</bookmark_value>"
-msgstr "<bookmark_value>ISNONTEXT ფუნქცია</bookmark_value><bookmark_value>უჯრის შიგთავსი;ტექსტი არა</bookmark_value>"
-
-#. U)}`
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3154692\n"
-"68\n"
-"help.text"
-msgid "ISNONTEXT"
-msgstr "ISNONTEXT"
-
-#. 0Kca
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3155330\n"
-"69\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ISTKTEXT\">Tests if the cell contents are text or numbers, and returns FALSE if the contents are text.</ahelp>"
-msgstr ""
-
-#. D30e
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id5719779\n"
-"help.text"
-msgid "If an error occurs, the function returns TRUE."
-msgstr ""
-
-#. G[17
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3154931\n"
-"70\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. -)tX
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3148829\n"
-"71\n"
-"help.text"
-msgid "ISNONTEXT(Value)"
-msgstr "ISNONTEXT(მნიშვნელობა)"
-
-#. GslI
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3146992\n"
-"72\n"
-"help.text"
-msgid "<emph>Value</emph> is any value or expression where a test is performed to determine whether it is a text or numbers or a Boolean value."
-msgstr ""
-
-#. kssC
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3150525\n"
-"73\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. ]P7S
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3149906\n"
-"74\n"
-"help.text"
-msgid "<item type=\"input\">=ISNONTEXT(D2)</item> returns FALSE if cell D2 contains the text <item type=\"input\">abcdef</item>."
-msgstr ""
-
-#. hcQ\
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150777\n"
-"75\n"
-"help.text"
-msgid "<item type=\"input\">=ISNONTEXT(D9)</item> returns TRUE if cell D9 contains the number <item type=\"input\">8</item>."
-msgstr ""
-
-#. b-C\
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"bm_id3159148\n"
-"help.text"
-msgid "<bookmark_value>ISBLANK function</bookmark_value><bookmark_value>blank cell contents</bookmark_value><bookmark_value>empty cells; recognizing</bookmark_value>"
-msgstr "<bookmark_value>ISBLANK ფუნქცია</bookmark_value><bookmark_value>ცარიელი უჯრების შიგთავსი</bookmark_value><bookmark_value>ცარიელი უჯრები; ამოცნობა</bookmark_value>"
-
-#. P4~k
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3159148\n"
-"77\n"
-"help.text"
-msgid "ISBLANK"
-msgstr "ISBLANK"
-
-#. PW(I
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3148800\n"
-"78\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ISTLEER\">Returns TRUE if the reference to a cell is blank.</ahelp> This function is used to determine if the content of a cell is empty. A cell with a formula inside is not empty."
-msgstr ""
-
-#. ?{|?
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3159162\n"
-"79\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. c^nt
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3158406\n"
-"80\n"
-"help.text"
-msgid "ISBLANK(Value)"
-msgstr "ISBLANK(მნიშვნელობა)"
-
-#. *fsN
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3154212\n"
-"81\n"
-"help.text"
-msgid "<emph>Value</emph> is the content to be tested."
-msgstr "<emph>მნიშვნელობა</emph>არის გამოსაცდელი შიგთავსი."
-
-#. 2e_:
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3147508\n"
-"82\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. e]sc
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3147234\n"
-"83\n"
-"help.text"
-msgid "<item type=\"input\">=ISBLANK(D2)</item> returns FALSE as a result."
-msgstr ""
-
-#. )+L4
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"bm_id3155356\n"
-"help.text"
-msgid "<bookmark_value>ISLOGICAL function</bookmark_value><bookmark_value>number formats;logical</bookmark_value><bookmark_value>logical number formats</bookmark_value>"
-msgstr "<bookmark_value>ISLOGICAL ფუნქცია</bookmark_value><bookmark_value>რიცხვების ფორმატი;ლოგიკური</bookmark_value><bookmark_value>ლოგიკური რიცხვები;ფორმატები</bookmark_value>"
-
-#. .@uf
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3155356\n"
-"85\n"
-"help.text"
-msgid "ISLOGICAL"
-msgstr "ISLOGICAL"
-
-#. O=/[
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3148926\n"
-"86\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ISTLOG\">Tests for a logical value (TRUE or FALSE).</ahelp>"
-msgstr ""
-
-#. d?[T
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3541062\n"
-"help.text"
-msgid "If an error occurs, the function returns FALSE."
-msgstr ""
-
-#. x7Nj
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3149162\n"
-"87\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. 2IAJ
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3148918\n"
-"88\n"
-"help.text"
-msgid "ISLOGICAL(Value)"
-msgstr "ISLOGICAL(მნიშვნელობა)"
-
-#. P@]+
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3146946\n"
-"89\n"
-"help.text"
-msgid "Returns TRUE if <emph>Value</emph> is a logical value (TRUE or FALSE), and returns FALSE otherwise."
-msgstr ""
-
-#. 9IHp
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3150709\n"
-"90\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. Bm}v
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3166442\n"
-"91\n"
-"help.text"
-msgid "<item type=\"input\">=ISLOGICAL(99)</item> returns FALSE, because 99 is a number, not a logical value."
-msgstr ""
-
-#. 3ijk
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3556016\n"
-"help.text"
-msgid "<item type=\"input\">=ISLOGICAL(ISNA(D4))</item> returns TRUE whatever the contents of cell D4, because ISNA() returns a logical value."
-msgstr ""
-
-#. R{^E
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"bm_id3153685\n"
-"help.text"
-msgid "<bookmark_value>ISNA function</bookmark_value><bookmark_value>#N/A error;recognizing</bookmark_value>"
-msgstr "<bookmark_value>ISNA ფუნქცია</bookmark_value><bookmark_value>#N/A შეცდომა;ამოცნობა</bookmark_value>"
-
-#. qqex
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3153685\n"
-"93\n"
-"help.text"
-msgid "ISNA"
-msgstr "ISNA"
-
-#. 9H{k
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3149105\n"
-"94\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ISTNV\">Returns TRUE if a cell contains the #N/A (value not available) error value.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ISTNV\">აბრუნებს TRUE თუ უჯრა შეიცავს #N/A (მნიშვნელობა მიუწვდომელია) შეცდომას.</ahelp>"
-
-#. Xwsq
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id6018860\n"
-"help.text"
-msgid "If an error occurs, the function returns FALSE."
-msgstr ""
-
-#. GoXr
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3152947\n"
-"95\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. C-kl
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153748\n"
-"96\n"
-"help.text"
-msgid "ISNA(Value)"
-msgstr "ISNA(მნიშვნელობა)"
-
-#. Z}AA
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3152884\n"
-"97\n"
-"help.text"
-msgid "<emph>Value</emph> is the value or expression to be tested."
-msgstr "<emph>მნიშვნელობა</emph> არის გამოსაცდელი მნიშვნელობა ან გამოსახულება."
-
-#. #nNP
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3149964\n"
-"98\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. !8bi
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3154852\n"
-"99\n"
-"help.text"
-msgid "<item type=\"input\">=ISNA(D3)</item> returns FALSE as a result."
-msgstr ""
-
-#. ?e#H
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"bm_id3149426\n"
-"help.text"
-msgid "<bookmark_value>ISTEXT function</bookmark_value><bookmark_value>cell contents;text</bookmark_value>"
-msgstr "<bookmark_value>ISTEXT ფუნქცია</bookmark_value><bookmark_value>უჯრის შიგთავსი;ტექსტი</bookmark_value>"
-
-#. =v:X
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3149426\n"
-"101\n"
-"help.text"
-msgid "ISTEXT"
-msgstr "ISTEXT"
-
-#. --4M
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3145368\n"
-"102\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ISTTEXT\">Returns TRUE if the cell contents refer to text.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ISTTEXT\">აბრუნებს TRUE თუ უჯრის შიგთავსი მიუთითებს ტექსტს.</ahelp>"
-
-#. +T*%
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id6779686\n"
-"help.text"
-msgid "If an error occurs, the function returns FALSE."
-msgstr ""
-
-#. nj*B
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3154332\n"
-"103\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. kW7s
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3148649\n"
-"104\n"
-"help.text"
-msgid "ISTEXT(Value)"
-msgstr "ISTEXT(მნიშვნელობა)"
-
-#. 2^;n
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150417\n"
-"105\n"
-"help.text"
-msgid "<emph>Value</emph> is a value, number, Boolean value, or an error value to be tested."
-msgstr "<emph>მნიშვნელობა</emph> არის გამოსაცდელი მნიშვნელობა, რიცხვი, ლოგიკური გამოსახულება, ან შეცდომის მნიშვნელობა."
-
-#. !NW8
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3149239\n"
-"106\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. -ZTW
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3144756\n"
-"107\n"
-"help.text"
-msgid "<item type=\"input\">=ISTEXT(D9)</item> returns TRUE if cell D9 contains the text <item type=\"input\">abcdef</item>."
-msgstr ""
-
-#. z/?6
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3148416\n"
-"108\n"
-"help.text"
-msgid "<item type=\"input\">=ISTEXT(C3)</item> returns FALSE if cell C3 contains the number <item type=\"input\">3</item>."
-msgstr ""
-
-#. f40x
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"bm_id3153939\n"
-"help.text"
-msgid "<bookmark_value>ISODD_ADD function</bookmark_value>"
-msgstr "<bookmark_value>ISODD_ADD ფუნქცია</bookmark_value>"
-
-#. ORds
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3153939\n"
-"236\n"
-"help.text"
-msgid "ISODD_ADD"
-msgstr "ISODD_ADD"
-
-#. t%av
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153538\n"
-"237\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ISODD\">Returns TRUE (1) if the number does not return a whole number when divided by 2.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_ISODD\">აბრუნებს TRUE (1) თუ რიცხვი არ აბრუნებს მთელ რიცხვს 2ზე გაყოფისას.</ahelp>"
-
-#. /N)C
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3145601\n"
-"238\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. $:#K
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3149485\n"
-"239\n"
-"help.text"
-msgid "ISODD_ADD(Number)"
-msgstr "ISODD_ADD(რიცხვი)"
-
-#. CW]9
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153315\n"
-"240\n"
-"help.text"
-msgid "<emph>Number</emph> is the number to be tested."
-msgstr "<emph>რიცხვი</emph> გამოსაცდელი მნიშვნელობა."
-
-#. i{kQ
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3143274\n"
-"241\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. TbFo
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3154793\n"
-"242\n"
-"help.text"
-msgid "<item type=\"input\">=ISODD_ADD(5)</item> returns 1."
-msgstr ""
-
-#. Si__
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"bm_id3148688\n"
-"help.text"
-msgid "<bookmark_value>ISNUMBER function</bookmark_value><bookmark_value>cell contents;numbers</bookmark_value>"
-msgstr "<bookmark_value>ISNUMBER ფუნქცია</bookmark_value><bookmark_value>უჯრის სიგთავსი;რიცხვები</bookmark_value>"
-
-#. srMn
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3148688\n"
-"110\n"
-"help.text"
-msgid "ISNUMBER"
-msgstr "ISNUMBER"
-
-#. a[V{
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3154618\n"
-"111\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ISTZAHL\">Returns TRUE if the value refers to a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ISTZAHL\">აბრუნებს ჭეშმარიტს თუ მნიშვნელობა რიცხვია.</ahelp>"
-
-#. b(nE
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3152769\n"
-"112\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. mGfV
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150595\n"
-"113\n"
-"help.text"
-msgid "ISNUMBER(Value)"
-msgstr "ISNUMBER(მნიშვნელობა)"
-
-#. K8WC
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150351\n"
-"114\n"
-"help.text"
-msgid "<emph>Value</emph> is any expression to be tested to determine whether it is a number or text."
-msgstr "<emph>მნიშვნელობა</emph> არის ნებისმიერი გამოსახულება, რომელიც უნდა შემოწმდეს რიცხვია თუ ტექსტი."
-
-#. 67wF
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3146793\n"
-"115\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. /!(r
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3155614\n"
-"116\n"
-"help.text"
-msgid "<item type=\"input\">=ISNUMBER(C3)</item> returns TRUE if the cell C3 contains the number <item type=\"input\">4</item>."
-msgstr ""
-
-#. SZ2O
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3154417\n"
-"117\n"
-"help.text"
-msgid "<item type=\"input\">=ISNUMBER(C2)</item> returns FALSE if the cell C2 contains the text <item type=\"input\">abcdef</item>."
-msgstr ""
-
-#. ,f!#
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"bm_id3153694\n"
-"help.text"
-msgid "<bookmark_value>N function</bookmark_value>"
-msgstr "<bookmark_value>N ფუნქცია</bookmark_value>"
-
-#. +%{T
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3153694\n"
-"119\n"
-"help.text"
-msgid "N"
-msgstr "N"
-
-#. qRbu
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150405\n"
-"120\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_N\">Returns the numeric value of the given parameter. Returns 0 if parameter is text or FALSE.</ahelp>"
-msgstr ""
-
-#. sex-
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id9115573\n"
-"help.text"
-msgid "If an error occurs the function returns the error value."
-msgstr ""
-
-#. fCdi
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3145774\n"
-"121\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. l]m!
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153883\n"
-"122\n"
-"help.text"
-msgid "N(Value)"
-msgstr "N(მნიშვნელობა)"
-
-#. 4[xs
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3151101\n"
-"123\n"
-"help.text"
-msgid "<emph>Value</emph> is the parameter to be converted into a number. N() returns the numeric value if it can. It returns the logical values TRUE and FALSE as 1 and 0 respectively. It returns text as 0."
-msgstr ""
-
-#. I3iq
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3147097\n"
-"124\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. OeHD
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3154117\n"
-"125\n"
-"help.text"
-msgid "<item type=\"input\">=N(123)</item> returns 123"
-msgstr ""
-
-#. ++B}
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id2337717\n"
-"help.text"
-msgid "<item type=\"input\">=N(TRUE)</item> returns 1"
-msgstr ""
-
-#. hQ1c
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153781\n"
-"126\n"
-"help.text"
-msgid "<item type=\"input\">=N(FALSE)</item> returns 0"
-msgstr ""
-
-#. 7bKV
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3154670\n"
-"243\n"
-"help.text"
-msgid "<item type=\"input\">=N(\"abc\")</item> returns 0"
-msgstr ""
-
-#. l)+g
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3519089\n"
-"help.text"
-msgid "=N(1/0) returns #DIV/0!"
-msgstr ""
-
-#. \\[/
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"bm_id3156275\n"
-"help.text"
-msgid "<bookmark_value>NA function</bookmark_value><bookmark_value>#N/A error;assigning to a cell</bookmark_value>"
-msgstr "<bookmark_value>NA ფუნქცია</bookmark_value><bookmark_value>#N/A შეცდომა;უჯრისთვის მინიჭება</bookmark_value>"
-
-#. eLX8
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3156275\n"
-"129\n"
-"help.text"
-msgid "NA"
-msgstr "NA"
-
-#. fn.g
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3156161\n"
-"130\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_NV\">Returns the error value #N/A.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NV\">აბრუნებს შეცდომის მნიშვნელობას #N/A.</ahelp>"
-
-#. ~d(X
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3147532\n"
-"131\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. I:5C
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3149563\n"
-"132\n"
-"help.text"
-msgid "NA()"
-msgstr "NA()"
-
-#. v0:B
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3155128\n"
-"133\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. Vqtf
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3154481\n"
-"134\n"
-"help.text"
-msgid "<item type=\"input\">=NA()</item> converts the contents of the cell into #N/A."
-msgstr ""
-
-#. `u4i
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"bm_id3151255\n"
-"help.text"
-msgid "<bookmark_value>TYPE function</bookmark_value>"
-msgstr "<bookmark_value>TYPE ფუნქცია</bookmark_value>"
-
-#. =q]p
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3151255\n"
-"136\n"
-"help.text"
-msgid "TYPE"
-msgstr "TYPE"
-
-#. fG|.
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3155900\n"
-"137\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TYP\">Returns the type of value.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TYP\">აბრუნებს მნიშვნელობის ტიპს.</ahelp>"
-
-#. );Ss
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3149992\n"
-"138\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. rm8W
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3148400\n"
-"139\n"
-"help.text"
-msgid "TYPE(Value)"
-msgstr "TYPE(მნიშვნელობა)"
-
-#. =?:H
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150830\n"
-"140\n"
-"help.text"
-msgid "<emph>Value</emph> is a specific value for which the data type is determined. Value 1 = number, value 2 = text, value 4 = Boolean value, value 8 = formula, value 16 = error value."
-msgstr ""
-
-#. yj[N
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3154363\n"
-"141\n"
-"help.text"
-msgid "Example (see example table above)"
-msgstr "მაგალითი (სამაგალითო ცხრილი ზემოთ იხილეთ)"
-
-#. LjzV
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153357\n"
-"142\n"
-"help.text"
-msgid "<item type=\"input\">=TYPE(C2)</item> returns 2 as a result."
-msgstr ""
-
-#. ;,qp
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3148980\n"
-"143\n"
-"help.text"
-msgid "<item type=\"input\">=TYPE(D9)</item> returns 1 as a result."
-msgstr ""
-
-#. IGy}
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"bm_id3155509\n"
-"help.text"
-msgid "<bookmark_value>CELL function</bookmark_value><bookmark_value>cell information</bookmark_value><bookmark_value>information on cells</bookmark_value>"
-msgstr "<bookmark_value>CELL ფუნქცია</bookmark_value><bookmark_value>უჯრების ინფორმაცია</bookmark_value><bookmark_value>ინფორმაცია უჯრების შესახებ</bookmark_value>"
-
-#. zFO0
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3155509\n"
-"154\n"
-"help.text"
-msgid "CELL"
-msgstr "CELL"
-
-#. ]CXV
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153196\n"
-"155\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZELLE\">Returns information on address, formatting or contents of a cell.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ZELLE\">აბრუნებს ინფორმაციას მისამართზე, ფორმატირებაზე ან უჯრის შიგთავსზე.</ahelp>"
-
-#. %?-A
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"hd_id3149323\n"
-"156\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. 2DsT
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3147355\n"
-"157\n"
-"help.text"
-msgid "CELL(\"InfoType\"; Reference)"
-msgstr "CELL(ინფო_ტიპი; მითითება)"
-
-#. e{Np
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3154716\n"
-"158\n"
-"help.text"
-msgid "<emph>InfoType</emph> is the character string that specifies the type of information. The character string is always in English. Upper or lower case is optional."
-msgstr "<emph>Info_type</emph> არის სიმბოლოს სტრიქონი, რომელიც ინფორმაციის ტიპზე მიუთითებს. სიმბოლოს სტრიქონი ყოველთვის ინგლიურია. ზედა ან ქვედა რეგისტრი."
-
-#. 3D8h
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150636\n"
-"165\n"
-"help.text"
-msgid "InfoType"
-msgstr "ინფო_ტიპი"
-
-#. m;p=
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3149344\n"
-"166\n"
-"help.text"
-msgid "Meaning"
-msgstr "მნიშვნელობა"
-
-#. Wpj#
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153266\n"
-"167\n"
-"help.text"
-msgid "COL"
-msgstr "COL"
-
-#. p):a
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3156204\n"
-"168\n"
-"help.text"
-msgid "Returns the number of the referenced column."
-msgstr "აბრუნებს მითითებული სვეტის ნომერს."
-
-#. [XrI
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150094\n"
-"162\n"
-"help.text"
-msgid "<item type=\"input\">=CELL(\"COL\";D2)</item> returns 4."
-msgstr ""
-
-#. QNE9
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3151276\n"
-"169\n"
-"help.text"
-msgid "ROW"
-msgstr "რიგი"
-
-#. w\nx
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3147583\n"
-"170\n"
-"help.text"
-msgid "Returns the number of the referenced row."
-msgstr "აბრუნებს მითითებული რიგის ნომერს."
-
-#. }jHV
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3151222\n"
-"163\n"
-"help.text"
-msgid "<item type=\"input\">=CELL(\"ROW\";D2)</item> returns 2."
-msgstr ""
-
-#. H\:6
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3159217\n"
-"171\n"
-"help.text"
-msgid "SHEET"
-msgstr "ფურცელი"
-
-#. S1Sm
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3151201\n"
-"172\n"
-"help.text"
-msgid "Returns the number of the referenced sheet."
-msgstr "აბრუნებს მითითებული ფურცლის ნომერს."
-
-#. E9;$
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3149169\n"
-"164\n"
-"help.text"
-msgid "<item type=\"input\">=CELL(\"Sheet\";Sheet3.D2)</item> returns 3."
-msgstr ""
-
-#. Xj8Y
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3149431\n"
-"173\n"
-"help.text"
-msgid "ADDRESS"
-msgstr "მისამართი"
-
-#. 3Ohn
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3156054\n"
-"174\n"
-"help.text"
-msgid "Returns the absolute address of the referenced cell."
-msgstr "აბრუნებს მითითებული უჯრის აბსოლუტურ მისამართს."
-
-#. 71c:
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3154136\n"
-"175\n"
-"help.text"
-msgid "<item type=\"input\">=CELL(\"ADDRESS\";D2)</item> returns $D$2."
-msgstr ""
-
-#. 7VH+
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3159198\n"
-"176\n"
-"help.text"
-msgid "<item type=\"input\">=CELL(\"ADDRESS\";Sheet3.D2)</item> returns $Sheet3.$D$2."
-msgstr ""
-
-#. =g[7
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150245\n"
-"177\n"
-"help.text"
-msgid "<item type=\"input\">=CELL(\"ADDRESS\";'X:\\dr\\test.sxc'#$Sheet1.D2)</item> returns 'file:///X:/dr/test.sxc'#$Sheet1.$D$2."
-msgstr "CELL(\"ADDRESS\";'X:\\dr\\test.sxc'#$Sheet1.D2) აბრუნებს 'file:///X:/dr/test.sxc'#$Sheet1.$D$2."
-
-#. :Ry7
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3146811\n"
-"178\n"
-"help.text"
-msgid "FILENAME"
-msgstr "FILENAME"
-
-#. -C{t
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3151328\n"
-"179\n"
-"help.text"
-msgid "Returns the file name and the sheet number of the referenced cell."
-msgstr "აბრუნებს მითითებული უჯრის ფაილის სახელს და ფურცლის ნომერს."
-
-#. J!,4
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3148896\n"
-"180\n"
-"help.text"
-msgid "<item type=\"input\">=CELL(\"FILENAME\";D2)</item> returns 'file:///X:/dr/own.sxc'#$Sheet1, if the formula in the current document X:\\dr\\own.sxc is located in Sheet1."
-msgstr "CELL(\"FILENAME\";D2) აბრუნებს 'file:///X:/dr/own.sxc'#$Sheet1, თუ ფორმულა მიმდინარე დოკუმენტში X:\\dr\\own.sxc მოთავსებულია Sheet1-ზე."
-
-#. KiiE
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3155144\n"
-"181\n"
-"help.text"
-msgid "<item type=\"input\">=CELL(\"FILENAME\";'X:\\dr\\test.sxc'#$Sheet1.D2)</item> returns 'file:///X:/dr/test.sxc'#$Sheet1."
-msgstr "CELL(\"FILENAME\";'X:\\dr\\test.sxc'#$Sheet1.D2) აბრუნებს 'file:///X:/dr/test.sxc'#$Sheet1."
-
-#. 3UYb
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3151381\n"
-"182\n"
-"help.text"
-msgid "COORD"
-msgstr "COORD"
-
-#. ?2%[
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3151004\n"
-"183\n"
-"help.text"
-msgid "Returns the complete cell address in Lotus(TM) notation."
-msgstr "აბრუნებს უჯრის სრულ მისამართს Lotus(TM) notation-ში."
-
-#. OtM?
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3159104\n"
-"184\n"
-"help.text"
-msgid "<item type=\"input\">=CELL(\"COORD\"; D2)</item> returns $A:$D$2."
-msgstr ""
-
-#. kUAA
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3163720\n"
-"185\n"
-"help.text"
-msgid "<item type=\"input\">=CELL(\"COORD\"; Sheet3.D2)</item> returns $C:$D$2."
-msgstr ""
-
-#. D@iE
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3155910\n"
-"186\n"
-"help.text"
-msgid "CONTENTS"
-msgstr "შიგთავსი"
-
-#. 1;bK
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3156041\n"
-"187\n"
-"help.text"
-msgid "Returns the contents of the referenced cell, without any formatting."
-msgstr "აბრუნებს მითითებული უჯრის სიგთავს ფორმატირების გარეშე."
-
-#. `f?;
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3151069\n"
-"188\n"
-"help.text"
-msgid "TYPE"
-msgstr "TYPE"
-
-#. @us(
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3155344\n"
-"189\n"
-"help.text"
-msgid "Returns the type of cell contents."
-msgstr "აბრუნებს უჯფრის შიგთავსის ტიპს."
-
-#. .jq9
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3145217\n"
-"190\n"
-"help.text"
-msgid "b = blank. empty cell"
-msgstr "b = ცარიელი. ცარიელი უჯრა"
-
-#. nYK4
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3155176\n"
-"191\n"
-"help.text"
-msgid "l = label. Text, result of a formula as text"
-msgstr "l = ეტიკეტი. ტექსტი, ფორმულის შედეგი ტექსტის სახით"
-
-#. Vo)/
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3147280\n"
-"192\n"
-"help.text"
-msgid "v = value. Value, result of a formula as a number"
-msgstr "v = მნიშვნელობა. მნიშვნელობა, ფორმულის შედეგი რიცხვის სახით"
-
-#. |vru
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3156348\n"
-"193\n"
-"help.text"
-msgid "WIDTH"
-msgstr "WIDTH"
-
-#. ^EpE
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3154920\n"
-"194\n"
-"help.text"
-msgid "Returns the width of the referenced column. The unit is the number of zeros (0) that fit into the column in the default text and the default size."
-msgstr "აბრუნებს მითითებული სვეტის სიგანეს. ერთეული არის ნულების (0) რაოდენობა, რომლებიც ჯდება ნაგულისხმევი ტექსტის სვეტში და ნაგულისხმევ ზომაში."
-
-#. jn2d
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3152355\n"
-"195\n"
-"help.text"
-msgid "PREFIX"
-msgstr "პრეფიქსი"
-
-#. nAbL
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3154230\n"
-"196\n"
-"help.text"
-msgid "Returns the alignment of the referenced cell."
-msgstr "აბრუნებს მითითებული უჯრის მდებარეობას."
-
-#. M{1$
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3155946\n"
-"197\n"
-"help.text"
-msgid "' = align left or left-justified"
-msgstr "' = მარცხნივ ან მარცხნივ გასწორება"
-
-#. [-Po
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3147220\n"
-"198\n"
-"help.text"
-msgid "\" = align right"
-msgstr "\" = მარჯვნივ გასწორება"
-
-#. juwi
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3149038\n"
-"199\n"
-"help.text"
-msgid "^ = centered"
-msgstr "^ = ცენტრში გასწორება"
-
-#. 9dY_
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153129\n"
-"200\n"
-"help.text"
-msgid "\\ = repeating (currently inactive)"
-msgstr "\\ = გამეორება (ახლა არაა აქტიური)"
-
-#. ZR;E
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3154406\n"
-"201\n"
-"help.text"
-msgid "PROTECT"
-msgstr "PROTECT"
-
-#. O.YH
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3145127\n"
-"202\n"
-"help.text"
-msgid "Returns the status of the cell protection for the cell."
-msgstr "აბრუნებს უჯრისთვის უჯრის დაცვის მდგომარეობას."
-
-#. $rP3
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3155794\n"
-"203\n"
-"help.text"
-msgid "1 = cell is protected"
-msgstr "1 = უჯრა დაცულია"
-
-#. xQ{b
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3155072\n"
-"204\n"
-"help.text"
-msgid "0 = cell is not protected"
-msgstr "0 = უჯრა არაა დაცული"
-
-#. SNgX
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3156178\n"
-"205\n"
-"help.text"
-msgid "FORMAT"
-msgstr "FORMAT"
-
-#. =TRm
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150220\n"
-"206\n"
-"help.text"
-msgid "Returns a character string that indicates the number format."
-msgstr "აბრუნებს სიმბოლოთა სტრიქონს, რომელიც ასახავს რიცხვის ფორმატს."
-
-#. NtSp
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153824\n"
-"207\n"
-"help.text"
-msgid ", = number with thousands separator"
-msgstr ", = რიცხვი ათასების გამყოფით"
-
-#. dDr0
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153837\n"
-"208\n"
-"help.text"
-msgid "F = number without thousands separator"
-msgstr "F = რიცხვი ათასების გამყოფის გარეშე"
-
-#. _@iN
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150318\n"
-"209\n"
-"help.text"
-msgid "C = currency format"
-msgstr "C = ვალუტის ფორმატი"
-
-#. V5AK
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153168\n"
-"210\n"
-"help.text"
-msgid "S = exponential representation, for example, 1.234+E56"
-msgstr "S -თვის მაგალითი"
-
-#. ZpRm
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153515\n"
-"211\n"
-"help.text"
-msgid "P = percentage"
-msgstr "P = პროცენტი"
-
-#. (c!K
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3154375\n"
-"212\n"
-"help.text"
-msgid "In the above formats, the number of decimal places after the decimal separator is given as a number. Example: the number format #,##0.0 returns ,1 and the number format 00.000% returns P3"
-msgstr ""
-
-#. |]aQ
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150575\n"
-"213\n"
-"help.text"
-msgid "D1 = MMM-D-YY, MM-D-YY and similar formats"
-msgstr "D1 = MMM-D-YY, MM-D-YY და მსგავსი ფორმატები"
-
-#. sF|e
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150589\n"
-"214\n"
-"help.text"
-msgid "D2 = DD-MM"
-msgstr "D2 = DD-MM"
-
-#. b:m\
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3151034\n"
-"215\n"
-"help.text"
-msgid "D3 = MM-YY"
-msgstr "D3 = MM-YY"
-
-#. Fiod
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3156371\n"
-"216\n"
-"help.text"
-msgid "D4 = DD-MM-YYYY HH:MM:SS"
-msgstr "D4 = DD-MM-YYYY HH:MM:SS"
-
-#. vI-,
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3157881\n"
-"217\n"
-"help.text"
-msgid "D5 = MM-DD"
-msgstr "D5 = MM-DD"
-
-#. oo99
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3157894\n"
-"218\n"
-"help.text"
-msgid "D6 = HH:MM:SS AM/PM"
-msgstr "D6 = HH:MM:SS AM/PM"
-
-#. h75@
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3154068\n"
-"219\n"
-"help.text"
-msgid "D7 = HH:MM AM/PM"
-msgstr "D7 = HH:MM AM/PM"
-
-#. xcy0
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3150286\n"
-"220\n"
-"help.text"
-msgid "D8 = HH:MM:SS"
-msgstr "D8 = HH:MM:SS"
-
-#. T9^o
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3145756\n"
-"221\n"
-"help.text"
-msgid "D9 = HH:MM"
-msgstr "D9 = HH:MM"
-
-#. ^b[!
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3145768\n"
-"222\n"
-"help.text"
-msgid "G = All other formats"
-msgstr "G = ყველა სხვა ფორმატი"
-
-#. TLdY
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3153375\n"
-"223\n"
-"help.text"
-msgid "- (Minus) at the end = negative numbers are formatted in color"
-msgstr "- (მინუსი) ბოლოში = უარყოფითი რიცხვები სხვა ფრად შეიღებება"
-
-#. U!nK
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3155545\n"
-"224\n"
-"help.text"
-msgid "() (brackets) at the end = there is an opening bracket in the format code"
-msgstr "() (ფრჩხილები) ბოლოსი = ფორმატირების კოდში არის გახსნილი ფრჩხილი"
-
-#. Qd|s
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3154594\n"
-"225\n"
-"help.text"
-msgid "COLOR"
-msgstr "COLOR"
-
-#. 7X$V
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3152922\n"
-"226\n"
-"help.text"
-msgid "Returns 1, if negative values have been formatted in color, otherwise 0."
-msgstr "აბრუნებს 1, თუ უარყოფითი მნიშვნელობები ფერსი შეიღებება, სხვაგვარად 0."
-
-#. gia_
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3145563\n"
-"227\n"
-"help.text"
-msgid "PARENTHESES"
-msgstr "PARENTHESES"
-
-#. ^5j?
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3156072\n"
-"228\n"
-"help.text"
-msgid "Returns 1 if the format code contains an opening bracket (, otherwise 0."
-msgstr "აბრუნებს 1, თუ ფორმატირების კოდი შეიცავს ღია ფრჩხილს (, სხვაგვარად 0."
-
-#. P|$Q
-#: 04060104.xhp
-msgctxt ""
-"04060104.xhp\n"
-"par_id3156090\n"
-"159\n"
-"help.text"
-msgid "<emph>Reference</emph> (list of options) is the position of the cell to be examined. If <emph>Reference</emph> is a range, the cell moves to the top left of the range. If <emph>Reference</emph> is missing, $[officename] Calc uses the position of the cell in which this formula is located. Microsoft Excel uses the reference of the cell in which the cursor is positioned."
-msgstr ""
-
-#. 4ez8
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"tit\n"
-"help.text"
-msgid "YEARFRAC"
-msgstr "YEARFRAC"
-
-#. [0.Z
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"bm_id3148735\n"
-"help.text"
-msgid "<bookmark_value>YEARFRAC function</bookmark_value>"
-msgstr "<bookmark_value>YEARFRAC ფუნქცია</bookmark_value>"
-
-#. fT$w
-#: 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>"
-
-#. NWcM
-#: 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\"> შედეგი არის რიცხვი 0-სა და 1-ს შორის, ასახავს წლის ნაწილს <emph>საწყის თარიღსა</emph> და <emph>საბოლოო თარიღებს</emph> შორის.</ahelp>"
-
-#. p74l
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"hd_id3155259\n"
-"198\n"
-"help.text"
-msgid "Syntax"
-msgstr "სინტაქსი"
-
-#. 2,Pa
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3155823\n"
-"199\n"
-"help.text"
-msgid "YEARFRAC(StartDate; EndDate; Basis)"
-msgstr "YEARFRAC(საწყისი თარიღი;საბოლოო თარიღი;ფუძე)"
-
-#. qYcv
-#: 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>საწყისი თარიღი</emph> და <emph>საბოლოო თარითი</emph>: თარიღის ორი მნისვნელობა."
-
-#. 0U+U
-#: 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>ფუძე</emph>: ამოირჩევა პარამეტრების სიიდან და განსაზღვრავს როგორ გამოითვალოს წლები."
-
-#. 3RB#
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3146847\n"
-"202\n"
-"help.text"
-msgid "Basis"
-msgstr "ფუძე"
-
-#. j``+
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3155956\n"
-"203\n"
-"help.text"
-msgid "Calculation"
-msgstr "გამოთვლა"
-
-#. Q4v]
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3154502\n"
-"204\n"
-"help.text"
-msgid "0 or missing"
-msgstr "0 ან არ არის"
-
-#. j$$V
-#: 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 "აშშ მეთოდი (NASD), 12 თვე, ყოველში 30 დღე"
-
-#. 2N[Y
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3148766\n"
-"250\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#. W;J\
-#: 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 "თვეებში დღეების ზუსტი რაოდენობა, ყოველ წელს დღეების ზუსტი რაოდენობა"
-
-#. \o9m
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3145245\n"
-"251\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#. :deJ
-#: 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 "თვეში დღეების ზუსტი რაოდენობა, წელიწადში 360 დღეა"
-
-#. GS][
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3145297\n"
-"252\n"
-"help.text"
-msgid "3"
-msgstr "3"
-
-#. n/m^
-#: 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 "თვეში დღეების ზუსტი რაოდენობა, წელიწადში 365 დღეა"
-
-#. 8+FC
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3151022\n"
-"253\n"
-"help.text"
-msgid "4"
-msgstr "4"
-
-#. N!(]
-#: 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 "ევროპული მეთოდი, 12 თვე ყოველში 30 დღე"
-
-#. K:z1
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"hd_id3145626\n"
-"210\n"
-"help.text"
-msgid "Example"
-msgstr "მაგალითი"
-
-#. wpb[
-#: 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 "2001 წლის რა ნაწილი არის 1.1.2002-ს და 7.1.2001-ს შორის?"
-
-#. ^_2Q
-#: 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 ""
-
-#. U$@2
-#: 12040300.xhp
-msgctxt ""
-"12040300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Advanced Filter"
-msgstr "გაფართოებული ფილტრი"
-
-#. m~#3
-#: 12040300.xhp
-msgctxt ""
-"12040300.xhp\n"
-"hd_id3158394\n"
-"1\n"
-"help.text"
-msgid "Advanced Filter"
-msgstr "გაფართოებული ფილტრი"
-
-#. lCcS
-#: 12040300.xhp
-msgctxt ""
-"12040300.xhp\n"
-"par_id3156281\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"spezialfilter\"><ahelp hid=\".uno:DataFilterSpecialFilter\">Defines an advanced filter.</ahelp></variable>"
-msgstr "<variable id=\"spezialfilter\"><ahelp hid=\".uno:DataFilterSpecialFilter\">საზღვრავს გაფართოებულ ფილტრს.</ahelp></variable>"
-
-#. 5t9s
-#: 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\"/>"
-
-#. M/t:
-#: 12040300.xhp
-msgctxt ""
-"12040300.xhp\n"
-"hd_id3153771\n"
-"25\n"
-"help.text"
-msgid "Read filter criteria from"
-msgstr "ფილტრის კრიტერიუმის წაკითხვა"
-
-#. ]s,:
-#: 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 ""
-
-#. !mbA
-#: 12040300.xhp
-msgctxt ""
-"12040300.xhp\n"
-"hd_id3153188\n"
-"27\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
-msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">დამატებით</link>"
-
-#. {RWN
-#: 06030600.xhp
-msgctxt ""
-"06030600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Trace Error"
-msgstr "შეცდომის გაკვლევა"
-
-#. @yM@
-#: 06030600.xhp
-msgctxt ""
-"06030600.xhp\n"
-"bm_id3153561\n"
-"help.text"
-msgid "<bookmark_value>cells; tracing errors</bookmark_value><bookmark_value>tracing errors</bookmark_value><bookmark_value>error tracing</bookmark_value>"
-msgstr "<bookmark_value>უჯრები; კვალების განახლება</bookmark_value><bookmark_value>კვალები; განახლება</bookmark_value><bookmark_value>განახლება;კვალები</bookmark_value>"
-
-#. eJss
-#: 06030600.xhp
-msgctxt ""
-"06030600.xhp\n"
-"hd_id3153561\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06030600.xhp\" name=\"Trace Error\">Trace Error</link>"
-msgstr "<link href=\"text/scalc/01/06030600.xhp\" name=\"Trace Error\">შეცდომის გაკვლევა</link>"
-
-#. vwoJ
-#: 06030600.xhp
-msgctxt ""
-"06030600.xhp\n"
-"par_id3148550\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ShowErrors\" visibility=\"visible\">Draws tracer arrows to all precedent cells which cause an error value in a selected cell.</ahelp>"
-msgstr ""
-
-#. 43\@
-#: 02140200.xhp
-msgctxt ""
-"02140200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Right"
-msgstr "მარჯვენა"
-
-#. el[n
-#: 02140200.xhp
-msgctxt ""
-"02140200.xhp\n"
-"hd_id3153896\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/02140200.xhp\" name=\"Right\">Right</link>"
-msgstr "<link href=\"text/scalc/01/02140200.xhp\" name=\"Right\">მარჯვნივ</link>"
-
-#. _VD*
-#: 02140200.xhp
-msgctxt ""
-"02140200.xhp\n"
-"par_id3153361\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:FillRight\" visibility=\"visible\">Fills a selected range of at least two columns with the contents of the left most cell.</ahelp>"
-msgstr "<ahelp hid=\".uno:FillRight\" visibility=\"visible\">შეავსებს მონიშნულ დიაპაზონსმ მინიმუმ ორ სვეტს დიაპაზონის ყველაზე მარცხენა უჯრის მნიშვნელობით.</ahelp>"
-
-#. %3Pk
-#: 02140200.xhp
-msgctxt ""
-"02140200.xhp\n"
-"par_id3154684\n"
-"3\n"
-"help.text"
-msgid "If a range of only one row is selected, the contents of the far left cell are copied to all the other selected cells. If you have selected several rows, each of the far left cells is copied into those cells to the right."
-msgstr "თუ მონიშნული დიაპაზონი არის მხოლოდ ერთი სტრიქონი, მაშინ კიდურა მარცხენა უჯრის შემადგენლობა კოპირდება ყველ დანარჩენში მონიშნულში. თუ მონიშნული რამოდენიმე სტრიქონი, მაშინ მითითებული მარცხენა უჯრა კოპირებული იქნება მარჯვნივ."
-
-#. jT9g
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"tit\n"
-"help.text"
-msgid "Data field"
-msgstr "მონაცემთა ველი"
-
-#. \]o9
-#: 12090105.xhp
-#, fuzzy
-msgctxt ""
-"12090105.xhp\n"
-"bm_id7292397\n"
-"help.text"
-msgid "<bookmark_value>calculating;pivot table</bookmark_value>"
-msgstr "<bookmark_value>გამოთვლა;ნაერთი ცხრილი</bookmark_value>"
-
-#. d0~_
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"hd_id3150871\n"
-"1\n"
-"help.text"
-msgid "Data field"
-msgstr "მონაცემთა ველი"
-
-#. {Ev3
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_id3154124\n"
-"16\n"
-"help.text"
-msgid "The contents of this dialog is different for data fields in the <emph>Data</emph> area, and data fields in the <emph>Row</emph> or <emph>Column</emph> area of the <link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table\">Pivot Table</link> dialog."
-msgstr ""
-
-#. EA%@
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"hd_id3152596\n"
-"2\n"
-"help.text"
-msgid "Subtotals"
-msgstr "ქვეჯამები"
-
-#. o3n?
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_id3151113\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\">მიუთითეთ დასაჯამებელი ქვეჯამები.</ahelp>"
-
-#. K$|A
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"hd_id3145366\n"
-"4\n"
-"help.text"
-msgid "None"
-msgstr "არა"
-
-#. Po2!
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_id3152576\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\">არ თვლის ქვეჯამებს.</ahelp>"
-
-#. %k1I
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"hd_id3154012\n"
-"6\n"
-"help.text"
-msgid "Automatic"
-msgstr "ავტომატური"
-
-#. g:Yj
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_id3155856\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\">ავრომატურად თვლის ქვეჯამებს.</ahelp>"
-
-#. oD}a
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"hd_id3155411\n"
-"8\n"
-"help.text"
-msgid "User-defined"
-msgstr "მომხმარებლის მიერ განსაზღვრული"
-
-#. BJ@%
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_id3149581\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 ""
-
-#. 6IjJ
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"hd_id3147124\n"
-"10\n"
-"help.text"
-msgid "Function"
-msgstr "ფუნქცია"
-
-#. Zt`b
-#: 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 ""
-
-#. m)=5
-#: 12090105.xhp
-msgctxt ""